Table of Contents

Class Error

Namespace
BoldSign.Model.IdVerification
Assembly
BoldSign.Api.dll

The id verification error.

[DataContract]
public class Error
Inheritance
Error
Inherited Members

Constructors

Error(string, string)

Initializes a new instance of the Error class.

public Error(string code = null, string message = null)

Parameters

code string

Gets or sets the error code.

message string

Gets or sets the error message.

Properties

Code

Gets or sets the error code.

[DataMember(Name = "code", EmitDefaultValue = false)]
public string Code { get; set; }

Property Value

string

Message

Gets or sets the error message.

[DataMember(Name = "message", EmitDefaultValue = false)]
public string Message { get; set; }

Property Value

string

Methods

ToJson()

Returns the JSON string presentation of the object.

public virtual string ToJson()

Returns

string

JSON string presentation of the object.