UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

84 lines 2.38 kB
/** * 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 CreateTenantUserResponse1 */ export interface CreateTenantUserResponse1 { /** * * @type {APIStatus} * @memberof CreateTenantUserResponse1 */ status: APIStatus; /** * * @type {User} * @memberof CreateTenantUserResponse1 */ tenantUser: User; /** * * @type {string} * @memberof CreateTenantUserResponse1 */ reason: string; /** * * @type {string} * @memberof CreateTenantUserResponse1 */ code: string; /** * * @type {string} * @memberof CreateTenantUserResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof CreateTenantUserResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof CreateTenantUserResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof CreateTenantUserResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof CreateTenantUserResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the CreateTenantUserResponse1 interface. */ export declare function instanceOfCreateTenantUserResponse1(value: object): value is CreateTenantUserResponse1; export declare function CreateTenantUserResponse1FromJSON(json: any): CreateTenantUserResponse1; export declare function CreateTenantUserResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTenantUserResponse1; export declare function CreateTenantUserResponse1ToJSON(json: any): CreateTenantUserResponse1; export declare function CreateTenantUserResponse1ToJSONTyped(value?: CreateTenantUserResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateTenantUserResponse1.d.ts.map