GetTeamEventsArg

public class GetTeamEventsArg : CustomStringConvertible, JSONRepresentable

The GetTeamEventsArg struct

  • The maximal number of results to return per call. Note that some calls may not return limit number of events, and may even return no events, even with has_more set to true. In this case, callers should fetch again using getEventsContinue.

    Declaration

    Swift

    public let limit: UInt32
  • Filter the events by account ID. Return only events with this account_id as either Actor, Context, or Participants.

    Declaration

    Swift

    public let accountId: String?
  • Filter by time range.

    Declaration

    Swift

    public let time: TeamCommon.TimeRange?
  • Filter the returned events to a single category. Note that category shouldn’t be provided together with event_type.

    Declaration

    Swift

    public let category: TeamLog.EventCategory?
  • Filter the returned events to a single event type. Note that event_type shouldn’t be provided together with category.

    Declaration

    Swift

    public let eventType: TeamLog.EventTypeArg?
  • Declaration

    Swift

    public var description: String { get }