import type * as Square from "../index"; /** * Defines the fields in a `SubmitEvidence` response. */ export interface SubmitEvidenceResponse { /** Information about errors encountered during the request. */ errors?: Square.Error_[]; /** The `Dispute` for which evidence was submitted. */ dispute?: Square.Dispute; }