/**
 * 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';
import type { QuestionResult } from './QuestionResult';
/**
 *
 * @export
 * @interface GetQuestionResult200Response
 */
export interface GetQuestionResult200Response {
    /**
     *
     * @type {APIStatus}
     * @memberof GetQuestionResult200Response
     */
    status: APIStatus;
    /**
     *
     * @type {QuestionResult}
     * @memberof GetQuestionResult200Response
     */
    questionResult: QuestionResult;
    /**
     *
     * @type {string}
     * @memberof GetQuestionResult200Response
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetQuestionResult200Response
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetQuestionResult200Response
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetQuestionResult200Response
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetQuestionResult200Response
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetQuestionResult200Response
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetQuestionResult200Response
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetQuestionResult200Response interface.
 */
export declare function instanceOfGetQuestionResult200Response(value: object): value is GetQuestionResult200Response;
export declare function GetQuestionResult200ResponseFromJSON(json: any): GetQuestionResult200Response;
export declare function GetQuestionResult200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQuestionResult200Response;
export declare function GetQuestionResult200ResponseToJSON(json: any): GetQuestionResult200Response;
export declare function GetQuestionResult200ResponseToJSONTyped(value?: GetQuestionResult200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetQuestionResult200Response.d.ts.map