DailyClaimResponse
Response for claiming daily credits
Properties
| Property | Type | Required | Description |
|---|---|---|---|
amount_atomic |
integer | Yes | |
amount_usd |
string | Yes | |
balance_atomic |
integer | Yes | |
balance_usd |
string | Yes | |
claims_remaining_this_month |
integer | Yes | |
success |
boolean | Yes |
View JSON Schema
{
"type": "object",
"description": "Response for claiming daily credits",
"required": [
"success",
"amount_atomic",
"amount_usd",
"balance_atomic",
"balance_usd",
"claims_remaining_this_month"
],
"properties": {
"amount_atomic": {
"type": "integer",
"format": "int64"
},
"amount_usd": {
"type": "string"
},
"balance_atomic": {
"type": "integer",
"format": "int64"
},
"balance_usd": {
"type": "string"
},
"claims_remaining_this_month": {
"type": "integer",
"format": "int32"
},
"success": {
"type": "boolean"
}
}
}