/** * This file was auto-generated by Fern from our API Definition. */ /** * The status of the event subscription: * * active: The event subscription is active and events will be delivered * * disabled: The event subscription is temporarily disabled and events will not be delivered * * deleted: The event subscription is permanently deleted and events will not be delivered */ export declare type EventSubscriptionsUpdateRequestStatus = "active" | "disabled" | "deleted"; export declare const EventSubscriptionsUpdateRequestStatus: { readonly Active: "active"; readonly Disabled: "disabled"; readonly Deleted: "deleted"; };