UNPKG

boldsign

Version:

NodeJS client for boldsign

34 lines (33 loc) 885 B
export declare class IdentityVerificationSettings { 'type'?: IdentityVerificationSettings.TypeEnum; 'maximumRetryCount'?: number | null; 'requireLiveCapture'?: boolean | null; 'requireMatchingSelfie'?: boolean | null; 'nameMatcher'?: IdentityVerificationSettings.NameMatcherEnum; 'holdForPrefill'?: boolean | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace IdentityVerificationSettings { enum TypeEnum { EveryAccess, UntilSignCompleted, OncePerDocument, Null } enum NameMatcherEnum { Strict, Moderate, Lenient, Null } }