UNPKG

boldsign

Version:

NodeJS client for boldsign

32 lines (31 loc) 857 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 } enum NameMatcherEnum { Strict, Moderate, Lenient } }