Class VerificationReportRequest
- Namespace
- BoldSign.Model.IdVerification
- Assembly
- BoldSign.Api.dll
The verification report request.
[DataContract]
public class VerificationReportRequest
- Inheritance
-
VerificationReportRequest
- Inherited Members
Constructors
VerificationReportRequest(string, string, string, int?, string)
Initializes a new instance of the VerificationReportRequest class.
public VerificationReportRequest(string emailId = null, string countryCode = null, string phoneNumber = null, int? order = 1, 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.
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
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.