import type * as Square from "../index"; export interface RefundCreatedEventData { /** Name of the affected object’s type, `"refund"`. */ type?: string | null; /** ID of the affected refund. */ id?: string; /** An object containing the created refund. */ object?: Square.RefundCreatedEventObject; }