import type * as Square from "../index"; /** * Defines the `vendor.created` event data structure. */ export interface VendorCreatedEventData { /** 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 the created vendor. */ object?: Square.VendorCreatedEventObject; }