Package-level declarations

Types

Link copied to clipboard
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.

Link copied to clipboard
data class CustomersOfUserListDto(var customers: MutableList<CustomersOfUserDto>, var totalAssetAmount: AmountDto? = null, var page: PageDto? = null)

List of the customers, related to the current user.