import type * as Square from "../index"; /** * Published when a [Vendor](entity:Vendor) is updated. */ export interface VendorUpdatedEvent { /** The ID of a seller associated with this event. */ merchantId?: string | null; /** The ID of a seller location associated with this event, if the event is associated with the location. */ locationId?: string | null; /** The type of this event. The value is `"vendor.updated".` */ type?: string | null; /** A unique ID for this webhoook event. */ eventId?: string | null; /** The RFC 3339-formatted time when the underlying event data object is created. */ createdAt?: string; /** The data associated with this event. */ data?: Square.VendorUpdatedEventData; }