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