BrokerageFeeDto

data class BrokerageFeeDto(var amount: BigDecimal, var amountUnitOfTime: String, var amountUnitOfTimeType: AmountValueTypeEnumDto, var description: String? = null)

Fee due for the execution of the order. A detailed description of the corresponding fee can be found in the description field, provided this is supported by the provider. This object is only filled if corresponding fees are incurred.

Parameters

amount

Includes the value of the order. This can be an amount or a quantity. In the case of an amount, the amountCurrency field must be filled.

amountUnitOfTime

The rate or fixed amount charged per unit of time. Normally, the period should be one year.

amountUnitOfTimeType
description

Describes what type of fee is involved. May also describe the individual amounts included in the fee.

Constructors

Link copied to clipboard
constructor(amount: BigDecimal, amountUnitOfTime: String, amountUnitOfTimeType: AmountValueTypeEnumDto, description: String? = null)

Properties

Link copied to clipboard
@get:DecimalMin(value = "0")
var amount: BigDecimal
Link copied to clipboard
Link copied to clipboard
@get:Size(max = 4096)
var description: String?