EventObserverResponse

public enum EventObserverResponse : BoxEnum

Defines results for a request checking for new changes in user events

  • New event appeared.

    Declaration

    Swift

    case newChange
  • No new events appeared. Request for a new polling URL.

    Declaration

    Swift

    case reconnect
  • Value that was not yet implemented in this SDK

    Declaration

    Swift

    case customValue(String)
  • Initializer.

    Declaration

    Swift

    public init(_ value: String)

    Parameters

    value

    String representation of a response.

  • String representation of the reponse.

    Declaration

    Swift

    public var description: String { get }