/**
 * 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 { UserBadge } from './UserBadge';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetUserBadgeResponse
 */
export interface GetUserBadgeResponse {
    /**
     *
     * @type {APIStatus}
     * @memberof GetUserBadgeResponse
     */
    status: APIStatus;
    /**
     *
     * @type {UserBadge}
     * @memberof GetUserBadgeResponse
     */
    userBadge: UserBadge;
    /**
     *
     * @type {string}
     * @memberof GetUserBadgeResponse
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetUserBadgeResponse
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetUserBadgeResponse
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetUserBadgeResponse
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetUserBadgeResponse
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetUserBadgeResponse
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetUserBadgeResponse
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetUserBadgeResponse interface.
 */
export declare function instanceOfGetUserBadgeResponse(value: object): value is GetUserBadgeResponse;
export declare function GetUserBadgeResponseFromJSON(json: any): GetUserBadgeResponse;
export declare function GetUserBadgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserBadgeResponse;
export declare function GetUserBadgeResponseToJSON(json: any): GetUserBadgeResponse;
export declare function GetUserBadgeResponseToJSONTyped(value?: GetUserBadgeResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetUserBadgeResponse.d.ts.map