boldsign
Version:
NodeJS client for boldsign
74 lines (67 loc) • 2 kB
text/typescript
/**
* 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;
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"
} ];
static getAttributeTypeMap() {
return IdVerification.attributeTypeMap;
}
}