UNPKG

fastcomments-sdk

Version:

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

41 lines 1.61 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 { APITenantDailyUsage } from './APITenantDailyUsage'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetTenantDailyUsagesResponse */ export interface GetTenantDailyUsagesResponse { /** * * @type {APIStatus} * @memberof GetTenantDailyUsagesResponse */ status: APIStatus; /** * * @type {Array<APITenantDailyUsage>} * @memberof GetTenantDailyUsagesResponse */ tenantDailyUsages: Array<APITenantDailyUsage>; } /** * Check if a given object implements the GetTenantDailyUsagesResponse interface. */ export declare function instanceOfGetTenantDailyUsagesResponse(value: object): value is GetTenantDailyUsagesResponse; export declare function GetTenantDailyUsagesResponseFromJSON(json: any): GetTenantDailyUsagesResponse; export declare function GetTenantDailyUsagesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantDailyUsagesResponse; export declare function GetTenantDailyUsagesResponseToJSON(json: any): GetTenantDailyUsagesResponse; export declare function GetTenantDailyUsagesResponseToJSONTyped(value?: GetTenantDailyUsagesResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTenantDailyUsagesResponse.d.ts.map