UNPKG

fastcomments-sdk

Version:

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

41 lines 1.5 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 { TenantPackage } from './TenantPackage'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetTenantPackageResponse */ export interface GetTenantPackageResponse { /** * * @type {APIStatus} * @memberof GetTenantPackageResponse */ status: APIStatus; /** * * @type {TenantPackage} * @memberof GetTenantPackageResponse */ tenantPackage: TenantPackage; } /** * Check if a given object implements the GetTenantPackageResponse interface. */ export declare function instanceOfGetTenantPackageResponse(value: object): value is GetTenantPackageResponse; export declare function GetTenantPackageResponseFromJSON(json: any): GetTenantPackageResponse; export declare function GetTenantPackageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantPackageResponse; export declare function GetTenantPackageResponseToJSON(json: any): GetTenantPackageResponse; export declare function GetTenantPackageResponseToJSONTyped(value?: GetTenantPackageResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTenantPackageResponse.d.ts.map