Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Latest commit

 

History

History
18 lines (12 loc) · 1.25 KB

Error.md

File metadata and controls

18 lines (12 loc) · 1.25 KB

Error

Description

Represents an error encountered during a request to the Connect API. See Handling errors for more information.

Properties

Name Getter Setter Type Description Notes
category getCategory() setCategory($value) string The high-level category for the error. See `ErrorCategory` for possible values. See ErrorCategory for possible values
code getCode() setCode($value) string The specific code of the error. See `ErrorCode` for possible values See ErrorCode for possible values
detail getDetail() setDetail($value) string A human-readable description of the error for debugging purposes. [optional]
field getField() setField($value) string The name of the field provided in the original request (if any) that the error pertains to. [optional]

Note: All properties are protected and only accessed via getters and setters.

[Back to Model list] [Back to API list] [Back to README]