/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { PresignedFile } from './PresignedFile'; import type { VideoMetadataBlockAttributes } from './VideoMetadataBlockAttributes'; /** * * @export * @interface VideoMetadataBlock */ export interface VideoMetadataBlock { /** * Whether the resource is infected with malware * @type {boolean} * @memberof VideoMetadataBlock */ 'infected': boolean; /** * * @type {string} * @memberof VideoMetadataBlock */ 'caption': string | null; /** * * @type {Array} * @memberof VideoMetadataBlock */ 'keywords'?: Array | null; /** * * @type {PresignedFile} * @memberof VideoMetadataBlock */ 'transcript': PresignedFile | null; /** * * @type {VideoMetadataBlockAttributes} * @memberof VideoMetadataBlock */ 'attributes': VideoMetadataBlockAttributes | null; } /** * Check if a given object implements the VideoMetadataBlock interface. */ export declare function instanceOfVideoMetadataBlock(value: object): value is VideoMetadataBlock; export declare function VideoMetadataBlockFromJSON(json: any): VideoMetadataBlock; export declare function VideoMetadataBlockFromJSONTyped(json: any, ignoreDiscriminator: boolean): VideoMetadataBlock; export declare function VideoMetadataBlockToJSON(json: any): VideoMetadataBlock; export declare function VideoMetadataBlockToJSONTyped(value?: VideoMetadataBlock | null, ignoreDiscriminator?: boolean): any;