/**
 * 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 GetUserReactsPublic200Response
 */
export interface GetUserReactsPublic200Response {
    /**
     *
     * @type {APIStatus}
     * @memberof GetUserReactsPublic200Response
     */
    status: APIStatus;
    /**
     *
     * @type {{ [key: string]: { [key: string]: boolean; }; }}
     * @memberof GetUserReactsPublic200Response
     */
    reacts: {
        [key: string]: {
            [key: string]: boolean;
        };
    };
    /**
     *
     * @type {string}
     * @memberof GetUserReactsPublic200Response
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetUserReactsPublic200Response
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetUserReactsPublic200Response
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetUserReactsPublic200Response
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetUserReactsPublic200Response
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetUserReactsPublic200Response
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetUserReactsPublic200Response
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetUserReactsPublic200Response interface.
 */
export declare function instanceOfGetUserReactsPublic200Response(value: object): value is GetUserReactsPublic200Response;
export declare function GetUserReactsPublic200ResponseFromJSON(json: any): GetUserReactsPublic200Response;
export declare function GetUserReactsPublic200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserReactsPublic200Response;
export declare function GetUserReactsPublic200ResponseToJSON(json: any): GetUserReactsPublic200Response;
export declare function GetUserReactsPublic200ResponseToJSONTyped(value?: GetUserReactsPublic200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetUserReactsPublic200Response.d.ts.map