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
type
stringGets or sets the identity verification type.
maximumRetryCount
int?Gets or sets the maximum retry count.
status
stringGets or sets the status.
nameMatcher
stringGets or sets the name matcher.
requireLiveCapture
bool?Gets or sets the require live capture.
requireMatchingSelfie
bool?Gets or sets the require matching selfie.
Properties
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.