UNPKG

fastcomments-sdk

Version:

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

41 lines 1.54 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 GetTenantPackagesResponse */ export interface GetTenantPackagesResponse { /** * * @type {APIStatus} * @memberof GetTenantPackagesResponse */ status: APIStatus; /** * * @type {Array<TenantPackage>} * @memberof GetTenantPackagesResponse */ tenantPackages: Array<TenantPackage>; } /** * Check if a given object implements the GetTenantPackagesResponse interface. */ export declare function instanceOfGetTenantPackagesResponse(value: object): value is GetTenantPackagesResponse; export declare function GetTenantPackagesResponseFromJSON(json: any): GetTenantPackagesResponse; export declare function GetTenantPackagesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantPackagesResponse; export declare function GetTenantPackagesResponseToJSON(json: any): GetTenantPackagesResponse; export declare function GetTenantPackagesResponseToJSONTyped(value?: GetTenantPackagesResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTenantPackagesResponse.d.ts.map