/** * Audius API * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Music mood * @export */ export declare const Mood: { readonly Peaceful: "Peaceful"; readonly Romantic: "Romantic"; readonly Sentimental: "Sentimental"; readonly Tender: "Tender"; readonly Easygoing: "Easygoing"; readonly Yearning: "Yearning"; readonly Sophisticated: "Sophisticated"; readonly Sensual: "Sensual"; readonly Cool: "Cool"; readonly Gritty: "Gritty"; readonly Melancholy: "Melancholy"; readonly Serious: "Serious"; readonly Brooding: "Brooding"; readonly Fiery: "Fiery"; readonly Defiant: "Defiant"; readonly Aggressive: "Aggressive"; readonly Rowdy: "Rowdy"; readonly Excited: "Excited"; readonly Energizing: "Energizing"; readonly Empowering: "Empowering"; readonly Stirring: "Stirring"; readonly Upbeat: "Upbeat"; readonly Other: "Other"; }; export type Mood = typeof Mood[keyof typeof Mood]; export declare function MoodFromJSON(json: any): Mood; export declare function MoodFromJSONTyped(json: any, ignoreDiscriminator: boolean): Mood; export declare function MoodToJSON(value?: Mood | null): any;