Show / Hide Table of Contents

Class GetTeamEventsArg

The get team events arg object

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

Constructors

| Improve this Doc View Source

GetTeamEventsArg(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 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).

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 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
System.String
| Improve this Doc 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
| Improve this Doc 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
| Improve this Doc 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
System.UInt32
| Improve this Doc View Source

Time

Filter by time range.

Declaration
public TimeRange Time { get; protected set; }
Property Value
Type Description
TimeRange
  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • GetTeamEventsArg(UInt32, String, TimeRange, EventCategory, EventTypeArg)
  • Properties
    • AccountId
    • Category
    • EventType
    • Limit
    • Time
Back to top Generated by DocFX