UNPKG

fastcomments-sdk

Version:

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

40 lines 1.55 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 { APIStatus } from './APIStatus'; /** * * @export * @interface ModerationCommentSearchResponse */ export interface ModerationCommentSearchResponse { /** * * @type {number} * @memberof ModerationCommentSearchResponse */ commentCount: number; /** * * @type {APIStatus} * @memberof ModerationCommentSearchResponse */ status: APIStatus; } /** * Check if a given object implements the ModerationCommentSearchResponse interface. */ export declare function instanceOfModerationCommentSearchResponse(value: object): value is ModerationCommentSearchResponse; export declare function ModerationCommentSearchResponseFromJSON(json: any): ModerationCommentSearchResponse; export declare function ModerationCommentSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModerationCommentSearchResponse; export declare function ModerationCommentSearchResponseToJSON(json: any): ModerationCommentSearchResponse; export declare function ModerationCommentSearchResponseToJSONTyped(value?: ModerationCommentSearchResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ModerationCommentSearchResponse.d.ts.map