DocumentContentCustomerDto

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

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

Link copied to clipboard
constructor(customerId: String? = null, billingAddressLines: List<String>? = null, email: String? = null, name: String? = null, telephoneNumber: String? = null)

Properties

Link copied to clipboard
@SerializedName(value = "billingAddressLines")
val billingAddressLines: List<String>? = null
Link copied to clipboard
@SerializedName(value = "customerId")
val customerId: String? = null
Link copied to clipboard
@SerializedName(value = "email")
val email: String? = null
Link copied to clipboard
@SerializedName(value = "name")
val name: String? = null
Link copied to clipboard
@SerializedName(value = "telephoneNumber")
val telephoneNumber: String? = null