/** * 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 SpotifyMetadata */ export interface SpotifyMetadata { /** * * @type {string} * @memberof SpotifyMetadata */ 'track': string | null; /** * * @type {string} * @memberof SpotifyMetadata */ 'artist': string | null; /** * * @type {string} * @memberof SpotifyMetadata */ 'audio': string | null; /** * * @type {string} * @memberof SpotifyMetadata */ 'embed': string | null; } /** * Check if a given object implements the SpotifyMetadata interface. */ export declare function instanceOfSpotifyMetadata(value: object): value is SpotifyMetadata; export declare function SpotifyMetadataFromJSON(json: any): SpotifyMetadata; export declare function SpotifyMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): SpotifyMetadata; export declare function SpotifyMetadataToJSON(json: any): SpotifyMetadata; export declare function SpotifyMetadataToJSONTyped(value?: SpotifyMetadata | null, ignoreDiscriminator?: boolean): any;