import type * as Square from "../index"; /** * Represents an output from a call to [CreateVendor](api-endpoint:Vendors-CreateVendor). */ export interface CreateVendorResponse { /** Errors encountered when the request fails. */ errors?: Square.Error_[]; /** The successfully created [Vendor](entity:Vendor) object. */ vendor?: Square.Vendor; }