DocumentContentCustomerDto

data class DocumentContentCustomerDto(customerId: String?, billingAddressLines: List<String>?, email: String?, name: String?, telephoneNumber: String?)

Information about the customer as presented on the document.

Parameters

customerId

An Id assigned to the customer by the merchant.

billingAddressLines

The billing address the customer has provided defined as an array of address lines.

email

The customer email address as displayed on the document.

name

The name of the customer.

telephoneNumber

The phone number of the customer.

Constructors

DocumentContentCustomerDto
Link copied to clipboard
fun DocumentContentCustomerDto(customerId: String? = null, billingAddressLines: List<String>? = null, email: String? = null, name: String? = null, telephoneNumber: String? = null)
An Id assigned to the customer by the merchant.

Properties

billingAddressLines
Link copied to clipboard
@SerializedName(value = billingAddressLines)
val billingAddressLines: List<String>? = null
The billing address the customer has provided defined as an array of address lines.
customerId
Link copied to clipboard
@SerializedName(value = customerId)
val customerId: String? = null
An Id assigned to the customer by the merchant.
email
Link copied to clipboard
@SerializedName(value = email)
val email: String? = null
The customer email address as displayed on the document.
name
Link copied to clipboard
@SerializedName(value = name)
val name: String? = null
The name of the customer.
telephoneNumber
Link copied to clipboard
@SerializedName(value = telephoneNumber)
val telephoneNumber: String? = null
The phone number of the customer.