SerenAI

Pay Per Call Agentic Commerce

WalletTransferExecuteResponse

Properties

oneOf:
View JSON Schema
{
  "oneOf": [
    {
      "type": "object",
      "required": [
        "transfer_id",
        "status",
        "settled_at",
        "balance_after_cents",
        "kind"
      ],
      "properties": {
        "balance_after_cents": {
          "type": "integer",
          "format": "int64"
        },
        "kind": {
          "type": "string",
          "enum": [
            "instant"
          ]
        },
        "settled_at": {
          "type": "string",
          "format": "date-time"
        },
        "status": {
          "type": "string"
        },
        "transfer_id": {
          "type": "string",
          "format": "uuid"
        }
      }
    },
    {
      "type": "object",
      "required": [
        "pending_transfer_id",
        "status",
        "expires_at",
        "balance_after_cents",
        "kind"
      ],
      "properties": {
        "balance_after_cents": {
          "type": "integer",
          "format": "int64"
        },
        "expires_at": {
          "type": "string",
          "format": "date-time"
        },
        "invite_token": {
          "type": [
            "string",
            "null"
          ]
        },
        "invite_url": {
          "type": [
            "string",
            "null"
          ]
        },
        "kind": {
          "type": "string",
          "enum": [
            "pending_invite"
          ]
        },
        "pending_transfer_id": {
          "type": "string",
          "format": "uuid"
        },
        "status": {
          "type": "string"
        }
      }
    }
  ]
}