The enum representing all the possible Effis supported file metadatas.
Field | Type | Description |
---|
type | “Text” | The type of this FileMetadata variant. |
Field | Type | Description |
---|
type | “Image” | The type of this FileMetadata variant. |
width? | Number | The width of the image in pixels. |
height? | Number | The height of the image in pixels. |
Field | Type | Description |
---|
type | “Video” | The type of this FileMetadata variant. |
width? | Number | The width of the video in pixels. |
height? | Number | The height of the video in pixels. |
Field | Type | Description |
---|
type | “Other” | The type of this FileMetadata variant. |
{
"type": "text"
}
{
"type": "image",
"width": 5120,
"height": 1440
}
{
"type": "video",
"width": 1920,
"height": 1080
}
{
"type": "other"
}