UNPKG

fastcomments-sdk

Version:

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

41 lines 1.42 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 { APITenant } from './APITenant'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface CreateTenantResponse */ export interface CreateTenantResponse { /** * * @type {APIStatus} * @memberof CreateTenantResponse */ status: APIStatus; /** * * @type {APITenant} * @memberof CreateTenantResponse */ tenant: APITenant; } /** * Check if a given object implements the CreateTenantResponse interface. */ export declare function instanceOfCreateTenantResponse(value: object): value is CreateTenantResponse; export declare function CreateTenantResponseFromJSON(json: any): CreateTenantResponse; export declare function CreateTenantResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTenantResponse; export declare function CreateTenantResponseToJSON(json: any): CreateTenantResponse; export declare function CreateTenantResponseToJSONTyped(value?: CreateTenantResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateTenantResponse.d.ts.map