/** * Represents an individual delete request in a [BulkDeleteMerchantCustomAttributes](api-endpoint:MerchantCustomAttributes-BulkDeleteMerchantCustomAttributes) * request. An individual request contains an optional ID of the associated custom attribute definition * and optional key of the associated custom attribute definition. */ export interface BulkDeleteMerchantCustomAttributesRequestMerchantCustomAttributeDeleteRequest { /** * The key of the associated custom attribute definition. * Represented as a qualified key if the requesting app is not the definition owner. */ key?: string; }