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