RevocationReason

public enum RevocationReason : Equatable

A value indicating the reason of the revocation of a subscription.

Cases

  • Indicates that the notifications or the webhook has been disabled on the back-end.

    Declaration

    Swift

    case disabled
  • Indicates that the subscription has expired.

    Declaration

    Swift

    case expired
  • Indicates that the current user is not allowed to read the value of the node.

    Declaration

    Swift

    case permissionDenied
  • Indicates that the value of the node has become too big.

    Declaration

    Swift

    case tooBig
  • Indicates that the application is unknown.

    Declaration

    Swift

    case unknownApplication
  • Indicates a reason that is not known by the SDK.

    Declaration

    Swift

    case other(String)