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