Class IdentityVerificationSettings
The identity verification settings include identity verification type and maximum retry count.
[DataContract]
public class IdentityVerificationSettings
- Inheritance
-
IdentityVerificationSettings
- Inherited Members
Constructors
IdentityVerificationSettings(IdVerificationType?, int?, bool?, bool?, NameVariation?)
Initializes a new instance of the IdentityVerificationSettings class.
public IdentityVerificationSettings(IdVerificationType? type = null, int? maximumRetryCount = null, bool? requireLiveCapture = null, bool? requireMatchingSelfie = null, NameVariation? nameMatcher = null)
Parameters
typeIdVerificationType?Gets or sets the identity verification type.
maximumRetryCountint?Gets or sets the maximum retry count.
requireLiveCapturebool?Gets or sets the require live capture.
requireMatchingSelfiebool?Gets or sets the require matching selfie.
nameMatcherNameVariation?Gets or sets the name matcher.
Properties
AllowedDocumentTypes
Gets or sets the allowed document types list.
[DataMember(Name = "allowedDocumentTypes", EmitDefaultValue = false)]
public List<AllowedDocumentType> 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 maximum retry count.
[DataMember(Name = "maximumRetryCount", EmitDefaultValue = false)]
public int? MaximumRetryCount { get; set; }
Property Value
- int?
NameMatcher
Gets or sets a value indicating name matcher enum type.
[DataMember(Name = "nameMatcher", EmitDefaultValue = false)]
public NameVariation? NameMatcher { get; set; }
Property Value
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?
Type
Gets or sets the identity verification type.
[DataMember(Name = "type", EmitDefaultValue = false)]
public IdVerificationType? 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.