/**
 * 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 { User } from './User';
import type { APIStatus } from './APIStatus';
/**
 *
 * @export
 * @interface GetTenantUserResponse1
 */
export interface GetTenantUserResponse1 {
    /**
     *
     * @type {APIStatus}
     * @memberof GetTenantUserResponse1
     */
    status: APIStatus;
    /**
     *
     * @type {User}
     * @memberof GetTenantUserResponse1
     */
    tenantUser: User;
    /**
     *
     * @type {string}
     * @memberof GetTenantUserResponse1
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetTenantUserResponse1
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetTenantUserResponse1
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetTenantUserResponse1
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetTenantUserResponse1
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetTenantUserResponse1
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetTenantUserResponse1
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetTenantUserResponse1 interface.
 */
export declare function instanceOfGetTenantUserResponse1(value: object): value is GetTenantUserResponse1;
export declare function GetTenantUserResponse1FromJSON(json: any): GetTenantUserResponse1;
export declare function GetTenantUserResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantUserResponse1;
export declare function GetTenantUserResponse1ToJSON(json: any): GetTenantUserResponse1;
export declare function GetTenantUserResponse1ToJSONTyped(value?: GetTenantUserResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTenantUserResponse1.d.ts.map