/** * 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 Reaction */ export interface Reaction { /** * * @type {string} * @memberof Reaction */ reactionValue: string; /** * * @type {string} * @memberof Reaction */ reactionType: string; /** * * @type {string} * @memberof Reaction */ senderUserId: string; /** * * @type {string} * @memberof Reaction */ reactedTo: string; } /** * Check if a given object implements the Reaction interface. */ export declare function instanceOfReaction(value: object): value is Reaction; export declare function ReactionFromJSON(json: any): Reaction; export declare function ReactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Reaction; export declare function ReactionToJSON(value?: Reaction | null): any;