UNPKG

fastcomments-sdk

Version:

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

83 lines 2.65 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 GetPendingWebhookEventCount200Response */ export interface GetPendingWebhookEventCount200Response { /** * * @type {APIStatus} * @memberof GetPendingWebhookEventCount200Response */ status: APIStatus; /** * * @type {number} * @memberof GetPendingWebhookEventCount200Response */ count: number; /** * * @type {string} * @memberof GetPendingWebhookEventCount200Response */ reason: string; /** * * @type {string} * @memberof GetPendingWebhookEventCount200Response */ code: string; /** * * @type {string} * @memberof GetPendingWebhookEventCount200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetPendingWebhookEventCount200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetPendingWebhookEventCount200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetPendingWebhookEventCount200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetPendingWebhookEventCount200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetPendingWebhookEventCount200Response interface. */ export declare function instanceOfGetPendingWebhookEventCount200Response(value: object): value is GetPendingWebhookEventCount200Response; export declare function GetPendingWebhookEventCount200ResponseFromJSON(json: any): GetPendingWebhookEventCount200Response; export declare function GetPendingWebhookEventCount200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPendingWebhookEventCount200Response; export declare function GetPendingWebhookEventCount200ResponseToJSON(json: any): GetPendingWebhookEventCount200Response; export declare function GetPendingWebhookEventCount200ResponseToJSONTyped(value?: GetPendingWebhookEventCount200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetPendingWebhookEventCount200Response.d.ts.map