Properties
| Name | Type | Description |
|---|---|---|
| mastercard_action_id | integer | The id of mastercard action being reported. |
| type | string | The id of mastercard action being reported. |
| status | string | The id of mastercard action being reported. |
| merchant_id | string | The reported merchant. |
| merchant_name | string | The name of the merchant. |
| counterparty_alias | object | The monetary account label of the merchant. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MasterCardActionReport",
"title": "MasterCardActionReport",
"type": "object",
"properties": {
"mastercard_action_id": {
"type": "integer",
"description": "The id of mastercard action being reported.",
"readOnly": false,
"writeOnly": false
},
"type": {
"type": "string",
"description": "The id of mastercard action being reported.",
"readOnly": false,
"writeOnly": false
},
"status": {
"type": "string",
"description": "The id of mastercard action being reported.",
"readOnly": false,
"writeOnly": false
},
"merchant_id": {
"type": "string",
"description": "The reported merchant.",
"readOnly": true,
"writeOnly": false
},
"merchant_name": {
"type": "string",
"description": "The name of the merchant.",
"readOnly": true,
"writeOnly": false
},
"counterparty_alias": {
"type": "object",
"description": "The monetary account label of the merchant.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/LabelMonetaryAccount"
}
}
}