Update Customer Request
data class UpdateCustomerRequest(val title: String? = null, val firstName: String? = null, val lastName: String? = null, val birthDate: String? = null, val nationality: String? = null, val occupation: Occupation? = null, val vulnerabilities: List<Vulnerability>? = null, val additionalAttributes: Map<String, String>? = null, val address: UpdateAddressRequest? = null)
Data class representing the changed customer information.
Constructors
Link copied to clipboard
constructor(title: String? = null, firstName: String? = null, lastName: String? = null, birthDate: String? = null, nationality: String? = null, occupation: Occupation? = null, vulnerabilities: List<Vulnerability>? = null, additionalAttributes: Map<String, String>? = null, address: UpdateAddressRequest? = null)
Properties
Link copied to clipboard
A list of additional attributes not covered in standard list. Specifics need to be aligned during integration with Paysafe.
Link copied to clipboard
The new address associated with the customer.
Link copied to clipboard
The nationality of the customer in ISO-3166 Alpha 2 format.
Link copied to clipboard
The occupation of the customer.
Link copied to clipboard
A list of Vulnerability's associated with the customer.