/**
 * 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';
/**
 *
 * @export
 * @interface DeleteUserBadgeResponse
 */
export interface DeleteUserBadgeResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof DeleteUserBadgeResponse
     */
    status: APIStatus;
    /**
     *
     * @type {string}
     * @memberof DeleteUserBadgeResponse
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof DeleteUserBadgeResponse
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof DeleteUserBadgeResponse
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof DeleteUserBadgeResponse
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof DeleteUserBadgeResponse
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof DeleteUserBadgeResponse
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof DeleteUserBadgeResponse
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the DeleteUserBadgeResponse interface.
 */
export declare function instanceOfDeleteUserBadgeResponse(value: object): value is DeleteUserBadgeResponse;
export declare function DeleteUserBadgeResponseFromJSON(json: any): DeleteUserBadgeResponse;
export declare function DeleteUserBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteUserBadgeResponse;
export declare function DeleteUserBadgeResponseToJSON(json: any): DeleteUserBadgeResponse;
export declare function DeleteUserBadgeResponseToJSONTyped(value?: DeleteUserBadgeResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=DeleteUserBadgeResponse.d.ts.map