BTThreeDSecurePostalAddress
@objcMembers
public class BTThreeDSecurePostalAddress : NSObject
Postal address for 3D Secure flows
-
init(givenName:surname: streetAddress: extendedAddress: line3: locality: region: postalCode: countryCodeAlpha2: phoneNumber: ) Creates a postal address for 3D Secure flows with all components
Declaration
Swift
public init( givenName: String? = nil, surname: String? = nil, streetAddress: String? = nil, extendedAddress: String? = nil, line3: String? = nil, locality: String? = nil, region: String? = nil, postalCode: String? = nil, countryCodeAlpha2: String? = nil, phoneNumber: String? = nil )Parameters
givenNameOptional. Given name associated with the address
surnameOptional. Surname associated with the address
streetAddressOptional. Line 1 of the Address (eg. number, street, etc)
extendedAddressOptional. Line 2 of the Address (eg. suite, apt #, etc.)
line3Optional. Line 3 of the Address (eg. suite, apt #, etc.)
localityOptional. City name
regionOptional. Either a two-letter state code (for the US), or an ISO-3166-2 country subdivision code of up to three letters.
postalCodeOptional. 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
countryCodeAlpha2Optional. 2 letter country code
phoneNumberOptional. The phone number. Only numbers. Remove dashes, parentheses and other characters
View on GitHub