CustomersOfUserDto
data class CustomersOfUserDto(var id: String? = null, var customerNumber: String? = null, var firstname: String? = null, var surname: String? = null, var currency: IsoCurrencyEnumDto? = null, var address: AddressDto? = null, var totalAssetAmount: AmountDto? = null)
Customer representation.
Parameters
id
ID of the customer.
customerNumber
Customer number.
firstname
Firstname of the customer.
surname
Surname of the user.
currency
address
Customer primary address.
totalAssetAmount
Constructors
Link copied to clipboard
constructor(id: String? = null, customerNumber: String? = null, firstname: String? = null, surname: String? = null, currency: IsoCurrencyEnumDto? = null, address: AddressDto? = null, totalAssetAmount: AmountDto? = null)