The enum representing all the possible Effis supported file metadatas.
| Field | Type | Description | 
|---|
| type | "TEXT" | The type of this File Metadata variant. | 
| Field | Type | Description | 
|---|
| type | "IMAGE" | The type of this File Metadata variant. | 
| width? | Number | The image’s width in pixels. | 
| height? | Number | The image’s height in pixels. | 
| Field | Type | Description | 
|---|
| type | "VIDEO" | The type of this File Metadata variant. | 
| width? | Number | The video’s width in pixels. | 
| height? | Number | The video’s height in pixels. | 
| Field | Type | Description | 
|---|
| type | "OTHER" | The type of this File Metadata variant. | 
{
  "type": "TEXT"
}
{
  "type": "IMAGE",
  "width": 5120,
  "height": 1440
}
{
  "type": "VIDEO",
  "width": 1920,
  "height": 1080
}
{
  "type": "OTHER"
}