import type * as Square from "../index"; /** * Represents a response for an individual upsert request in a [BulkUpsertLocationCustomAttributes](api-endpoint:LocationCustomAttributes-BulkUpsertLocationCustomAttributes) operation. */ export interface BulkUpsertLocationCustomAttributesResponseLocationCustomAttributeUpsertResponse { /** The ID of the location associated with the custom attribute. */ locationId?: string; /** The new or updated custom attribute. */ customAttribute?: Square.CustomAttribute; /** Any errors that occurred while processing the individual request. */ errors?: Square.Error_[]; }