/** * * Represents information about how an identity document (such as a Belgian eID) was read, * including the document number, support serial number, and encoding details. * / */ export declare class IdentityDocumentReader { /** * * The justification document number. */ justificatifDocumentNumber: string | undefined; /** * * The serial number of the support used to read the document. */ supportSerialNumber: string | undefined; /** * * The timestamp (unix epoch in ms) when the eID document was read. */ timeReadingEIdDocument: number | undefined; /** * * The type of eID document support used. */ eidDocumentSupportType: number; /** * * The reason code for manual encoding, if applicable. */ reasonManualEncoding: number; /** * * The reason code for using a vignette, if applicable. */ reasonUsingVignette: number; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): IdentityDocumentReader; }