fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
41 lines • 1.37 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 { APITenant } from './APITenant';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetTenantResponse
*/
export interface GetTenantResponse {
/**
*
* @type {APIStatus}
* @memberof GetTenantResponse
*/
status: APIStatus;
/**
*
* @type {APITenant}
* @memberof GetTenantResponse
*/
tenant: APITenant;
}
/**
* Check if a given object implements the GetTenantResponse interface.
*/
export declare function instanceOfGetTenantResponse(value: object): value is GetTenantResponse;
export declare function GetTenantResponseFromJSON(json: any): GetTenantResponse;
export declare function GetTenantResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantResponse;
export declare function GetTenantResponseToJSON(json: any): GetTenantResponse;
export declare function GetTenantResponseToJSONTyped(value?: GetTenantResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTenantResponse.d.ts.map