Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.6 KB

bulk-delete-merchant-custom-attributes-response.md

File metadata and controls

48 lines (39 loc) · 1.6 KB

Bulk Delete Merchant Custom Attributes Response

Represents a BulkDeleteMerchantCustomAttributes response, which contains a map of responses that each corresponds to an individual delete request.

Structure

BulkDeleteMerchantCustomAttributesResponse

Fields

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()

Example (as JSON)

{
  "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"
    }
  ]
}