CardholderUpdateInformation
public struct CardholderUpdateInformation : Encodable, Sendable
This structure contains the cardholder information.
-
The first name.
Declaration
Swift
public let firstName: String? -
The middle name.
Declaration
Swift
public let middleName: String? -
The last name.
Declaration
Swift
public let lastName: String? -
The date of birth.
Declaration
Swift
public let dateOfBirth: String? -
The email address.
Declaration
Swift
public let emailAddress: String? -
Auxiliary constructor.
Declaration
Swift
public init( firstName: String? = nil, middleName: String? = nil, lastName: String? = nil, emailAddress: String? = nil, dateOfBirth: String? = nil)Parameters
firstNameThe first name.
middleNameThe middle name.
lastNameThe last name.
emailAddressThe email address.
dateOfBirthThe date of birth.
View on GitHub