SerenAI

Pay Per Call Agentic Commerce

BonusClaimResponse

Response for claiming bonuses

Properties

PropertyTypeRequiredDescription
amount_atomic integer Yes
amount_usd string Yes
bonus_type string Yes
success boolean Yes
View JSON Schema
{
  "type": "object",
  "description": "Response for claiming bonuses",
  "required": [
    "success",
    "amount_atomic",
    "amount_usd",
    "bonus_type"
  ],
  "properties": {
    "amount_atomic": {
      "type": "integer",
      "format": "int64"
    },
    "amount_usd": {
      "type": "string"
    },
    "bonus_type": {
      "type": "string"
    },
    "success": {
      "type": "boolean"
    }
  }
}