UNPKG

fastcomments-sdk

Version:

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

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