OPPCDCustomer
@objc
public class OPPCDCustomer : NSObject
Provides the customer details like name, email, etc.
-
The given name or first name of customer.
Declaration
Swift
@objc public var givenName: String? -
The last name or surname of customer.
Declaration
Swift
@objc public var surname: String? -
The email of customer.
Declaration
Swift
@objc public var email: String? -
The fullname of customer by combining given name and surname.
Declaration
Swift
@objc public var fullName: String? { get }
OPPCDCustomer Class Reference