RequestStatus

public enum RequestStatus : Int, CustomStringConvertible

Request status.

  • Tracking request was processed.

    Declaration

    Swift

    case processed
  • Tracking request was not processed, tracker is at full capacity. The request is dropped.

    Declaration

    Swift

    case droppedTargetLimitReached
  • Target was not found. The request is dropped.

    Declaration

    Swift

    case droppedNotFound
  • The request is dropped due to an unknown error.

    Declaration

    Swift

    case droppedUnknownError
  • Debug description.

    Declaration

    Swift

    public var description: String { get }