GMSAddressComponent
@interface GMSAddressComponent : NSObjectRepresents a component of an address, e.g., street number, postcode, city, etc.
- 
                  
                  Deprecated type property is deprecated in favor of types Type of the address component. For a list of supported types, see https://developers.google.com/places/ios-sdk/supported_types#table2. This string will be one of the constants defined in GMSPlaceTypes.h. DeclarationSwift var type: String { get }Objective-C @property (nonatomic, copy, readonly) __GMS_AVAILABLE_BUT_DEPRECATED_MSG NSString *type;
- 
                  
                  Types associated with the address component. For a list of supported types, see https://developers.google.com/places/ios-sdk/supported_types#table2. This array will contain one or more of the constants strings defined in GMSPlaceTypes.h. DeclarationSwift var types: [String] { get }Objective-C @property (nonatomic, strong, readonly) NSArray<NSString *> *_Nonnull types;
- 
                  
                  Name of the address component, e.g. “Sydney” DeclarationSwift var name: String { get }Objective-C @property (nonatomic, copy, readonly) NSString *_Nonnull name;
- 
                  
                  Short name of the address component, e.g. “AU” DeclarationSwift var shortName: String? { get }Objective-C @property (nonatomic, copy, readonly) NSString *_Nullable shortName;