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