/** * 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 { CommentNotificationSetting } from './CommentNotificationSetting'; /** * * @export * @interface TrackCommentNotificationResponse */ export interface TrackCommentNotificationResponse { /** * * @type {CommentNotificationSetting} * @memberof TrackCommentNotificationResponse */ data?: CommentNotificationSetting; } /** * Check if a given object implements the TrackCommentNotificationResponse interface. */ export declare function instanceOfTrackCommentNotificationResponse(value: object): value is TrackCommentNotificationResponse; export declare function TrackCommentNotificationResponseFromJSON(json: any): TrackCommentNotificationResponse; export declare function TrackCommentNotificationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackCommentNotificationResponse; export declare function TrackCommentNotificationResponseToJSON(value?: TrackCommentNotificationResponse | null): any;