FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
doc
/
models
Edit File: accept-dispute-response.md
# Accept Dispute Response Defines the fields in an `AcceptDispute` response. ## Structure `AcceptDisputeResponse` ## 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 | | `dispute` | [`?Dispute`](../../doc/models/dispute.md) | Optional | Represents a [dispute](https://developer.squareup.com/docs/disputes-api/overview) a cardholder initiated with their bank. | getDispute(): ?Dispute | setDispute(?Dispute dispute): void | ## Example (as JSON) ```json { "dispute": { "amount_money": { "amount": 2500, "currency": "USD" }, "brand_dispute_id": "100000809947", "card_brand": "VISA", "created_at": "2022-06-29T18:45:22.265Z", "disputed_payment": { "payment_id": "zhyh1ch64kRBrrlfVhwjCEjZWzNZY" }, "due_at": "2022-07-13T00:00:00.000Z", "id": "XDgyFu7yo1E2S5lQGGpYn", "location_id": "L1HN3ZMQK64X9", "reason": "NO_KNOWLEDGE", "reported_at": "2022-06-29T00:00:00.000Z", "state": "ACCEPTED", "updated_at": "2022-07-07T19:14:42.650Z", "version": 2, "dispute_id": "dispute_id8" }, "errors": [ { "category": "MERCHANT_SUBSCRIPTION_ERROR", "code": "MAP_KEY_LENGTH_TOO_LONG", "detail": "detail6", "field": "field4" }, { "category": "MERCHANT_SUBSCRIPTION_ERROR", "code": "MAP_KEY_LENGTH_TOO_LONG", "detail": "detail6", "field": "field4" }, { "category": "MERCHANT_SUBSCRIPTION_ERROR", "code": "MAP_KEY_LENGTH_TOO_LONG", "detail": "detail6", "field": "field4" } ] } ```
Save
Back