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