UNPKG

fastcomments-sdk

Version:

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

84 lines 2.32 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 GetTenants200Response */ export interface GetTenants200Response { /** * * @type {APIStatus} * @memberof GetTenants200Response */ status: APIStatus; /** * * @type {Array<APITenant>} * @memberof GetTenants200Response */ tenants: Array<APITenant>; /** * * @type {string} * @memberof GetTenants200Response */ reason: string; /** * * @type {string} * @memberof GetTenants200Response */ code: string; /** * * @type {string} * @memberof GetTenants200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetTenants200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetTenants200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetTenants200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetTenants200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetTenants200Response interface. */ export declare function instanceOfGetTenants200Response(value: object): value is GetTenants200Response; export declare function GetTenants200ResponseFromJSON(json: any): GetTenants200Response; export declare function GetTenants200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenants200Response; export declare function GetTenants200ResponseToJSON(json: any): GetTenants200Response; export declare function GetTenants200ResponseToJSONTyped(value?: GetTenants200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTenants200Response.d.ts.map