/** * 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 AudioMetadataBlockAttributesSong */ export interface AudioMetadataBlockAttributesSong { /** * * @type {string} * @memberof AudioMetadataBlockAttributesSong */ 'title'?: string | null; /** * * @type {string} * @memberof AudioMetadataBlockAttributesSong */ 'artist'?: string | null; /** * * @type {string} * @memberof AudioMetadataBlockAttributesSong */ 'album'?: string | null; /** * * @type {string} * @memberof AudioMetadataBlockAttributesSong */ 'genre'?: string | null; } /** * Check if a given object implements the AudioMetadataBlockAttributesSong interface. */ export declare function instanceOfAudioMetadataBlockAttributesSong(value: object): value is AudioMetadataBlockAttributesSong; export declare function AudioMetadataBlockAttributesSongFromJSON(json: any): AudioMetadataBlockAttributesSong; export declare function AudioMetadataBlockAttributesSongFromJSONTyped(json: any, ignoreDiscriminator: boolean): AudioMetadataBlockAttributesSong; export declare function AudioMetadataBlockAttributesSongToJSON(json: any): AudioMetadataBlockAttributesSong; export declare function AudioMetadataBlockAttributesSongToJSONTyped(value?: AudioMetadataBlockAttributesSong | null, ignoreDiscriminator?: boolean): any;