Table of Contents

Class VerificationImageRequest

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

The verification image request.

[DataContract]
public class VerificationImageRequest
Inheritance
VerificationImageRequest
Inherited Members

Constructors

VerificationImageRequest(string, string, string, int?, string, string)

Initializes a new instance of the VerificationImageRequest class.

public VerificationImageRequest(string emailId = null, string countryCode = null, string phoneNumber = null, int? order = 1, string fileId = null, string onBehalfOf = null)

Parameters

emailId string

Gets or sets signer email.

countryCode string

Gets or sets country code.

phoneNumber string

Gets or sets phone number.

order int?

Gets or sets signer order.

fileId string

Gets or sets file id.

onBehalfOf string

Gets or sets onBehalfOf email.

Properties

CountryCode

Gets or sets country code.

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

Property Value

string

EmailId

Gets or sets signer email.

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

Property Value

string

FileId

Gets or sets the file id.

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

Property Value

string

OnBehalfOf

Gets or sets the behalf email.

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

Property Value

string

Order

Gets or sets the signer order.

[DataMember(Name = "order", EmitDefaultValue = false)]
public int? Order { get; set; }

Property Value

int?

PhoneNumber

Gets or sets phone number.

[DataMember(Name = "phoneNumber", EmitDefaultValue = false)]
public string PhoneNumber { 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.