GetTeamEventsContinueError

public enum GetTeamEventsContinueError : CustomStringConvertible, JSONRepresentable

Errors that can be raised when calling getEventsContinue.

  • Bad cursor.

    Declaration

    Swift

    case badCursor
  • Cursors are intended to be used quickly. Individual cursor values are normally valid for days, but in rare cases may be reset sooner. Cursor reset errors should be handled by fetching a new cursor from getEvents. The associated value is the approximate timestamp of the most recent event returned by the cursor. This should be used as a resumption point when calling getEvents to obtain a new cursor.

    Declaration

    Swift

    case reset(Date)
  • An unspecified error.

    Declaration

    Swift

    case other
  • Declaration

    Swift

    public var description: String { get }