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
stringGets or sets signer email.
countryCode
stringGets or sets country code.
phoneNumber
stringGets or sets phone number.
order
int?Gets or sets signer order.
fileId
stringGets or sets file id.
onBehalfOf
stringGets or sets onBehalfOf email.
Properties
CountryCode
Gets or sets country code.
[DataMember(Name = "countryCode", EmitDefaultValue = false)]
public string CountryCode { get; set; }
Property Value
EmailId
Gets or sets signer email.
[DataMember(Name = "emailId", EmitDefaultValue = false)]
public string EmailId { get; set; }
Property Value
FileId
Gets or sets the file id.
[DataMember(Name = "fileId", EmitDefaultValue = false)]
public string FileId { get; set; }
Property Value
OnBehalfOf
Gets or sets the behalf email.
[DataMember(Name = "onBehalfOf", EmitDefaultValue = false)]
public string OnBehalfOf { get; set; }
Property Value
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
Methods
ToJson()
Returns the JSON string presentation of the object.
public virtual string ToJson()
Returns
- string
JSON string presentation of the object.