/** * 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 CommentNotificationSetting */ export interface CommentNotificationSetting { /** * * @type {boolean} * @memberof CommentNotificationSetting */ isMuted: boolean; } /** * Check if a given object implements the CommentNotificationSetting interface. */ export declare function instanceOfCommentNotificationSetting(value: object): value is CommentNotificationSetting; export declare function CommentNotificationSettingFromJSON(json: any): CommentNotificationSetting; export declare function CommentNotificationSettingFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentNotificationSetting; export declare function CommentNotificationSettingToJSON(value?: CommentNotificationSetting | null): any;