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