UNPKG

fastcomments-sdk

Version:

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

84 lines 2.71 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 { PendingCommentToSyncOutbound } from './PendingCommentToSyncOutbound'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetPendingWebhookEvents200Response */ export interface GetPendingWebhookEvents200Response { /** * * @type {APIStatus} * @memberof GetPendingWebhookEvents200Response */ status: APIStatus; /** * * @type {Array<PendingCommentToSyncOutbound>} * @memberof GetPendingWebhookEvents200Response */ pendingWebhookEvents: Array<PendingCommentToSyncOutbound>; /** * * @type {string} * @memberof GetPendingWebhookEvents200Response */ reason: string; /** * * @type {string} * @memberof GetPendingWebhookEvents200Response */ code: string; /** * * @type {string} * @memberof GetPendingWebhookEvents200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetPendingWebhookEvents200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetPendingWebhookEvents200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetPendingWebhookEvents200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetPendingWebhookEvents200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetPendingWebhookEvents200Response interface. */ export declare function instanceOfGetPendingWebhookEvents200Response(value: object): value is GetPendingWebhookEvents200Response; export declare function GetPendingWebhookEvents200ResponseFromJSON(json: any): GetPendingWebhookEvents200Response; export declare function GetPendingWebhookEvents200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPendingWebhookEvents200Response; export declare function GetPendingWebhookEvents200ResponseToJSON(json: any): GetPendingWebhookEvents200Response; export declare function GetPendingWebhookEvents200ResponseToJSONTyped(value?: GetPendingWebhookEvents200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPendingWebhookEvents200Response.d.ts.map