UNPKG

fastcomments-sdk

Version:

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

84 lines 2.29 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 { APITenant } from './APITenant'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetTenant200Response */ export interface GetTenant200Response { /** * * @type {APIStatus} * @memberof GetTenant200Response */ status: APIStatus; /** * * @type {APITenant} * @memberof GetTenant200Response */ tenant: APITenant; /** * * @type {string} * @memberof GetTenant200Response */ reason: string; /** * * @type {string} * @memberof GetTenant200Response */ code: string; /** * * @type {string} * @memberof GetTenant200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetTenant200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetTenant200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetTenant200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetTenant200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetTenant200Response interface. */ export declare function instanceOfGetTenant200Response(value: object): value is GetTenant200Response; export declare function GetTenant200ResponseFromJSON(json: any): GetTenant200Response; export declare function GetTenant200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenant200Response; export declare function GetTenant200ResponseToJSON(json: any): GetTenant200Response; export declare function GetTenant200ResponseToJSONTyped(value?: GetTenant200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTenant200Response.d.ts.map