/* tslint:disable */ /* eslint-disable */ /** * clients * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ // May contain unused imports in some cases // @ts-ignore import type { Document } from './document'; /** * An Id document represents a document that can be used to identify a person like a passport, a drivers license an id card etc. */ export interface IdentificationDocument { /** * A list containing information about the attached files for this document */ attachments?: Array; /** * The encoded key of the client that owns this document */ clientKey?: string; /** * The id of the document */ documentId: string; /** * The type of the document, Passport, Id card Drivers license, etc. */ documentType: string; /** * The encoded key of the document, generated, unique */ encodedKey?: string; /** * Encoded key of the template used for this document */ identificationDocumentTemplateKey?: string; /** * This document\'s index in the list of documents */ indexInList?: number; /** * Authority that issued the document, eg. Police */ issuingAuthority?: string; /** * Date when the validity of the document ends */ validUntil?: string; }