/**
 * 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 UpdateUserNotificationPageSubscriptionStatusResponse
 */
export interface UpdateUserNotificationPageSubscriptionStatusResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    status: APIStatus;
    /**
     *
     * @type {number}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    matchedCount: number;
    /**
     *
     * @type {number}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    modifiedCount: number;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    note: UpdateUserNotificationPageSubscriptionStatusResponseNoteEnum;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof UpdateUserNotificationPageSubscriptionStatusResponse
     */
    customConfig?: CustomConfigParameters;
}
/**
* @export
* @enum {string}
*/
export declare enum UpdateUserNotificationPageSubscriptionStatusResponseNoteEnum {
    ignored_since_impersonated = "ignored-since-impersonated",
    demo_noop = "demo-noop"
}
/**
 * Check if a given object implements the UpdateUserNotificationPageSubscriptionStatusResponse interface.
 */
export declare function instanceOfUpdateUserNotificationPageSubscriptionStatusResponse(value: object): value is UpdateUserNotificationPageSubscriptionStatusResponse;
export declare function UpdateUserNotificationPageSubscriptionStatusResponseFromJSON(json: any): UpdateUserNotificationPageSubscriptionStatusResponse;
export declare function UpdateUserNotificationPageSubscriptionStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserNotificationPageSubscriptionStatusResponse;
export declare function UpdateUserNotificationPageSubscriptionStatusResponseToJSON(json: any): UpdateUserNotificationPageSubscriptionStatusResponse;
export declare function UpdateUserNotificationPageSubscriptionStatusResponseToJSONTyped(value?: UpdateUserNotificationPageSubscriptionStatusResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UpdateUserNotificationPageSubscriptionStatusResponse.d.ts.map