/** * 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 TrackCommentCountResponse */ export interface TrackCommentCountResponse { /** * * @type {number} * @memberof TrackCommentCountResponse */ data?: number; } /** * Check if a given object implements the TrackCommentCountResponse interface. */ export declare function instanceOfTrackCommentCountResponse(value: object): value is TrackCommentCountResponse; export declare function TrackCommentCountResponseFromJSON(json: any): TrackCommentCountResponse; export declare function TrackCommentCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackCommentCountResponse; export declare function TrackCommentCountResponseToJSON(value?: TrackCommentCountResponse | null): any;