AccountDTO
The AccountDTO object represents account data, including information about the current balance, frozen funds, and withdrawal fees.
Descriptions
Name | Type | Description |
---|---|---|
id | string | Unique account identifier. |
currency | string | Account currency in ISO 4217 format (e.g., USDT). |
sum | MoneyDTO | Current account balance. |
frozenSum | MoneyDTO | Frozen funds in the account. |
withdrawalFee | MoneyDTO | Withdrawal fee. |
Example
{
"id": "df2b175e-0aef-45e3-8d03-80881389901c",
"currency": "USDT",
"sum": {
"amount": "10.74886973",
"currency": "USDT",
"subunit": 8
},
"frozenSum": {
"amount": "0.00000000",
"currency": "USDT",
"subunit": 8
},
"withdrawalFee": {
"amount": "5.00000000",
"currency": "USDT",
"subunit": 8
}
}