import type * as Square from "../index"; /** * Represents a response from a bulk upsert of order custom attributes. */ export interface BulkUpsertOrderCustomAttributesResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** A map of responses that correspond to individual upsert operations for custom attributes. */ values: Record; }