import type * as Square from "../index"; /** * Published when a [Payout](entity:Payout) has failed. */ export interface PayoutFailedEvent { /** 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 that this represents, `payout.failed`. */ type?: string | null; /** A unique ID for the event. */ eventId?: string | null; /** The timestamp of when the event was verified, in RFC 3339 format. */ createdAt?: string; /** Data associated with the event. */ data?: Square.PayoutFailedEventData; }