/** * 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. */ /** * * @export * @interface VideoMetadataBlockAttributesVideo */ export interface VideoMetadataBlockAttributesVideo { /** * * @type {string} * @memberof VideoMetadataBlockAttributesVideo */ 'codec'?: string | null; /** * * @type {number} * @memberof VideoMetadataBlockAttributesVideo */ 'duration'?: number | null; /** * * @type {number} * @memberof VideoMetadataBlockAttributesVideo */ 'bitRate'?: number | null; /** * * @type {number} * @memberof VideoMetadataBlockAttributesVideo */ 'frameRate'?: number | null; } /** * Check if a given object implements the VideoMetadataBlockAttributesVideo interface. */ export declare function instanceOfVideoMetadataBlockAttributesVideo(value: object): value is VideoMetadataBlockAttributesVideo; export declare function VideoMetadataBlockAttributesVideoFromJSON(json: any): VideoMetadataBlockAttributesVideo; export declare function VideoMetadataBlockAttributesVideoFromJSONTyped(json: any, ignoreDiscriminator: boolean): VideoMetadataBlockAttributesVideo; export declare function VideoMetadataBlockAttributesVideoToJSON(json: any): VideoMetadataBlockAttributesVideo; export declare function VideoMetadataBlockAttributesVideoToJSONTyped(value?: VideoMetadataBlockAttributesVideo | null, ignoreDiscriminator?: boolean): any;