UNPKG

fastcomments-sdk

Version:

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

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