UNPKG

fastcomments-sdk

Version:

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

84 lines 2.6 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 GetTenantDailyUsages200Response */ export interface GetTenantDailyUsages200Response { /** * * @type {APIStatus} * @memberof GetTenantDailyUsages200Response */ status: APIStatus; /** * * @type {Array<APITenantDailyUsage>} * @memberof GetTenantDailyUsages200Response */ tenantDailyUsages: Array<APITenantDailyUsage>; /** * * @type {string} * @memberof GetTenantDailyUsages200Response */ reason: string; /** * * @type {string} * @memberof GetTenantDailyUsages200Response */ code: string; /** * * @type {string} * @memberof GetTenantDailyUsages200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetTenantDailyUsages200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetTenantDailyUsages200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetTenantDailyUsages200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetTenantDailyUsages200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetTenantDailyUsages200Response interface. */ export declare function instanceOfGetTenantDailyUsages200Response(value: object): value is GetTenantDailyUsages200Response; export declare function GetTenantDailyUsages200ResponseFromJSON(json: any): GetTenantDailyUsages200Response; export declare function GetTenantDailyUsages200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantDailyUsages200Response; export declare function GetTenantDailyUsages200ResponseToJSON(json: any): GetTenantDailyUsages200Response; export declare function GetTenantDailyUsages200ResponseToJSONTyped(value?: GetTenantDailyUsages200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTenantDailyUsages200Response.d.ts.map