import type * as Square from "../index"; /** * Published when evidence is added to a [Dispute](entity:Dispute) * from the Disputes Dashboard in the Seller Dashboard, the Square Point of Sale app, * or by calling either [CreateDisputeEvidenceFile](api-endpoint:Disputes-CreateDisputeEvidenceFile) or [CreateDisputeEvidenceText](api-endpoint:Disputes-CreateDisputeEvidenceText). */ export interface DisputeEvidenceCreatedEvent { /** The ID of the target merchant associated with the event. */ merchantId?: string | null; /** The ID of the target location associated with the event. */ locationId?: string | null; /** The type of event this represents. */ type?: string | null; /** A unique ID for the event. */ eventId?: string | null; /** Timestamp of when the event was created, in RFC 3339 format. */ createdAt?: string; /** Data associated with the event. */ data?: Square.DisputeEvidenceCreatedEventData; }