# IdentificationDocument

An Id document represents a document that can be used to identify a person like a passport, a drivers license an id card etc.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**attachments** | [**Array&lt;Document&gt;**](Document.md) | A list containing information about the attached files for this document | [optional] [default to undefined]
**clientKey** | **string** | The encoded key of the client that owns this document | [optional] [readonly] [default to undefined]
**documentId** | **string** | The id of the document | [default to undefined]
**documentType** | **string** | The type of the document, Passport, Id card Drivers license, etc. | [default to undefined]
**encodedKey** | **string** | The encoded key of the document, generated, unique | [optional] [readonly] [default to undefined]
**identificationDocumentTemplateKey** | **string** | Encoded key of the template used for this document | [optional] [default to undefined]
**indexInList** | **number** | This document\&#39;s index in the list of documents | [optional] [default to undefined]
**issuingAuthority** | **string** | Authority that issued the document, eg. Police | [optional] [default to undefined]
**validUntil** | **string** | Date when the validity of the document ends | [optional] [default to undefined]

## Example

```typescript
import { IdentificationDocument } from './api';

const instance: IdentificationDocument = {
    attachments,
    clientKey,
    documentId,
    documentType,
    encodedKey,
    identificationDocumentTemplateKey,
    indexInList,
    issuingAuthority,
    validUntil,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
