/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { Status } from './Status';
import { WebhookEventType } from './WebhookEventType';
/**
 *
 * @export
 * @interface UpdateWebhookRequest
 */
export interface UpdateWebhookRequest {
    /**
     * A description of the object.
     * @type {string}
     * @memberof UpdateWebhookRequest
     */
    description?: string | null;
    /**
     *
     * @type {Status}
     * @memberof UpdateWebhookRequest
     */
    status?: Status;
    /**
     * The delivery url of the webhook endpoint.
     * @type {string}
     * @memberof UpdateWebhookRequest
     */
    delivery_url?: string;
    /**
     * The list of subscribed events for this webhook. [`*`] indicates that all events are enabled.
     * @type {Array<WebhookEventType>}
     * @memberof UpdateWebhookRequest
     */
    events?: Array<WebhookEventType>;
}
export declare function UpdateWebhookRequestFromJSON(json: any): UpdateWebhookRequest;
export declare function UpdateWebhookRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateWebhookRequest;
export declare function UpdateWebhookRequestToJSON(value?: UpdateWebhookRequest | null): any;
