UNPKG

fastcomments-sdk

Version:

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

84 lines 2.56 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { APITenantDailyUsage } from './APITenantDailyUsage'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetTenantDailyUsagesResponse1 */ export interface GetTenantDailyUsagesResponse1 { /** * * @type {APIStatus} * @memberof GetTenantDailyUsagesResponse1 */ status: APIStatus; /** * * @type {Array<APITenantDailyUsage>} * @memberof GetTenantDailyUsagesResponse1 */ tenantDailyUsages: Array<APITenantDailyUsage>; /** * * @type {string} * @memberof GetTenantDailyUsagesResponse1 */ reason: string; /** * * @type {string} * @memberof GetTenantDailyUsagesResponse1 */ code: string; /** * * @type {string} * @memberof GetTenantDailyUsagesResponse1 */ secondaryCode?: string; /** * * @type {number} * @memberof GetTenantDailyUsagesResponse1 */ bannedUntil?: number; /** * * @type {number} * @memberof GetTenantDailyUsagesResponse1 */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetTenantDailyUsagesResponse1 */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetTenantDailyUsagesResponse1 */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetTenantDailyUsagesResponse1 interface. */ export declare function instanceOfGetTenantDailyUsagesResponse1(value: object): value is GetTenantDailyUsagesResponse1; export declare function GetTenantDailyUsagesResponse1FromJSON(json: any): GetTenantDailyUsagesResponse1; export declare function GetTenantDailyUsagesResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantDailyUsagesResponse1; export declare function GetTenantDailyUsagesResponse1ToJSON(json: any): GetTenantDailyUsagesResponse1; export declare function GetTenantDailyUsagesResponse1ToJSONTyped(value?: GetTenantDailyUsagesResponse1 | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTenantDailyUsagesResponse1.d.ts.map