/** * 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 { AudioMetadataBlockAttributesSong } from './AudioMetadataBlockAttributesSong'; import type { VideoMetadataBlockAttributesAudio } from './VideoMetadataBlockAttributesAudio'; /** * * @export * @interface AudioMetadataBlockAttributes */ export interface AudioMetadataBlockAttributes { /** * * @type {VideoMetadataBlockAttributesAudio} * @memberof AudioMetadataBlockAttributes */ 'audio'?: VideoMetadataBlockAttributesAudio | null; /** * * @type {AudioMetadataBlockAttributesSong} * @memberof AudioMetadataBlockAttributes */ 'song'?: AudioMetadataBlockAttributesSong | null; } /** * Check if a given object implements the AudioMetadataBlockAttributes interface. */ export declare function instanceOfAudioMetadataBlockAttributes(value: object): value is AudioMetadataBlockAttributes; export declare function AudioMetadataBlockAttributesFromJSON(json: any): AudioMetadataBlockAttributes; export declare function AudioMetadataBlockAttributesFromJSONTyped(json: any, ignoreDiscriminator: boolean): AudioMetadataBlockAttributes; export declare function AudioMetadataBlockAttributesToJSON(json: any): AudioMetadataBlockAttributes; export declare function AudioMetadataBlockAttributesToJSONTyped(value?: AudioMetadataBlockAttributes | null, ignoreDiscriminator?: boolean): any;