UNPKG

fastcomments-sdk

Version:

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

83 lines 2.17 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 GetCountsResponse */ export interface GetCountsResponse { /** * * @type {number} * @memberof GetCountsResponse */ totalCount: number; /** * * @type {APIStatus} * @memberof GetCountsResponse */ status: APIStatus; /** * * @type {string} * @memberof GetCountsResponse */ reason: string; /** * * @type {string} * @memberof GetCountsResponse */ code: string; /** * * @type {string} * @memberof GetCountsResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetCountsResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetCountsResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetCountsResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetCountsResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetCountsResponse interface. */ export declare function instanceOfGetCountsResponse(value: object): value is GetCountsResponse; export declare function GetCountsResponseFromJSON(json: any): GetCountsResponse; export declare function GetCountsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCountsResponse; export declare function GetCountsResponseToJSON(json: any): GetCountsResponse; export declare function GetCountsResponseToJSONTyped(value?: GetCountsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCountsResponse.d.ts.map