%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/square/square/doc/models/ |
Upload File : |
# List Disputes Response
Defines fields in a `ListDisputes` response.
## Structure
`ListDisputesResponse`
## Fields
| Name | Type | Tags | Description | Getter | Setter |
| --- | --- | --- | --- | --- | --- |
| `errors` | [`?(Error[])`](/doc/models/error.md) | Optional | Information about errors encountered during the request. | getErrors(): ?array | setErrors(?array errors): void |
| `disputes` | [`?(Dispute[])`](/doc/models/dispute.md) | Optional | The list of disputes. | getDisputes(): ?array | setDisputes(?array disputes): void |
| `cursor` | `?string` | Optional | The pagination cursor to be used in a subsequent request.<br>If unset, this is the final response. For more information, see [Pagination](https://developer.squareup.com/docs/basics/api101/pagination). | getCursor(): ?string | setCursor(?string cursor): void |
## Example (as JSON)
```json
{
"cursor": "G1aSTRm48CLjJsg6Sg3hQN1b1OMaoVuG",
"disputes": [
{
"amount_money": {
"amount": 1000,
"currency": "USD"
},
"brand_dispute_id": "100000809947",
"card_brand": "VISA",
"created_at": "2018-10-12T02:20:25.577Z",
"disputed_payments": [
{
"payment_id": "APgIq6RX2jM6DKDhMHiC6QEkuaB"
}
],
"due_at": "2018-10-11T00:00:00.000Z",
"id": "OnY1AZwhSi775rbNIK4gv",
"reason": "NO_KNOWLEDGE",
"state": "EVIDENCE_REQUIRED",
"updated_at": "2018-10-12T02:20:25.577Z"
}
]
}
```