# Document

Holds information regarding the documents uploaded as attachments

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**creationDate** | **string** | The creation date of the document, stored as UTC | [optional] [readonly] [default to undefined]
**encodedKey** | **string** | The document encodedKey | [optional] [readonly] [default to undefined]
**fileName** | **string** | The original file name of the document | [optional] [default to undefined]
**fileSize** | **number** | The file size of the document | [optional] [default to undefined]
**id** | **number** | The document id | [default to undefined]
**lastModifiedDate** | **string** | The last modified date of the document, stored as UTC | [optional] [readonly] [default to undefined]
**location** | **string** | Location where the document can be found, eg /myfiles/mypicture.jpeg | [optional] [default to undefined]
**name** | **string** | The name of the document | [default to undefined]
**notes** | **string** | Detailed notes about the document | [optional] [default to undefined]
**ownerKey** | **string** | Represents the holder of this document. If null, means nobody is the owner of this document | [optional] [readonly] [default to undefined]
**ownerType** | **string** | Determines the owner type of the document | [optional] [readonly] [default to undefined]
**type** | **string** | The extension of the document | [default to undefined]

## Example

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

const instance: Document = {
    creationDate,
    encodedKey,
    fileName,
    fileSize,
    id,
    lastModifiedDate,
    location,
    name,
    notes,
    ownerKey,
    ownerType,
    type,
};
```

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