ShopperInformation
public protocol ShopperInformation
Any object that holds shopper personal information.
-
Shopper name.
Declaration
Swift
var shopperName: ShopperName? { get }
-
The email address.
Declaration
Swift
var emailAddress: String? { get }
-
The telephone number.
Declaration
Swift
var telephoneNumber: String? { get }
-
The billing address information.
Declaration
Swift
var billingAddress: PostalAddress? { get }
-
The delivery address information.
Declaration
Swift
var deliveryAddress: PostalAddress? { get }
-
The social security number information.
Declaration
Swift
var socialSecurityNumber: String? { get }