UNPKG

fastcomments-sdk

Version:

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

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