PublisherPayoutInfo
Properties
| Property | Type | Required | Description |
amount_atomic |
integer |
Yes |
|
destination_wallet |
string |
Yes |
|
error_message |
string,null |
No |
|
id |
string |
Yes |
|
status |
string |
Yes |
|
tx_hash |
string,null |
No |
|
View JSON Schema
{
"type": "object",
"required": [
"id",
"status",
"amount_atomic",
"destination_wallet"
],
"properties": {
"amount_atomic": {
"type": "integer",
"format": "int64"
},
"destination_wallet": {
"type": "string"
},
"error_message": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string",
"format": "uuid"
},
"status": {
"type": "string"
},
"tx_hash": {
"type": [
"string",
"null"
]
}
}
}