/**
 * 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 { GetUserInternalProfileResponseProfile } from './GetUserInternalProfileResponseProfile';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetUserInternalProfileResponse1
 */
export interface GetUserInternalProfileResponse1 {
    /**
     *
     * @type {GetUserInternalProfileResponseProfile}
     * @memberof GetUserInternalProfileResponse1
     */
    profile: GetUserInternalProfileResponseProfile;
    /**
     *
     * @type {APIStatus}
     * @memberof GetUserInternalProfileResponse1
     */
    status: APIStatus;
    /**
     *
     * @type {string}
     * @memberof GetUserInternalProfileResponse1
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetUserInternalProfileResponse1
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetUserInternalProfileResponse1
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetUserInternalProfileResponse1
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetUserInternalProfileResponse1
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetUserInternalProfileResponse1
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetUserInternalProfileResponse1
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetUserInternalProfileResponse1 interface.
 */
export declare function instanceOfGetUserInternalProfileResponse1(value: object): value is GetUserInternalProfileResponse1;
export declare function GetUserInternalProfileResponse1FromJSON(json: any): GetUserInternalProfileResponse1;
export declare function GetUserInternalProfileResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetUserInternalProfileResponse1;
export declare function GetUserInternalProfileResponse1ToJSON(json: any): GetUserInternalProfileResponse1;
export declare function GetUserInternalProfileResponse1ToJSONTyped(value?: GetUserInternalProfileResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetUserInternalProfileResponse1.d.ts.map