Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.08 KB

delete-customer-custom-attribute-response.md

File metadata and controls

43 lines (34 loc) · 1.08 KB

Delete Customer Custom Attribute Response

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

Structure

DeleteCustomerCustomAttributeResponse

Fields

Name Type Tags Description Getter Setter
errors ?(Error[]) Optional Any errors that occurred during the request. getErrors(): ?array setErrors(?array errors): void

Example (as JSON)

{
  "errors": [
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "INVALID_EXPIRATION",
      "detail": "detail6",
      "field": "field4"
    },
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "INVALID_EXPIRATION",
      "detail": "detail6",
      "field": "field4"
    },
    {
      "category": "MERCHANT_SUBSCRIPTION_ERROR",
      "code": "INVALID_EXPIRATION",
      "detail": "detail6",
      "field": "field4"
    }
  ]
}