fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
40 lines • 1.6 kB
TypeScript
/**
* 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 GetPendingWebhookEventCountResponse
*/
export interface GetPendingWebhookEventCountResponse {
/**
*
* @type {APIStatus}
* @memberof GetPendingWebhookEventCountResponse
*/
status: APIStatus;
/**
*
* @type {number}
* @memberof GetPendingWebhookEventCountResponse
*/
count: number;
}
/**
* Check if a given object implements the GetPendingWebhookEventCountResponse interface.
*/
export declare function instanceOfGetPendingWebhookEventCountResponse(value: object): value is GetPendingWebhookEventCountResponse;
export declare function GetPendingWebhookEventCountResponseFromJSON(json: any): GetPendingWebhookEventCountResponse;
export declare function GetPendingWebhookEventCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPendingWebhookEventCountResponse;
export declare function GetPendingWebhookEventCountResponseToJSON(json: any): GetPendingWebhookEventCountResponse;
export declare function GetPendingWebhookEventCountResponseToJSONTyped(value?: GetPendingWebhookEventCountResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetPendingWebhookEventCountResponse.d.ts.map