UNPKG

fastcomments-sdk

Version:

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

41 lines 1.7 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 { PendingCommentToSyncOutbound } from './PendingCommentToSyncOutbound'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetPendingWebhookEventsResponse */ export interface GetPendingWebhookEventsResponse { /** * * @type {APIStatus} * @memberof GetPendingWebhookEventsResponse */ status: APIStatus; /** * * @type {Array<PendingCommentToSyncOutbound>} * @memberof GetPendingWebhookEventsResponse */ pendingWebhookEvents: Array<PendingCommentToSyncOutbound>; } /** * Check if a given object implements the GetPendingWebhookEventsResponse interface. */ export declare function instanceOfGetPendingWebhookEventsResponse(value: object): value is GetPendingWebhookEventsResponse; export declare function GetPendingWebhookEventsResponseFromJSON(json: any): GetPendingWebhookEventsResponse; export declare function GetPendingWebhookEventsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPendingWebhookEventsResponse; export declare function GetPendingWebhookEventsResponseToJSON(json: any): GetPendingWebhookEventsResponse; export declare function GetPendingWebhookEventsResponseToJSONTyped(value?: GetPendingWebhookEventsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPendingWebhookEventsResponse.d.ts.map