import type * as Square from "../index"; /** * Represents an input to a call to [UpdateVendor](api-endpoint:Vendors-UpdateVendor). */ export interface UpdateVendorRequest { /** * A client-supplied, universally unique identifier (UUID) for the * request. * * See [Idempotency](https://developer.squareup.com/docs/build-basics/common-api-patterns/idempotency) in the * [API Development 101](https://developer.squareup.com/docs/buildbasics) section for more * information. */ idempotencyKey?: string | null; /** The specified [Vendor](entity:Vendor) to be updated. */ vendor: Square.Vendor; }