# FileImport

External file properties

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**content_type** | **string** | The mime type of this file | [default to undefined]
**idempotency_key** | **string** | Unique value generated by the client which ChatKitty uses to recognize subsequent retries of the same request. Optional but recommended | [optional] [default to undefined]
**name** | **string** | The file name | [default to undefined]
**size** | **number** | The size of this file in bytes | [default to undefined]
**url** | **string** | The file URL | [default to undefined]

## Example

```typescript
import { FileImport } from 'chatkitty';

const instance: FileImport = {
    content_type,
    idempotency_key,
    name,
    size,
    url,
};
```

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