AI-generated Key Takeaways
- 
          GMSPlaceFeaturerepresents a place feature with a Place ID and is a subclass ofGMSFeature.
- 
          It provides access to the feature type and the Place ID. 
- 
          While there's an initializer available for testing, in production, GMSPlaceFeatureinstances are created by the SDK itself.
GMSPlaceFeature
@interface GMSPlaceFeature : NSObject <GMSFeature>An interface representing a place feature (a feature with a Place ID).
- 
                  
                  DeclarationSwift var featureType: FeatureType { get }Objective-C @property(nonatomic, readonly) GMSFeatureType featureType
- 
                  
                  DeclarationSwift var placeID: String { get }Objective-C @property(nonatomic, readonly) NSString *placeID
- 
                  
                  Create a feature layer instance for testing. This method should be used for your unit tests only. In production, GMSPlaceFeatureinstances should only be created by the SDK.DeclarationSwift convenience init(featureType: FeatureType, placeID: String)Objective-C - (nonnull instancetype)initWithFeatureType:(nonnull GMSFeatureType)featureType placeID:(nonnull NSString *)placeID;
- 
                  
                  Unavailable DeclarationObjective-C - (instancetype)init NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE;