/** * 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. */ import type { CommentEntityType } from './CommentEntityType'; /** * * @export * @interface ReactCommentRequestBody */ export interface ReactCommentRequestBody { /** * * @type {CommentEntityType} * @memberof ReactCommentRequestBody */ entityType: CommentEntityType; /** * ID of the entity (track) being commented on * @type {number} * @memberof ReactCommentRequestBody */ entityId: number; } /** * Check if a given object implements the ReactCommentRequestBody interface. */ export declare function instanceOfReactCommentRequestBody(value: object): value is ReactCommentRequestBody; export declare function ReactCommentRequestBodyFromJSON(json: any): ReactCommentRequestBody; export declare function ReactCommentRequestBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReactCommentRequestBody; export declare function ReactCommentRequestBodyToJSON(value?: ReactCommentRequestBody | null): any;