/** * 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. */ /** * * @export * @interface Favorite */ export interface Favorite { /** * * @type {string} * @memberof Favorite */ favoriteItemId: string; /** * * @type {string} * @memberof Favorite */ favoriteType: string; /** * * @type {string} * @memberof Favorite */ userId: string; /** * * @type {string} * @memberof Favorite */ createdAt: string; } /** * Check if a given object implements the Favorite interface. */ export declare function instanceOfFavorite(value: object): value is Favorite; export declare function FavoriteFromJSON(json: any): Favorite; export declare function FavoriteFromJSONTyped(json: any, ignoreDiscriminator: boolean): Favorite; export declare function FavoriteToJSON(value?: Favorite | null): any;