/** * 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 genre * @export */ export declare const Genre: { readonly Electronic: "Electronic"; readonly Rock: "Rock"; readonly Metal: "Metal"; readonly Alternative: "Alternative"; readonly HipHopRap: "Hip-Hop/Rap"; readonly Experimental: "Experimental"; readonly Punk: "Punk"; readonly Folk: "Folk"; readonly Pop: "Pop"; readonly Ambient: "Ambient"; readonly Soundtrack: "Soundtrack"; readonly World: "World"; readonly Jazz: "Jazz"; readonly Acoustic: "Acoustic"; readonly Funk: "Funk"; readonly RbSoul: "R&B/Soul"; readonly Devotional: "Devotional"; readonly Classical: "Classical"; readonly Reggae: "Reggae"; readonly Podcasts: "Podcasts"; readonly Country: "Country"; readonly SpokenWord: "Spoken Word"; readonly Comedy: "Comedy"; readonly Blues: "Blues"; readonly Kids: "Kids"; readonly Audiobooks: "Audiobooks"; readonly Latin: "Latin"; readonly LoFi: "Lo-Fi"; readonly Hyperpop: "Hyperpop"; readonly Dancehall: "Dancehall"; readonly Techno: "Techno"; readonly Trap: "Trap"; readonly House: "House"; readonly TechHouse: "Tech House"; readonly DeepHouse: "Deep House"; readonly Disco: "Disco"; readonly Electro: "Electro"; readonly Jungle: "Jungle"; readonly ProgressiveHouse: "Progressive House"; readonly Hardstyle: "Hardstyle"; readonly GlitchHop: "Glitch Hop"; readonly Trance: "Trance"; readonly FutureBass: "Future Bass"; readonly FutureHouse: "Future House"; readonly TropicalHouse: "Tropical House"; readonly Downtempo: "Downtempo"; readonly DrumBass: "Drum & Bass"; readonly Dubstep: "Dubstep"; readonly JerseyClub: "Jersey Club"; readonly Vaporwave: "Vaporwave"; readonly Moombahton: "Moombahton"; }; export type Genre = typeof Genre[keyof typeof Genre]; export declare function GenreFromJSON(json: any): Genre; export declare function GenreFromJSONTyped(json: any, ignoreDiscriminator: boolean): Genre; export declare function GenreToJSON(value?: Genre | null): any;