PublisherPayoutResponse
Publisher payout response.
Properties
| Property | Type | Required | Description |
|---|---|---|---|
amount |
number | Yes | |
amount_atomic |
integer | Yes | |
asset |
AssetInfo | Yes | |
destination_wallet |
WalletAddress | Yes | |
error_message |
string,null | No | |
id |
string | Yes | |
publisher_id |
string | Yes | |
requested_at |
string | Yes | |
status |
PayoutStatus | Yes | |
tx_hash |
string,null | No |
View JSON Schema
{
"type": "object",
"description": "Publisher payout response.",
"required": [
"id",
"publisher_id",
"asset",
"amount",
"amount_atomic",
"destination_wallet",
"status",
"requested_at"
],
"properties": {
"amount": {
"type": "number",
"format": "double"
},
"amount_atomic": {
"type": "integer",
"format": "int64"
},
"asset": {
"$ref": "#/components/schemas/AssetInfo"
},
"destination_wallet": {
"$ref": "#/components/schemas/WalletAddress"
},
"error_message": {
"type": [
"string",
"null"
]
},
"id": {
"type": "string",
"format": "uuid"
},
"publisher_id": {
"type": "string",
"format": "uuid"
},
"requested_at": {
"type": "string",
"format": "date-time"
},
"status": {
"$ref": "#/components/schemas/PayoutStatus"
},
"tx_hash": {
"type": [
"string",
"null"
]
}
}
}