UNPKG

boldsign

Version:

NodeJS client for boldsign

80 lines (73 loc) 2.2 kB
/** * BoldSign API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; export class IdVerification { 'type'?: string | null; 'maximumRetryCount'?: number | null; 'status'?: string | null; 'nameMatcher'?: string | null; 'requireLiveCapture'?: boolean | null; 'requireMatchingSelfie'?: boolean | null; 'holdForPrefill'?: boolean | null; 'prefillCompleted'?: boolean | null; 'allowedDocumentTypes'?: Array<string> | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "type", "baseName": "type", "type": "string" }, { "name": "maximumRetryCount", "baseName": "maximumRetryCount", "type": "number" }, { "name": "status", "baseName": "status", "type": "string" }, { "name": "nameMatcher", "baseName": "nameMatcher", "type": "string" }, { "name": "requireLiveCapture", "baseName": "requireLiveCapture", "type": "boolean" }, { "name": "requireMatchingSelfie", "baseName": "requireMatchingSelfie", "type": "boolean" }, { "name": "holdForPrefill", "baseName": "holdForPrefill", "type": "boolean" }, { "name": "prefillCompleted", "baseName": "prefillCompleted", "type": "boolean" }, { "name": "allowedDocumentTypes", "baseName": "allowedDocumentTypes", "type": "Array<string>" } ]; static getAttributeTypeMap() { return IdVerification.attributeTypeMap; } }