WithdrawalDTO
The WithdrawalDTO
object represents withdrawal data, including information about the amount, fee, address, and operation status.
Field Descriptions
Name | Type | Description |
---|---|---|
id | string | Unique identifier of the withdrawal. |
createdAt | string | Date and time of withdrawal creation in ISO 8601 format. |
updatedAt | string | Date and time of the last withdrawal update in ISO 8601 format. |
sum | MoneyDTO | Withdrawal amount. |
fee | MoneyDTO | Withdrawal fee. |
address | string | Address to which the withdrawal is made. |
txId | string | null | Transaction hash |
Example
{
"id": "41b2e564-ecd1-418f-8c08-176d5e081ad3",
"createdAt": "2024-11-22T08:25:40+00:00",
"updatedAt": "2024-11-22T08:25:44+00:00",
"sum": {
"amount": "10.00000000",
"currency": "USDT",
"subunit": 8
},
"fee": {
"amount": "5.00000000",
"currency": "USDT",
"subunit": 8
},
"address": "TMPXDJcnLqNwPbTB6ux7k1fSgM2v7jetP9",
"txId": "e0395c1b1a75547dfeff1e8c3cff4cfd31c",
"accountId": "df2b175e-0aef-45e3-8d03-80881389901c"
}