import type * as Square from "../index"; /** * Represents a [DeleteMerchantCustomAttribute](api-endpoint:MerchantCustomAttributes-DeleteMerchantCustomAttribute) response. * Either an empty object `{}` (for a successful deletion) or `errors` is present in the response. */ export interface DeleteMerchantCustomAttributeResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }