import type * as Square from "../index"; export interface DisputeEvidence { /** The Square-generated ID of the evidence. */ evidenceId?: string | null; /** The Square-generated ID of the evidence. */ id?: string; /** The ID of the dispute the evidence is associated with. */ disputeId?: string | null; /** Image, PDF, TXT */ evidenceFile?: Square.DisputeEvidenceFile; /** Raw text */ evidenceText?: string | null; /** The time when the evidence was uploaded, in RFC 3339 format. */ uploadedAt?: string | null; /** * The type of the evidence. * See [DisputeEvidenceType](#type-disputeevidencetype) for possible values */ evidenceType?: Square.DisputeEvidenceType; }