Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 692 Bytes

delete-break-type-response.md

File metadata and controls

31 lines (22 loc) · 692 Bytes

Delete Break Type Response

The response to a request to delete a BreakType. The response might contain a set of Error objects if the request resulted in errors.

Structure

DeleteBreakTypeResponse

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