import type * as Square from "../index"; export interface VendorUpdatedEventObject { /** * The operation on the vendor that caused the event to be published. The value is `UPDATED`. * See [Operation](#type-operation) for possible values */ operation?: Square.VendorUpdatedEventObjectOperation; /** The updated vendor as the result of the specified operation. */ vendor?: Square.Vendor; }