/**
 * 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 GetPendingWebhookEventsResponse1
 */
export interface GetPendingWebhookEventsResponse1 {
    /**
     *
     * @type {APIStatus}
     * @memberof GetPendingWebhookEventsResponse1
     */
    status: APIStatus;
    /**
     *
     * @type {Array<PendingCommentToSyncOutbound>}
     * @memberof GetPendingWebhookEventsResponse1
     */
    pendingWebhookEvents: Array<PendingCommentToSyncOutbound>;
    /**
     *
     * @type {string}
     * @memberof GetPendingWebhookEventsResponse1
     */
    reason: string;
    /**
     *
     * @type {string}
     * @memberof GetPendingWebhookEventsResponse1
     */
    code: string;
    /**
     *
     * @type {string}
     * @memberof GetPendingWebhookEventsResponse1
     */
    secondaryCode?: string;
    /**
     *
     * @type {number}
     * @memberof GetPendingWebhookEventsResponse1
     */
    bannedUntil?: number;
    /**
     *
     * @type {number}
     * @memberof GetPendingWebhookEventsResponse1
     */
    maxCharacterLength?: number;
    /**
     *
     * @type {string}
     * @memberof GetPendingWebhookEventsResponse1
     */
    translatedError?: string;
    /**
     *
     * @type {CustomConfigParameters}
     * @memberof GetPendingWebhookEventsResponse1
     */
    customConfig?: CustomConfigParameters;
}
/**
 * Check if a given object implements the GetPendingWebhookEventsResponse1 interface.
 */
export declare function instanceOfGetPendingWebhookEventsResponse1(value: object): value is GetPendingWebhookEventsResponse1;
export declare function GetPendingWebhookEventsResponse1FromJSON(json: any): GetPendingWebhookEventsResponse1;
export declare function GetPendingWebhookEventsResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPendingWebhookEventsResponse1;
export declare function GetPendingWebhookEventsResponse1ToJSON(json: any): GetPendingWebhookEventsResponse1;
export declare function GetPendingWebhookEventsResponse1ToJSONTyped(value?: GetPendingWebhookEventsResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetPendingWebhookEventsResponse1.d.ts.map