All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.hackle.sdk.common.HacklePushSubscriptionStatus.kt Maven / Gradle / Ivy

package io.hackle.sdk.common

/**
 * An enum that represents the status of a push subscription.
 */
enum class HacklePushSubscriptionStatus(val key: String) {

    /**
     * Subscribe push message
     */
    SUBSCRIBED("SUBSCRIBED"),

    /**
     * Unsubscribe push message
     */
    UNSUBSCRIBED("UNSUBSCRIBED"),

    /**
     * Unable to determine status
     */
    UNKNOWN("UNKNOWN"),
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy