@@ -229,7 +229,8 @@ def team_devices_list_members_devices(self,
229229 include_desktop_clients = True ,
230230 include_mobile_clients = True ):
231231 """
232- List all device sessions of a team.
232+ List all device sessions of a team. Permission : Team member file
233+ access.
233234
234235 :param Nullable cursor: At the first call to the
235236 :meth:`team_devices_list_members_devices` the cursor shouldn't be
@@ -266,7 +267,8 @@ def team_devices_list_team_devices(self,
266267 include_desktop_clients = True ,
267268 include_mobile_clients = True ):
268269 """
269- List all device sessions of a team.
270+ List all device sessions of a team. Permission : Team member file
271+ access.
270272
271273 :param Nullable cursor: At the first call to the
272274 :meth:`team_devices_list_team_devices` the cursor shouldn't be
@@ -491,7 +493,7 @@ def team_groups_list(self,
491493 """
492494 Lists groups on a team. Permission : Team Information.
493495
494- :param long limit: Number of results to return per call.
496+ :param int limit: Number of results to return per call.
495497 :rtype: :class:`dropbox.team.GroupsListResult`
496498 """
497499 arg = team .GroupsListArg (limit )
@@ -564,7 +566,7 @@ def team_groups_members_list(self,
564566
565567 :param group: The group whose members are to be listed.
566568 :type group: :class:`dropbox.team.GroupSelector`
567- :param long limit: Number of results to return per call.
569+ :param int limit: Number of results to return per call.
568570 :rtype: :class:`dropbox.team.GroupsMembersListResult`
569571 :raises: :class:`.exceptions.ApiError`
570572
@@ -863,7 +865,7 @@ def team_member_space_limits_excluded_users_list(self,
863865 """
864866 List member space limits excluded users.
865867
866- :param long limit: Number of results to return per call.
868+ :param int limit: Number of results to return per call.
867869 :rtype: :class:`dropbox.team.ExcludedUsersListResult`
868870 :raises: :class:`.exceptions.ApiError`
869871
@@ -1073,7 +1075,7 @@ def team_members_list(self,
10731075 """
10741076 Lists members of a team. Permission : Team information.
10751077
1076- :param long limit: Number of results to return per call.
1078+ :param int limit: Number of results to return per call.
10771079 :param bool include_removed: Whether to return removed members.
10781080 :rtype: :class:`dropbox.team.MembersListResult`
10791081 :raises: :class:`.exceptions.ApiError`
@@ -1426,7 +1428,7 @@ def team_namespaces_list(self,
14261428 folders may be owned by other users or other teams. Duplicates may occur
14271429 in the list.
14281430
1429- :param long limit: Specifying a value here has no effect.
1431+ :param int limit: Specifying a value here has no effect.
14301432 :rtype: :class:`dropbox.team.TeamNamespacesListResult`
14311433 :raises: :class:`.exceptions.ApiError`
14321434
@@ -1470,6 +1472,15 @@ def team_properties_template_add(self,
14701472 name ,
14711473 description ,
14721474 fields ):
1475+ """
1476+ Permission : Team member file access.
1477+
1478+ :rtype: :class:`dropbox.team.AddTemplateResult`
1479+ :raises: :class:`.exceptions.ApiError`
1480+
1481+ If this raises, ApiError will contain:
1482+ :class:`dropbox.team.ModifyTemplateError`
1483+ """
14731484 warnings .warn (
14741485 'properties/template/add is deprecated.' ,
14751486 DeprecationWarning ,
@@ -1488,6 +1499,8 @@ def team_properties_template_add(self,
14881499 def team_properties_template_get (self ,
14891500 template_id ):
14901501 """
1502+ Permission : Team member file access.
1503+
14911504 :param str template_id: An identifier for template added by route See
14921505 :meth:`team_templates_add_for_user` or
14931506 :meth:`team_templates_add_for_team`.
@@ -1511,6 +1524,15 @@ def team_properties_template_get(self,
15111524 return r
15121525
15131526 def team_properties_template_list (self ):
1527+ """
1528+ Permission : Team member file access.
1529+
1530+ :rtype: :class:`dropbox.team.ListTemplateResult`
1531+ :raises: :class:`.exceptions.ApiError`
1532+
1533+ If this raises, ApiError will contain:
1534+ :class:`dropbox.team.TemplateError`
1535+ """
15141536 warnings .warn (
15151537 'properties/template/list is deprecated.' ,
15161538 DeprecationWarning ,
@@ -1530,6 +1552,8 @@ def team_properties_template_update(self,
15301552 description = None ,
15311553 add_fields = None ):
15321554 """
1555+ Permission : Team member file access.
1556+
15331557 :param str template_id: An identifier for template added by See
15341558 :meth:`team_templates_add_for_user` or
15351559 :meth:`team_templates_add_for_team`.
@@ -1769,7 +1793,7 @@ def team_team_folder_list(self,
17691793 """
17701794 Lists all team folders. Permission : Team member file access.
17711795
1772- :param long limit: The maximum number of results to return per request.
1796+ :param int limit: The maximum number of results to return per request.
17731797 :rtype: :class:`dropbox.team.TeamFolderListResult`
17741798 :raises: :class:`.exceptions.ApiError`
17751799
@@ -1918,9 +1942,9 @@ def team_log_get_events(self,
19181942 </developers/documentation/http/teams#team-features-get_values>`_ to
19191943 check for this feature. Permission : Team Auditing.
19201944
1921- :param long limit: The maximal number of results to return per call.
1922- Note that some calls may not return ``limit`` number of events, and
1923- may even return no events, even with `has_more` set to true. In this
1945+ :param int limit: The maximal number of results to return per call. Note
1946+ that some calls may not return ``limit`` number of events, and may
1947+ even return no events, even with `has_more` set to true. In this
19241948 case, callers should fetch again using
19251949 :meth:`team_log_get_events_continue`.
19261950 :param Nullable account_id: Filter the events by account ID. Return ony
0 commit comments