Class EventQueryResult


  • public class EventQueryResult
    extends Object
    Result of an Event Feed Query
    • Constructor Detail

      • EventQueryResult

        public EventQueryResult()
    • Method Detail

      • getNextEventStartTms

        public Long getNextEventStartTms()
        Start time of the next event if the total number of events exceeds the maximum batch size of 150 events per request.
        Returns:
        nextEventStartTms
      • setNextEventStartTms

        public void setNextEventStartTms​(Long nextEventStartTms)
      • getNextEventId

        public Long getNextEventId()
        ID of the next event if the total number of events exceeds the maximum batch size of 150 events per request.
        Returns:
        nextEventId
      • setNextEventId

        public void setNextEventId​(Long nextEventId)
      • getNextCursor

        public String getNextCursor()
        If the result would return more than 150 events, nextCursor contains a string that can be used to fetch the next 150 results. If nextCursor is null, then there are no more events returned by the query.
        Returns:
        nextCursor
      • setNextCursor

        public void setNextCursor​(String nextCursor)
      • getFrom

        public Long getFrom()
        Start of the query timeframe
        Returns:
        from
      • setFrom

        public void setFrom​(Long from)
      • getTo

        public Long getTo()
        End of the query timeframe
        Returns:
        to
      • setTo

        public void setTo​(Long to)
      • getTotalEventCount

        public Long getTotalEventCount()
        Total amount of events found
        Returns:
        totalEventCount
      • setTotalEventCount

        public void setTotalEventCount​(Long totalEventCount)