Struct used in SendLocation describing an address
Convenience init to describe an oasis address
- (nonnull 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?)
Portion of thoroughfare (e.g. house number)
Hypernym for street, road etc
Hypernym for city/village
Portion of country (e.g. state)
PostalCode of location (PLZ, ZIP, PIN, CAP etc.)
CountryCode of the country(ISO 3166-2)
Convenience init to describe an oasis address with all parameters
- (nonnull 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?)
Portion of thoroughfare (e.g. house number)
Hypernym for street, road etc
Hypernym for city/village
Portion of country (e.g. state)
PostalCode of location (PLZ, ZIP, PIN, CAP etc.)
CountryCode of the country(ISO 3166-2)
Portion of administrativeArea (e.g. county)
Hypernym for district
Name of the country (localized)
Optional, max length = 200
@property (nonatomic, copy, nullable) NSString *countryName;
var countryName: String? { get set }
countryCode of the country(ISO 3166-2)
Optional, max length = 200
@property (nonatomic, copy, nullable) NSString *countryCode;
var countryCode: String? { get set }
postalCode of location (PLZ, ZIP, PIN, CAP etc.)
Optional, max length = 200
@property (nonatomic, copy, nullable) NSString *postalCode;
var postalCode: String? { get set }
Portion of country (e.g. state)
Optional, max length = 200
@property (nonatomic, copy, nullable) NSString *administrativeArea;
var administrativeArea: String? { get set }
Portion of administrativeArea (e.g. county)
Optional, max length = 200
@property (nonatomic, copy, nullable) NSString *subAdministrativeArea;
var subAdministrativeArea: String? { get set }
Hypernym for city/village
Optional, max length = 200
@property (nonatomic, copy, nullable) NSString *locality;
var locality: String? { get set }
Hypernym for district
Optional, max length = 200
@property (nonatomic, copy, nullable) NSString *subLocality;
var subLocality: String? { get set }
Hypernym for street, road etc.
Optional, max length = 200
@property (nonatomic, copy, nullable) NSString *thoroughfare;
var thoroughfare: String? { get set }
Portion of thoroughfare (e.g. house number)
Optional, max length = 200
@property (nonatomic, copy, nullable) NSString *subThoroughfare;
var subThoroughfare: String? { get set }