Properties
| Name | Type | Description |
|---|---|---|
| status | string | The status of the cashback payout item. |
| amount | object | The amount of cashback earned. |
| rate_applied | string | The cashback rate. |
| transaction_category | object | The transaction category that this cashback is for. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CashbackPayoutItem",
"title": "CashbackPayoutItem",
"type": "object",
"properties": {
"status": {
"type": "string",
"description": "The status of the cashback payout item.",
"readOnly": true,
"writeOnly": false
},
"amount": {
"type": "object",
"description": "The amount of cashback earned.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"rate_applied": {
"type": "string",
"description": "The cashback rate.",
"readOnly": true,
"writeOnly": false
},
"transaction_category": {
"type": "object",
"description": "The transaction category that this cashback is for.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/AdditionalTransactionInformationCategory"
}
}
}