>>

File Metadata

The enum representing all the possible Effis supported file metadatas.

>>

TEXT

FieldTypeDescription
type"TEXT"The type of this File Metadata variant.
>>

IMAGE

FieldTypeDescription
type"IMAGE"The type of this File Metadata variant.
width?NumberThe image’s width in pixels.
height?NumberThe image’s height in pixels.
>>

VIDEO

FieldTypeDescription
type"VIDEO"The type of this File Metadata variant.
width?NumberThe video’s width in pixels.
height?NumberThe video’s height in pixels.
>>

OTHER

FieldTypeDescription
type"OTHER"The type of this File Metadata variant.
>>

Examples

{
  "type": "TEXT"
}
{
  "type": "IMAGE",
  "width": 5120,
  "height": 1440
}
{
  "type": "VIDEO",
  "width": 1920,
  "height": 1080
}
{
  "type": "OTHER"
}