import type * as Square from "../index"; /** * Defines the `vendor.updated` event data structure. */ export interface VendorUpdatedEventData { /** The type of the event data object. The value is `vendor`. */ type?: string | null; /** The ID of the event data object. */ id?: string; /** An object containing updated vendor. */ object?: Square.VendorUpdatedEventObject; }