OBJECT
AssetFileData
A structured containing metadata about an asset file.
link GraphQL Schema definition
1 type AssetFileData { 2 3 # The MD5 checksum of the file if set during asset creation 4 : String 5 6 # The SHA256 hash of the file if set during asset creation 7 : String 8 9 # The file size in bytes 10 : BigInt 11 12 # Original file URI, if provided on asset creation 13 : String 14 15 # Media duration in milliseconds 16 : Int 17 18 }