UNPKG

fastcomments-sdk

Version:

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

83 lines 2.14 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 GetCountResponse */ export interface GetCountResponse { /** * * @type {APIStatus} * @memberof GetCountResponse */ status: APIStatus; /** * * @type {number} * @memberof GetCountResponse */ count: number; /** * * @type {string} * @memberof GetCountResponse */ reason: string; /** * * @type {string} * @memberof GetCountResponse */ code: string; /** * * @type {string} * @memberof GetCountResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetCountResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetCountResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetCountResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetCountResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetCountResponse interface. */ export declare function instanceOfGetCountResponse(value: object): value is GetCountResponse; export declare function GetCountResponseFromJSON(json: any): GetCountResponse; export declare function GetCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCountResponse; export declare function GetCountResponseToJSON(json: any): GetCountResponse; export declare function GetCountResponseToJSONTyped(value?: GetCountResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetCountResponse.d.ts.map