/**
 * 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 { DeleteCommentAction } from './DeleteCommentAction';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface DeleteCommentResponse
 */
export interface DeleteCommentResponse {
    /**
     *
     * @type {DeleteCommentAction}
     * @memberof DeleteCommentResponse
     */
    action: DeleteCommentAction;
    /**
     *
     * @type {APIStatus}
     * @memberof DeleteCommentResponse
     */
    status: APIStatus;
    /**
     *
     * @type {string}
     * @memberof DeleteCommentResponse
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof DeleteCommentResponse
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof DeleteCommentResponse
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof DeleteCommentResponse
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof DeleteCommentResponse
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof DeleteCommentResponse
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof DeleteCommentResponse
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the DeleteCommentResponse interface.
 */
export declare function instanceOfDeleteCommentResponse(value: object): value is DeleteCommentResponse;
export declare function DeleteCommentResponseFromJSON(json: any): DeleteCommentResponse;
export declare function DeleteCommentResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteCommentResponse;
export declare function DeleteCommentResponseToJSON(json: any): DeleteCommentResponse;
export declare function DeleteCommentResponseToJSONTyped(value?: DeleteCommentResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=DeleteCommentResponse.d.ts.map