import type * as Square from "../index"; /** * Represents a [BulkUpsertCustomerCustomAttributes](api-endpoint:CustomerCustomAttributes-BulkUpsertCustomerCustomAttributes) response, * which contains a map of responses that each corresponds to an individual upsert request. */ export interface BatchUpsertCustomerCustomAttributesResponse { /** * A map of responses that correspond to individual upsert requests. Each response has the * same ID as the corresponding request and contains either a `customer_id` and `custom_attribute` or an `errors` field. */ values?: Record; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }