Class IdReport
- Namespace
- BoldSign.Model.IdVerification
- Assembly
- BoldSign.Api.dll
The id verification report.
[DataContract]
public class IdReport
- Inheritance
-
IdReport
- Inherited Members
Constructors
IdReport(string, DateTime?, Error, IdDocument)
Initializes a new instance of the IdReport class.
public IdReport(string verificationResult = null, DateTime? verifiedDate = null, Error error = null, IdDocument document = null)
Parameters
verificationResult
stringGets or sets the verification result.
verifiedDate
DateTime?Gets or sets the verified date time.
error
ErrorGets or sets the error.
document
IdDocumentGets or sets the document details.
Properties
Document
Gets or sets the document details.
[DataMember(Name = "document", EmitDefaultValue = false)]
public IdDocument Document { get; set; }
Property Value
Error
Gets or sets the error.
[DataMember(Name = "error", EmitDefaultValue = false)]
public Error Error { get; set; }
Property Value
VerificationResult
Gets or sets the verification result.
[DataMember(Name = "verificationResult", EmitDefaultValue = false)]
public string VerificationResult { get; set; }
Property Value
VerifiedDate
Gets or sets the verified date time.
[DataMember(Name = "verifiedDate", EmitDefaultValue = false)]
public DateTime? VerifiedDate { 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.