new module:models/ErrorVo(code, message)
This class subject to change without prior notice, Please dont use this class directly.
Constructs a newErrorVo.
Parameters:
| Name | Type | Description |
|---|---|---|
code |
String | A string indicating error |
message |
String | A human-readable message providing more details about the error. |
Members
-
inner code :String
-
A string indicating error
-
inner field :String
-
Refers to the field in the request, if the error is specific to it.
-
inner message :String
-
A human-readable message providing more details about the error.
Methods
-
static constructFromObject(data, obj) → {module:models/ErrorVo}
-
Constructs a
ErrorVofrom a plain JavaScript object, optionally creating a new instance. Copies all relevant properties fromdatatoobjif supplied or a new instance if not.Parameters:
Name Type Description dataObject The plain JavaScript object bearing properties of interest.
objmodule:models/ErrorVo Optional instance to populate.