dalabai's picture
Upload folder using huggingface_hub
9373c61 verified
raw
history blame
495 Bytes
package com.dalab.policyengine.model;
/**
* Enumeration representing the status of an event subscription.
*/
public enum EventSubscriptionStatus {
/**
* Subscription is active and receiving events
*/
ACTIVE,
/**
* Subscription is temporarily paused
*/
PAUSED,
/**
* Subscription is disabled and not receiving events
*/
DISABLED,
/**
* Subscription has been archived
*/
ARCHIVED
}