/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * 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 FormatMetadata */ export interface FormatMetadata { /** * * @type {number} * @memberof FormatMetadata */ readonly width?: number | null; /** * * @type {number} * @memberof FormatMetadata */ readonly height?: number | null; /** * * @type {number} * @memberof FormatMetadata */ readonly framerateFloat?: number | null; /** * * @type {string} * @memberof FormatMetadata */ readonly framerate?: string | null; /** * * @type {number} * @memberof FormatMetadata */ readonly duration?: number | null; } export declare function FormatMetadataFromJSON(json: any): FormatMetadata; export declare function FormatMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormatMetadata; export declare function FormatMetadataToJSON(value?: FormatMetadata | null): any;