Class IdVerification
- Namespace
- BoldSign.Model.IdVerification
- Assembly
- BoldSign.Api.dll
The id verification details.
public class IdVerification
- Inheritance
-
IdVerification
- Inherited Members
Constructors
IdVerification(string, int?, string, string, bool?, bool?)
Initializes a new instance of the IdVerification class.
public IdVerification(string type = null, int? maximumRetryCount = null, string status = null, string nameMatcher = null, bool? requireLiveCapture = null, bool? requireMatchingSelfie = null)
Parameters
typestringGets or sets the identity verification type.
maximumRetryCountint?Gets or sets the maximum retry count.
statusstringGets or sets the status.
nameMatcherstringGets or sets the name matcher.
requireLiveCapturebool?Gets or sets the require live capture.
requireMatchingSelfiebool?Gets or sets the require matching selfie.
Properties
AllowedCountries
Gets or sets the allowed countries of id verification process.
[DataMember(Name = "allowedCountries", EmitDefaultValue = false)]
public List<string> AllowedCountries { get; set; }
Property Value
AllowedDocumentTypes
Gets or sets the allowed document types of id verification process.
[DataMember(Name = "allowedDocumentTypes", EmitDefaultValue = false)]
public List<string> AllowedDocumentTypes { get; set; }
Property Value
HoldForPrefill
Gets or sets a value indicating whether we can hold the signing until sender prefilled form fields.
[DataMember(Name = "holdForPrefill", EmitDefaultValue = false)]
public bool? HoldForPrefill { get; set; }
Property Value
- bool?
MaximumRetryCount
Gets or sets the number of retries.
[DataMember(Name = "maximumRetryCount", EmitDefaultValue = false)]
public int? MaximumRetryCount { get; set; }
Property Value
- int?
NameMatcher
Gets or sets a name matcher.
[DataMember(Name = "nameMatcher", EmitDefaultValue = false)]
public string NameMatcher { get; set; }
Property Value
PrefillCompleted
Gets or sets a value indicating whether sender prefilled form fields or not.
[DataMember(Name = "prefillCompleted", EmitDefaultValue = false)]
public bool? PrefillCompleted { get; set; }
Property Value
- bool?
RequireLiveCapture
Gets or sets a value indicating whether require live capture (Disable image file upload).
[DataMember(Name = "requireLiveCapture", EmitDefaultValue = false)]
public bool? RequireLiveCapture { get; set; }
Property Value
- bool?
RequireMatchingSelfie
Gets or sets a value indicating whether require matching selfie (Selfie and document image should match).
[DataMember(Name = "requireMatchingSelfie", EmitDefaultValue = false)]
public bool? RequireMatchingSelfie { get; set; }
Property Value
- bool?
Status
Gets or sets the status.
[DataMember(Name = "status", EmitDefaultValue = false)]
public string Status { get; set; }
Property Value
Type
Gets or sets the type of id verification.
[DataMember(Name = "type", EmitDefaultValue = false)]
public string Type { 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.