fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.24 kB
TypeScript
/**
* 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 GetTenantResponse1
*/
export interface GetTenantResponse1 {
/**
*
* @type {APIStatus}
* @memberof GetTenantResponse1
*/
status: APIStatus;
/**
*
* @type {APITenant}
* @memberof GetTenantResponse1
*/
tenant: APITenant;
/**
*
* @type {string}
* @memberof GetTenantResponse1
*/
reason: string;
/**
*
* @type {string}
* @memberof GetTenantResponse1
*/
code: string;
/**
*
* @type {string}
* @memberof GetTenantResponse1
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetTenantResponse1
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetTenantResponse1
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetTenantResponse1
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetTenantResponse1
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetTenantResponse1 interface.
*/
export declare function instanceOfGetTenantResponse1(value: object): value is GetTenantResponse1;
export declare function GetTenantResponse1FromJSON(json: any): GetTenantResponse1;
export declare function GetTenantResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantResponse1;
export declare function GetTenantResponse1ToJSON(json: any): GetTenantResponse1;
export declare function GetTenantResponse1ToJSONTyped(value?: GetTenantResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTenantResponse1.d.ts.map