module:models/ErrorVo(code, message)

new module:models/ErrorVo(code, message)

This class subject to change without prior notice, Please dont use this class directly.

Constructs a new ErrorVo.
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 ErrorVo from a plain JavaScript object, optionally creating a new instance. Copies all relevant properties from data to obj if supplied or a new instance if not.

Parameters:
Name Type Description
data Object

The plain JavaScript object bearing properties of interest.

obj module:models/ErrorVo

Optional instance to populate.

Returns:
module:models/ErrorVo -

The populated ErrorVo instance.