import type * as Square from "../index"; /** * Represents an output from a call to [UpdateVendor](api-endpoint:Vendors-UpdateVendor). */ export interface UpdateVendorResponse { /** Errors occurred when the request fails. */ errors?: Square.Error_[]; /** The [Vendor](entity:Vendor) that has been updated. */ vendor?: Square.Vendor; }