boldsign
Version:
NodeJS client for boldsign
19 lines (18 loc) • 479 B
TypeScript
import { IdDocument } from './idDocument';
export declare class IdReport {
'verificationResult'?: string | null;
'verifiedDate'?: Date | null;
'error'?: Error;
'document'?: IdDocument;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}