Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 1.46 KB

dispute-evidence.md

File metadata and controls

34 lines (26 loc) · 1.46 KB

Dispute Evidence

Structure

DisputeEvidence

Fields

Name Type Tags Description
evidenceId string | null | undefined Optional The Square-generated ID of the evidence.
Constraints: Minimum Length: 1, Maximum Length: 40
id string | undefined Optional The Square-generated ID of the evidence.
Constraints: Minimum Length: 1, Maximum Length: 40
disputeId string | null | undefined Optional The ID of the dispute the evidence is associated with.
Constraints: Minimum Length: 1, Maximum Length: 40
evidenceFile DisputeEvidenceFile | undefined Optional A file to be uploaded as dispute evidence.
evidenceText string | null | undefined Optional Raw text
Constraints: Minimum Length: 1, Maximum Length: 500
uploadedAt string | null | undefined Optional The time when the evidence was uploaded, in RFC 3339 format.
Constraints: Minimum Length: 1, Maximum Length: 40
evidenceType string | undefined Optional The type of the dispute evidence.

Example (as JSON)

{
  "evidence_id": "evidence_id0",
  "id": "id2",
  "dispute_id": "dispute_id4",
  "evidence_file": {
    "filename": "filename8",
    "filetype": "filetype8"
  },
  "evidence_text": "evidence_text6"
}