ReceivedTransferNotificationSummary
Properties
| Property | Type | Required | Description |
amount_atomic |
integer |
Yes |
|
amount_usd |
string |
Yes |
|
notification_id |
string |
Yes |
|
received_at |
string |
Yes |
|
sender_display_name |
string |
Yes |
|
sender_email |
string |
Yes |
|
transfer_id |
string |
Yes |
|
View JSON Schema
{
"type": "object",
"required": [
"notification_id",
"transfer_id",
"amount_atomic",
"amount_usd",
"sender_display_name",
"sender_email",
"received_at"
],
"properties": {
"amount_atomic": {
"type": "integer",
"format": "int64"
},
"amount_usd": {
"type": "string"
},
"notification_id": {
"type": "string",
"format": "uuid"
},
"received_at": {
"type": "string",
"format": "date-time"
},
"sender_display_name": {
"type": "string"
},
"sender_email": {
"type": "string"
},
"transfer_id": {
"type": "string",
"format": "uuid"
}
}
}