UNPKG

fastcomments-sdk

Version:

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

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