Status

public enum Status : String

The status of a subscription.

  • UNKNOWN: when the MPN subscription has just been created or deleted (i.e. unsubscribed).

    Declaration

    Swift

    case UNKNOWN = "UNKNOWN"
  • ACTIVE: when the MPN susbcription has been submitted to the server, but no confirm has been received yet.

    Declaration

    Swift

    case ACTIVE = "ACTIVE"
  • SUBSCRIBED: when the MPN subscription has been successfully subscribed on the server. If a trigger expression is set, it has not been evaluated to true yet.

    Declaration

    Swift

    case SUBSCRIBED = "SUBSCRIBED"
  • TRIGGERED: when the MPN subscription has a trigger expression set, has been successfully on the server and the trigger expression evaluated to true at least once.

    Declaration

    Swift

    case TRIGGERED = "TRIGGERED"