/**
 * 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 { QuestionResultAggregationOverall } from './QuestionResultAggregationOverall';
/**
 *
 * @export
 * @interface AggregateQuestionResultsResponse1
 */
export interface AggregateQuestionResultsResponse1 {
    /**
     *
     * @type {APIStatus}
     * @memberof AggregateQuestionResultsResponse1
     */
    status: APIStatus;
    /**
     *
     * @type {QuestionResultAggregationOverall}
     * @memberof AggregateQuestionResultsResponse1
     */
    data: QuestionResultAggregationOverall;
    /**
     *
     * @type {string}
     * @memberof AggregateQuestionResultsResponse1
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof AggregateQuestionResultsResponse1
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof AggregateQuestionResultsResponse1
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof AggregateQuestionResultsResponse1
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof AggregateQuestionResultsResponse1
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof AggregateQuestionResultsResponse1
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof AggregateQuestionResultsResponse1
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the AggregateQuestionResultsResponse1 interface.
 */
export declare function instanceOfAggregateQuestionResultsResponse1(value: object): value is AggregateQuestionResultsResponse1;
export declare function AggregateQuestionResultsResponse1FromJSON(json: any): AggregateQuestionResultsResponse1;
export declare function AggregateQuestionResultsResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregateQuestionResultsResponse1;
export declare function AggregateQuestionResultsResponse1ToJSON(json: any): AggregateQuestionResultsResponse1;
export declare function AggregateQuestionResultsResponse1ToJSONTyped(value?: AggregateQuestionResultsResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=AggregateQuestionResultsResponse1.d.ts.map