BTThreeDSecurePostalAddress

Objective-C

@interface BTThreeDSecurePostalAddress : NSObject <NSCopying>

Swift

class BTThreeDSecurePostalAddress : NSObject, NSCopying

Postal address for 3D Secure flows

  • Optional. Given name associated with the address

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *givenName;

    Swift

    var givenName: String? { get set }
  • Optional. Surname associated with the address

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *surname;

    Swift

    var surname: String? { get set }
  • Optional. Line 1 of the Address (eg. number, street, etc)

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *streetAddress;

    Swift

    var streetAddress: String? { get set }
  • Optional. Line 2 of the Address (eg. suite, apt #, etc.)

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *extendedAddress;

    Swift

    var extendedAddress: String? { get set }
  • Optional. Line 3 of the Address (eg. suite, apt #, etc.)

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *line3;

    Swift

    var line3: String? { get set }
  • Optional. City name

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *locality;

    Swift

    var locality: String? { get set }
  • Optional. Either a two-letter state code (for the US), or an ISO-3166-2 country subdivision code of up to three letters.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *region;

    Swift

    var region: String? { get set }
  • Optional. Zip code or equivalent is usually required for countries that have them. For a list of countries that do not have postal codes please refer to http://en.wikipedia.org/wiki/Postal_code

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *postalCode;

    Swift

    var postalCode: String? { get set }
  • Optional. 2 letter country code

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *countryCodeAlpha2;

    Swift

    var countryCodeAlpha2: String? { get set }
  • Optional. The phone number associated with the address

    Note

    Only numbers. Remove dashes, parentheses and other characters

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *phoneNumber;

    Swift

    var phoneNumber: String? { get set }