/**
 * fastcomments
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 0.0.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 { CustomConfigParameters } from './CustomConfigParameters';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface UpdateUserNotificationCommentSubscriptionStatusResponse
 */
export interface UpdateUserNotificationCommentSubscriptionStatusResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    status: APIStatus;
    /**
     *
     * @type {number}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    matchedCount: number;
    /**
     *
     * @type {number}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    modifiedCount: number;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    note: UpdateUserNotificationCommentSubscriptionStatusResponseNoteEnum;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof UpdateUserNotificationCommentSubscriptionStatusResponse
     */
    customConfig?: CustomConfigParameters;
}
/**
* @export
* @enum {string}
*/
export declare enum UpdateUserNotificationCommentSubscriptionStatusResponseNoteEnum {
    ignored_since_impersonated = "ignored-since-impersonated",
    demo_noop = "demo-noop"
}
/**
 * Check if a given object implements the UpdateUserNotificationCommentSubscriptionStatusResponse interface.
 */
export declare function instanceOfUpdateUserNotificationCommentSubscriptionStatusResponse(value: object): value is UpdateUserNotificationCommentSubscriptionStatusResponse;
export declare function UpdateUserNotificationCommentSubscriptionStatusResponseFromJSON(json: any): UpdateUserNotificationCommentSubscriptionStatusResponse;
export declare function UpdateUserNotificationCommentSubscriptionStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserNotificationCommentSubscriptionStatusResponse;
export declare function UpdateUserNotificationCommentSubscriptionStatusResponseToJSON(json: any): UpdateUserNotificationCommentSubscriptionStatusResponse;
export declare function UpdateUserNotificationCommentSubscriptionStatusResponseToJSONTyped(value?: UpdateUserNotificationCommentSubscriptionStatusResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UpdateUserNotificationCommentSubscriptionStatusResponse.d.ts.map