-
@abstract The city of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull city;
Swift
var city: String { get }
-
@abstract The country of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull country;
Swift
var country: String { get }
-
@abstract The country code of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull countryCode;
Swift
var countryCode: String { get }
-
@abstract The latitude of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull latitude;
Swift
var latitude: String { get }
-
@abstract The longitude of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull longitude;
Swift
var longitude: String { get }
-
@abstract The postal code of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull postalCode;
Swift
var postalCode: String { get }
-
@abstract The first street line of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull streetLine1;
Swift
var streetLine1: String { get }
-
@abstract The second street line of the address.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull streetLine2;
Swift
var streetLine2: String { get }