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)

Properties

Link copied to clipboard
@Valid
var address: AddressDto?
Link copied to clipboard
Link copied to clipboard
@get:Size(max = 50)
var customerNumber: String?
Link copied to clipboard
Link copied to clipboard
@get:Size(max = 100)
var id: String?
Link copied to clipboard
Link copied to clipboard