/**
 * 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 { UserNotification } from './UserNotification';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetNotifications200Response
 */
export interface GetNotifications200Response {
    /**
     *
     * @type {APIStatus}
     * @memberof GetNotifications200Response
     */
    status: APIStatus;
    /**
     *
     * @type {Array<UserNotification>}
     * @memberof GetNotifications200Response
     */
    notifications: Array<UserNotification>;
    /**
     *
     * @type {string}
     * @memberof GetNotifications200Response
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetNotifications200Response
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetNotifications200Response
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetNotifications200Response
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetNotifications200Response
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetNotifications200Response
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetNotifications200Response
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetNotifications200Response interface.
 */
export declare function instanceOfGetNotifications200Response(value: object): value is GetNotifications200Response;
export declare function GetNotifications200ResponseFromJSON(json: any): GetNotifications200Response;
export declare function GetNotifications200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetNotifications200Response;
export declare function GetNotifications200ResponseToJSON(json: any): GetNotifications200Response;
export declare function GetNotifications200ResponseToJSONTyped(value?: GetNotifications200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetNotifications200Response.d.ts.map