Class GetTeamEventsArg
The get team events arg object
Inheritance
Inherited Members
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class GetTeamEventsArg
Constructors
| Improve this Doc View SourceGetTeamEventsArg(UInt32, String, TimeRange, EventCategory, EventTypeArg)
Initializes a new instance of the GetTeamEventsArg class.
Declaration
public GetTeamEventsArg(uint limit = 1000U, string accountId = null, TimeRange time = null, EventCategory category = null, EventTypeArg eventType = null)
Parameters
Type | Name | Description |
---|---|---|
System.UInt32 | limit | The maximal number of results to return per call. Note that
some calls may not return |
System.String | accountId | Filter the events by account ID. Return only events with this account_id as either Actor, Context, or Participants. |
TimeRange | time | Filter by time range. |
EventCategory | category | Filter the returned events to a single category. Note that category shouldn't be provided together with event_type. |
EventTypeArg | eventType | Filter the returned events to a single event type. Note that event_type shouldn't be provided together with category. |
Properties
| Improve this Doc View SourceAccountId
Filter the events by account ID. Return only events with this account_id as either Actor, Context, or Participants.
Declaration
public string AccountId { get; protected set; }
Property Value
Type | Description |
---|---|
System.String |
Category
Filter the returned events to a single category. Note that category shouldn't be provided together with event_type.
Declaration
public EventCategory Category { get; protected set; }
Property Value
Type | Description |
---|---|
EventCategory |
EventType
Filter the returned events to a single event type. Note that event_type shouldn't be provided together with category.
Declaration
public EventTypeArg EventType { get; protected set; }
Property Value
Type | Description |
---|---|
EventTypeArg |
Limit
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
GetEventsContinueAsync(GetTeamEventsContinueArg).
Declaration
public uint Limit { get; protected set; }
Property Value
Type | Description |
---|---|
System.UInt32 |
Time
Filter by time range.
Declaration
public TimeRange Time { get; protected set; }
Property Value
Type | Description |
---|---|
TimeRange |