Dropbox .NET SDK

Class GetTeamEventsArg

The get team events arg object

Inheritance
object
GetTeamEventsArg
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class GetTeamEventsArg

Constructors

View Source

GetTeamEventsArg(uint, string, TimeRange, EventCategory, EventTypeArg)

Initializes a new instance of the GetTeamEventsArg class.

Declaration
public GetTeamEventsArg(uint limit = 1000, string accountId = null, TimeRange time = null, EventCategory category = null, EventTypeArg eventType = null)
Parameters
Type Name Description
uint 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).

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

View Source

AccountId

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
string
View Source

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
View Source

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
View Source

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
uint
View Source

Time

Filter by time range.

Declaration
public TimeRange Time { get; protected set; }
Property Value
Type Description
TimeRange
  • View Source
In this article
Back to top Dropbox .NET SDK