/** * 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 { Comment } from './Comment'; /** * * @export * @interface CommentResponse */ export interface CommentResponse { /** * * @type {Array} * @memberof CommentResponse */ data?: Array; } /** * Check if a given object implements the CommentResponse interface. */ export declare function instanceOfCommentResponse(value: object): value is CommentResponse; export declare function CommentResponseFromJSON(json: any): CommentResponse; export declare function CommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentResponse; export declare function CommentResponseToJSON(value?: CommentResponse | null): any;