Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 964 Bytes

delete-merchant-custom-attribute-response.md

File metadata and controls

37 lines (28 loc) · 964 Bytes

Delete Merchant Custom Attribute Response

Represents a DeleteMerchantCustomAttribute response. Either an empty object {} (for a successful deletion) or errors is present in the response.

Structure

DeleteMerchantCustomAttributeResponse

Fields

Name Type Tags Description Getter
Errors List<Error> Optional Any errors that occurred during the request. List getErrors()

Example (as JSON)

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