Address

@objcMembers
public class Address : NSObject, Codable

The merchant’s address.

  • Line 1 of the address.

    Declaration

    Swift

    public private(set) var line1: String? { get }
  • Line 2 of the address.

    Declaration

    Swift

    public private(set) var line2: String? { get }
  • Line 3 of the address.

    Declaration

    Swift

    public private(set) var line3: String? { get }
  • City of the address.

    Declaration

    Swift

    public private(set) var city: String? { get }
  • State/County/Region of the address.

    Declaration

    Swift

    public private(set) var state: String? { get }
  • Postal code (Post/Zip code) of the address.

    Declaration

    Swift

    public private(set) var postalCode: String? { get }
  • The 2-letter ISO-3166-1 country code of the address.

    Declaration

    Swift

    public private(set) var countryCode: String? { get }