boldsign
Version:
NodeJS client for boldsign
51 lines (44 loc) • 1.32 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';
import { IdDocument } from './idDocument';
export class IdReport {
'verificationResult'?: string | null;
'verifiedDate'?: Date | null;
'error'?: Error;
'document'?: IdDocument;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "verificationResult",
"baseName": "verificationResult",
"type": "string"
},
{
"name": "verifiedDate",
"baseName": "verifiedDate",
"type": "Date"
},
{
"name": "error",
"baseName": "error",
"type": "Error"
},
{
"name": "document",
"baseName": "document",
"type": "IdDocument"
} ];
static getAttributeTypeMap() {
return IdReport.attributeTypeMap;
}
}