UNPKG

fastcomments-sdk

Version:

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

83 lines 2.24 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 { APIStatus } from './APIStatus'; /** * * @export * @interface GetCounts200Response */ export interface GetCounts200Response { /** * * @type {number} * @memberof GetCounts200Response */ totalCount: number; /** * * @type {APIStatus} * @memberof GetCounts200Response */ status: APIStatus; /** * * @type {string} * @memberof GetCounts200Response */ reason: string; /** * * @type {string} * @memberof GetCounts200Response */ code: string; /** * * @type {string} * @memberof GetCounts200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetCounts200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetCounts200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetCounts200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetCounts200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetCounts200Response interface. */ export declare function instanceOfGetCounts200Response(value: object): value is GetCounts200Response; export declare function GetCounts200ResponseFromJSON(json: any): GetCounts200Response; export declare function GetCounts200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCounts200Response; export declare function GetCounts200ResponseToJSON(json: any): GetCounts200Response; export declare function GetCounts200ResponseToJSONTyped(value?: GetCounts200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCounts200Response.d.ts.map