Properties
| Name | Type | Description |
|---|---|---|
| request_inquiries | array | The list of requests that were made. |
| total_amount_inquired | object | The total amount originally inquired for this batch. |
| reference_split_the_bill | object | The reference to the object used for split the bill. Can be Payment, PaymentBatch, ScheduleInstance, RequestResponse and MasterCardAction |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RequestInquiryBatchRead",
"title": "RequestInquiryBatchRead",
"type": "object",
"properties": {
"request_inquiries": {
"type": "array",
"description": "The list of requests that were made.",
"readOnly": true,
"writeOnly": false,
"items": {
"$ref": "#/components/schemas/RequestInquiry"
}
},
"total_amount_inquired": {
"type": "object",
"description": "The total amount originally inquired for this batch.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"reference_split_the_bill": {
"type": "object",
"description": "The reference to the object used for split the bill. Can be Payment, PaymentBatch, ScheduleInstance, RequestResponse and MasterCardAction",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/RequestReferenceSplitTheBillAnchorObject"
}
}
}