Struct used in SendLocation describing an address
Undocumented
- (instancetype)initWithSubThoroughfare:(nullable NSString *)subThoroughfare thoroughfare:(nullable NSString *)thoroughfare locality:(nullable NSString *)locality administrativeArea:(nullable NSString *)administrativeArea postalCode:(nullable NSString *)postalCode countryCode:(nullable NSString *)countryCode;
init(subThoroughfare: String?, thoroughfare: String?, locality: String?, administrativeArea: String?, postalCode: String?, countryCode: String?)
Undocumented
- (instancetype)initWithSubThoroughfare:(nullable NSString *)subThoroughfare thoroughfare:(nullable NSString *)thoroughfare locality:(nullable NSString *)locality administrativeArea:(nullable NSString *)administrativeArea postalCode:(nullable NSString *)postalCode countryCode:(nullable NSString *)countryCode countryName:(nullable NSString *)countryName subAdministrativeArea:(nullable NSString *)subAdministrativeArea subLocality:(nullable NSString *)subLocality;
init(subThoroughfare: String?, thoroughfare: String?, locality: String?, administrativeArea: String?, postalCode: String?, countryCode: String?, countryName: String?, subAdministrativeArea: String?, subLocality: String?)
Name of the country (localized)
Optional, max length = 200
@property (readwrite, copy, nonatomic, nullable) NSString *countryName;
var countryName: String? { get set }
countryCode of the country(ISO 3166-2)
Optional, max length = 200
@property (readwrite, copy, nonatomic, nullable) NSString *countryCode;
var countryCode: String? { get set }
postalCode of location (PLZ, ZIP, PIN, CAP etc.)
Optional, max length = 200
@property (readwrite, copy, nonatomic, nullable) NSString *postalCode;
var postalCode: String? { get set }
Portion of country (e.g. state)
Optional, max length = 200
@property (readwrite, copy, nonatomic, nullable) NSString *administrativeArea;
var administrativeArea: String? { get set }
Portion of administrativeArea (e.g. county)
Optional, max length = 200
@property (readwrite, copy, nonatomic, nullable) NSString *subAdministrativeArea;
var subAdministrativeArea: String? { get set }
Hypernym for city/village
Optional, max length = 200
@property (readwrite, copy, nonatomic, nullable) NSString *locality;
var locality: String? { get set }
Hypernym for district
Optional, max length = 200
@property (readwrite, copy, nonatomic, nullable) NSString *subLocality;
var subLocality: String? { get set }
Hypernym for street, road etc.
Optional, max length = 200
@property (readwrite, copy, nonatomic, nullable) NSString *thoroughfare;
var thoroughfare: String? { get set }
Portion of thoroughfare (e.g. house number)
Optional, max length = 200
@property (readwrite, copy, nonatomic, nullable) NSString *subThoroughfare;
var subThoroughfare: String? { get set }