/**
 * 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 { ModerationAPIComment } from './ModerationAPIComment';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface PostCommentsByIdsResponse
 */
export interface PostCommentsByIdsResponse {
    /**
     *
     * @type {Array<ModerationAPIComment>}
     * @memberof PostCommentsByIdsResponse
     */
    comments: Array<ModerationAPIComment>;
    /**
     *
     * @type {APIStatus}
     * @memberof PostCommentsByIdsResponse
     */
    status: APIStatus;
    /**
     *
     * @type {string}
     * @memberof PostCommentsByIdsResponse
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof PostCommentsByIdsResponse
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof PostCommentsByIdsResponse
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof PostCommentsByIdsResponse
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof PostCommentsByIdsResponse
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof PostCommentsByIdsResponse
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof PostCommentsByIdsResponse
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the PostCommentsByIdsResponse interface.
 */
export declare function instanceOfPostCommentsByIdsResponse(value: object): value is PostCommentsByIdsResponse;
export declare function PostCommentsByIdsResponseFromJSON(json: any): PostCommentsByIdsResponse;
export declare function PostCommentsByIdsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PostCommentsByIdsResponse;
export declare function PostCommentsByIdsResponseToJSON(json: any): PostCommentsByIdsResponse;
export declare function PostCommentsByIdsResponseToJSONTyped(value?: PostCommentsByIdsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=PostCommentsByIdsResponse.d.ts.map