/**
 * 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 { APIComment } from './APIComment';
import type { APIStatus } from './APIStatus';
import type { UserSessionInfo } from './UserSessionInfo';
/**
 *
 * @export
 * @interface SaveCommentsBulkResponse
 */
export interface SaveCommentsBulkResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof SaveCommentsBulkResponse
     */
    status: APIStatus;
    /**
     *
     * @type {APIComment}
     * @memberof SaveCommentsBulkResponse
     */
    comment: APIComment;
    /**
     *
     * @type {UserSessionInfo}
     * @memberof SaveCommentsBulkResponse
     */
    user: UserSessionInfo | null;
    /**
     * Construct a type with a set of properties K of type T
     * @type {{ [key: string]: object; }}
     * @memberof SaveCommentsBulkResponse
     */
    moduleData?: {
        [key: string]: object;
    };
    /**
     *
     * @type {string}
     * @memberof SaveCommentsBulkResponse
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof SaveCommentsBulkResponse
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof SaveCommentsBulkResponse
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof SaveCommentsBulkResponse
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof SaveCommentsBulkResponse
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof SaveCommentsBulkResponse
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof SaveCommentsBulkResponse
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the SaveCommentsBulkResponse interface.
 */
export declare function instanceOfSaveCommentsBulkResponse(value: object): value is SaveCommentsBulkResponse;
export declare function SaveCommentsBulkResponseFromJSON(json: any): SaveCommentsBulkResponse;
export declare function SaveCommentsBulkResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SaveCommentsBulkResponse;
export declare function SaveCommentsBulkResponseToJSON(json: any): SaveCommentsBulkResponse;
export declare function SaveCommentsBulkResponseToJSONTyped(value?: SaveCommentsBulkResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SaveCommentsBulkResponse.d.ts.map