PrefilledShopperInformation
public struct PrefilledShopperInformation : ShopperInformation
A structure that contains information about the shopper
-
The name of the shopper.
Declaration
Swift
public var shopperName: ShopperName?
-
The email address.
Declaration
Swift
public var emailAddress: String?
-
The telephone number.
Declaration
Swift
public var telephoneNumber: String?
-
The billing address information.
Declaration
Swift
public var billingAddress: PostalAddress?
-
The delivery address information.
Declaration
Swift
public var deliveryAddress: PostalAddress?
-
The social security number
Declaration
Swift
public var socialSecurityNumber: String?
-
The card information
Declaration
Swift
public var card: CardInformation?
-
init(shopperName:
emailAddress: telephoneNumber: billingAddress: deliveryAddress: socialSecurityNumber: card: ) Initializes the ShopperInfo struct
Declaration
Swift
public init(shopperName: ShopperName? = nil, emailAddress: String? = nil, telephoneNumber: String? = nil, billingAddress: PostalAddress? = nil, deliveryAddress: PostalAddress? = nil, socialSecurityNumber: String? = nil, card: CardInformation? = nil)
Parameters
shopperName
The name of the shopper, optional.
emailAddress
The email of the shopper, optional.
telephoneNumber
The telephone number of the shopper, optional.
billingAddress
The billing address of the shopper, optional.
deliveryAddress
The delivery address of the shopper, optional.
socialSecurityNumber
The social security number of the shopper, optional.
card
Shopper’s card basic information, optional.
-
A structure that defines the basic properties for the shopper’s card.
See moreDeclaration
Swift
public struct CardInformation