Represents a BulkDeleteMerchantCustomAttributes response, which contains a map of responses that each corresponds to an individual delete request.
BulkDeleteMerchantCustomAttributesResponse
Name | Type | Tags | Description | Getter |
---|---|---|---|---|
Values |
Map<String, BulkDeleteMerchantCustomAttributesResponseMerchantCustomAttributeDeleteResponse> |
Required | A map of responses that correspond to individual delete requests. Each response has the same key as the corresponding request. |
Map<String, BulkDeleteMerchantCustomAttributesResponseMerchantCustomAttributeDeleteResponse> getValues() |
Errors |
List<Error> |
Optional | Any errors that occurred during the request. | List getErrors() |
{
"values": {
"id1": {
"errors": [],
"merchant_id": "DM7VKY8Q63GNP"
},
"id2": {
"errors": [],
"merchant_id": "DM7VKY8Q63GNP"
}
},
"errors": [
{
"category": "MERCHANT_SUBSCRIPTION_ERROR",
"code": "MAP_KEY_LENGTH_TOO_LONG",
"detail": "detail6",
"field": "field4"
},
{
"category": "MERCHANT_SUBSCRIPTION_ERROR",
"code": "MAP_KEY_LENGTH_TOO_LONG",
"detail": "detail6",
"field": "field4"
}
]
}