PaymentDTO
The PaymentDTO
object represents payment data, including information about the amounts related to the payment transaction.
Field Descriptions
Name | Type | Description |
---|---|---|
date | string | Date and time of the payment transaction in ISO 8601 format. |
takerSum | MoneyDTO | Amount sent/received in the invoice's currency. |
makerSum | MoneyDTO | Amount received/sent by the merchant's store. |
feeSum | MoneyDTO | The fee charged for processing the payment. |
Example
{
"takerSum": {
"amount": "3650.00",
"currency": "RUB",
"subunit": 2
},
"makerSum": {
"amount": "35.00527476",
"currency": "USDT",
"subunit": 8
},
"feeSum": {
"amount": "2.97544836",
"currency": "USDT",
"subunit": 8
},
"date": "2024-11-23T20:43:07+00:00"
}