Class GetTeamEventsResult
The get team events result object
Inheritance
Inherited Members
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class GetTeamEventsResult
Constructors
| Improve this Doc View SourceGetTeamEventsResult(IEnumerable<TeamEvent>, String, Boolean)
Initializes a new instance of the Get
Declaration
public GetTeamEventsResult(IEnumerable<TeamEvent> events, string cursor, bool hasMore)
Parameters
Type | Name | Description |
---|---|---|
System. |
events | List of events. Note that events are not guaranteed to be sorted by their timestamp value. |
System. |
cursor | Pass the cursor into Get |
System. |
hasMore | Is true if there may be additional events that have not been
returned yet. An additional call to Get |
Properties
| Improve this Doc View SourceCursor
Pass the cursor into Get
The value of Cursor may change for each response from Get
Thus, callers should ensure that they update their cursor based on the latest value of Cursor after each call, and poll regularly if they wish to poll for new events.
Callers should handle reset exceptions for expired cursors.
Declaration
public string Cursor { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
Events
List of events. Note that events are not guaranteed to be sorted by their timestamp value.
Declaration
public IList<TeamEvent> Events { get; protected set; }
Property Value
Type | Description |
---|---|
System. |
HasMore
Is true if there may be additional events that have not been returned yet. An
additional call to Gettrue
, even if Events is empty.
Declaration
public bool HasMore { get; protected set; }
Property Value
Type | Description |
---|---|
System. |