Properties
| Name | Type | Description |
|---|---|---|
| balanceAccountId | string | Unique identifier of the balance account to which the additional commission is booked. |
| fixedAmount | integer | A fixed commission fee, in minor units. |
| variablePercentage | integer | A variable commission fee, in basis points. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AdditionalCommission",
"title": "AdditionalCommission",
"properties": {
"balanceAccountId": {
"description": "Unique identifier of the balance account to which the additional commission is booked.",
"type": "string"
},
"fixedAmount": {
"description": "A fixed commission fee, in minor units.",
"format": "int64",
"type": "integer"
},
"variablePercentage": {
"description": "A variable commission fee, in basis points.",
"format": "int64",
"type": "integer"
}
},
"type": "object"
}