UNPKG

fastcomments-sdk

Version:

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

83 lines 2.52 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 GetSearchCommentsSummaryResponse */ export interface GetSearchCommentsSummaryResponse { /** * * @type {number} * @memberof GetSearchCommentsSummaryResponse */ commentCount: number; /** * * @type {APIStatus} * @memberof GetSearchCommentsSummaryResponse */ status: APIStatus; /** * * @type {string} * @memberof GetSearchCommentsSummaryResponse */ reason: string; /** * * @type {string} * @memberof GetSearchCommentsSummaryResponse */ code: string; /** * * @type {string} * @memberof GetSearchCommentsSummaryResponse */ secondaryCode?: string; /** * * @type {number} * @memberof GetSearchCommentsSummaryResponse */ bannedUntil?: number; /** * * @type {number} * @memberof GetSearchCommentsSummaryResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetSearchCommentsSummaryResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetSearchCommentsSummaryResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetSearchCommentsSummaryResponse interface. */ export declare function instanceOfGetSearchCommentsSummaryResponse(value: object): value is GetSearchCommentsSummaryResponse; export declare function GetSearchCommentsSummaryResponseFromJSON(json: any): GetSearchCommentsSummaryResponse; export declare function GetSearchCommentsSummaryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSearchCommentsSummaryResponse; export declare function GetSearchCommentsSummaryResponseToJSON(json: any): GetSearchCommentsSummaryResponse; export declare function GetSearchCommentsSummaryResponseToJSONTyped(value?: GetSearchCommentsSummaryResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetSearchCommentsSummaryResponse.d.ts.map