/** * 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. */ /** * Optional metadata for favorite/save operations * @export * @interface FavoriteRequestBody */ export interface FavoriteRequestBody { /** * Set to true when favoriting a reposted item (used for notifications) * @type {boolean} * @memberof FavoriteRequestBody */ isSaveOfRepost?: boolean; } /** * Check if a given object implements the FavoriteRequestBody interface. */ export declare function instanceOfFavoriteRequestBody(value: object): value is FavoriteRequestBody; export declare function FavoriteRequestBodyFromJSON(json: any): FavoriteRequestBody; export declare function FavoriteRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): FavoriteRequestBody; export declare function FavoriteRequestBodyToJSON(value?: FavoriteRequestBody | null): any;