open-project-flutter-api/doc/FileLinkOriginDataModel.md
2023-11-05 19:54:17 +01:00

23 lines
1.3 KiB
Markdown

# openapi.model.FileLinkOriginDataModel
## Load the model package
```dart
import 'package:openapi/api.dart';
```
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **String** | Linked file's id on the origin |
**name** | **String** | Linked file's name on the origin |
**mimeType** | **String** | MIME type of the linked file. To link a folder entity, the custom MIME type `application/x-op-directory` MUST be provided. Otherwise it defaults back to an unknown MIME type. | [optional]
**size** | **int** | file size on origin in bytes | [optional]
**createdAt** | [**DateTime**](DateTime.md) | Timestamp of the creation datetime of the file on the origin | [optional]
**lastModifiedAt** | [**DateTime**](DateTime.md) | Timestamp of the datetime of the last modification of the file on the origin | [optional]
**createdByName** | **String** | Display name of the author that created the file on the origin | [optional]
**lastModifiedByName** | **String** | Display name of the author that modified the file on the origin last | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)