class documentation

class GetTeamEventsResult(bb.Struct): (source)

View In Hierarchy

:ivar team_log.GetTeamEventsResult.events: List of events. Note that events are not guaranteed to be sorted by their timestamp value. :ivar team_log.GetTeamEventsResult.cursor: Pass the cursor into :meth:`dropbox.dropbox_client.Dropbox.team_log_get_events_continue` to obtain additional events. The value of ``cursor`` may change for each response from :meth:`dropbox.dropbox_client.Dropbox.team_log_get_events_continue`, regardless of the value of ``has_more``; older cursor strings may expire. 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. :ivar team_log.GetTeamEventsResult.has_more: Is true if there may be additional events that have not been returned yet. An additional call to :meth:`dropbox.dropbox_client.Dropbox.team_log_get_events_continue` can retrieve them. Note that ``has_more`` may be ``True``, even if ``events`` is empty.

Method __init__ Undocumented
Class Variable __slots__ Undocumented
Instance Variable cursor Undocumented
Instance Variable events Undocumented
Instance Variable has_more Undocumented
Method _process_custom_annotations Undocumented
Class Variable _has_required_fields Undocumented
Instance Variable _cursor_value Undocumented
Instance Variable _events_value Undocumented
Instance Variable _has_more_value Undocumented
def __init__(self, events=None, cursor=None, has_more=None): (source)

Undocumented

__slots__: list[str] = (source)

Undocumented

Undocumented

Undocumented

has_more = (source)

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)

Undocumented

_has_required_fields: bool = (source)

Undocumented

_cursor_value = (source)

Undocumented

_events_value = (source)

Undocumented

_has_more_value = (source)

Undocumented