From 08cf819f367b6420ada29d91fad003dde12b1b5a Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 10 Jan 2019 15:13:45 -0500 Subject: [PATCH] Rebuild docs with fixed references --- dropbox/async_.py | 29 +- dropbox/auth.py | 83 +- dropbox/common.py | 51 +- dropbox/contacts.py | 11 +- dropbox/file_properties.py | 297 +- dropbox/file_requests.py | 149 +- dropbox/files.py | 1472 +++---- dropbox/paper.py | 487 +-- dropbox/seen_state.py | 11 +- dropbox/sharing.py | 2345 ++++++------ dropbox/team.py | 1774 +++++---- dropbox/team_common.py | 46 +- dropbox/team_log.py | 7371 +++++++++++++++++++----------------- dropbox/team_policies.py | 173 +- dropbox/users.py | 153 +- dropbox/users_common.py | 6 +- stone | 2 +- 17 files changed, 7759 insertions(+), 6701 deletions(-) diff --git a/dropbox/async_.py b/dropbox/async_.py index 96449d4b..7d3870e2 100644 --- a/dropbox/async_.py +++ b/dropbox/async_.py @@ -24,9 +24,9 @@ class LaunchResultBase(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str async_job_id: This response indicates that the processing is - asynchronous. The string is an id that can be used to obtain the status - of the asynchronous job. + :ivar str async.LaunchResultBase.async_job_id: This response indicates that + the processing is asynchronous. The string is an id that can be used to + obtain the status of the asynchronous job. """ _catch_all = None @@ -38,7 +38,7 @@ def async_job_id(cls, val): value ``val``. :param str val: - :rtype: LaunchResultBase + :rtype: async_.LaunchResultBase """ return cls('async_job_id', val) @@ -81,7 +81,8 @@ class LaunchEmptyResult(LaunchResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar complete: The job finished synchronously and successfully. + :ivar async.LaunchEmptyResult.complete: The job finished synchronously and + successfully. """ # Attribute is overwritten below the class definition @@ -107,8 +108,8 @@ class PollArg(bb.Struct): """ Arguments for methods that poll the status of an asynchronous job. - :ivar async_job_id: Id of the asynchronous job. This is the value of a - response returned from the method that launched the job. + :ivar async.PollArg.async_job_id: Id of the asynchronous job. This is the + value of a response returned from the method that launched the job. """ __slots__ = [ @@ -170,7 +171,8 @@ class PollResultBase(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar in_progress: The asynchronous job is still in progress. + :ivar async.PollResultBase.in_progress: The asynchronous job is still in + progress. """ _catch_all = None @@ -202,7 +204,8 @@ class PollEmptyResult(PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar complete: The asynchronous job has completed successfully. + :ivar async.PollEmptyResult.complete: The asynchronous job has completed + successfully. """ # Attribute is overwritten below the class definition @@ -232,10 +235,10 @@ class PollError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_async_job_id: The job ID is invalid. - :ivar internal_error: Something went wrong with the job on Dropbox's end. - You'll need to verify that the action you were taking succeeded, and if - not, try again. This should happen very rarely. + :ivar async.PollError.invalid_async_job_id: The job ID is invalid. + :ivar async.PollError.internal_error: Something went wrong with the job on + Dropbox's end. You'll need to verify that the action you were taking + succeeded, and if not, try again. This should happen very rarely. """ _catch_all = 'other' diff --git a/dropbox/auth.py b/dropbox/auth.py index 5a558a13..aeec50f9 100644 --- a/dropbox/auth.py +++ b/dropbox/auth.py @@ -21,10 +21,10 @@ class AccessError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar InvalidAccountTypeError invalid_account_type: Current account type - cannot access the resource. - :ivar PaperAccessError paper_access_denied: Current account cannot access - Paper. + :ivar InvalidAccountTypeError auth.AccessError.invalid_account_type: Current + account type cannot access the resource. + :ivar PaperAccessError auth.AccessError.paper_access_denied: Current account + cannot access Paper. """ _catch_all = 'other' @@ -37,8 +37,8 @@ def invalid_account_type(cls, val): Create an instance of this class set to the ``invalid_account_type`` tag with value ``val``. - :param InvalidAccountTypeError val: - :rtype: AccessError + :param auth.InvalidAccountTypeError val: + :rtype: auth.AccessError """ return cls('invalid_account_type', val) @@ -48,8 +48,8 @@ def paper_access_denied(cls, val): Create an instance of this class set to the ``paper_access_denied`` tag with value ``val``. - :param PaperAccessError val: - :rtype: AccessError + :param auth.PaperAccessError val: + :rtype: auth.AccessError """ return cls('paper_access_denied', val) @@ -83,7 +83,7 @@ def get_invalid_account_type(self): Only call this if :meth:`is_invalid_account_type` is true. - :rtype: InvalidAccountTypeError + :rtype: auth.InvalidAccountTypeError """ if not self.is_invalid_account_type(): raise AttributeError("tag 'invalid_account_type' not set") @@ -95,7 +95,7 @@ def get_paper_access_denied(self): Only call this if :meth:`is_paper_access_denied` is true. - :rtype: PaperAccessError + :rtype: auth.PaperAccessError """ if not self.is_paper_access_denied(): raise AttributeError("tag 'paper_access_denied' not set") @@ -117,13 +117,13 @@ class AuthError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_access_token: The access token is invalid. - :ivar invalid_select_user: The user specified in 'Dropbox-API-Select-User' - is no longer on the team. - :ivar invalid_select_admin: The user specified in 'Dropbox-API-Select-Admin' - is not a Dropbox Business team admin. - :ivar user_suspended: The user has been suspended. - :ivar expired_access_token: The access token has expired. + :ivar auth.AuthError.invalid_access_token: The access token is invalid. + :ivar auth.AuthError.invalid_select_user: The user specified in + 'Dropbox-API-Select-User' is no longer on the team. + :ivar auth.AuthError.invalid_select_admin: The user specified in + 'Dropbox-API-Select-Admin' is not a Dropbox Business team admin. + :ivar auth.AuthError.user_suspended: The user has been suspended. + :ivar auth.AuthError.expired_access_token: The access token has expired. """ _catch_all = 'other' @@ -202,10 +202,10 @@ class InvalidAccountTypeError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar endpoint: Current account type doesn't have permission to access this - route endpoint. - :ivar feature: Current account type doesn't have permission to access this - feature. + :ivar auth.InvalidAccountTypeError.endpoint: Current account type doesn't + have permission to access this route endpoint. + :ivar auth.InvalidAccountTypeError.feature: Current account type doesn't + have permission to access this feature. """ _catch_all = 'other' @@ -254,8 +254,9 @@ class PaperAccessError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar paper_disabled: Paper is disabled. - :ivar not_paper_user: The provided user has not used Paper yet. + :ivar auth.PaperAccessError.paper_disabled: Paper is disabled. + :ivar auth.PaperAccessError.not_paper_user: The provided user has not used + Paper yet. """ _catch_all = 'other' @@ -302,9 +303,10 @@ class RateLimitError(bb.Struct): """ Error occurred because the app is being rate limited. - :ivar reason: The reason why the app is being rate limited. - :ivar retry_after: The number of seconds that the app should wait before - making another request. + :ivar auth.RateLimitError.reason: The reason why the app is being rate + limited. + :ivar auth.RateLimitError.retry_after: The number of seconds that the app + should wait before making another request. """ __slots__ = [ @@ -333,7 +335,7 @@ def reason(self): """ The reason why the app is being rate limited. - :rtype: RateLimitReason + :rtype: auth.RateLimitReason """ if self._reason_present: return self._reason_value @@ -392,10 +394,10 @@ class RateLimitReason(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar too_many_requests: You are making too many requests in the past few - minutes. - :ivar too_many_write_operations: There are currently too many write - operations happening in the user's Dropbox. + :ivar auth.RateLimitReason.too_many_requests: You are making too many + requests in the past few minutes. + :ivar auth.RateLimitReason.too_many_write_operations: There are currently + too many write operations happening in the user's Dropbox. """ _catch_all = 'other' @@ -440,9 +442,10 @@ def __repr__(self): class TokenFromOAuth1Arg(bb.Struct): """ - :ivar oauth1_token: The supplied OAuth 1.0 access token. - :ivar oauth1_token_secret: The token secret associated with the supplied - access token. + :ivar auth.TokenFromOAuth1Arg.oauth1_token: The supplied OAuth 1.0 access + token. + :ivar auth.TokenFromOAuth1Arg.oauth1_token_secret: The token secret + associated with the supplied access token. """ __slots__ = [ @@ -529,10 +532,10 @@ class TokenFromOAuth1Error(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_oauth1_token_info: Part or all of the OAuth 1.0 access token - info is invalid. - :ivar app_id_mismatch: The authorized app does not match the app associated - with the supplied access token. + :ivar auth.TokenFromOAuth1Error.invalid_oauth1_token_info: Part or all of + the OAuth 1.0 access token info is invalid. + :ivar auth.TokenFromOAuth1Error.app_id_mismatch: The authorized app does not + match the app associated with the supplied access token. """ _catch_all = 'other' @@ -577,8 +580,8 @@ def __repr__(self): class TokenFromOAuth1Result(bb.Struct): """ - :ivar oauth2_token: The OAuth 2.0 token generated from the supplied OAuth - 1.0 token. + :ivar auth.TokenFromOAuth1Result.oauth2_token: The OAuth 2.0 token generated + from the supplied OAuth 1.0 token. """ __slots__ = [ diff --git a/dropbox/common.py b/dropbox/common.py index e17c92de..df1ec22c 100644 --- a/dropbox/common.py +++ b/dropbox/common.py @@ -18,14 +18,15 @@ class PathRoot(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar home: Paths are relative to the authenticating user's home namespace, - whether or not that user belongs to a team. - :ivar str root: Paths are relative to the authenticating user's root - namespace (This results in :field:`PathRootError.invalid_root` if the - user's root namespace has changed.). - :ivar str namespace_id: Paths are relative to given namespace id (This - results in :field:`PathRootError.no_permission` if you don't have access - to this namespace.). + :ivar common.PathRoot.home: Paths are relative to the authenticating user's + home namespace, whether or not that user belongs to a team. + :ivar str common.PathRoot.root: Paths are relative to the authenticating + user's root namespace (This results in + :field:`PathRootError.invalid_root` if the user's root namespace has + changed.). + :ivar str common.PathRoot.namespace_id: Paths are relative to given + namespace id (This results in :field:`PathRootError.no_permission` if + you don't have access to this namespace.). """ _catch_all = 'other' @@ -41,7 +42,7 @@ def root(cls, val): ``val``. :param str val: - :rtype: PathRoot + :rtype: common.PathRoot """ return cls('root', val) @@ -52,7 +53,7 @@ def namespace_id(cls, val): value ``val``. :param str val: - :rtype: PathRoot + :rtype: common.PathRoot """ return cls('namespace_id', val) @@ -130,10 +131,11 @@ class PathRootError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar RootInfo invalid_root: The root namespace id in Dropbox-API-Path-Root - header is not valid. The value of this error is use's latest root info. - :ivar no_permission: You don't have permission to access the namespace id in - Dropbox-API-Path-Root header. + :ivar RootInfo common.PathRootError.invalid_root: The root namespace id in + Dropbox-API-Path-Root header is not valid. The value of this error is + use's latest root info. + :ivar common.PathRootError.no_permission: You don't have permission to + access the namespace id in Dropbox-API-Path-Root header. """ _catch_all = 'other' @@ -148,8 +150,8 @@ def invalid_root(cls, val): Create an instance of this class set to the ``invalid_root`` tag with value ``val``. - :param RootInfo val: - :rtype: PathRootError + :param common.RootInfo val: + :rtype: common.PathRootError """ return cls('invalid_root', val) @@ -184,7 +186,7 @@ def get_invalid_root(self): Only call this if :meth:`is_invalid_root` is true. - :rtype: RootInfo + :rtype: common.RootInfo """ if not self.is_invalid_root(): raise AttributeError("tag 'invalid_root' not set") @@ -202,11 +204,12 @@ class RootInfo(bb.Struct): """ Information about current user's root. - :ivar root_namespace_id: The namespace ID for user's root namespace. It will - be the namespace ID of the shared team root if the user is member of a - team with a separate team root. Otherwise it will be same as - ``RootInfo.home_namespace_id``. - :ivar home_namespace_id: The namespace ID for user's home namespace. + :ivar common.RootInfo.root_namespace_id: The namespace ID for user's root + namespace. It will be the namespace ID of the shared team root if the + user is member of a team with a separate team root. Otherwise it will be + same as ``RootInfo.home_namespace_id``. + :ivar common.RootInfo.home_namespace_id: The namespace ID for user's home + namespace. """ __slots__ = [ @@ -293,8 +296,8 @@ class TeamRootInfo(RootInfo): """ Root info when user is member of a team with a separate root namespace ID. - :ivar home_path: The path for user's home directory under the shared team - root. + :ivar common.TeamRootInfo.home_path: The path for user's home directory + under the shared team root. """ __slots__ = [ diff --git a/dropbox/contacts.py b/dropbox/contacts.py index 2a54190d..1e997a47 100644 --- a/dropbox/contacts.py +++ b/dropbox/contacts.py @@ -21,7 +21,8 @@ class DeleteManualContactsArg(bb.Struct): """ - :ivar email_addresses: List of manually added contacts to be deleted. + :ivar contacts.DeleteManualContactsArg.email_addresses: List of manually + added contacts to be deleted. """ __slots__ = [ @@ -77,9 +78,9 @@ class DeleteManualContactsError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar list of [str] contacts_not_found: Can't delete contacts from this - list. Make sure the list only has manually added contacts. The deletion - was cancelled. + :ivar list of [str] contacts.DeleteManualContactsError.contacts_not_found: + Can't delete contacts from this list. Make sure the list only has + manually added contacts. The deletion was cancelled. """ _catch_all = 'other' @@ -93,7 +94,7 @@ def contacts_not_found(cls, val): with value ``val``. :param list of [str] val: - :rtype: DeleteManualContactsError + :rtype: contacts.DeleteManualContactsError """ return cls('contacts_not_found', val) diff --git a/dropbox/file_properties.py b/dropbox/file_properties.py index 2006e073..ea9502b8 100644 --- a/dropbox/file_properties.py +++ b/dropbox/file_properties.py @@ -34,9 +34,10 @@ class AddPropertiesArg(bb.Struct): """ - :ivar path: A unique identifier for the file or folder. - :ivar property_groups: The property groups which are to be added to a - Dropbox file. + :ivar file_properties.AddPropertiesArg.path: A unique identifier for the + file or folder. + :ivar file_properties.AddPropertiesArg.property_groups: The property groups + which are to be added to a Dropbox file. """ __slots__ = [ @@ -88,7 +89,7 @@ def property_groups(self): """ The property groups which are to be added to a Dropbox file. - :rtype: list of [PropertyGroup] + :rtype: list of [file_properties.PropertyGroup] """ if self._property_groups_present: return self._property_groups_value @@ -123,10 +124,10 @@ class TemplateError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str template_not_found: Template does not exist for the given - identifier. - :ivar restricted_content: You do not have permission to modify this - template. + :ivar str file_properties.TemplateError.template_not_found: Template does + not exist for the given identifier. + :ivar file_properties.TemplateError.restricted_content: You do not have + permission to modify this template. """ _catch_all = 'other' @@ -142,7 +143,7 @@ def template_not_found(cls, val): with value ``val``. :param str val: - :rtype: TemplateError + :rtype: file_properties.TemplateError """ return cls('template_not_found', val) @@ -196,8 +197,8 @@ class PropertiesError(TemplateError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar unsupported_folder: This folder cannot be tagged. Tagging folders is - not supported for team-owned templates. + :ivar file_properties.PropertiesError.unsupported_folder: This folder cannot + be tagged. Tagging folders is not supported for team-owned templates. """ # Attribute is overwritten below the class definition @@ -209,8 +210,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: PropertiesError + :param file_properties.LookupError val: + :rtype: file_properties.PropertiesError """ return cls('path', val) @@ -234,7 +235,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: file_properties.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -254,10 +255,11 @@ class InvalidPropertyGroupError(PropertiesError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar property_field_too_large: One or more of the supplied property field - values is too large. - :ivar does_not_fit_template: One or more of the supplied property fields - does not conform to the template specifications. + :ivar file_properties.InvalidPropertyGroupError.property_field_too_large: + One or more of the supplied property field values is too large. + :ivar file_properties.InvalidPropertyGroupError.does_not_fit_template: One + or more of the supplied property fields does not conform to the template + specifications. """ # Attribute is overwritten below the class definition @@ -295,8 +297,8 @@ class AddPropertiesError(InvalidPropertyGroupError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar property_group_already_exists: A property group associated with this - template and file already exists. + :ivar file_properties.AddPropertiesError.property_group_already_exists: A + property group associated with this template and file already exists. """ # Attribute is overwritten below the class definition @@ -322,12 +324,13 @@ class PropertyGroupTemplate(bb.Struct): """ Defines how a property group may be structured. - :ivar name: Display name for the template. Template names can be up to 256 - bytes. - :ivar description: Description for the template. Template descriptions can - be up to 1024 bytes. - :ivar fields: Definitions of the property fields associated with this - template. There can be up to 32 properties in a single template. + :ivar file_properties.PropertyGroupTemplate.name: Display name for the + template. Template names can be up to 256 bytes. + :ivar file_properties.PropertyGroupTemplate.description: Description for the + template. Template descriptions can be up to 1024 bytes. + :ivar file_properties.PropertyGroupTemplate.fields: Definitions of the + property fields associated with this template. There can be up to 32 + properties in a single template. """ __slots__ = [ @@ -411,7 +414,7 @@ def fields(self): Definitions of the property fields associated with this template. There can be up to 32 properties in a single template. - :rtype: list of [PropertyFieldTemplate] + :rtype: list of [file_properties.PropertyFieldTemplate] """ if self._fields_present: return self._fields_value @@ -470,7 +473,8 @@ def __repr__(self): class AddTemplateResult(bb.Struct): """ - :ivar template_id: An identifier for template added by See + :ivar file_properties.AddTemplateResult.template_id: An identifier for + template added by See :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_user` or :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_team`. @@ -528,7 +532,8 @@ def __repr__(self): class GetTemplateArg(bb.Struct): """ - :ivar template_id: An identifier for template added by route See + :ivar file_properties.GetTemplateArg.template_id: An identifier for template + added by route See :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_user` or :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_team`. @@ -613,7 +618,8 @@ def __repr__(self): class ListTemplateResult(bb.Struct): """ - :ivar template_ids: List of identifiers for templates added by See + :ivar file_properties.ListTemplateResult.template_ids: List of identifiers + for templates added by See :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_user` or :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_team`. @@ -677,7 +683,8 @@ class LogicalOperator(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar or_operator: Append a query with an "or" operator. + :ivar file_properties.LogicalOperator.or_operator: Append a query with an + "or" operator. """ _catch_all = 'other' @@ -716,7 +723,8 @@ class LookUpPropertiesError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar property_group_not_found: No property group was found. + :ivar file_properties.LookUpPropertiesError.property_group_not_found: No + property group was found. """ _catch_all = 'other' @@ -755,14 +763,15 @@ class LookupError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar not_found: There is nothing at the given path. - :ivar not_file: We were expecting a file, but the given path refers to - something that isn't a file. - :ivar not_folder: We were expecting a folder, but the given path refers to - something that isn't a folder. - :ivar restricted_content: The file cannot be transferred because the content - is restricted. For example, sometimes there are legal restrictions due - to copyright claims. + :ivar file_properties.LookupError.not_found: There is nothing at the given + path. + :ivar file_properties.LookupError.not_file: We were expecting a file, but + the given path refers to something that isn't a file. + :ivar file_properties.LookupError.not_folder: We were expecting a folder, + but the given path refers to something that isn't a folder. + :ivar file_properties.LookupError.restricted_content: The file cannot be + transferred because the content is restricted. For example, sometimes + there are legal restrictions due to copyright claims. """ _catch_all = 'other' @@ -784,7 +793,7 @@ def malformed_path(cls, val): value ``val``. :param str val: - :rtype: LookupError + :rtype: file_properties.LookupError """ return cls('malformed_path', val) @@ -860,13 +869,16 @@ class ModifyTemplateError(TemplateError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar conflicting_property_names: A property field key with that name - already exists in the template. - :ivar too_many_properties: There are too many properties in the changed - template. The maximum number of properties per template is 32. - :ivar too_many_templates: There are too many templates for the team. - :ivar template_attribute_too_large: The template name, description or one or - more of the property field keys is too large. + :ivar file_properties.ModifyTemplateError.conflicting_property_names: A + property field key with that name already exists in the template. + :ivar file_properties.ModifyTemplateError.too_many_properties: There are too + many properties in the changed template. The maximum number of + properties per template is 32. + :ivar file_properties.ModifyTemplateError.too_many_templates: There are too + many templates for the team. + :ivar file_properties.ModifyTemplateError.template_attribute_too_large: The + template name, description or one or more of the property field keys is + too large. """ # Attribute is overwritten below the class definition @@ -920,9 +932,10 @@ def __repr__(self): class OverwritePropertyGroupArg(bb.Struct): """ - :ivar path: A unique identifier for the file or folder. - :ivar property_groups: The property groups "snapshot" updates to force - apply. + :ivar file_properties.OverwritePropertyGroupArg.path: A unique identifier + for the file or folder. + :ivar file_properties.OverwritePropertyGroupArg.property_groups: The + property groups "snapshot" updates to force apply. """ __slots__ = [ @@ -974,7 +987,7 @@ def property_groups(self): """ The property groups "snapshot" updates to force apply. - :rtype: list of [PropertyGroup] + :rtype: list of [file_properties.PropertyGroup] """ if self._property_groups_present: return self._property_groups_value @@ -1005,9 +1018,9 @@ def __repr__(self): class PropertiesSearchArg(bb.Struct): """ - :ivar queries: Queries to search. - :ivar template_filter: Filter results to contain only properties associated - with these template IDs. + :ivar file_properties.PropertiesSearchArg.queries: Queries to search. + :ivar file_properties.PropertiesSearchArg.template_filter: Filter results to + contain only properties associated with these template IDs. """ __slots__ = [ @@ -1036,7 +1049,7 @@ def queries(self): """ Queries to search. - :rtype: list of [PropertiesSearchQuery] + :rtype: list of [file_properties.PropertiesSearchQuery] """ if self._queries_present: return self._queries_value @@ -1060,7 +1073,7 @@ def template_filter(self): Filter results to contain only properties associated with these template IDs. - :rtype: TemplateFilter + :rtype: file_properties.TemplateFilter """ if self._template_filter_present: return self._template_filter_value @@ -1091,7 +1104,8 @@ def __repr__(self): class PropertiesSearchContinueArg(bb.Struct): """ - :ivar cursor: The cursor returned by your last call to + :ivar file_properties.PropertiesSearchContinueArg.cursor: The cursor + returned by your last call to :meth:`dropbox.dropbox.Dropbox.file_properties_properties_search` or :meth:`dropbox.dropbox.Dropbox.file_properties_properties_search_continue`. """ @@ -1151,7 +1165,8 @@ class PropertiesSearchContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar reset: Indicates that the cursor has been invalidated. Call + :ivar file_properties.PropertiesSearchContinueError.reset: Indicates that + the cursor has been invalidated. Call :meth:`dropbox.dropbox.Dropbox.file_properties_properties_search` to obtain a new cursor. """ @@ -1203,8 +1218,8 @@ def property_group_lookup(cls, val): Create an instance of this class set to the ``property_group_lookup`` tag with value ``val``. - :param LookUpPropertiesError val: - :rtype: PropertiesSearchError + :param file_properties.LookUpPropertiesError val: + :rtype: file_properties.PropertiesSearchError """ return cls('property_group_lookup', val) @@ -1228,7 +1243,7 @@ def get_property_group_lookup(self): """ Only call this if :meth:`is_property_group_lookup` is true. - :rtype: LookUpPropertiesError + :rtype: file_properties.LookUpPropertiesError """ if not self.is_property_group_lookup(): raise AttributeError("tag 'property_group_lookup' not set") @@ -1244,11 +1259,14 @@ def __repr__(self): class PropertiesSearchMatch(bb.Struct): """ - :ivar id: The ID for the matched file or folder. - :ivar path: The path for the matched file or folder. - :ivar is_deleted: Whether the file or folder is deleted. - :ivar property_groups: List of custom property groups associated with the - file. + :ivar file_properties.PropertiesSearchMatch.id: The ID for the matched file + or folder. + :ivar file_properties.PropertiesSearchMatch.path: The path for the matched + file or folder. + :ivar file_properties.PropertiesSearchMatch.is_deleted: Whether the file or + folder is deleted. + :ivar file_properties.PropertiesSearchMatch.property_groups: List of custom + property groups associated with the file. """ __slots__ = [ @@ -1360,7 +1378,7 @@ def property_groups(self): """ List of custom property groups associated with the file. - :rtype: list of [PropertyGroup] + :rtype: list of [file_properties.PropertyGroup] """ if self._property_groups_present: return self._property_groups_value @@ -1397,7 +1415,8 @@ class PropertiesSearchMode(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str field_name: Search for a value associated with this field name. + :ivar str file_properties.PropertiesSearchMode.field_name: Search for a + value associated with this field name. """ _catch_all = 'other' @@ -1411,7 +1430,7 @@ def field_name(cls, val): value ``val``. :param str val: - :rtype: PropertiesSearchMode + :rtype: file_properties.PropertiesSearchMode """ return cls('field_name', val) @@ -1453,9 +1472,12 @@ def __repr__(self): class PropertiesSearchQuery(bb.Struct): """ - :ivar query: The property field value for which to search across templates. - :ivar mode: The mode with which to perform the search. - :ivar logical_operator: The logical operator with which to append the query. + :ivar file_properties.PropertiesSearchQuery.query: The property field value + for which to search across templates. + :ivar file_properties.PropertiesSearchQuery.mode: The mode with which to + perform the search. + :ivar file_properties.PropertiesSearchQuery.logical_operator: The logical + operator with which to append the query. """ __slots__ = [ @@ -1514,7 +1536,7 @@ def mode(self): """ The mode with which to perform the search. - :rtype: PropertiesSearchMode + :rtype: file_properties.PropertiesSearchMode """ if self._mode_present: return self._mode_value @@ -1537,7 +1559,7 @@ def logical_operator(self): """ The logical operator with which to append the query. - :rtype: LogicalOperator + :rtype: file_properties.LogicalOperator """ if self._logical_operator_present: return self._logical_operator_value @@ -1569,8 +1591,9 @@ def __repr__(self): class PropertiesSearchResult(bb.Struct): """ - :ivar matches: A list (possibly empty) of matches for the query. - :ivar cursor: Pass the cursor into + :ivar file_properties.PropertiesSearchResult.matches: A list (possibly + empty) of matches for the query. + :ivar file_properties.PropertiesSearchResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.file_properties_properties_search_continue` to continue to receive search results. Cursor will be null when there are no more results. @@ -1602,7 +1625,7 @@ def matches(self): """ A list (possibly empty) of matches for the query. - :rtype: list of [PropertiesSearchMatch] + :rtype: list of [file_properties.PropertiesSearchMatch] """ if self._matches_present: return self._matches_value @@ -1665,10 +1688,10 @@ class PropertyField(bb.Struct): Raw key/value data to be associated with a Dropbox file. Property fields are added to Dropbox files as a :class:`PropertyGroup`. - :ivar name: Key of the property field associated with a file and template. - Keys can be up to 256 bytes. - :ivar value: Value of the property field associated with a file and - template. Values can be up to 1024 bytes. + :ivar file_properties.PropertyField.name: Key of the property field + associated with a file and template. Keys can be up to 256 bytes. + :ivar file_properties.PropertyField.value: Value of the property field + associated with a file and template. Values can be up to 1024 bytes. """ __slots__ = [ @@ -1756,12 +1779,13 @@ class PropertyFieldTemplate(bb.Struct): Defines how a single property field may be structured. Used exclusively by :class:`PropertyGroupTemplate`. - :ivar name: Key of the property field being described. Property field keys - can be up to 256 bytes. - :ivar description: Description of the property field. Property field - descriptions can be up to 1024 bytes. - :ivar type: Data type of the value of this property field. This type will be - enforced upon property creation and modifications. + :ivar file_properties.PropertyFieldTemplate.name: Key of the property field + being described. Property field keys can be up to 256 bytes. + :ivar file_properties.PropertyFieldTemplate.description: Description of the + property field. Property field descriptions can be up to 1024 bytes. + :ivar file_properties.PropertyFieldTemplate.type: Data type of the value of + this property field. This type will be enforced upon property creation + and modifications. """ __slots__ = [ @@ -1846,7 +1870,7 @@ def type(self): Data type of the value of this property field. This type will be enforced upon property creation and modifications. - :rtype: PropertyType + :rtype: file_properties.PropertyType """ if self._type_present: return self._type_value @@ -1883,9 +1907,10 @@ class PropertyGroup(bb.Struct): file as a :class:`PropertyGroup`. The possible key names and value types in this group are defined by the corresponding :class:`PropertyGroupTemplate`. - :ivar template_id: A unique identifier for the associated template. - :ivar fields: The actual properties associated with the template. There can - be up to 32 property types per template. + :ivar file_properties.PropertyGroup.template_id: A unique identifier for the + associated template. + :ivar file_properties.PropertyGroup.fields: The actual properties associated + with the template. There can be up to 32 property types per template. """ __slots__ = [ @@ -1938,7 +1963,7 @@ def fields(self): The actual properties associated with the template. There can be up to 32 property types per template. - :rtype: list of [PropertyField] + :rtype: list of [file_properties.PropertyField] """ if self._fields_present: return self._fields_value @@ -1969,12 +1994,13 @@ def __repr__(self): class PropertyGroupUpdate(bb.Struct): """ - :ivar template_id: A unique identifier for a property template. - :ivar add_or_update_fields: Property fields to update. If the property field - already exists, it is updated. If the property field doesn't exist, the - property group is added. - :ivar remove_fields: Property fields to remove (by name), provided they - exist. + :ivar file_properties.PropertyGroupUpdate.template_id: A unique identifier + for a property template. + :ivar file_properties.PropertyGroupUpdate.add_or_update_fields: Property + fields to update. If the property field already exists, it is updated. + If the property field doesn't exist, the property group is added. + :ivar file_properties.PropertyGroupUpdate.remove_fields: Property fields to + remove (by name), provided they exist. """ __slots__ = [ @@ -2035,7 +2061,7 @@ def add_or_update_fields(self): updated. If the property field doesn't exist, the property group is added. - :rtype: list of [PropertyField] + :rtype: list of [file_properties.PropertyField] """ if self._add_or_update_fields_present: return self._add_or_update_fields_value @@ -2102,8 +2128,8 @@ class PropertyType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar string: The associated property field will be of type string. Unicode - is supported. + :ivar file_properties.PropertyType.string: The associated property field + will be of type string. Unicode is supported. """ _catch_all = 'other' @@ -2138,8 +2164,10 @@ def __repr__(self): class RemovePropertiesArg(bb.Struct): """ - :ivar path: A unique identifier for the file or folder. - :ivar property_template_ids: A list of identifiers for a template created by + :ivar file_properties.RemovePropertiesArg.path: A unique identifier for the + file or folder. + :ivar file_properties.RemovePropertiesArg.property_template_ids: A list of + identifiers for a template created by :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_user` or :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_team`. @@ -2239,8 +2267,8 @@ def property_group_lookup(cls, val): Create an instance of this class set to the ``property_group_lookup`` tag with value ``val``. - :param LookUpPropertiesError val: - :rtype: RemovePropertiesError + :param file_properties.LookUpPropertiesError val: + :rtype: file_properties.RemovePropertiesError """ return cls('property_group_lookup', val) @@ -2256,7 +2284,7 @@ def get_property_group_lookup(self): """ Only call this if :meth:`is_property_group_lookup` is true. - :rtype: LookUpPropertiesError + :rtype: file_properties.LookUpPropertiesError """ if not self.is_property_group_lookup(): raise AttributeError("tag 'property_group_lookup' not set") @@ -2272,7 +2300,8 @@ def __repr__(self): class RemoveTemplateArg(bb.Struct): """ - :ivar template_id: An identifier for a template created by + :ivar file_properties.RemoveTemplateArg.template_id: An identifier for a + template created by :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_user` or :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_team`. @@ -2334,8 +2363,9 @@ class TemplateFilterBase(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar list of [str] filter_some: Only templates with an ID in the supplied - list will be returned (a subset of templates will be returned). + :ivar list of [str] file_properties.TemplateFilterBase.filter_some: Only + templates with an ID in the supplied list will be returned (a subset of + templates will be returned). """ _catch_all = 'other' @@ -2349,7 +2379,7 @@ def filter_some(cls, val): value ``val``. :param list of [str] val: - :rtype: TemplateFilterBase + :rtype: file_properties.TemplateFilterBase """ return cls('filter_some', val) @@ -2396,8 +2426,8 @@ class TemplateFilter(TemplateFilterBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar filter_none: No templates will be filtered from the result (all - templates will be returned). + :ivar file_properties.TemplateFilter.filter_none: No templates will be + filtered from the result (all templates will be returned). """ # Attribute is overwritten below the class definition @@ -2425,8 +2455,10 @@ class TemplateOwnerType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar user: Template will be associated with a user. - :ivar team: Template will be associated with a team. + :ivar file_properties.TemplateOwnerType.user: Template will be associated + with a user. + :ivar file_properties.TemplateOwnerType.team: Template will be associated + with a team. """ _catch_all = 'other' @@ -2471,8 +2503,10 @@ def __repr__(self): class UpdatePropertiesArg(bb.Struct): """ - :ivar path: A unique identifier for the file or folder. - :ivar update_property_groups: The property groups "delta" updates to apply. + :ivar file_properties.UpdatePropertiesArg.path: A unique identifier for the + file or folder. + :ivar file_properties.UpdatePropertiesArg.update_property_groups: The + property groups "delta" updates to apply. """ __slots__ = [ @@ -2524,7 +2558,7 @@ def update_property_groups(self): """ The property groups "delta" updates to apply. - :rtype: list of [PropertyGroupUpdate] + :rtype: list of [file_properties.PropertyGroupUpdate] """ if self._update_property_groups_present: return self._update_property_groups_value @@ -2566,8 +2600,8 @@ def property_group_lookup(cls, val): Create an instance of this class set to the ``property_group_lookup`` tag with value ``val``. - :param LookUpPropertiesError val: - :rtype: UpdatePropertiesError + :param file_properties.LookUpPropertiesError val: + :rtype: file_properties.UpdatePropertiesError """ return cls('property_group_lookup', val) @@ -2583,7 +2617,7 @@ def get_property_group_lookup(self): """ Only call this if :meth:`is_property_group_lookup` is true. - :rtype: LookUpPropertiesError + :rtype: file_properties.LookUpPropertiesError """ if not self.is_property_group_lookup(): raise AttributeError("tag 'property_group_lookup' not set") @@ -2599,16 +2633,18 @@ def __repr__(self): class UpdateTemplateArg(bb.Struct): """ - :ivar template_id: An identifier for template added by See + :ivar file_properties.UpdateTemplateArg.template_id: An identifier for + template added by See :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_user` or :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_team`. - :ivar name: A display name for the template. template names can be up to 256 - bytes. - :ivar description: Description for the new template. Template descriptions - can be up to 1024 bytes. - :ivar add_fields: Property field templates to be added to the group - template. There can be up to 32 properties in a single template. + :ivar file_properties.UpdateTemplateArg.name: A display name for the + template. template names can be up to 256 bytes. + :ivar file_properties.UpdateTemplateArg.description: Description for the new + template. Template descriptions can be up to 1024 bytes. + :ivar file_properties.UpdateTemplateArg.add_fields: Property field templates + to be added to the group template. There can be up to 32 properties in a + single template. """ __slots__ = [ @@ -2731,7 +2767,7 @@ def add_fields(self): Property field templates to be added to the group template. There can be up to 32 properties in a single template. - :rtype: list of [PropertyFieldTemplate] + :rtype: list of [file_properties.PropertyFieldTemplate] """ if self._add_fields_present: return self._add_fields_value @@ -2767,7 +2803,8 @@ def __repr__(self): class UpdateTemplateResult(bb.Struct): """ - :ivar template_id: An identifier for template added by route See + :ivar file_properties.UpdateTemplateResult.template_id: An identifier for + template added by route See :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_user` or :meth:`dropbox.dropbox.Dropbox.file_properties_templates_add_for_team`. diff --git a/dropbox/file_requests.py b/dropbox/file_requests.py index 953467e1..83790340 100644 --- a/dropbox/file_requests.py +++ b/dropbox/file_requests.py @@ -29,15 +29,17 @@ class CreateFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox.Dropbox.file_requests_create`. - :ivar title: The title of the file request. Must not be empty. - :ivar destination: The path of the folder in the Dropbox where uploaded - files will be sent. For apps with the app folder permission, this will - be relative to the app folder. - :ivar deadline: The deadline for the file request. Deadlines can only be set - by Professional and Business accounts. - :ivar open: Whether or not the file request should be open. If the file - request is closed, it will not accept any file submissions, but it can - be opened later. + :ivar file_requests.CreateFileRequestArgs.title: The title of the file + request. Must not be empty. + :ivar file_requests.CreateFileRequestArgs.destination: The path of the + folder in the Dropbox where uploaded files will be sent. For apps with + the app folder permission, this will be relative to the app folder. + :ivar file_requests.CreateFileRequestArgs.deadline: The deadline for the + file request. Deadlines can only be set by Professional and Business + accounts. + :ivar file_requests.CreateFileRequestArgs.open: Whether or not the file + request should be open. If the file request is closed, it will not + accept any file submissions, but it can be opened later. """ __slots__ = [ @@ -129,7 +131,7 @@ def deadline(self): The deadline for the file request. Deadlines can only be set by Professional and Business accounts. - :rtype: FileRequestDeadline + :rtype: file_requests.FileRequestDeadline """ if self._deadline_present: return self._deadline_value @@ -196,8 +198,8 @@ class GeneralFileRequestsError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled_for_team: This user's Dropbox Business team doesn't allow - file requests. + :ivar file_requests.GeneralFileRequestsError.disabled_for_team: This user's + Dropbox Business team doesn't allow file requests. """ _catch_all = 'other' @@ -238,20 +240,22 @@ class FileRequestError(GeneralFileRequestsError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar not_found: This file request ID was not found. - :ivar not_a_folder: The specified path is not a folder. - :ivar app_lacks_access: This file request is not accessible to this app. - Apps with the app folder permission can only access file requests in - their app folder. - :ivar no_permission: This user doesn't have permission to access or modify - this file request. - :ivar email_unverified: This user's email address is not verified. File - requests are only available on accounts with a verified email address. - Users can verify their email address `here - `_. - :ivar validation_error: There was an error validating the request. For - example, the title was invalid, or there were disallowed characters in - the destination path. + :ivar file_requests.FileRequestError.not_found: This file request ID was not + found. + :ivar file_requests.FileRequestError.not_a_folder: The specified path is not + a folder. + :ivar file_requests.FileRequestError.app_lacks_access: This file request is + not accessible to this app. Apps with the app folder permission can only + access file requests in their app folder. + :ivar file_requests.FileRequestError.no_permission: This user doesn't have + permission to access or modify this file request. + :ivar file_requests.FileRequestError.email_unverified: This user's email + address is not verified. File requests are only available on accounts + with a verified email address. Users can verify their email address + `here `_. + :ivar file_requests.FileRequestError.validation_error: There was an error + validating the request. For example, the title was invalid, or there + were disallowed characters in the destination path. """ # Attribute is overwritten below the class definition @@ -331,10 +335,11 @@ class CreateFileRequestError(FileRequestError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_location: File requests are not available on the specified - folder. - :ivar rate_limit: The user has reached the rate limit for creating file - requests. The limit is currently 100 file requests per day. + :ivar file_requests.CreateFileRequestError.invalid_location: File requests + are not available on the specified folder. + :ivar file_requests.CreateFileRequestError.rate_limit: The user has reached + the rate limit for creating file requests. The limit is currently 100 + file requests per day. """ # Attribute is overwritten below the class definition @@ -371,19 +376,21 @@ class FileRequest(bb.Struct): A `file request `_ for receiving files into the user's Dropbox account. - :ivar id: The ID of the file request. - :ivar url: The URL of the file request. - :ivar title: The title of the file request. - :ivar destination: The path of the folder in the Dropbox where uploaded - files will be sent. This can be None if the destination was removed. For - apps with the app folder permission, this will be relative to the app - folder. - :ivar created: When this file request was created. - :ivar deadline: The deadline for this file request. Only set if the request - has a deadline. - :ivar is_open: Whether or not the file request is open. If the file request - is closed, it will not accept any more file submissions. - :ivar file_count: The number of files this file request has received. + :ivar file_requests.FileRequest.id: The ID of the file request. + :ivar file_requests.FileRequest.url: The URL of the file request. + :ivar file_requests.FileRequest.title: The title of the file request. + :ivar file_requests.FileRequest.destination: The path of the folder in the + Dropbox where uploaded files will be sent. This can be None if the + destination was removed. For apps with the app folder permission, this + will be relative to the app folder. + :ivar file_requests.FileRequest.created: When this file request was created. + :ivar file_requests.FileRequest.deadline: The deadline for this file + request. Only set if the request has a deadline. + :ivar file_requests.FileRequest.is_open: Whether or not the file request is + open. If the file request is closed, it will not accept any more file + submissions. + :ivar file_requests.FileRequest.file_count: The number of files this file + request has received. """ __slots__ = [ @@ -575,7 +582,7 @@ def deadline(self): The deadline for this file request. Only set if the request has a deadline. - :rtype: FileRequestDeadline + :rtype: file_requests.FileRequestDeadline """ if self._deadline_present: return self._deadline_value @@ -662,9 +669,11 @@ def __repr__(self): class FileRequestDeadline(bb.Struct): """ - :ivar deadline: The deadline for this file request. - :ivar allow_late_uploads: If set, allow uploads after the deadline has - passed. These uploads will be marked overdue. + :ivar file_requests.FileRequestDeadline.deadline: The deadline for this file + request. + :ivar file_requests.FileRequestDeadline.allow_late_uploads: If set, allow + uploads after the deadline has passed. These uploads will be marked + overdue. """ __slots__ = [ @@ -717,7 +726,7 @@ def allow_late_uploads(self): If set, allow uploads after the deadline has passed. These uploads will be marked overdue. - :rtype: GracePeriod + :rtype: file_requests.GracePeriod """ if self._allow_late_uploads_present: return self._allow_late_uploads_value @@ -753,7 +762,8 @@ class GetFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox.Dropbox.file_requests_get`. - :ivar id: The ID of the file request to retrieve. + :ivar file_requests.GetFileRequestArgs.id: The ID of the file request to + retrieve. """ __slots__ = [ @@ -918,8 +928,9 @@ class ListFileRequestsResult(bb.Struct): """ Result for :meth:`dropbox.dropbox.Dropbox.file_requests_list`. - :ivar file_requests: The file requests owned by this user. Apps with the app - folder permission will only see file requests in their app folder. + :ivar file_requests.ListFileRequestsResult.file_requests: The file requests + owned by this user. Apps with the app folder permission will only see + file requests in their app folder. """ __slots__ = [ @@ -942,7 +953,7 @@ def file_requests(self): The file requests owned by this user. Apps with the app folder permission will only see file requests in their app folder. - :rtype: list of [FileRequest] + :rtype: list of [file_requests.FileRequest] """ if self._file_requests_present: return self._file_requests_value @@ -974,14 +985,18 @@ class UpdateFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox.Dropbox.file_requests_update`. - :ivar id: The ID of the file request to update. - :ivar title: The new title of the file request. Must not be empty. - :ivar destination: The new path of the folder in the Dropbox where uploaded - files will be sent. For apps with the app folder permission, this will - be relative to the app folder. - :ivar deadline: The new deadline for the file request. Deadlines can only be - set by Professional and Business accounts. - :ivar open: Whether to set this file request as open or closed. + :ivar file_requests.UpdateFileRequestArgs.id: The ID of the file request to + update. + :ivar file_requests.UpdateFileRequestArgs.title: The new title of the file + request. Must not be empty. + :ivar file_requests.UpdateFileRequestArgs.destination: The new path of the + folder in the Dropbox where uploaded files will be sent. For apps with + the app folder permission, this will be relative to the app folder. + :ivar file_requests.UpdateFileRequestArgs.deadline: The new deadline for the + file request. Deadlines can only be set by Professional and Business + accounts. + :ivar file_requests.UpdateFileRequestArgs.open: Whether to set this file + request as open or closed. """ __slots__ = [ @@ -1109,7 +1124,7 @@ def deadline(self): The new deadline for the file request. Deadlines can only be set by Professional and Business accounts. - :rtype: UpdateFileRequestDeadline + :rtype: file_requests.UpdateFileRequestDeadline """ if self._deadline_present: return self._deadline_value @@ -1173,8 +1188,10 @@ class UpdateFileRequestDeadline(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar no_update: Do not change the file request's deadline. - :ivar Optional[FileRequestDeadline] update: If :val:`null`, the file + :ivar file_requests.UpdateFileRequestDeadline.no_update: Do not change the + file request's deadline. + :ivar Optional[file_requests.FileRequestDeadline] + file_requests.UpdateFileRequestDeadline.update: If :val:`null`, the file request's deadline is cleared. """ @@ -1190,8 +1207,8 @@ def update(cls, val): Create an instance of this class set to the ``update`` tag with value ``val``. - :param FileRequestDeadline val: - :rtype: UpdateFileRequestDeadline + :param file_requests.FileRequestDeadline val: + :rtype: file_requests.UpdateFileRequestDeadline """ return cls('update', val) @@ -1225,7 +1242,7 @@ def get_update(self): Only call this if :meth:`is_update` is true. - :rtype: FileRequestDeadline + :rtype: file_requests.FileRequestDeadline """ if not self.is_update(): raise AttributeError("tag 'update' not set") diff --git a/dropbox/files.py b/dropbox/files.py index 496dff06..d6d5e3dc 100644 --- a/dropbox/files.py +++ b/dropbox/files.py @@ -31,18 +31,18 @@ class GetMetadataArg(bb.Struct): """ - :ivar path: The path of a file or folder on Dropbox. - :ivar include_media_info: If true, ``FileMetadata.media_info`` is set for - photo and video. - :ivar include_deleted: If true, :class:`DeletedMetadata` will be returned - for deleted file or folder, otherwise ``LookupError.not_found`` will be - returned. - :ivar include_has_explicit_shared_members: If true, the results will include - a flag for each file indicating whether or not that file has any - explicit members. - :ivar include_property_groups: If set to a valid list of template IDs, - ``FileMetadata.property_groups`` is set if there exists property data - associated with the file and each of the listed templates. + :ivar files.GetMetadataArg.path: The path of a file or folder on Dropbox. + :ivar files.GetMetadataArg.include_media_info: If true, + ``FileMetadata.media_info`` is set for photo and video. + :ivar files.GetMetadataArg.include_deleted: If true, + :class:`DeletedMetadata` will be returned for deleted file or folder, + otherwise ``LookupError.not_found`` will be returned. + :ivar files.GetMetadataArg.include_has_explicit_shared_members: If true, the + results will include a flag for each file indicating whether or not + that file has any explicit members. + :ivar files.GetMetadataArg.include_property_groups: If set to a valid list + of template IDs, ``FileMetadata.property_groups`` is set if there exists + property data associated with the file and each of the listed templates. """ __slots__ = [ @@ -225,9 +225,9 @@ def __repr__(self): class AlphaGetMetadataArg(GetMetadataArg): """ - :ivar include_property_templates: If set to a valid list of template IDs, - ``FileMetadata.property_groups`` is set for files with custom - properties. + :ivar files.AlphaGetMetadataArg.include_property_templates: If set to a + valid list of template IDs, ``FileMetadata.property_groups`` is set for + files with custom properties. """ __slots__ = [ @@ -311,8 +311,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: GetMetadataError + :param files.LookupError val: + :rtype: files.GetMetadataError """ return cls('path', val) @@ -328,7 +328,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -356,7 +356,7 @@ def properties_error(cls, val): with value ``val``. :param file_properties.LookUpPropertiesError val: - :rtype: AlphaGetMetadataError + :rtype: files.AlphaGetMetadataError """ return cls('properties_error', val) @@ -388,24 +388,27 @@ def __repr__(self): class CommitInfo(bb.Struct): """ - :ivar path: Path in the user's Dropbox to save the file. - :ivar mode: Selects what to do if the file already exists. - :ivar autorename: If there's a conflict, as determined by ``mode``, have the - Dropbox server try to autorename the file to avoid conflict. - :ivar client_modified: The value to store as the ``client_modified`` - timestamp. Dropbox automatically records the time at which the file was - written to the Dropbox servers. It can also record an additional - timestamp, provided by Dropbox desktop clients, mobile clients, and API - apps of when the file was actually created or modified. - :ivar mute: Normally, users are made aware of any file modifications in - their Dropbox account via notifications in the client software. If - ``True``, this tells the clients that this modification shouldn't result - in a user notification. - :ivar property_groups: List of custom properties to add to file. - :ivar strict_conflict: Be more strict about how each :class:`WriteMode` - detects conflict. For example, always return a conflict error when - ``mode`` = ``WriteMode.update`` and the given "rev" doesn't match the - existing file's "rev", even if the existing file has been deleted. + :ivar files.CommitInfo.path: Path in the user's Dropbox to save the file. + :ivar files.CommitInfo.mode: Selects what to do if the file already exists. + :ivar files.CommitInfo.autorename: If there's a conflict, as determined by + ``mode``, have the Dropbox server try to autorename the file to avoid + conflict. + :ivar files.CommitInfo.client_modified: The value to store as the + ``client_modified`` timestamp. Dropbox automatically records the time at + which the file was written to the Dropbox servers. It can also record an + additional timestamp, provided by Dropbox desktop clients, mobile + clients, and API apps of when the file was actually created or modified. + :ivar files.CommitInfo.mute: Normally, users are made aware of any file + modifications in their Dropbox account via notifications in the client + software. If ``True``, this tells the clients that this modification + shouldn't result in a user notification. + :ivar files.CommitInfo.property_groups: List of custom properties to add to + file. + :ivar files.CommitInfo.strict_conflict: Be more strict about how each + :class:`WriteMode` detects conflict. For example, always return a + conflict error when ``mode`` = ``WriteMode.update`` and the given "rev" + doesn't match the existing file's "rev", even if the existing file has + been deleted. """ __slots__ = [ @@ -492,7 +495,7 @@ def mode(self): """ Selects what to do if the file already exists. - :rtype: WriteMode + :rtype: files.WriteMode """ if self._mode_present: return self._mode_value @@ -699,8 +702,9 @@ def __repr__(self): class ContentSyncSetting(bb.Struct): """ - :ivar id: Id of the item this setting is applied to. - :ivar sync_setting: Setting for this item. + :ivar files.ContentSyncSetting.id: Id of the item this setting is applied + to. + :ivar files.ContentSyncSetting.sync_setting: Setting for this item. """ __slots__ = [ @@ -752,7 +756,7 @@ def sync_setting(self): """ Setting for this item. - :rtype: SyncSetting + :rtype: files.SyncSetting """ if self._sync_setting_present: return self._sync_setting_value @@ -783,8 +787,9 @@ def __repr__(self): class ContentSyncSettingArg(bb.Struct): """ - :ivar id: Id of the item this setting is applied to. - :ivar sync_setting: Setting for this item. + :ivar files.ContentSyncSettingArg.id: Id of the item this setting is applied + to. + :ivar files.ContentSyncSettingArg.sync_setting: Setting for this item. """ __slots__ = [ @@ -836,7 +841,7 @@ def sync_setting(self): """ Setting for this item. - :rtype: SyncSettingArg + :rtype: files.SyncSettingArg """ if self._sync_setting_present: return self._sync_setting_value @@ -867,9 +872,9 @@ def __repr__(self): class CreateFolderArg(bb.Struct): """ - :ivar path: Path in the user's Dropbox to create. - :ivar autorename: If there's a conflict, have the Dropbox server try to - autorename the folder to avoid the conflict. + :ivar files.CreateFolderArg.path: Path in the user's Dropbox to create. + :ivar files.CreateFolderArg.autorename: If there's a conflict, have the + Dropbox server try to autorename the folder to avoid the conflict. """ __slots__ = [ @@ -953,11 +958,13 @@ def __repr__(self): class CreateFolderBatchArg(bb.Struct): """ - :ivar paths: List of paths to be created in the user's Dropbox. Duplicate - path arguments in the batch are considered only once. - :ivar autorename: If there's a conflict, have the Dropbox server try to - autorename the folder to avoid the conflict. - :ivar force_async: Whether to force the create to happen asynchronously. + :ivar files.CreateFolderBatchArg.paths: List of paths to be created in the + user's Dropbox. Duplicate path arguments in the batch are considered + only once. + :ivar files.CreateFolderBatchArg.autorename: If there's a conflict, have the + Dropbox server try to autorename the folder to avoid the conflict. + :ivar files.CreateFolderBatchArg.force_async: Whether to force the create to + happen asynchronously. """ __slots__ = [ @@ -1077,7 +1084,8 @@ class CreateFolderBatchError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar too_many_files: The operation would involve too many files or folders. + :ivar files.CreateFolderBatchError.too_many_files: The operation would + involve too many files or folders. """ _catch_all = 'other' @@ -1116,9 +1124,10 @@ class CreateFolderBatchJobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar CreateFolderBatchResult complete: The batch create folder has - finished. - :ivar CreateFolderBatchError failed: The batch create folder has failed. + :ivar CreateFolderBatchResult files.CreateFolderBatchJobStatus.complete: The + batch create folder has finished. + :ivar CreateFolderBatchError files.CreateFolderBatchJobStatus.failed: The + batch create folder has failed. """ _catch_all = 'other' @@ -1131,8 +1140,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param CreateFolderBatchResult val: - :rtype: CreateFolderBatchJobStatus + :param files.CreateFolderBatchResult val: + :rtype: files.CreateFolderBatchJobStatus """ return cls('complete', val) @@ -1142,8 +1151,8 @@ def failed(cls, val): Create an instance of this class set to the ``failed`` tag with value ``val``. - :param CreateFolderBatchError val: - :rtype: CreateFolderBatchJobStatus + :param files.CreateFolderBatchError val: + :rtype: files.CreateFolderBatchJobStatus """ return cls('failed', val) @@ -1177,7 +1186,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: CreateFolderBatchResult + :rtype: files.CreateFolderBatchResult """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -1189,7 +1198,7 @@ def get_failed(self): Only call this if :meth:`is_failed` is true. - :rtype: CreateFolderBatchError + :rtype: files.CreateFolderBatchError """ if not self.is_failed(): raise AttributeError("tag 'failed' not set") @@ -1223,8 +1232,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param CreateFolderBatchResult val: - :rtype: CreateFolderBatchLaunch + :param files.CreateFolderBatchResult val: + :rtype: files.CreateFolderBatchLaunch """ return cls('complete', val) @@ -1248,7 +1257,7 @@ def get_complete(self): """ Only call this if :meth:`is_complete` is true. - :rtype: CreateFolderBatchResult + :rtype: files.CreateFolderBatchResult """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -1282,8 +1291,9 @@ def __repr__(self): class CreateFolderBatchResult(FileOpsResult): """ - :ivar entries: Each entry in ``CreateFolderBatchArg.paths`` will appear at - the same position inside ``CreateFolderBatchResult.entries``. + :ivar files.CreateFolderBatchResult.entries: Each entry in + ``CreateFolderBatchArg.paths`` will appear at the same position inside + ``CreateFolderBatchResult.entries``. """ __slots__ = [ @@ -1307,7 +1317,7 @@ def entries(self): Each entry in ``CreateFolderBatchArg.paths`` will appear at the same position inside ``CreateFolderBatchResult.entries``. - :rtype: list of [CreateFolderBatchResultEntry] + :rtype: list of [files.CreateFolderBatchResultEntry] """ if self._entries_present: return self._entries_value @@ -1350,8 +1360,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param CreateFolderEntryResult val: - :rtype: CreateFolderBatchResultEntry + :param files.CreateFolderEntryResult val: + :rtype: files.CreateFolderBatchResultEntry """ return cls('success', val) @@ -1361,8 +1371,8 @@ def failure(cls, val): Create an instance of this class set to the ``failure`` tag with value ``val``. - :param CreateFolderEntryError val: - :rtype: CreateFolderBatchResultEntry + :param files.CreateFolderEntryError val: + :rtype: files.CreateFolderBatchResultEntry """ return cls('failure', val) @@ -1386,7 +1396,7 @@ def get_success(self): """ Only call this if :meth:`is_success` is true. - :rtype: CreateFolderEntryResult + :rtype: files.CreateFolderEntryResult """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -1396,7 +1406,7 @@ def get_failure(self): """ Only call this if :meth:`is_failure` is true. - :rtype: CreateFolderEntryError + :rtype: files.CreateFolderEntryError """ if not self.is_failure(): raise AttributeError("tag 'failure' not set") @@ -1427,8 +1437,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param WriteError val: - :rtype: CreateFolderEntryError + :param files.WriteError val: + :rtype: files.CreateFolderEntryError """ return cls('path', val) @@ -1452,7 +1462,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: WriteError + :rtype: files.WriteError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -1468,7 +1478,8 @@ def __repr__(self): class CreateFolderEntryResult(bb.Struct): """ - :ivar metadata: Metadata of the created folder. + :ivar files.CreateFolderEntryResult.metadata: Metadata of the created + folder. """ __slots__ = [ @@ -1490,7 +1501,7 @@ def metadata(self): """ Metadata of the created folder. - :rtype: FolderMetadata + :rtype: files.FolderMetadata """ if self._metadata_present: return self._metadata_value @@ -1533,8 +1544,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param WriteError val: - :rtype: CreateFolderError + :param files.WriteError val: + :rtype: files.CreateFolderError """ return cls('path', val) @@ -1550,7 +1561,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: WriteError + :rtype: files.WriteError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -1566,7 +1577,7 @@ def __repr__(self): class CreateFolderResult(FileOpsResult): """ - :ivar metadata: Metadata of the created folder. + :ivar files.CreateFolderResult.metadata: Metadata of the created folder. """ __slots__ = [ @@ -1589,7 +1600,7 @@ def metadata(self): """ Metadata of the created folder. - :rtype: FolderMetadata + :rtype: files.FolderMetadata """ if self._metadata_present: return self._metadata_value @@ -1619,9 +1630,10 @@ def __repr__(self): class DeleteArg(bb.Struct): """ - :ivar path: Path in the user's Dropbox to delete. - :ivar parent_rev: Perform delete if given "rev" matches the existing file's - latest "rev". This field does not support deleting a folder. + :ivar files.DeleteArg.path: Path in the user's Dropbox to delete. + :ivar files.DeleteArg.parent_rev: Perform delete if given "rev" matches the + existing file's latest "rev". This field does not support deleting a + folder. """ __slots__ = [ @@ -1725,7 +1737,7 @@ def __init__(self, @property def entries(self): """ - :rtype: list of [DeleteArg] + :rtype: list of [files.DeleteArg] """ if self._entries_present: return self._entries_value @@ -1759,7 +1771,7 @@ class DeleteBatchError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar too_many_write_operations: Use + :ivar files.DeleteBatchError.too_many_write_operations: Use ``DeleteError.too_many_write_operations``. :meth:`dropbox.dropbox.Dropbox.files_delete_batch` now provides smaller granularity about which entry has failed because of this. @@ -1801,8 +1813,10 @@ class DeleteBatchJobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar DeleteBatchResult complete: The batch delete has finished. - :ivar DeleteBatchError failed: The batch delete has failed. + :ivar DeleteBatchResult files.DeleteBatchJobStatus.complete: The batch + delete has finished. + :ivar DeleteBatchError files.DeleteBatchJobStatus.failed: The batch delete + has failed. """ _catch_all = 'other' @@ -1815,8 +1829,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param DeleteBatchResult val: - :rtype: DeleteBatchJobStatus + :param files.DeleteBatchResult val: + :rtype: files.DeleteBatchJobStatus """ return cls('complete', val) @@ -1826,8 +1840,8 @@ def failed(cls, val): Create an instance of this class set to the ``failed`` tag with value ``val``. - :param DeleteBatchError val: - :rtype: DeleteBatchJobStatus + :param files.DeleteBatchError val: + :rtype: files.DeleteBatchJobStatus """ return cls('failed', val) @@ -1861,7 +1875,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: DeleteBatchResult + :rtype: files.DeleteBatchResult """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -1873,7 +1887,7 @@ def get_failed(self): Only call this if :meth:`is_failed` is true. - :rtype: DeleteBatchError + :rtype: files.DeleteBatchError """ if not self.is_failed(): raise AttributeError("tag 'failed' not set") @@ -1907,8 +1921,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param DeleteBatchResult val: - :rtype: DeleteBatchLaunch + :param files.DeleteBatchResult val: + :rtype: files.DeleteBatchLaunch """ return cls('complete', val) @@ -1932,7 +1946,7 @@ def get_complete(self): """ Only call this if :meth:`is_complete` is true. - :rtype: DeleteBatchResult + :rtype: files.DeleteBatchResult """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -1948,8 +1962,9 @@ def __repr__(self): class DeleteBatchResult(FileOpsResult): """ - :ivar entries: Each entry in ``DeleteBatchArg.entries`` will appear at the - same position inside ``DeleteBatchResult.entries``. + :ivar files.DeleteBatchResult.entries: Each entry in + ``DeleteBatchArg.entries`` will appear at the same position inside + ``DeleteBatchResult.entries``. """ __slots__ = [ @@ -1973,7 +1988,7 @@ def entries(self): Each entry in ``DeleteBatchArg.entries`` will appear at the same position inside ``DeleteBatchResult.entries``. - :rtype: list of [DeleteBatchResultEntry] + :rtype: list of [files.DeleteBatchResultEntry] """ if self._entries_present: return self._entries_value @@ -2003,7 +2018,7 @@ def __repr__(self): class DeleteBatchResultData(bb.Struct): """ - :ivar metadata: Metadata of the deleted object. + :ivar files.DeleteBatchResultData.metadata: Metadata of the deleted object. """ __slots__ = [ @@ -2025,7 +2040,7 @@ def metadata(self): """ Metadata of the deleted object. - :rtype: Metadata + :rtype: files.Metadata """ if self._metadata_present: return self._metadata_value @@ -2068,8 +2083,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param DeleteBatchResultData val: - :rtype: DeleteBatchResultEntry + :param files.DeleteBatchResultData val: + :rtype: files.DeleteBatchResultEntry """ return cls('success', val) @@ -2079,8 +2094,8 @@ def failure(cls, val): Create an instance of this class set to the ``failure`` tag with value ``val``. - :param DeleteError val: - :rtype: DeleteBatchResultEntry + :param files.DeleteError val: + :rtype: files.DeleteBatchResultEntry """ return cls('failure', val) @@ -2104,7 +2119,7 @@ def get_success(self): """ Only call this if :meth:`is_success` is true. - :rtype: DeleteBatchResultData + :rtype: files.DeleteBatchResultData """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -2114,7 +2129,7 @@ def get_failure(self): """ Only call this if :meth:`is_failure` is true. - :rtype: DeleteError + :rtype: files.DeleteError """ if not self.is_failure(): raise AttributeError("tag 'failure' not set") @@ -2134,10 +2149,10 @@ class DeleteError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar too_many_write_operations: There are too many write operations in - user's Dropbox. Please retry this request. - :ivar too_many_files: There are too many files in one request. Please retry - with fewer files. + :ivar files.DeleteError.too_many_write_operations: There are too many write + operations in user's Dropbox. Please retry this request. + :ivar files.DeleteError.too_many_files: There are too many files in one + request. Please retry with fewer files. """ _catch_all = 'other' @@ -2154,8 +2169,8 @@ def path_lookup(cls, val): Create an instance of this class set to the ``path_lookup`` tag with value ``val``. - :param LookupError val: - :rtype: DeleteError + :param files.LookupError val: + :rtype: files.DeleteError """ return cls('path_lookup', val) @@ -2165,8 +2180,8 @@ def path_write(cls, val): Create an instance of this class set to the ``path_write`` tag with value ``val``. - :param WriteError val: - :rtype: DeleteError + :param files.WriteError val: + :rtype: files.DeleteError """ return cls('path_write', val) @@ -2214,7 +2229,7 @@ def get_path_lookup(self): """ Only call this if :meth:`is_path_lookup` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path_lookup(): raise AttributeError("tag 'path_lookup' not set") @@ -2224,7 +2239,7 @@ def get_path_write(self): """ Only call this if :meth:`is_path_write` is true. - :rtype: WriteError + :rtype: files.WriteError """ if not self.is_path_write(): raise AttributeError("tag 'path_write' not set") @@ -2240,7 +2255,7 @@ def __repr__(self): class DeleteResult(FileOpsResult): """ - :ivar metadata: Metadata of the deleted object. + :ivar files.DeleteResult.metadata: Metadata of the deleted object. """ __slots__ = [ @@ -2263,7 +2278,7 @@ def metadata(self): """ Metadata of the deleted object. - :rtype: Metadata + :rtype: files.Metadata """ if self._metadata_present: return self._metadata_value @@ -2295,19 +2310,19 @@ class Metadata(bb.Struct): """ Metadata for a file or folder. - :ivar name: The last component of the path (including extension). This never - contains a slash. - :ivar path_lower: The lowercased full path in the user's Dropbox. This - always starts with a slash. This field will be null if the file or - folder is not mounted. - :ivar path_display: The cased path to be used for display purposes only. In - rare instances the casing will not correctly match the user's - filesystem, but this behavior will match the path provided in the Core - API v1, and at least the last path component will have the correct + :ivar files.Metadata.name: The last component of the path (including + extension). This never contains a slash. + :ivar files.Metadata.path_lower: The lowercased full path in the user's + Dropbox. This always starts with a slash. This field will be null if the + file or folder is not mounted. + :ivar files.Metadata.path_display: The cased path to be used for display + purposes only. In rare instances the casing will not correctly match the + user's filesystem, but this behavior will match the path provided in the + Core API v1, and at least the last path component will have the correct casing. Changes to only the casing of paths won't be returned by :meth:`dropbox.dropbox.Dropbox.files_list_folder_continue`. This field will be null if the file or folder is not mounted. - :ivar parent_shared_folder_id: Please use + :ivar files.Metadata.parent_shared_folder_id: Please use ``FileSharingInfo.parent_shared_folder_id`` or ``FolderSharingInfo.parent_shared_folder_id`` instead. """ @@ -2508,8 +2523,8 @@ class Dimensions(bb.Struct): """ Dimensions for a photo or video. - :ivar height: Height of the photo/video. - :ivar width: Width of the photo/video. + :ivar files.Dimensions.height: Height of the photo/video. + :ivar files.Dimensions.width: Width of the photo/video. """ __slots__ = [ @@ -2592,8 +2607,8 @@ def __repr__(self): class DownloadArg(bb.Struct): """ - :ivar path: The path of the file to download. - :ivar rev: Please specify revision in ``path`` instead. + :ivar files.DownloadArg.path: The path of the file to download. + :ivar files.DownloadArg.rev: Please specify revision in ``path`` instead. """ __slots__ = [ @@ -2694,8 +2709,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: DownloadError + :param files.LookupError val: + :rtype: files.DownloadError """ return cls('path', val) @@ -2719,7 +2734,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -2735,7 +2750,7 @@ def __repr__(self): class DownloadZipArg(bb.Struct): """ - :ivar path: The path of the folder to download. + :ivar files.DownloadZipArg.path: The path of the folder to download. """ __slots__ = [ @@ -2791,8 +2806,10 @@ class DownloadZipError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar too_large: The folder or a file is too large to download. - :ivar too_many_files: The folder has too many files to download. + :ivar files.DownloadZipError.too_large: The folder or a file is too large to + download. + :ivar files.DownloadZipError.too_many_files: The folder has too many files + to download. """ _catch_all = 'other' @@ -2809,8 +2826,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: DownloadZipError + :param files.LookupError val: + :rtype: files.DownloadZipError """ return cls('path', val) @@ -2850,7 +2867,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -2883,7 +2900,7 @@ def __init__(self, @property def metadata(self): """ - :rtype: FolderMetadata + :rtype: files.FolderMetadata """ if self._metadata_present: return self._metadata_value @@ -2913,33 +2930,37 @@ def __repr__(self): class FileMetadata(Metadata): """ - :ivar id: A unique identifier for the file. - :ivar client_modified: For files, this is the modification time set by the - desktop client when the file was added to Dropbox. Since this time is - not verified (the Dropbox server stores whatever the desktop client - sends up), this should only be used for display purposes (such as - sorting) and not, for example, to determine if a file has changed or - not. - :ivar server_modified: The last time the file was modified on Dropbox. - :ivar rev: A unique identifier for the current revision of a file. This - field is the same rev as elsewhere in the API and can be used to detect - changes and avoid conflicts. - :ivar size: The file size in bytes. - :ivar media_info: Additional information if the file is a photo or video. - :ivar symlink_info: Set if this file is a symlink. - :ivar sharing_info: Set if this file is contained in a shared folder. - :ivar property_groups: Additional information if the file has custom - properties with the property template specified. - :ivar has_explicit_shared_members: This flag will only be present if - include_has_explicit_shared_members is true in + :ivar files.FileMetadata.id: A unique identifier for the file. + :ivar files.FileMetadata.client_modified: For files, this is the + modification time set by the desktop client when the file was added to + Dropbox. Since this time is not verified (the Dropbox server stores + whatever the desktop client sends up), this should only be used for + display purposes (such as sorting) and not, for example, to determine if + a file has changed or not. + :ivar files.FileMetadata.server_modified: The last time the file was + modified on Dropbox. + :ivar files.FileMetadata.rev: A unique identifier for the current revision + of a file. This field is the same rev as elsewhere in the API and can be + used to detect changes and avoid conflicts. + :ivar files.FileMetadata.size: The file size in bytes. + :ivar files.FileMetadata.media_info: Additional information if the file is a + photo or video. + :ivar files.FileMetadata.symlink_info: Set if this file is a symlink. + :ivar files.FileMetadata.sharing_info: Set if this file is contained in a + shared folder. + :ivar files.FileMetadata.property_groups: Additional information if the file + has custom properties with the property template specified. + :ivar files.FileMetadata.has_explicit_shared_members: This flag will only be + present if include_has_explicit_shared_members is true in :meth:`dropbox.dropbox.Dropbox.files_list_folder` or :meth:`dropbox.dropbox.Dropbox.files_get_metadata`. If this flag is present, it will be true if this file has any explicit shared members. This is different from sharing_info in that this could be true in the case where a file has explicit members but is not contained within a shared folder. - :ivar content_hash: A hash of the file content. This field can be used to - verify data integrity. For more information see our `Content hash + :ivar files.FileMetadata.content_hash: A hash of the file content. This + field can be used to verify data integrity. For more information see our + `Content hash `_ page. """ @@ -3161,7 +3182,7 @@ def media_info(self): """ Additional information if the file is a photo or video. - :rtype: MediaInfo + :rtype: files.MediaInfo """ if self._media_info_present: return self._media_info_value @@ -3187,7 +3208,7 @@ def symlink_info(self): """ Set if this file is a symlink. - :rtype: SymlinkInfo + :rtype: files.SymlinkInfo """ if self._symlink_info_present: return self._symlink_info_value @@ -3213,7 +3234,7 @@ def sharing_info(self): """ Set if this file is contained in a shared folder. - :rtype: FileSharingInfo + :rtype: files.FileSharingInfo """ if self._sharing_info_present: return self._sharing_info_value @@ -3349,8 +3370,8 @@ class SharingInfo(bb.Struct): """ Sharing info for a file or folder. - :ivar read_only: True if the file or folder is inside a read-only shared - folder. + :ivar files.SharingInfo.read_only: True if the file or folder is inside a + read-only shared folder. """ __slots__ = [ @@ -3404,9 +3425,10 @@ class FileSharingInfo(SharingInfo): """ Sharing info for a file which is contained by a shared folder. - :ivar parent_shared_folder_id: ID of shared folder that holds this file. - :ivar modified_by: The last user who modified the file. This field will be - null if the user's account has been deleted. + :ivar files.FileSharingInfo.parent_shared_folder_id: ID of shared folder + that holds this file. + :ivar files.FileSharingInfo.modified_by: The last user who modified the + file. This field will be null if the user's account has been deleted. """ __slots__ = [ @@ -3496,14 +3518,15 @@ def __repr__(self): class FolderMetadata(Metadata): """ - :ivar id: A unique identifier for the folder. - :ivar shared_folder_id: Please use ``sharing_info`` instead. - :ivar sharing_info: Set if the folder is contained in a shared folder or is - a shared folder mount point. - :ivar property_groups: Additional information if the file has custom - properties with the property template specified. Note that only - properties associated with user-owned templates, not team-owned - templates, can be attached to folders. + :ivar files.FolderMetadata.id: A unique identifier for the folder. + :ivar files.FolderMetadata.shared_folder_id: Please use ``sharing_info`` + instead. + :ivar files.FolderMetadata.sharing_info: Set if the folder is contained in a + shared folder or is a shared folder mount point. + :ivar files.FolderMetadata.property_groups: Additional information if the + file has custom properties with the property template specified. Note + that only properties associated with user-owned templates, not + team-owned templates, can be attached to folders. """ __slots__ = [ @@ -3604,7 +3627,7 @@ def sharing_info(self): Set if the folder is contained in a shared folder or is a shared folder mount point. - :rtype: FolderSharingInfo + :rtype: files.FolderSharingInfo """ if self._sharing_info_present: return self._sharing_info_value @@ -3676,15 +3699,17 @@ class FolderSharingInfo(SharingInfo): Sharing info for a folder which is contained in a shared folder or is a shared folder mount point. - :ivar parent_shared_folder_id: Set if the folder is contained by a shared - folder. - :ivar shared_folder_id: If this folder is a shared folder mount point, the - ID of the shared folder mounted at this location. - :ivar traverse_only: Specifies that the folder can only be traversed and the - user can only see a limited subset of the contents of this folder - because they don't have read access to this folder. They do, however, - have access to some sub folder. - :ivar no_access: Specifies that the folder cannot be accessed by the user. + :ivar files.FolderSharingInfo.parent_shared_folder_id: Set if the folder is + contained by a shared folder. + :ivar files.FolderSharingInfo.shared_folder_id: If this folder is a shared + folder mount point, the ID of the shared folder mounted at this + location. + :ivar files.FolderSharingInfo.traverse_only: Specifies that the folder can + only be traversed and the user can only see a limited subset of the + contents of this folder because they don't have read access to this + folder. They do, however, have access to some sub folder. + :ivar files.FolderSharingInfo.no_access: Specifies that the folder cannot be + accessed by the user. """ __slots__ = [ @@ -3842,8 +3867,8 @@ def __repr__(self): class GetCopyReferenceArg(bb.Struct): """ - :ivar path: The path to the file or folder you want to get a copy reference - to. + :ivar files.GetCopyReferenceArg.path: The path to the file or folder you + want to get a copy reference to. """ __slots__ = [ @@ -3910,8 +3935,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: GetCopyReferenceError + :param files.LookupError val: + :rtype: files.GetCopyReferenceError """ return cls('path', val) @@ -3935,7 +3960,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -3951,11 +3976,12 @@ def __repr__(self): class GetCopyReferenceResult(bb.Struct): """ - :ivar metadata: Metadata of the file or folder. - :ivar copy_reference: A copy reference to the file or folder. - :ivar expires: The expiration date of the copy reference. This value is - currently set to be far enough in the future so that expiration is - effectively not an issue. + :ivar files.GetCopyReferenceResult.metadata: Metadata of the file or folder. + :ivar files.GetCopyReferenceResult.copy_reference: A copy reference to the + file or folder. + :ivar files.GetCopyReferenceResult.expires: The expiration date of the copy + reference. This value is currently set to be far enough in the future so + that expiration is effectively not an issue. """ __slots__ = [ @@ -3991,7 +4017,7 @@ def metadata(self): """ Metadata of the file or folder. - :rtype: Metadata + :rtype: files.Metadata """ if self._metadata_present: return self._metadata_value @@ -4071,7 +4097,8 @@ def __repr__(self): class GetTemporaryLinkArg(bb.Struct): """ - :ivar path: The path to the file you want a temporary link to. + :ivar files.GetTemporaryLinkArg.path: The path to the file you want a + temporary link to. """ __slots__ = [ @@ -4138,8 +4165,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: GetTemporaryLinkError + :param files.LookupError val: + :rtype: files.GetTemporaryLinkError """ return cls('path', val) @@ -4163,7 +4190,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -4179,8 +4206,9 @@ def __repr__(self): class GetTemporaryLinkResult(bb.Struct): """ - :ivar metadata: Metadata of the file. - :ivar link: The temporary link which can be used to stream content the file. + :ivar files.GetTemporaryLinkResult.metadata: Metadata of the file. + :ivar files.GetTemporaryLinkResult.link: The temporary link which can be + used to stream content the file. """ __slots__ = [ @@ -4209,7 +4237,7 @@ def metadata(self): """ Metadata of the file. - :rtype: FileMetadata + :rtype: files.FileMetadata """ if self._metadata_present: return self._metadata_value @@ -4263,12 +4291,13 @@ def __repr__(self): class GetTemporaryUploadLinkArg(bb.Struct): """ - :ivar commit_info: Contains the path and other optional modifiers for the - future upload commit. Equivalent to the parameters provided to - :meth:`dropbox.dropbox.Dropbox.files_upload`. - :ivar duration: How long before this link expires, in seconds. Attempting - to start an upload with this link longer than this period of time after - link creation will result in an error. + :ivar files.GetTemporaryUploadLinkArg.commit_info: Contains the path and + other optional modifiers for the future upload commit. Equivalent to the + parameters provided to :meth:`dropbox.dropbox.Dropbox.files_upload`. + :ivar files.GetTemporaryUploadLinkArg.duration: How long before this link + expires, in seconds. Attempting to start an upload with this link + longer than this period of time after link creation will result in an + error. """ __slots__ = [ @@ -4299,7 +4328,7 @@ def commit_info(self): commit. Equivalent to the parameters provided to :meth:`dropbox.dropbox.Dropbox.files_upload`. - :rtype: CommitInfo + :rtype: files.CommitInfo """ if self._commit_info_present: return self._commit_info_value @@ -4355,8 +4384,8 @@ def __repr__(self): class GetTemporaryUploadLinkResult(bb.Struct): """ - :ivar link: The temporary link which can be used to stream a file to a - Dropbox location. + :ivar files.GetTemporaryUploadLinkResult.link: The temporary link which can + be used to stream a file to a Dropbox location. """ __slots__ = [ @@ -4411,7 +4440,7 @@ class GetThumbnailBatchArg(bb.Struct): """ Arguments for :meth:`dropbox.dropbox.Dropbox.files_get_thumbnail_batch`. - :ivar entries: List of files to get thumbnails. + :ivar files.GetThumbnailBatchArg.entries: List of files to get thumbnails. """ __slots__ = [ @@ -4433,7 +4462,7 @@ def entries(self): """ List of files to get thumbnails. - :rtype: list of [ThumbnailArg] + :rtype: list of [files.ThumbnailArg] """ if self._entries_present: return self._entries_value @@ -4467,7 +4496,8 @@ class GetThumbnailBatchError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar too_many_files: The operation involves more than 25 files. + :ivar files.GetThumbnailBatchError.too_many_files: The operation involves + more than 25 files. """ _catch_all = 'other' @@ -4502,7 +4532,8 @@ def __repr__(self): class GetThumbnailBatchResult(bb.Struct): """ - :ivar entries: List of files and their thumbnails. + :ivar files.GetThumbnailBatchResult.entries: List of files and their + thumbnails. """ __slots__ = [ @@ -4524,7 +4555,7 @@ def entries(self): """ List of files and their thumbnails. - :rtype: list of [GetThumbnailBatchResultEntry] + :rtype: list of [files.GetThumbnailBatchResultEntry] """ if self._entries_present: return self._entries_value @@ -4554,8 +4585,8 @@ def __repr__(self): class GetThumbnailBatchResultData(bb.Struct): """ - :ivar thumbnail: A string containing the base64-encoded thumbnail data for - this file. + :ivar files.GetThumbnailBatchResultData.thumbnail: A string containing the + base64-encoded thumbnail data for this file. """ __slots__ = [ @@ -4582,7 +4613,7 @@ def __init__(self, @property def metadata(self): """ - :rtype: FileMetadata + :rtype: files.FileMetadata """ if self._metadata_present: return self._metadata_value @@ -4640,7 +4671,8 @@ class GetThumbnailBatchResultEntry(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar ThumbnailError failure: The result for this file if it was an error. + :ivar ThumbnailError files.GetThumbnailBatchResultEntry.failure: The result + for this file if it was an error. """ _catch_all = 'other' @@ -4653,8 +4685,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param GetThumbnailBatchResultData val: - :rtype: GetThumbnailBatchResultEntry + :param files.GetThumbnailBatchResultData val: + :rtype: files.GetThumbnailBatchResultEntry """ return cls('success', val) @@ -4664,8 +4696,8 @@ def failure(cls, val): Create an instance of this class set to the ``failure`` tag with value ``val``. - :param ThumbnailError val: - :rtype: GetThumbnailBatchResultEntry + :param files.ThumbnailError val: + :rtype: files.GetThumbnailBatchResultEntry """ return cls('failure', val) @@ -4697,7 +4729,7 @@ def get_success(self): """ Only call this if :meth:`is_success` is true. - :rtype: GetThumbnailBatchResultData + :rtype: files.GetThumbnailBatchResultData """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -4709,7 +4741,7 @@ def get_failure(self): Only call this if :meth:`is_failure` is true. - :rtype: ThumbnailError + :rtype: files.ThumbnailError """ if not self.is_failure(): raise AttributeError("tag 'failure' not set") @@ -4727,8 +4759,8 @@ class GpsCoordinates(bb.Struct): """ GPS coordinates for a photo or video. - :ivar latitude: Latitude of the GPS coordinates. - :ivar longitude: Longitude of the GPS coordinates. + :ivar files.GpsCoordinates.latitude: Latitude of the GPS coordinates. + :ivar files.GpsCoordinates.longitude: Longitude of the GPS coordinates. """ __slots__ = [ @@ -4811,30 +4843,31 @@ def __repr__(self): class ListFolderArg(bb.Struct): """ - :ivar path: A unique identifier for the file. - :ivar recursive: If true, the list folder operation will be applied - recursively to all subfolders and the response will contain contents of - all subfolders. - :ivar include_media_info: If true, ``FileMetadata.media_info`` is set for - photo and video. - :ivar include_deleted: If true, the results will include entries for files - and folders that used to exist but were deleted. - :ivar include_has_explicit_shared_members: If true, the results will include - a flag for each file indicating whether or not that file has any - explicit members. - :ivar include_mounted_folders: If true, the results will include entries - under mounted folders which includes app folder, shared folder and team - folder. - :ivar limit: The maximum number of results to return per request. Note: This - is an approximate number and there can be slightly more entries returned - in some cases. - :ivar shared_link: A shared link to list the contents of. If the link is - password-protected, the password must be provided. If this field is - present, ``ListFolderArg.path`` will be relative to root of the shared - link. Only non-recursive mode is supported for shared link. - :ivar include_property_groups: If set to a valid list of template IDs, - ``FileMetadata.property_groups`` is set if there exists property data - associated with the file and each of the listed templates. + :ivar files.ListFolderArg.path: A unique identifier for the file. + :ivar files.ListFolderArg.recursive: If true, the list folder operation will + be applied recursively to all subfolders and the response will contain + contents of all subfolders. + :ivar files.ListFolderArg.include_media_info: If true, + ``FileMetadata.media_info`` is set for photo and video. + :ivar files.ListFolderArg.include_deleted: If true, the results will include + entries for files and folders that used to exist but were deleted. + :ivar files.ListFolderArg.include_has_explicit_shared_members: If true, the + results will include a flag for each file indicating whether or not + that file has any explicit members. + :ivar files.ListFolderArg.include_mounted_folders: If true, the results will + include entries under mounted folders which includes app folder, shared + folder and team folder. + :ivar files.ListFolderArg.limit: The maximum number of results to return per + request. Note: This is an approximate number and there can be slightly + more entries returned in some cases. + :ivar files.ListFolderArg.shared_link: A shared link to list the contents + of. If the link is password-protected, the password must be provided. If + this field is present, ``ListFolderArg.path`` will be relative to root + of the shared link. Only non-recursive mode is supported for shared + link. + :ivar files.ListFolderArg.include_property_groups: If set to a valid list of + template IDs, ``FileMetadata.property_groups`` is set if there exists + property data associated with the file and each of the listed templates. """ __slots__ = [ @@ -5085,7 +5118,7 @@ def shared_link(self): present, ``ListFolderArg.path`` will be relative to root of the shared link. Only non-recursive mode is supported for shared link. - :rtype: SharedLink + :rtype: files.SharedLink """ if self._shared_link_present: return self._shared_link_value @@ -5154,8 +5187,8 @@ def __repr__(self): class ListFolderContinueArg(bb.Struct): """ - :ivar cursor: The cursor returned by your last call to - :meth:`dropbox.dropbox.Dropbox.files_list_folder` or + :ivar files.ListFolderContinueArg.cursor: The cursor returned by your last + call to :meth:`dropbox.dropbox.Dropbox.files_list_folder` or :meth:`dropbox.dropbox.Dropbox.files_list_folder_continue`. """ @@ -5214,9 +5247,9 @@ class ListFolderContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar reset: Indicates that the cursor has been invalidated. Call - :meth:`dropbox.dropbox.Dropbox.files_list_folder` to obtain a new - cursor. + :ivar files.ListFolderContinueError.reset: Indicates that the cursor has + been invalidated. Call :meth:`dropbox.dropbox.Dropbox.files_list_folder` + to obtain a new cursor. """ _catch_all = 'other' @@ -5231,8 +5264,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: ListFolderContinueError + :param files.LookupError val: + :rtype: files.ListFolderContinueError """ return cls('path', val) @@ -5264,7 +5297,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -5295,8 +5328,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: ListFolderError + :param files.LookupError val: + :rtype: files.ListFolderError """ return cls('path', val) @@ -5320,7 +5353,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -5336,7 +5369,7 @@ def __repr__(self): class ListFolderGetLatestCursorResult(bb.Struct): """ - :ivar cursor: Pass the cursor into + :ivar files.ListFolderGetLatestCursorResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.files_list_folder_continue` to see what's changed in the folder since your previous query. """ @@ -5392,16 +5425,16 @@ def __repr__(self): class ListFolderLongpollArg(bb.Struct): """ - :ivar cursor: A cursor as returned by + :ivar files.ListFolderLongpollArg.cursor: A cursor as returned by :meth:`dropbox.dropbox.Dropbox.files_list_folder` or :meth:`dropbox.dropbox.Dropbox.files_list_folder_continue`. Cursors retrieved by setting ``ListFolderArg.include_media_info`` to ``True`` are not supported. - :ivar timeout: A timeout in seconds. The request will block for at most this - length of time, plus up to 90 seconds of random jitter added to avoid - the thundering herd problem. Care should be taken when using this - parameter, as some network infrastructure does not support long - timeouts. + :ivar files.ListFolderLongpollArg.timeout: A timeout in seconds. The request + will block for at most this length of time, plus up to 90 seconds of + random jitter added to avoid the thundering herd problem. Care should be + taken when using this parameter, as some network infrastructure does not + support long timeouts. """ __slots__ = [ @@ -5495,9 +5528,9 @@ class ListFolderLongpollError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar reset: Indicates that the cursor has been invalidated. Call - :meth:`dropbox.dropbox.Dropbox.files_list_folder` to obtain a new - cursor. + :ivar files.ListFolderLongpollError.reset: Indicates that the cursor has + been invalidated. Call :meth:`dropbox.dropbox.Dropbox.files_list_folder` + to obtain a new cursor. """ _catch_all = 'other' @@ -5532,12 +5565,13 @@ def __repr__(self): class ListFolderLongpollResult(bb.Struct): """ - :ivar changes: Indicates whether new changes are available. If true, call + :ivar files.ListFolderLongpollResult.changes: Indicates whether new changes + are available. If true, call :meth:`dropbox.dropbox.Dropbox.files_list_folder_continue` to retrieve the changes. - :ivar backoff: If present, backoff for at least this many seconds before - calling :meth:`dropbox.dropbox.Dropbox.files_list_folder_longpoll` - again. + :ivar files.ListFolderLongpollResult.backoff: If present, backoff for at + least this many seconds before calling + :meth:`dropbox.dropbox.Dropbox.files_list_folder_longpoll` again. """ __slots__ = [ @@ -5626,13 +5660,15 @@ def __repr__(self): class ListFolderResult(bb.Struct): """ - :ivar entries: The files and (direct) subfolders in the folder. - :ivar cursor: Pass the cursor into + :ivar files.ListFolderResult.entries: The files and (direct) subfolders in + the folder. + :ivar files.ListFolderResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.files_list_folder_continue` to see what's changed in the folder since your previous query. - :ivar has_more: If true, then there are more entries available. Pass the - cursor to :meth:`dropbox.dropbox.Dropbox.files_list_folder_continue` to - retrieve the rest. + :ivar files.ListFolderResult.has_more: If true, then there are more entries + available. Pass the cursor to + :meth:`dropbox.dropbox.Dropbox.files_list_folder_continue` to retrieve + the rest. """ __slots__ = [ @@ -5668,7 +5704,7 @@ def entries(self): """ The files and (direct) subfolders in the folder. - :rtype: list of [Metadata] + :rtype: list of [files.Metadata] """ if self._entries_present: return self._entries_value @@ -5750,10 +5786,12 @@ def __repr__(self): class ListRevisionsArg(bb.Struct): """ - :ivar path: The path to the file you want to see the revisions of. - :ivar mode: Determines the behavior of the API in listing the revisions for - a given file path or id. - :ivar limit: The maximum number of revision entries returned. + :ivar files.ListRevisionsArg.path: The path to the file you want to see the + revisions of. + :ivar files.ListRevisionsArg.mode: Determines the behavior of the API in + listing the revisions for a given file path or id. + :ivar files.ListRevisionsArg.limit: The maximum number of revision entries + returned. """ __slots__ = [ @@ -5813,7 +5851,7 @@ def mode(self): Determines the behavior of the API in listing the revisions for a given file path or id. - :rtype: ListRevisionsMode + :rtype: files.ListRevisionsMode """ if self._mode_present: return self._mode_value @@ -5883,8 +5921,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: ListRevisionsError + :param files.LookupError val: + :rtype: files.ListRevisionsError """ return cls('path', val) @@ -5908,7 +5946,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -5928,10 +5966,11 @@ class ListRevisionsMode(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar path: Returns revisions with the same file path as identified by the - latest file entry at the given file path or id. - :ivar id: Returns revisions with the same file id as identified by the - latest file entry at the given file path or id. + :ivar files.ListRevisionsMode.path: Returns revisions with the same file + path as identified by the latest file entry at the given file path or + id. + :ivar files.ListRevisionsMode.id: Returns revisions with the same file id as + identified by the latest file entry at the given file path or id. """ _catch_all = 'other' @@ -5976,11 +6015,12 @@ def __repr__(self): class ListRevisionsResult(bb.Struct): """ - :ivar is_deleted: If the file identified by the latest revision in the - response is either deleted or moved. - :ivar server_deleted: The time of deletion if the file was deleted. - :ivar entries: The revisions for the file. Only revisions that are not - deleted will show up here. + :ivar files.ListRevisionsResult.is_deleted: If the file identified by the + latest revision in the response is either deleted or moved. + :ivar files.ListRevisionsResult.server_deleted: The time of deletion if the + file was deleted. + :ivar files.ListRevisionsResult.entries: The revisions for the file. Only + revisions that are not deleted will show up here. """ __slots__ = [ @@ -6067,7 +6107,7 @@ def entries(self): The revisions for the file. Only revisions that are not deleted will show up here. - :rtype: list of [FileMetadata] + :rtype: list of [files.FileMetadata] """ if self._entries_present: return self._entries_value @@ -6103,19 +6143,19 @@ class LookupError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar Optional[str] malformed_path: The given path does not satisfy the - required path format. Please refer to the :link:`Path formats - documentation + :ivar Optional[str] files.LookupError.malformed_path: The given path does + not satisfy the required path format. Please refer to the :link:`Path + formats documentation https://www.dropbox.com/developers/documentation/http/documentation#path-formats` for more information. - :ivar not_found: There is nothing at the given path. - :ivar not_file: We were expecting a file, but the given path refers to - something that isn't a file. - :ivar not_folder: We were expecting a folder, but the given path refers to - something that isn't a folder. - :ivar restricted_content: The file cannot be transferred because the content - is restricted. For example, sometimes there are legal restrictions due - to copyright claims. + :ivar files.LookupError.not_found: There is nothing at the given path. + :ivar files.LookupError.not_file: We were expecting a file, but the given + path refers to something that isn't a file. + :ivar files.LookupError.not_folder: We were expecting a folder, but the + given path refers to something that isn't a folder. + :ivar files.LookupError.restricted_content: The file cannot be transferred + because the content is restricted. For example, sometimes there are + legal restrictions due to copyright claims. """ _catch_all = 'other' @@ -6137,7 +6177,7 @@ def malformed_path(cls, val): value ``val``. :param Optional[str] val: - :rtype: LookupError + :rtype: files.LookupError """ return cls('malformed_path', val) @@ -6218,9 +6258,10 @@ class MediaInfo(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar pending: Indicate the photo/video is still under processing and - metadata is not available yet. - :ivar MediaMetadata metadata: The metadata for the photo/video. + :ivar files.MediaInfo.pending: Indicate the photo/video is still under + processing and metadata is not available yet. + :ivar MediaMetadata files.MediaInfo.metadata: The metadata for the + photo/video. """ _catch_all = None @@ -6233,8 +6274,8 @@ def metadata(cls, val): Create an instance of this class set to the ``metadata`` tag with value ``val``. - :param MediaMetadata val: - :rtype: MediaInfo + :param files.MediaMetadata val: + :rtype: files.MediaInfo """ return cls('metadata', val) @@ -6260,7 +6301,7 @@ def get_metadata(self): Only call this if :meth:`is_metadata` is true. - :rtype: MediaMetadata + :rtype: files.MediaMetadata """ if not self.is_metadata(): raise AttributeError("tag 'metadata' not set") @@ -6278,9 +6319,10 @@ class MediaMetadata(bb.Struct): """ Metadata for a photo or video. - :ivar dimensions: Dimension of the photo/video. - :ivar location: The GPS coordinate of the photo/video. - :ivar time_taken: The timestamp when the photo/video is taken. + :ivar files.MediaMetadata.dimensions: Dimension of the photo/video. + :ivar files.MediaMetadata.location: The GPS coordinate of the photo/video. + :ivar files.MediaMetadata.time_taken: The timestamp when the photo/video is + taken. """ __slots__ = [ @@ -6316,7 +6358,7 @@ def dimensions(self): """ Dimension of the photo/video. - :rtype: Dimensions + :rtype: files.Dimensions """ if self._dimensions_present: return self._dimensions_value @@ -6342,7 +6384,7 @@ def location(self): """ The GPS coordinate of the photo/video. - :rtype: GpsCoordinates + :rtype: files.GpsCoordinates """ if self._location_present: return self._location_value @@ -6403,10 +6445,11 @@ def __repr__(self): class RelocationBatchArgBase(bb.Struct): """ - :ivar entries: List of entries to be moved or copied. Each entry is - :class:`RelocationPath`. - :ivar autorename: If there's a conflict with any file, have the Dropbox - server try to autorename that file to avoid the conflict. + :ivar files.RelocationBatchArgBase.entries: List of entries to be moved or + copied. Each entry is :class:`RelocationPath`. + :ivar files.RelocationBatchArgBase.autorename: If there's a conflict with + any file, have the Dropbox server try to autorename that file to avoid + the conflict. """ __slots__ = [ @@ -6436,7 +6479,7 @@ def entries(self): List of entries to be moved or copied. Each entry is :class:`RelocationPath`. - :rtype: list of [RelocationPath] + :rtype: list of [files.RelocationPath] """ if self._entries_present: return self._entries_value @@ -6491,9 +6534,9 @@ def __repr__(self): class MoveBatchArg(RelocationBatchArgBase): """ - :ivar allow_ownership_transfer: Allow moves by owner even if it would result - in an ownership transfer for the content being moved. This does not - apply to copies. + :ivar files.MoveBatchArg.allow_ownership_transfer: Allow moves by owner even + if it would result in an ownership transfer for the content being moved. + This does not apply to copies. """ __slots__ = [ @@ -6582,8 +6625,8 @@ def __repr__(self): class PreviewArg(bb.Struct): """ - :ivar path: The path of the file to preview. - :ivar rev: Please specify revision in ``path`` instead. + :ivar files.PreviewArg.path: The path of the file to preview. + :ivar files.PreviewArg.rev: Please specify revision in ``path`` instead. """ __slots__ = [ @@ -6673,14 +6716,14 @@ class PreviewError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar LookupError path: An error occurs when downloading metadata for the - file. - :ivar in_progress: This preview generation is still in progress and the file - is not ready for preview yet. - :ivar unsupported_extension: The file extension is not supported preview - generation. - :ivar unsupported_content: The file content is not supported for preview - generation. + :ivar LookupError files.PreviewError.path: An error occurs when downloading + metadata for the file. + :ivar files.PreviewError.in_progress: This preview generation is still in + progress and the file is not ready for preview yet. + :ivar files.PreviewError.unsupported_extension: The file extension is not + supported preview generation. + :ivar files.PreviewError.unsupported_content: The file content is not + supported for preview generation. """ _catch_all = None @@ -6697,8 +6740,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: PreviewError + :param files.LookupError val: + :rtype: files.PreviewError """ return cls('path', val) @@ -6740,7 +6783,7 @@ def get_path(self): Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -6756,8 +6799,10 @@ def __repr__(self): class RelocationPath(bb.Struct): """ - :ivar from_path: Path in the user's Dropbox to be copied or moved. - :ivar to_path: Path in the user's Dropbox that is the destination. + :ivar files.RelocationPath.from_path: Path in the user's Dropbox to be + copied or moved. + :ivar files.RelocationPath.to_path: Path in the user's Dropbox that is the + destination. """ __slots__ = [ @@ -6840,16 +6885,16 @@ def __repr__(self): class RelocationArg(RelocationPath): """ - :ivar allow_shared_folder: If true, + :ivar files.RelocationArg.allow_shared_folder: If true, :meth:`dropbox.dropbox.Dropbox.files_copy` will copy contents in shared folder, otherwise ``RelocationError.cant_copy_shared_folder`` will be returned if ``from_path`` contains shared folder. This field is always true for :meth:`dropbox.dropbox.Dropbox.files_move`. - :ivar autorename: If there's a conflict, have the Dropbox server try to - autorename the file to avoid the conflict. - :ivar allow_ownership_transfer: Allow moves by owner even if it would result - in an ownership transfer for the content being moved. This does not - apply to copies. + :ivar files.RelocationArg.autorename: If there's a conflict, have the + Dropbox server try to autorename the file to avoid the conflict. + :ivar files.RelocationArg.allow_ownership_transfer: Allow moves by owner + even if it would result in an ownership transfer for the content being + moved. This does not apply to copies. """ __slots__ = [ @@ -6974,15 +7019,15 @@ def __repr__(self): class RelocationBatchArg(RelocationBatchArgBase): """ - :ivar allow_shared_folder: If true, + :ivar files.RelocationBatchArg.allow_shared_folder: If true, :meth:`dropbox.dropbox.Dropbox.files_copy_batch` will copy contents in shared folder, otherwise ``RelocationError.cant_copy_shared_folder`` will be returned if ``RelocationPath.from_path`` contains shared folder. This field is always true for :meth:`dropbox.dropbox.Dropbox.files_move_batch`. - :ivar allow_ownership_transfer: Allow moves by owner even if it would result - in an ownership transfer for the content being moved. This does not - apply to copies. + :ivar files.RelocationBatchArg.allow_ownership_transfer: Allow moves by + owner even if it would result in an ownership transfer for the content + being moved. This does not apply to copies. """ __slots__ = [ @@ -7080,22 +7125,25 @@ class RelocationError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar cant_copy_shared_folder: Shared folders can't be copied. - :ivar cant_nest_shared_folder: Your move operation would result in nested - shared folders. This is not allowed. - :ivar cant_move_folder_into_itself: You cannot move a folder into itself. - :ivar too_many_files: The operation would involve more than 10,000 files and - folders. - :ivar duplicated_or_nested_paths: There are duplicated/nested paths among - ``RelocationArg.from_path`` and ``RelocationArg.to_path``. - :ivar cant_transfer_ownership: Your move operation would result in an - ownership transfer. You may reissue the request with the field - ``RelocationArg.allow_ownership_transfer`` to true. - :ivar insufficient_quota: The current user does not have enough space to - move or copy the files. - :ivar internal_error: Something went wrong with the job on Dropbox's end. - You'll need to verify that the action you were taking succeeded, and if - not, try again. This should happen very rarely. + :ivar files.RelocationError.cant_copy_shared_folder: Shared folders can't be + copied. + :ivar files.RelocationError.cant_nest_shared_folder: Your move operation + would result in nested shared folders. This is not allowed. + :ivar files.RelocationError.cant_move_folder_into_itself: You cannot move a + folder into itself. + :ivar files.RelocationError.too_many_files: The operation would involve more + than 10,000 files and folders. + :ivar files.RelocationError.duplicated_or_nested_paths: There are + duplicated/nested paths among ``RelocationArg.from_path`` and + ``RelocationArg.to_path``. + :ivar files.RelocationError.cant_transfer_ownership: Your move operation + would result in an ownership transfer. You may reissue the request with + the field ``RelocationArg.allow_ownership_transfer`` to true. + :ivar files.RelocationError.insufficient_quota: The current user does not + have enough space to move or copy the files. + :ivar files.RelocationError.internal_error: Something went wrong with the + job on Dropbox's end. You'll need to verify that the action you were + taking succeeded, and if not, try again. This should happen very rarely. """ _catch_all = 'other' @@ -7124,8 +7172,8 @@ def from_lookup(cls, val): Create an instance of this class set to the ``from_lookup`` tag with value ``val``. - :param LookupError val: - :rtype: RelocationError + :param files.LookupError val: + :rtype: files.RelocationError """ return cls('from_lookup', val) @@ -7135,8 +7183,8 @@ def from_write(cls, val): Create an instance of this class set to the ``from_write`` tag with value ``val``. - :param WriteError val: - :rtype: RelocationError + :param files.WriteError val: + :rtype: files.RelocationError """ return cls('from_write', val) @@ -7146,8 +7194,8 @@ def to(cls, val): Create an instance of this class set to the ``to`` tag with value ``val``. - :param WriteError val: - :rtype: RelocationError + :param files.WriteError val: + :rtype: files.RelocationError """ return cls('to', val) @@ -7251,7 +7299,7 @@ def get_from_lookup(self): """ Only call this if :meth:`is_from_lookup` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_from_lookup(): raise AttributeError("tag 'from_lookup' not set") @@ -7261,7 +7309,7 @@ def get_from_write(self): """ Only call this if :meth:`is_from_write` is true. - :rtype: WriteError + :rtype: files.WriteError """ if not self.is_from_write(): raise AttributeError("tag 'from_write' not set") @@ -7271,7 +7319,7 @@ def get_to(self): """ Only call this if :meth:`is_to` is true. - :rtype: WriteError + :rtype: files.WriteError """ if not self.is_to(): raise AttributeError("tag 'to' not set") @@ -7291,8 +7339,8 @@ class RelocationBatchError(RelocationError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar too_many_write_operations: There are too many write operations in - user's Dropbox. Please retry this request. + :ivar files.RelocationBatchError.too_many_write_operations: There are too + many write operations in user's Dropbox. Please retry this request. """ # Attribute is overwritten below the class definition @@ -7320,12 +7368,14 @@ class RelocationBatchErrorEntry(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar RelocationError relocation_error: User errors that retry won't help. - :ivar internal_error: Something went wrong with the job on Dropbox's end. - You'll need to verify that the action you were taking succeeded, and if - not, try again. This should happen very rarely. - :ivar too_many_write_operations: There are too many write operations in - user's Dropbox. Please retry this request. + :ivar RelocationError files.RelocationBatchErrorEntry.relocation_error: User + errors that retry won't help. + :ivar files.RelocationBatchErrorEntry.internal_error: Something went wrong + with the job on Dropbox's end. You'll need to verify that the action you + were taking succeeded, and if not, try again. This should happen very + rarely. + :ivar files.RelocationBatchErrorEntry.too_many_write_operations: There are + too many write operations in user's Dropbox. Please retry this request. """ _catch_all = 'other' @@ -7342,8 +7392,8 @@ def relocation_error(cls, val): Create an instance of this class set to the ``relocation_error`` tag with value ``val``. - :param RelocationError val: - :rtype: RelocationBatchErrorEntry + :param files.RelocationError val: + :rtype: files.RelocationBatchErrorEntry """ return cls('relocation_error', val) @@ -7385,7 +7435,7 @@ def get_relocation_error(self): Only call this if :meth:`is_relocation_error` is true. - :rtype: RelocationError + :rtype: files.RelocationError """ if not self.is_relocation_error(): raise AttributeError("tag 'relocation_error' not set") @@ -7405,10 +7455,10 @@ class RelocationBatchJobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar RelocationBatchResult complete: The copy or move batch job has - finished. - :ivar RelocationBatchError failed: The copy or move batch job has failed - with exception. + :ivar RelocationBatchResult files.RelocationBatchJobStatus.complete: The + copy or move batch job has finished. + :ivar RelocationBatchError files.RelocationBatchJobStatus.failed: The copy + or move batch job has failed with exception. """ @classmethod @@ -7417,8 +7467,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param RelocationBatchResult val: - :rtype: RelocationBatchJobStatus + :param files.RelocationBatchResult val: + :rtype: files.RelocationBatchJobStatus """ return cls('complete', val) @@ -7428,8 +7478,8 @@ def failed(cls, val): Create an instance of this class set to the ``failed`` tag with value ``val``. - :param RelocationBatchError val: - :rtype: RelocationBatchJobStatus + :param files.RelocationBatchError val: + :rtype: files.RelocationBatchJobStatus """ return cls('failed', val) @@ -7455,7 +7505,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: RelocationBatchResult + :rtype: files.RelocationBatchResult """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -7467,7 +7517,7 @@ def get_failed(self): Only call this if :meth:`is_failed` is true. - :rtype: RelocationBatchError + :rtype: files.RelocationBatchError """ if not self.is_failed(): raise AttributeError("tag 'failed' not set") @@ -7502,8 +7552,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param RelocationBatchResult val: - :rtype: RelocationBatchLaunch + :param files.RelocationBatchResult val: + :rtype: files.RelocationBatchLaunch """ return cls('complete', val) @@ -7527,7 +7577,7 @@ def get_complete(self): """ Only call this if :meth:`is_complete` is true. - :rtype: RelocationBatchResult + :rtype: files.RelocationBatchResult """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -7561,7 +7611,7 @@ def __init__(self, @property def entries(self): """ - :rtype: list of [RelocationBatchResultData] + :rtype: list of [files.RelocationBatchResultData] """ if self._entries_present: return self._entries_value @@ -7591,7 +7641,8 @@ def __repr__(self): class RelocationBatchResultData(bb.Struct): """ - :ivar metadata: Metadata of the relocated object. + :ivar files.RelocationBatchResultData.metadata: Metadata of the relocated + object. """ __slots__ = [ @@ -7613,7 +7664,7 @@ def metadata(self): """ Metadata of the relocated object. - :rtype: Metadata + :rtype: files.Metadata """ if self._metadata_present: return self._metadata_value @@ -7658,8 +7709,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param Metadata val: - :rtype: RelocationBatchResultEntry + :param files.Metadata val: + :rtype: files.RelocationBatchResultEntry """ return cls('success', val) @@ -7669,8 +7720,8 @@ def failure(cls, val): Create an instance of this class set to the ``failure`` tag with value ``val``. - :param RelocationBatchErrorEntry val: - :rtype: RelocationBatchResultEntry + :param files.RelocationBatchErrorEntry val: + :rtype: files.RelocationBatchResultEntry """ return cls('failure', val) @@ -7702,7 +7753,7 @@ def get_success(self): """ Only call this if :meth:`is_success` is true. - :rtype: Metadata + :rtype: files.Metadata """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -7712,7 +7763,7 @@ def get_failure(self): """ Only call this if :meth:`is_failure` is true. - :rtype: RelocationBatchErrorEntry + :rtype: files.RelocationBatchErrorEntry """ if not self.is_failure(): raise AttributeError("tag 'failure' not set") @@ -7736,8 +7787,8 @@ class RelocationBatchV2JobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar RelocationBatchV2Result complete: The copy or move batch job has - finished. + :ivar RelocationBatchV2Result files.RelocationBatchV2JobStatus.complete: The + copy or move batch job has finished. """ @classmethod @@ -7746,8 +7797,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param RelocationBatchV2Result val: - :rtype: RelocationBatchV2JobStatus + :param files.RelocationBatchV2Result val: + :rtype: files.RelocationBatchV2JobStatus """ return cls('complete', val) @@ -7765,7 +7816,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: RelocationBatchV2Result + :rtype: files.RelocationBatchV2Result """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -7796,8 +7847,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param RelocationBatchV2Result val: - :rtype: RelocationBatchV2Launch + :param files.RelocationBatchV2Result val: + :rtype: files.RelocationBatchV2Launch """ return cls('complete', val) @@ -7813,7 +7864,7 @@ def get_complete(self): """ Only call this if :meth:`is_complete` is true. - :rtype: RelocationBatchV2Result + :rtype: files.RelocationBatchV2Result """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -7829,9 +7880,9 @@ def __repr__(self): class RelocationBatchV2Result(FileOpsResult): """ - :ivar entries: Each entry in CopyBatchArg.entries or - ``MoveBatchArg.entries`` will appear at the same position inside - ``RelocationBatchV2Result.entries``. + :ivar files.RelocationBatchV2Result.entries: Each entry in + CopyBatchArg.entries or ``MoveBatchArg.entries`` will appear at the same + position inside ``RelocationBatchV2Result.entries``. """ __slots__ = [ @@ -7855,7 +7906,7 @@ def entries(self): Each entry in CopyBatchArg.entries or ``MoveBatchArg.entries`` will appear at the same position inside ``RelocationBatchV2Result.entries``. - :rtype: list of [RelocationBatchResultEntry] + :rtype: list of [files.RelocationBatchResultEntry] """ if self._entries_present: return self._entries_value @@ -7885,7 +7936,7 @@ def __repr__(self): class RelocationResult(FileOpsResult): """ - :ivar metadata: Metadata of the relocated object. + :ivar files.RelocationResult.metadata: Metadata of the relocated object. """ __slots__ = [ @@ -7908,7 +7959,7 @@ def metadata(self): """ Metadata of the relocated object. - :rtype: Metadata + :rtype: files.Metadata """ if self._metadata_present: return self._metadata_value @@ -7938,8 +7989,8 @@ def __repr__(self): class RestoreArg(bb.Struct): """ - :ivar path: The path to save the restored file. - :ivar rev: The revision to restore. + :ivar files.RestoreArg.path: The path to save the restored file. + :ivar files.RestoreArg.rev: The revision to restore. """ __slots__ = [ @@ -8026,11 +8077,12 @@ class RestoreError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar LookupError path_lookup: An error occurs when downloading metadata for - the file. - :ivar WriteError path_write: An error occurs when trying to restore the file - to that path. - :ivar invalid_revision: The revision is invalid. It may not exist. + :ivar LookupError files.RestoreError.path_lookup: An error occurs when + downloading metadata for the file. + :ivar WriteError files.RestoreError.path_write: An error occurs when trying + to restore the file to that path. + :ivar files.RestoreError.invalid_revision: The revision is invalid. It may + not exist. """ _catch_all = 'other' @@ -8045,8 +8097,8 @@ def path_lookup(cls, val): Create an instance of this class set to the ``path_lookup`` tag with value ``val``. - :param LookupError val: - :rtype: RestoreError + :param files.LookupError val: + :rtype: files.RestoreError """ return cls('path_lookup', val) @@ -8056,8 +8108,8 @@ def path_write(cls, val): Create an instance of this class set to the ``path_write`` tag with value ``val``. - :param WriteError val: - :rtype: RestoreError + :param files.WriteError val: + :rtype: files.RestoreError """ return cls('path_write', val) @@ -8099,7 +8151,7 @@ def get_path_lookup(self): Only call this if :meth:`is_path_lookup` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path_lookup(): raise AttributeError("tag 'path_lookup' not set") @@ -8111,7 +8163,7 @@ def get_path_write(self): Only call this if :meth:`is_path_write` is true. - :rtype: WriteError + :rtype: files.WriteError """ if not self.is_path_write(): raise AttributeError("tag 'path_write' not set") @@ -8127,9 +8179,10 @@ def __repr__(self): class SaveCopyReferenceArg(bb.Struct): """ - :ivar copy_reference: A copy reference returned by - :meth:`dropbox.dropbox.Dropbox.files_copy_reference_get`. - :ivar path: Path in the user's Dropbox that is the destination. + :ivar files.SaveCopyReferenceArg.copy_reference: A copy reference returned + by :meth:`dropbox.dropbox.Dropbox.files_copy_reference_get`. + :ivar files.SaveCopyReferenceArg.path: Path in the user's Dropbox that is + the destination. """ __slots__ = [ @@ -8217,13 +8270,16 @@ class SaveCopyReferenceError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_copy_reference: The copy reference is invalid. - :ivar no_permission: You don't have permission to save the given copy - reference. Please make sure this app is same app which created the copy - reference and the source user is still linked to the app. - :ivar not_found: The file referenced by the copy reference cannot be found. - :ivar too_many_files: The operation would involve more than 10,000 files and - folders. + :ivar files.SaveCopyReferenceError.invalid_copy_reference: The copy + reference is invalid. + :ivar files.SaveCopyReferenceError.no_permission: You don't have permission + to save the given copy reference. Please make sure this app is same app + which created the copy reference and the source user is still linked to + the app. + :ivar files.SaveCopyReferenceError.not_found: The file referenced by the + copy reference cannot be found. + :ivar files.SaveCopyReferenceError.too_many_files: The operation would + involve more than 10,000 files and folders. """ _catch_all = 'other' @@ -8244,8 +8300,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param WriteError val: - :rtype: SaveCopyReferenceError + :param files.WriteError val: + :rtype: files.SaveCopyReferenceError """ return cls('path', val) @@ -8301,7 +8357,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: WriteError + :rtype: files.WriteError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -8317,8 +8373,8 @@ def __repr__(self): class SaveCopyReferenceResult(bb.Struct): """ - :ivar metadata: The metadata of the saved file or folder in the user's - Dropbox. + :ivar files.SaveCopyReferenceResult.metadata: The metadata of the saved file + or folder in the user's Dropbox. """ __slots__ = [ @@ -8340,7 +8396,7 @@ def metadata(self): """ The metadata of the saved file or folder in the user's Dropbox. - :rtype: Metadata + :rtype: files.Metadata """ if self._metadata_present: return self._metadata_value @@ -8370,8 +8426,9 @@ def __repr__(self): class SaveUrlArg(bb.Struct): """ - :ivar path: The path in Dropbox where the URL will be saved to. - :ivar url: The URL to be saved. + :ivar files.SaveUrlArg.path: The path in Dropbox where the URL will be saved + to. + :ivar files.SaveUrlArg.url: The URL to be saved. """ __slots__ = [ @@ -8458,9 +8515,10 @@ class SaveUrlError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar download_failed: Failed downloading the given URL. - :ivar invalid_url: The given URL is invalid. - :ivar not_found: The file where the URL is saved to no longer exists. + :ivar files.SaveUrlError.download_failed: Failed downloading the given URL. + :ivar files.SaveUrlError.invalid_url: The given URL is invalid. + :ivar files.SaveUrlError.not_found: The file where the URL is saved to no + longer exists. """ _catch_all = 'other' @@ -8479,8 +8537,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param WriteError val: - :rtype: SaveUrlError + :param files.WriteError val: + :rtype: files.SaveUrlError """ return cls('path', val) @@ -8528,7 +8586,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: WriteError + :rtype: files.WriteError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -8548,7 +8606,8 @@ class SaveUrlJobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar FileMetadata complete: Metadata of the file where the URL is saved to. + :ivar FileMetadata files.SaveUrlJobStatus.complete: Metadata of the file + where the URL is saved to. """ @classmethod @@ -8557,8 +8616,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param FileMetadata val: - :rtype: SaveUrlJobStatus + :param files.FileMetadata val: + :rtype: files.SaveUrlJobStatus """ return cls('complete', val) @@ -8568,8 +8627,8 @@ def failed(cls, val): Create an instance of this class set to the ``failed`` tag with value ``val``. - :param SaveUrlError val: - :rtype: SaveUrlJobStatus + :param files.SaveUrlError val: + :rtype: files.SaveUrlJobStatus """ return cls('failed', val) @@ -8595,7 +8654,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: FileMetadata + :rtype: files.FileMetadata """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -8605,7 +8664,7 @@ def get_failed(self): """ Only call this if :meth:`is_failed` is true. - :rtype: SaveUrlError + :rtype: files.SaveUrlError """ if not self.is_failed(): raise AttributeError("tag 'failed' not set") @@ -8625,7 +8684,8 @@ class SaveUrlResult(async_.LaunchResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar FileMetadata complete: Metadata of the file where the URL is saved to. + :ivar FileMetadata files.SaveUrlResult.complete: Metadata of the file where + the URL is saved to. """ @classmethod @@ -8634,8 +8694,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param FileMetadata val: - :rtype: SaveUrlResult + :param files.FileMetadata val: + :rtype: files.SaveUrlResult """ return cls('complete', val) @@ -8653,7 +8713,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: FileMetadata + :rtype: files.FileMetadata """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -8669,16 +8729,18 @@ def __repr__(self): class SearchArg(bb.Struct): """ - :ivar path: The path in the user's Dropbox to search. Should probably be a - folder. - :ivar query: The string to search for. The search string is split on spaces - into multiple tokens. For file name searching, the last token is used - for prefix matching (i.e. "bat c" matches "bat cave" but not "batman - car"). - :ivar start: The starting index within the search results (used for paging). - :ivar max_results: The maximum number of search results to return. - :ivar mode: The search mode (filename, filename_and_content, or - deleted_filename). Note that searching file content is only available + :ivar files.SearchArg.path: The path in the user's Dropbox to search. Should + probably be a folder. + :ivar files.SearchArg.query: The string to search for. The search string is + split on spaces into multiple tokens. For file name searching, the last + token is used for prefix matching (i.e. "bat c" matches "bat cave" but + not "batman car"). + :ivar files.SearchArg.start: The starting index within the search results + (used for paging). + :ivar files.SearchArg.max_results: The maximum number of search results to + return. + :ivar files.SearchArg.mode: The search mode (filename, filename_and_content, + or deleted_filename). Note that searching file content is only available for Dropbox Business accounts. """ @@ -8825,7 +8887,7 @@ def mode(self): Note that searching file content is only available for Dropbox Business accounts. - :rtype: SearchMode + :rtype: files.SearchMode """ if self._mode_present: return self._mode_value @@ -8874,8 +8936,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: SearchError + :param files.LookupError val: + :rtype: files.SearchError """ return cls('path', val) @@ -8899,7 +8961,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -8915,8 +8977,9 @@ def __repr__(self): class SearchMatch(bb.Struct): """ - :ivar match_type: The type of the match. - :ivar metadata: The metadata for the matched file or folder. + :ivar files.SearchMatch.match_type: The type of the match. + :ivar files.SearchMatch.metadata: The metadata for the matched file or + folder. """ __slots__ = [ @@ -8945,7 +9008,7 @@ def match_type(self): """ The type of the match. - :rtype: SearchMatchType + :rtype: files.SearchMatchType """ if self._match_type_present: return self._match_type_value @@ -8968,7 +9031,7 @@ def metadata(self): """ The metadata for the matched file or folder. - :rtype: Metadata + :rtype: files.Metadata """ if self._metadata_present: return self._metadata_value @@ -9005,10 +9068,12 @@ class SearchMatchType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar filename: This item was matched on its file or folder name. - :ivar content: This item was matched based on its file contents. - :ivar both: This item was matched based on both its contents and its file - name. + :ivar files.SearchMatchType.filename: This item was matched on its file or + folder name. + :ivar files.SearchMatchType.content: This item was matched based on its file + contents. + :ivar files.SearchMatchType.both: This item was matched based on both its + contents and its file name. """ _catch_all = None @@ -9057,10 +9122,11 @@ class SearchMode(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar filename: Search file and folder names. - :ivar filename_and_content: Search file and folder names as well as file - contents. - :ivar deleted_filename: Search for deleted file and folder names. + :ivar files.SearchMode.filename: Search file and folder names. + :ivar files.SearchMode.filename_and_content: Search file and folder names as + well as file contents. + :ivar files.SearchMode.deleted_filename: Search for deleted file and folder + names. """ _catch_all = None @@ -9105,13 +9171,14 @@ def __repr__(self): class SearchResult(bb.Struct): """ - :ivar matches: A list (possibly empty) of matches for the query. - :ivar more: Used for paging. If true, indicates there is another page of - results available that can be fetched by calling + :ivar files.SearchResult.matches: A list (possibly empty) of matches for the + query. + :ivar files.SearchResult.more: Used for paging. If true, indicates there is + another page of results available that can be fetched by calling :meth:`dropbox.dropbox.Dropbox.files_search` again. - :ivar start: Used for paging. Value to set the start argument to when - calling :meth:`dropbox.dropbox.Dropbox.files_search` to fetch the next - page of results. + :ivar files.SearchResult.start: Used for paging. Value to set the start + argument to when calling :meth:`dropbox.dropbox.Dropbox.files_search` to + fetch the next page of results. """ __slots__ = [ @@ -9147,7 +9214,7 @@ def matches(self): """ A list (possibly empty) of matches for the query. - :rtype: list of [SearchMatch] + :rtype: list of [files.SearchMatch] """ if self._matches_present: return self._matches_value @@ -9229,8 +9296,8 @@ def __repr__(self): class SharedLink(bb.Struct): """ - :ivar url: Shared link url. - :ivar password: Password for the shared link. + :ivar files.SharedLink.url: Shared link url. + :ivar files.SharedLink.password: Password for the shared link. """ __slots__ = [ @@ -9316,7 +9383,7 @@ def __repr__(self): class SymlinkInfo(bb.Struct): """ - :ivar target: The target this symlink points to. + :ivar files.SymlinkInfo.target: The target this symlink points to. """ __slots__ = [ @@ -9372,14 +9439,14 @@ class SyncSetting(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar default: On first sync to members' computers, the specified folder - will follow its parent folder's setting or otherwise follow default sync - behavior. - :ivar not_synced: On first sync to members' computers, the specified folder - will be set to not sync with selective sync. - :ivar not_synced_inactive: The specified folder's not_synced setting is - inactive due to its location or other configuration changes. It will - follow its parent folder's setting. + :ivar files.SyncSetting.default: On first sync to members' computers, the + specified folder will follow its parent folder's setting or otherwise + follow default sync behavior. + :ivar files.SyncSetting.not_synced: On first sync to members' computers, the + specified folder will be set to not sync with selective sync. + :ivar files.SyncSetting.not_synced_inactive: The specified folder's + not_synced setting is inactive due to its location or other + configuration changes. It will follow its parent folder's setting. """ _catch_all = 'other' @@ -9438,11 +9505,11 @@ class SyncSettingArg(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar default: On first sync to members' computers, the specified folder - will follow its parent folder's setting or otherwise follow default sync - behavior. - :ivar not_synced: On first sync to members' computers, the specified folder - will be set to not sync with selective sync. + :ivar files.SyncSettingArg.default: On first sync to members' computers, the + specified folder will follow its parent folder's setting or otherwise + follow default sync behavior. + :ivar files.SyncSettingArg.not_synced: On first sync to members' computers, + the specified folder will be set to not sync with selective sync. """ _catch_all = 'other' @@ -9491,10 +9558,10 @@ class SyncSettingsError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar unsupported_combination: Setting this combination of sync settings - simultaneously is not supported. - :ivar unsupported_configuration: The specified configuration is not - supported. + :ivar files.SyncSettingsError.unsupported_combination: Setting this + combination of sync settings simultaneously is not supported. + :ivar files.SyncSettingsError.unsupported_configuration: The specified + configuration is not supported. """ _catch_all = 'other' @@ -9511,8 +9578,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: SyncSettingsError + :param files.LookupError val: + :rtype: files.SyncSettingsError """ return cls('path', val) @@ -9552,7 +9619,7 @@ def get_path(self): """ Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -9568,12 +9635,14 @@ def __repr__(self): class ThumbnailArg(bb.Struct): """ - :ivar path: The path to the image file you want to thumbnail. - :ivar format: The format for the thumbnail image, jpeg (default) or png. For - images that are photos, jpeg should be preferred, while png is better - for screenshots and digital arts. - :ivar size: The size for the thumbnail image. - :ivar mode: How to resize and crop the image to achieve the desired size. + :ivar files.ThumbnailArg.path: The path to the image file you want to + thumbnail. + :ivar files.ThumbnailArg.format: The format for the thumbnail image, jpeg + (default) or png. For images that are photos, jpeg should be preferred, + while png is better for screenshots and digital arts. + :ivar files.ThumbnailArg.size: The size for the thumbnail image. + :ivar files.ThumbnailArg.mode: How to resize and crop the image to achieve + the desired size. """ __slots__ = [ @@ -9641,7 +9710,7 @@ def format(self): that are photos, jpeg should be preferred, while png is better for screenshots and digital arts. - :rtype: ThumbnailFormat + :rtype: files.ThumbnailFormat """ if self._format_present: return self._format_value @@ -9664,7 +9733,7 @@ def size(self): """ The size for the thumbnail image. - :rtype: ThumbnailSize + :rtype: files.ThumbnailSize """ if self._size_present: return self._size_value @@ -9687,7 +9756,7 @@ def mode(self): """ How to resize and crop the image to achieve the desired size. - :rtype: ThumbnailMode + :rtype: files.ThumbnailMode """ if self._mode_present: return self._mode_value @@ -9724,12 +9793,14 @@ class ThumbnailError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar LookupError path: An error occurs when downloading metadata for the - image. - :ivar unsupported_extension: The file extension doesn't allow conversion to - a thumbnail. - :ivar unsupported_image: The image cannot be converted to a thumbnail. - :ivar conversion_error: An error occurs during thumbnail conversion. + :ivar LookupError files.ThumbnailError.path: An error occurs when + downloading metadata for the image. + :ivar files.ThumbnailError.unsupported_extension: The file extension doesn't + allow conversion to a thumbnail. + :ivar files.ThumbnailError.unsupported_image: The image cannot be converted + to a thumbnail. + :ivar files.ThumbnailError.conversion_error: An error occurs during + thumbnail conversion. """ _catch_all = None @@ -9746,8 +9817,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param LookupError val: - :rtype: ThumbnailError + :param files.LookupError val: + :rtype: files.ThumbnailError """ return cls('path', val) @@ -9789,7 +9860,7 @@ def get_path(self): Only call this if :meth:`is_path` is true. - :rtype: LookupError + :rtype: files.LookupError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -9846,11 +9917,12 @@ class ThumbnailMode(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar strict: Scale down the image to fit within the given size. - :ivar bestfit: Scale down the image to fit within the given size or its - transpose. - :ivar fitone_bestfit: Scale down the image to completely cover the given - size or its transpose. + :ivar files.ThumbnailMode.strict: Scale down the image to fit within the + given size. + :ivar files.ThumbnailMode.bestfit: Scale down the image to fit within the + given size or its transpose. + :ivar files.ThumbnailMode.fitone_bestfit: Scale down the image to completely + cover the given size or its transpose. """ _catch_all = None @@ -9899,15 +9971,15 @@ class ThumbnailSize(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar w32h32: 32 by 32 px. - :ivar w64h64: 64 by 64 px. - :ivar w128h128: 128 by 128 px. - :ivar w256h256: 256 by 256 px. - :ivar w480h320: 480 by 320 px. - :ivar w640h480: 640 by 480 px. - :ivar w960h640: 960 by 640 px. - :ivar w1024h768: 1024 by 768 px. - :ivar w2048h1536: 2048 by 1536 px. + :ivar files.ThumbnailSize.w32h32: 32 by 32 px. + :ivar files.ThumbnailSize.w64h64: 64 by 64 px. + :ivar files.ThumbnailSize.w128h128: 128 by 128 px. + :ivar files.ThumbnailSize.w256h256: 256 by 256 px. + :ivar files.ThumbnailSize.w480h320: 480 by 320 px. + :ivar files.ThumbnailSize.w640h480: 640 by 480 px. + :ivar files.ThumbnailSize.w960h640: 960 by 640 px. + :ivar files.ThumbnailSize.w1024h768: 1024 by 768 px. + :ivar files.ThumbnailSize.w2048h1536: 2048 by 1536 px. """ _catch_all = None @@ -10016,10 +10088,11 @@ class UploadError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar UploadWriteFailed path: Unable to save the uploaded contents to a - file. - :ivar InvalidPropertyGroupError properties_error: The supplied property - group is invalid. The file has uploaded without property groups. + :ivar UploadWriteFailed files.UploadError.path: Unable to save the uploaded + contents to a file. + :ivar InvalidPropertyGroupError files.UploadError.properties_error: The + supplied property group is invalid. The file has uploaded without + property groups. """ _catch_all = 'other' @@ -10032,8 +10105,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param UploadWriteFailed val: - :rtype: UploadError + :param files.UploadWriteFailed val: + :rtype: files.UploadError """ return cls('path', val) @@ -10044,7 +10117,7 @@ def properties_error(cls, val): with value ``val``. :param file_properties.InvalidPropertyGroupError val: - :rtype: UploadError + :rtype: files.UploadError """ return cls('properties_error', val) @@ -10078,7 +10151,7 @@ def get_path(self): Only call this if :meth:`is_path` is true. - :rtype: UploadWriteFailed + :rtype: files.UploadWriteFailed """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -10122,9 +10195,10 @@ def __repr__(self): class UploadSessionAppendArg(bb.Struct): """ - :ivar cursor: Contains the upload session ID and the offset. - :ivar close: If true, the current session will be closed, at which point you - won't be able to call + :ivar files.UploadSessionAppendArg.cursor: Contains the upload session ID + and the offset. + :ivar files.UploadSessionAppendArg.close: If true, the current session will + be closed, at which point you won't be able to call :meth:`dropbox.dropbox.Dropbox.files_upload_session_append` anymore with the current session. """ @@ -10155,7 +10229,7 @@ def cursor(self): """ Contains the upload session ID and the offset. - :rtype: UploadSessionCursor + :rtype: files.UploadSessionCursor """ if self._cursor_present: return self._cursor_value @@ -10211,11 +10285,11 @@ def __repr__(self): class UploadSessionCursor(bb.Struct): """ - :ivar session_id: The upload session ID (returned by - :meth:`dropbox.dropbox.Dropbox.files_upload_session_start`). - :ivar offset: The amount of data that has been uploaded so far. We use this - to make sure upload data isn't lost or duplicated in the event of a - network error. + :ivar files.UploadSessionCursor.session_id: The upload session ID (returned + by :meth:`dropbox.dropbox.Dropbox.files_upload_session_start`). + :ivar files.UploadSessionCursor.offset: The amount of data that has been + uploaded so far. We use this to make sure upload data isn't lost or + duplicated in the event of a network error. """ __slots__ = [ @@ -10301,8 +10375,10 @@ def __repr__(self): class UploadSessionFinishArg(bb.Struct): """ - :ivar cursor: Contains the upload session ID and the offset. - :ivar commit: Contains the path and other optional modifiers for the commit. + :ivar files.UploadSessionFinishArg.cursor: Contains the upload session ID + and the offset. + :ivar files.UploadSessionFinishArg.commit: Contains the path and other + optional modifiers for the commit. """ __slots__ = [ @@ -10331,7 +10407,7 @@ def cursor(self): """ Contains the upload session ID and the offset. - :rtype: UploadSessionCursor + :rtype: files.UploadSessionCursor """ if self._cursor_present: return self._cursor_value @@ -10354,7 +10430,7 @@ def commit(self): """ Contains the path and other optional modifiers for the commit. - :rtype: CommitInfo + :rtype: files.CommitInfo """ if self._commit_present: return self._commit_value @@ -10385,7 +10461,8 @@ def __repr__(self): class UploadSessionFinishBatchArg(bb.Struct): """ - :ivar entries: Commit information for each file in the batch. + :ivar files.UploadSessionFinishBatchArg.entries: Commit information for each + file in the batch. """ __slots__ = [ @@ -10407,7 +10484,7 @@ def entries(self): """ Commit information for each file in the batch. - :rtype: list of [UploadSessionFinishArg] + :rtype: list of [files.UploadSessionFinishArg] """ if self._entries_present: return self._entries_value @@ -10441,7 +10518,8 @@ class UploadSessionFinishBatchJobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar UploadSessionFinishBatchResult complete: The + :ivar UploadSessionFinishBatchResult + files.UploadSessionFinishBatchJobStatus.complete: The :meth:`dropbox.dropbox.Dropbox.files_upload_session_finish_batch` has finished. """ @@ -10452,8 +10530,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param UploadSessionFinishBatchResult val: - :rtype: UploadSessionFinishBatchJobStatus + :param files.UploadSessionFinishBatchResult val: + :rtype: files.UploadSessionFinishBatchJobStatus """ return cls('complete', val) @@ -10472,7 +10550,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: UploadSessionFinishBatchResult + :rtype: files.UploadSessionFinishBatchResult """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -10507,8 +10585,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param UploadSessionFinishBatchResult val: - :rtype: UploadSessionFinishBatchLaunch + :param files.UploadSessionFinishBatchResult val: + :rtype: files.UploadSessionFinishBatchLaunch """ return cls('complete', val) @@ -10532,7 +10610,7 @@ def get_complete(self): """ Only call this if :meth:`is_complete` is true. - :rtype: UploadSessionFinishBatchResult + :rtype: files.UploadSessionFinishBatchResult """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -10548,9 +10626,9 @@ def __repr__(self): class UploadSessionFinishBatchResult(bb.Struct): """ - :ivar entries: Each entry in ``UploadSessionFinishBatchArg.entries`` will - appear at the same position inside - ``UploadSessionFinishBatchResult.entries``. + :ivar files.UploadSessionFinishBatchResult.entries: Each entry in + ``UploadSessionFinishBatchArg.entries`` will appear at the same position + inside ``UploadSessionFinishBatchResult.entries``. """ __slots__ = [ @@ -10573,7 +10651,7 @@ def entries(self): Each entry in ``UploadSessionFinishBatchArg.entries`` will appear at the same position inside ``UploadSessionFinishBatchResult.entries``. - :rtype: list of [UploadSessionFinishBatchResultEntry] + :rtype: list of [files.UploadSessionFinishBatchResultEntry] """ if self._entries_present: return self._entries_value @@ -10616,8 +10694,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param FileMetadata val: - :rtype: UploadSessionFinishBatchResultEntry + :param files.FileMetadata val: + :rtype: files.UploadSessionFinishBatchResultEntry """ return cls('success', val) @@ -10627,8 +10705,8 @@ def failure(cls, val): Create an instance of this class set to the ``failure`` tag with value ``val``. - :param UploadSessionFinishError val: - :rtype: UploadSessionFinishBatchResultEntry + :param files.UploadSessionFinishError val: + :rtype: files.UploadSessionFinishBatchResultEntry """ return cls('failure', val) @@ -10652,7 +10730,7 @@ def get_success(self): """ Only call this if :meth:`is_success` is true. - :rtype: FileMetadata + :rtype: files.FileMetadata """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -10662,7 +10740,7 @@ def get_failure(self): """ Only call this if :meth:`is_failure` is true. - :rtype: UploadSessionFinishError + :rtype: files.UploadSessionFinishError """ if not self.is_failure(): raise AttributeError("tag 'failure' not set") @@ -10682,18 +10760,21 @@ class UploadSessionFinishError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar UploadSessionLookupError lookup_failed: The session arguments are - incorrect; the value explains the reason. - :ivar WriteError path: Unable to save the uploaded contents to a file. Data - has already been appended to the upload session. Please retry with empty - data body and updated offset. - :ivar InvalidPropertyGroupError properties_error: The supplied property + :ivar UploadSessionLookupError files.UploadSessionFinishError.lookup_failed: + The session arguments are incorrect; the value explains the reason. + :ivar WriteError files.UploadSessionFinishError.path: Unable to save the + uploaded contents to a file. Data has already been appended to the + upload session. Please retry with empty data body and updated offset. + :ivar InvalidPropertyGroupError + files.UploadSessionFinishError.properties_error: The supplied property group is invalid. The file has uploaded without property groups. - :ivar too_many_shared_folder_targets: The batch request commits files into - too many different shared folders. Please limit your batch request to - files contained in a single shared folder. - :ivar too_many_write_operations: There are too many write operations - happening in the user's Dropbox. You should retry uploading this file. + :ivar files.UploadSessionFinishError.too_many_shared_folder_targets: The + batch request commits files into too many different shared folders. + Please limit your batch request to files contained in a single shared + folder. + :ivar files.UploadSessionFinishError.too_many_write_operations: There are + too many write operations happening in the user's Dropbox. You should + retry uploading this file. """ _catch_all = 'other' @@ -10710,8 +10791,8 @@ def lookup_failed(cls, val): Create an instance of this class set to the ``lookup_failed`` tag with value ``val``. - :param UploadSessionLookupError val: - :rtype: UploadSessionFinishError + :param files.UploadSessionLookupError val: + :rtype: files.UploadSessionFinishError """ return cls('lookup_failed', val) @@ -10721,8 +10802,8 @@ def path(cls, val): Create an instance of this class set to the ``path`` tag with value ``val``. - :param WriteError val: - :rtype: UploadSessionFinishError + :param files.WriteError val: + :rtype: files.UploadSessionFinishError """ return cls('path', val) @@ -10733,7 +10814,7 @@ def properties_error(cls, val): with value ``val``. :param file_properties.InvalidPropertyGroupError val: - :rtype: UploadSessionFinishError + :rtype: files.UploadSessionFinishError """ return cls('properties_error', val) @@ -10791,7 +10872,7 @@ def get_lookup_failed(self): Only call this if :meth:`is_lookup_failed` is true. - :rtype: UploadSessionLookupError + :rtype: files.UploadSessionLookupError """ if not self.is_lookup_failed(): raise AttributeError("tag 'lookup_failed' not set") @@ -10805,7 +10886,7 @@ def get_path(self): Only call this if :meth:`is_path` is true. - :rtype: WriteError + :rtype: files.WriteError """ if not self.is_path(): raise AttributeError("tag 'path' not set") @@ -10838,18 +10919,21 @@ class UploadSessionLookupError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar not_found: The upload session ID was not found or has expired. Upload - sessions are valid for 48 hours. - :ivar UploadSessionOffsetError incorrect_offset: The specified offset was - incorrect. See the value for the correct offset. This error may occur - when a previous request was received and processed successfully but the - client did not receive the response, e.g. due to a network error. - :ivar closed: You are attempting to append data to an upload session that - has alread been closed (i.e. committed). - :ivar not_closed: The session must be closed before calling - upload_session/finish_batch. - :ivar too_large: You can not append to the upload session because the size - of a file should not reach the max file size limit (i.e. 350GB). + :ivar files.UploadSessionLookupError.not_found: The upload session ID was + not found or has expired. Upload sessions are valid for 48 hours. + :ivar UploadSessionOffsetError + files.UploadSessionLookupError.incorrect_offset: The specified offset + was incorrect. See the value for the correct offset. This error may + occur when a previous request was received and processed successfully + but the client did not receive the response, e.g. due to a network + error. + :ivar files.UploadSessionLookupError.closed: You are attempting to append + data to an upload session that has alread been closed (i.e. committed). + :ivar files.UploadSessionLookupError.not_closed: The session must be closed + before calling upload_session/finish_batch. + :ivar files.UploadSessionLookupError.too_large: You can not append to the + upload session because the size of a file should not reach the max file + size limit (i.e. 350GB). """ _catch_all = 'other' @@ -10870,8 +10954,8 @@ def incorrect_offset(cls, val): Create an instance of this class set to the ``incorrect_offset`` tag with value ``val``. - :param UploadSessionOffsetError val: - :rtype: UploadSessionLookupError + :param files.UploadSessionOffsetError val: + :rtype: files.UploadSessionLookupError """ return cls('incorrect_offset', val) @@ -10932,7 +11016,7 @@ def get_incorrect_offset(self): Only call this if :meth:`is_incorrect_offset` is true. - :rtype: UploadSessionOffsetError + :rtype: files.UploadSessionOffsetError """ if not self.is_incorrect_offset(): raise AttributeError("tag 'incorrect_offset' not set") @@ -10948,7 +11032,8 @@ def __repr__(self): class UploadSessionOffsetError(bb.Struct): """ - :ivar correct_offset: The offset up to which data has been collected. + :ivar files.UploadSessionOffsetError.correct_offset: The offset up to which + data has been collected. """ __slots__ = [ @@ -11000,8 +11085,8 @@ def __repr__(self): class UploadSessionStartArg(bb.Struct): """ - :ivar close: If true, the current session will be closed, at which point you - won't be able to call + :ivar files.UploadSessionStartArg.close: If true, the current session will + be closed, at which point you won't be able to call :meth:`dropbox.dropbox.Dropbox.files_upload_session_append` anymore with the current session. """ @@ -11057,7 +11142,8 @@ def __repr__(self): class UploadSessionStartResult(bb.Struct): """ - :ivar session_id: A unique identifier for the upload session. Pass this to + :ivar files.UploadSessionStartResult.session_id: A unique identifier for the + upload session. Pass this to :meth:`dropbox.dropbox.Dropbox.files_upload_session_append` and :meth:`dropbox.dropbox.Dropbox.files_upload_session_finish`. """ @@ -11113,10 +11199,11 @@ def __repr__(self): class UploadWriteFailed(bb.Struct): """ - :ivar reason: The reason why the file couldn't be saved. - :ivar upload_session_id: The upload session ID; data has already been - uploaded to the corresponding upload session and this ID may be used to - retry the commit with + :ivar files.UploadWriteFailed.reason: The reason why the file couldn't be + saved. + :ivar files.UploadWriteFailed.upload_session_id: The upload session ID; data + has already been uploaded to the corresponding upload session and this + ID may be used to retry the commit with :meth:`dropbox.dropbox.Dropbox.files_upload_session_finish`. """ @@ -11146,7 +11233,7 @@ def reason(self): """ The reason why the file couldn't be saved. - :rtype: WriteError + :rtype: files.WriteError """ if self._reason_present: return self._reason_value @@ -11204,7 +11291,8 @@ class VideoMetadata(MediaMetadata): """ Metadata for a video. - :ivar duration: The duration of the video in milliseconds. + :ivar files.VideoMetadata.duration: The duration of the video in + milliseconds. """ __slots__ = [ @@ -11272,10 +11360,10 @@ class WriteConflictError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar file: There's a file in the way. - :ivar folder: There's a folder in the way. - :ivar file_ancestor: There's a file at an ancestor path, so we couldn't - create the required parent folders. + :ivar files.WriteConflictError.file: There's a file in the way. + :ivar files.WriteConflictError.folder: There's a folder in the way. + :ivar files.WriteConflictError.file_ancestor: There's a file at an ancestor + path, so we couldn't create the required parent folders. """ _catch_all = 'other' @@ -11334,22 +11422,23 @@ class WriteError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar Optional[str] malformed_path: The given path does not satisfy the - required path format. Please refer to the :link:`Path formats - documentation + :ivar Optional[str] files.WriteError.malformed_path: The given path does not + satisfy the required path format. Please refer to the :link:`Path + formats documentation https://www.dropbox.com/developers/documentation/http/documentation#path-formats` for more information. - :ivar WriteConflictError conflict: Couldn't write to the target path because - there was something in the way. - :ivar no_write_permission: The user doesn't have permissions to write to the - target location. - :ivar insufficient_space: The user doesn't have enough available space - (bytes) to write more data. - :ivar disallowed_name: Dropbox will not save the file or folder because of - its name. - :ivar team_folder: This endpoint cannot move or delete team folders. - :ivar too_many_write_operations: There are too many write operations in - user's Dropbox. Please retry this request. + :ivar WriteConflictError files.WriteError.conflict: Couldn't write to the + target path because there was something in the way. + :ivar files.WriteError.no_write_permission: The user doesn't have + permissions to write to the target location. + :ivar files.WriteError.insufficient_space: The user doesn't have enough + available space (bytes) to write more data. + :ivar files.WriteError.disallowed_name: Dropbox will not save the file or + folder because of its name. + :ivar files.WriteError.team_folder: This endpoint cannot move or delete team + folders. + :ivar files.WriteError.too_many_write_operations: There are too many write + operations in user's Dropbox. Please retry this request. """ _catch_all = 'other' @@ -11373,7 +11462,7 @@ def malformed_path(cls, val): value ``val``. :param Optional[str] val: - :rtype: WriteError + :rtype: files.WriteError """ return cls('malformed_path', val) @@ -11383,8 +11472,8 @@ def conflict(cls, val): Create an instance of this class set to the ``conflict`` tag with value ``val``. - :param WriteConflictError val: - :rtype: WriteError + :param files.WriteConflictError val: + :rtype: files.WriteError """ return cls('conflict', val) @@ -11474,7 +11563,7 @@ def get_conflict(self): Only call this if :meth:`is_conflict` is true. - :rtype: WriteConflictError + :rtype: files.WriteConflictError """ if not self.is_conflict(): raise AttributeError("tag 'conflict' not set") @@ -11504,15 +11593,16 @@ class WriteMode(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar add: Do not overwrite an existing file if there is a conflict. The - autorename strategy is to append a number to the file name. For example, - "document.txt" might become "document (2).txt". - :ivar overwrite: Always overwrite the existing file. The autorename strategy - is the same as it is for ``add``. - :ivar str update: Overwrite if the given "rev" matches the existing file's - "rev". The autorename strategy is to append the string "conflicted copy" - to the file name. For example, "document.txt" might become "document - (conflicted copy).txt" or "document (Panda's conflicted copy).txt". + :ivar files.WriteMode.add: Do not overwrite an existing file if there is a + conflict. The autorename strategy is to append a number to the file + name. For example, "document.txt" might become "document (2).txt". + :ivar files.WriteMode.overwrite: Always overwrite the existing file. The + autorename strategy is the same as it is for ``add``. + :ivar str files.WriteMode.update: Overwrite if the given "rev" matches the + existing file's "rev". The autorename strategy is to append the string + "conflicted copy" to the file name. For example, "document.txt" might + become "document (conflicted copy).txt" or "document (Panda's conflicted + copy).txt". """ _catch_all = None @@ -11528,7 +11618,7 @@ def update(cls, val): ``val``. :param str val: - :rtype: WriteMode + :rtype: files.WriteMode """ return cls('update', val) diff --git a/dropbox/paper.py b/dropbox/paper.py index 9c74ee9b..830d8518 100644 --- a/dropbox/paper.py +++ b/dropbox/paper.py @@ -27,9 +27,9 @@ class AddMember(bb.Struct): """ - :ivar permission_level: Permission for the user. - :ivar member: User which should be added to the Paper doc. Specify only - email address or Dropbox account ID. + :ivar paper.AddMember.permission_level: Permission for the user. + :ivar paper.AddMember.member: User which should be added to the Paper doc. + Specify only email address or Dropbox account ID. """ __slots__ = [ @@ -58,7 +58,7 @@ def permission_level(self): """ Permission for the user. - :rtype: PaperDocPermissionLevel + :rtype: paper.PaperDocPermissionLevel """ if self._permission_level_present: return self._permission_level_value @@ -113,7 +113,7 @@ def __repr__(self): class RefPaperDoc(bb.Struct): """ - :ivar doc_id: The Paper doc ID. + :ivar paper.RefPaperDoc.doc_id: The Paper doc ID. """ __slots__ = [ @@ -165,12 +165,12 @@ def __repr__(self): class AddPaperDocUser(RefPaperDoc): """ - :ivar members: User which should be added to the Paper doc. Specify only - email address or Dropbox account ID. - :ivar custom_message: A personal message that will be emailed to each - successfully added member. - :ivar quiet: Clients should set this to true if no email message shall be - sent to added users. + :ivar paper.AddPaperDocUser.members: User which should be added to the Paper + doc. Specify only email address or Dropbox account ID. + :ivar paper.AddPaperDocUser.custom_message: A personal message that will be + emailed to each successfully added member. + :ivar paper.AddPaperDocUser.quiet: Clients should set this to true if no + email message shall be sent to added users. """ __slots__ = [ @@ -209,7 +209,7 @@ def members(self): User which should be added to the Paper doc. Specify only email address or Dropbox account ID. - :rtype: list of [AddMember] + :rtype: list of [paper.AddMember] """ if self._members_present: return self._members_value @@ -295,8 +295,10 @@ class AddPaperDocUserMemberResult(bb.Struct): """ Per-member result for :meth:`dropbox.dropbox.Dropbox.paper_docs_users_add`. - :ivar member: One of specified input members. - :ivar result: The outcome of the action on this member. + :ivar paper.AddPaperDocUserMemberResult.member: One of specified input + members. + :ivar paper.AddPaperDocUserMemberResult.result: The outcome of the action on + this member. """ __slots__ = [ @@ -348,7 +350,7 @@ def result(self): """ The outcome of the action on this member. - :rtype: AddPaperDocUserResult + :rtype: paper.AddPaperDocUserResult """ if self._result_present: return self._result_value @@ -383,18 +385,20 @@ class AddPaperDocUserResult(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar success: User was successfully added to the Paper doc. - :ivar unknown_error: Something unexpected happened when trying to add the - user to the Paper doc. - :ivar sharing_outside_team_disabled: The Paper doc can be shared only with - team members. - :ivar daily_limit_reached: The daily limit of how many users can be added to - the Paper doc was reached. - :ivar user_is_owner: Owner's permissions cannot be changed. - :ivar failed_user_data_retrieval: User data could not be retrieved. Clients - should retry. - :ivar permission_already_granted: This user already has the correct - permission to the Paper doc. + :ivar paper.AddPaperDocUserResult.success: User was successfully added to + the Paper doc. + :ivar paper.AddPaperDocUserResult.unknown_error: Something unexpected + happened when trying to add the user to the Paper doc. + :ivar paper.AddPaperDocUserResult.sharing_outside_team_disabled: The Paper + doc can be shared only with team members. + :ivar paper.AddPaperDocUserResult.daily_limit_reached: The daily limit of + how many users can be added to the Paper doc was reached. + :ivar paper.AddPaperDocUserResult.user_is_owner: Owner's permissions cannot + be changed. + :ivar paper.AddPaperDocUserResult.failed_user_data_retrieval: User data + could not be retrieved. Clients should retry. + :ivar paper.AddPaperDocUserResult.permission_already_granted: This user + already has the correct permission to the Paper doc. """ _catch_all = 'other' @@ -489,20 +493,20 @@ def __repr__(self): class Cursor(bb.Struct): """ - :ivar value: The actual cursor value. - :ivar expiration: Expiration time of ``value``. Some cursors might have - expiration time assigned. This is a UTC value after which the cursor is - no longer valid and the API starts returning an error. If cursor expires - a new one needs to be obtained and pagination needs to be restarted. - Some cursors might be short-lived some cursors might be long-lived. This - really depends on the sorting type and order, e.g.: 1. on one hand, - listing docs created by the user, sorted by the created time ascending - will have undefinite expiration because the results cannot change while - the iteration is happening. This cursor would be suitable for long term - polling. 2. on the other hand, listing docs sorted by the last modified - time will have a very short expiration as docs do get modified very - often and the modified time can be changed while the iteration is - happening thus altering the results. + :ivar paper.Cursor.value: The actual cursor value. + :ivar paper.Cursor.expiration: Expiration time of ``value``. Some cursors + might have expiration time assigned. This is a UTC value after which the + cursor is no longer valid and the API starts returning an error. If + cursor expires a new one needs to be obtained and pagination needs to be + restarted. Some cursors might be short-lived some cursors might be + long-lived. This really depends on the sorting type and order, e.g.: 1. + on one hand, listing docs created by the user, sorted by the created + time ascending will have undefinite expiration because the results + cannot change while the iteration is happening. This cursor would be + suitable for long term polling. 2. on the other hand, listing docs + sorted by the last modified time will have a very short expiration as + docs do get modified very often and the modified time can be changed + while the iteration is happening thus altering the results. """ __slots__ = [ @@ -604,8 +608,8 @@ class PaperApiBaseError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar insufficient_permissions: Your account does not have permissions to - perform this action. + :ivar paper.PaperApiBaseError.insufficient_permissions: Your account does + not have permissions to perform this action. """ _catch_all = 'other' @@ -644,7 +648,7 @@ class DocLookupError(PaperApiBaseError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar doc_not_found: The required doc was not found. + :ivar paper.DocLookupError.doc_not_found: The required doc was not found. """ # Attribute is overwritten below the class definition @@ -674,13 +678,14 @@ class DocSubscriptionLevel(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar default: No change email messages unless you're the creator. - :ivar ignore: Ignored: Not shown in pad lists or activity and no email - message is sent. - :ivar every: Subscribed: Shown in pad lists and activity and change email - messages are sent. - :ivar no_email: Unsubscribed: Shown in pad lists, but not in activity and no - change email messages are sent. + :ivar paper.DocSubscriptionLevel.default: No change email messages unless + you're the creator. + :ivar paper.DocSubscriptionLevel.ignore: Ignored: Not shown in pad lists or + activity and no email message is sent. + :ivar paper.DocSubscriptionLevel.every: Subscribed: Shown in pad lists and + activity and change email messages are sent. + :ivar paper.DocSubscriptionLevel.no_email: Unsubscribed: Shown in pad lists, + but not in activity and no change email messages are sent. """ _catch_all = None @@ -741,8 +746,8 @@ class ExportFormat(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar html: The HTML export format. - :ivar markdown: The markdown export format. + :ivar paper.ExportFormat.html: The HTML export format. + :ivar paper.ExportFormat.markdown: The markdown export format. """ _catch_all = 'other' @@ -789,8 +794,9 @@ class Folder(bb.Struct): """ Data structure representing a Paper folder. - :ivar id: Paper folder ID. This ID uniquely identifies the folder. - :ivar name: Paper folder name. + :ivar paper.Folder.id: Paper folder ID. This ID uniquely identifies the + folder. + :ivar paper.Folder.name: Paper folder name. """ __slots__ = [ @@ -880,9 +886,10 @@ class FolderSharingPolicyType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar team: Everyone in your team and anyone directly invited can access - this folder. - :ivar invite_only: Only people directly invited can access this folder. + :ivar paper.FolderSharingPolicyType.team: Everyone in your team and anyone + directly invited can access this folder. + :ivar paper.FolderSharingPolicyType.invite_only: Only people directly + invited can access this folder. """ _catch_all = None @@ -923,10 +930,14 @@ class FolderSubscriptionLevel(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar none: Not shown in activity, no email messages. - :ivar activity_only: Shown in activity, no email messages. - :ivar daily_emails: Shown in activity, daily email messages. - :ivar weekly_emails: Shown in activity, weekly email messages. + :ivar paper.FolderSubscriptionLevel.none: Not shown in activity, no email + messages. + :ivar paper.FolderSubscriptionLevel.activity_only: Shown in activity, no + email messages. + :ivar paper.FolderSubscriptionLevel.daily_emails: Shown in activity, daily + email messages. + :ivar paper.FolderSubscriptionLevel.weekly_emails: Shown in activity, weekly + email messages. """ _catch_all = None @@ -983,10 +994,10 @@ class FoldersContainingPaperDoc(bb.Struct): """ Metadata about Paper folders containing the specififed Paper doc. - :ivar folder_sharing_policy_type: The sharing policy of the folder - containing the Paper doc. - :ivar folders: The folder path. If present the first folder is the root - folder. + :ivar paper.FoldersContainingPaperDoc.folder_sharing_policy_type: The + sharing policy of the folder containing the Paper doc. + :ivar paper.FoldersContainingPaperDoc.folders: The folder path. If present + the first folder is the root folder. """ __slots__ = [ @@ -1015,7 +1026,7 @@ def folder_sharing_policy_type(self): """ The sharing policy of the folder containing the Paper doc. - :rtype: FolderSharingPolicyType + :rtype: paper.FolderSharingPolicyType """ if self._folder_sharing_policy_type_present: return self._folder_sharing_policy_type_value @@ -1041,7 +1052,7 @@ def folders(self): """ The folder path. If present the first folder is the root folder. - :rtype: list of [Folder] + :rtype: list of [paper.Folder] """ if self._folders_present: return self._folders_value @@ -1081,11 +1092,14 @@ class ImportFormat(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar html: The provided data is interpreted as standard HTML. - :ivar markdown: The provided data is interpreted as markdown. Note: The - first line of the provided document will be used as the doc title. - :ivar plain_text: The provided data is interpreted as plain text. Note: The - first line of the provided document will be used as the doc title. + :ivar paper.ImportFormat.html: The provided data is interpreted as standard + HTML. + :ivar paper.ImportFormat.markdown: The provided data is interpreted as + markdown. Note: The first line of the provided document will be used as + the doc title. + :ivar paper.ImportFormat.plain_text: The provided data is interpreted as + plain text. Note: The first line of the provided document will be used + as the doc title. """ _catch_all = 'other' @@ -1140,8 +1154,10 @@ def __repr__(self): class InviteeInfoWithPermissionLevel(bb.Struct): """ - :ivar invitee: Email address invited to the Paper doc. - :ivar permission_level: Permission level for the invitee. + :ivar paper.InviteeInfoWithPermissionLevel.invitee: Email address invited to + the Paper doc. + :ivar paper.InviteeInfoWithPermissionLevel.permission_level: Permission + level for the invitee. """ __slots__ = [ @@ -1193,7 +1209,7 @@ def permission_level(self): """ Permission level for the invitee. - :rtype: PaperDocPermissionLevel + :rtype: paper.PaperDocPermissionLevel """ if self._permission_level_present: return self._permission_level_value @@ -1239,8 +1255,8 @@ def cursor_error(cls, val): Create an instance of this class set to the ``cursor_error`` tag with value ``val``. - :param PaperApiCursorError val: - :rtype: ListDocsCursorError + :param paper.PaperApiCursorError val: + :rtype: paper.ListDocsCursorError """ return cls('cursor_error', val) @@ -1264,7 +1280,7 @@ def get_cursor_error(self): """ Only call this if :meth:`is_cursor_error` is true. - :rtype: PaperApiCursorError + :rtype: paper.PaperApiCursorError """ if not self.is_cursor_error(): raise AttributeError("tag 'cursor_error' not set") @@ -1280,13 +1296,15 @@ def __repr__(self): class ListPaperDocsArgs(bb.Struct): """ - :ivar filter_by: Allows user to specify how the Paper docs should be - filtered. - :ivar sort_by: Allows user to specify how the Paper docs should be sorted. - :ivar sort_order: Allows user to specify the sort order of the result. - :ivar limit: Size limit per batch. The maximum number of docs that can be - retrieved per batch is 1000. Higher value results in invalid arguments - error. + :ivar paper.ListPaperDocsArgs.filter_by: Allows user to specify how the + Paper docs should be filtered. + :ivar paper.ListPaperDocsArgs.sort_by: Allows user to specify how the Paper + docs should be sorted. + :ivar paper.ListPaperDocsArgs.sort_order: Allows user to specify the sort + order of the result. + :ivar paper.ListPaperDocsArgs.limit: Size limit per batch. The maximum + number of docs that can be retrieved per batch is 1000. Higher value + results in invalid arguments error. """ __slots__ = [ @@ -1329,7 +1347,7 @@ def filter_by(self): """ Allows user to specify how the Paper docs should be filtered. - :rtype: ListPaperDocsFilterBy + :rtype: paper.ListPaperDocsFilterBy """ if self._filter_by_present: return self._filter_by_value @@ -1352,7 +1370,7 @@ def sort_by(self): """ Allows user to specify how the Paper docs should be sorted. - :rtype: ListPaperDocsSortBy + :rtype: paper.ListPaperDocsSortBy """ if self._sort_by_present: return self._sort_by_value @@ -1375,7 +1393,7 @@ def sort_order(self): """ Allows user to specify the sort order of the result. - :rtype: ListPaperDocsSortOrder + :rtype: paper.ListPaperDocsSortOrder """ if self._sort_order_present: return self._sort_order_value @@ -1432,7 +1450,7 @@ def __repr__(self): class ListPaperDocsContinueArgs(bb.Struct): """ - :ivar cursor: The cursor obtained from + :ivar paper.ListPaperDocsContinueArgs.cursor: The cursor obtained from :meth:`dropbox.dropbox.Dropbox.paper_docs_list` or :meth:`dropbox.dropbox.Dropbox.paper_docs_list_continue`. Allows for pagination. @@ -1493,10 +1511,10 @@ class ListPaperDocsFilterBy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar docs_accessed: Fetches all Paper doc IDs that the user has ever - accessed. - :ivar docs_created: Fetches only the Paper doc IDs that the user has - created. + :ivar paper.ListPaperDocsFilterBy.docs_accessed: Fetches all Paper doc IDs + that the user has ever accessed. + :ivar paper.ListPaperDocsFilterBy.docs_created: Fetches only the Paper doc + IDs that the user has created. """ _catch_all = 'other' @@ -1541,18 +1559,19 @@ def __repr__(self): class ListPaperDocsResponse(bb.Struct): """ - :ivar doc_ids: The list of Paper doc IDs that can be used to access the - given Paper docs or supplied to other API methods. The list is sorted in - the order specified by the initial call to - :meth:`dropbox.dropbox.Dropbox.paper_docs_list`. - :ivar cursor: Pass the cursor into + :ivar paper.ListPaperDocsResponse.doc_ids: The list of Paper doc IDs that + can be used to access the given Paper docs or supplied to other API + methods. The list is sorted in the order specified by the initial call + to :meth:`dropbox.dropbox.Dropbox.paper_docs_list`. + :ivar paper.ListPaperDocsResponse.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.paper_docs_list_continue` to paginate through all files. The cursor preserves all properties as specified in the original call to :meth:`dropbox.dropbox.Dropbox.paper_docs_list`. - :ivar has_more: Will be set to True if a subsequent call with the provided - cursor to :meth:`dropbox.dropbox.Dropbox.paper_docs_list_continue` - returns immediately with some results. If set to False please allow some - delay before making another call to + :ivar paper.ListPaperDocsResponse.has_more: Will be set to True if a + subsequent call with the provided cursor to + :meth:`dropbox.dropbox.Dropbox.paper_docs_list_continue` returns + immediately with some results. If set to False please allow some delay + before making another call to :meth:`dropbox.dropbox.Dropbox.paper_docs_list_continue`. """ @@ -1618,7 +1637,7 @@ def cursor(self): through all files. The cursor preserves all properties as specified in the original call to :meth:`dropbox.dropbox.Dropbox.paper_docs_list`. - :rtype: Cursor + :rtype: paper.Cursor """ if self._cursor_present: return self._cursor_value @@ -1681,9 +1700,12 @@ class ListPaperDocsSortBy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar accessed: Sorts the Paper docs by the time they were last accessed. - :ivar modified: Sorts the Paper docs by the time they were last modified. - :ivar created: Sorts the Paper docs by the creation time. + :ivar paper.ListPaperDocsSortBy.accessed: Sorts the Paper docs by the time + they were last accessed. + :ivar paper.ListPaperDocsSortBy.modified: Sorts the Paper docs by the time + they were last modified. + :ivar paper.ListPaperDocsSortBy.created: Sorts the Paper docs by the + creation time. """ _catch_all = 'other' @@ -1742,8 +1764,10 @@ class ListPaperDocsSortOrder(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar ascending: Sorts the search result in ascending order. - :ivar descending: Sorts the search result in descending order. + :ivar paper.ListPaperDocsSortOrder.ascending: Sorts the search result in + ascending order. + :ivar paper.ListPaperDocsSortOrder.descending: Sorts the search result in + descending order. """ _catch_all = 'other' @@ -1792,7 +1816,8 @@ class ListUsersCursorError(PaperApiBaseError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar doc_not_found: The required doc was not found. + :ivar paper.ListUsersCursorError.doc_not_found: The required doc was not + found. """ # Attribute is overwritten below the class definition @@ -1804,8 +1829,8 @@ def cursor_error(cls, val): Create an instance of this class set to the ``cursor_error`` tag with value ``val``. - :param PaperApiCursorError val: - :rtype: ListUsersCursorError + :param paper.PaperApiCursorError val: + :rtype: paper.ListUsersCursorError """ return cls('cursor_error', val) @@ -1829,7 +1854,7 @@ def get_cursor_error(self): """ Only call this if :meth:`is_cursor_error` is true. - :rtype: PaperApiCursorError + :rtype: paper.PaperApiCursorError """ if not self.is_cursor_error(): raise AttributeError("tag 'cursor_error' not set") @@ -1845,9 +1870,9 @@ def __repr__(self): class ListUsersOnFolderArgs(RefPaperDoc): """ - :ivar limit: Size limit per batch. The maximum number of users that can be - retrieved per batch is 1000. Higher value results in invalid arguments - error. + :ivar paper.ListUsersOnFolderArgs.limit: Size limit per batch. The maximum + number of users that can be retrieved per batch is 1000. Higher value + results in invalid arguments error. """ __slots__ = [ @@ -1903,7 +1928,7 @@ def __repr__(self): class ListUsersOnFolderContinueArgs(RefPaperDoc): """ - :ivar cursor: The cursor obtained from + :ivar paper.ListUsersOnFolderContinueArgs.cursor: The cursor obtained from :meth:`dropbox.dropbox.Dropbox.paper_docs_folder_users_list` or :meth:`dropbox.dropbox.Dropbox.paper_docs_folder_users_list_continue`. Allows for pagination. @@ -1964,16 +1989,17 @@ def __repr__(self): class ListUsersOnFolderResponse(bb.Struct): """ - :ivar invitees: List of email addresses that are invited on the Paper - folder. - :ivar users: List of users that are invited on the Paper folder. - :ivar cursor: Pass the cursor into + :ivar paper.ListUsersOnFolderResponse.invitees: List of email addresses that + are invited on the Paper folder. + :ivar paper.ListUsersOnFolderResponse.users: List of users that are invited + on the Paper folder. + :ivar paper.ListUsersOnFolderResponse.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.paper_docs_folder_users_list_continue` to paginate through all users. The cursor preserves all properties as specified in the original call to :meth:`dropbox.dropbox.Dropbox.paper_docs_folder_users_list`. - :ivar has_more: Will be set to True if a subsequent call with the provided - cursor to + :ivar paper.ListUsersOnFolderResponse.has_more: Will be set to True if a + subsequent call with the provided cursor to :meth:`dropbox.dropbox.Dropbox.paper_docs_folder_users_list_continue` returns immediately with some results. If set to False please allow some delay before making another call to @@ -2070,7 +2096,7 @@ def cursor(self): specified in the original call to :meth:`dropbox.dropbox.Dropbox.paper_docs_folder_users_list`. - :rtype: Cursor + :rtype: paper.Cursor """ if self._cursor_present: return self._cursor_value @@ -2130,11 +2156,11 @@ def __repr__(self): class ListUsersOnPaperDocArgs(RefPaperDoc): """ - :ivar limit: Size limit per batch. The maximum number of users that can be - retrieved per batch is 1000. Higher value results in invalid arguments - error. - :ivar filter_by: Specify this attribute if you want to obtain users that - have already accessed the Paper doc. + :ivar paper.ListUsersOnPaperDocArgs.limit: Size limit per batch. The maximum + number of users that can be retrieved per batch is 1000. Higher value + results in invalid arguments error. + :ivar paper.ListUsersOnPaperDocArgs.filter_by: Specify this attribute if you + want to obtain users that have already accessed the Paper doc. """ __slots__ = [ @@ -2190,7 +2216,7 @@ def filter_by(self): Specify this attribute if you want to obtain users that have already accessed the Paper doc. - :rtype: UserOnPaperDocFilter + :rtype: paper.UserOnPaperDocFilter """ if self._filter_by_present: return self._filter_by_value @@ -2222,7 +2248,7 @@ def __repr__(self): class ListUsersOnPaperDocContinueArgs(RefPaperDoc): """ - :ivar cursor: The cursor obtained from + :ivar paper.ListUsersOnPaperDocContinueArgs.cursor: The cursor obtained from :meth:`dropbox.dropbox.Dropbox.paper_docs_users_list` or :meth:`dropbox.dropbox.Dropbox.paper_docs_users_list_continue`. Allows for pagination. @@ -2283,21 +2309,23 @@ def __repr__(self): class ListUsersOnPaperDocResponse(bb.Struct): """ - :ivar invitees: List of email addresses with their respective permission - levels that are invited on the Paper doc. - :ivar users: List of users with their respective permission levels that are - invited on the Paper folder. - :ivar doc_owner: The Paper doc owner. This field is populated on every - single response. - :ivar cursor: Pass the cursor into + :ivar paper.ListUsersOnPaperDocResponse.invitees: List of email addresses + with their respective permission levels that are invited on the Paper + doc. + :ivar paper.ListUsersOnPaperDocResponse.users: List of users with their + respective permission levels that are invited on the Paper folder. + :ivar paper.ListUsersOnPaperDocResponse.doc_owner: The Paper doc owner. This + field is populated on every single response. + :ivar paper.ListUsersOnPaperDocResponse.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.paper_docs_users_list_continue` to paginate through all users. The cursor preserves all properties as specified in the original call to :meth:`dropbox.dropbox.Dropbox.paper_docs_users_list`. - :ivar has_more: Will be set to True if a subsequent call with the provided - cursor to :meth:`dropbox.dropbox.Dropbox.paper_docs_users_list_continue` - returns immediately with some results. If set to False please allow some - delay before making another call to + :ivar paper.ListUsersOnPaperDocResponse.has_more: Will be set to True if a + subsequent call with the provided cursor to + :meth:`dropbox.dropbox.Dropbox.paper_docs_users_list_continue` returns + immediately with some results. If set to False please allow some delay + before making another call to :meth:`dropbox.dropbox.Dropbox.paper_docs_users_list_continue`. """ @@ -2349,7 +2377,7 @@ def invitees(self): List of email addresses with their respective permission levels that are invited on the Paper doc. - :rtype: list of [InviteeInfoWithPermissionLevel] + :rtype: list of [paper.InviteeInfoWithPermissionLevel] """ if self._invitees_present: return self._invitees_value @@ -2373,7 +2401,7 @@ def users(self): List of users with their respective permission levels that are invited on the Paper folder. - :rtype: list of [UserInfoWithPermissionLevel] + :rtype: list of [paper.UserInfoWithPermissionLevel] """ if self._users_present: return self._users_value @@ -2423,7 +2451,7 @@ def cursor(self): specified in the original call to :meth:`dropbox.dropbox.Dropbox.paper_docs_users_list`. - :rtype: Cursor + :rtype: paper.Cursor """ if self._cursor_present: return self._cursor_value @@ -2488,11 +2516,15 @@ class PaperApiCursorError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar expired_cursor: The provided cursor is expired. - :ivar invalid_cursor: The provided cursor is invalid. - :ivar wrong_user_in_cursor: The provided cursor contains invalid user. - :ivar reset: Indicates that the cursor has been invalidated. Call the - corresponding non-continue endpoint to obtain a new cursor. + :ivar paper.PaperApiCursorError.expired_cursor: The provided cursor is + expired. + :ivar paper.PaperApiCursorError.invalid_cursor: The provided cursor is + invalid. + :ivar paper.PaperApiCursorError.wrong_user_in_cursor: The provided cursor + contains invalid user. + :ivar paper.PaperApiCursorError.reset: Indicates that the cursor has been + invalidated. Call the corresponding non-continue endpoint to obtain a + new cursor. """ _catch_all = 'other' @@ -2557,10 +2589,10 @@ def __repr__(self): class PaperDocCreateArgs(bb.Struct): """ - :ivar parent_folder_id: The Paper folder ID where the Paper document should - be created. The API user has to have write access to this folder or - error is thrown. - :ivar import_format: The format of provided data. + :ivar paper.PaperDocCreateArgs.parent_folder_id: The Paper folder ID where + the Paper document should be created. The API user has to have write + access to this folder or error is thrown. + :ivar paper.PaperDocCreateArgs.import_format: The format of provided data. """ __slots__ = [ @@ -2616,7 +2648,7 @@ def import_format(self): """ The format of provided data. - :rtype: ImportFormat + :rtype: paper.ImportFormat """ if self._import_format_present: return self._import_format_value @@ -2651,14 +2683,15 @@ class PaperDocCreateError(PaperApiBaseError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar content_malformed: The provided content was malformed and cannot be - imported to Paper. - :ivar folder_not_found: The specified Paper folder is cannot be found. - :ivar doc_length_exceeded: The newly created Paper doc would be too large. - Please split the content into multiple docs. - :ivar image_size_exceeded: The imported document contains an image that is - too large. The current limit is 1MB. Note: This only applies to HTML - with data uri. + :ivar paper.PaperDocCreateError.content_malformed: The provided content was + malformed and cannot be imported to Paper. + :ivar paper.PaperDocCreateError.folder_not_found: The specified Paper folder + is cannot be found. + :ivar paper.PaperDocCreateError.doc_length_exceeded: The newly created Paper + doc would be too large. Please split the content into multiple docs. + :ivar paper.PaperDocCreateError.image_size_exceeded: The imported document + contains an image that is too large. The current limit is 1MB. Note: + This only applies to HTML with data uri. """ # Attribute is overwritten below the class definition @@ -2712,9 +2745,11 @@ def __repr__(self): class PaperDocCreateUpdateResult(bb.Struct): """ - :ivar doc_id: Doc ID of the newly created doc. - :ivar revision: The Paper doc revision. Simply an ever increasing number. - :ivar title: The Paper doc title. + :ivar paper.PaperDocCreateUpdateResult.doc_id: Doc ID of the newly created + doc. + :ivar paper.PaperDocCreateUpdateResult.revision: The Paper doc revision. + Simply an ever increasing number. + :ivar paper.PaperDocCreateUpdateResult.title: The Paper doc title. """ __slots__ = [ @@ -2847,7 +2882,7 @@ def __init__(self, @property def export_format(self): """ - :rtype: ExportFormat + :rtype: paper.ExportFormat """ if self._export_format_present: return self._export_format_value @@ -2878,11 +2913,12 @@ def __repr__(self): class PaperDocExportResult(bb.Struct): """ - :ivar owner: The Paper doc owner's email address. - :ivar title: The Paper doc title. - :ivar revision: The Paper doc revision. Simply an ever increasing number. - :ivar mime_type: MIME type of the export. This corresponds to - :class:`ExportFormat` specified in the request. + :ivar paper.PaperDocExportResult.owner: The Paper doc owner's email address. + :ivar paper.PaperDocExportResult.title: The Paper doc title. + :ivar paper.PaperDocExportResult.revision: The Paper doc revision. Simply an + ever increasing number. + :ivar paper.PaperDocExportResult.mime_type: MIME type of the export. This + corresponds to :class:`ExportFormat` specified in the request. """ __slots__ = [ @@ -3032,8 +3068,10 @@ class PaperDocPermissionLevel(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar edit: User will be granted edit permissions. - :ivar view_and_comment: User will be granted view and comment permissions. + :ivar paper.PaperDocPermissionLevel.edit: User will be granted edit + permissions. + :ivar paper.PaperDocPermissionLevel.view_and_comment: User will be granted + view and comment permissions. """ _catch_all = 'other' @@ -3078,8 +3116,8 @@ def __repr__(self): class PaperDocSharingPolicy(RefPaperDoc): """ - :ivar sharing_policy: The default sharing policy to be set for the Paper - doc. + :ivar paper.PaperDocSharingPolicy.sharing_policy: The default sharing policy + to be set for the Paper doc. """ __slots__ = [ @@ -3103,7 +3141,7 @@ def sharing_policy(self): """ The default sharing policy to be set for the Paper doc. - :rtype: SharingPolicy + :rtype: paper.SharingPolicy """ if self._sharing_policy_present: return self._sharing_policy_value @@ -3134,11 +3172,12 @@ def __repr__(self): class PaperDocUpdateArgs(RefPaperDoc): """ - :ivar doc_update_policy: The policy used for the current update call. - :ivar revision: The latest doc revision. This value must match the head - revision or an error code will be returned. This is to prevent colliding - writes. - :ivar import_format: The format of provided data. + :ivar paper.PaperDocUpdateArgs.doc_update_policy: The policy used for the + current update call. + :ivar paper.PaperDocUpdateArgs.revision: The latest doc revision. This value + must match the head revision or an error code will be returned. This is + to prevent colliding writes. + :ivar paper.PaperDocUpdateArgs.import_format: The format of provided data. """ __slots__ = [ @@ -3176,7 +3215,7 @@ def doc_update_policy(self): """ The policy used for the current update call. - :rtype: PaperDocUpdatePolicy + :rtype: paper.PaperDocUpdatePolicy """ if self._doc_update_policy_present: return self._doc_update_policy_value @@ -3223,7 +3262,7 @@ def import_format(self): """ The format of provided data. - :rtype: ImportFormat + :rtype: paper.ImportFormat """ if self._import_format_present: return self._import_format_value @@ -3260,17 +3299,19 @@ class PaperDocUpdateError(DocLookupError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar content_malformed: The provided content was malformed and cannot be - imported to Paper. - :ivar revision_mismatch: The provided revision does not match the document - head. - :ivar doc_length_exceeded: The newly created Paper doc would be too large, - split the content into multiple docs. - :ivar image_size_exceeded: The imported document contains an image that is - too large. The current limit is 1MB. Note: This only applies to HTML - with data uri. - :ivar doc_archived: This operation is not allowed on archived Paper docs. - :ivar doc_deleted: This operation is not allowed on deleted Paper docs. + :ivar paper.PaperDocUpdateError.content_malformed: The provided content was + malformed and cannot be imported to Paper. + :ivar paper.PaperDocUpdateError.revision_mismatch: The provided revision + does not match the document head. + :ivar paper.PaperDocUpdateError.doc_length_exceeded: The newly created Paper + doc would be too large, split the content into multiple docs. + :ivar paper.PaperDocUpdateError.image_size_exceeded: The imported document + contains an image that is too large. The current limit is 1MB. Note: + This only applies to HTML with data uri. + :ivar paper.PaperDocUpdateError.doc_archived: This operation is not allowed + on archived Paper docs. + :ivar paper.PaperDocUpdateError.doc_deleted: This operation is not allowed + on deleted Paper docs. """ # Attribute is overwritten below the class definition @@ -3348,11 +3389,12 @@ class PaperDocUpdatePolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar append: The content will be appended to the doc. - :ivar prepend: The content will be prepended to the doc. Note: the doc title - will not be affected. - :ivar overwrite_all: The document will be overwitten at the head with the - provided content. + :ivar paper.PaperDocUpdatePolicy.append: The content will be appended to the + doc. + :ivar paper.PaperDocUpdatePolicy.prepend: The content will be prepended to + the doc. Note: the doc title will not be affected. + :ivar paper.PaperDocUpdatePolicy.overwrite_all: The document will be + overwitten at the head with the provided content. """ _catch_all = 'other' @@ -3407,8 +3449,8 @@ def __repr__(self): class RemovePaperDocUser(RefPaperDoc): """ - :ivar member: User which should be removed from the Paper doc. Specify only - email address or Dropbox account ID. + :ivar paper.RemovePaperDocUser.member: User which should be removed from the + Paper doc. Specify only email address or Dropbox account ID. """ __slots__ = [ @@ -3466,9 +3508,10 @@ class SharingPolicy(bb.Struct): """ Sharing policy of Paper doc. - :ivar public_sharing_policy: This value applies to the non-team members. - :ivar team_sharing_policy: This value applies to the team members only. The - value is null for all personal accounts. + :ivar paper.SharingPolicy.public_sharing_policy: This value applies to the + non-team members. + :ivar paper.SharingPolicy.team_sharing_policy: This value applies to the + team members only. The value is null for all personal accounts. """ __slots__ = [ @@ -3497,7 +3540,7 @@ def public_sharing_policy(self): """ This value applies to the non-team members. - :rtype: SharingPublicPolicyType + :rtype: paper.SharingPublicPolicyType """ if self._public_sharing_policy_present: return self._public_sharing_policy_value @@ -3524,7 +3567,7 @@ def team_sharing_policy(self): This value applies to the team members only. The value is null for all personal accounts. - :rtype: SharingTeamPolicyType + :rtype: paper.SharingTeamPolicyType """ if self._team_sharing_policy_present: return self._team_sharing_policy_value @@ -3564,11 +3607,12 @@ class SharingTeamPolicyType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar people_with_link_can_edit: Users who have a link to this doc can edit - it. - :ivar people_with_link_can_view_and_comment: Users who have a link to this - doc can view and comment on it. - :ivar invite_only: Users must be explicitly invited to this doc. + :ivar paper.SharingTeamPolicyType.people_with_link_can_edit: Users who have + a link to this doc can edit it. + :ivar paper.SharingTeamPolicyType.people_with_link_can_view_and_comment: + Users who have a link to this doc can view and comment on it. + :ivar paper.SharingTeamPolicyType.invite_only: Users must be explicitly + invited to this doc. """ _catch_all = None @@ -3617,8 +3661,8 @@ class SharingPublicPolicyType(SharingTeamPolicyType): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled: Value used to indicate that doc sharing is enabled only - within team. + :ivar paper.SharingPublicPolicyType.disabled: Value used to indicate that + doc sharing is enabled only within team. """ # Attribute is overwritten below the class definition @@ -3642,8 +3686,9 @@ def __repr__(self): class UserInfoWithPermissionLevel(bb.Struct): """ - :ivar user: User shared on the Paper doc. - :ivar permission_level: Permission level for the user. + :ivar paper.UserInfoWithPermissionLevel.user: User shared on the Paper doc. + :ivar paper.UserInfoWithPermissionLevel.permission_level: Permission level + for the user. """ __slots__ = [ @@ -3695,7 +3740,7 @@ def permission_level(self): """ Permission level for the user. - :rtype: PaperDocPermissionLevel + :rtype: paper.PaperDocPermissionLevel """ if self._permission_level_present: return self._permission_level_value @@ -3730,9 +3775,11 @@ class UserOnPaperDocFilter(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar visited: all users who have visited the Paper doc. - :ivar shared: All uses who are shared on the Paper doc. This includes all - users who have visited the Paper doc as well as those who have not. + :ivar paper.UserOnPaperDocFilter.visited: all users who have visited the + Paper doc. + :ivar paper.UserOnPaperDocFilter.shared: All uses who are shared on the + Paper doc. This includes all users who have visited the Paper doc as + well as those who have not. """ _catch_all = 'other' diff --git a/dropbox/seen_state.py b/dropbox/seen_state.py index c1853d4a..69ada108 100644 --- a/dropbox/seen_state.py +++ b/dropbox/seen_state.py @@ -20,10 +20,13 @@ class PlatformType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar web: The content was viewed on the web. - :ivar mobile: The content was viewed on a mobile client. - :ivar desktop: The content was viewed on a desktop client. - :ivar unknown: The content was viewed on an unknown platform. + :ivar seen_state.PlatformType.web: The content was viewed on the web. + :ivar seen_state.PlatformType.mobile: The content was viewed on a mobile + client. + :ivar seen_state.PlatformType.desktop: The content was viewed on a desktop + client. + :ivar seen_state.PlatformType.unknown: The content was viewed on an unknown + platform. """ _catch_all = 'other' diff --git a/dropbox/sharing.py b/dropbox/sharing.py index e87a81fd..f4267584 100644 --- a/dropbox/sharing.py +++ b/dropbox/sharing.py @@ -43,10 +43,10 @@ class AccessInheritance(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar inherit: The shared folder inherits its members from the parent - folder. - :ivar no_inherit: The shared folder does not inherit its members from the - parent folder. + :ivar sharing.AccessInheritance.inherit: The shared folder inherits its + members from the parent folder. + :ivar sharing.AccessInheritance.no_inherit: The shared folder does not + inherit its members from the parent folder. """ _catch_all = 'other' @@ -97,13 +97,16 @@ class AccessLevel(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar owner: The collaborator is the owner of the shared folder. Owners can - view and edit the shared folder as well as set the folder's policies - using :meth:`dropbox.dropbox.Dropbox.sharing_update_folder_policy`. - :ivar editor: The collaborator can both view and edit the shared folder. - :ivar viewer: The collaborator can only view the shared folder. - :ivar viewer_no_comment: The collaborator can only view the shared folder - and does not have any access to comments. + :ivar sharing.AccessLevel.owner: The collaborator is the owner of the shared + folder. Owners can view and edit the shared folder as well as set the + folder's policies using + :meth:`dropbox.dropbox.Dropbox.sharing_update_folder_policy`. + :ivar sharing.AccessLevel.editor: The collaborator can both view and edit + the shared folder. + :ivar sharing.AccessLevel.viewer: The collaborator can only view the shared + folder. + :ivar sharing.AccessLevel.viewer_no_comment: The collaborator can only view + the shared folder and does not have any access to comments. """ _catch_all = 'other' @@ -175,9 +178,9 @@ class AclUpdatePolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar owner: Only the owner can update the ACL. - :ivar editors: Any editor can update the ACL. This may be further restricted - to editors on the same team. + :ivar sharing.AclUpdatePolicy.owner: Only the owner can update the ACL. + :ivar sharing.AclUpdatePolicy.editors: Any editor can update the ACL. This + may be further restricted to editors on the same team. """ _catch_all = 'other' @@ -224,17 +227,18 @@ class AddFileMemberArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox.Dropbox.sharing_add_file_member`. - :ivar file: File to which to add members. - :ivar members: Members to add. Note that even an email address is given, - this may result in a user being directy added to the membership if that - email is the user's main account email. - :ivar custom_message: Message to send to added members in their invitation. - :ivar quiet: Whether added members should be notified via device - notifications of their invitation. - :ivar access_level: AccessLevel union object, describing what access level - we want to give new members. - :ivar add_message_as_comment: If the custom message should be added as a - comment on the file. + :ivar sharing.AddFileMemberArgs.file: File to which to add members. + :ivar sharing.AddFileMemberArgs.members: Members to add. Note that even an + email address is given, this may result in a user being directy added to + the membership if that email is the user's main account email. + :ivar sharing.AddFileMemberArgs.custom_message: Message to send to added + members in their invitation. + :ivar sharing.AddFileMemberArgs.quiet: Whether added members should be + notified via device notifications of their invitation. + :ivar sharing.AddFileMemberArgs.access_level: AccessLevel union object, + describing what access level we want to give new members. + :ivar sharing.AddFileMemberArgs.add_message_as_comment: If the custom + message should be added as a comment on the file. """ __slots__ = [ @@ -316,7 +320,7 @@ def members(self): result in a user being directy added to the membership if that email is the user's main account email. - :rtype: list of [MemberSelector] + :rtype: list of [sharing.MemberSelector] """ if self._members_present: return self._members_value @@ -390,7 +394,7 @@ def access_level(self): AccessLevel union object, describing what access level we want to give new members. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_level_present: return self._access_level_value @@ -454,9 +458,10 @@ class AddFileMemberError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar rate_limit: The user has reached the rate limit for invitations. - :ivar invalid_comment: The custom message did not pass comment permissions - checks. + :ivar sharing.AddFileMemberError.rate_limit: The user has reached the rate + limit for invitations. + :ivar sharing.AddFileMemberError.invalid_comment: The custom message did not + pass comment permissions checks. """ _catch_all = 'other' @@ -473,8 +478,8 @@ def user_error(cls, val): Create an instance of this class set to the ``user_error`` tag with value ``val``. - :param SharingUserError val: - :rtype: AddFileMemberError + :param sharing.SharingUserError val: + :rtype: sharing.AddFileMemberError """ return cls('user_error', val) @@ -484,8 +489,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: AddFileMemberError + :param sharing.SharingFileAccessError val: + :rtype: sharing.AddFileMemberError """ return cls('access_error', val) @@ -533,7 +538,7 @@ def get_user_error(self): """ Only call this if :meth:`is_user_error` is true. - :rtype: SharingUserError + :rtype: sharing.SharingUserError """ if not self.is_user_error(): raise AttributeError("tag 'user_error' not set") @@ -543,7 +548,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -559,13 +564,14 @@ def __repr__(self): class AddFolderMemberArg(bb.Struct): """ - :ivar shared_folder_id: The ID for the shared folder. - :ivar members: The intended list of members to add. Added members will - receive invites to join the shared folder. - :ivar quiet: Whether added members should be notified via email and device - notifications of their invite. - :ivar custom_message: Optional message to display to added members in their - invitation. + :ivar sharing.AddFolderMemberArg.shared_folder_id: The ID for the shared + folder. + :ivar sharing.AddFolderMemberArg.members: The intended list of members to + add. Added members will receive invites to join the shared folder. + :ivar sharing.AddFolderMemberArg.quiet: Whether added members should be + notified via email and device notifications of their invite. + :ivar sharing.AddFolderMemberArg.custom_message: Optional message to display + to added members in their invitation. """ __slots__ = [ @@ -632,7 +638,7 @@ def members(self): The intended list of members to add. Added members will receive invites to join the shared folder. - :rtype: list of [AddMember] + :rtype: list of [sharing.AddMember] """ if self._members_present: return self._members_value @@ -719,26 +725,30 @@ class AddFolderMemberError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar SharedFolderAccessError access_error: Unable to access shared folder. - :ivar email_unverified: The current user's e-mail address is unverified. - :ivar AddMemberSelectorError bad_member: ``AddFolderMemberArg.members`` - contains a bad invitation recipient. - :ivar cant_share_outside_team: Your team policy does not allow sharing - outside of the team. - :ivar int too_many_members: The value is the member limit that was reached. - :ivar int too_many_pending_invites: The value is the pending invite limit - that was reached. - :ivar rate_limit: The current user has hit the limit of invites they can - send per day. Try again in 24 hours. - :ivar too_many_invitees: The current user is trying to share with too many - people at once. - :ivar insufficient_plan: The current user's account doesn't support this - action. An example of this is when adding a read-only member. This - action can only be performed by users that have upgraded to a Pro or - Business plan. - :ivar team_folder: This action cannot be performed on a team shared folder. - :ivar no_permission: The current user does not have permission to perform - this action. + :ivar SharedFolderAccessError sharing.AddFolderMemberError.access_error: + Unable to access shared folder. + :ivar sharing.AddFolderMemberError.email_unverified: The current user's + e-mail address is unverified. + :ivar AddMemberSelectorError sharing.AddFolderMemberError.bad_member: + ``AddFolderMemberArg.members`` contains a bad invitation recipient. + :ivar sharing.AddFolderMemberError.cant_share_outside_team: Your team policy + does not allow sharing outside of the team. + :ivar int sharing.AddFolderMemberError.too_many_members: The value is the + member limit that was reached. + :ivar int sharing.AddFolderMemberError.too_many_pending_invites: The value + is the pending invite limit that was reached. + :ivar sharing.AddFolderMemberError.rate_limit: The current user has hit the + limit of invites they can send per day. Try again in 24 hours. + :ivar sharing.AddFolderMemberError.too_many_invitees: The current user is + trying to share with too many people at once. + :ivar sharing.AddFolderMemberError.insufficient_plan: The current user's + account doesn't support this action. An example of this is when adding a + read-only member. This action can only be performed by users that have + upgraded to a Pro or Business plan. + :ivar sharing.AddFolderMemberError.team_folder: This action cannot be + performed on a team shared folder. + :ivar sharing.AddFolderMemberError.no_permission: The current user does not + have permission to perform this action. """ _catch_all = 'other' @@ -765,8 +775,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: AddFolderMemberError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.AddFolderMemberError """ return cls('access_error', val) @@ -776,8 +786,8 @@ def bad_member(cls, val): Create an instance of this class set to the ``bad_member`` tag with value ``val``. - :param AddMemberSelectorError val: - :rtype: AddFolderMemberError + :param sharing.AddMemberSelectorError val: + :rtype: sharing.AddFolderMemberError """ return cls('bad_member', val) @@ -788,7 +798,7 @@ def too_many_members(cls, val): with value ``val``. :param int val: - :rtype: AddFolderMemberError + :rtype: sharing.AddFolderMemberError """ return cls('too_many_members', val) @@ -799,7 +809,7 @@ def too_many_pending_invites(cls, val): tag with value ``val``. :param int val: - :rtype: AddFolderMemberError + :rtype: sharing.AddFolderMemberError """ return cls('too_many_pending_invites', val) @@ -905,7 +915,7 @@ def get_access_error(self): Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -917,7 +927,7 @@ def get_bad_member(self): Only call this if :meth:`is_bad_member` is true. - :rtype: AddMemberSelectorError + :rtype: sharing.AddMemberSelectorError """ if not self.is_bad_member(): raise AttributeError("tag 'bad_member' not set") @@ -960,9 +970,9 @@ class AddMember(bb.Struct): The member and type of access the member should have when added to a shared folder. - :ivar member: The member to add to the shared folder. - :ivar access_level: The access level to grant ``member`` to the shared - folder. ``AccessLevel.owner`` is disallowed. + :ivar sharing.AddMember.member: The member to add to the shared folder. + :ivar sharing.AddMember.access_level: The access level to grant ``member`` + to the shared folder. ``AccessLevel.owner`` is disallowed. """ __slots__ = [ @@ -991,7 +1001,7 @@ def member(self): """ The member to add to the shared folder. - :rtype: MemberSelector + :rtype: sharing.MemberSelector """ if self._member_present: return self._member_value @@ -1015,7 +1025,7 @@ def access_level(self): The access level to grant ``member`` to the shared folder. ``AccessLevel.owner`` is disallowed. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_level_present: return self._access_level_value @@ -1050,18 +1060,19 @@ class AddMemberSelectorError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar automatic_group: Automatically created groups can only be added to - team folders. - :ivar str invalid_dropbox_id: The value is the ID that could not be - identified. - :ivar str invalid_email: The value is the e-email address that is malformed. - :ivar str unverified_dropbox_id: The value is the ID of the Dropbox user - with an unverified e-mail address. Invite unverified users by e-mail - address instead of by their Dropbox ID. - :ivar group_deleted: At least one of the specified groups in - ``AddFolderMemberArg.members`` is deleted. - :ivar group_not_on_team: Sharing to a group that is not on the current - user's team. + :ivar sharing.AddMemberSelectorError.automatic_group: Automatically created + groups can only be added to team folders. + :ivar str sharing.AddMemberSelectorError.invalid_dropbox_id: The value is + the ID that could not be identified. + :ivar str sharing.AddMemberSelectorError.invalid_email: The value is the + e-email address that is malformed. + :ivar str sharing.AddMemberSelectorError.unverified_dropbox_id: The value is + the ID of the Dropbox user with an unverified e-mail address. Invite + unverified users by e-mail address instead of by their Dropbox ID. + :ivar sharing.AddMemberSelectorError.group_deleted: At least one of the + specified groups in ``AddFolderMemberArg.members`` is deleted. + :ivar sharing.AddMemberSelectorError.group_not_on_team: Sharing to a group + that is not on the current user's team. """ _catch_all = 'other' @@ -1081,7 +1092,7 @@ def invalid_dropbox_id(cls, val): with value ``val``. :param str val: - :rtype: AddMemberSelectorError + :rtype: sharing.AddMemberSelectorError """ return cls('invalid_dropbox_id', val) @@ -1092,7 +1103,7 @@ def invalid_email(cls, val): value ``val``. :param str val: - :rtype: AddMemberSelectorError + :rtype: sharing.AddMemberSelectorError """ return cls('invalid_email', val) @@ -1103,7 +1114,7 @@ def unverified_dropbox_id(cls, val): tag with value ``val``. :param str val: - :rtype: AddMemberSelectorError + :rtype: sharing.AddMemberSelectorError """ return cls('unverified_dropbox_id', val) @@ -1214,7 +1225,8 @@ class AudienceExceptionContentInfo(bb.Struct): Information about the content that has a link audience different than that of this folder. - :ivar name: The name of the content, which is either a file or a folder. + :ivar sharing.AudienceExceptionContentInfo.name: The name of the content, + which is either a file or a folder. """ __slots__ = [ @@ -1270,9 +1282,10 @@ class AudienceExceptions(bb.Struct): folder that has a different audience than the link on this folder. This is only returned for folders. - :ivar exceptions: A truncated list of some of the content that is an - exception. The length of this list could be smaller than the count since - it is only a sample but will not be empty as long as count is not 0. + :ivar sharing.AudienceExceptions.exceptions: A truncated list of some of the + content that is an exception. The length of this list could be smaller + than the count since it is only a sample but will not be empty as long + as count is not 0. """ __slots__ = [ @@ -1324,7 +1337,7 @@ def exceptions(self): of this list could be smaller than the count since it is only a sample but will not be empty as long as count is not 0. - :rtype: list of [AudienceExceptionContentInfo] + :rtype: list of [sharing.AudienceExceptionContentInfo] """ if self._exceptions_present: return self._exceptions_value @@ -1358,9 +1371,12 @@ class AudienceRestrictingSharedFolder(bb.Struct): Information about the shared folder that prevents the link audience for this link from being more restrictive. - :ivar shared_folder_id: The ID of the shared folder. - :ivar name: The name of the shared folder. - :ivar audience: The link audience of the shared folder. + :ivar sharing.AudienceRestrictingSharedFolder.shared_folder_id: The ID of + the shared folder. + :ivar sharing.AudienceRestrictingSharedFolder.name: The name of the shared + folder. + :ivar sharing.AudienceRestrictingSharedFolder.audience: The link audience of + the shared folder. """ __slots__ = [ @@ -1442,7 +1458,7 @@ def audience(self): """ The link audience of the shared folder. - :rtype: LinkAudience + :rtype: sharing.LinkAudience """ if self._audience_present: return self._audience_value @@ -1477,9 +1493,12 @@ class ChangeFileMemberAccessArgs(bb.Struct): Arguments for :meth:`dropbox.dropbox.Dropbox.sharing_change_file_member_access`. - :ivar file: File for which we are changing a member's access. - :ivar member: The member whose access we are changing. - :ivar access_level: The new access level for the member. + :ivar sharing.ChangeFileMemberAccessArgs.file: File for which we are + changing a member's access. + :ivar sharing.ChangeFileMemberAccessArgs.member: The member whose access we + are changing. + :ivar sharing.ChangeFileMemberAccessArgs.access_level: The new access level + for the member. """ __slots__ = [ @@ -1538,7 +1557,7 @@ def member(self): """ The member whose access we are changing. - :rtype: MemberSelector + :rtype: sharing.MemberSelector """ if self._member_present: return self._member_value @@ -1561,7 +1580,7 @@ def access_level(self): """ The new access level for the member. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_level_present: return self._access_level_value @@ -1596,9 +1615,10 @@ class LinkMetadata(bb.Struct): Metadata for a shared link. This can be either a :class:`PathLinkMetadata` or :class:`CollectionLinkMetadata`. - :ivar url: URL of the shared link. - :ivar visibility: Who can access the link. - :ivar expires: Expiration time, if set. By default the link won't expire. + :ivar sharing.LinkMetadata.url: URL of the shared link. + :ivar sharing.LinkMetadata.visibility: Who can access the link. + :ivar sharing.LinkMetadata.expires: Expiration time, if set. By default the + link won't expire. """ __slots__ = [ @@ -1657,7 +1677,7 @@ def visibility(self): """ Who can access the link. - :rtype: Visibility + :rtype: sharing.Visibility """ if self._visibility_present: return self._visibility_value @@ -1745,12 +1765,13 @@ def __repr__(self): class CreateSharedLinkArg(bb.Struct): """ - :ivar path: The path to share. - :ivar short_url: Whether to return a shortened URL. - :ivar pending_upload: If it's okay to share a path that does not yet exist, - set this to either ``PendingUploadMode.file`` or - ``PendingUploadMode.folder`` to indicate whether to assume it's a file - or folder. + :ivar sharing.CreateSharedLinkArg.path: The path to share. + :ivar sharing.CreateSharedLinkArg.short_url: Whether to return a shortened + URL. + :ivar sharing.CreateSharedLinkArg.pending_upload: If it's okay to share a + path that does not yet exist, set this to either + ``PendingUploadMode.file`` or ``PendingUploadMode.folder`` to indicate + whether to assume it's a file or folder. """ __slots__ = [ @@ -1834,7 +1855,7 @@ def pending_upload(self): ``PendingUploadMode.file`` or ``PendingUploadMode.folder`` to indicate whether to assume it's a file or folder. - :rtype: PendingUploadMode + :rtype: sharing.PendingUploadMode """ if self._pending_upload_present: return self._pending_upload_value @@ -1885,7 +1906,7 @@ def path(cls, val): ``val``. :param files.LookupError val: - :rtype: CreateSharedLinkError + :rtype: sharing.CreateSharedLinkError """ return cls('path', val) @@ -1925,8 +1946,10 @@ def __repr__(self): class CreateSharedLinkWithSettingsArg(bb.Struct): """ - :ivar path: The path to be shared by the shared link. - :ivar settings: The requested settings for the newly created shared link. + :ivar sharing.CreateSharedLinkWithSettingsArg.path: The path to be shared by + the shared link. + :ivar sharing.CreateSharedLinkWithSettingsArg.settings: The requested + settings for the newly created shared link. """ __slots__ = [ @@ -1978,7 +2001,7 @@ def settings(self): """ The requested settings for the newly created shared link. - :rtype: SharedLinkSettings + :rtype: sharing.SharedLinkSettings """ if self._settings_present: return self._settings_value @@ -2016,13 +2039,17 @@ class CreateSharedLinkWithSettingsError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar email_not_verified: User's email should be verified. - :ivar shared_link_already_exists: The shared link already exists. You can - call :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links` to get - the existing link. - :ivar SharedLinkSettingsError settings_error: There is an error with the - given settings. - :ivar access_denied: Access to the requested path is forbidden. + :ivar sharing.CreateSharedLinkWithSettingsError.email_not_verified: User's + email should be verified. + :ivar sharing.CreateSharedLinkWithSettingsError.shared_link_already_exists: + The shared link already exists. You can call + :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links` to get the + existing link. + :ivar SharedLinkSettingsError + sharing.CreateSharedLinkWithSettingsError.settings_error: There is an + error with the given settings. + :ivar sharing.CreateSharedLinkWithSettingsError.access_denied: Access to the + requested path is forbidden. """ _catch_all = None @@ -2040,7 +2067,7 @@ def path(cls, val): ``val``. :param files.LookupError val: - :rtype: CreateSharedLinkWithSettingsError + :rtype: sharing.CreateSharedLinkWithSettingsError """ return cls('path', val) @@ -2050,8 +2077,8 @@ def settings_error(cls, val): Create an instance of this class set to the ``settings_error`` tag with value ``val``. - :param SharedLinkSettingsError val: - :rtype: CreateSharedLinkWithSettingsError + :param sharing.SharedLinkSettingsError val: + :rtype: sharing.CreateSharedLinkWithSettingsError """ return cls('settings_error', val) @@ -2111,7 +2138,7 @@ def get_settings_error(self): Only call this if :meth:`is_settings_error` is true. - :rtype: SharedLinkSettingsError + :rtype: sharing.SharedLinkSettingsError """ if not self.is_settings_error(): raise AttributeError("tag 'settings_error' not set") @@ -2127,21 +2154,26 @@ def __repr__(self): class SharedContentLinkMetadataBase(bb.Struct): """ - :ivar access_level: The access level on the link for this file. - :ivar audience_options: The audience options that are available for the - content. Some audience options may be unavailable. For example, - team_only may be unavailable if the content is not owned by a user on a - team. The 'default' audience option is always available if the user can - modify link settings. - :ivar audience_restricting_shared_folder: The shared folder that prevents - the link audience for this link from being more restrictive. - :ivar current_audience: The current audience of the link. - :ivar expiry: Whether the link has an expiry set on it. A link with an - expiry will have its audience changed to members when the expiry is - reached. - :ivar link_permissions: A list of permissions for actions you can perform on - the link. - :ivar password_protected: Whether the link is protected by a password. + :ivar sharing.SharedContentLinkMetadataBase.access_level: The access level + on the link for this file. + :ivar sharing.SharedContentLinkMetadataBase.audience_options: The audience + options that are available for the content. Some audience options may be + unavailable. For example, team_only may be unavailable if the content is + not owned by a user on a team. The 'default' audience option is always + available if the user can modify link settings. + :ivar + sharing.SharedContentLinkMetadataBase.audience_restricting_shared_folder: + The shared folder that prevents the link audience for this link from + being more restrictive. + :ivar sharing.SharedContentLinkMetadataBase.current_audience: The current + audience of the link. + :ivar sharing.SharedContentLinkMetadataBase.expiry: Whether the link has an + expiry set on it. A link with an expiry will have its audience changed + to members when the expiry is reached. + :ivar sharing.SharedContentLinkMetadataBase.link_permissions: A list of + permissions for actions you can perform on the link. + :ivar sharing.SharedContentLinkMetadataBase.password_protected: Whether the + link is protected by a password. """ __slots__ = [ @@ -2205,7 +2237,7 @@ def access_level(self): """ The access level on the link for this file. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_level_present: return self._access_level_value @@ -2234,7 +2266,7 @@ def audience_options(self): the content is not owned by a user on a team. The 'default' audience option is always available if the user can modify link settings. - :rtype: list of [LinkAudience] + :rtype: list of [sharing.LinkAudience] """ if self._audience_options_present: return self._audience_options_value @@ -2258,7 +2290,7 @@ def audience_restricting_shared_folder(self): The shared folder that prevents the link audience for this link from being more restrictive. - :rtype: AudienceRestrictingSharedFolder + :rtype: sharing.AudienceRestrictingSharedFolder """ if self._audience_restricting_shared_folder_present: return self._audience_restricting_shared_folder_value @@ -2284,7 +2316,7 @@ def current_audience(self): """ The current audience of the link. - :rtype: LinkAudience + :rtype: sharing.LinkAudience """ if self._current_audience_present: return self._current_audience_value @@ -2334,7 +2366,7 @@ def link_permissions(self): """ A list of permissions for actions you can perform on the link. - :rtype: list of [LinkPermission] + :rtype: list of [sharing.LinkPermission] """ if self._link_permissions_present: return self._link_permissions_value @@ -2442,17 +2474,20 @@ class FileAction(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disable_viewer_info: Disable viewer information on the file. - :ivar edit_contents: Change or edit contents of the file. - :ivar enable_viewer_info: Enable viewer information on the file. - :ivar invite_viewer: Add a member with view permissions. - :ivar invite_viewer_no_comment: Add a member with view permissions but no - comment permissions. - :ivar invite_editor: Add a member with edit permissions. - :ivar unshare: Stop sharing this file. - :ivar relinquish_membership: Relinquish one's own membership to the file. - :ivar share_link: Use create_link instead. - :ivar create_link: Create a shared link to the file. + :ivar sharing.FileAction.disable_viewer_info: Disable viewer information on + the file. + :ivar sharing.FileAction.edit_contents: Change or edit contents of the file. + :ivar sharing.FileAction.enable_viewer_info: Enable viewer information on + the file. + :ivar sharing.FileAction.invite_viewer: Add a member with view permissions. + :ivar sharing.FileAction.invite_viewer_no_comment: Add a member with view + permissions but no comment permissions. + :ivar sharing.FileAction.invite_editor: Add a member with edit permissions. + :ivar sharing.FileAction.unshare: Stop sharing this file. + :ivar sharing.FileAction.relinquish_membership: Relinquish one's own + membership to the file. + :ivar sharing.FileAction.share_link: Use create_link instead. + :ivar sharing.FileAction.create_link: Create a shared link to the file. """ _catch_all = 'other' @@ -2581,11 +2616,12 @@ class FileErrorResult(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str file_not_found_error: File specified by id was not found. - :ivar str invalid_file_action_error: User does not have permission to take - the specified action on the file. - :ivar str permission_denied_error: User does not have permission to access - file specified by file.Id. + :ivar str sharing.FileErrorResult.file_not_found_error: File specified by id + was not found. + :ivar str sharing.FileErrorResult.invalid_file_action_error: User does not + have permission to take the specified action on the file. + :ivar str sharing.FileErrorResult.permission_denied_error: User does not + have permission to access file specified by file.Id. """ _catch_all = 'other' @@ -2599,7 +2635,7 @@ def file_not_found_error(cls, val): with value ``val``. :param str val: - :rtype: FileErrorResult + :rtype: sharing.FileErrorResult """ return cls('file_not_found_error', val) @@ -2610,7 +2646,7 @@ def invalid_file_action_error(cls, val): ``invalid_file_action_error`` tag with value ``val``. :param str val: - :rtype: FileErrorResult + :rtype: sharing.FileErrorResult """ return cls('invalid_file_action_error', val) @@ -2621,7 +2657,7 @@ def permission_denied_error(cls, val): tag with value ``val``. :param str val: - :rtype: FileErrorResult + :rtype: sharing.FileErrorResult """ return cls('permission_denied_error', val) @@ -2705,20 +2741,25 @@ class SharedLinkMetadata(bb.Struct): """ The metadata of a shared link. - :ivar url: URL of the shared link. - :ivar id: A unique identifier for the linked file. - :ivar name: The linked file name (including extension). This never contains - a slash. - :ivar expires: Expiration time, if set. By default the link won't expire. - :ivar path_lower: The lowercased full path in the user's Dropbox. This - always starts with a slash. This field will only be present only if the - linked file is in the authenticated user's dropbox. - :ivar link_permissions: The link's access permissions. - :ivar team_member_info: The team membership information of the link's owner. - This field will only be present if the link's owner is a team member. - :ivar content_owner_team_info: The team information of the content's owner. - This field will only be present if the content's owner is a team member - and the content's owner team is different from the link's owner team. + :ivar sharing.SharedLinkMetadata.url: URL of the shared link. + :ivar sharing.SharedLinkMetadata.id: A unique identifier for the linked + file. + :ivar sharing.SharedLinkMetadata.name: The linked file name (including + extension). This never contains a slash. + :ivar sharing.SharedLinkMetadata.expires: Expiration time, if set. By + default the link won't expire. + :ivar sharing.SharedLinkMetadata.path_lower: The lowercased full path in the + user's Dropbox. This always starts with a slash. This field will only be + present only if the linked file is in the authenticated user's dropbox. + :ivar sharing.SharedLinkMetadata.link_permissions: The link's access + permissions. + :ivar sharing.SharedLinkMetadata.team_member_info: The team membership + information of the link's owner. This field will only be present if + the link's owner is a team member. + :ivar sharing.SharedLinkMetadata.content_owner_team_info: The team + information of the content's owner. This field will only be present if + the content's owner is a team member and the content's owner team is + different from the link's owner team. """ __slots__ = [ @@ -2915,7 +2956,7 @@ def link_permissions(self): """ The link's access permissions. - :rtype: LinkPermissions + :rtype: sharing.LinkPermissions """ if self._link_permissions_present: return self._link_permissions_value @@ -2939,7 +2980,7 @@ def team_member_info(self): The team membership information of the link's owner. This field will only be present if the link's owner is a team member. - :rtype: TeamMemberInfo + :rtype: sharing.TeamMemberInfo """ if self._team_member_info_present: return self._team_member_info_value @@ -3009,16 +3050,18 @@ class FileLinkMetadata(SharedLinkMetadata): """ The metadata of a file shared link. - :ivar client_modified: The modification time set by the desktop client when - the file was added to Dropbox. Since this time is not verified (the - Dropbox server stores whatever the desktop client sends up), this should - only be used for display purposes (such as sorting) and not, for - example, to determine if a file has changed or not. - :ivar server_modified: The last time the file was modified on Dropbox. - :ivar rev: A unique identifier for the current revision of a file. This - field is the same rev as elsewhere in the API and can be used to detect - changes and avoid conflicts. - :ivar size: The file size in bytes. + :ivar sharing.FileLinkMetadata.client_modified: The modification time set by + the desktop client when the file was added to Dropbox. Since this time + is not verified (the Dropbox server stores whatever the desktop client + sends up), this should only be used for display purposes (such as + sorting) and not, for example, to determine if a file has changed or + not. + :ivar sharing.FileLinkMetadata.server_modified: The last time the file was + modified on Dropbox. + :ivar sharing.FileLinkMetadata.rev: A unique identifier for the current + revision of a file. This field is the same rev as elsewhere in the API + and can be used to detect changes and avoid conflicts. + :ivar sharing.FileLinkMetadata.size: The file size in bytes. """ __slots__ = [ @@ -3197,12 +3240,14 @@ class FileMemberActionError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_member: Specified member was not found. - :ivar no_permission: User does not have permission to perform this action on - this member. - :ivar SharingFileAccessError access_error: Specified file was invalid or - user does not have access. - :ivar MemberAccessLevelResult no_explicit_access: The action cannot be + :ivar sharing.FileMemberActionError.invalid_member: Specified member was not + found. + :ivar sharing.FileMemberActionError.no_permission: User does not have + permission to perform this action on this member. + :ivar SharingFileAccessError sharing.FileMemberActionError.access_error: + Specified file was invalid or user does not have access. + :ivar MemberAccessLevelResult + sharing.FileMemberActionError.no_explicit_access: The action cannot be completed because the target member does not have explicit access to the file. The return value is the access that the member has to the file from a parent folder. @@ -3222,8 +3267,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: FileMemberActionError + :param sharing.SharingFileAccessError val: + :rtype: sharing.FileMemberActionError """ return cls('access_error', val) @@ -3233,8 +3278,8 @@ def no_explicit_access(cls, val): Create an instance of this class set to the ``no_explicit_access`` tag with value ``val``. - :param MemberAccessLevelResult val: - :rtype: FileMemberActionError + :param sharing.MemberAccessLevelResult val: + :rtype: sharing.FileMemberActionError """ return cls('no_explicit_access', val) @@ -3284,7 +3329,7 @@ def get_access_error(self): Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -3298,7 +3343,7 @@ def get_no_explicit_access(self): Only call this if :meth:`is_no_explicit_access` is true. - :rtype: MemberAccessLevelResult + :rtype: sharing.MemberAccessLevelResult """ if not self.is_no_explicit_access(): raise AttributeError("tag 'no_explicit_access' not set") @@ -3318,11 +3363,13 @@ class FileMemberActionIndividualResult(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar Optional[AccessLevel] success: Member was successfully removed from - this file. If AccessLevel is given, the member still has access via a - parent shared folder. - :ivar FileMemberActionError member_error: User was not able to perform this - action. + :ivar Optional[sharing.AccessLevel] + sharing.FileMemberActionIndividualResult.success: Member was + successfully removed from this file. If AccessLevel is given, the member + still has access via a parent shared folder. + :ivar FileMemberActionError + sharing.FileMemberActionIndividualResult.member_error: User was not able + to perform this action. """ _catch_all = None @@ -3333,8 +3380,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param AccessLevel val: - :rtype: FileMemberActionIndividualResult + :param sharing.AccessLevel val: + :rtype: sharing.FileMemberActionIndividualResult """ return cls('success', val) @@ -3344,8 +3391,8 @@ def member_error(cls, val): Create an instance of this class set to the ``member_error`` tag with value ``val``. - :param FileMemberActionError val: - :rtype: FileMemberActionIndividualResult + :param sharing.FileMemberActionError val: + :rtype: sharing.FileMemberActionIndividualResult """ return cls('member_error', val) @@ -3372,7 +3419,7 @@ def get_success(self): Only call this if :meth:`is_success` is true. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -3384,7 +3431,7 @@ def get_member_error(self): Only call this if :meth:`is_member_error` is true. - :rtype: FileMemberActionError + :rtype: sharing.FileMemberActionError """ if not self.is_member_error(): raise AttributeError("tag 'member_error' not set") @@ -3404,8 +3451,9 @@ class FileMemberActionResult(bb.Struct): :meth:`dropbox.dropbox.Dropbox.sharing_add_file_member` or :meth:`dropbox.dropbox.Dropbox.sharing_change_file_member_access`. - :ivar member: One of specified input members. - :ivar result: The outcome of the action on this member. + :ivar sharing.FileMemberActionResult.member: One of specified input members. + :ivar sharing.FileMemberActionResult.result: The outcome of the action on + this member. """ __slots__ = [ @@ -3434,7 +3482,7 @@ def member(self): """ One of specified input members. - :rtype: MemberSelector + :rtype: sharing.MemberSelector """ if self._member_present: return self._member_value @@ -3457,7 +3505,7 @@ def result(self): """ The outcome of the action on this member. - :rtype: FileMemberActionIndividualResult + :rtype: sharing.FileMemberActionIndividualResult """ if self._result_present: return self._result_value @@ -3492,10 +3540,11 @@ class FileMemberRemoveActionResult(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar MemberAccessLevelResult success: Member was successfully removed from - this file. - :ivar FileMemberActionError member_error: User was not able to remove this - member. + :ivar MemberAccessLevelResult sharing.FileMemberRemoveActionResult.success: + Member was successfully removed from this file. + :ivar FileMemberActionError + sharing.FileMemberRemoveActionResult.member_error: User was not able to + remove this member. """ _catch_all = 'other' @@ -3508,8 +3557,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param MemberAccessLevelResult val: - :rtype: FileMemberRemoveActionResult + :param sharing.MemberAccessLevelResult val: + :rtype: sharing.FileMemberRemoveActionResult """ return cls('success', val) @@ -3519,8 +3568,8 @@ def member_error(cls, val): Create an instance of this class set to the ``member_error`` tag with value ``val``. - :param FileMemberActionError val: - :rtype: FileMemberRemoveActionResult + :param sharing.FileMemberActionError val: + :rtype: sharing.FileMemberRemoveActionResult """ return cls('member_error', val) @@ -3554,7 +3603,7 @@ def get_success(self): Only call this if :meth:`is_success` is true. - :rtype: MemberAccessLevelResult + :rtype: sharing.MemberAccessLevelResult """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -3566,7 +3615,7 @@ def get_member_error(self): Only call this if :meth:`is_member_error` is true. - :rtype: FileMemberActionError + :rtype: sharing.FileMemberActionError """ if not self.is_member_error(): raise AttributeError("tag 'member_error' not set") @@ -3584,10 +3633,12 @@ class FilePermission(bb.Struct): """ Whether the user is allowed to take the sharing action on the file. - :ivar action: The action that the user may wish to take on the file. - :ivar allow: True if the user is allowed to take the action. - :ivar reason: The reason why the user is denied the permission. Not present - if the action is allowed. + :ivar sharing.FilePermission.action: The action that the user may wish to + take on the file. + :ivar sharing.FilePermission.allow: True if the user is allowed to take the + action. + :ivar sharing.FilePermission.reason: The reason why the user is denied the + permission. Not present if the action is allowed. """ __slots__ = [ @@ -3623,7 +3674,7 @@ def action(self): """ The action that the user may wish to take on the file. - :rtype: FileAction + :rtype: sharing.FileAction """ if self._action_present: return self._action_value @@ -3670,7 +3721,7 @@ def reason(self): The reason why the user is denied the permission. Not present if the action is allowed. - :rtype: PermissionDeniedReason + :rtype: sharing.PermissionDeniedReason """ if self._reason_present: return self._reason_value @@ -3711,26 +3762,30 @@ class FolderAction(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar change_options: Change folder options, such as who can be invited to - join the folder. - :ivar disable_viewer_info: Disable viewer information for this folder. - :ivar edit_contents: Change or edit contents of the folder. - :ivar enable_viewer_info: Enable viewer information on the folder. - :ivar invite_editor: Invite a user or group to join the folder with read and - write permission. - :ivar invite_viewer: Invite a user or group to join the folder with read - permission. - :ivar invite_viewer_no_comment: Invite a user or group to join the folder - with read permission but no comment permissions. - :ivar relinquish_membership: Relinquish one's own membership in the folder. - :ivar unmount: Unmount the folder. - :ivar unshare: Stop sharing this folder. - :ivar leave_a_copy: Keep a copy of the contents upon leaving or being kicked - from the folder. - :ivar share_link: Use create_link instead. - :ivar create_link: Create a shared link for folder. - :ivar set_access_inheritance: Set whether the folder inherits permissions - from its parent. + :ivar sharing.FolderAction.change_options: Change folder options, such as + who can be invited to join the folder. + :ivar sharing.FolderAction.disable_viewer_info: Disable viewer information + for this folder. + :ivar sharing.FolderAction.edit_contents: Change or edit contents of the + folder. + :ivar sharing.FolderAction.enable_viewer_info: Enable viewer information on + the folder. + :ivar sharing.FolderAction.invite_editor: Invite a user or group to join the + folder with read and write permission. + :ivar sharing.FolderAction.invite_viewer: Invite a user or group to join the + folder with read permission. + :ivar sharing.FolderAction.invite_viewer_no_comment: Invite a user or group + to join the folder with read permission but no comment permissions. + :ivar sharing.FolderAction.relinquish_membership: Relinquish one's own + membership in the folder. + :ivar sharing.FolderAction.unmount: Unmount the folder. + :ivar sharing.FolderAction.unshare: Stop sharing this folder. + :ivar sharing.FolderAction.leave_a_copy: Keep a copy of the contents upon + leaving or being kicked from the folder. + :ivar sharing.FolderAction.share_link: Use create_link instead. + :ivar sharing.FolderAction.create_link: Create a shared link for folder. + :ivar sharing.FolderAction.set_access_inheritance: Set whether the folder + inherits permissions from its parent. """ _catch_all = 'other' @@ -3942,10 +3997,13 @@ class FolderPermission(bb.Struct): """ Whether the user is allowed to take the action on the shared folder. - :ivar action: The action that the user may wish to take on the folder. - :ivar allow: True if the user is allowed to take the action. - :ivar reason: The reason why the user is denied the permission. Not present - if the action is allowed, or if no reason is available. + :ivar sharing.FolderPermission.action: The action that the user may wish to + take on the folder. + :ivar sharing.FolderPermission.allow: True if the user is allowed to take + the action. + :ivar sharing.FolderPermission.reason: The reason why the user is denied the + permission. Not present if the action is allowed, or if no reason is + available. """ __slots__ = [ @@ -3981,7 +4039,7 @@ def action(self): """ The action that the user may wish to take on the folder. - :rtype: FolderAction + :rtype: sharing.FolderAction """ if self._action_present: return self._action_value @@ -4028,7 +4086,7 @@ def reason(self): The reason why the user is denied the permission. Not present if the action is allowed, or if no reason is available. - :rtype: PermissionDeniedReason + :rtype: sharing.PermissionDeniedReason """ if self._reason_present: return self._reason_value @@ -4065,20 +4123,20 @@ class FolderPolicy(bb.Struct): """ A set of policies governing membership and privileges for a shared folder. - :ivar member_policy: Who can be a member of this shared folder, as set on - the folder itself. The effective policy may differ from this value if - the team-wide policy is more restrictive. Present only if the folder is - owned by a team. - :ivar resolved_member_policy: Who can be a member of this shared folder, - taking into account both the folder and the team-wide policy. This value - may differ from that of member_policy if the team-wide policy is more - restrictive than the folder policy. Present only if the folder is owned - by a team. - :ivar acl_update_policy: Who can add and remove members from this shared - folder. - :ivar shared_link_policy: Who links can be shared with. - :ivar viewer_info_policy: Who can enable/disable viewer info for this shared - folder. + :ivar sharing.FolderPolicy.member_policy: Who can be a member of this shared + folder, as set on the folder itself. The effective policy may differ + from this value if the team-wide policy is more restrictive. Present + only if the folder is owned by a team. + :ivar sharing.FolderPolicy.resolved_member_policy: Who can be a member of + this shared folder, taking into account both the folder and the + team-wide policy. This value may differ from that of member_policy if + the team-wide policy is more restrictive than the folder policy. Present + only if the folder is owned by a team. + :ivar sharing.FolderPolicy.acl_update_policy: Who can add and remove members + from this shared folder. + :ivar sharing.FolderPolicy.shared_link_policy: Who links can be shared with. + :ivar sharing.FolderPolicy.viewer_info_policy: Who can enable/disable viewer + info for this shared folder. """ __slots__ = [ @@ -4130,7 +4188,7 @@ def member_policy(self): The effective policy may differ from this value if the team-wide policy is more restrictive. Present only if the folder is owned by a team. - :rtype: MemberPolicy + :rtype: sharing.MemberPolicy """ if self._member_policy_present: return self._member_policy_value @@ -4159,7 +4217,7 @@ def resolved_member_policy(self): member_policy if the team-wide policy is more restrictive than the folder policy. Present only if the folder is owned by a team. - :rtype: MemberPolicy + :rtype: sharing.MemberPolicy """ if self._resolved_member_policy_present: return self._resolved_member_policy_value @@ -4185,7 +4243,7 @@ def acl_update_policy(self): """ Who can add and remove members from this shared folder. - :rtype: AclUpdatePolicy + :rtype: sharing.AclUpdatePolicy """ if self._acl_update_policy_present: return self._acl_update_policy_value @@ -4208,7 +4266,7 @@ def shared_link_policy(self): """ Who links can be shared with. - :rtype: SharedLinkPolicy + :rtype: sharing.SharedLinkPolicy """ if self._shared_link_policy_present: return self._shared_link_policy_value @@ -4231,7 +4289,7 @@ def viewer_info_policy(self): """ Who can enable/disable viewer info for this shared folder. - :rtype: ViewerInfoPolicy + :rtype: sharing.ViewerInfoPolicy """ if self._viewer_info_policy_present: return self._viewer_info_policy_value @@ -4270,11 +4328,11 @@ class GetFileMetadataArg(bb.Struct): """ Arguments of :meth:`dropbox.dropbox.Dropbox.sharing_get_file_metadata`. - :ivar file: The file to query. - :ivar actions: A list of `FileAction`s corresponding to `FilePermission`s - that should appear in the response's ``SharedFileMetadata.permissions`` - field describing the actions the authenticated user can perform on the - file. + :ivar sharing.GetFileMetadataArg.file: The file to query. + :ivar sharing.GetFileMetadataArg.actions: A list of `FileAction`s + corresponding to `FilePermission`s that should appear in the response's + ``SharedFileMetadata.permissions`` field describing the actions the + authenticated user can perform on the file. """ __slots__ = [ @@ -4328,7 +4386,7 @@ def actions(self): appear in the response's ``SharedFileMetadata.permissions`` field describing the actions the authenticated user can perform on the file. - :rtype: list of [FileAction] + :rtype: list of [sharing.FileAction] """ if self._actions_present: return self._actions_value @@ -4365,11 +4423,11 @@ class GetFileMetadataBatchArg(bb.Struct): Arguments of :meth:`dropbox.dropbox.Dropbox.sharing_get_file_metadata_batch`. - :ivar files: The files to query. - :ivar actions: A list of `FileAction`s corresponding to `FilePermission`s - that should appear in the response's ``SharedFileMetadata.permissions`` - field describing the actions the authenticated user can perform on the - file. + :ivar sharing.GetFileMetadataBatchArg.files: The files to query. + :ivar sharing.GetFileMetadataBatchArg.actions: A list of `FileAction`s + corresponding to `FilePermission`s that should appear in the response's + ``SharedFileMetadata.permissions`` field describing the actions the + authenticated user can perform on the file. """ __slots__ = [ @@ -4423,7 +4481,7 @@ def actions(self): appear in the response's ``SharedFileMetadata.permissions`` field describing the actions the authenticated user can perform on the file. - :rtype: list of [FileAction] + :rtype: list of [sharing.FileAction] """ if self._actions_present: return self._actions_value @@ -4460,9 +4518,10 @@ class GetFileMetadataBatchResult(bb.Struct): Per file results of :meth:`dropbox.dropbox.Dropbox.sharing_get_file_metadata_batch`. - :ivar file: This is the input file identifier corresponding to one of - ``GetFileMetadataBatchArg.files``. - :ivar result: The result for this particular file. + :ivar sharing.GetFileMetadataBatchResult.file: This is the input file + identifier corresponding to one of ``GetFileMetadataBatchArg.files``. + :ivar sharing.GetFileMetadataBatchResult.result: The result for this + particular file. """ __slots__ = [ @@ -4515,7 +4574,7 @@ def result(self): """ The result for this particular file. - :rtype: GetFileMetadataIndividualResult + :rtype: sharing.GetFileMetadataIndividualResult """ if self._result_present: return self._result_value @@ -4563,8 +4622,8 @@ def user_error(cls, val): Create an instance of this class set to the ``user_error`` tag with value ``val``. - :param SharingUserError val: - :rtype: GetFileMetadataError + :param sharing.SharingUserError val: + :rtype: sharing.GetFileMetadataError """ return cls('user_error', val) @@ -4574,8 +4633,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: GetFileMetadataError + :param sharing.SharingFileAccessError val: + :rtype: sharing.GetFileMetadataError """ return cls('access_error', val) @@ -4607,7 +4666,7 @@ def get_user_error(self): """ Only call this if :meth:`is_user_error` is true. - :rtype: SharingUserError + :rtype: sharing.SharingUserError """ if not self.is_user_error(): raise AttributeError("tag 'user_error' not set") @@ -4617,7 +4676,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -4637,10 +4696,11 @@ class GetFileMetadataIndividualResult(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar SharedFileMetadata metadata: The result for this file if it was - successful. - :ivar SharingFileAccessError access_error: The result for this file if it - was an error. + :ivar SharedFileMetadata sharing.GetFileMetadataIndividualResult.metadata: + The result for this file if it was successful. + :ivar SharingFileAccessError + sharing.GetFileMetadataIndividualResult.access_error: The result for + this file if it was an error. """ _catch_all = 'other' @@ -4653,8 +4713,8 @@ def metadata(cls, val): Create an instance of this class set to the ``metadata`` tag with value ``val``. - :param SharedFileMetadata val: - :rtype: GetFileMetadataIndividualResult + :param sharing.SharedFileMetadata val: + :rtype: sharing.GetFileMetadataIndividualResult """ return cls('metadata', val) @@ -4664,8 +4724,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: GetFileMetadataIndividualResult + :param sharing.SharingFileAccessError val: + :rtype: sharing.GetFileMetadataIndividualResult """ return cls('access_error', val) @@ -4699,7 +4759,7 @@ def get_metadata(self): Only call this if :meth:`is_metadata` is true. - :rtype: SharedFileMetadata + :rtype: sharing.SharedFileMetadata """ if not self.is_metadata(): raise AttributeError("tag 'metadata' not set") @@ -4711,7 +4771,7 @@ def get_access_error(self): Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -4727,11 +4787,12 @@ def __repr__(self): class GetMetadataArgs(bb.Struct): """ - :ivar shared_folder_id: The ID for the shared folder. - :ivar actions: A list of `FolderAction`s corresponding to - `FolderPermission`s that should appear in the response's - ``SharedFolderMetadata.permissions`` field describing the actions the - authenticated user can perform on the folder. + :ivar sharing.GetMetadataArgs.shared_folder_id: The ID for the shared + folder. + :ivar sharing.GetMetadataArgs.actions: A list of `FolderAction`s + corresponding to `FolderPermission`s that should appear in the + response's ``SharedFolderMetadata.permissions`` field describing the + actions the authenticated user can perform on the folder. """ __slots__ = [ @@ -4786,7 +4847,7 @@ def actions(self): field describing the actions the authenticated user can perform on the folder. - :rtype: list of [FolderAction] + :rtype: list of [sharing.FolderAction] """ if self._actions_present: return self._actions_value @@ -4824,10 +4885,12 @@ class SharedLinkError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar shared_link_not_found: The shared link wasn't found. - :ivar shared_link_access_denied: The caller is not allowed to access this - shared link. - :ivar unsupported_link_type: This type of link is not supported. + :ivar sharing.SharedLinkError.shared_link_not_found: The shared link wasn't + found. + :ivar sharing.SharedLinkError.shared_link_access_denied: The caller is not + allowed to access this shared link. + :ivar sharing.SharedLinkError.unsupported_link_type: This type of link is + not supported. """ _catch_all = 'other' @@ -4886,8 +4949,8 @@ class GetSharedLinkFileError(SharedLinkError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar shared_link_is_directory: Directories cannot be retrieved by this - endpoint. + :ivar sharing.GetSharedLinkFileError.shared_link_is_directory: Directories + cannot be retrieved by this endpoint. """ # Attribute is overwritten below the class definition @@ -4911,12 +4974,13 @@ def __repr__(self): class GetSharedLinkMetadataArg(bb.Struct): """ - :ivar url: URL of the shared link. - :ivar path: If the shared link is to a folder, this parameter can be used to - retrieve the metadata for a specific file or sub-folder in this folder. - A relative path should be used. - :ivar link_password: If the shared link has a password, this parameter can - be used. + :ivar sharing.GetSharedLinkMetadataArg.url: URL of the shared link. + :ivar sharing.GetSharedLinkMetadataArg.path: If the shared link is to a + folder, this parameter can be used to retrieve the metadata for a + specific file or sub-folder in this folder. A relative path should be + used. + :ivar sharing.GetSharedLinkMetadataArg.link_password: If the shared link has + a password, this parameter can be used. """ __slots__ = [ @@ -5038,8 +5102,8 @@ def __repr__(self): class GetSharedLinksArg(bb.Struct): """ - :ivar path: See :meth:`dropbox.dropbox.Dropbox.sharing_get_shared_links` - description. + :ivar sharing.GetSharedLinksArg.path: See + :meth:`dropbox.dropbox.Dropbox.sharing_get_shared_links` description. """ __slots__ = [ @@ -5111,7 +5175,7 @@ def path(cls, val): ``val``. :param Optional[str] val: - :rtype: GetSharedLinksError + :rtype: sharing.GetSharedLinksError """ return cls('path', val) @@ -5151,7 +5215,8 @@ def __repr__(self): class GetSharedLinksResult(bb.Struct): """ - :ivar links: Shared links applicable to the path argument. + :ivar sharing.GetSharedLinksResult.links: Shared links applicable to the + path argument. """ __slots__ = [ @@ -5173,7 +5238,7 @@ def links(self): """ Shared links applicable to the path argument. - :rtype: list of [LinkMetadata] + :rtype: list of [sharing.LinkMetadata] """ if self._links_present: return self._links_value @@ -5206,10 +5271,13 @@ class GroupInfo(team_common.GroupSummary): The information about a group. Groups is a way to manage a list of users who need same access permission to the shared folder. - :ivar group_type: The type of group. - :ivar is_member: If the current user is a member of the group. - :ivar is_owner: If the current user is an owner of the group. - :ivar same_team: If the group is owned by the current user's team. + :ivar sharing.GroupInfo.group_type: The type of group. + :ivar sharing.GroupInfo.is_member: If the current user is a member of the + group. + :ivar sharing.GroupInfo.is_owner: If the current user is an owner of the + group. + :ivar sharing.GroupInfo.same_team: If the group is owned by the current + user's team. """ __slots__ = [ @@ -5371,13 +5439,15 @@ class MembershipInfo(bb.Struct): """ The information about a member of the shared content. - :ivar access_type: The access type for this member. It contains inherited - access type from parent folder, and acquired access type from this - folder. - :ivar permissions: The permissions that requesting user has on this member. - The set of permissions corresponds to the MemberActions in the request. - :ivar initials: Never set. - :ivar is_inherited: True if the member has access from a parent folder. + :ivar sharing.MembershipInfo.access_type: The access type for this member. + It contains inherited access type from parent folder, and acquired + access type from this folder. + :ivar sharing.MembershipInfo.permissions: The permissions that requesting + user has on this member. The set of permissions corresponds to the + MemberActions in the request. + :ivar sharing.MembershipInfo.initials: Never set. + :ivar sharing.MembershipInfo.is_inherited: True if the member has access + from a parent folder. """ __slots__ = [ @@ -5421,7 +5491,7 @@ def access_type(self): The access type for this member. It contains inherited access type from parent folder, and acquired access type from this folder. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_type_present: return self._access_type_value @@ -5445,7 +5515,7 @@ def permissions(self): The permissions that requesting user has on this member. The set of permissions corresponds to the MemberActions in the request. - :rtype: list of [MemberPermission] + :rtype: list of [sharing.MemberPermission] """ if self._permissions_present: return self._permissions_value @@ -5532,7 +5602,8 @@ class GroupMembershipInfo(MembershipInfo): """ The information about a group member of the shared content. - :ivar group: The information about the membership group. + :ivar sharing.GroupMembershipInfo.group: The information about the + membership group. """ __slots__ = [ @@ -5562,7 +5633,7 @@ def group(self): """ The information about the membership group. - :rtype: GroupInfo + :rtype: sharing.GroupInfo """ if self._group_present: return self._group_value @@ -5596,11 +5667,11 @@ def __repr__(self): class InsufficientPlan(bb.Struct): """ - :ivar message: A message to tell the user to upgrade in order to support - expected action. - :ivar upsell_url: A URL to send the user to in order to obtain the account - type they need, e.g. upgrading. Absent if there is no action the user - can take to upgrade. + :ivar sharing.InsufficientPlan.message: A message to tell the user to + upgrade in order to support expected action. + :ivar sharing.InsufficientPlan.upsell_url: A URL to send the user to in + order to obtain the account type they need, e.g. upgrading. Absent if + there is no action the user can take to upgrade. """ __slots__ = [ @@ -5689,11 +5760,12 @@ def __repr__(self): class InsufficientQuotaAmounts(bb.Struct): """ - :ivar space_needed: The amount of space needed to add the item (the size of - the item). - :ivar space_shortage: The amount of extra space needed to add the item. - :ivar space_left: The amount of space left in the user's Dropbox, less than - space_needed. + :ivar sharing.InsufficientQuotaAmounts.space_needed: The amount of space + needed to add the item (the size of the item). + :ivar sharing.InsufficientQuotaAmounts.space_shortage: The amount of extra + space needed to add the item. + :ivar sharing.InsufficientQuotaAmounts.space_left: The amount of space left + in the user's Dropbox, less than space_needed. """ __slots__ = [ @@ -5813,7 +5885,7 @@ class InviteeInfo(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str email: E-mail address of invited user. + :ivar str sharing.InviteeInfo.email: E-mail address of invited user. """ _catch_all = 'other' @@ -5827,7 +5899,7 @@ def email(cls, val): ``val``. :param str val: - :rtype: InviteeInfo + :rtype: sharing.InviteeInfo """ return cls('email', val) @@ -5871,8 +5943,9 @@ class InviteeMembershipInfo(MembershipInfo): """ Information about an invited member of a shared content. - :ivar invitee: Recipient of the invitation. - :ivar user: The user this invitation is tied to, if available. + :ivar sharing.InviteeMembershipInfo.invitee: Recipient of the invitation. + :ivar sharing.InviteeMembershipInfo.user: The user this invitation is tied + to, if available. """ __slots__ = [ @@ -5909,7 +5982,7 @@ def invitee(self): """ Recipient of the invitation. - :rtype: InviteeInfo + :rtype: sharing.InviteeInfo """ if self._invitee_present: return self._invitee_value @@ -5932,7 +6005,7 @@ def user(self): """ The user this invitation is tied to, if available. - :rtype: UserInfo + :rtype: sharing.UserInfo """ if self._user_present: return self._user_value @@ -5978,14 +6051,15 @@ class JobError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar UnshareFolderError unshare_folder_error: Error occurred while - performing :meth:`dropbox.dropbox.Dropbox.sharing_unshare_folder` - action. - :ivar RemoveFolderMemberError remove_folder_member_error: Error occurred - while performing - :meth:`dropbox.dropbox.Dropbox.sharing_remove_folder_member` action. - :ivar RelinquishFolderMembershipError relinquish_folder_membership_error: + :ivar UnshareFolderError sharing.JobError.unshare_folder_error: Error + occurred while performing + :meth:`dropbox.dropbox.Dropbox.sharing_unshare_folder` action. + :ivar RemoveFolderMemberError sharing.JobError.remove_folder_member_error: Error occurred while performing + :meth:`dropbox.dropbox.Dropbox.sharing_remove_folder_member` action. + :ivar RelinquishFolderMembershipError + sharing.JobError.relinquish_folder_membership_error: Error occurred + while performing :meth:`dropbox.dropbox.Dropbox.sharing_relinquish_folder_membership` action. """ @@ -6000,8 +6074,8 @@ def unshare_folder_error(cls, val): Create an instance of this class set to the ``unshare_folder_error`` tag with value ``val``. - :param UnshareFolderError val: - :rtype: JobError + :param sharing.UnshareFolderError val: + :rtype: sharing.JobError """ return cls('unshare_folder_error', val) @@ -6011,8 +6085,8 @@ def remove_folder_member_error(cls, val): Create an instance of this class set to the ``remove_folder_member_error`` tag with value ``val``. - :param RemoveFolderMemberError val: - :rtype: JobError + :param sharing.RemoveFolderMemberError val: + :rtype: sharing.JobError """ return cls('remove_folder_member_error', val) @@ -6022,8 +6096,8 @@ def relinquish_folder_membership_error(cls, val): Create an instance of this class set to the ``relinquish_folder_membership_error`` tag with value ``val``. - :param RelinquishFolderMembershipError val: - :rtype: JobError + :param sharing.RelinquishFolderMembershipError val: + :rtype: sharing.JobError """ return cls('relinquish_folder_membership_error', val) @@ -6066,7 +6140,7 @@ def get_unshare_folder_error(self): Only call this if :meth:`is_unshare_folder_error` is true. - :rtype: UnshareFolderError + :rtype: sharing.UnshareFolderError """ if not self.is_unshare_folder_error(): raise AttributeError("tag 'unshare_folder_error' not set") @@ -6079,7 +6153,7 @@ def get_remove_folder_member_error(self): Only call this if :meth:`is_remove_folder_member_error` is true. - :rtype: RemoveFolderMemberError + :rtype: sharing.RemoveFolderMemberError """ if not self.is_remove_folder_member_error(): raise AttributeError("tag 'remove_folder_member_error' not set") @@ -6093,7 +6167,7 @@ def get_relinquish_folder_membership_error(self): Only call this if :meth:`is_relinquish_folder_membership_error` is true. - :rtype: RelinquishFolderMembershipError + :rtype: sharing.RelinquishFolderMembershipError """ if not self.is_relinquish_folder_membership_error(): raise AttributeError("tag 'relinquish_folder_membership_error' not set") @@ -6113,8 +6187,9 @@ class JobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar complete: The asynchronous job has finished. - :ivar JobError failed: The asynchronous job returned an error. + :ivar sharing.JobStatus.complete: The asynchronous job has finished. + :ivar JobError sharing.JobStatus.failed: The asynchronous job returned an + error. """ # Attribute is overwritten below the class definition @@ -6126,8 +6201,8 @@ def failed(cls, val): Create an instance of this class set to the ``failed`` tag with value ``val``. - :param JobError val: - :rtype: JobStatus + :param sharing.JobError val: + :rtype: sharing.JobStatus """ return cls('failed', val) @@ -6153,7 +6228,7 @@ def get_failed(self): Only call this if :meth:`is_failed` is true. - :rtype: JobError + :rtype: sharing.JobError """ if not self.is_failed(): raise AttributeError("tag 'failed' not set") @@ -6175,12 +6250,15 @@ class LinkAction(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar change_access_level: Change the access level of the link. - :ivar change_audience: Change the audience of the link. - :ivar remove_expiry: Remove the expiry date of the link. - :ivar remove_password: Remove the password of the link. - :ivar set_expiry: Create or modify the expiry date of the link. - :ivar set_password: Create or modify the password of the link. + :ivar sharing.LinkAction.change_access_level: Change the access level of the + link. + :ivar sharing.LinkAction.change_audience: Change the audience of the link. + :ivar sharing.LinkAction.remove_expiry: Remove the expiry date of the link. + :ivar sharing.LinkAction.remove_password: Remove the password of the link. + :ivar sharing.LinkAction.set_expiry: Create or modify the expiry date of the + link. + :ivar sharing.LinkAction.set_password: Create or modify the password of the + link. """ _catch_all = 'other' @@ -6269,13 +6347,14 @@ class LinkAudience(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar public: Link is accessible by anyone. - :ivar team: Link is accessible only by team members. - :ivar no_one: The link can be used by no one. The link merely points the - user to the content, and does not grant additional rights to the user. - Members of the content who use this link can only access the content - with their pre-existing access rights. - :ivar members: Link is accessible only by members of the content. + :ivar sharing.LinkAudience.public: Link is accessible by anyone. + :ivar sharing.LinkAudience.team: Link is accessible only by team members. + :ivar sharing.LinkAudience.no_one: The link can be used by no one. The link + merely points the user to the content, and does not grant additional + rights to the user. Members of the content who use this link can only + access the content with their pre-existing access rights. + :ivar sharing.LinkAudience.members: Link is accessible only by members of + the content. """ _catch_all = 'other' @@ -6344,9 +6423,10 @@ class LinkExpiry(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar remove_expiry: Remove the currently set expiry for the link. - :ivar datetime.datetime set_expiry: Set a new expiry or change an existing - expiry. + :ivar sharing.LinkExpiry.remove_expiry: Remove the currently set expiry for + the link. + :ivar datetime.datetime sharing.LinkExpiry.set_expiry: Set a new expiry or + change an existing expiry. """ _catch_all = 'other' @@ -6362,7 +6442,7 @@ def set_expiry(cls, val): value ``val``. :param datetime.datetime val: - :rtype: LinkExpiry + :rtype: sharing.LinkExpiry """ return cls('set_expiry', val) @@ -6416,8 +6496,10 @@ class LinkPassword(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar remove_password: Remove the currently set password for the link. - :ivar str set_password: Set a new password or change an existing password. + :ivar sharing.LinkPassword.remove_password: Remove the currently set + password for the link. + :ivar str sharing.LinkPassword.set_password: Set a new password or change an + existing password. """ _catch_all = 'other' @@ -6433,7 +6515,7 @@ def set_password(cls, val): value ``val``. :param str val: - :rtype: LinkPassword + :rtype: sharing.LinkPassword """ return cls('set_password', val) @@ -6517,7 +6599,7 @@ def __init__(self, @property def action(self): """ - :rtype: LinkAction + :rtype: sharing.LinkAction """ if self._action_present: return self._action_value @@ -6559,7 +6641,7 @@ def allow(self): @property def reason(self): """ - :rtype: PermissionDeniedReason + :rtype: sharing.PermissionDeniedReason """ if self._reason_present: return self._reason_value @@ -6594,20 +6676,22 @@ def __repr__(self): class LinkPermissions(bb.Struct): """ - :ivar resolved_visibility: The current visibility of the link after - considering the shared links policies of the the team (in case the - link's owner is part of a team) and the shared folder (in case the - linked file is part of a shared folder). This field is shown only if the - caller has access to this info (the link's owner always has access to - this data). - :ivar requested_visibility: The shared link's requested visibility. This can - be overridden by the team and shared folder policies. The final - visibility, after considering these policies, can be found in - ``resolved_visibility``. This is shown only if the caller is the link's - owner. - :ivar can_revoke: Whether the caller can revoke the shared link. - :ivar revoke_failure_reason: The failure reason for revoking the link. This - field will only be present if the ``can_revoke`` is ``False``. + :ivar sharing.LinkPermissions.resolved_visibility: The current visibility of + the link after considering the shared links policies of the the team (in + case the link's owner is part of a team) and the shared folder (in case + the linked file is part of a shared folder). This field is shown only if + the caller has access to this info (the link's owner always has access + to this data). + :ivar sharing.LinkPermissions.requested_visibility: The shared link's + requested visibility. This can be overridden by the team and shared + folder policies. The final visibility, after considering these policies, + can be found in ``resolved_visibility``. This is shown only if the + caller is the link's owner. + :ivar sharing.LinkPermissions.can_revoke: Whether the caller can revoke the + shared link. + :ivar sharing.LinkPermissions.revoke_failure_reason: The failure reason for + revoking the link. This field will only be present if the ``can_revoke`` + is ``False``. """ __slots__ = [ @@ -6654,7 +6738,7 @@ def resolved_visibility(self): folder). This field is shown only if the caller has access to this info (the link's owner always has access to this data). - :rtype: ResolvedVisibility + :rtype: sharing.ResolvedVisibility """ if self._resolved_visibility_present: return self._resolved_visibility_value @@ -6683,7 +6767,7 @@ def requested_visibility(self): these policies, can be found in ``resolved_visibility``. This is shown only if the caller is the link's owner. - :rtype: RequestedVisibility + :rtype: sharing.RequestedVisibility """ if self._requested_visibility_present: return self._requested_visibility_value @@ -6733,7 +6817,7 @@ def revoke_failure_reason(self): The failure reason for revoking the link. This field will only be present if the ``can_revoke`` is ``False``. - :rtype: SharedLinkAccessFailureReason + :rtype: sharing.SharedLinkAccessFailureReason """ if self._revoke_failure_reason_present: return self._revoke_failure_reason_value @@ -6771,11 +6855,12 @@ class LinkSettings(bb.Struct): """ Settings that apply to a link. - :ivar access_level: The access level on the link for this file. Currently, - it only accepts 'viewer' and 'viewer_no_comment'. - :ivar audience: The type of audience on the link for this file. - :ivar expiry: An expiry timestamp to set on a link. - :ivar password: The password for the link. + :ivar sharing.LinkSettings.access_level: The access level on the link for + this file. Currently, it only accepts 'viewer' and 'viewer_no_comment'. + :ivar sharing.LinkSettings.audience: The type of audience on the link for + this file. + :ivar sharing.LinkSettings.expiry: An expiry timestamp to set on a link. + :ivar sharing.LinkSettings.password: The password for the link. """ __slots__ = [ @@ -6819,7 +6904,7 @@ def access_level(self): The access level on the link for this file. Currently, it only accepts 'viewer' and 'viewer_no_comment'. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_level_present: return self._access_level_value @@ -6845,7 +6930,7 @@ def audience(self): """ The type of audience on the link for this file. - :rtype: LinkAudience + :rtype: sharing.LinkAudience """ if self._audience_present: return self._audience_value @@ -6871,7 +6956,7 @@ def expiry(self): """ An expiry timestamp to set on a link. - :rtype: LinkExpiry + :rtype: sharing.LinkExpiry """ if self._expiry_present: return self._expiry_value @@ -6897,7 +6982,7 @@ def password(self): """ The password for the link. - :rtype: LinkPassword + :rtype: sharing.LinkPassword """ if self._password_present: return self._password_value @@ -6935,12 +7020,14 @@ class ListFileMembersArg(bb.Struct): """ Arguments for :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members`. - :ivar file: The file for which you want to see members. - :ivar actions: The actions for which to return permissions on a member. - :ivar include_inherited: Whether to include members who only have access - from a parent shared folder. - :ivar limit: Number of members to return max per query. Defaults to 100 if - no limit is specified. + :ivar sharing.ListFileMembersArg.file: The file for which you want to see + members. + :ivar sharing.ListFileMembersArg.actions: The actions for which to return + permissions on a member. + :ivar sharing.ListFileMembersArg.include_inherited: Whether to include + members who only have access from a parent shared folder. + :ivar sharing.ListFileMembersArg.limit: Number of members to return max per + query. Defaults to 100 if no limit is specified. """ __slots__ = [ @@ -7006,7 +7093,7 @@ def actions(self): """ The actions for which to return permissions on a member. - :rtype: list of [MemberAction] + :rtype: list of [sharing.MemberAction] """ if self._actions_present: return self._actions_value @@ -7093,9 +7180,10 @@ class ListFileMembersBatchArg(bb.Struct): Arguments for :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members_batch`. - :ivar files: Files for which to return members. - :ivar limit: Number of members to return max per query. Defaults to 10 if no - limit is specified. + :ivar sharing.ListFileMembersBatchArg.files: Files for which to return + members. + :ivar sharing.ListFileMembersBatchArg.limit: Number of members to return max + per query. Defaults to 10 if no limit is specified. """ __slots__ = [ @@ -7182,8 +7270,10 @@ class ListFileMembersBatchResult(bb.Struct): Per-file result for :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members_batch`. - :ivar file: This is the input file identifier, whether an ID or a path. - :ivar result: The result for this particular file. + :ivar sharing.ListFileMembersBatchResult.file: This is the input file + identifier, whether an ID or a path. + :ivar sharing.ListFileMembersBatchResult.result: The result for this + particular file. """ __slots__ = [ @@ -7235,7 +7325,7 @@ def result(self): """ The result for this particular file. - :rtype: ListFileMembersIndividualResult + :rtype: sharing.ListFileMembersIndividualResult """ if self._result_present: return self._result_value @@ -7269,8 +7359,8 @@ class ListFileMembersContinueArg(bb.Struct): Arguments for :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members_continue`. - :ivar cursor: The cursor returned by your last call to - :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members`, + :ivar sharing.ListFileMembersContinueArg.cursor: The cursor returned by your + last call to :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members`, :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members_continue`, or :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members_batch`. """ @@ -7334,7 +7424,8 @@ class ListFileMembersContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_cursor: ``ListFileMembersContinueArg.cursor`` is invalid. + :ivar sharing.ListFileMembersContinueError.invalid_cursor: + ``ListFileMembersContinueArg.cursor`` is invalid. """ _catch_all = 'other' @@ -7349,8 +7440,8 @@ def user_error(cls, val): Create an instance of this class set to the ``user_error`` tag with value ``val``. - :param SharingUserError val: - :rtype: ListFileMembersContinueError + :param sharing.SharingUserError val: + :rtype: sharing.ListFileMembersContinueError """ return cls('user_error', val) @@ -7360,8 +7451,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: ListFileMembersContinueError + :param sharing.SharingFileAccessError val: + :rtype: sharing.ListFileMembersContinueError """ return cls('access_error', val) @@ -7401,7 +7492,7 @@ def get_user_error(self): """ Only call this if :meth:`is_user_error` is true. - :rtype: SharingUserError + :rtype: sharing.SharingUserError """ if not self.is_user_error(): raise AttributeError("tag 'user_error' not set") @@ -7411,7 +7502,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -7427,9 +7518,10 @@ def __repr__(self): class ListFileMembersCountResult(bb.Struct): """ - :ivar members: A list of members on this file. - :ivar member_count: The number of members on this file. This does not - include inherited members. + :ivar sharing.ListFileMembersCountResult.members: A list of members on this + file. + :ivar sharing.ListFileMembersCountResult.member_count: The number of members + on this file. This does not include inherited members. """ __slots__ = [ @@ -7458,7 +7550,7 @@ def members(self): """ A list of members on this file. - :rtype: SharedFileMembers + :rtype: sharing.SharedFileMembers """ if self._members_present: return self._members_value @@ -7530,8 +7622,8 @@ def user_error(cls, val): Create an instance of this class set to the ``user_error`` tag with value ``val``. - :param SharingUserError val: - :rtype: ListFileMembersError + :param sharing.SharingUserError val: + :rtype: sharing.ListFileMembersError """ return cls('user_error', val) @@ -7541,8 +7633,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: ListFileMembersError + :param sharing.SharingFileAccessError val: + :rtype: sharing.ListFileMembersError """ return cls('access_error', val) @@ -7574,7 +7666,7 @@ def get_user_error(self): """ Only call this if :meth:`is_user_error` is true. - :rtype: SharingUserError + :rtype: sharing.SharingUserError """ if not self.is_user_error(): raise AttributeError("tag 'user_error' not set") @@ -7584,7 +7676,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -7604,10 +7696,12 @@ class ListFileMembersIndividualResult(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar ListFileMembersCountResult result: The results of the query for this - file if it was successful. - :ivar SharingFileAccessError access_error: The result of the query for this - file if it was an error. + :ivar ListFileMembersCountResult + sharing.ListFileMembersIndividualResult.result: The results of the query + for this file if it was successful. + :ivar SharingFileAccessError + sharing.ListFileMembersIndividualResult.access_error: The result of the + query for this file if it was an error. """ _catch_all = 'other' @@ -7620,8 +7714,8 @@ def result(cls, val): Create an instance of this class set to the ``result`` tag with value ``val``. - :param ListFileMembersCountResult val: - :rtype: ListFileMembersIndividualResult + :param sharing.ListFileMembersCountResult val: + :rtype: sharing.ListFileMembersIndividualResult """ return cls('result', val) @@ -7631,8 +7725,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: ListFileMembersIndividualResult + :param sharing.SharingFileAccessError val: + :rtype: sharing.ListFileMembersIndividualResult """ return cls('access_error', val) @@ -7666,7 +7760,7 @@ def get_result(self): Only call this if :meth:`is_result` is true. - :rtype: ListFileMembersCountResult + :rtype: sharing.ListFileMembersCountResult """ if not self.is_result(): raise AttributeError("tag 'result' not set") @@ -7678,7 +7772,7 @@ def get_access_error(self): Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -7696,12 +7790,12 @@ class ListFilesArg(bb.Struct): """ Arguments for :meth:`dropbox.dropbox.Dropbox.sharing_list_received_files`. - :ivar limit: Number of files to return max per query. Defaults to 100 if no - limit is specified. - :ivar actions: A list of `FileAction`s corresponding to `FilePermission`s - that should appear in the response's ``SharedFileMetadata.permissions`` - field describing the actions the authenticated user can perform on the - file. + :ivar sharing.ListFilesArg.limit: Number of files to return max per query. + Defaults to 100 if no limit is specified. + :ivar sharing.ListFilesArg.actions: A list of `FileAction`s corresponding to + `FilePermission`s that should appear in the response's + ``SharedFileMetadata.permissions`` field describing the actions the + authenticated user can perform on the file. """ __slots__ = [ @@ -7756,7 +7850,7 @@ def actions(self): appear in the response's ``SharedFileMetadata.permissions`` field describing the actions the authenticated user can perform on the file. - :rtype: list of [FileAction] + :rtype: list of [sharing.FileAction] """ if self._actions_present: return self._actions_value @@ -7793,7 +7887,8 @@ class ListFilesContinueArg(bb.Struct): Arguments for :meth:`dropbox.dropbox.Dropbox.sharing_list_received_files_continue`. - :ivar cursor: Cursor in ``ListFilesResult.cursor``. + :ivar sharing.ListFilesContinueArg.cursor: Cursor in + ``ListFilesResult.cursor``. """ __slots__ = [ @@ -7852,8 +7947,10 @@ class ListFilesContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar SharingUserError user_error: User account had a problem. - :ivar invalid_cursor: ``ListFilesContinueArg.cursor`` is invalid. + :ivar SharingUserError sharing.ListFilesContinueError.user_error: User + account had a problem. + :ivar sharing.ListFilesContinueError.invalid_cursor: + ``ListFilesContinueArg.cursor`` is invalid. """ _catch_all = 'other' @@ -7868,8 +7965,8 @@ def user_error(cls, val): Create an instance of this class set to the ``user_error`` tag with value ``val``. - :param SharingUserError val: - :rtype: ListFilesContinueError + :param sharing.SharingUserError val: + :rtype: sharing.ListFilesContinueError """ return cls('user_error', val) @@ -7903,7 +8000,7 @@ def get_user_error(self): Only call this if :meth:`is_user_error` is true. - :rtype: SharingUserError + :rtype: sharing.SharingUserError """ if not self.is_user_error(): raise AttributeError("tag 'user_error' not set") @@ -7922,8 +8019,10 @@ class ListFilesResult(bb.Struct): Success results for :meth:`dropbox.dropbox.Dropbox.sharing_list_received_files`. - :ivar entries: Information about the files shared with current user. - :ivar cursor: Cursor used to obtain additional shared files. + :ivar sharing.ListFilesResult.entries: Information about the files shared + with current user. + :ivar sharing.ListFilesResult.cursor: Cursor used to obtain additional + shared files. """ __slots__ = [ @@ -7952,7 +8051,7 @@ def entries(self): """ Information about the files shared with current user. - :rtype: list of [SharedFileMetadata] + :rtype: list of [sharing.SharedFileMetadata] """ if self._entries_present: return self._entries_value @@ -8009,11 +8108,12 @@ def __repr__(self): class ListFolderMembersCursorArg(bb.Struct): """ - :ivar actions: This is a list indicating whether each returned member will - include a boolean value ``MemberPermission.allow`` that describes - whether the current user can perform the MemberAction on the member. - :ivar limit: The maximum number of results that include members, groups and - invitees to return per request. + :ivar sharing.ListFolderMembersCursorArg.actions: This is a list indicating + whether each returned member will include a boolean value + ``MemberPermission.allow`` that describes whether the current user can + perform the MemberAction on the member. + :ivar sharing.ListFolderMembersCursorArg.limit: The maximum number of + results that include members, groups and invitees to return per request. """ __slots__ = [ @@ -8044,7 +8144,7 @@ def actions(self): boolean value ``MemberPermission.allow`` that describes whether the current user can perform the MemberAction on the member. - :rtype: list of [MemberAction] + :rtype: list of [sharing.MemberAction] """ if self._actions_present: return self._actions_value @@ -8102,7 +8202,8 @@ def __repr__(self): class ListFolderMembersArgs(ListFolderMembersCursorArg): """ - :ivar shared_folder_id: The ID for the shared folder. + :ivar sharing.ListFolderMembersArgs.shared_folder_id: The ID for the shared + folder. """ __slots__ = [ @@ -8160,7 +8261,8 @@ def __repr__(self): class ListFolderMembersContinueArg(bb.Struct): """ - :ivar cursor: The cursor returned by your last call to + :ivar sharing.ListFolderMembersContinueArg.cursor: The cursor returned by + your last call to :meth:`dropbox.dropbox.Dropbox.sharing_list_folder_members` or :meth:`dropbox.dropbox.Dropbox.sharing_list_folder_members_continue`. """ @@ -8220,7 +8322,8 @@ class ListFolderMembersContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_cursor: ``ListFolderMembersContinueArg.cursor`` is invalid. + :ivar sharing.ListFolderMembersContinueError.invalid_cursor: + ``ListFolderMembersContinueArg.cursor`` is invalid. """ _catch_all = 'other' @@ -8235,8 +8338,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: ListFolderMembersContinueError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.ListFolderMembersContinueError """ return cls('access_error', val) @@ -8268,7 +8371,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -8284,11 +8387,12 @@ def __repr__(self): class ListFoldersArgs(bb.Struct): """ - :ivar limit: The maximum number of results to return per request. - :ivar actions: A list of `FolderAction`s corresponding to - `FolderPermission`s that should appear in the response's - ``SharedFolderMetadata.permissions`` field describing the actions the - authenticated user can perform on the folder. + :ivar sharing.ListFoldersArgs.limit: The maximum number of results to return + per request. + :ivar sharing.ListFoldersArgs.actions: A list of `FolderAction`s + corresponding to `FolderPermission`s that should appear in the + response's ``SharedFolderMetadata.permissions`` field describing the + actions the authenticated user can perform on the folder. """ __slots__ = [ @@ -8343,7 +8447,7 @@ def actions(self): field describing the actions the authenticated user can perform on the folder. - :rtype: list of [FolderAction] + :rtype: list of [sharing.FolderAction] """ if self._actions_present: return self._actions_value @@ -8377,8 +8481,8 @@ def __repr__(self): class ListFoldersContinueArg(bb.Struct): """ - :ivar cursor: The cursor returned by the previous API call specified in the - endpoint description. + :ivar sharing.ListFoldersContinueArg.cursor: The cursor returned by the + previous API call specified in the endpoint description. """ __slots__ = [ @@ -8435,7 +8539,8 @@ class ListFoldersContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_cursor: ``ListFoldersContinueArg.cursor`` is invalid. + :ivar sharing.ListFoldersContinueError.invalid_cursor: + ``ListFoldersContinueArg.cursor`` is invalid. """ _catch_all = 'other' @@ -8475,11 +8580,11 @@ class ListFoldersResult(bb.Struct): which endpoint was requested. Unmounted shared folders can be identified by the absence of ``SharedFolderMetadata.path_lower``. - :ivar entries: List of all shared folders the authenticated user has access - to. - :ivar cursor: Present if there are additional shared folders that have not - been returned yet. Pass the cursor into the corresponding continue - endpoint (either + :ivar sharing.ListFoldersResult.entries: List of all shared folders the + authenticated user has access to. + :ivar sharing.ListFoldersResult.cursor: Present if there are additional + shared folders that have not been returned yet. Pass the cursor into the + corresponding continue endpoint (either :meth:`dropbox.dropbox.Dropbox.sharing_list_folders_continue` or :meth:`dropbox.dropbox.Dropbox.sharing_list_mountable_folders_continue`) to list additional folders. @@ -8511,7 +8616,7 @@ def entries(self): """ List of all shared folders the authenticated user has access to. - :rtype: list of [SharedFolderMetadata] + :rtype: list of [sharing.SharedFolderMetadata] """ if self._entries_present: return self._entries_value @@ -8572,11 +8677,11 @@ def __repr__(self): class ListSharedLinksArg(bb.Struct): """ - :ivar path: See :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links` - description. - :ivar cursor: The cursor returned by your last call to - :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links`. - :ivar direct_only: See + :ivar sharing.ListSharedLinksArg.path: See + :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links` description. + :ivar sharing.ListSharedLinksArg.cursor: The cursor returned by your last + call to :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links`. + :ivar sharing.ListSharedLinksArg.direct_only: See :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links` description. """ @@ -8707,7 +8812,8 @@ class ListSharedLinksError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar reset: Indicates that the cursor has been invalidated. Call + :ivar sharing.ListSharedLinksError.reset: Indicates that the cursor has been + invalidated. Call :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links` to obtain a new cursor. """ @@ -8725,7 +8831,7 @@ def path(cls, val): ``val``. :param files.LookupError val: - :rtype: ListSharedLinksError + :rtype: sharing.ListSharedLinksError """ return cls('path', val) @@ -8773,12 +8879,13 @@ def __repr__(self): class ListSharedLinksResult(bb.Struct): """ - :ivar links: Shared links applicable to the path argument. - :ivar has_more: Is true if there are additional shared links that have not - been returned yet. Pass the cursor into - :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links` to retrieve - them. - :ivar cursor: Pass the cursor into + :ivar sharing.ListSharedLinksResult.links: Shared links applicable to the + path argument. + :ivar sharing.ListSharedLinksResult.has_more: Is true if there are + additional shared links that have not been returned yet. Pass the cursor + into :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links` to + retrieve them. + :ivar sharing.ListSharedLinksResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.sharing_list_shared_links` to obtain the additional links. Cursor is returned only if no path is given. """ @@ -8816,7 +8923,7 @@ def links(self): """ Shared links applicable to the path argument. - :rtype: list of [SharedLinkMetadata] + :rtype: list of [sharing.SharedLinkMetadata] """ if self._links_present: return self._links_value @@ -8905,13 +9012,14 @@ class MemberAccessLevelResult(bb.Struct): Contains information about a member's access level to content after an operation. - :ivar access_level: The member still has this level of access to the content - through a parent folder. - :ivar warning: A localized string with additional information about why the - user has this access level to the content. - :ivar access_details: The parent folders that a member has access to. The - field is present if the user has access to the first parent folder where - the member gains access. + :ivar sharing.MemberAccessLevelResult.access_level: The member still has + this level of access to the content through a parent folder. + :ivar sharing.MemberAccessLevelResult.warning: A localized string with + additional information about why the user has this access level to the + content. + :ivar sharing.MemberAccessLevelResult.access_details: The parent folders + that a member has access to. The field is present if the user has access + to the first parent folder where the member gains access. """ __slots__ = [ @@ -8948,7 +9056,7 @@ def access_level(self): The member still has this level of access to the content through a parent folder. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_level_present: return self._access_level_value @@ -9003,7 +9111,7 @@ def access_details(self): the user has access to the first parent folder where the member gains access. - :rtype: list of [ParentFolderAccessInfo] + :rtype: list of [sharing.ParentFolderAccessInfo] """ if self._access_details_present: return self._access_details_value @@ -9044,14 +9152,17 @@ class MemberAction(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar leave_a_copy: Allow the member to keep a copy of the folder when - removing. - :ivar make_editor: Make the member an editor of the folder. - :ivar make_owner: Make the member an owner of the folder. - :ivar make_viewer: Make the member a viewer of the folder. - :ivar make_viewer_no_comment: Make the member a viewer of the folder without - commenting permissions. - :ivar remove: Remove the member from the folder. + :ivar sharing.MemberAction.leave_a_copy: Allow the member to keep a copy of + the folder when removing. + :ivar sharing.MemberAction.make_editor: Make the member an editor of the + folder. + :ivar sharing.MemberAction.make_owner: Make the member an owner of the + folder. + :ivar sharing.MemberAction.make_viewer: Make the member a viewer of the + folder. + :ivar sharing.MemberAction.make_viewer_no_comment: Make the member a viewer + of the folder without commenting permissions. + :ivar sharing.MemberAction.remove: Remove the member from the folder. """ _catch_all = 'other' @@ -9138,10 +9249,12 @@ class MemberPermission(bb.Struct): """ Whether the user is allowed to take the action on the associated member. - :ivar action: The action that the user may wish to take on the member. - :ivar allow: True if the user is allowed to take the action. - :ivar reason: The reason why the user is denied the permission. Not present - if the action is allowed. + :ivar sharing.MemberPermission.action: The action that the user may wish to + take on the member. + :ivar sharing.MemberPermission.allow: True if the user is allowed to take + the action. + :ivar sharing.MemberPermission.reason: The reason why the user is denied the + permission. Not present if the action is allowed. """ __slots__ = [ @@ -9177,7 +9290,7 @@ def action(self): """ The action that the user may wish to take on the member. - :rtype: MemberAction + :rtype: sharing.MemberAction """ if self._action_present: return self._action_value @@ -9224,7 +9337,7 @@ def reason(self): The reason why the user is denied the permission. Not present if the action is allowed. - :rtype: PermissionDeniedReason + :rtype: sharing.PermissionDeniedReason """ if self._reason_present: return self._reason_value @@ -9266,8 +9379,8 @@ class MemberPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar team: Only a teammate can become a member. - :ivar anyone: Anyone can become a member. + :ivar sharing.MemberPolicy.team: Only a teammate can become a member. + :ivar sharing.MemberPolicy.anyone: Anyone can become a member. """ _catch_all = 'other' @@ -9318,8 +9431,9 @@ class MemberSelector(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str dropbox_id: Dropbox account, team member, or group ID of member. - :ivar str email: E-mail address of member. + :ivar str sharing.MemberSelector.dropbox_id: Dropbox account, team member, + or group ID of member. + :ivar str sharing.MemberSelector.email: E-mail address of member. """ _catch_all = 'other' @@ -9333,7 +9447,7 @@ def dropbox_id(cls, val): value ``val``. :param str val: - :rtype: MemberSelector + :rtype: sharing.MemberSelector """ return cls('dropbox_id', val) @@ -9344,7 +9458,7 @@ def email(cls, val): ``val``. :param str val: - :rtype: MemberSelector + :rtype: sharing.MemberSelector """ return cls('email', val) @@ -9406,10 +9520,12 @@ def __repr__(self): class ModifySharedLinkSettingsArgs(bb.Struct): """ - :ivar url: URL of the shared link to change its settings. - :ivar settings: Set of settings for the shared link. - :ivar remove_expiration: If set to true, removes the expiration of the + :ivar sharing.ModifySharedLinkSettingsArgs.url: URL of the shared link to + change its settings. + :ivar sharing.ModifySharedLinkSettingsArgs.settings: Set of settings for the shared link. + :ivar sharing.ModifySharedLinkSettingsArgs.remove_expiration: If set to + true, removes the expiration of the shared link. """ __slots__ = [ @@ -9468,7 +9584,7 @@ def settings(self): """ Set of settings for the shared link. - :rtype: SharedLinkSettings + :rtype: sharing.SharedLinkSettings """ if self._settings_present: return self._settings_value @@ -9527,9 +9643,11 @@ class ModifySharedLinkSettingsError(SharedLinkError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar SharedLinkSettingsError settings_error: There is an error with the - given settings. - :ivar email_not_verified: The caller's email should be verified. + :ivar SharedLinkSettingsError + sharing.ModifySharedLinkSettingsError.settings_error: There is an error + with the given settings. + :ivar sharing.ModifySharedLinkSettingsError.email_not_verified: The caller's + email should be verified. """ # Attribute is overwritten below the class definition @@ -9541,8 +9659,8 @@ def settings_error(cls, val): Create an instance of this class set to the ``settings_error`` tag with value ``val``. - :param SharedLinkSettingsError val: - :rtype: ModifySharedLinkSettingsError + :param sharing.SharedLinkSettingsError val: + :rtype: sharing.ModifySharedLinkSettingsError """ return cls('settings_error', val) @@ -9568,7 +9686,7 @@ def get_settings_error(self): Only call this if :meth:`is_settings_error` is true. - :rtype: SharedLinkSettingsError + :rtype: sharing.SharedLinkSettingsError """ if not self.is_settings_error(): raise AttributeError("tag 'settings_error' not set") @@ -9584,7 +9702,8 @@ def __repr__(self): class MountFolderArg(bb.Struct): """ - :ivar shared_folder_id: The ID of the shared folder to mount. + :ivar sharing.MountFolderArg.shared_folder_id: The ID of the shared folder + to mount. """ __slots__ = [ @@ -9640,16 +9759,17 @@ class MountFolderError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar inside_shared_folder: Mounting would cause a shared folder to be - inside another, which is disallowed. - :ivar InsufficientQuotaAmounts insufficient_quota: The current user does not - have enough space to mount the shared folder. - :ivar already_mounted: The shared folder is already mounted. - :ivar no_permission: The current user does not have permission to perform - this action. - :ivar not_mountable: The shared folder is not mountable. One example where - this can occur is when the shared folder belongs within a team folder in - the user's Dropbox. + :ivar sharing.MountFolderError.inside_shared_folder: Mounting would cause a + shared folder to be inside another, which is disallowed. + :ivar InsufficientQuotaAmounts sharing.MountFolderError.insufficient_quota: + The current user does not have enough space to mount the shared folder. + :ivar sharing.MountFolderError.already_mounted: The shared folder is already + mounted. + :ivar sharing.MountFolderError.no_permission: The current user does not have + permission to perform this action. + :ivar sharing.MountFolderError.not_mountable: The shared folder is not + mountable. One example where this can occur is when the shared folder + belongs within a team folder in the user's Dropbox. """ _catch_all = 'other' @@ -9670,8 +9790,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: MountFolderError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.MountFolderError """ return cls('access_error', val) @@ -9681,8 +9801,8 @@ def insufficient_quota(cls, val): Create an instance of this class set to the ``insufficient_quota`` tag with value ``val``. - :param InsufficientQuotaAmounts val: - :rtype: MountFolderError + :param sharing.InsufficientQuotaAmounts val: + :rtype: sharing.MountFolderError """ return cls('insufficient_quota', val) @@ -9746,7 +9866,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -9758,7 +9878,7 @@ def get_insufficient_quota(self): Only call this if :meth:`is_insufficient_quota` is true. - :rtype: InsufficientQuotaAmounts + :rtype: sharing.InsufficientQuotaAmounts """ if not self.is_insufficient_quota(): raise AttributeError("tag 'insufficient_quota' not set") @@ -9776,11 +9896,14 @@ class ParentFolderAccessInfo(bb.Struct): """ Contains information about a parent folder that a member has access to. - :ivar folder_name: Display name for the folder. - :ivar shared_folder_id: The identifier of the parent shared folder. - :ivar permissions: The user's permissions for the parent shared folder. - :ivar path: The full path to the parent shared folder relative to the acting - user's root. + :ivar sharing.ParentFolderAccessInfo.folder_name: Display name for the + folder. + :ivar sharing.ParentFolderAccessInfo.shared_folder_id: The identifier of the + parent shared folder. + :ivar sharing.ParentFolderAccessInfo.permissions: The user's permissions for + the parent shared folder. + :ivar sharing.ParentFolderAccessInfo.path: The full path to the parent + shared folder relative to the acting user's root. """ __slots__ = [ @@ -9869,7 +9992,7 @@ def permissions(self): """ The user's permissions for the parent shared folder. - :rtype: list of [MemberPermission] + :rtype: list of [sharing.MemberPermission] """ if self._permissions_present: return self._permissions_value @@ -9928,7 +10051,7 @@ class PathLinkMetadata(LinkMetadata): """ Metadata for a path-based shared link. - :ivar path: Path in user's Dropbox. + :ivar sharing.PathLinkMetadata.path: Path in user's Dropbox. """ __slots__ = [ @@ -9996,8 +10119,8 @@ class PendingUploadMode(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar file: Assume pending uploads are files. - :ivar folder: Assume pending uploads are folders. + :ivar sharing.PendingUploadMode.file: Assume pending uploads are files. + :ivar sharing.PendingUploadMode.folder: Assume pending uploads are folders. """ _catch_all = None @@ -10038,31 +10161,34 @@ class PermissionDeniedReason(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar user_not_same_team_as_owner: User is not on the same team as the - folder owner. - :ivar user_not_allowed_by_owner: User is prohibited by the owner from taking - the action. - :ivar target_is_indirect_member: Target is indirectly a member of the - folder, for example by being part of a group. - :ivar target_is_owner: Target is the owner of the folder. - :ivar target_is_self: Target is the user itself. - :ivar target_not_active: Target is not an active member of the team. - :ivar folder_is_limited_team_folder: Folder is team folder for a limited - team. - :ivar owner_not_on_team: The content owner needs to be on a Dropbox team to - perform this action. - :ivar permission_denied: The user does not have permission to perform this - action on the link. - :ivar restricted_by_team: The user's team policy prevents performing this - action on the link. - :ivar user_account_type: The user's account type does not support this - action. - :ivar user_not_on_team: The user needs to be on a Dropbox team to perform - this action. - :ivar folder_is_inside_shared_folder: Folder is inside of another shared - folder. - :ivar restricted_by_parent_folder: Policy cannot be changed due to - restrictions from parent folder. + :ivar sharing.PermissionDeniedReason.user_not_same_team_as_owner: User is + not on the same team as the folder owner. + :ivar sharing.PermissionDeniedReason.user_not_allowed_by_owner: User is + prohibited by the owner from taking the action. + :ivar sharing.PermissionDeniedReason.target_is_indirect_member: Target is + indirectly a member of the folder, for example by being part of a group. + :ivar sharing.PermissionDeniedReason.target_is_owner: Target is the owner of + the folder. + :ivar sharing.PermissionDeniedReason.target_is_self: Target is the user + itself. + :ivar sharing.PermissionDeniedReason.target_not_active: Target is not an + active member of the team. + :ivar sharing.PermissionDeniedReason.folder_is_limited_team_folder: Folder + is team folder for a limited team. + :ivar sharing.PermissionDeniedReason.owner_not_on_team: The content owner + needs to be on a Dropbox team to perform this action. + :ivar sharing.PermissionDeniedReason.permission_denied: The user does not + have permission to perform this action on the link. + :ivar sharing.PermissionDeniedReason.restricted_by_team: The user's team + policy prevents performing this action on the link. + :ivar sharing.PermissionDeniedReason.user_account_type: The user's account + type does not support this action. + :ivar sharing.PermissionDeniedReason.user_not_on_team: The user needs to be + on a Dropbox team to perform this action. + :ivar sharing.PermissionDeniedReason.folder_is_inside_shared_folder: Folder + is inside of another shared folder. + :ivar sharing.PermissionDeniedReason.restricted_by_parent_folder: Policy + cannot be changed due to restrictions from parent folder. """ _catch_all = 'other' @@ -10103,8 +10229,8 @@ def insufficient_plan(cls, val): Create an instance of this class set to the ``insufficient_plan`` tag with value ``val``. - :param InsufficientPlan val: - :rtype: PermissionDeniedReason + :param sharing.InsufficientPlan val: + :rtype: sharing.PermissionDeniedReason """ return cls('insufficient_plan', val) @@ -10240,7 +10366,7 @@ def get_insufficient_plan(self): """ Only call this if :meth:`is_insufficient_plan` is true. - :rtype: InsufficientPlan + :rtype: sharing.InsufficientPlan """ if not self.is_insufficient_plan(): raise AttributeError("tag 'insufficient_plan' not set") @@ -10256,7 +10382,7 @@ def __repr__(self): class RelinquishFileMembershipArg(bb.Struct): """ - :ivar file: The path or id for the file. + :ivar sharing.RelinquishFileMembershipArg.file: The path or id for the file. """ __slots__ = [ @@ -10312,10 +10438,11 @@ class RelinquishFileMembershipError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar group_access: The current user has access to the shared file via a - group. You can't relinquish membership to a file shared via groups. - :ivar no_permission: The current user does not have permission to perform - this action. + :ivar sharing.RelinquishFileMembershipError.group_access: The current user + has access to the shared file via a group. You can't relinquish + membership to a file shared via groups. + :ivar sharing.RelinquishFileMembershipError.no_permission: The current user + does not have permission to perform this action. """ _catch_all = 'other' @@ -10332,8 +10459,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: RelinquishFileMembershipError + :param sharing.SharingFileAccessError val: + :rtype: sharing.RelinquishFileMembershipError """ return cls('access_error', val) @@ -10373,7 +10500,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -10389,9 +10516,10 @@ def __repr__(self): class RelinquishFolderMembershipArg(bb.Struct): """ - :ivar shared_folder_id: The ID for the shared folder. - :ivar leave_a_copy: Keep a copy of the folder's contents upon relinquishing - membership. + :ivar sharing.RelinquishFolderMembershipArg.shared_folder_id: The ID for the + shared folder. + :ivar sharing.RelinquishFolderMembershipArg.leave_a_copy: Keep a copy of the + folder's contents upon relinquishing membership. """ __slots__ = [ @@ -10478,18 +10606,22 @@ class RelinquishFolderMembershipError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar folder_owner: The current user is the owner of the shared folder. - Owners cannot relinquish membership to their own folders. Try unsharing - or transferring ownership first. - :ivar mounted: The shared folder is currently mounted. Unmount the shared - folder before relinquishing membership. - :ivar group_access: The current user has access to the shared folder via a - group. You can't relinquish membership to folders shared via groups. - :ivar team_folder: This action cannot be performed on a team shared folder. - :ivar no_permission: The current user does not have permission to perform - this action. - :ivar no_explicit_access: The current user only has inherited access to the - shared folder. You can't relinquish inherited membership to folders. + :ivar sharing.RelinquishFolderMembershipError.folder_owner: The current user + is the owner of the shared folder. Owners cannot relinquish membership + to their own folders. Try unsharing or transferring ownership first. + :ivar sharing.RelinquishFolderMembershipError.mounted: The shared folder is + currently mounted. Unmount the shared folder before relinquishing + membership. + :ivar sharing.RelinquishFolderMembershipError.group_access: The current user + has access to the shared folder via a group. You can't relinquish + membership to folders shared via groups. + :ivar sharing.RelinquishFolderMembershipError.team_folder: This action + cannot be performed on a team shared folder. + :ivar sharing.RelinquishFolderMembershipError.no_permission: The current + user does not have permission to perform this action. + :ivar sharing.RelinquishFolderMembershipError.no_explicit_access: The + current user only has inherited access to the shared folder. You can't + relinquish inherited membership to folders. """ _catch_all = 'other' @@ -10514,8 +10646,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: RelinquishFolderMembershipError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.RelinquishFolderMembershipError """ return cls('access_error', val) @@ -10587,7 +10719,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -10605,10 +10737,11 @@ class RemoveFileMemberArg(bb.Struct): """ Arguments for :meth:`dropbox.dropbox.Dropbox.sharing_remove_file_member_2`. - :ivar file: File from which to remove members. - :ivar member: Member to remove from this file. Note that even if an email is - specified, it may result in the removal of a user (not an invitee) if - the user's main account corresponds to that email address. + :ivar sharing.RemoveFileMemberArg.file: File from which to remove members. + :ivar sharing.RemoveFileMemberArg.member: Member to remove from this file. + Note that even if an email is specified, it may result in the removal of + a user (not an invitee) if the user's main account corresponds to that + email address. """ __slots__ = [ @@ -10662,7 +10795,7 @@ def member(self): specified, it may result in the removal of a user (not an invitee) if the user's main account corresponds to that email address. - :rtype: MemberSelector + :rtype: sharing.MemberSelector """ if self._member_present: return self._member_value @@ -10699,10 +10832,11 @@ class RemoveFileMemberError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar MemberAccessLevelResult no_explicit_access: This member does not have - explicit access to the file and therefore cannot be removed. The return - value is the access that a user might have to the file from a parent - folder. + :ivar MemberAccessLevelResult + sharing.RemoveFileMemberError.no_explicit_access: This member does not + have explicit access to the file and therefore cannot be removed. The + return value is the access that a user might have to the file from a + parent folder. """ _catch_all = 'other' @@ -10715,8 +10849,8 @@ def user_error(cls, val): Create an instance of this class set to the ``user_error`` tag with value ``val``. - :param SharingUserError val: - :rtype: RemoveFileMemberError + :param sharing.SharingUserError val: + :rtype: sharing.RemoveFileMemberError """ return cls('user_error', val) @@ -10726,8 +10860,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: RemoveFileMemberError + :param sharing.SharingFileAccessError val: + :rtype: sharing.RemoveFileMemberError """ return cls('access_error', val) @@ -10737,8 +10871,8 @@ def no_explicit_access(cls, val): Create an instance of this class set to the ``no_explicit_access`` tag with value ``val``. - :param MemberAccessLevelResult val: - :rtype: RemoveFileMemberError + :param sharing.MemberAccessLevelResult val: + :rtype: sharing.RemoveFileMemberError """ return cls('no_explicit_access', val) @@ -10778,7 +10912,7 @@ def get_user_error(self): """ Only call this if :meth:`is_user_error` is true. - :rtype: SharingUserError + :rtype: sharing.SharingUserError """ if not self.is_user_error(): raise AttributeError("tag 'user_error' not set") @@ -10788,7 +10922,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -10802,7 +10936,7 @@ def get_no_explicit_access(self): Only call this if :meth:`is_no_explicit_access` is true. - :rtype: MemberAccessLevelResult + :rtype: sharing.MemberAccessLevelResult """ if not self.is_no_explicit_access(): raise AttributeError("tag 'no_explicit_access' not set") @@ -10818,12 +10952,14 @@ def __repr__(self): class RemoveFolderMemberArg(bb.Struct): """ - :ivar shared_folder_id: The ID for the shared folder. - :ivar member: The member to remove from the folder. - :ivar leave_a_copy: If true, the removed user will keep their copy of the - folder after it's unshared, assuming it was mounted. Otherwise, it will - be removed from their Dropbox. Also, this must be set to false when - kicking a group. + :ivar sharing.RemoveFolderMemberArg.shared_folder_id: The ID for the shared + folder. + :ivar sharing.RemoveFolderMemberArg.member: The member to remove from the + folder. + :ivar sharing.RemoveFolderMemberArg.leave_a_copy: If true, the removed user + will keep their copy of the folder after it's unshared, assuming it was + mounted. Otherwise, it will be removed from their Dropbox. Also, this + must be set to false when kicking a group. """ __slots__ = [ @@ -10882,7 +11018,7 @@ def member(self): """ The member to remove from the folder. - :rtype: MemberSelector + :rtype: sharing.MemberSelector """ if self._member_present: return self._member_value @@ -10943,16 +11079,18 @@ class RemoveFolderMemberError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar folder_owner: The target user is the owner of the shared folder. You - can't remove this user until ownership has been transferred to another - member. - :ivar group_access: The target user has access to the shared folder via a - group. - :ivar team_folder: This action cannot be performed on a team shared folder. - :ivar no_permission: The current user does not have permission to perform - this action. - :ivar too_many_files: This shared folder has too many files for leaving a - copy. You can still remove this user without leaving a copy. + :ivar sharing.RemoveFolderMemberError.folder_owner: The target user is the + owner of the shared folder. You can't remove this user until ownership + has been transferred to another member. + :ivar sharing.RemoveFolderMemberError.group_access: The target user has + access to the shared folder via a group. + :ivar sharing.RemoveFolderMemberError.team_folder: This action cannot be + performed on a team shared folder. + :ivar sharing.RemoveFolderMemberError.no_permission: The current user does + not have permission to perform this action. + :ivar sharing.RemoveFolderMemberError.too_many_files: This shared folder has + too many files for leaving a copy. You can still remove this user + without leaving a copy. """ _catch_all = 'other' @@ -10975,8 +11113,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: RemoveFolderMemberError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.RemoveFolderMemberError """ return cls('access_error', val) @@ -10986,8 +11124,8 @@ def member_error(cls, val): Create an instance of this class set to the ``member_error`` tag with value ``val``. - :param SharedFolderMemberError val: - :rtype: RemoveFolderMemberError + :param sharing.SharedFolderMemberError val: + :rtype: sharing.RemoveFolderMemberError """ return cls('member_error', val) @@ -11059,7 +11197,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -11069,7 +11207,7 @@ def get_member_error(self): """ Only call this if :meth:`is_member_error` is true. - :rtype: SharedFolderMemberError + :rtype: sharing.SharedFolderMemberError """ if not self.is_member_error(): raise AttributeError("tag 'member_error' not set") @@ -11089,9 +11227,9 @@ class RemoveMemberJobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar MemberAccessLevelResult complete: Removing the folder member has - finished. The value is information about whether the member has another - form of access. + :ivar MemberAccessLevelResult sharing.RemoveMemberJobStatus.complete: + Removing the folder member has finished. The value is information about + whether the member has another form of access. """ @classmethod @@ -11100,8 +11238,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param MemberAccessLevelResult val: - :rtype: RemoveMemberJobStatus + :param sharing.MemberAccessLevelResult val: + :rtype: sharing.RemoveMemberJobStatus """ return cls('complete', val) @@ -11111,8 +11249,8 @@ def failed(cls, val): Create an instance of this class set to the ``failed`` tag with value ``val``. - :param RemoveFolderMemberError val: - :rtype: RemoveMemberJobStatus + :param sharing.RemoveFolderMemberError val: + :rtype: sharing.RemoveMemberJobStatus """ return cls('failed', val) @@ -11139,7 +11277,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: MemberAccessLevelResult + :rtype: sharing.MemberAccessLevelResult """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -11149,7 +11287,7 @@ def get_failed(self): """ Only call this if :meth:`is_failed` is true. - :rtype: RemoveFolderMemberError + :rtype: sharing.RemoveFolderMemberError """ if not self.is_failed(): raise AttributeError("tag 'failed' not set") @@ -11175,12 +11313,12 @@ class RequestedVisibility(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar public: Anyone who has received the link can access it. No login - required. - :ivar team_only: Only members of the same team can access the link. Login is - required. - :ivar password: A link-specific password is required to access the link. - Login is not required. + :ivar sharing.RequestedVisibility.public: Anyone who has received the link + can access it. No login required. + :ivar sharing.RequestedVisibility.team_only: Only members of the same team + can access the link. Login is required. + :ivar sharing.RequestedVisibility.password: A link-specific password is + required to access the link. Login is not required. """ _catch_all = None @@ -11234,10 +11372,12 @@ class ResolvedVisibility(RequestedVisibility): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar team_and_password: Only members of the same team who have the - link-specific password can access the link. Login is required. - :ivar shared_folder_only: Only members of the shared folder containing the - linked file can access the link. Login is required. + :ivar sharing.ResolvedVisibility.team_and_password: Only members of the same + team who have the link-specific password can access the link. Login is + required. + :ivar sharing.ResolvedVisibility.shared_folder_only: Only members of the + shared folder containing the linked file can access the link. Login is + required. """ _catch_all = 'other' @@ -11282,7 +11422,7 @@ def __repr__(self): class RevokeSharedLinkArg(bb.Struct): """ - :ivar url: URL of the shared link. + :ivar sharing.RevokeSharedLinkArg.url: URL of the shared link. """ __slots__ = [ @@ -11338,7 +11478,8 @@ class RevokeSharedLinkError(SharedLinkError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar shared_link_malformed: Shared link is malformed. + :ivar sharing.RevokeSharedLinkError.shared_link_malformed: Shared link is + malformed. """ # Attribute is overwritten below the class definition @@ -11362,8 +11503,10 @@ def __repr__(self): class SetAccessInheritanceArg(bb.Struct): """ - :ivar access_inheritance: The access inheritance settings for the folder. - :ivar shared_folder_id: The ID for the shared folder. + :ivar sharing.SetAccessInheritanceArg.access_inheritance: The access + inheritance settings for the folder. + :ivar sharing.SetAccessInheritanceArg.shared_folder_id: The ID for the + shared folder. """ __slots__ = [ @@ -11392,7 +11535,7 @@ def access_inheritance(self): """ The access inheritance settings for the folder. - :rtype: AccessInheritance + :rtype: sharing.AccessInheritance """ if self._access_inheritance_present: return self._access_inheritance_value @@ -11450,9 +11593,11 @@ class SetAccessInheritanceError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar SharedFolderAccessError access_error: Unable to access shared folder. - :ivar no_permission: The current user does not have permission to perform - this action. + :ivar SharedFolderAccessError + sharing.SetAccessInheritanceError.access_error: Unable to access shared + folder. + :ivar sharing.SetAccessInheritanceError.no_permission: The current user does + not have permission to perform this action. """ _catch_all = 'other' @@ -11467,8 +11612,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: SetAccessInheritanceError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.SetAccessInheritanceError """ return cls('access_error', val) @@ -11502,7 +11647,7 @@ def get_access_error(self): Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -11518,19 +11663,22 @@ def __repr__(self): class ShareFolderArgBase(bb.Struct): """ - :ivar acl_update_policy: Who can add and remove members of this shared - folder. - :ivar force_async: Whether to force the share to happen asynchronously. - :ivar member_policy: Who can be a member of this shared folder. Only - applicable if the current user is on a team. - :ivar path: The path to the folder to share. If it does not exist, then a - new one is created. - :ivar shared_link_policy: The policy to apply to shared links created for - content inside this shared folder. The current user must be on a team - to set this policy to ``SharedLinkPolicy.members``. - :ivar viewer_info_policy: Who can enable/disable viewer info for this shared - folder. - :ivar access_inheritance: The access inheritance settings for the folder. + :ivar sharing.ShareFolderArgBase.acl_update_policy: Who can add and remove + members of this shared folder. + :ivar sharing.ShareFolderArgBase.force_async: Whether to force the share to + happen asynchronously. + :ivar sharing.ShareFolderArgBase.member_policy: Who can be a member of this + shared folder. Only applicable if the current user is on a team. + :ivar sharing.ShareFolderArgBase.path: The path to the folder to share. If + it does not exist, then a new one is created. + :ivar sharing.ShareFolderArgBase.shared_link_policy: The policy to apply to + shared links created for content inside this shared folder. The current + user must be on a team to set this policy to + ``SharedLinkPolicy.members``. + :ivar sharing.ShareFolderArgBase.viewer_info_policy: Who can enable/disable + viewer info for this shared folder. + :ivar sharing.ShareFolderArgBase.access_inheritance: The access inheritance + settings for the folder. """ __slots__ = [ @@ -11594,7 +11742,7 @@ def acl_update_policy(self): """ Who can add and remove members of this shared folder. - :rtype: AclUpdatePolicy + :rtype: sharing.AclUpdatePolicy """ if self._acl_update_policy_present: return self._acl_update_policy_value @@ -11644,7 +11792,7 @@ def member_policy(self): Who can be a member of this shared folder. Only applicable if the current user is on a team. - :rtype: MemberPolicy + :rtype: sharing.MemberPolicy """ if self._member_policy_present: return self._member_policy_value @@ -11696,7 +11844,7 @@ def shared_link_policy(self): shared folder. The current user must be on a team to set this policy to ``SharedLinkPolicy.members``. - :rtype: SharedLinkPolicy + :rtype: sharing.SharedLinkPolicy """ if self._shared_link_policy_present: return self._shared_link_policy_value @@ -11722,7 +11870,7 @@ def viewer_info_policy(self): """ Who can enable/disable viewer info for this shared folder. - :rtype: ViewerInfoPolicy + :rtype: sharing.ViewerInfoPolicy """ if self._viewer_info_policy_present: return self._viewer_info_policy_value @@ -11748,7 +11896,7 @@ def access_inheritance(self): """ The access inheritance settings for the folder. - :rtype: AccessInheritance + :rtype: sharing.AccessInheritance """ if self._access_inheritance_present: return self._access_inheritance_value @@ -11784,11 +11932,12 @@ def __repr__(self): class ShareFolderArg(ShareFolderArgBase): """ - :ivar actions: A list of `FolderAction`s corresponding to - `FolderPermission`s that should appear in the response's - ``SharedFolderMetadata.permissions`` field describing the actions the - authenticated user can perform on the folder. - :ivar link_settings: Settings on the link for this folder. + :ivar sharing.ShareFolderArg.actions: A list of `FolderAction`s + corresponding to `FolderPermission`s that should appear in the + response's ``SharedFolderMetadata.permissions`` field describing the + actions the authenticated user can perform on the folder. + :ivar sharing.ShareFolderArg.link_settings: Settings on the link for this + folder. """ __slots__ = [ @@ -11834,7 +11983,7 @@ def actions(self): field describing the actions the authenticated user can perform on the folder. - :rtype: list of [FolderAction] + :rtype: list of [sharing.FolderAction] """ if self._actions_present: return self._actions_value @@ -11860,7 +12009,7 @@ def link_settings(self): """ Settings on the link for this folder. - :rtype: LinkSettings + :rtype: sharing.LinkSettings """ if self._link_settings_present: return self._link_settings_value @@ -11905,12 +12054,15 @@ class ShareFolderErrorBase(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar email_unverified: The current user's e-mail address is unverified. - :ivar SharePathError bad_path: ``ShareFolderArg.path`` is invalid. - :ivar team_policy_disallows_member_policy: Team policy is more restrictive - than ``ShareFolderArg.member_policy``. - :ivar disallowed_shared_link_policy: The current user's account is not - allowed to select the specified ``ShareFolderArg.shared_link_policy``. + :ivar sharing.ShareFolderErrorBase.email_unverified: The current user's + e-mail address is unverified. + :ivar SharePathError sharing.ShareFolderErrorBase.bad_path: + ``ShareFolderArg.path`` is invalid. + :ivar sharing.ShareFolderErrorBase.team_policy_disallows_member_policy: Team + policy is more restrictive than ``ShareFolderArg.member_policy``. + :ivar sharing.ShareFolderErrorBase.disallowed_shared_link_policy: The + current user's account is not allowed to select the specified + ``ShareFolderArg.shared_link_policy``. """ _catch_all = 'other' @@ -11929,8 +12081,8 @@ def bad_path(cls, val): Create an instance of this class set to the ``bad_path`` tag with value ``val``. - :param SharePathError val: - :rtype: ShareFolderErrorBase + :param sharing.SharePathError val: + :rtype: sharing.ShareFolderErrorBase """ return cls('bad_path', val) @@ -11980,7 +12132,7 @@ def get_bad_path(self): Only call this if :meth:`is_bad_path` is true. - :rtype: SharePathError + :rtype: sharing.SharePathError """ if not self.is_bad_path(): raise AttributeError("tag 'bad_path' not set") @@ -12000,8 +12152,8 @@ class ShareFolderError(ShareFolderErrorBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar no_permission: The current user does not have permission to perform - this action. + :ivar sharing.ShareFolderError.no_permission: The current user does not have + permission to perform this action. """ # Attribute is overwritten below the class definition @@ -12029,8 +12181,8 @@ class ShareFolderJobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar SharedFolderMetadata complete: The share job has finished. The value - is the metadata for the folder. + :ivar SharedFolderMetadata sharing.ShareFolderJobStatus.complete: The share + job has finished. The value is the metadata for the folder. """ @classmethod @@ -12039,8 +12191,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param SharedFolderMetadata val: - :rtype: ShareFolderJobStatus + :param sharing.SharedFolderMetadata val: + :rtype: sharing.ShareFolderJobStatus """ return cls('complete', val) @@ -12050,8 +12202,8 @@ def failed(cls, val): Create an instance of this class set to the ``failed`` tag with value ``val``. - :param ShareFolderError val: - :rtype: ShareFolderJobStatus + :param sharing.ShareFolderError val: + :rtype: sharing.ShareFolderJobStatus """ return cls('failed', val) @@ -12077,7 +12229,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: SharedFolderMetadata + :rtype: sharing.SharedFolderMetadata """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -12087,7 +12239,7 @@ def get_failed(self): """ Only call this if :meth:`is_failed` is true. - :rtype: ShareFolderError + :rtype: sharing.ShareFolderError """ if not self.is_failed(): raise AttributeError("tag 'failed' not set") @@ -12114,8 +12266,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param SharedFolderMetadata val: - :rtype: ShareFolderLaunch + :param sharing.SharedFolderMetadata val: + :rtype: sharing.ShareFolderLaunch """ return cls('complete', val) @@ -12131,7 +12283,7 @@ def get_complete(self): """ Only call this if :meth:`is_complete` is true. - :rtype: SharedFolderMetadata + :rtype: sharing.SharedFolderMetadata """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -12151,28 +12303,30 @@ class SharePathError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar is_file: A file is at the specified path. - :ivar inside_shared_folder: We do not support sharing a folder inside a - shared folder. - :ivar contains_shared_folder: We do not support shared folders that contain - shared folders. - :ivar contains_app_folder: We do not support shared folders that contain app - folders. - :ivar contains_team_folder: We do not support shared folders that contain - team folders. - :ivar is_app_folder: We do not support sharing an app folder. - :ivar inside_app_folder: We do not support sharing a folder inside an app + :ivar sharing.SharePathError.is_file: A file is at the specified path. + :ivar sharing.SharePathError.inside_shared_folder: We do not support sharing + a folder inside a shared folder. + :ivar sharing.SharePathError.contains_shared_folder: We do not support + shared folders that contain shared folders. + :ivar sharing.SharePathError.contains_app_folder: We do not support shared + folders that contain app folders. + :ivar sharing.SharePathError.contains_team_folder: We do not support shared + folders that contain team folders. + :ivar sharing.SharePathError.is_app_folder: We do not support sharing an app folder. - :ivar is_public_folder: A public folder can't be shared this way. Use a - public link instead. - :ivar inside_public_folder: A folder inside a public folder can't be shared - this way. Use a public link instead. - :ivar SharedFolderMetadata already_shared: Folder is already shared. - Contains metadata about the existing shared folder. - :ivar invalid_path: Path is not valid. - :ivar is_osx_package: We do not support sharing a Mac OS X package. - :ivar inside_osx_package: We do not support sharing a folder inside a Mac OS - X package. + :ivar sharing.SharePathError.inside_app_folder: We do not support sharing a + folder inside an app folder. + :ivar sharing.SharePathError.is_public_folder: A public folder can't be + shared this way. Use a public link instead. + :ivar sharing.SharePathError.inside_public_folder: A folder inside a public + folder can't be shared this way. Use a public link instead. + :ivar SharedFolderMetadata sharing.SharePathError.already_shared: Folder is + already shared. Contains metadata about the existing shared folder. + :ivar sharing.SharePathError.invalid_path: Path is not valid. + :ivar sharing.SharePathError.is_osx_package: We do not support sharing a Mac + OS X package. + :ivar sharing.SharePathError.inside_osx_package: We do not support sharing a + folder inside a Mac OS X package. """ _catch_all = 'other' @@ -12209,8 +12363,8 @@ def already_shared(cls, val): Create an instance of this class set to the ``already_shared`` tag with value ``val``. - :param SharedFolderMetadata val: - :rtype: SharePathError + :param sharing.SharedFolderMetadata val: + :rtype: sharing.SharePathError """ return cls('already_shared', val) @@ -12333,7 +12487,7 @@ def get_already_shared(self): Only call this if :meth:`is_already_shared` is true. - :rtype: SharedFolderMetadata + :rtype: sharing.SharedFolderMetadata """ if not self.is_already_shared(): raise AttributeError("tag 'already_shared' not set") @@ -12351,11 +12505,11 @@ class SharedContentLinkMetadata(SharedContentLinkMetadataBase): """ Metadata of a shared link for a file or folder. - :ivar audience_exceptions: The content inside this folder with link audience - different than this folder's. This is only returned when an endpoint - that returns metadata for a single shared folder is called, e.g. - /get_folder_metadata. - :ivar url: The URL of the link. + :ivar sharing.SharedContentLinkMetadata.audience_exceptions: The content + inside this folder with link audience different than this folder's. This + is only returned when an endpoint that returns metadata for a single + shared folder is called, e.g. /get_folder_metadata. + :ivar sharing.SharedContentLinkMetadata.url: The URL of the link. """ __slots__ = [ @@ -12400,7 +12554,7 @@ def audience_exceptions(self): folder's. This is only returned when an endpoint that returns metadata for a single shared folder is called, e.g. /get_folder_metadata. - :rtype: AudienceExceptions + :rtype: sharing.AudienceExceptions """ if self._audience_exceptions_present: return self._audience_exceptions_value @@ -12470,14 +12624,16 @@ class SharedFileMembers(bb.Struct): as part of the results for :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members_batch`. - :ivar users: The list of user members of the shared file. - :ivar groups: The list of group members of the shared file. - :ivar invitees: The list of invited members of a file, but have not logged - in and claimed this. - :ivar cursor: Present if there are additional shared file members that have - not been returned yet. Pass the cursor into - :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members_continue` to - list additional members. + :ivar sharing.SharedFileMembers.users: The list of user members of the + shared file. + :ivar sharing.SharedFileMembers.groups: The list of group members of the + shared file. + :ivar sharing.SharedFileMembers.invitees: The list of invited members of a + file, but have not logged in and claimed this. + :ivar sharing.SharedFileMembers.cursor: Present if there are additional + shared file members that have not been returned yet. Pass the cursor + into :meth:`dropbox.dropbox.Dropbox.sharing_list_file_members_continue` + to list additional members. """ __slots__ = [ @@ -12520,7 +12676,7 @@ def users(self): """ The list of user members of the shared file. - :rtype: list of [UserFileMembershipInfo] + :rtype: list of [sharing.UserFileMembershipInfo] """ if self._users_present: return self._users_value @@ -12543,7 +12699,7 @@ def groups(self): """ The list of group members of the shared file. - :rtype: list of [GroupMembershipInfo] + :rtype: list of [sharing.GroupMembershipInfo] """ if self._groups_present: return self._groups_value @@ -12567,7 +12723,7 @@ def invitees(self): The list of invited members of a file, but have not logged in and claimed this. - :rtype: list of [InviteeMembershipInfo] + :rtype: list of [sharing.InviteeMembershipInfo] """ if self._invitees_present: return self._invitees_value @@ -12631,37 +12787,44 @@ class SharedFileMetadata(bb.Struct): """ Properties of the shared file. - :ivar access_type: The current user's access level for this shared file. - :ivar id: The ID of the file. - :ivar expected_link_metadata: The expected metadata of the link associated - for the file when it is first shared. Absent if the link already exists. - This is for an unreleased feature so it may not be returned yet. - :ivar link_metadata: The metadata of the link associated for the file. This - is for an unreleased feature so it may not be returned yet. - :ivar name: The name of this file. - :ivar owner_display_names: The display names of the users that own the file. - If the file is part of a team folder, the display names of the team - admins are also included. Absent if the owner display names cannot be - fetched. - :ivar owner_team: The team that owns the file. This field is not present if - the file is not owned by a team. - :ivar parent_shared_folder_id: The ID of the parent shared folder. This - field is present only if the file is contained within a shared folder. - :ivar path_display: The cased path to be used for display purposes only. In - rare instances the casing will not correctly match the user's - filesystem, but this behavior will match the path provided in the Core - API v1. Absent for unmounted files. - :ivar path_lower: The lower-case full path of this file. Absent for - unmounted files. - :ivar permissions: The sharing permissions that requesting user has on this - file. This corresponds to the entries given in - ``GetFileMetadataBatchArg.actions`` or ``GetFileMetadataArg.actions``. - :ivar policy: Policies governing this shared file. - :ivar preview_url: URL for displaying a web preview of the shared file. - :ivar time_invited: Timestamp indicating when the current user was invited - to this shared file. If the user was not invited to the shared file, the - timestamp will indicate when the user was invited to the parent shared - folder. This value may be absent. + :ivar sharing.SharedFileMetadata.access_type: The current user's access + level for this shared file. + :ivar sharing.SharedFileMetadata.id: The ID of the file. + :ivar sharing.SharedFileMetadata.expected_link_metadata: The expected + metadata of the link associated for the file when it is first shared. + Absent if the link already exists. This is for an unreleased feature so + it may not be returned yet. + :ivar sharing.SharedFileMetadata.link_metadata: The metadata of the link + associated for the file. This is for an unreleased feature so it may not + be returned yet. + :ivar sharing.SharedFileMetadata.name: The name of this file. + :ivar sharing.SharedFileMetadata.owner_display_names: The display names of + the users that own the file. If the file is part of a team folder, the + display names of the team admins are also included. Absent if the owner + display names cannot be fetched. + :ivar sharing.SharedFileMetadata.owner_team: The team that owns the file. + This field is not present if the file is not owned by a team. + :ivar sharing.SharedFileMetadata.parent_shared_folder_id: The ID of the + parent shared folder. This field is present only if the file is + contained within a shared folder. + :ivar sharing.SharedFileMetadata.path_display: The cased path to be used for + display purposes only. In rare instances the casing will not correctly + match the user's filesystem, but this behavior will match the path + provided in the Core API v1. Absent for unmounted files. + :ivar sharing.SharedFileMetadata.path_lower: The lower-case full path of + this file. Absent for unmounted files. + :ivar sharing.SharedFileMetadata.permissions: The sharing permissions that + requesting user has on this file. This corresponds to the entries given + in ``GetFileMetadataBatchArg.actions`` or + ``GetFileMetadataArg.actions``. + :ivar sharing.SharedFileMetadata.policy: Policies governing this shared + file. + :ivar sharing.SharedFileMetadata.preview_url: URL for displaying a web + preview of the shared file. + :ivar sharing.SharedFileMetadata.time_invited: Timestamp indicating when the + current user was invited to this shared file. If the user was not + invited to the shared file, the timestamp will indicate when the user + was invited to the parent shared folder. This value may be absent. """ __slots__ = [ @@ -12774,7 +12937,7 @@ def access_type(self): """ The current user's access level for this shared file. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_type_present: return self._access_type_value @@ -12825,7 +12988,7 @@ def expected_link_metadata(self): first shared. Absent if the link already exists. This is for an unreleased feature so it may not be returned yet. - :rtype: ExpectedSharedContentLinkMetadata + :rtype: sharing.ExpectedSharedContentLinkMetadata """ if self._expected_link_metadata_present: return self._expected_link_metadata_value @@ -12852,7 +13015,7 @@ def link_metadata(self): The metadata of the link associated for the file. This is for an unreleased feature so it may not be returned yet. - :rtype: SharedContentLinkMetadata + :rtype: sharing.SharedContentLinkMetadata """ if self._link_metadata_present: return self._link_metadata_value @@ -13040,7 +13203,7 @@ def permissions(self): corresponds to the entries given in ``GetFileMetadataBatchArg.actions`` or ``GetFileMetadataArg.actions``. - :rtype: list of [FilePermission] + :rtype: list of [sharing.FilePermission] """ if self._permissions_present: return self._permissions_value @@ -13066,7 +13229,7 @@ def policy(self): """ Policies governing this shared file. - :rtype: FolderPolicy + :rtype: sharing.FolderPolicy """ if self._policy_present: return self._policy_value @@ -13167,11 +13330,13 @@ class SharedFolderAccessError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_id: This shared folder ID is invalid. - :ivar not_a_member: The user is not a member of the shared folder thus - cannot access it. - :ivar email_unverified: Never set. - :ivar unmounted: The shared folder is unmounted. + :ivar sharing.SharedFolderAccessError.invalid_id: This shared folder ID is + invalid. + :ivar sharing.SharedFolderAccessError.not_a_member: The user is not a member + of the shared folder thus cannot access it. + :ivar sharing.SharedFolderAccessError.email_unverified: Never set. + :ivar sharing.SharedFolderAccessError.unmounted: The shared folder is + unmounted. """ _catch_all = 'other' @@ -13240,11 +13405,13 @@ class SharedFolderMemberError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_dropbox_id: The target dropbox_id is invalid. - :ivar not_a_member: The target dropbox_id is not a member of the shared - folder. - :ivar MemberAccessLevelResult no_explicit_access: The target member only has - inherited access to the shared folder. + :ivar sharing.SharedFolderMemberError.invalid_dropbox_id: The target + dropbox_id is invalid. + :ivar sharing.SharedFolderMemberError.not_a_member: The target dropbox_id is + not a member of the shared folder. + :ivar MemberAccessLevelResult + sharing.SharedFolderMemberError.no_explicit_access: The target member + only has inherited access to the shared folder. """ _catch_all = 'other' @@ -13261,8 +13428,8 @@ def no_explicit_access(cls, val): Create an instance of this class set to the ``no_explicit_access`` tag with value ``val``. - :param MemberAccessLevelResult val: - :rtype: SharedFolderMemberError + :param sharing.MemberAccessLevelResult val: + :rtype: sharing.SharedFolderMemberError """ return cls('no_explicit_access', val) @@ -13304,7 +13471,7 @@ def get_no_explicit_access(self): Only call this if :meth:`is_no_explicit_access` is true. - :rtype: MemberAccessLevelResult + :rtype: sharing.MemberAccessLevelResult """ if not self.is_no_explicit_access(): raise AttributeError("tag 'no_explicit_access' not set") @@ -13322,11 +13489,15 @@ class SharedFolderMembers(bb.Struct): """ Shared folder user and group membership. - :ivar users: The list of user members of the shared folder. - :ivar groups: The list of group members of the shared folder. - :ivar invitees: The list of invitees to the shared folder. - :ivar cursor: Present if there are additional shared folder members that - have not been returned yet. Pass the cursor into + :ivar sharing.SharedFolderMembers.users: The list of user members of the + shared folder. + :ivar sharing.SharedFolderMembers.groups: The list of group members of the + shared folder. + :ivar sharing.SharedFolderMembers.invitees: The list of invitees to the + shared folder. + :ivar sharing.SharedFolderMembers.cursor: Present if there are additional + shared folder members that have not been returned yet. Pass the cursor + into :meth:`dropbox.dropbox.Dropbox.sharing_list_folder_members_continue` to list additional members. """ @@ -13371,7 +13542,7 @@ def users(self): """ The list of user members of the shared folder. - :rtype: list of [UserMembershipInfo] + :rtype: list of [sharing.UserMembershipInfo] """ if self._users_present: return self._users_value @@ -13394,7 +13565,7 @@ def groups(self): """ The list of group members of the shared folder. - :rtype: list of [GroupMembershipInfo] + :rtype: list of [sharing.GroupMembershipInfo] """ if self._groups_present: return self._groups_value @@ -13417,7 +13588,7 @@ def invitees(self): """ The list of invitees to the shared folder. - :rtype: list of [InviteeMembershipInfo] + :rtype: list of [sharing.InviteeMembershipInfo] """ if self._invitees_present: return self._invitees_value @@ -13481,21 +13652,23 @@ class SharedFolderMetadataBase(bb.Struct): """ Properties of the shared folder. - :ivar access_type: The current user's access level for this shared folder. - :ivar is_inside_team_folder: Whether this folder is inside of a team folder. - :ivar is_team_folder: Whether this folder is a `team folder - `_. - :ivar owner_display_names: The display names of the users that own the - folder. If the folder is part of a team folder, the display names of the - team admins are also included. Absent if the owner display names cannot - be fetched. - :ivar owner_team: The team that owns the folder. This field is not present - if the folder is not owned by a team. - :ivar parent_shared_folder_id: The ID of the parent shared folder. This - field is present only if the folder is contained within another shared - folder. - :ivar path_lower: The lower-cased full path of this shared folder. Absent - for unmounted folders. + :ivar sharing.SharedFolderMetadataBase.access_type: The current user's + access level for this shared folder. + :ivar sharing.SharedFolderMetadataBase.is_inside_team_folder: Whether this + folder is inside of a team folder. + :ivar sharing.SharedFolderMetadataBase.is_team_folder: Whether this folder + is a `team folder `_. + :ivar sharing.SharedFolderMetadataBase.owner_display_names: The display + names of the users that own the folder. If the folder is part of a team + folder, the display names of the team admins are also included. Absent + if the owner display names cannot be fetched. + :ivar sharing.SharedFolderMetadataBase.owner_team: The team that owns the + folder. This field is not present if the folder is not owned by a team. + :ivar sharing.SharedFolderMetadataBase.parent_shared_folder_id: The ID of + the parent shared folder. This field is present only if the folder is + contained within another shared folder. + :ivar sharing.SharedFolderMetadataBase.path_lower: The lower-cased full path + of this shared folder. Absent for unmounted folders. """ __slots__ = [ @@ -13559,7 +13732,7 @@ def access_type(self): """ The current user's access level for this shared folder. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_type_present: return self._access_type_value @@ -13753,20 +13926,23 @@ class SharedFolderMetadata(SharedFolderMetadataBase): """ The metadata which includes basic information about the shared folder. - :ivar link_metadata: The metadata of the shared content link to this shared - folder. Absent if there is no link on the folder. This is for an - unreleased feature so it may not be returned yet. - :ivar name: The name of the this shared folder. - :ivar permissions: Actions the current user may perform on the folder and - its contents. The set of permissions corresponds to the FolderActions in - the request. - :ivar policy: Policies governing this shared folder. - :ivar preview_url: URL for displaying a web preview of the shared folder. - :ivar shared_folder_id: The ID of the shared folder. - :ivar time_invited: Timestamp indicating when the current user was invited - to this shared folder. - :ivar access_inheritance: Whether the folder inherits its members from its - parent. + :ivar sharing.SharedFolderMetadata.link_metadata: The metadata of the shared + content link to this shared folder. Absent if there is no link on the + folder. This is for an unreleased feature so it may not be returned yet. + :ivar sharing.SharedFolderMetadata.name: The name of the this shared folder. + :ivar sharing.SharedFolderMetadata.permissions: Actions the current user may + perform on the folder and its contents. The set of permissions + corresponds to the FolderActions in the request. + :ivar sharing.SharedFolderMetadata.policy: Policies governing this shared + folder. + :ivar sharing.SharedFolderMetadata.preview_url: URL for displaying a web + preview of the shared folder. + :ivar sharing.SharedFolderMetadata.shared_folder_id: The ID of the shared + folder. + :ivar sharing.SharedFolderMetadata.time_invited: Timestamp indicating when + the current user was invited to this shared folder. + :ivar sharing.SharedFolderMetadata.access_inheritance: Whether the folder + inherits its members from its parent. """ __slots__ = [ @@ -13853,7 +14029,7 @@ def link_metadata(self): there is no link on the folder. This is for an unreleased feature so it may not be returned yet. - :rtype: SharedContentLinkMetadata + :rtype: sharing.SharedContentLinkMetadata """ if self._link_metadata_present: return self._link_metadata_value @@ -13903,7 +14079,7 @@ def permissions(self): Actions the current user may perform on the folder and its contents. The set of permissions corresponds to the FolderActions in the request. - :rtype: list of [FolderPermission] + :rtype: list of [sharing.FolderPermission] """ if self._permissions_present: return self._permissions_value @@ -13929,7 +14105,7 @@ def policy(self): """ Policies governing this shared folder. - :rtype: FolderPolicy + :rtype: sharing.FolderPolicy """ if self._policy_present: return self._policy_value @@ -14022,7 +14198,7 @@ def access_inheritance(self): """ Whether the folder inherits its members from its parent. - :rtype: AccessInheritance + :rtype: sharing.AccessInheritance """ if self._access_inheritance_present: return self._access_inheritance_value @@ -14070,11 +14246,16 @@ class SharedLinkAccessFailureReason(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar login_required: User is not logged in. - :ivar email_verify_required: User's email is not verified. - :ivar password_required: The link is password protected. - :ivar team_only: Access is allowed for team members only. - :ivar owner_only: Access is allowed for the shared link's owner only. + :ivar sharing.SharedLinkAccessFailureReason.login_required: User is not + logged in. + :ivar sharing.SharedLinkAccessFailureReason.email_verify_required: User's + email is not verified. + :ivar sharing.SharedLinkAccessFailureReason.password_required: The link is + password protected. + :ivar sharing.SharedLinkAccessFailureReason.team_only: Access is allowed for + team members only. + :ivar sharing.SharedLinkAccessFailureReason.owner_only: Access is allowed + for the shared link's owner only. """ _catch_all = 'other' @@ -14155,9 +14336,11 @@ class SharedLinkPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar anyone: Links can be shared with anyone. - :ivar team: Links can be shared with anyone on the same team as the owner. - :ivar members: Links can only be shared among members of the shared folder. + :ivar sharing.SharedLinkPolicy.anyone: Links can be shared with anyone. + :ivar sharing.SharedLinkPolicy.team: Links can be shared with anyone on the + same team as the owner. + :ivar sharing.SharedLinkPolicy.members: Links can only be shared among + members of the shared folder. """ _catch_all = 'other' @@ -14212,12 +14395,13 @@ def __repr__(self): class SharedLinkSettings(bb.Struct): """ - :ivar requested_visibility: The requested access for this shared link. - :ivar link_password: If ``requested_visibility`` is - ``RequestedVisibility.password`` this is needed to specify the password - to access the link. - :ivar expires: Expiration time of the shared link. By default the link won't - expire. + :ivar sharing.SharedLinkSettings.requested_visibility: The requested access + for this shared link. + :ivar sharing.SharedLinkSettings.link_password: If ``requested_visibility`` + is ``RequestedVisibility.password`` this is needed to specify the + password to access the link. + :ivar sharing.SharedLinkSettings.expires: Expiration time of the shared + link. By default the link won't expire. """ __slots__ = [ @@ -14253,7 +14437,7 @@ def requested_visibility(self): """ The requested access for this shared link. - :rtype: RequestedVisibility + :rtype: sharing.RequestedVisibility """ if self._requested_visibility_present: return self._requested_visibility_value @@ -14345,14 +14529,16 @@ class SharedLinkSettingsError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_settings: The given settings are invalid (for example, all - attributes of the :class:`SharedLinkSettings` are empty, the requested - visibility is ``RequestedVisibility.password`` but the + :ivar sharing.SharedLinkSettingsError.invalid_settings: The given settings + are invalid (for example, all attributes of the + :class:`SharedLinkSettings` are empty, the requested visibility is + ``RequestedVisibility.password`` but the ``SharedLinkSettings.link_password`` is missing, ``SharedLinkSettings.expires`` is set to the past, etc.). - :ivar not_authorized: User is not allowed to modify the settings of this - link. Note that basic users can only set ``RequestedVisibility.public`` - as the ``SharedLinkSettings.requested_visibility`` and cannot set + :ivar sharing.SharedLinkSettingsError.not_authorized: User is not allowed to + modify the settings of this link. Note that basic users can only set + ``RequestedVisibility.public`` as the + ``SharedLinkSettings.requested_visibility`` and cannot set ``SharedLinkSettings.expires``. """ @@ -14394,15 +14580,16 @@ class SharingFileAccessError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar no_permission: Current user does not have sufficient privileges to - perform the desired action. - :ivar invalid_file: File specified was not found. - :ivar is_folder: A folder can't be shared this way. Use folder sharing or a - shared link instead. - :ivar inside_public_folder: A file inside a public folder can't be shared - this way. Use a public link instead. - :ivar inside_osx_package: A Mac OS X package can't be shared this way. Use a - shared link instead. + :ivar sharing.SharingFileAccessError.no_permission: Current user does not + have sufficient privileges to perform the desired action. + :ivar sharing.SharingFileAccessError.invalid_file: File specified was not + found. + :ivar sharing.SharingFileAccessError.is_folder: A folder can't be shared + this way. Use folder sharing or a shared link instead. + :ivar sharing.SharingFileAccessError.inside_public_folder: A file inside a + public folder can't be shared this way. Use a public link instead. + :ivar sharing.SharingFileAccessError.inside_osx_package: A Mac OS X package + can't be shared this way. Use a shared link instead. """ _catch_all = 'other' @@ -14483,8 +14670,8 @@ class SharingUserError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar email_unverified: The current user must verify the account e-mail - address before performing this action. + :ivar sharing.SharingUserError.email_unverified: The current user must + verify the account e-mail address before performing this action. """ _catch_all = 'other' @@ -14521,10 +14708,11 @@ class TeamMemberInfo(bb.Struct): """ Information about a team member. - :ivar team_info: Information about the member's team. - :ivar display_name: The display name of the user. - :ivar member_id: ID of user as a member of a team. This field will only be - present if the member is in the same team as current user. + :ivar sharing.TeamMemberInfo.team_info: Information about the member's team. + :ivar sharing.TeamMemberInfo.display_name: The display name of the user. + :ivar sharing.TeamMemberInfo.member_id: ID of user as a member of a team. + This field will only be present if the member is in the same team as + current user. """ __slots__ = [ @@ -14642,8 +14830,10 @@ def __repr__(self): class TransferFolderArg(bb.Struct): """ - :ivar shared_folder_id: The ID for the shared folder. - :ivar to_dropbox_id: A account or team member ID to transfer ownership to. + :ivar sharing.TransferFolderArg.shared_folder_id: The ID for the shared + folder. + :ivar sharing.TransferFolderArg.to_dropbox_id: A account or team member ID + to transfer ownership to. """ __slots__ = [ @@ -14730,16 +14920,18 @@ class TransferFolderError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_dropbox_id: ``TransferFolderArg.to_dropbox_id`` is invalid. - :ivar new_owner_not_a_member: The new designated owner is not currently a - member of the shared folder. - :ivar new_owner_unmounted: The new designated owner has not added the folder - to their Dropbox. - :ivar new_owner_email_unverified: The new designated owner's e-mail address - is unverified. - :ivar team_folder: This action cannot be performed on a team shared folder. - :ivar no_permission: The current user does not have permission to perform - this action. + :ivar sharing.TransferFolderError.invalid_dropbox_id: + ``TransferFolderArg.to_dropbox_id`` is invalid. + :ivar sharing.TransferFolderError.new_owner_not_a_member: The new designated + owner is not currently a member of the shared folder. + :ivar sharing.TransferFolderError.new_owner_unmounted: The new designated + owner has not added the folder to their Dropbox. + :ivar sharing.TransferFolderError.new_owner_email_unverified: The new + designated owner's e-mail address is unverified. + :ivar sharing.TransferFolderError.team_folder: This action cannot be + performed on a team shared folder. + :ivar sharing.TransferFolderError.no_permission: The current user does not + have permission to perform this action. """ _catch_all = 'other' @@ -14764,8 +14956,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: TransferFolderError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.TransferFolderError """ return cls('access_error', val) @@ -14837,7 +15029,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -14853,7 +15045,8 @@ def __repr__(self): class UnmountFolderArg(bb.Struct): """ - :ivar shared_folder_id: The ID for the shared folder. + :ivar sharing.UnmountFolderArg.shared_folder_id: The ID for the shared + folder. """ __slots__ = [ @@ -14909,11 +15102,12 @@ class UnmountFolderError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar no_permission: The current user does not have permission to perform - this action. - :ivar not_unmountable: The shared folder can't be unmounted. One example - where this can occur is when the shared folder's parent folder is also a - shared folder that resides in the current user's Dropbox. + :ivar sharing.UnmountFolderError.no_permission: The current user does not + have permission to perform this action. + :ivar sharing.UnmountFolderError.not_unmountable: The shared folder can't be + unmounted. One example where this can occur is when the shared folder's + parent folder is also a shared folder that resides in the current user's + Dropbox. """ _catch_all = 'other' @@ -14930,8 +15124,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: UnmountFolderError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.UnmountFolderError """ return cls('access_error', val) @@ -14971,7 +15165,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -14989,7 +15183,7 @@ class UnshareFileArg(bb.Struct): """ Arguments for :meth:`dropbox.dropbox.Dropbox.sharing_unshare_file`. - :ivar file: The file to unshare. + :ivar sharing.UnshareFileArg.file: The file to unshare. """ __slots__ = [ @@ -15058,8 +15252,8 @@ def user_error(cls, val): Create an instance of this class set to the ``user_error`` tag with value ``val``. - :param SharingUserError val: - :rtype: UnshareFileError + :param sharing.SharingUserError val: + :rtype: sharing.UnshareFileError """ return cls('user_error', val) @@ -15069,8 +15263,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharingFileAccessError val: - :rtype: UnshareFileError + :param sharing.SharingFileAccessError val: + :rtype: sharing.UnshareFileError """ return cls('access_error', val) @@ -15102,7 +15296,7 @@ def get_user_error(self): """ Only call this if :meth:`is_user_error` is true. - :rtype: SharingUserError + :rtype: sharing.SharingUserError """ if not self.is_user_error(): raise AttributeError("tag 'user_error' not set") @@ -15112,7 +15306,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharingFileAccessError + :rtype: sharing.SharingFileAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -15128,11 +15322,12 @@ def __repr__(self): class UnshareFolderArg(bb.Struct): """ - :ivar shared_folder_id: The ID for the shared folder. - :ivar leave_a_copy: If true, members of this shared folder will get a copy - of this folder after it's unshared. Otherwise, it will be removed from - their Dropbox. The current user, who is an owner, will always retain - their copy. + :ivar sharing.UnshareFolderArg.shared_folder_id: The ID for the shared + folder. + :ivar sharing.UnshareFolderArg.leave_a_copy: If true, members of this shared + folder will get a copy of this folder after it's unshared. Otherwise, it + will be removed from their Dropbox. The current user, who is an owner, + will always retain their copy. """ __slots__ = [ @@ -15221,10 +15416,12 @@ class UnshareFolderError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar team_folder: This action cannot be performed on a team shared folder. - :ivar no_permission: The current user does not have permission to perform - this action. - :ivar too_many_files: This shared folder has too many files to be unshared. + :ivar sharing.UnshareFolderError.team_folder: This action cannot be + performed on a team shared folder. + :ivar sharing.UnshareFolderError.no_permission: The current user does not + have permission to perform this action. + :ivar sharing.UnshareFolderError.too_many_files: This shared folder has too + many files to be unshared. """ _catch_all = 'other' @@ -15243,8 +15440,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: UnshareFolderError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.UnshareFolderError """ return cls('access_error', val) @@ -15292,7 +15489,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -15338,11 +15535,13 @@ def __repr__(self): class UpdateFolderMemberArg(bb.Struct): """ - :ivar shared_folder_id: The ID for the shared folder. - :ivar member: The member of the shared folder to update. Only the - ``MemberSelector.dropbox_id`` may be set at this time. - :ivar access_level: The new access level for ``member``. - ``AccessLevel.owner`` is disallowed. + :ivar sharing.UpdateFolderMemberArg.shared_folder_id: The ID for the shared + folder. + :ivar sharing.UpdateFolderMemberArg.member: The member of the shared folder + to update. Only the ``MemberSelector.dropbox_id`` may be set at this + time. + :ivar sharing.UpdateFolderMemberArg.access_level: The new access level for + ``member``. ``AccessLevel.owner`` is disallowed. """ __slots__ = [ @@ -15402,7 +15601,7 @@ def member(self): The member of the shared folder to update. Only the ``MemberSelector.dropbox_id`` may be set at this time. - :rtype: MemberSelector + :rtype: sharing.MemberSelector """ if self._member_present: return self._member_value @@ -15426,7 +15625,7 @@ def access_level(self): The new access level for ``member``. ``AccessLevel.owner`` is disallowed. - :rtype: AccessLevel + :rtype: sharing.AccessLevel """ if self._access_level_present: return self._access_level_value @@ -15462,15 +15661,16 @@ class UpdateFolderMemberError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar AddFolderMemberError no_explicit_access: If updating the access type - required the member to be added to the shared folder and there was an - error when adding the member. - :ivar insufficient_plan: The current user's account doesn't support this - action. An example of this is when downgrading a member from editor to - viewer. This action can only be performed by users that have upgraded to - a Pro or Business plan. - :ivar no_permission: The current user does not have permission to perform - this action. + :ivar AddFolderMemberError + sharing.UpdateFolderMemberError.no_explicit_access: If updating the + access type required the member to be added to the shared folder and + there was an error when adding the member. + :ivar sharing.UpdateFolderMemberError.insufficient_plan: The current user's + account doesn't support this action. An example of this is when + downgrading a member from editor to viewer. This action can only be + performed by users that have upgraded to a Pro or Business plan. + :ivar sharing.UpdateFolderMemberError.no_permission: The current user does + not have permission to perform this action. """ _catch_all = 'other' @@ -15487,8 +15687,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: UpdateFolderMemberError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.UpdateFolderMemberError """ return cls('access_error', val) @@ -15498,8 +15698,8 @@ def member_error(cls, val): Create an instance of this class set to the ``member_error`` tag with value ``val``. - :param SharedFolderMemberError val: - :rtype: UpdateFolderMemberError + :param sharing.SharedFolderMemberError val: + :rtype: sharing.UpdateFolderMemberError """ return cls('member_error', val) @@ -15509,8 +15709,8 @@ def no_explicit_access(cls, val): Create an instance of this class set to the ``no_explicit_access`` tag with value ``val``. - :param AddFolderMemberError val: - :rtype: UpdateFolderMemberError + :param sharing.AddFolderMemberError val: + :rtype: sharing.UpdateFolderMemberError """ return cls('no_explicit_access', val) @@ -15566,7 +15766,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -15576,7 +15776,7 @@ def get_member_error(self): """ Only call this if :meth:`is_member_error` is true. - :rtype: SharedFolderMemberError + :rtype: sharing.SharedFolderMemberError """ if not self.is_member_error(): raise AttributeError("tag 'member_error' not set") @@ -15589,7 +15789,7 @@ def get_no_explicit_access(self): Only call this if :meth:`is_no_explicit_access` is true. - :rtype: AddFolderMemberError + :rtype: sharing.AddFolderMemberError """ if not self.is_no_explicit_access(): raise AttributeError("tag 'no_explicit_access' not set") @@ -15607,21 +15807,24 @@ class UpdateFolderPolicyArg(bb.Struct): """ If any of the policies are unset, then they retain their current setting. - :ivar shared_folder_id: The ID for the shared folder. - :ivar member_policy: Who can be a member of this shared folder. Only - applicable if the current user is on a team. - :ivar acl_update_policy: Who can add and remove members of this shared + :ivar sharing.UpdateFolderPolicyArg.shared_folder_id: The ID for the shared folder. - :ivar viewer_info_policy: Who can enable/disable viewer info for this shared - folder. - :ivar shared_link_policy: The policy to apply to shared links created for - content inside this shared folder. The current user must be on a team to - set this policy to ``SharedLinkPolicy.members``. - :ivar link_settings: Settings on the link for this folder. - :ivar actions: A list of `FolderAction`s corresponding to - `FolderPermission`s that should appear in the response's - ``SharedFolderMetadata.permissions`` field describing the actions the - authenticated user can perform on the folder. + :ivar sharing.UpdateFolderPolicyArg.member_policy: Who can be a member of + this shared folder. Only applicable if the current user is on a team. + :ivar sharing.UpdateFolderPolicyArg.acl_update_policy: Who can add and + remove members of this shared folder. + :ivar sharing.UpdateFolderPolicyArg.viewer_info_policy: Who can + enable/disable viewer info for this shared folder. + :ivar sharing.UpdateFolderPolicyArg.shared_link_policy: The policy to apply + to shared links created for content inside this shared folder. The + current user must be on a team to set this policy to + ``SharedLinkPolicy.members``. + :ivar sharing.UpdateFolderPolicyArg.link_settings: Settings on the link for + this folder. + :ivar sharing.UpdateFolderPolicyArg.actions: A list of `FolderAction`s + corresponding to `FolderPermission`s that should appear in the + response's ``SharedFolderMetadata.permissions`` field describing the + actions the authenticated user can perform on the folder. """ __slots__ = [ @@ -15709,7 +15912,7 @@ def member_policy(self): Who can be a member of this shared folder. Only applicable if the current user is on a team. - :rtype: MemberPolicy + :rtype: sharing.MemberPolicy """ if self._member_policy_present: return self._member_policy_value @@ -15735,7 +15938,7 @@ def acl_update_policy(self): """ Who can add and remove members of this shared folder. - :rtype: AclUpdatePolicy + :rtype: sharing.AclUpdatePolicy """ if self._acl_update_policy_present: return self._acl_update_policy_value @@ -15761,7 +15964,7 @@ def viewer_info_policy(self): """ Who can enable/disable viewer info for this shared folder. - :rtype: ViewerInfoPolicy + :rtype: sharing.ViewerInfoPolicy """ if self._viewer_info_policy_present: return self._viewer_info_policy_value @@ -15789,7 +15992,7 @@ def shared_link_policy(self): shared folder. The current user must be on a team to set this policy to ``SharedLinkPolicy.members``. - :rtype: SharedLinkPolicy + :rtype: sharing.SharedLinkPolicy """ if self._shared_link_policy_present: return self._shared_link_policy_value @@ -15815,7 +16018,7 @@ def link_settings(self): """ Settings on the link for this folder. - :rtype: LinkSettings + :rtype: sharing.LinkSettings """ if self._link_settings_present: return self._link_settings_value @@ -15844,7 +16047,7 @@ def actions(self): field describing the actions the authenticated user can perform on the folder. - :rtype: list of [FolderAction] + :rtype: list of [sharing.FolderAction] """ if self._actions_present: return self._actions_value @@ -15887,15 +16090,18 @@ class UpdateFolderPolicyError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar not_on_team: ``UpdateFolderPolicyArg.member_policy`` was set even - though user is not on a team. - :ivar team_policy_disallows_member_policy: Team policy is more restrictive - than ``ShareFolderArg.member_policy``. - :ivar disallowed_shared_link_policy: The current account is not allowed to - select the specified ``ShareFolderArg.shared_link_policy``. - :ivar no_permission: The current user does not have permission to perform - this action. - :ivar team_folder: This action cannot be performed on a team shared folder. + :ivar sharing.UpdateFolderPolicyError.not_on_team: + ``UpdateFolderPolicyArg.member_policy`` was set even though user is not + on a team. + :ivar sharing.UpdateFolderPolicyError.team_policy_disallows_member_policy: + Team policy is more restrictive than ``ShareFolderArg.member_policy``. + :ivar sharing.UpdateFolderPolicyError.disallowed_shared_link_policy: The + current account is not allowed to select the specified + ``ShareFolderArg.shared_link_policy``. + :ivar sharing.UpdateFolderPolicyError.no_permission: The current user does + not have permission to perform this action. + :ivar sharing.UpdateFolderPolicyError.team_folder: This action cannot be + performed on a team shared folder. """ _catch_all = 'other' @@ -15918,8 +16124,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param SharedFolderAccessError val: - :rtype: UpdateFolderPolicyError + :param sharing.SharedFolderAccessError val: + :rtype: sharing.UpdateFolderPolicyError """ return cls('access_error', val) @@ -15983,7 +16189,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: SharedFolderAccessError + :rtype: sharing.SharedFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -16001,7 +16207,8 @@ class UserMembershipInfo(MembershipInfo): """ The information about a user member of the shared content. - :ivar user: The account information for the membership user. + :ivar sharing.UserMembershipInfo.user: The account information for the + membership user. """ __slots__ = [ @@ -16031,7 +16238,7 @@ def user(self): """ The account information for the membership user. - :rtype: UserInfo + :rtype: sharing.UserInfo """ if self._user_present: return self._user_value @@ -16068,10 +16275,10 @@ class UserFileMembershipInfo(UserMembershipInfo): The information about a user member of the shared content with an appended last seen timestamp. - :ivar time_last_seen: The UTC timestamp of when the user has last seen the - content, if they have. - :ivar platform_type: The platform on which the user has last seen the - content, or unknown. + :ivar sharing.UserFileMembershipInfo.time_last_seen: The UTC timestamp of + when the user has last seen the content, if they have. + :ivar sharing.UserFileMembershipInfo.platform_type: The platform on which + the user has last seen the content, or unknown. """ __slots__ = [ @@ -16181,12 +16388,13 @@ class UserInfo(bb.Struct): :meth:`dropbox.dropbox.Dropbox.sharing_users_account_batch` to obtain more detailed information. - :ivar account_id: The account ID of the user. - :ivar email: Email address of user. - :ivar display_name: The display name of the user. - :ivar same_team: If the user is in the same team as current user. - :ivar team_member_id: The team member ID of the shared folder member. Only - present if ``same_team`` is true. + :ivar sharing.UserInfo.account_id: The account ID of the user. + :ivar sharing.UserInfo.email: Email address of user. + :ivar sharing.UserInfo.display_name: The display name of the user. + :ivar sharing.UserInfo.same_team: If the user is in the same team as current + user. + :ivar sharing.UserInfo.team_member_id: The team member ID of the shared + folder member. Only present if ``same_team`` is true. """ __slots__ = [ @@ -16370,8 +16578,10 @@ class ViewerInfoPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar enabled: Viewer information is available on this file. - :ivar disabled: Viewer information is disabled on this file. + :ivar sharing.ViewerInfoPolicy.enabled: Viewer information is available on + this file. + :ivar sharing.ViewerInfoPolicy.disabled: Viewer information is disabled on + this file. """ _catch_all = 'other' @@ -16424,16 +16634,17 @@ class Visibility(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar public: Anyone who has received the link can access it. No login - required. - :ivar team_only: Only members of the same team can access the link. Login is + :ivar sharing.Visibility.public: Anyone who has received the link can access + it. No login required. + :ivar sharing.Visibility.team_only: Only members of the same team can access + the link. Login is required. + :ivar sharing.Visibility.password: A link-specific password is required to + access the link. Login is not required. + :ivar sharing.Visibility.team_and_password: Only members of the same team + who have the link-specific password can access the link. + :ivar sharing.Visibility.shared_folder_only: Only members of the shared + folder containing the linked file can access the link. Login is required. - :ivar password: A link-specific password is required to access the link. - Login is not required. - :ivar team_and_password: Only members of the same team who have the - link-specific password can access the link. - :ivar shared_folder_only: Only members of the shared folder containing the - linked file can access the link. Login is required. """ _catch_all = 'other' diff --git a/dropbox/team.py b/dropbox/team.py index 8f744a1a..34f41a8c 100644 --- a/dropbox/team.py +++ b/dropbox/team.py @@ -35,12 +35,14 @@ class DeviceSession(bb.Struct): """ - :ivar session_id: The session id. - :ivar ip_address: The IP address of the last activity from this session. - :ivar country: The country from which the last activity from this session - was made. - :ivar created: The time this session was created. - :ivar updated: The time of the last activity from this session. + :ivar team.DeviceSession.session_id: The session id. + :ivar team.DeviceSession.ip_address: The IP address of the last activity + from this session. + :ivar team.DeviceSession.country: The country from which the last activity + from this session was made. + :ivar team.DeviceSession.created: The time this session was created. + :ivar team.DeviceSession.updated: The time of the last activity from this + session. """ __slots__ = [ @@ -230,10 +232,11 @@ class ActiveWebSession(DeviceSession): """ Information on active web sessions. - :ivar user_agent: Information on the hosting device. - :ivar os: Information on the hosting operating system. - :ivar browser: Information on the browser used for this web session. - :ivar expires: The time this session expires. + :ivar team.ActiveWebSession.user_agent: Information on the hosting device. + :ivar team.ActiveWebSession.os: Information on the hosting operating system. + :ivar team.ActiveWebSession.browser: Information on the browser used for + this web session. + :ivar team.ActiveWebSession.expires: The time this session expires. """ __slots__ = [ @@ -402,13 +405,13 @@ class AdminTier(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar team_admin: User is an administrator of the team - has all - permissions. - :ivar user_management_admin: User can do most user provisioning, - de-provisioning and management. - :ivar support_admin: User can do a limited set of common support tasks for - existing users. - :ivar member_only: User is not an admin of the team. + :ivar team.AdminTier.team_admin: User is an administrator of the team - has + all permissions. + :ivar team.AdminTier.user_management_admin: User can do most user + provisioning, de-provisioning and management. + :ivar team.AdminTier.support_admin: User can do a limited set of common + support tasks for existing users. + :ivar team.AdminTier.member_only: User is not an admin of the team. """ _catch_all = None @@ -465,12 +468,13 @@ class ApiApp(bb.Struct): """ Information on linked third party applications. - :ivar app_id: The application unique id. - :ivar app_name: The application name. - :ivar publisher: The application publisher name. - :ivar publisher_url: The publisher's URL. - :ivar linked: The time this application was linked. - :ivar is_app_folder: Whether the linked application uses a dedicated folder. + :ivar team.ApiApp.app_id: The application unique id. + :ivar team.ApiApp.app_name: The application name. + :ivar team.ApiApp.publisher: The application publisher name. + :ivar team.ApiApp.publisher_url: The publisher's URL. + :ivar team.ApiApp.linked: The time this application was linked. + :ivar team.ApiApp.is_app_folder: Whether the linked application uses a + dedicated folder. """ __slots__ = [ @@ -688,7 +692,8 @@ class BaseDfbReport(bb.Struct): """ Base report structure. - :ivar start_date: First date present in the results as 'YYYY-MM-DD' or None. + :ivar team.BaseDfbReport.start_date: First date present in the results as + 'YYYY-MM-DD' or None. """ __slots__ = [ @@ -757,8 +762,8 @@ def access_error(cls, val): Create an instance of this class set to the ``access_error`` tag with value ``val``. - :param TeamFolderAccessError val: - :rtype: BaseTeamFolderError + :param team.TeamFolderAccessError val: + :rtype: team.BaseTeamFolderError """ return cls('access_error', val) @@ -768,8 +773,8 @@ def status_error(cls, val): Create an instance of this class set to the ``status_error`` tag with value ``val``. - :param TeamFolderInvalidStatusError val: - :rtype: BaseTeamFolderError + :param team.TeamFolderInvalidStatusError val: + :rtype: team.BaseTeamFolderError """ return cls('status_error', val) @@ -779,8 +784,8 @@ def team_shared_dropbox_error(cls, val): Create an instance of this class set to the ``team_shared_dropbox_error`` tag with value ``val``. - :param TeamFolderTeamSharedDropboxError val: - :rtype: BaseTeamFolderError + :param team.TeamFolderTeamSharedDropboxError val: + :rtype: team.BaseTeamFolderError """ return cls('team_shared_dropbox_error', val) @@ -820,7 +825,7 @@ def get_access_error(self): """ Only call this if :meth:`is_access_error` is true. - :rtype: TeamFolderAccessError + :rtype: team.TeamFolderAccessError """ if not self.is_access_error(): raise AttributeError("tag 'access_error' not set") @@ -830,7 +835,7 @@ def get_status_error(self): """ Only call this if :meth:`is_status_error` is true. - :rtype: TeamFolderInvalidStatusError + :rtype: team.TeamFolderInvalidStatusError """ if not self.is_status_error(): raise AttributeError("tag 'status_error' not set") @@ -840,7 +845,7 @@ def get_team_shared_dropbox_error(self): """ Only call this if :meth:`is_team_shared_dropbox_error` is true. - :rtype: TeamFolderTeamSharedDropboxError + :rtype: team.TeamFolderTeamSharedDropboxError """ if not self.is_team_shared_dropbox_error(): raise AttributeError("tag 'team_shared_dropbox_error' not set") @@ -862,7 +867,8 @@ class CustomQuotaError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar too_many_users: A maximum of 1000 users can be set for a single call. + :ivar team.CustomQuotaError.too_many_users: A maximum of 1000 users can be + set for a single call. """ _catch_all = 'other' @@ -903,8 +909,10 @@ class CustomQuotaResult(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar UserCustomQuotaResult success: User's custom quota. - :ivar UserSelectorArg invalid_user: Invalid user (not in team). + :ivar UserCustomQuotaResult team.CustomQuotaResult.success: User's custom + quota. + :ivar UserSelectorArg team.CustomQuotaResult.invalid_user: Invalid user (not + in team). """ _catch_all = 'other' @@ -917,8 +925,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param UserCustomQuotaResult val: - :rtype: CustomQuotaResult + :param team.UserCustomQuotaResult val: + :rtype: team.CustomQuotaResult """ return cls('success', val) @@ -928,8 +936,8 @@ def invalid_user(cls, val): Create an instance of this class set to the ``invalid_user`` tag with value ``val``. - :param UserSelectorArg val: - :rtype: CustomQuotaResult + :param team.UserSelectorArg val: + :rtype: team.CustomQuotaResult """ return cls('invalid_user', val) @@ -963,7 +971,7 @@ def get_success(self): Only call this if :meth:`is_success` is true. - :rtype: UserCustomQuotaResult + :rtype: team.UserCustomQuotaResult """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -975,7 +983,7 @@ def get_invalid_user(self): Only call this if :meth:`is_invalid_user` is true. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if not self.is_invalid_user(): raise AttributeError("tag 'invalid_user' not set") @@ -991,7 +999,7 @@ def __repr__(self): class CustomQuotaUsersArg(bb.Struct): """ - :ivar users: List of users. + :ivar team.CustomQuotaUsersArg.users: List of users. """ __slots__ = [ @@ -1013,7 +1021,7 @@ def users(self): """ List of users. - :rtype: list of [UserSelectorArg] + :rtype: list of [team.UserSelectorArg] """ if self._users_present: return self._users_value @@ -1045,8 +1053,8 @@ class DateRange(bb.Struct): """ Input arguments that can be provided for most reports. - :ivar start_date: Optional starting date (inclusive). - :ivar end_date: Optional ending date (exclusive). + :ivar team.DateRange.start_date: Optional starting date (inclusive). + :ivar team.DateRange.end_date: Optional ending date (exclusive). """ __slots__ = [ @@ -1166,12 +1174,14 @@ class DesktopClientSession(DeviceSession): """ Information about linked Dropbox desktop client sessions. - :ivar host_name: Name of the hosting desktop. - :ivar client_type: The Dropbox desktop client type. - :ivar client_version: The Dropbox client version. - :ivar platform: Information on the hosting platform. - :ivar is_delete_on_unlink_supported: Whether it's possible to delete all of - the account files upon unlinking. + :ivar team.DesktopClientSession.host_name: Name of the hosting desktop. + :ivar team.DesktopClientSession.client_type: The Dropbox desktop client + type. + :ivar team.DesktopClientSession.client_version: The Dropbox client version. + :ivar team.DesktopClientSession.platform: Information on the hosting + platform. + :ivar team.DesktopClientSession.is_delete_on_unlink_supported: Whether it's + possible to delete all of the account files upon unlinking. """ __slots__ = [ @@ -1254,7 +1264,7 @@ def client_type(self): """ The Dropbox desktop client type. - :rtype: DesktopPlatform + :rtype: team.DesktopPlatform """ if self._client_type_present: return self._client_type_value @@ -1366,9 +1376,9 @@ class DesktopPlatform(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar windows: Official Windows Dropbox desktop client. - :ivar mac: Official Mac Dropbox desktop client. - :ivar linux: Official Linux Dropbox desktop client. + :ivar team.DesktopPlatform.windows: Official Windows Dropbox desktop client. + :ivar team.DesktopPlatform.mac: Official Mac Dropbox desktop client. + :ivar team.DesktopPlatform.linux: Official Linux Dropbox desktop client. """ _catch_all = 'other' @@ -1423,8 +1433,9 @@ def __repr__(self): class DeviceSessionArg(bb.Struct): """ - :ivar session_id: The session id. - :ivar team_member_id: The unique id of the member owning the device. + :ivar team.DeviceSessionArg.session_id: The session id. + :ivar team.DeviceSessionArg.team_member_id: The unique id of the member + owning the device. """ __slots__ = [ @@ -1511,16 +1522,20 @@ class DevicesActive(bb.Struct): number of devices active within a time window, ending with that day. If there is no data for a day, then the value will be None. - :ivar windows: Array of number of linked windows (desktop) clients with + :ivar team.DevicesActive.windows: Array of number of linked windows + (desktop) clients with activity. + :ivar team.DevicesActive.macos: Array of number of linked mac (desktop) + clients with activity. + :ivar team.DevicesActive.linux: Array of number of linked linus (desktop) + clients with activity. + :ivar team.DevicesActive.ios: Array of number of linked ios devices with activity. - :ivar macos: Array of number of linked mac (desktop) clients with activity. - :ivar linux: Array of number of linked linus (desktop) clients with + :ivar team.DevicesActive.android: Array of number of linked android devices + with activity. + :ivar team.DevicesActive.other: Array of number of other linked devices + (blackberry, windows phone, etc) with activity. + :ivar team.DevicesActive.total: Array of total number of linked clients with activity. - :ivar ios: Array of number of linked ios devices with activity. - :ivar android: Array of number of linked android devices with activity. - :ivar other: Array of number of other linked devices (blackberry, windows - phone, etc) with activity. - :ivar total: Array of total number of linked clients with activity. """ __slots__ = [ @@ -1761,7 +1776,7 @@ class ExcludedUsersListArg(bb.Struct): """ Excluded users list argument. - :ivar limit: Number of results to return per call. + :ivar team.ExcludedUsersListArg.limit: Number of results to return per call. """ __slots__ = [ @@ -1815,7 +1830,8 @@ class ExcludedUsersListContinueArg(bb.Struct): """ Excluded users list continue argument. - :ivar cursor: Indicates from what point to get the next set of users. + :ivar team.ExcludedUsersListContinueArg.cursor: Indicates from what point to + get the next set of users. """ __slots__ = [ @@ -1873,7 +1889,8 @@ class ExcludedUsersListContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_cursor: The cursor is invalid. + :ivar team.ExcludedUsersListContinueError.invalid_cursor: The cursor is + invalid. """ _catch_all = 'other' @@ -1914,7 +1931,7 @@ class ExcludedUsersListError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar list_error: An error occurred. + :ivar team.ExcludedUsersListError.list_error: An error occurred. """ _catch_all = 'other' @@ -1951,11 +1968,11 @@ class ExcludedUsersListResult(bb.Struct): """ Excluded users list result. - :ivar cursor: Pass the cursor into + :ivar team.ExcludedUsersListResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_member_space_limits_excluded_users_list_continue` to obtain additional excluded users. - :ivar has_more: Is true if there are additional excluded users that have not - been returned yet. An additional call to + :ivar team.ExcludedUsersListResult.has_more: Is true if there are additional + excluded users that have not been returned yet. An additional call to :meth:`dropbox.dropbox.Dropbox.team_member_space_limits_excluded_users_list_continue` can retrieve them. """ @@ -1991,7 +2008,7 @@ def __init__(self, @property def users(self): """ - :rtype: list of [MemberProfile] + :rtype: list of [team.MemberProfile] """ if self._users_present: return self._users_value @@ -2081,7 +2098,7 @@ class ExcludedUsersUpdateArg(bb.Struct): to add/remove (according to endpoint), Maximum size of the list is 1000 users. - :ivar users: List of users to be added/removed. + :ivar team.ExcludedUsersUpdateArg.users: List of users to be added/removed. """ __slots__ = [ @@ -2103,7 +2120,7 @@ def users(self): """ List of users to be added/removed. - :rtype: list of [UserSelectorArg] + :rtype: list of [team.UserSelectorArg] """ if self._users_present: return self._users_value @@ -2142,9 +2159,10 @@ class ExcludedUsersUpdateError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar users_not_in_team: At least one of the users is not part of your team. - :ivar too_many_users: A maximum of 1000 users for each of addition/removal - can be supplied. + :ivar team.ExcludedUsersUpdateError.users_not_in_team: At least one of the + users is not part of your team. + :ivar team.ExcludedUsersUpdateError.too_many_users: A maximum of 1000 users + for each of addition/removal can be supplied. """ _catch_all = 'other' @@ -2191,7 +2209,7 @@ class ExcludedUsersUpdateResult(bb.Struct): """ Excluded users update result. - :ivar status: Update status. + :ivar team.ExcludedUsersUpdateResult.status: Update status. """ __slots__ = [ @@ -2213,7 +2231,7 @@ def status(self): """ Update status. - :rtype: ExcludedUsersUpdateStatus + :rtype: team.ExcludedUsersUpdateStatus """ if self._status_present: return self._status_value @@ -2249,7 +2267,7 @@ class ExcludedUsersUpdateStatus(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar success: Update successful. + :ivar team.ExcludedUsersUpdateStatus.success: Update successful. """ _catch_all = 'other' @@ -2290,12 +2308,13 @@ class Feature(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar upload_api_rate_limit: The number of upload API calls allowed per - month. - :ivar has_team_shared_dropbox: Does this team have a shared team root. - :ivar has_team_file_events: Does this team have file events. - :ivar has_team_selective_sync: Does this team have team selective sync - enabled. + :ivar team.Feature.upload_api_rate_limit: The number of upload API calls + allowed per month. + :ivar team.Feature.has_team_shared_dropbox: Does this team have a shared + team root. + :ivar team.Feature.has_team_file_events: Does this team have file events. + :ivar team.Feature.has_team_selective_sync: Does this team have team + selective sync enabled. """ _catch_all = 'other' @@ -2378,8 +2397,8 @@ def upload_api_rate_limit(cls, val): Create an instance of this class set to the ``upload_api_rate_limit`` tag with value ``val``. - :param UploadApiRateLimitValue val: - :rtype: FeatureValue + :param team.UploadApiRateLimitValue val: + :rtype: team.FeatureValue """ return cls('upload_api_rate_limit', val) @@ -2389,8 +2408,8 @@ def has_team_shared_dropbox(cls, val): Create an instance of this class set to the ``has_team_shared_dropbox`` tag with value ``val``. - :param HasTeamSharedDropboxValue val: - :rtype: FeatureValue + :param team.HasTeamSharedDropboxValue val: + :rtype: team.FeatureValue """ return cls('has_team_shared_dropbox', val) @@ -2400,8 +2419,8 @@ def has_team_file_events(cls, val): Create an instance of this class set to the ``has_team_file_events`` tag with value ``val``. - :param HasTeamFileEventsValue val: - :rtype: FeatureValue + :param team.HasTeamFileEventsValue val: + :rtype: team.FeatureValue """ return cls('has_team_file_events', val) @@ -2411,8 +2430,8 @@ def has_team_selective_sync(cls, val): Create an instance of this class set to the ``has_team_selective_sync`` tag with value ``val``. - :param HasTeamSelectiveSyncValue val: - :rtype: FeatureValue + :param team.HasTeamSelectiveSyncValue val: + :rtype: team.FeatureValue """ return cls('has_team_selective_sync', val) @@ -2460,7 +2479,7 @@ def get_upload_api_rate_limit(self): """ Only call this if :meth:`is_upload_api_rate_limit` is true. - :rtype: UploadApiRateLimitValue + :rtype: team.UploadApiRateLimitValue """ if not self.is_upload_api_rate_limit(): raise AttributeError("tag 'upload_api_rate_limit' not set") @@ -2470,7 +2489,7 @@ def get_has_team_shared_dropbox(self): """ Only call this if :meth:`is_has_team_shared_dropbox` is true. - :rtype: HasTeamSharedDropboxValue + :rtype: team.HasTeamSharedDropboxValue """ if not self.is_has_team_shared_dropbox(): raise AttributeError("tag 'has_team_shared_dropbox' not set") @@ -2480,7 +2499,7 @@ def get_has_team_file_events(self): """ Only call this if :meth:`is_has_team_file_events` is true. - :rtype: HasTeamFileEventsValue + :rtype: team.HasTeamFileEventsValue """ if not self.is_has_team_file_events(): raise AttributeError("tag 'has_team_file_events' not set") @@ -2490,7 +2509,7 @@ def get_has_team_selective_sync(self): """ Only call this if :meth:`is_has_team_selective_sync` is true. - :rtype: HasTeamSelectiveSyncValue + :rtype: team.HasTeamSelectiveSyncValue """ if not self.is_has_team_selective_sync(): raise AttributeError("tag 'has_team_selective_sync' not set") @@ -2506,8 +2525,9 @@ def __repr__(self): class FeaturesGetValuesBatchArg(bb.Struct): """ - :ivar features: A list of features in :class:`Feature`. If the list is - empty, this route will return :class:`FeaturesGetValuesBatchError`. + :ivar team.FeaturesGetValuesBatchArg.features: A list of features in + :class:`Feature`. If the list is empty, this route will return + :class:`FeaturesGetValuesBatchError`. """ __slots__ = [ @@ -2530,7 +2550,7 @@ def features(self): A list of features in :class:`Feature`. If the list is empty, this route will return :class:`FeaturesGetValuesBatchError`. - :rtype: list of [Feature] + :rtype: list of [team.Feature] """ if self._features_present: return self._features_value @@ -2564,8 +2584,9 @@ class FeaturesGetValuesBatchError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar empty_features_list: At least one :class:`Feature` must be included in - the :class:`FeaturesGetValuesBatchArg`.features list. + :ivar team.FeaturesGetValuesBatchError.empty_features_list: At least one + :class:`Feature` must be included in the + :class:`FeaturesGetValuesBatchArg`.features list. """ _catch_all = 'other' @@ -2617,7 +2638,7 @@ def __init__(self, @property def values(self): """ - :rtype: list of [FeatureValue] + :rtype: list of [team.FeatureValue] """ if self._values_present: return self._values_value @@ -2651,31 +2672,37 @@ class GetActivityReport(BaseDfbReport): of values, one value per day. If there is no data for a day, then the value will be None. - :ivar adds: Array of total number of adds by team members. - :ivar edits: Array of number of edits by team members. If the same user - edits the same file multiple times this is counted as a single edit. - :ivar deletes: Array of total number of deletes by team members. - :ivar active_users_28_day: Array of the number of users who have been active - in the last 28 days. - :ivar active_users_7_day: Array of the number of users who have been active - in the last week. - :ivar active_users_1_day: Array of the number of users who have been active - in the last day. - :ivar active_shared_folders_28_day: Array of the number of shared folders - with some activity in the last 28 days. - :ivar active_shared_folders_7_day: Array of the number of shared folders - with some activity in the last week. - :ivar active_shared_folders_1_day: Array of the number of shared folders - with some activity in the last day. - :ivar shared_links_created: Array of the number of shared links created. - :ivar shared_links_viewed_by_team: Array of the number of views by team - users to shared links created by the team. - :ivar shared_links_viewed_by_outside_user: Array of the number of views by - users outside of the team to shared links created by the team. - :ivar shared_links_viewed_by_not_logged_in: Array of the number of views by - non-logged-in users to shared links created by the team. - :ivar shared_links_viewed_total: Array of the total number of views to - shared links created by the team. + :ivar team.GetActivityReport.adds: Array of total number of adds by team + members. + :ivar team.GetActivityReport.edits: Array of number of edits by team + members. If the same user edits the same file multiple times this is + counted as a single edit. + :ivar team.GetActivityReport.deletes: Array of total number of deletes by + team members. + :ivar team.GetActivityReport.active_users_28_day: Array of the number of + users who have been active in the last 28 days. + :ivar team.GetActivityReport.active_users_7_day: Array of the number of + users who have been active in the last week. + :ivar team.GetActivityReport.active_users_1_day: Array of the number of + users who have been active in the last day. + :ivar team.GetActivityReport.active_shared_folders_28_day: Array of the + number of shared folders with some activity in the last 28 days. + :ivar team.GetActivityReport.active_shared_folders_7_day: Array of the + number of shared folders with some activity in the last week. + :ivar team.GetActivityReport.active_shared_folders_1_day: Array of the + number of shared folders with some activity in the last day. + :ivar team.GetActivityReport.shared_links_created: Array of the number of + shared links created. + :ivar team.GetActivityReport.shared_links_viewed_by_team: Array of the + number of views by team users to shared links created by the team. + :ivar team.GetActivityReport.shared_links_viewed_by_outside_user: Array of + the number of views by users outside of the team to shared links created + by the team. + :ivar team.GetActivityReport.shared_links_viewed_by_not_logged_in: Array of + the number of views by non-logged-in users to shared links created by + the team. + :ivar team.GetActivityReport.shared_links_viewed_total: Array of the total + number of views to shared links created by the team. """ __slots__ = [ @@ -3145,11 +3172,12 @@ class GetDevicesReport(BaseDfbReport): array of values, one value per day. If there is no data for a day, then the value will be None. - :ivar active_1_day: Report of the number of devices active in the last day. - :ivar active_7_day: Report of the number of devices active in the last 7 - days. - :ivar active_28_day: Report of the number of devices active in the last 28 - days. + :ivar team.GetDevicesReport.active_1_day: Report of the number of devices + active in the last day. + :ivar team.GetDevicesReport.active_7_day: Report of the number of devices + active in the last 7 days. + :ivar team.GetDevicesReport.active_28_day: Report of the number of devices + active in the last 28 days. """ __slots__ = [ @@ -3187,7 +3215,7 @@ def active_1_day(self): """ Report of the number of devices active in the last day. - :rtype: DevicesActive + :rtype: team.DevicesActive """ if self._active_1_day_present: return self._active_1_day_value @@ -3210,7 +3238,7 @@ def active_7_day(self): """ Report of the number of devices active in the last 7 days. - :rtype: DevicesActive + :rtype: team.DevicesActive """ if self._active_7_day_present: return self._active_7_day_value @@ -3233,7 +3261,7 @@ def active_28_day(self): """ Report of the number of devices active in the last 28 days. - :rtype: DevicesActive + :rtype: team.DevicesActive """ if self._active_28_day_present: return self._active_28_day_value @@ -3270,13 +3298,15 @@ class GetMembershipReport(BaseDfbReport): array of values, one value per day. If there is no data for a day, then the value will be None. - :ivar team_size: Team size, for each day. - :ivar pending_invites: The number of pending invites to the team, for each - day. - :ivar members_joined: The number of members that joined the team, for each - day. - :ivar suspended_members: The number of suspended team members, for each day. - :ivar licenses: The total number of licenses the team has, for each day. + :ivar team.GetMembershipReport.team_size: Team size, for each day. + :ivar team.GetMembershipReport.pending_invites: The number of pending + invites to the team, for each day. + :ivar team.GetMembershipReport.members_joined: The number of members that + joined the team, for each day. + :ivar team.GetMembershipReport.suspended_members: The number of suspended + team members, for each day. + :ivar team.GetMembershipReport.licenses: The total number of licenses the + team has, for each day. """ __slots__ = [ @@ -3459,20 +3489,20 @@ class GetStorageReport(BaseDfbReport): of values, one value per day. If there is no data for a day, then the value will be None. - :ivar total_usage: Sum of the shared, unshared, and datastore usages, for - each day. - :ivar shared_usage: Array of the combined size (bytes) of team members' - shared folders, for each day. - :ivar unshared_usage: Array of the combined size (bytes) of team members' - root namespaces, for each day. - :ivar shared_folders: Array of the number of shared folders owned by team - members, for each day. - :ivar member_storage_map: Array of storage summaries of team members' - account sizes. Each storage summary is an array of key, value pairs, - where each pair describes a storage bucket. The key indicates the upper - bound of the bucket and the value is the number of users in that bucket. - There is one such summary per day. If there is no data for a day, the - storage summary will be empty. + :ivar team.GetStorageReport.total_usage: Sum of the shared, unshared, and + datastore usages, for each day. + :ivar team.GetStorageReport.shared_usage: Array of the combined size (bytes) + of team members' shared folders, for each day. + :ivar team.GetStorageReport.unshared_usage: Array of the combined size + (bytes) of team members' root namespaces, for each day. + :ivar team.GetStorageReport.shared_folders: Array of the number of shared + folders owned by team members, for each day. + :ivar team.GetStorageReport.member_storage_map: Array of storage summaries + of team members' account sizes. Each storage summary is an array of key, + value pairs, where each pair describes a storage bucket. The key + indicates the upper bound of the bucket and the value is the number of + users in that bucket. There is one such summary per day. If there is no + data for a day, the storage summary will be empty. """ __slots__ = [ @@ -3624,7 +3654,7 @@ def member_storage_map(self): per day. If there is no data for a day, the storage summary will be empty. - :rtype: list of [list of [StorageBucket]] + :rtype: list of [list of [team.StorageBucket]] """ if self._member_storage_map_present: return self._member_storage_map_value @@ -3665,8 +3695,10 @@ class GroupAccessType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar member: User is a member of the group, but has no special permissions. - :ivar owner: User can rename the group, and add/remove members. + :ivar team.GroupAccessType.member: User is a member of the group, but has no + special permissions. + :ivar team.GroupAccessType.owner: User can rename the group, and add/remove + members. """ _catch_all = None @@ -3701,11 +3733,11 @@ def __repr__(self): class GroupCreateArg(bb.Struct): """ - :ivar group_name: Group name. - :ivar group_external_id: The creator of a team can associate an arbitrary - external ID to the group. - :ivar group_management_type: Whether the team can be managed by selected - users, or only by team admins. + :ivar team.GroupCreateArg.group_name: Group name. + :ivar team.GroupCreateArg.group_external_id: The creator of a team can + associate an arbitrary external ID to the group. + :ivar team.GroupCreateArg.group_management_type: Whether the team can be + managed by selected users, or only by team admins. """ __slots__ = [ @@ -3831,13 +3863,14 @@ class GroupCreateError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar group_name_already_used: The requested group name is already being - used by another group. - :ivar group_name_invalid: Group name is empty or has invalid characters. - :ivar external_id_already_in_use: The requested external ID is already being - used by another group. - :ivar system_managed_group_disallowed: System-managed group cannot be - manually created. + :ivar team.GroupCreateError.group_name_already_used: The requested group + name is already being used by another group. + :ivar team.GroupCreateError.group_name_invalid: Group name is empty or has + invalid characters. + :ivar team.GroupCreateError.external_id_already_in_use: The requested + external ID is already being used by another group. + :ivar team.GroupCreateError.system_managed_group_disallowed: System-managed + group cannot be manually created. """ _catch_all = 'other' @@ -3908,8 +3941,8 @@ class GroupSelectorError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar group_not_found: No matching group found. No groups match the - specified group ID. + :ivar team.GroupSelectorError.group_not_found: No matching group found. No + groups match the specified group ID. """ _catch_all = 'other' @@ -3951,8 +3984,8 @@ class GroupSelectorWithTeamGroupError(GroupSelectorError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar system_managed_group_disallowed: This operation is not supported on - system-managed groups. + :ivar team.GroupSelectorWithTeamGroupError.system_managed_group_disallowed: + This operation is not supported on system-managed groups. """ # Attribute is overwritten below the class definition @@ -3980,7 +4013,8 @@ class GroupDeleteError(GroupSelectorWithTeamGroupError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar group_already_deleted: This group has already been deleted. + :ivar team.GroupDeleteError.group_already_deleted: This group has already + been deleted. """ # Attribute is overwritten below the class definition @@ -4006,9 +4040,9 @@ class GroupFullInfo(team_common.GroupSummary): """ Full description of a group. - :ivar members: List of group members. - :ivar created: The group creation time as a UTC timestamp in milliseconds - since the Unix epoch. + :ivar team.GroupFullInfo.members: List of group members. + :ivar team.GroupFullInfo.created: The group creation time as a UTC timestamp + in milliseconds since the Unix epoch. """ __slots__ = [ @@ -4047,7 +4081,7 @@ def members(self): """ List of group members. - :rtype: list of [GroupMemberInfo] + :rtype: list of [team.GroupMemberInfo] """ if self._members_present: return self._members_value @@ -4112,8 +4146,9 @@ class GroupMemberInfo(bb.Struct): """ Profile of group member, and role in group. - :ivar profile: Profile of group member. - :ivar access_type: The role that the user has in the group. + :ivar team.GroupMemberInfo.profile: Profile of group member. + :ivar team.GroupMemberInfo.access_type: The role that the user has in the + group. """ __slots__ = [ @@ -4142,7 +4177,7 @@ def profile(self): """ Profile of group member. - :rtype: MemberProfile + :rtype: team.MemberProfile """ if self._profile_present: return self._profile_value @@ -4165,7 +4200,7 @@ def access_type(self): """ The role that the user has in the group. - :rtype: GroupAccessType + :rtype: team.GroupAccessType """ if self._access_type_present: return self._access_type_value @@ -4198,8 +4233,9 @@ class GroupMemberSelector(bb.Struct): """ Argument for selecting a group and a single user. - :ivar group: Specify a group. - :ivar user: Identity of a user that is a member of ``group``. + :ivar team.GroupMemberSelector.group: Specify a group. + :ivar team.GroupMemberSelector.user: Identity of a user that is a member of + ``group``. """ __slots__ = [ @@ -4228,7 +4264,7 @@ def group(self): """ Specify a group. - :rtype: GroupSelector + :rtype: team.GroupSelector """ if self._group_present: return self._group_value @@ -4251,7 +4287,7 @@ def user(self): """ Identity of a user that is a member of ``group``. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._user_present: return self._user_value @@ -4289,7 +4325,8 @@ class GroupMemberSelectorError(GroupSelectorWithTeamGroupError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar member_not_in_group: The specified user is not a member of this group. + :ivar team.GroupMemberSelectorError.member_not_in_group: The specified user + is not a member of this group. """ # Attribute is overwritten below the class definition @@ -4317,8 +4354,9 @@ class GroupMemberSetAccessTypeError(GroupMemberSelectorError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar user_cannot_be_manager_of_company_managed_group: A company managed - group cannot be managed by a user. + :ivar + team.GroupMemberSetAccessTypeError.user_cannot_be_manager_of_company_managed_group: + A company managed group cannot be managed by a user. """ # Attribute is overwritten below the class definition @@ -4342,9 +4380,10 @@ def __repr__(self): class IncludeMembersArg(bb.Struct): """ - :ivar return_members: Whether to return the list of members in the group. - Note that the default value will cause all the group members to be - returned in the response. This may take a long time for large groups. + :ivar team.IncludeMembersArg.return_members: Whether to return the list of + members in the group. Note that the default value will cause all the + group members to be returned in the response. This may take a long time + for large groups. """ __slots__ = [ @@ -4398,8 +4437,9 @@ def __repr__(self): class GroupMembersAddArg(IncludeMembersArg): """ - :ivar group: Group to which users will be added. - :ivar members: List of users to be added to the group. + :ivar team.GroupMembersAddArg.group: Group to which users will be added. + :ivar team.GroupMembersAddArg.members: List of users to be added to the + group. """ __slots__ = [ @@ -4430,7 +4470,7 @@ def group(self): """ Group to which users will be added. - :rtype: GroupSelector + :rtype: team.GroupSelector """ if self._group_present: return self._group_value @@ -4453,7 +4493,7 @@ def members(self): """ List of users to be added to the group. - :rtype: list of [MemberAccess] + :rtype: list of [team.MemberAccess] """ if self._members_present: return self._members_value @@ -4489,20 +4529,23 @@ class GroupMembersAddError(GroupSelectorWithTeamGroupError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar duplicate_user: You cannot add duplicate users. One or more of the - members you are trying to add is already a member of the group. - :ivar group_not_in_team: Group is not in this team. You cannot add members - to a group that is outside of your team. - :ivar list of [str] members_not_in_team: These members are not part of your - team. Currently, you cannot add members to a group if they are not part - of your team, though this may change in a subsequent version. To add new - members to your Dropbox Business team, use the :route:`members/add` - endpoint. - :ivar list of [str] users_not_found: These users were not found in Dropbox. - :ivar user_must_be_active_to_be_owner: A suspended user cannot be added to a - group as ``GroupAccessType.owner``. - :ivar list of [str] user_cannot_be_manager_of_company_managed_group: A - company-managed group cannot be managed by a user. + :ivar team.GroupMembersAddError.duplicate_user: You cannot add duplicate + users. One or more of the members you are trying to add is already a + member of the group. + :ivar team.GroupMembersAddError.group_not_in_team: Group is not in this + team. You cannot add members to a group that is outside of your team. + :ivar list of [str] team.GroupMembersAddError.members_not_in_team: These + members are not part of your team. Currently, you cannot add members to + a group if they are not part of your team, though this may change in a + subsequent version. To add new members to your Dropbox Business team, + use the :route:`members/add` endpoint. + :ivar list of [str] team.GroupMembersAddError.users_not_found: These users + were not found in Dropbox. + :ivar team.GroupMembersAddError.user_must_be_active_to_be_owner: A suspended + user cannot be added to a group as ``GroupAccessType.owner``. + :ivar list of [str] + team.GroupMembersAddError.user_cannot_be_manager_of_company_managed_group: + A company-managed group cannot be managed by a user. """ # Attribute is overwritten below the class definition @@ -4519,7 +4562,7 @@ def members_not_in_team(cls, val): with value ``val``. :param list of [str] val: - :rtype: GroupMembersAddError + :rtype: team.GroupMembersAddError """ return cls('members_not_in_team', val) @@ -4530,7 +4573,7 @@ def users_not_found(cls, val): value ``val``. :param list of [str] val: - :rtype: GroupMembersAddError + :rtype: team.GroupMembersAddError """ return cls('users_not_found', val) @@ -4542,7 +4585,7 @@ def user_cannot_be_manager_of_company_managed_group(cls, val): ``val``. :param list of [str] val: - :rtype: GroupMembersAddError + :rtype: team.GroupMembersAddError """ return cls('user_cannot_be_manager_of_company_managed_group', val) @@ -4647,10 +4690,10 @@ class GroupMembersChangeResult(bb.Struct): Result returned by :meth:`dropbox.dropbox.Dropbox.team_groups_members_add` and :meth:`dropbox.dropbox.Dropbox.team_groups_members_remove`. - :ivar group_info: The group info after member change operation has been - performed. - :ivar async_job_id: An ID that can be used to obtain the status of - granting/revoking group-owned resources. + :ivar team.GroupMembersChangeResult.group_info: The group info after member + change operation has been performed. + :ivar team.GroupMembersChangeResult.async_job_id: An ID that can be used to + obtain the status of granting/revoking group-owned resources. """ __slots__ = [ @@ -4679,7 +4722,7 @@ def group_info(self): """ The group info after member change operation has been performed. - :rtype: GroupFullInfo + :rtype: team.GroupFullInfo """ if self._group_info_present: return self._group_info_value @@ -4734,8 +4777,10 @@ def __repr__(self): class GroupMembersRemoveArg(IncludeMembersArg): """ - :ivar group: Group from which users will be removed. - :ivar users: List of users to be removed from the group. + :ivar team.GroupMembersRemoveArg.group: Group from which users will be + removed. + :ivar team.GroupMembersRemoveArg.users: List of users to be removed from the + group. """ __slots__ = [ @@ -4766,7 +4811,7 @@ def group(self): """ Group from which users will be removed. - :rtype: GroupSelector + :rtype: team.GroupSelector """ if self._group_present: return self._group_value @@ -4789,7 +4834,7 @@ def users(self): """ List of users to be removed from the group. - :rtype: list of [UserSelectorArg] + :rtype: list of [team.UserSelectorArg] """ if self._users_present: return self._users_value @@ -4828,8 +4873,8 @@ class GroupMembersSelectorError(GroupSelectorWithTeamGroupError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar member_not_in_group: At least one of the specified users is not a - member of the group. + :ivar team.GroupMembersSelectorError.member_not_in_group: At least one of + the specified users is not a member of the group. """ # Attribute is overwritten below the class definition @@ -4857,11 +4902,13 @@ class GroupMembersRemoveError(GroupMembersSelectorError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar group_not_in_team: Group is not in this team. You cannot remove - members from a group that is outside of your team. - :ivar list of [str] members_not_in_team: These members are not part of your + :ivar team.GroupMembersRemoveError.group_not_in_team: Group is not in this + team. You cannot remove members from a group that is outside of your team. - :ivar list of [str] users_not_found: These users were not found in Dropbox. + :ivar list of [str] team.GroupMembersRemoveError.members_not_in_team: These + members are not part of your team. + :ivar list of [str] team.GroupMembersRemoveError.users_not_found: These + users were not found in Dropbox. """ # Attribute is overwritten below the class definition @@ -4874,7 +4921,7 @@ def members_not_in_team(cls, val): with value ``val``. :param list of [str] val: - :rtype: GroupMembersRemoveError + :rtype: team.GroupMembersRemoveError """ return cls('members_not_in_team', val) @@ -4885,7 +4932,7 @@ def users_not_found(cls, val): value ``val``. :param list of [str] val: - :rtype: GroupMembersRemoveError + :rtype: team.GroupMembersRemoveError """ return cls('users_not_found', val) @@ -4949,8 +4996,9 @@ class GroupMembersSelector(bb.Struct): """ Argument for selecting a group and a list of users. - :ivar group: Specify a group. - :ivar users: A list of users that are members of ``group``. + :ivar team.GroupMembersSelector.group: Specify a group. + :ivar team.GroupMembersSelector.users: A list of users that are members of + ``group``. """ __slots__ = [ @@ -4979,7 +5027,7 @@ def group(self): """ Specify a group. - :rtype: GroupSelector + :rtype: team.GroupSelector """ if self._group_present: return self._group_value @@ -5002,7 +5050,7 @@ def users(self): """ A list of users that are members of ``group``. - :rtype: UsersSelectorArg + :rtype: team.UsersSelectorArg """ if self._users_present: return self._users_value @@ -5033,10 +5081,12 @@ def __repr__(self): class GroupMembersSetAccessTypeArg(GroupMemberSelector): """ - :ivar access_type: New group access type the user will have. - :ivar return_members: Whether to return the list of members in the group. - Note that the default value will cause all the group members to be - returned in the response. This may take a long time for large groups. + :ivar team.GroupMembersSetAccessTypeArg.access_type: New group access type + the user will have. + :ivar team.GroupMembersSetAccessTypeArg.return_members: Whether to return + the list of members in the group. Note that the default value will + cause all the group members to be returned in the response. This may + take a long time for large groups. """ __slots__ = [ @@ -5069,7 +5119,7 @@ def access_type(self): """ New group access type the user will have. - :rtype: GroupAccessType + :rtype: team.GroupAccessType """ if self._access_type_present: return self._access_type_value @@ -5134,8 +5184,8 @@ class GroupSelector(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str group_id: Group ID. - :ivar str group_external_id: External ID of the group. + :ivar str team.GroupSelector.group_id: Group ID. + :ivar str team.GroupSelector.group_external_id: External ID of the group. """ _catch_all = None @@ -5147,7 +5197,7 @@ def group_id(cls, val): ``val``. :param str val: - :rtype: GroupSelector + :rtype: team.GroupSelector """ return cls('group_id', val) @@ -5158,7 +5208,7 @@ def group_external_id(cls, val): with value ``val``. :param str val: - :rtype: GroupSelector + :rtype: team.GroupSelector """ return cls('group_external_id', val) @@ -5212,12 +5262,15 @@ def __repr__(self): class GroupUpdateArgs(IncludeMembersArg): """ - :ivar group: Specify a group. - :ivar new_group_name: Optional argument. Set group name to this if provided. - :ivar new_group_external_id: Optional argument. New group external ID. If - the argument is None, the group's external_id won't be updated. If the - argument is empty string, the group's external id will be cleared. - :ivar new_group_management_type: Set new group management type, if provided. + :ivar team.GroupUpdateArgs.group: Specify a group. + :ivar team.GroupUpdateArgs.new_group_name: Optional argument. Set group name + to this if provided. + :ivar team.GroupUpdateArgs.new_group_external_id: Optional argument. New + group external ID. If the argument is None, the group's external_id + won't be updated. If the argument is empty string, the group's external + id will be cleared. + :ivar team.GroupUpdateArgs.new_group_management_type: Set new group + management type, if provided. """ __slots__ = [ @@ -5262,7 +5315,7 @@ def group(self): """ Specify a group. - :rtype: GroupSelector + :rtype: team.GroupSelector """ if self._group_present: return self._group_value @@ -5380,11 +5433,12 @@ class GroupUpdateError(GroupSelectorWithTeamGroupError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar group_name_already_used: The requested group name is already being - used by another group. - :ivar group_name_invalid: Group name is empty or has invalid characters. - :ivar external_id_already_in_use: The requested external ID is already being - used by another group. + :ivar team.GroupUpdateError.group_name_already_used: The requested group + name is already being used by another group. + :ivar team.GroupUpdateError.group_name_invalid: Group name is empty or has + invalid characters. + :ivar team.GroupUpdateError.external_id_already_in_use: The requested + external ID is already being used by another group. """ # Attribute is overwritten below the class definition @@ -5432,7 +5486,8 @@ class GroupsGetInfoError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar group_not_on_team: The group is not on your team. + :ivar team.GroupsGetInfoError.group_not_on_team: The group is not on your + team. """ _catch_all = 'other' @@ -5471,11 +5526,11 @@ class GroupsGetInfoItem(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str id_not_found: An ID that was provided as a parameter to - :route:`groups/get_info`, and did not match a corresponding group. The - ID can be a group ID, or an external ID, depending on how the method was - called. - :ivar GroupFullInfo group_info: Info about a group. + :ivar str team.GroupsGetInfoItem.id_not_found: An ID that was provided as a + parameter to :route:`groups/get_info`, and did not match a corresponding + group. The ID can be a group ID, or an external ID, depending on how the + method was called. + :ivar GroupFullInfo team.GroupsGetInfoItem.group_info: Info about a group. """ _catch_all = None @@ -5487,7 +5542,7 @@ def id_not_found(cls, val): value ``val``. :param str val: - :rtype: GroupsGetInfoItem + :rtype: team.GroupsGetInfoItem """ return cls('id_not_found', val) @@ -5497,8 +5552,8 @@ def group_info(cls, val): Create an instance of this class set to the ``group_info`` tag with value ``val``. - :param GroupFullInfo val: - :rtype: GroupsGetInfoItem + :param team.GroupFullInfo val: + :rtype: team.GroupsGetInfoItem """ return cls('group_info', val) @@ -5539,7 +5594,7 @@ def get_group_info(self): Only call this if :meth:`is_group_info` is true. - :rtype: GroupFullInfo + :rtype: team.GroupFullInfo """ if not self.is_group_info(): raise AttributeError("tag 'group_info' not set") @@ -5555,7 +5610,7 @@ def __repr__(self): class GroupsListArg(bb.Struct): """ - :ivar limit: Number of results to return per call. + :ivar team.GroupsListArg.limit: Number of results to return per call. """ __slots__ = [ @@ -5607,7 +5662,8 @@ def __repr__(self): class GroupsListContinueArg(bb.Struct): """ - :ivar cursor: Indicates from what point to get the next set of groups. + :ivar team.GroupsListContinueArg.cursor: Indicates from what point to get + the next set of groups. """ __slots__ = [ @@ -5663,7 +5719,7 @@ class GroupsListContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_cursor: The cursor is invalid. + :ivar team.GroupsListContinueError.invalid_cursor: The cursor is invalid. """ _catch_all = 'other' @@ -5698,11 +5754,11 @@ def __repr__(self): class GroupsListResult(bb.Struct): """ - :ivar cursor: Pass the cursor into + :ivar team.GroupsListResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_groups_list_continue` to obtain the additional groups. - :ivar has_more: Is true if there are additional groups that have not been - returned yet. An additional call to + :ivar team.GroupsListResult.has_more: Is true if there are additional groups + that have not been returned yet. An additional call to :meth:`dropbox.dropbox.Dropbox.team_groups_list_continue` can retrieve them. """ @@ -5821,8 +5877,9 @@ def __repr__(self): class GroupsMembersListArg(bb.Struct): """ - :ivar group: The group whose members are to be listed. - :ivar limit: Number of results to return per call. + :ivar team.GroupsMembersListArg.group: The group whose members are to be + listed. + :ivar team.GroupsMembersListArg.limit: Number of results to return per call. """ __slots__ = [ @@ -5851,7 +5908,7 @@ def group(self): """ The group whose members are to be listed. - :rtype: GroupSelector + :rtype: team.GroupSelector """ if self._group_present: return self._group_value @@ -5905,7 +5962,8 @@ def __repr__(self): class GroupsMembersListContinueArg(bb.Struct): """ - :ivar cursor: Indicates from what point to get the next set of groups. + :ivar team.GroupsMembersListContinueArg.cursor: Indicates from what point to + get the next set of groups. """ __slots__ = [ @@ -5961,7 +6019,8 @@ class GroupsMembersListContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_cursor: The cursor is invalid. + :ivar team.GroupsMembersListContinueError.invalid_cursor: The cursor is + invalid. """ _catch_all = 'other' @@ -5996,11 +6055,11 @@ def __repr__(self): class GroupsMembersListResult(bb.Struct): """ - :ivar cursor: Pass the cursor into + :ivar team.GroupsMembersListResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_groups_members_list_continue` to obtain additional group members. - :ivar has_more: Is true if there are additional group members that have not - been returned yet. An additional call to + :ivar team.GroupsMembersListResult.has_more: Is true if there are additional + group members that have not been returned yet. An additional call to :meth:`dropbox.dropbox.Dropbox.team_groups_members_list_continue` can retrieve them. """ @@ -6036,7 +6095,7 @@ def __init__(self, @property def members(self): """ - :rtype: list of [GroupMemberInfo] + :rtype: list of [team.GroupMemberInfo] """ if self._members_present: return self._members_value @@ -6123,7 +6182,8 @@ class GroupsPollError(async_.PollError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar access_denied: You are not allowed to poll this job. + :ivar team.GroupsPollError.access_denied: You are not allowed to poll this + job. """ # Attribute is overwritten below the class definition @@ -6154,8 +6214,9 @@ class GroupsSelector(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar list of [str] group_ids: List of group IDs. - :ivar list of [str] group_external_ids: List of external IDs of groups. + :ivar list of [str] team.GroupsSelector.group_ids: List of group IDs. + :ivar list of [str] team.GroupsSelector.group_external_ids: List of external + IDs of groups. """ _catch_all = None @@ -6167,7 +6228,7 @@ def group_ids(cls, val): ``val``. :param list of [str] val: - :rtype: GroupsSelector + :rtype: team.GroupsSelector """ return cls('group_ids', val) @@ -6178,7 +6239,7 @@ def group_external_ids(cls, val): with value ``val``. :param list of [str] val: - :rtype: GroupsSelector + :rtype: team.GroupsSelector """ return cls('group_external_ids', val) @@ -6238,7 +6299,8 @@ class HasTeamFileEventsValue(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar bool enabled: Does this team have file events. + :ivar bool team.HasTeamFileEventsValue.enabled: Does this team have file + events. """ _catch_all = 'other' @@ -6252,7 +6314,7 @@ def enabled(cls, val): ``val``. :param bool val: - :rtype: HasTeamFileEventsValue + :rtype: team.HasTeamFileEventsValue """ return cls('enabled', val) @@ -6300,8 +6362,8 @@ class HasTeamSelectiveSyncValue(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar bool has_team_selective_sync: Does this team have team selective sync - enabled. + :ivar bool team.HasTeamSelectiveSyncValue.has_team_selective_sync: Does this + team have team selective sync enabled. """ _catch_all = 'other' @@ -6315,7 +6377,7 @@ def has_team_selective_sync(cls, val): tag with value ``val``. :param bool val: - :rtype: HasTeamSelectiveSyncValue + :rtype: team.HasTeamSelectiveSyncValue """ return cls('has_team_selective_sync', val) @@ -6363,7 +6425,8 @@ class HasTeamSharedDropboxValue(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar bool has_team_shared_dropbox: Does this team have a shared team root. + :ivar bool team.HasTeamSharedDropboxValue.has_team_shared_dropbox: Does this + team have a shared team root. """ _catch_all = 'other' @@ -6377,7 +6440,7 @@ def has_team_shared_dropbox(cls, val): tag with value ``val``. :param bool val: - :rtype: HasTeamSharedDropboxValue + :rtype: team.HasTeamSharedDropboxValue """ return cls('has_team_shared_dropbox', val) @@ -6419,7 +6482,7 @@ def __repr__(self): class ListMemberAppsArg(bb.Struct): """ - :ivar team_member_id: The team member id. + :ivar team.ListMemberAppsArg.team_member_id: The team member id. """ __slots__ = [ @@ -6478,7 +6541,7 @@ class ListMemberAppsError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar member_not_found: Member not found. + :ivar team.ListMemberAppsError.member_not_found: Member not found. """ _catch_all = 'other' @@ -6513,8 +6576,8 @@ def __repr__(self): class ListMemberAppsResult(bb.Struct): """ - :ivar linked_api_apps: List of third party applications linked by this team - member. + :ivar team.ListMemberAppsResult.linked_api_apps: List of third party + applications linked by this team member. """ __slots__ = [ @@ -6536,7 +6599,7 @@ def linked_api_apps(self): """ List of third party applications linked by this team member. - :rtype: list of [ApiApp] + :rtype: list of [team.ApiApp] """ if self._linked_api_apps_present: return self._linked_api_apps_value @@ -6566,13 +6629,13 @@ def __repr__(self): class ListMemberDevicesArg(bb.Struct): """ - :ivar team_member_id: The team's member id. - :ivar include_web_sessions: Whether to list web sessions of the team's - member. - :ivar include_desktop_clients: Whether to list linked desktop devices of the - team's member. - :ivar include_mobile_clients: Whether to list linked mobile devices of the - team's member. + :ivar team.ListMemberDevicesArg.team_member_id: The team's member id. + :ivar team.ListMemberDevicesArg.include_web_sessions: Whether to list web + sessions of the team's member. + :ivar team.ListMemberDevicesArg.include_desktop_clients: Whether to list + linked desktop devices of the team's member. + :ivar team.ListMemberDevicesArg.include_mobile_clients: Whether to list + linked mobile devices of the team's member. """ __slots__ = [ @@ -6721,7 +6784,7 @@ class ListMemberDevicesError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar member_not_found: Member not found. + :ivar team.ListMemberDevicesError.member_not_found: Member not found. """ _catch_all = 'other' @@ -6756,11 +6819,12 @@ def __repr__(self): class ListMemberDevicesResult(bb.Struct): """ - :ivar active_web_sessions: List of web sessions made by this team member. - :ivar desktop_client_sessions: List of desktop clients used by this team - member. - :ivar mobile_client_sessions: List of mobile client used by this team - member. + :ivar team.ListMemberDevicesResult.active_web_sessions: List of web sessions + made by this team member. + :ivar team.ListMemberDevicesResult.desktop_client_sessions: List of desktop + clients used by this team member. + :ivar team.ListMemberDevicesResult.mobile_client_sessions: List of mobile + client used by this team member. """ __slots__ = [ @@ -6796,7 +6860,7 @@ def active_web_sessions(self): """ List of web sessions made by this team member. - :rtype: list of [ActiveWebSession] + :rtype: list of [team.ActiveWebSession] """ if self._active_web_sessions_present: return self._active_web_sessions_value @@ -6822,7 +6886,7 @@ def desktop_client_sessions(self): """ List of desktop clients used by this team member. - :rtype: list of [DesktopClientSession] + :rtype: list of [team.DesktopClientSession] """ if self._desktop_client_sessions_present: return self._desktop_client_sessions_value @@ -6848,7 +6912,7 @@ def mobile_client_sessions(self): """ List of mobile client used by this team member. - :rtype: list of [MobileClientSession] + :rtype: list of [team.MobileClientSession] """ if self._mobile_client_sessions_present: return self._mobile_client_sessions_value @@ -6886,7 +6950,7 @@ class ListMembersAppsArg(bb.Struct): Arguments for :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_members_linked_apps`. - :ivar cursor: At the first call to the + :ivar team.ListMembersAppsArg.cursor: At the first call to the :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_members_linked_apps` the cursor shouldn't be passed. Then, if the result of the call includes a cursor, the following requests should include the received cursors in @@ -6956,7 +7020,8 @@ class ListMembersAppsError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar reset: Indicates that the cursor has been invalidated. Call + :ivar team.ListMembersAppsError.reset: Indicates that the cursor has been + invalidated. Call :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_members_linked_apps` again with an empty cursor to obtain a new cursor. """ @@ -6996,12 +7061,13 @@ class ListMembersAppsResult(bb.Struct): Information returned by :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_members_linked_apps`. - :ivar apps: The linked applications of each member of the team. - :ivar has_more: If true, then there are more apps available. Pass the cursor - to + :ivar team.ListMembersAppsResult.apps: The linked applications of each + member of the team. + :ivar team.ListMembersAppsResult.has_more: If true, then there are more apps + available. Pass the cursor to :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_members_linked_apps` to retrieve the rest. - :ivar cursor: Pass the cursor into + :ivar team.ListMembersAppsResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_members_linked_apps` to receive the next sub list of team's applications. """ @@ -7039,7 +7105,7 @@ def apps(self): """ The linked applications of each member of the team. - :rtype: list of [MemberLinkedApps] + :rtype: list of [team.MemberLinkedApps] """ if self._apps_present: return self._apps_value @@ -7124,17 +7190,17 @@ def __repr__(self): class ListMembersDevicesArg(bb.Struct): """ - :ivar cursor: At the first call to the + :ivar team.ListMembersDevicesArg.cursor: At the first call to the :meth:`dropbox.dropbox.Dropbox.team_devices_list_members_devices` the cursor shouldn't be passed. Then, if the result of the call includes a cursor, the following requests should include the received cursors in order to receive the next sub list of team devices. - :ivar include_web_sessions: Whether to list web sessions of the team - members. - :ivar include_desktop_clients: Whether to list desktop clients of the team - members. - :ivar include_mobile_clients: Whether to list mobile clients of the team - members. + :ivar team.ListMembersDevicesArg.include_web_sessions: Whether to list web + sessions of the team members. + :ivar team.ListMembersDevicesArg.include_desktop_clients: Whether to list + desktop clients of the team members. + :ivar team.ListMembersDevicesArg.include_mobile_clients: Whether to list + mobile clients of the team members. """ __slots__ = [ @@ -7290,7 +7356,8 @@ class ListMembersDevicesError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar reset: Indicates that the cursor has been invalidated. Call + :ivar team.ListMembersDevicesError.reset: Indicates that the cursor has been + invalidated. Call :meth:`dropbox.dropbox.Dropbox.team_devices_list_members_devices` again with an empty cursor to obtain a new cursor. """ @@ -7327,12 +7394,13 @@ def __repr__(self): class ListMembersDevicesResult(bb.Struct): """ - :ivar devices: The devices of each member of the team. - :ivar has_more: If true, then there are more devices available. Pass the - cursor to + :ivar team.ListMembersDevicesResult.devices: The devices of each member of + the team. + :ivar team.ListMembersDevicesResult.has_more: If true, then there are more + devices available. Pass the cursor to :meth:`dropbox.dropbox.Dropbox.team_devices_list_members_devices` to retrieve the rest. - :ivar cursor: Pass the cursor into + :ivar team.ListMembersDevicesResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_devices_list_members_devices` to receive the next sub list of team's devices. """ @@ -7370,7 +7438,7 @@ def devices(self): """ The devices of each member of the team. - :rtype: list of [MemberDevices] + :rtype: list of [team.MemberDevices] """ if self._devices_present: return self._devices_value @@ -7458,7 +7526,7 @@ class ListTeamAppsArg(bb.Struct): Arguments for :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_team_linked_apps`. - :ivar cursor: At the first call to the + :ivar team.ListTeamAppsArg.cursor: At the first call to the :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_team_linked_apps` the cursor shouldn't be passed. Then, if the result of the call includes a cursor, the following requests should include the received cursors in @@ -7528,7 +7596,8 @@ class ListTeamAppsError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar reset: Indicates that the cursor has been invalidated. Call + :ivar team.ListTeamAppsError.reset: Indicates that the cursor has been + invalidated. Call :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_team_linked_apps` again with an empty cursor to obtain a new cursor. """ @@ -7568,12 +7637,13 @@ class ListTeamAppsResult(bb.Struct): Information returned by :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_team_linked_apps`. - :ivar apps: The linked applications of each member of the team. - :ivar has_more: If true, then there are more apps available. Pass the cursor - to + :ivar team.ListTeamAppsResult.apps: The linked applications of each member + of the team. + :ivar team.ListTeamAppsResult.has_more: If true, then there are more apps + available. Pass the cursor to :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_team_linked_apps` to retrieve the rest. - :ivar cursor: Pass the cursor into + :ivar team.ListTeamAppsResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_linked_apps_list_team_linked_apps` to receive the next sub list of team's applications. """ @@ -7611,7 +7681,7 @@ def apps(self): """ The linked applications of each member of the team. - :rtype: list of [MemberLinkedApps] + :rtype: list of [team.MemberLinkedApps] """ if self._apps_present: return self._apps_value @@ -7696,17 +7766,17 @@ def __repr__(self): class ListTeamDevicesArg(bb.Struct): """ - :ivar cursor: At the first call to the + :ivar team.ListTeamDevicesArg.cursor: At the first call to the :meth:`dropbox.dropbox.Dropbox.team_devices_list_team_devices` the cursor shouldn't be passed. Then, if the result of the call includes a cursor, the following requests should include the received cursors in order to receive the next sub list of team devices. - :ivar include_web_sessions: Whether to list web sessions of the team - members. - :ivar include_desktop_clients: Whether to list desktop clients of the team - members. - :ivar include_mobile_clients: Whether to list mobile clients of the team - members. + :ivar team.ListTeamDevicesArg.include_web_sessions: Whether to list web + sessions of the team members. + :ivar team.ListTeamDevicesArg.include_desktop_clients: Whether to list + desktop clients of the team members. + :ivar team.ListTeamDevicesArg.include_mobile_clients: Whether to list mobile + clients of the team members. """ __slots__ = [ @@ -7862,7 +7932,8 @@ class ListTeamDevicesError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar reset: Indicates that the cursor has been invalidated. Call + :ivar team.ListTeamDevicesError.reset: Indicates that the cursor has been + invalidated. Call :meth:`dropbox.dropbox.Dropbox.team_devices_list_team_devices` again with an empty cursor to obtain a new cursor. """ @@ -7899,11 +7970,13 @@ def __repr__(self): class ListTeamDevicesResult(bb.Struct): """ - :ivar devices: The devices of each member of the team. - :ivar has_more: If true, then there are more devices available. Pass the - cursor to :meth:`dropbox.dropbox.Dropbox.team_devices_list_team_devices` - to retrieve the rest. - :ivar cursor: Pass the cursor into + :ivar team.ListTeamDevicesResult.devices: The devices of each member of the + team. + :ivar team.ListTeamDevicesResult.has_more: If true, then there are more + devices available. Pass the cursor to + :meth:`dropbox.dropbox.Dropbox.team_devices_list_team_devices` to + retrieve the rest. + :ivar team.ListTeamDevicesResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_devices_list_team_devices` to receive the next sub list of team's devices. """ @@ -7941,7 +8014,7 @@ def devices(self): """ The devices of each member of the team. - :rtype: list of [MemberDevices] + :rtype: list of [team.MemberDevices] """ if self._devices_present: return self._devices_value @@ -8028,8 +8101,8 @@ class MemberAccess(bb.Struct): """ Specify access type a member should have when joined to a group. - :ivar user: Identity of a user. - :ivar access_type: Access type. + :ivar team.MemberAccess.user: Identity of a user. + :ivar team.MemberAccess.access_type: Access type. """ __slots__ = [ @@ -8058,7 +8131,7 @@ def user(self): """ Identity of a user. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._user_present: return self._user_value @@ -8081,7 +8154,7 @@ def access_type(self): """ Access type. - :rtype: GroupAccessType + :rtype: team.GroupAccessType """ if self._access_type_present: return self._access_type_value @@ -8112,16 +8185,17 @@ def __repr__(self): class MemberAddArg(bb.Struct): """ - :ivar member_given_name: Member's first name. - :ivar member_surname: Member's last name. - :ivar member_external_id: External ID for member. - :ivar member_persistent_id: Persistent ID for member. This field is only - available to teams using persistent ID SAML configuration. - :ivar send_welcome_email: Whether to send a welcome email to the member. If - send_welcome_email is false, no email invitation will be sent to the - user. This may be useful for apps using single sign-on (SSO) flows for - onboarding that want to handle announcements themselves. - :ivar is_directory_restricted: Whether a user is directory restricted. + :ivar team.MemberAddArg.member_given_name: Member's first name. + :ivar team.MemberAddArg.member_surname: Member's last name. + :ivar team.MemberAddArg.member_external_id: External ID for member. + :ivar team.MemberAddArg.member_persistent_id: Persistent ID for member. This + field is only available to teams using persistent ID SAML configuration. + :ivar team.MemberAddArg.send_welcome_email: Whether to send a welcome email + to the member. If send_welcome_email is false, no email invitation will + be sent to the user. This may be useful for apps using single sign-on + (SSO) flows for onboarding that want to handle announcements themselves. + :ivar team.MemberAddArg.is_directory_restricted: Whether a user is directory + restricted. """ __slots__ = [ @@ -8342,7 +8416,7 @@ def send_welcome_email(self): @property def role(self): """ - :rtype: AdminTier + :rtype: team.AdminTier """ if self._role_present: return self._role_value @@ -8414,28 +8488,33 @@ class MemberAddResult(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar TeamMemberInfo success: Describes a user that was successfully added - to the team. - :ivar str team_license_limit: Team is already full. The organization has no - available licenses. - :ivar str free_team_member_limit_reached: Team is already full. The free - team member limit has been reached. - :ivar str user_already_on_team: User is already on this team. The provided - email address is associated with a user who is already a member of - (including in recoverable state) or invited to the team. - :ivar str user_on_another_team: User is already on another team. The - provided email address is associated with a user that is already a - member or invited to another team. - :ivar str user_already_paired: User is already paired. - :ivar str user_migration_failed: User migration has failed. - :ivar str duplicate_external_member_id: A user with the given external - member ID already exists on the team (including in recoverable state). - :ivar str duplicate_member_persistent_id: A user with the given persistent - ID already exists on the team (including in recoverable state). - :ivar str persistent_id_disabled: Persistent ID is only available to teams - with persistent ID SAML configuration. Please contact Dropbox for more - information. - :ivar str user_creation_failed: User creation has failed. + :ivar TeamMemberInfo team.MemberAddResult.success: Describes a user that was + successfully added to the team. + :ivar str team.MemberAddResult.team_license_limit: Team is already full. The + organization has no available licenses. + :ivar str team.MemberAddResult.free_team_member_limit_reached: Team is + already full. The free team member limit has been reached. + :ivar str team.MemberAddResult.user_already_on_team: User is already on this + team. The provided email address is associated with a user who is + already a member of (including in recoverable state) or invited to the + team. + :ivar str team.MemberAddResult.user_on_another_team: User is already on + another team. The provided email address is associated with a user that + is already a member or invited to another team. + :ivar str team.MemberAddResult.user_already_paired: User is already paired. + :ivar str team.MemberAddResult.user_migration_failed: User migration has + failed. + :ivar str team.MemberAddResult.duplicate_external_member_id: A user with the + given external member ID already exists on the team (including in + recoverable state). + :ivar str team.MemberAddResult.duplicate_member_persistent_id: A user with + the given persistent ID already exists on the team (including in + recoverable state). + :ivar str team.MemberAddResult.persistent_id_disabled: Persistent ID is only + available to teams with persistent ID SAML configuration. Please contact + Dropbox for more information. + :ivar str team.MemberAddResult.user_creation_failed: User creation has + failed. """ _catch_all = None @@ -8446,8 +8525,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param TeamMemberInfo val: - :rtype: MemberAddResult + :param team.TeamMemberInfo val: + :rtype: team.MemberAddResult """ return cls('success', val) @@ -8458,7 +8537,7 @@ def team_license_limit(cls, val): with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('team_license_limit', val) @@ -8469,7 +8548,7 @@ def free_team_member_limit_reached(cls, val): ``free_team_member_limit_reached`` tag with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('free_team_member_limit_reached', val) @@ -8480,7 +8559,7 @@ def user_already_on_team(cls, val): with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('user_already_on_team', val) @@ -8491,7 +8570,7 @@ def user_on_another_team(cls, val): with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('user_on_another_team', val) @@ -8502,7 +8581,7 @@ def user_already_paired(cls, val): with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('user_already_paired', val) @@ -8513,7 +8592,7 @@ def user_migration_failed(cls, val): tag with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('user_migration_failed', val) @@ -8524,7 +8603,7 @@ def duplicate_external_member_id(cls, val): ``duplicate_external_member_id`` tag with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('duplicate_external_member_id', val) @@ -8535,7 +8614,7 @@ def duplicate_member_persistent_id(cls, val): ``duplicate_member_persistent_id`` tag with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('duplicate_member_persistent_id', val) @@ -8546,7 +8625,7 @@ def persistent_id_disabled(cls, val): tag with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('persistent_id_disabled', val) @@ -8557,7 +8636,7 @@ def user_creation_failed(cls, val): with value ``val``. :param str val: - :rtype: MemberAddResult + :rtype: team.MemberAddResult """ return cls('user_creation_failed', val) @@ -8655,7 +8734,7 @@ def get_success(self): Only call this if :meth:`is_success` is true. - :rtype: TeamMemberInfo + :rtype: team.TeamMemberInfo """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -8800,10 +8879,13 @@ class MemberDevices(bb.Struct): """ Information on devices of a team's member. - :ivar team_member_id: The member unique Id. - :ivar web_sessions: List of web sessions made by this team member. - :ivar desktop_clients: List of desktop clients by this team member. - :ivar mobile_clients: List of mobile clients by this team member. + :ivar team.MemberDevices.team_member_id: The member unique Id. + :ivar team.MemberDevices.web_sessions: List of web sessions made by this + team member. + :ivar team.MemberDevices.desktop_clients: List of desktop clients by this + team member. + :ivar team.MemberDevices.mobile_clients: List of mobile clients by this team + member. """ __slots__ = [ @@ -8869,7 +8951,7 @@ def web_sessions(self): """ List of web sessions made by this team member. - :rtype: list of [ActiveWebSession] + :rtype: list of [team.ActiveWebSession] """ if self._web_sessions_present: return self._web_sessions_value @@ -8895,7 +8977,7 @@ def desktop_clients(self): """ List of desktop clients by this team member. - :rtype: list of [DesktopClientSession] + :rtype: list of [team.DesktopClientSession] """ if self._desktop_clients_present: return self._desktop_clients_value @@ -8921,7 +9003,7 @@ def mobile_clients(self): """ List of mobile clients by this team member. - :rtype: list of [MobileClientSession] + :rtype: list of [team.MobileClientSession] """ if self._mobile_clients_present: return self._mobile_clients_value @@ -8959,9 +9041,9 @@ class MemberLinkedApps(bb.Struct): """ Information on linked applications of a team member. - :ivar team_member_id: The member unique Id. - :ivar linked_api_apps: List of third party applications linked by this team - member. + :ivar team.MemberLinkedApps.team_member_id: The member unique Id. + :ivar team.MemberLinkedApps.linked_api_apps: List of third party + applications linked by this team member. """ __slots__ = [ @@ -9013,7 +9095,7 @@ def linked_api_apps(self): """ List of third party applications linked by this team member. - :rtype: list of [ApiApp] + :rtype: list of [team.ApiApp] """ if self._linked_api_apps_present: return self._linked_api_apps_value @@ -9046,25 +9128,27 @@ class MemberProfile(bb.Struct): """ Basic member profile. - :ivar team_member_id: ID of user as a member of a team. - :ivar external_id: External ID that a team can attach to the user. An - application using the API may find it easier to use their own IDs - instead of Dropbox IDs like account_id or team_member_id. - :ivar account_id: A user's account identifier. - :ivar email: Email address of user. - :ivar email_verified: Is true if the user's email is verified to be owned by - the user. - :ivar status: The user's status as a member of a specific team. - :ivar name: Representations for a person's name. - :ivar membership_type: The user's membership type: full (normal team member) - vs limited (does not use a license; no access to the team's shared - quota). - :ivar joined_on: The date and time the user joined as a member of a specific + :ivar team.MemberProfile.team_member_id: ID of user as a member of a team. + :ivar team.MemberProfile.external_id: External ID that a team can attach to + the user. An application using the API may find it easier to use their + own IDs instead of Dropbox IDs like account_id or team_member_id. + :ivar team.MemberProfile.account_id: A user's account identifier. + :ivar team.MemberProfile.email: Email address of user. + :ivar team.MemberProfile.email_verified: Is true if the user's email is + verified to be owned by the user. + :ivar team.MemberProfile.status: The user's status as a member of a specific team. - :ivar persistent_id: Persistent ID that a team can attach to the user. The - persistent ID is unique ID to be used for SAML authentication. - :ivar is_directory_restricted: Whether the user is a directory restricted - user. + :ivar team.MemberProfile.name: Representations for a person's name. + :ivar team.MemberProfile.membership_type: The user's membership type: full + (normal team member) vs limited (does not use a license; no access to + the team's shared quota). + :ivar team.MemberProfile.joined_on: The date and time the user joined as a + member of a specific team. + :ivar team.MemberProfile.persistent_id: Persistent ID that a team can attach + to the user. The persistent ID is unique ID to be used for SAML + authentication. + :ivar team.MemberProfile.is_directory_restricted: Whether the user is a + directory restricted user. """ __slots__ = [ @@ -9279,7 +9363,7 @@ def status(self): """ The user's status as a member of a specific team. - :rtype: TeamMemberStatus + :rtype: team.TeamMemberStatus """ if self._status_present: return self._status_value @@ -9326,7 +9410,7 @@ def membership_type(self): The user's membership type: full (normal team member) vs limited (does not use a license; no access to the team's shared quota). - :rtype: TeamMembershipType + :rtype: team.TeamMembershipType """ if self._membership_type_present: return self._membership_type_value @@ -9452,8 +9536,9 @@ class UserSelectorError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar user_not_found: No matching user found. The provided team_member_id, - email, or external_id does not exist on this team. + :ivar team.UserSelectorError.user_not_found: No matching user found. The + provided team_member_id, email, or external_id does not exist on this + team. """ _catch_all = None @@ -9482,7 +9567,8 @@ class MemberSelectorError(UserSelectorError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar user_not_in_team: The user is not a member of the team. + :ivar team.MemberSelectorError.user_not_in_team: The user is not a member of + the team. """ # Attribute is overwritten below the class definition @@ -9506,8 +9592,10 @@ def __repr__(self): class MembersAddArg(bb.Struct): """ - :ivar new_members: Details of new members to be added to the team. - :ivar force_async: Whether to force the add to happen asynchronously. + :ivar team.MembersAddArg.new_members: Details of new members to be added to + the team. + :ivar team.MembersAddArg.force_async: Whether to force the add to happen + asynchronously. """ __slots__ = [ @@ -9536,7 +9624,7 @@ def new_members(self): """ Details of new members to be added to the team. - :rtype: list of [MemberAddArg] + :rtype: list of [team.MemberAddArg] """ if self._new_members_present: return self._new_members_value @@ -9594,12 +9682,12 @@ class MembersAddJobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar list of [MemberAddResult] complete: The asynchronous job has finished. - For each member that was specified in the parameter - :type:`MembersAddArg` that was provided to :route:`members/add`, a - corresponding item is returned in this list. - :ivar str failed: The asynchronous job returned an error. The string - contains an error message. + :ivar list of [team.MemberAddResult] team.MembersAddJobStatus.complete: The + asynchronous job has finished. For each member that was specified in the + parameter :type:`MembersAddArg` that was provided to + :route:`members/add`, a corresponding item is returned in this list. + :ivar str team.MembersAddJobStatus.failed: The asynchronous job returned an + error. The string contains an error message. """ @classmethod @@ -9608,8 +9696,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param list of [MemberAddResult] val: - :rtype: MembersAddJobStatus + :param list of [team.MemberAddResult] val: + :rtype: team.MembersAddJobStatus """ return cls('complete', val) @@ -9620,7 +9708,7 @@ def failed(cls, val): ``val``. :param str val: - :rtype: MembersAddJobStatus + :rtype: team.MembersAddJobStatus """ return cls('failed', val) @@ -9649,7 +9737,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: list of [MemberAddResult] + :rtype: list of [team.MemberAddResult] """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -9689,8 +9777,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param list of [MemberAddResult] val: - :rtype: MembersAddLaunch + :param list of [team.MemberAddResult] val: + :rtype: team.MembersAddLaunch """ return cls('complete', val) @@ -9706,7 +9794,7 @@ def get_complete(self): """ Only call this if :meth:`is_complete` is true. - :rtype: list of [MemberAddResult] + :rtype: list of [team.MemberAddResult] """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -9725,7 +9813,8 @@ class MembersDeactivateBaseArg(bb.Struct): Exactly one of team_member_id, email, or external_id must be provided to identify the user account. - :ivar user: Identity of user to remove/suspend/have their files moved. + :ivar team.MembersDeactivateBaseArg.user: Identity of user to + remove/suspend/have their files moved. """ __slots__ = [ @@ -9747,7 +9836,7 @@ def user(self): """ Identity of user to remove/suspend/have their files moved. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._user_present: return self._user_value @@ -9777,10 +9866,10 @@ def __repr__(self): class MembersDataTransferArg(MembersDeactivateBaseArg): """ - :ivar transfer_dest_id: Files from the deleted member account will be - transferred to this user. - :ivar transfer_admin_id: Errors during the transfer process will be sent via - email to this user. + :ivar team.MembersDataTransferArg.transfer_dest_id: Files from the deleted + member account will be transferred to this user. + :ivar team.MembersDataTransferArg.transfer_admin_id: Errors during the + transfer process will be sent via email to this user. """ __slots__ = [ @@ -9811,7 +9900,7 @@ def transfer_dest_id(self): """ Files from the deleted member account will be transferred to this user. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._transfer_dest_id_present: return self._transfer_dest_id_value @@ -9834,7 +9923,7 @@ def transfer_admin_id(self): """ Errors during the transfer process will be sent via email to this user. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._transfer_admin_id_present: return self._transfer_admin_id_value @@ -9866,8 +9955,8 @@ def __repr__(self): class MembersDeactivateArg(MembersDeactivateBaseArg): """ - :ivar wipe_data: If provided, controls if the user's data will be deleted on - their linked devices. + :ivar team.MembersDeactivateArg.wipe_data: If provided, controls if the + user's data will be deleted on their linked devices. """ __slots__ = [ @@ -9927,7 +10016,8 @@ class MembersDeactivateError(UserSelectorError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar user_not_in_team: The user is not a member of the team. + :ivar team.MembersDeactivateError.user_not_in_team: The user is not a member + of the team. """ _catch_all = 'other' @@ -9962,7 +10052,7 @@ def __repr__(self): class MembersGetInfoArgs(bb.Struct): """ - :ivar members: List of team members. + :ivar team.MembersGetInfoArgs.members: List of team members. """ __slots__ = [ @@ -9984,7 +10074,7 @@ def members(self): """ List of team members. - :rtype: list of [UserSelectorArg] + :rtype: list of [team.UserSelectorArg] """ if self._members_present: return self._members_value @@ -10048,11 +10138,12 @@ class MembersGetInfoItem(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str id_not_found: An ID that was provided as a parameter to - :route:`members/get_info`, and did not match a corresponding user. This - might be a team_member_id, an email, or an external ID, depending on how - the method was called. - :ivar TeamMemberInfo member_info: Info about a team member. + :ivar str team.MembersGetInfoItem.id_not_found: An ID that was provided as a + parameter to :route:`members/get_info`, and did not match a + corresponding user. This might be a team_member_id, an email, or an + external ID, depending on how the method was called. + :ivar TeamMemberInfo team.MembersGetInfoItem.member_info: Info about a team + member. """ _catch_all = None @@ -10064,7 +10155,7 @@ def id_not_found(cls, val): value ``val``. :param str val: - :rtype: MembersGetInfoItem + :rtype: team.MembersGetInfoItem """ return cls('id_not_found', val) @@ -10074,8 +10165,8 @@ def member_info(cls, val): Create an instance of this class set to the ``member_info`` tag with value ``val``. - :param TeamMemberInfo val: - :rtype: MembersGetInfoItem + :param team.TeamMemberInfo val: + :rtype: team.MembersGetInfoItem """ return cls('member_info', val) @@ -10116,7 +10207,7 @@ def get_member_info(self): Only call this if :meth:`is_member_info` is true. - :rtype: TeamMemberInfo + :rtype: team.TeamMemberInfo """ if not self.is_member_info(): raise AttributeError("tag 'member_info' not set") @@ -10132,8 +10223,9 @@ def __repr__(self): class MembersListArg(bb.Struct): """ - :ivar limit: Number of results to return per call. - :ivar include_removed: Whether to return removed members. + :ivar team.MembersListArg.limit: Number of results to return per call. + :ivar team.MembersListArg.include_removed: Whether to return removed + members. """ __slots__ = [ @@ -10216,7 +10308,8 @@ def __repr__(self): class MembersListContinueArg(bb.Struct): """ - :ivar cursor: Indicates from what point to get the next set of members. + :ivar team.MembersListContinueArg.cursor: Indicates from what point to get + the next set of members. """ __slots__ = [ @@ -10272,7 +10365,7 @@ class MembersListContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_cursor: The cursor is invalid. + :ivar team.MembersListContinueError.invalid_cursor: The cursor is invalid. """ _catch_all = 'other' @@ -10334,12 +10427,12 @@ def __repr__(self): class MembersListResult(bb.Struct): """ - :ivar members: List of team members. - :ivar cursor: Pass the cursor into + :ivar team.MembersListResult.members: List of team members. + :ivar team.MembersListResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_members_list_continue` to obtain the additional members. - :ivar has_more: Is true if there are additional team members that have not - been returned yet. An additional call to + :ivar team.MembersListResult.has_more: Is true if there are additional team + members that have not been returned yet. An additional call to :meth:`dropbox.dropbox.Dropbox.team_members_list_continue` can retrieve them. """ @@ -10377,7 +10470,7 @@ def members(self): """ List of team members. - :rtype: list of [TeamMemberInfo] + :rtype: list of [team.TeamMemberInfo] """ if self._members_present: return self._members_value @@ -10463,7 +10556,7 @@ class MembersRecoverArg(bb.Struct): Exactly one of team_member_id, email, or external_id must be provided to identify the user account. - :ivar user: Identity of user to recover. + :ivar team.MembersRecoverArg.user: Identity of user to recover. """ __slots__ = [ @@ -10485,7 +10578,7 @@ def user(self): """ Identity of user to recover. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._user_present: return self._user_value @@ -10519,10 +10612,12 @@ class MembersRecoverError(UserSelectorError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar user_unrecoverable: The user is not recoverable. - :ivar user_not_in_team: The user is not a member of the team. - :ivar team_license_limit: Team is full. The organization has no available - licenses. + :ivar team.MembersRecoverError.user_unrecoverable: The user is not + recoverable. + :ivar team.MembersRecoverError.user_not_in_team: The user is not a member of + the team. + :ivar team.MembersRecoverError.team_license_limit: Team is full. The + organization has no available licenses. """ _catch_all = 'other' @@ -10577,15 +10672,17 @@ def __repr__(self): class MembersRemoveArg(MembersDeactivateArg): """ - :ivar transfer_dest_id: If provided, files from the deleted member account - will be transferred to this user. - :ivar transfer_admin_id: If provided, errors during the transfer process - will be sent via email to this user. If the transfer_dest_id argument - was provided, then this argument must be provided as well. - :ivar keep_account: Downgrade the member to a Basic account. The user will - retain the email address associated with their Dropbox account and data - in their account that is not restricted to team members. In order to - keep the account the argument wipe_data should be set to False. + :ivar team.MembersRemoveArg.transfer_dest_id: If provided, files from the + deleted member account will be transferred to this user. + :ivar team.MembersRemoveArg.transfer_admin_id: If provided, errors during + the transfer process will be sent via email to this user. If the + transfer_dest_id argument was provided, then this argument must be + provided as well. + :ivar team.MembersRemoveArg.keep_account: Downgrade the member to a Basic + account. The user will retain the email address associated with their + Dropbox account and data in their account that is not restricted to + team members. In order to keep the account the argument wipe_data should + be set to False. """ __slots__ = [ @@ -10626,7 +10723,7 @@ def transfer_dest_id(self): If provided, files from the deleted member account will be transferred to this user. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._transfer_dest_id_present: return self._transfer_dest_id_value @@ -10654,7 +10751,7 @@ def transfer_admin_id(self): to this user. If the transfer_dest_id argument was provided, then this argument must be provided as well. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._transfer_admin_id_present: return self._transfer_admin_id_value @@ -10721,23 +10818,27 @@ class MembersTransferFilesError(MembersDeactivateError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar removed_and_transfer_dest_should_differ: Expected removed user and - transfer_dest user to be different. - :ivar removed_and_transfer_admin_should_differ: Expected removed user and - transfer_admin user to be different. - :ivar transfer_dest_user_not_found: No matching user found for the argument - transfer_dest_id. - :ivar transfer_dest_user_not_in_team: The provided transfer_dest_id does not - exist on this team. - :ivar transfer_admin_user_not_in_team: The provided transfer_admin_id does - not exist on this team. - :ivar transfer_admin_user_not_found: No matching user found for the argument - transfer_admin_id. - :ivar unspecified_transfer_admin_id: The transfer_admin_id argument must be - provided when file transfer is requested. - :ivar transfer_admin_is_not_admin: Specified transfer_admin user is not a - team admin. - :ivar recipient_not_verified: The recipient user's email is not verified. + :ivar + team.MembersTransferFilesError.removed_and_transfer_dest_should_differ: + Expected removed user and transfer_dest user to be different. + :ivar + team.MembersTransferFilesError.removed_and_transfer_admin_should_differ: + Expected removed user and transfer_admin user to be different. + :ivar team.MembersTransferFilesError.transfer_dest_user_not_found: No + matching user found for the argument transfer_dest_id. + :ivar team.MembersTransferFilesError.transfer_dest_user_not_in_team: The + provided transfer_dest_id does not exist on this team. + :ivar team.MembersTransferFilesError.transfer_admin_user_not_in_team: The + provided transfer_admin_id does not exist on this team. + :ivar team.MembersTransferFilesError.transfer_admin_user_not_found: No + matching user found for the argument transfer_admin_id. + :ivar team.MembersTransferFilesError.unspecified_transfer_admin_id: The + transfer_admin_id argument must be provided when file transfer is + requested. + :ivar team.MembersTransferFilesError.transfer_admin_is_not_admin: Specified + transfer_admin user is not a team admin. + :ivar team.MembersTransferFilesError.recipient_not_verified: The recipient + user's email is not verified. """ # Attribute is overwritten below the class definition @@ -10845,17 +10946,17 @@ class MembersRemoveError(MembersTransferFilesError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar remove_last_admin: The user is the last admin of the team, so it - cannot be removed from it. - :ivar cannot_keep_account_and_transfer: Cannot keep account and transfer the - data to another user at the same time. - :ivar cannot_keep_account_and_delete_data: Cannot keep account and delete - the data at the same time. To keep the account the argument wipe_data - should be set to False. - :ivar email_address_too_long_to_be_disabled: The email address of the user - is too long to be disabled. - :ivar cannot_keep_invited_user_account: Cannot keep account of an invited - user. + :ivar team.MembersRemoveError.remove_last_admin: The user is the last admin + of the team, so it cannot be removed from it. + :ivar team.MembersRemoveError.cannot_keep_account_and_transfer: Cannot keep + account and transfer the data to another user at the same time. + :ivar team.MembersRemoveError.cannot_keep_account_and_delete_data: Cannot + keep account and delete the data at the same time. To keep the account + the argument wipe_data should be set to False. + :ivar team.MembersRemoveError.email_address_too_long_to_be_disabled: The + email address of the user is too long to be disabled. + :ivar team.MembersRemoveError.cannot_keep_invited_user_account: Cannot keep + account of an invited user. """ # Attribute is overwritten below the class definition @@ -10949,8 +11050,9 @@ class MembersSetPermissionsArg(bb.Struct): Exactly one of team_member_id, email, or external_id must be provided to identify the user account. - :ivar user: Identity of user whose role will be set. - :ivar new_role: The new role of the member. + :ivar team.MembersSetPermissionsArg.user: Identity of user whose role will + be set. + :ivar team.MembersSetPermissionsArg.new_role: The new role of the member. """ __slots__ = [ @@ -10979,7 +11081,7 @@ def user(self): """ Identity of user whose role will be set. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._user_present: return self._user_value @@ -11002,7 +11104,7 @@ def new_role(self): """ The new role of the member. - :rtype: AdminTier + :rtype: team.AdminTier """ if self._new_role_present: return self._new_role_value @@ -11037,11 +11139,14 @@ class MembersSetPermissionsError(UserSelectorError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar last_admin: Cannot remove the admin setting of the last admin. - :ivar user_not_in_team: The user is not a member of the team. - :ivar cannot_set_permissions: Cannot remove/grant permissions. - :ivar team_license_limit: Team is full. The organization has no available - licenses. + :ivar team.MembersSetPermissionsError.last_admin: Cannot remove the admin + setting of the last admin. + :ivar team.MembersSetPermissionsError.user_not_in_team: The user is not a + member of the team. + :ivar team.MembersSetPermissionsError.cannot_set_permissions: Cannot + remove/grant permissions. + :ivar team.MembersSetPermissionsError.team_license_limit: Team is full. The + organization has no available licenses. """ _catch_all = 'other' @@ -11106,9 +11211,9 @@ def __repr__(self): class MembersSetPermissionsResult(bb.Struct): """ - :ivar team_member_id: The member ID of the user to which the change was - applied. - :ivar role: The role after the change. + :ivar team.MembersSetPermissionsResult.team_member_id: The member ID of the + user to which the change was applied. + :ivar team.MembersSetPermissionsResult.role: The role after the change. """ __slots__ = [ @@ -11160,7 +11265,7 @@ def role(self): """ The role after the change. - :rtype: AdminTier + :rtype: team.AdminTier """ if self._role_present: return self._role_value @@ -11195,15 +11300,16 @@ class MembersSetProfileArg(bb.Struct): identify the user account. At least one of new_email, new_external_id, new_given_name, and/or new_surname must be provided. - :ivar user: Identity of user whose profile will be set. - :ivar new_email: New email for member. - :ivar new_external_id: New external ID for member. - :ivar new_given_name: New given name for member. - :ivar new_surname: New surname for member. - :ivar new_persistent_id: New persistent ID. This field only available to - teams using persistent ID SAML configuration. - :ivar new_is_directory_restricted: New value for whether the user is a - directory restricted user. + :ivar team.MembersSetProfileArg.user: Identity of user whose profile will be + set. + :ivar team.MembersSetProfileArg.new_email: New email for member. + :ivar team.MembersSetProfileArg.new_external_id: New external ID for member. + :ivar team.MembersSetProfileArg.new_given_name: New given name for member. + :ivar team.MembersSetProfileArg.new_surname: New surname for member. + :ivar team.MembersSetProfileArg.new_persistent_id: New persistent ID. This + field only available to teams using persistent ID SAML configuration. + :ivar team.MembersSetProfileArg.new_is_directory_restricted: New value for + whether the user is a directory restricted user. """ __slots__ = [ @@ -11267,7 +11373,7 @@ def user(self): """ Identity of user whose profile will be set. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._user_present: return self._user_value @@ -11464,23 +11570,25 @@ class MembersSetProfileError(MemberSelectorError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar external_id_and_new_external_id_unsafe: It is unsafe to use both - external_id and new_external_id. - :ivar no_new_data_specified: None of new_email, new_given_name, new_surname, - or new_external_id are specified. - :ivar email_reserved_for_other_user: Email is already reserved for another - user. - :ivar external_id_used_by_other_user: The external ID is already in use by - another team member. - :ivar set_profile_disallowed: Modifying deleted users is not allowed. - :ivar param_cannot_be_empty: Parameter new_email cannot be empty. - :ivar persistent_id_disabled: Persistent ID is only available to teams with - persistent ID SAML configuration. Please contact Dropbox for more - information. - :ivar persistent_id_used_by_other_user: The persistent ID is already in use - by another team member. - :ivar directory_restricted_off: Directory Restrictions option is not - available. + :ivar team.MembersSetProfileError.external_id_and_new_external_id_unsafe: It + is unsafe to use both external_id and new_external_id. + :ivar team.MembersSetProfileError.no_new_data_specified: None of new_email, + new_given_name, new_surname, or new_external_id are specified. + :ivar team.MembersSetProfileError.email_reserved_for_other_user: Email is + already reserved for another user. + :ivar team.MembersSetProfileError.external_id_used_by_other_user: The + external ID is already in use by another team member. + :ivar team.MembersSetProfileError.set_profile_disallowed: Modifying deleted + users is not allowed. + :ivar team.MembersSetProfileError.param_cannot_be_empty: Parameter new_email + cannot be empty. + :ivar team.MembersSetProfileError.persistent_id_disabled: Persistent ID is + only available to teams with persistent ID SAML configuration. Please + contact Dropbox for more information. + :ivar team.MembersSetProfileError.persistent_id_used_by_other_user: The + persistent ID is already in use by another team member. + :ivar team.MembersSetProfileError.directory_restricted_off: Directory + Restrictions option is not available. """ _catch_all = 'other' @@ -11599,12 +11707,12 @@ class MembersSuspendError(MembersDeactivateError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar suspend_inactive_user: The user is not active, so it cannot be - suspended. - :ivar suspend_last_admin: The user is the last admin of the team, so it - cannot be suspended. - :ivar team_license_limit: Team is full. The organization has no available - licenses. + :ivar team.MembersSuspendError.suspend_inactive_user: The user is not + active, so it cannot be suspended. + :ivar team.MembersSuspendError.suspend_last_admin: The user is the last + admin of the team, so it cannot be suspended. + :ivar team.MembersSuspendError.team_license_limit: Team is full. The + organization has no available licenses. """ # Attribute is overwritten below the class definition @@ -11652,14 +11760,18 @@ class MembersTransferFormerMembersFilesError(MembersTransferFilesError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar user_data_is_being_transferred: The user's data is being transferred. - Please wait some time before retrying. - :ivar user_not_removed: No matching removed user found for the argument - user. - :ivar user_data_cannot_be_transferred: User files aren't transferable - anymore. - :ivar user_data_already_transferred: User's data has already been - transferred to another user. + :ivar + team.MembersTransferFormerMembersFilesError.user_data_is_being_transferred: + The user's data is being transferred. Please wait some time before + retrying. + :ivar team.MembersTransferFormerMembersFilesError.user_not_removed: No + matching removed user found for the argument user. + :ivar + team.MembersTransferFormerMembersFilesError.user_data_cannot_be_transferred: + User files aren't transferable anymore. + :ivar + team.MembersTransferFormerMembersFilesError.user_data_already_transferred: + User's data has already been transferred to another user. """ # Attribute is overwritten below the class definition @@ -11716,7 +11828,7 @@ class MembersUnsuspendArg(bb.Struct): Exactly one of team_member_id, email, or external_id must be provided to identify the user account. - :ivar user: Identity of user to unsuspend. + :ivar team.MembersUnsuspendArg.user: Identity of user to unsuspend. """ __slots__ = [ @@ -11738,7 +11850,7 @@ def user(self): """ Identity of user to unsuspend. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._user_present: return self._user_value @@ -11772,10 +11884,10 @@ class MembersUnsuspendError(MembersDeactivateError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar unsuspend_non_suspended_member: The user is unsuspended, so it cannot - be unsuspended again. - :ivar team_license_limit: Team is full. The organization has no available - licenses. + :ivar team.MembersUnsuspendError.unsuspend_non_suspended_member: The user is + unsuspended, so it cannot be unsuspended again. + :ivar team.MembersUnsuspendError.team_license_limit: Team is full. The + organization has no available licenses. """ # Attribute is overwritten below the class definition @@ -11813,11 +11925,13 @@ class MobileClientPlatform(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar iphone: Official Dropbox iPhone client. - :ivar ipad: Official Dropbox iPad client. - :ivar android: Official Dropbox Android client. - :ivar windows_phone: Official Dropbox Windows phone client. - :ivar blackberry: Official Dropbox Blackberry client. + :ivar team.MobileClientPlatform.iphone: Official Dropbox iPhone client. + :ivar team.MobileClientPlatform.ipad: Official Dropbox iPad client. + :ivar team.MobileClientPlatform.android: Official Dropbox Android client. + :ivar team.MobileClientPlatform.windows_phone: Official Dropbox Windows + phone client. + :ivar team.MobileClientPlatform.blackberry: Official Dropbox Blackberry + client. """ _catch_all = 'other' @@ -11894,11 +12008,12 @@ class MobileClientSession(DeviceSession): """ Information about linked Dropbox mobile client sessions. - :ivar device_name: The device name. - :ivar client_type: The mobile application type. - :ivar client_version: The dropbox client version. - :ivar os_version: The hosting OS version. - :ivar last_carrier: last carrier used by the device. + :ivar team.MobileClientSession.device_name: The device name. + :ivar team.MobileClientSession.client_type: The mobile application type. + :ivar team.MobileClientSession.client_version: The dropbox client version. + :ivar team.MobileClientSession.os_version: The hosting OS version. + :ivar team.MobileClientSession.last_carrier: last carrier used by the + device. """ __slots__ = [ @@ -11981,7 +12096,7 @@ def client_type(self): """ The mobile application type. - :rtype: MobileClientPlatform + :rtype: team.MobileClientPlatform """ if self._client_type_present: return self._client_type_value @@ -12100,11 +12215,12 @@ class NamespaceMetadata(bb.Struct): """ Properties of a namespace. - :ivar name: The name of this namespace. - :ivar namespace_id: The ID of this namespace. - :ivar namespace_type: The type of this namespace. - :ivar team_member_id: If this is a team member or app folder, the ID of the - owning team member. Otherwise, this field is not present. + :ivar team.NamespaceMetadata.name: The name of this namespace. + :ivar team.NamespaceMetadata.namespace_id: The ID of this namespace. + :ivar team.NamespaceMetadata.namespace_type: The type of this namespace. + :ivar team.NamespaceMetadata.team_member_id: If this is a team member or app + folder, the ID of the owning team member. Otherwise, this field is not + present. """ __slots__ = [ @@ -12193,7 +12309,7 @@ def namespace_type(self): """ The type of this namespace. - :rtype: NamespaceType + :rtype: team.NamespaceType """ if self._namespace_type_present: return self._namespace_type_value @@ -12257,10 +12373,10 @@ class NamespaceType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar app_folder: App sandbox folder. - :ivar shared_folder: Shared folder. - :ivar team_folder: Top-level team-owned folder. - :ivar team_member_folder: Team member's home folder. + :ivar team.NamespaceType.app_folder: App sandbox folder. + :ivar team.NamespaceType.shared_folder: Shared folder. + :ivar team.NamespaceType.team_folder: Top-level team-owned folder. + :ivar team.NamespaceType.team_member_folder: Team member's home folder. """ _catch_all = 'other' @@ -12331,8 +12447,10 @@ class RemoveCustomQuotaResult(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar UserSelectorArg success: Successfully removed user. - :ivar UserSelectorArg invalid_user: Invalid user (not in team). + :ivar UserSelectorArg team.RemoveCustomQuotaResult.success: Successfully + removed user. + :ivar UserSelectorArg team.RemoveCustomQuotaResult.invalid_user: Invalid + user (not in team). """ _catch_all = 'other' @@ -12345,8 +12463,8 @@ def success(cls, val): Create an instance of this class set to the ``success`` tag with value ``val``. - :param UserSelectorArg val: - :rtype: RemoveCustomQuotaResult + :param team.UserSelectorArg val: + :rtype: team.RemoveCustomQuotaResult """ return cls('success', val) @@ -12356,8 +12474,8 @@ def invalid_user(cls, val): Create an instance of this class set to the ``invalid_user`` tag with value ``val``. - :param UserSelectorArg val: - :rtype: RemoveCustomQuotaResult + :param team.UserSelectorArg val: + :rtype: team.RemoveCustomQuotaResult """ return cls('invalid_user', val) @@ -12391,7 +12509,7 @@ def get_success(self): Only call this if :meth:`is_success` is true. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if not self.is_success(): raise AttributeError("tag 'success' not set") @@ -12403,7 +12521,7 @@ def get_invalid_user(self): Only call this if :meth:`is_invalid_user` is true. - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if not self.is_invalid_user(): raise AttributeError("tag 'invalid_user' not set") @@ -12419,9 +12537,10 @@ def __repr__(self): class RemovedStatus(bb.Struct): """ - :ivar is_recoverable: True if the removed team member is recoverable. - :ivar is_disconnected: True if the team member's account was converted to - individual account. + :ivar team.RemovedStatus.is_recoverable: True if the removed team member is + recoverable. + :ivar team.RemovedStatus.is_disconnected: True if the team member's account + was converted to individual account. """ __slots__ = [ @@ -12504,9 +12623,9 @@ def __repr__(self): class RevokeDesktopClientArg(DeviceSessionArg): """ - :ivar delete_on_unlink: Whether to delete all files of the account (this is - possible only if supported by the desktop client and will be made the - next time the client access the account). + :ivar team.RevokeDesktopClientArg.delete_on_unlink: Whether to delete all + files of the account (this is possible only if supported by the desktop + client and will be made the next time the client access the account). """ __slots__ = [ @@ -12570,9 +12689,12 @@ class RevokeDeviceSessionArg(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar DeviceSessionArg web_session: End an active session. - :ivar RevokeDesktopClientArg desktop_client: Unlink a linked desktop device. - :ivar DeviceSessionArg mobile_client: Unlink a linked mobile device. + :ivar DeviceSessionArg team.RevokeDeviceSessionArg.web_session: End an + active session. + :ivar RevokeDesktopClientArg team.RevokeDeviceSessionArg.desktop_client: + Unlink a linked desktop device. + :ivar DeviceSessionArg team.RevokeDeviceSessionArg.mobile_client: Unlink a + linked mobile device. """ _catch_all = None @@ -12583,8 +12705,8 @@ def web_session(cls, val): Create an instance of this class set to the ``web_session`` tag with value ``val``. - :param DeviceSessionArg val: - :rtype: RevokeDeviceSessionArg + :param team.DeviceSessionArg val: + :rtype: team.RevokeDeviceSessionArg """ return cls('web_session', val) @@ -12594,8 +12716,8 @@ def desktop_client(cls, val): Create an instance of this class set to the ``desktop_client`` tag with value ``val``. - :param RevokeDesktopClientArg val: - :rtype: RevokeDeviceSessionArg + :param team.RevokeDesktopClientArg val: + :rtype: team.RevokeDeviceSessionArg """ return cls('desktop_client', val) @@ -12605,8 +12727,8 @@ def mobile_client(cls, val): Create an instance of this class set to the ``mobile_client`` tag with value ``val``. - :param DeviceSessionArg val: - :rtype: RevokeDeviceSessionArg + :param team.DeviceSessionArg val: + :rtype: team.RevokeDeviceSessionArg """ return cls('mobile_client', val) @@ -12640,7 +12762,7 @@ def get_web_session(self): Only call this if :meth:`is_web_session` is true. - :rtype: DeviceSessionArg + :rtype: team.DeviceSessionArg """ if not self.is_web_session(): raise AttributeError("tag 'web_session' not set") @@ -12652,7 +12774,7 @@ def get_desktop_client(self): Only call this if :meth:`is_desktop_client` is true. - :rtype: RevokeDesktopClientArg + :rtype: team.RevokeDesktopClientArg """ if not self.is_desktop_client(): raise AttributeError("tag 'desktop_client' not set") @@ -12664,7 +12786,7 @@ def get_mobile_client(self): Only call this if :meth:`is_mobile_client` is true. - :rtype: DeviceSessionArg + :rtype: team.DeviceSessionArg """ if not self.is_mobile_client(): raise AttributeError("tag 'mobile_client' not set") @@ -12697,7 +12819,7 @@ def __init__(self, @property def revoke_devices(self): """ - :rtype: list of [RevokeDeviceSessionArg] + :rtype: list of [team.RevokeDeviceSessionArg] """ if self._revoke_devices_present: return self._revoke_devices_value @@ -12771,7 +12893,7 @@ def __init__(self, @property def revoke_devices_status(self): """ - :rtype: list of [RevokeDeviceSessionStatus] + :rtype: list of [team.RevokeDeviceSessionStatus] """ if self._revoke_devices_status_present: return self._revoke_devices_status_value @@ -12805,8 +12927,9 @@ class RevokeDeviceSessionError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar device_session_not_found: Device session not found. - :ivar member_not_found: Member not found. + :ivar team.RevokeDeviceSessionError.device_session_not_found: Device session + not found. + :ivar team.RevokeDeviceSessionError.member_not_found: Member not found. """ _catch_all = 'other' @@ -12851,8 +12974,10 @@ def __repr__(self): class RevokeDeviceSessionStatus(bb.Struct): """ - :ivar success: Result of the revoking request. - :ivar error_type: The error cause in case of a failure. + :ivar team.RevokeDeviceSessionStatus.success: Result of the revoking + request. + :ivar team.RevokeDeviceSessionStatus.error_type: The error cause in case of + a failure. """ __slots__ = [ @@ -12904,7 +13029,7 @@ def error_type(self): """ The error cause in case of a failure. - :rtype: RevokeDeviceSessionError + :rtype: team.RevokeDeviceSessionError """ if self._error_type_present: return self._error_type_value @@ -12938,10 +13063,11 @@ def __repr__(self): class RevokeLinkedApiAppArg(bb.Struct): """ - :ivar app_id: The application's unique id. - :ivar team_member_id: The unique id of the member owning the device. - :ivar keep_app_folder: Whether to keep the application dedicated folder (in - case the application uses one). + :ivar team.RevokeLinkedApiAppArg.app_id: The application's unique id. + :ivar team.RevokeLinkedApiAppArg.team_member_id: The unique id of the member + owning the device. + :ivar team.RevokeLinkedApiAppArg.keep_app_folder: Whether to keep the + application dedicated folder (in case the application uses one). """ __slots__ = [ @@ -13073,7 +13199,7 @@ def __init__(self, @property def revoke_linked_app(self): """ - :rtype: list of [RevokeLinkedApiAppArg] + :rtype: list of [team.RevokeLinkedApiAppArg] """ if self._revoke_linked_app_present: return self._revoke_linked_app_value @@ -13150,7 +13276,7 @@ def __init__(self, @property def revoke_linked_app_status(self): """ - :rtype: list of [RevokeLinkedAppStatus] + :rtype: list of [team.RevokeLinkedAppStatus] """ if self._revoke_linked_app_status_present: return self._revoke_linked_app_status_value @@ -13187,8 +13313,8 @@ class RevokeLinkedAppError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar app_not_found: Application not found. - :ivar member_not_found: Member not found. + :ivar team.RevokeLinkedAppError.app_not_found: Application not found. + :ivar team.RevokeLinkedAppError.member_not_found: Member not found. """ _catch_all = 'other' @@ -13233,8 +13359,9 @@ def __repr__(self): class RevokeLinkedAppStatus(bb.Struct): """ - :ivar success: Result of the revoking request. - :ivar error_type: The error cause in case of a failure. + :ivar team.RevokeLinkedAppStatus.success: Result of the revoking request. + :ivar team.RevokeLinkedAppStatus.error_type: The error cause in case of a + failure. """ __slots__ = [ @@ -13286,7 +13413,7 @@ def error_type(self): """ The error cause in case of a failure. - :rtype: RevokeLinkedAppError + :rtype: team.RevokeLinkedAppError """ if self._error_type_present: return self._error_type_value @@ -13320,7 +13447,8 @@ def __repr__(self): class SetCustomQuotaArg(bb.Struct): """ - :ivar users_and_quotas: List of users and their custom quotas. + :ivar team.SetCustomQuotaArg.users_and_quotas: List of users and their + custom quotas. """ __slots__ = [ @@ -13342,7 +13470,7 @@ def users_and_quotas(self): """ List of users and their custom quotas. - :rtype: list of [UserCustomQuotaArg] + :rtype: list of [team.UserCustomQuotaArg] """ if self._users_and_quotas_present: return self._users_and_quotas_value @@ -13378,8 +13506,8 @@ class SetCustomQuotaError(CustomQuotaError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar some_users_are_excluded: Some of the users are on the excluded users - list and can't have custom quota set. + :ivar team.SetCustomQuotaError.some_users_are_excluded: Some of the users + are on the excluded users list and can't have custom quota set. """ # Attribute is overwritten below the class definition @@ -13405,10 +13533,10 @@ class StorageBucket(bb.Struct): """ Describes the number of users in a specific storage bucket. - :ivar bucket: The name of the storage bucket. For example, '1G' is a bucket - of users with storage size up to 1 Giga. - :ivar users: The number of people whose storage is in the range of this - storage bucket. + :ivar team.StorageBucket.bucket: The name of the storage bucket. For + example, '1G' is a bucket of users with storage size up to 1 Giga. + :ivar team.StorageBucket.users: The number of people whose storage is in the + range of this storage bucket. """ __slots__ = [ @@ -13497,9 +13625,10 @@ class TeamFolderAccessError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_team_folder_id: The team folder ID is invalid. - :ivar no_access: The authenticated app does not have permission to manage - that team folder. + :ivar team.TeamFolderAccessError.invalid_team_folder_id: The team folder ID + is invalid. + :ivar team.TeamFolderAccessError.no_access: The authenticated app does not + have permission to manage that team folder. """ _catch_all = 'other' @@ -13559,7 +13688,7 @@ def __repr__(self): class TeamFolderIdArg(bb.Struct): """ - :ivar team_folder_id: The ID of the team folder. + :ivar team.TeamFolderIdArg.team_folder_id: The ID of the team folder. """ __slots__ = [ @@ -13611,7 +13740,8 @@ def __repr__(self): class TeamFolderArchiveArg(TeamFolderIdArg): """ - :ivar force_async_off: Whether to force the archive to happen synchronously. + :ivar team.TeamFolderArchiveArg.force_async_off: Whether to force the + archive to happen synchronously. """ __slots__ = [ @@ -13685,10 +13815,11 @@ class TeamFolderArchiveJobStatus(async_.PollResultBase): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar TeamFolderMetadata complete: The archive job has finished. The value - is the metadata for the resulting team folder. - :ivar TeamFolderArchiveError failed: Error occurred while performing an - asynchronous job from + :ivar TeamFolderMetadata team.TeamFolderArchiveJobStatus.complete: The + archive job has finished. The value is the metadata for the resulting + team folder. + :ivar TeamFolderArchiveError team.TeamFolderArchiveJobStatus.failed: Error + occurred while performing an asynchronous job from :meth:`dropbox.dropbox.Dropbox.team_team_folder_archive`. """ @@ -13698,8 +13829,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param TeamFolderMetadata val: - :rtype: TeamFolderArchiveJobStatus + :param team.TeamFolderMetadata val: + :rtype: team.TeamFolderArchiveJobStatus """ return cls('complete', val) @@ -13709,8 +13840,8 @@ def failed(cls, val): Create an instance of this class set to the ``failed`` tag with value ``val``. - :param TeamFolderArchiveError val: - :rtype: TeamFolderArchiveJobStatus + :param team.TeamFolderArchiveError val: + :rtype: team.TeamFolderArchiveJobStatus """ return cls('failed', val) @@ -13737,7 +13868,7 @@ def get_complete(self): Only call this if :meth:`is_complete` is true. - :rtype: TeamFolderMetadata + :rtype: team.TeamFolderMetadata """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -13750,7 +13881,7 @@ def get_failed(self): Only call this if :meth:`is_failed` is true. - :rtype: TeamFolderArchiveError + :rtype: team.TeamFolderArchiveError """ if not self.is_failed(): raise AttributeError("tag 'failed' not set") @@ -13777,8 +13908,8 @@ def complete(cls, val): Create an instance of this class set to the ``complete`` tag with value ``val``. - :param TeamFolderMetadata val: - :rtype: TeamFolderArchiveLaunch + :param team.TeamFolderMetadata val: + :rtype: team.TeamFolderArchiveLaunch """ return cls('complete', val) @@ -13794,7 +13925,7 @@ def get_complete(self): """ Only call this if :meth:`is_complete` is true. - :rtype: TeamFolderMetadata + :rtype: team.TeamFolderMetadata """ if not self.is_complete(): raise AttributeError("tag 'complete' not set") @@ -13810,9 +13941,10 @@ def __repr__(self): class TeamFolderCreateArg(bb.Struct): """ - :ivar name: Name for the new team folder. - :ivar sync_setting: The sync setting to apply to this team folder. Only - permitted if the team has team selective sync enabled. + :ivar team.TeamFolderCreateArg.name: Name for the new team folder. + :ivar team.TeamFolderCreateArg.sync_setting: The sync setting to apply to + this team folder. Only permitted if the team has team selective sync + enabled. """ __slots__ = [ @@ -13903,13 +14035,14 @@ class TeamFolderCreateError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_folder_name: The provided name cannot be used. - :ivar folder_name_already_used: There is already a team folder with the - provided name. - :ivar folder_name_reserved: The provided name cannot be used because it is - reserved. - :ivar SyncSettingsError sync_settings_error: An error occurred setting the - sync settings. + :ivar team.TeamFolderCreateError.invalid_folder_name: The provided name + cannot be used. + :ivar team.TeamFolderCreateError.folder_name_already_used: There is already + a team folder with the provided name. + :ivar team.TeamFolderCreateError.folder_name_reserved: The provided name + cannot be used because it is reserved. + :ivar SyncSettingsError team.TeamFolderCreateError.sync_settings_error: An + error occurred setting the sync settings. """ _catch_all = 'other' @@ -13929,7 +14062,7 @@ def sync_settings_error(cls, val): with value ``val``. :param files.SyncSettingsError val: - :rtype: TeamFolderCreateError + :rtype: team.TeamFolderCreateError """ return cls('sync_settings_error', val) @@ -13999,10 +14132,11 @@ class TeamFolderGetInfoItem(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str id_not_found: An ID that was provided as a parameter to - :route:`team_folder/get_info` did not match any of the team's team - folders. - :ivar TeamFolderMetadata team_folder_metadata: Properties of a team folder. + :ivar str team.TeamFolderGetInfoItem.id_not_found: An ID that was provided + as a parameter to :route:`team_folder/get_info` did not match any of the + team's team folders. + :ivar TeamFolderMetadata team.TeamFolderGetInfoItem.team_folder_metadata: + Properties of a team folder. """ _catch_all = None @@ -14014,7 +14148,7 @@ def id_not_found(cls, val): value ``val``. :param str val: - :rtype: TeamFolderGetInfoItem + :rtype: team.TeamFolderGetInfoItem """ return cls('id_not_found', val) @@ -14024,8 +14158,8 @@ def team_folder_metadata(cls, val): Create an instance of this class set to the ``team_folder_metadata`` tag with value ``val``. - :param TeamFolderMetadata val: - :rtype: TeamFolderGetInfoItem + :param team.TeamFolderMetadata val: + :rtype: team.TeamFolderGetInfoItem """ return cls('team_folder_metadata', val) @@ -14065,7 +14199,7 @@ def get_team_folder_metadata(self): Only call this if :meth:`is_team_folder_metadata` is true. - :rtype: TeamFolderMetadata + :rtype: team.TeamFolderMetadata """ if not self.is_team_folder_metadata(): raise AttributeError("tag 'team_folder_metadata' not set") @@ -14081,7 +14215,7 @@ def __repr__(self): class TeamFolderIdListArg(bb.Struct): """ - :ivar team_folder_ids: The list of team folder IDs. + :ivar team.TeamFolderIdListArg.team_folder_ids: The list of team folder IDs. """ __slots__ = [ @@ -14137,10 +14271,12 @@ class TeamFolderInvalidStatusError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar active: The folder is active and the operation did not succeed. - :ivar archived: The folder is archived and the operation did not succeed. - :ivar archive_in_progress: The folder is being archived and the operation - did not succeed. + :ivar team.TeamFolderInvalidStatusError.active: The folder is active and the + operation did not succeed. + :ivar team.TeamFolderInvalidStatusError.archived: The folder is archived and + the operation did not succeed. + :ivar team.TeamFolderInvalidStatusError.archive_in_progress: The folder is + being archived and the operation did not succeed. """ _catch_all = 'other' @@ -14195,7 +14331,8 @@ def __repr__(self): class TeamFolderListArg(bb.Struct): """ - :ivar limit: The maximum number of results to return per request. + :ivar team.TeamFolderListArg.limit: The maximum number of results to return + per request. """ __slots__ = [ @@ -14247,7 +14384,8 @@ def __repr__(self): class TeamFolderListContinueArg(bb.Struct): """ - :ivar cursor: Indicates from what point to get the next set of team folders. + :ivar team.TeamFolderListContinueArg.cursor: Indicates from what point to + get the next set of team folders. """ __slots__ = [ @@ -14303,7 +14441,8 @@ class TeamFolderListContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_cursor: The cursor is invalid. + :ivar team.TeamFolderListContinueError.invalid_cursor: The cursor is + invalid. """ _catch_all = 'other' @@ -14355,7 +14494,7 @@ def __init__(self, @property def access_error(self): """ - :rtype: TeamFolderAccessError + :rtype: team.TeamFolderAccessError """ if self._access_error_present: return self._access_error_value @@ -14388,12 +14527,13 @@ class TeamFolderListResult(bb.Struct): Result for :meth:`dropbox.dropbox.Dropbox.team_team_folder_list` and :meth:`dropbox.dropbox.Dropbox.team_team_folder_list_continue`. - :ivar team_folders: List of all team folders in the authenticated team. - :ivar cursor: Pass the cursor into + :ivar team.TeamFolderListResult.team_folders: List of all team folders in + the authenticated team. + :ivar team.TeamFolderListResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_team_folder_list_continue` to obtain additional team folders. - :ivar has_more: Is true if there are additional team folders that have not - been returned yet. An additional call to + :ivar team.TeamFolderListResult.has_more: Is true if there are additional + team folders that have not been returned yet. An additional call to :meth:`dropbox.dropbox.Dropbox.team_team_folder_list_continue` can retrieve them. """ @@ -14431,7 +14571,7 @@ def team_folders(self): """ List of all team folders in the authenticated team. - :rtype: list of [TeamFolderMetadata] + :rtype: list of [team.TeamFolderMetadata] """ if self._team_folders_present: return self._team_folders_value @@ -14516,14 +14656,15 @@ class TeamFolderMetadata(bb.Struct): """ Properties of a team folder. - :ivar team_folder_id: The ID of the team folder. - :ivar name: The name of the team folder. - :ivar status: The status of the team folder. - :ivar is_team_shared_dropbox: True if this team folder is a shared team - root. - :ivar sync_setting: The sync setting applied to this team folder. - :ivar content_sync_settings: Sync settings applied to contents of this team - folder. + :ivar team.TeamFolderMetadata.team_folder_id: The ID of the team folder. + :ivar team.TeamFolderMetadata.name: The name of the team folder. + :ivar team.TeamFolderMetadata.status: The status of the team folder. + :ivar team.TeamFolderMetadata.is_team_shared_dropbox: True if this team + folder is a shared team root. + :ivar team.TeamFolderMetadata.sync_setting: The sync setting applied to this + team folder. + :ivar team.TeamFolderMetadata.content_sync_settings: Sync settings applied + to contents of this team folder. """ __slots__ = [ @@ -14626,7 +14767,7 @@ def status(self): """ The status of the team folder. - :rtype: TeamFolderStatus + :rtype: team.TeamFolderStatus """ if self._status_present: return self._status_value @@ -14745,7 +14886,7 @@ def __repr__(self): class TeamFolderRenameArg(TeamFolderIdArg): """ - :ivar name: New team folder name. + :ivar team.TeamFolderRenameArg.name: New team folder name. """ __slots__ = [ @@ -14804,11 +14945,12 @@ class TeamFolderRenameError(BaseTeamFolderError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_folder_name: The provided folder name cannot be used. - :ivar folder_name_already_used: There is already a team folder with the same - name. - :ivar folder_name_reserved: The provided name cannot be used because it is - reserved. + :ivar team.TeamFolderRenameError.invalid_folder_name: The provided folder + name cannot be used. + :ivar team.TeamFolderRenameError.folder_name_already_used: There is already + a team folder with the same name. + :ivar team.TeamFolderRenameError.folder_name_reserved: The provided name + cannot be used because it is reserved. """ # Attribute is overwritten below the class definition @@ -14856,11 +14998,12 @@ class TeamFolderStatus(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar active: The team folder and sub-folders are available to all members. - :ivar archived: The team folder is not accessible outside of the team folder - manager. - :ivar archive_in_progress: The team folder is not accessible outside of the - team folder manager. + :ivar team.TeamFolderStatus.active: The team folder and sub-folders are + available to all members. + :ivar team.TeamFolderStatus.archived: The team folder is not accessible + outside of the team folder manager. + :ivar team.TeamFolderStatus.archive_in_progress: The team folder is not + accessible outside of the team folder manager. """ _catch_all = 'other' @@ -14919,7 +15062,8 @@ class TeamFolderTeamSharedDropboxError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disallowed: This action is not allowed for a shared team root. + :ivar team.TeamFolderTeamSharedDropboxError.disallowed: This action is not + allowed for a shared team root. """ _catch_all = 'other' @@ -14954,10 +15098,11 @@ def __repr__(self): class TeamFolderUpdateSyncSettingsArg(TeamFolderIdArg): """ - :ivar sync_setting: Sync setting to apply to the team folder itself. Only - meaningful if the team folder is not a shared team root. - :ivar content_sync_settings: Sync settings to apply to contents of this team - folder. + :ivar team.TeamFolderUpdateSyncSettingsArg.sync_setting: Sync setting to + apply to the team folder itself. Only meaningful if the team folder is + not a shared team root. + :ivar team.TeamFolderUpdateSyncSettingsArg.content_sync_settings: Sync + settings to apply to contents of this team folder. """ __slots__ = [ @@ -15054,8 +15199,9 @@ class TeamFolderUpdateSyncSettingsError(BaseTeamFolderError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar SyncSettingsError sync_settings_error: An error occurred setting the - sync settings. + :ivar SyncSettingsError + team.TeamFolderUpdateSyncSettingsError.sync_settings_error: An error + occurred setting the sync settings. """ @classmethod @@ -15065,7 +15211,7 @@ def sync_settings_error(cls, val): with value ``val``. :param files.SyncSettingsError val: - :rtype: TeamFolderUpdateSyncSettingsError + :rtype: team.TeamFolderUpdateSyncSettingsError """ return cls('sync_settings_error', val) @@ -15099,11 +15245,12 @@ def __repr__(self): class TeamGetInfoResult(bb.Struct): """ - :ivar name: The name of the team. - :ivar team_id: The ID of the team. - :ivar num_licensed_users: The number of licenses available to the team. - :ivar num_provisioned_users: The number of accounts that have been invited - or are already active members of the team. + :ivar team.TeamGetInfoResult.name: The name of the team. + :ivar team.TeamGetInfoResult.team_id: The ID of the team. + :ivar team.TeamGetInfoResult.num_licensed_users: The number of licenses + available to the team. + :ivar team.TeamGetInfoResult.num_provisioned_users: The number of accounts + that have been invited or are already active members of the team. """ __slots__ = [ @@ -15280,8 +15427,8 @@ class TeamMemberInfo(bb.Struct): """ Information about a team member. - :ivar profile: Profile of a user as a member of a team. - :ivar role: The user's role in the team. + :ivar team.TeamMemberInfo.profile: Profile of a user as a member of a team. + :ivar team.TeamMemberInfo.role: The user's role in the team. """ __slots__ = [ @@ -15310,7 +15457,7 @@ def profile(self): """ Profile of a user as a member of a team. - :rtype: TeamMemberProfile + :rtype: team.TeamMemberProfile """ if self._profile_present: return self._profile_value @@ -15333,7 +15480,7 @@ def role(self): """ The user's role in the team. - :rtype: AdminTier + :rtype: team.AdminTier """ if self._role_present: return self._role_value @@ -15366,8 +15513,10 @@ class TeamMemberProfile(MemberProfile): """ Profile of a user as a member of a team. - :ivar groups: List of group IDs of groups that the user belongs to. - :ivar member_folder_id: The namespace id of the user's root folder. + :ivar team.TeamMemberProfile.groups: List of group IDs of groups that the + user belongs to. + :ivar team.TeamMemberProfile.member_folder_id: The namespace id of the + user's root folder. """ __slots__ = [ @@ -15489,13 +15638,15 @@ class TeamMemberStatus(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar active: User has successfully joined the team. - :ivar invited: User has been invited to a team, but has not joined the team - yet. - :ivar suspended: User is no longer a member of the team, but the account can - be un-suspended, re-establishing the user as a team member. - :ivar RemovedStatus removed: User is no longer a member of the team. Removed - users are only listed when include_removed is true in members/list. + :ivar team.TeamMemberStatus.active: User has successfully joined the team. + :ivar team.TeamMemberStatus.invited: User has been invited to a team, but + has not joined the team yet. + :ivar team.TeamMemberStatus.suspended: User is no longer a member of the + team, but the account can be un-suspended, re-establishing the user as a + team member. + :ivar RemovedStatus team.TeamMemberStatus.removed: User is no longer a + member of the team. Removed users are only listed when include_removed + is true in members/list. """ _catch_all = None @@ -15512,8 +15663,8 @@ def removed(cls, val): Create an instance of this class set to the ``removed`` tag with value ``val``. - :param RemovedStatus val: - :rtype: TeamMemberStatus + :param team.RemovedStatus val: + :rtype: team.TeamMemberStatus """ return cls('removed', val) @@ -15556,7 +15707,7 @@ def get_removed(self): Only call this if :meth:`is_removed` is true. - :rtype: RemovedStatus + :rtype: team.RemovedStatus """ if not self.is_removed(): raise AttributeError("tag 'removed' not set") @@ -15576,10 +15727,10 @@ class TeamMembershipType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar full: User uses a license and has full access to team resources like - the shared quota. - :ivar limited: User does not have access to the shared quota and team admins - have restricted administrative control. + :ivar team.TeamMembershipType.full: User uses a license and has full access + to team resources like the shared quota. + :ivar team.TeamMembershipType.limited: User does not have access to the + shared quota and team admins have restricted administrative control. """ _catch_all = None @@ -15614,7 +15765,8 @@ def __repr__(self): class TeamNamespacesListArg(bb.Struct): """ - :ivar limit: Specifying a value here has no effect. + :ivar team.TeamNamespacesListArg.limit: Specifying a value here has no + effect. """ __slots__ = [ @@ -15666,8 +15818,8 @@ def __repr__(self): class TeamNamespacesListContinueArg(bb.Struct): """ - :ivar cursor: Indicates from what point to get the next set of - team-accessible namespaces. + :ivar team.TeamNamespacesListContinueArg.cursor: Indicates from what point + to get the next set of team-accessible namespaces. """ __slots__ = [ @@ -15724,7 +15876,8 @@ class TeamNamespacesListError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_arg: Argument passed in is invalid. + :ivar team.TeamNamespacesListError.invalid_arg: Argument passed in is + invalid. """ _catch_all = 'other' @@ -15763,7 +15916,8 @@ class TeamNamespacesListContinueError(TeamNamespacesListError): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar invalid_cursor: The cursor is invalid. + :ivar team.TeamNamespacesListContinueError.invalid_cursor: The cursor is + invalid. """ # Attribute is overwritten below the class definition @@ -15789,12 +15943,13 @@ class TeamNamespacesListResult(bb.Struct): """ Result for :meth:`dropbox.dropbox.Dropbox.team_namespaces_list`. - :ivar namespaces: List of all namespaces the team can access. - :ivar cursor: Pass the cursor into + :ivar team.TeamNamespacesListResult.namespaces: List of all namespaces the + team can access. + :ivar team.TeamNamespacesListResult.cursor: Pass the cursor into :meth:`dropbox.dropbox.Dropbox.team_namespaces_list_continue` to obtain additional namespaces. Note that duplicate namespaces may be returned. - :ivar has_more: Is true if there are additional namespaces that have not - been returned yet. + :ivar team.TeamNamespacesListResult.has_more: Is true if there are + additional namespaces that have not been returned yet. """ __slots__ = [ @@ -15830,7 +15985,7 @@ def namespaces(self): """ List of all namespaces the team can access. - :rtype: list of [NamespaceMetadata] + :rtype: list of [team.NamespaceMetadata] """ if self._namespaces_present: return self._namespaces_value @@ -15918,12 +16073,13 @@ class TokenGetAuthenticatedAdminError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar mapping_not_found: The current token is not associated with a team - admin, because mappings were not recorded when the token was created. - Consider re-authorizing a new access token to record its authenticating - admin. - :ivar admin_not_active: Either the team admin that authorized this token is - no longer an active member of the team or no longer a team admin. + :ivar team.TokenGetAuthenticatedAdminError.mapping_not_found: The current + token is not associated with a team admin, because mappings were not + recorded when the token was created. Consider re-authorizing a new + access token to record its authenticating admin. + :ivar team.TokenGetAuthenticatedAdminError.admin_not_active: Either the team + admin that authorized this token is no longer an active member of the + team or no longer a team admin. """ _catch_all = 'other' @@ -15971,7 +16127,8 @@ class TokenGetAuthenticatedAdminResult(bb.Struct): Results for :meth:`dropbox.dropbox.Dropbox.team_token_get_authenticated_admin`. - :ivar admin_profile: The admin who authorized the token. + :ivar team.TokenGetAuthenticatedAdminResult.admin_profile: The admin who + authorized the token. """ __slots__ = [ @@ -15993,7 +16150,7 @@ def admin_profile(self): """ The admin who authorized the token. - :rtype: TeamMemberProfile + :rtype: team.TeamMemberProfile """ if self._admin_profile_present: return self._admin_profile_value @@ -16029,10 +16186,11 @@ class UploadApiRateLimitValue(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar unlimited: This team has unlimited upload API quota. So far both - server version account and legacy account type have unlimited monthly - upload api quota. - :ivar int limit: The number of upload API calls allowed per month. + :ivar team.UploadApiRateLimitValue.unlimited: This team has unlimited upload + API quota. So far both server version account and legacy account type + have unlimited monthly upload api quota. + :ivar int team.UploadApiRateLimitValue.limit: The number of upload API calls + allowed per month. """ _catch_all = 'other' @@ -16048,7 +16206,7 @@ def limit(cls, val): ``val``. :param int val: - :rtype: UploadApiRateLimitValue + :rtype: team.UploadApiRateLimitValue """ return cls('limit', val) @@ -16125,7 +16283,7 @@ def __init__(self, @property def user(self): """ - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._user_present: return self._user_value @@ -16205,7 +16363,7 @@ def __init__(self, @property def user(self): """ - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ if self._user_present: return self._user_value @@ -16277,7 +16435,7 @@ def team_member_id(cls, val): value ``val``. :param str val: - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ return cls('team_member_id', val) @@ -16288,7 +16446,7 @@ def external_id(cls, val): value ``val``. :param str val: - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ return cls('external_id', val) @@ -16299,7 +16457,7 @@ def email(cls, val): ``val``. :param str val: - :rtype: UserSelectorArg + :rtype: team.UserSelectorArg """ return cls('email', val) @@ -16374,9 +16532,11 @@ class UsersSelectorArg(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar list of [str] team_member_ids: List of member IDs. - :ivar list of [str] external_ids: List of external user IDs. - :ivar list of [str] emails: List of email addresses. + :ivar list of [str] team.UsersSelectorArg.team_member_ids: List of member + IDs. + :ivar list of [str] team.UsersSelectorArg.external_ids: List of external + user IDs. + :ivar list of [str] team.UsersSelectorArg.emails: List of email addresses. """ _catch_all = None @@ -16388,7 +16548,7 @@ def team_member_ids(cls, val): value ``val``. :param list of [str] val: - :rtype: UsersSelectorArg + :rtype: team.UsersSelectorArg """ return cls('team_member_ids', val) @@ -16399,7 +16559,7 @@ def external_ids(cls, val): value ``val``. :param list of [str] val: - :rtype: UsersSelectorArg + :rtype: team.UsersSelectorArg """ return cls('external_ids', val) @@ -16410,7 +16570,7 @@ def emails(cls, val): ``val``. :param list of [str] val: - :rtype: UsersSelectorArg + :rtype: team.UsersSelectorArg """ return cls('emails', val) diff --git a/dropbox/team_common.py b/dropbox/team_common.py index 35a8cc3e..1ed4c124 100644 --- a/dropbox/team_common.py +++ b/dropbox/team_common.py @@ -27,9 +27,12 @@ class GroupManagementType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar user_managed: A group which is managed by selected users. - :ivar company_managed: A group which is managed by team admins only. - :ivar system_managed: A group which is managed automatically by Dropbox. + :ivar team_common.GroupManagementType.user_managed: A group which is managed + by selected users. + :ivar team_common.GroupManagementType.company_managed: A group which is + managed by team admins only. + :ivar team_common.GroupManagementType.system_managed: A group which is + managed automatically by Dropbox. """ _catch_all = 'other' @@ -86,10 +89,12 @@ class GroupSummary(bb.Struct): """ Information about a group. - :ivar group_external_id: External ID of group. This is an arbitrary ID that - an admin can attach to a group. - :ivar member_count: The number of members in the group. - :ivar group_management_type: Who is allowed to manage the group. + :ivar team_common.GroupSummary.group_external_id: External ID of group. This + is an arbitrary ID that an admin can attach to a group. + :ivar team_common.GroupSummary.member_count: The number of members in the + group. + :ivar team_common.GroupSummary.group_management_type: Who is allowed to + manage the group. """ __slots__ = [ @@ -234,7 +239,7 @@ def group_management_type(self): """ Who is allowed to manage the group. - :rtype: GroupManagementType + :rtype: team_common.GroupManagementType """ if self._group_management_type_present: return self._group_management_type_value @@ -274,9 +279,11 @@ class GroupType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar team: A group to which team members are automatically added. - Applicable to `team folders `_ only. - :ivar user_managed: A group is created and managed by a user. + :ivar team_common.GroupType.team: A group to which team members are + automatically added. Applicable to `team folders + `_ only. + :ivar team_common.GroupType.user_managed: A group is created and managed by + a user. """ _catch_all = 'other' @@ -327,11 +334,14 @@ class MemberSpaceLimitType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar off: The team member does not have imposed space limit. - :ivar alert_only: The team member has soft imposed space limit - the limit - is used for display and for notifications. - :ivar stop_sync: The team member has hard imposed space limit - Dropbox file - sync will stop after the limit is reached. + :ivar team_common.MemberSpaceLimitType.off: The team member does not have + imposed space limit. + :ivar team_common.MemberSpaceLimitType.alert_only: The team member has soft + imposed space limit - the limit is used for display and for + notifications. + :ivar team_common.MemberSpaceLimitType.stop_sync: The team member has hard + imposed space limit - Dropbox file sync will stop after the limit is + reached. """ _catch_all = 'other' @@ -388,8 +398,8 @@ class TimeRange(bb.Struct): """ Time range. - :ivar start_time: Optional starting time (inclusive). - :ivar end_time: Optional ending time (exclusive). + :ivar team_common.TimeRange.start_time: Optional starting time (inclusive). + :ivar team_common.TimeRange.end_time: Optional ending time (exclusive). """ __slots__ = [ diff --git a/dropbox/team_log.py b/dropbox/team_log.py index 016d0499..42968738 100644 --- a/dropbox/team_log.py +++ b/dropbox/team_log.py @@ -41,11 +41,16 @@ class AccessMethodLogInfo(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar SessionLogInfo end_user: End user session details. - :ivar WebSessionLogInfo sign_in_as: Sign in as session details. - :ivar WebSessionLogInfo content_manager: Content manager session details. - :ivar WebSessionLogInfo admin_console: Admin console session details. - :ivar ApiSessionLogInfo api: Api session details. + :ivar SessionLogInfo team_log.AccessMethodLogInfo.end_user: End user session + details. + :ivar WebSessionLogInfo team_log.AccessMethodLogInfo.sign_in_as: Sign in as + session details. + :ivar WebSessionLogInfo team_log.AccessMethodLogInfo.content_manager: + Content manager session details. + :ivar WebSessionLogInfo team_log.AccessMethodLogInfo.admin_console: Admin + console session details. + :ivar ApiSessionLogInfo team_log.AccessMethodLogInfo.api: Api session + details. """ _catch_all = 'other' @@ -58,8 +63,8 @@ def end_user(cls, val): Create an instance of this class set to the ``end_user`` tag with value ``val``. - :param SessionLogInfo val: - :rtype: AccessMethodLogInfo + :param team_log.SessionLogInfo val: + :rtype: team_log.AccessMethodLogInfo """ return cls('end_user', val) @@ -69,8 +74,8 @@ def sign_in_as(cls, val): Create an instance of this class set to the ``sign_in_as`` tag with value ``val``. - :param WebSessionLogInfo val: - :rtype: AccessMethodLogInfo + :param team_log.WebSessionLogInfo val: + :rtype: team_log.AccessMethodLogInfo """ return cls('sign_in_as', val) @@ -80,8 +85,8 @@ def content_manager(cls, val): Create an instance of this class set to the ``content_manager`` tag with value ``val``. - :param WebSessionLogInfo val: - :rtype: AccessMethodLogInfo + :param team_log.WebSessionLogInfo val: + :rtype: team_log.AccessMethodLogInfo """ return cls('content_manager', val) @@ -91,8 +96,8 @@ def admin_console(cls, val): Create an instance of this class set to the ``admin_console`` tag with value ``val``. - :param WebSessionLogInfo val: - :rtype: AccessMethodLogInfo + :param team_log.WebSessionLogInfo val: + :rtype: team_log.AccessMethodLogInfo """ return cls('admin_console', val) @@ -102,8 +107,8 @@ def api(cls, val): Create an instance of this class set to the ``api`` tag with value ``val``. - :param ApiSessionLogInfo val: - :rtype: AccessMethodLogInfo + :param team_log.ApiSessionLogInfo val: + :rtype: team_log.AccessMethodLogInfo """ return cls('api', val) @@ -161,7 +166,7 @@ def get_end_user(self): Only call this if :meth:`is_end_user` is true. - :rtype: SessionLogInfo + :rtype: team_log.SessionLogInfo """ if not self.is_end_user(): raise AttributeError("tag 'end_user' not set") @@ -173,7 +178,7 @@ def get_sign_in_as(self): Only call this if :meth:`is_sign_in_as` is true. - :rtype: WebSessionLogInfo + :rtype: team_log.WebSessionLogInfo """ if not self.is_sign_in_as(): raise AttributeError("tag 'sign_in_as' not set") @@ -185,7 +190,7 @@ def get_content_manager(self): Only call this if :meth:`is_content_manager` is true. - :rtype: WebSessionLogInfo + :rtype: team_log.WebSessionLogInfo """ if not self.is_content_manager(): raise AttributeError("tag 'content_manager' not set") @@ -197,7 +202,7 @@ def get_admin_console(self): Only call this if :meth:`is_admin_console` is true. - :rtype: WebSessionLogInfo + :rtype: team_log.WebSessionLogInfo """ if not self.is_admin_console(): raise AttributeError("tag 'admin_console' not set") @@ -209,7 +214,7 @@ def get_api(self): Only call this if :meth:`is_api` is true. - :rtype: ApiSessionLogInfo + :rtype: team_log.ApiSessionLogInfo """ if not self.is_api(): raise AttributeError("tag 'api' not set") @@ -274,9 +279,11 @@ class AccountCaptureChangeAvailabilityDetails(bb.Struct): """ Granted/revoked option to enable account capture on team domains. - :ivar new_value: New account capture availabilty value. - :ivar previous_value: Previous account capture availabilty value. Might be - missing due to historical data gap. + :ivar team_log.AccountCaptureChangeAvailabilityDetails.new_value: New + account capture availabilty value. + :ivar team_log.AccountCaptureChangeAvailabilityDetails.previous_value: + Previous account capture availabilty value. Might be missing due to + historical data gap. """ __slots__ = [ @@ -305,7 +312,7 @@ def new_value(self): """ New account capture availabilty value. - :rtype: AccountCaptureAvailability + :rtype: team_log.AccountCaptureAvailability """ if self._new_value_present: return self._new_value_value @@ -329,7 +336,7 @@ def previous_value(self): Previous account capture availabilty value. Might be missing due to historical data gap. - :rtype: AccountCaptureAvailability + :rtype: team_log.AccountCaptureAvailability """ if self._previous_value_present: return self._previous_value_value @@ -412,9 +419,10 @@ class AccountCaptureChangePolicyDetails(bb.Struct): """ Changed account capture setting on team domain. - :ivar new_value: New account capture policy. - :ivar previous_value: Previous account capture policy. Might be missing due - to historical data gap. + :ivar team_log.AccountCaptureChangePolicyDetails.new_value: New account + capture policy. + :ivar team_log.AccountCaptureChangePolicyDetails.previous_value: Previous + account capture policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -443,7 +451,7 @@ def new_value(self): """ New account capture policy. - :rtype: AccountCapturePolicy + :rtype: team_log.AccountCapturePolicy """ if self._new_value_present: return self._new_value_value @@ -467,7 +475,7 @@ def previous_value(self): Previous account capture policy. Might be missing due to historical data gap. - :rtype: AccountCapturePolicy + :rtype: team_log.AccountCapturePolicy """ if self._previous_value_present: return self._previous_value_value @@ -550,7 +558,7 @@ class AccountCaptureMigrateAccountDetails(bb.Struct): """ Account-captured user migrated account to team. - :ivar domain_name: Domain name. + :ivar team_log.AccountCaptureMigrateAccountDetails.domain_name: Domain name. """ __slots__ = [ @@ -651,7 +659,8 @@ class AccountCaptureNotificationEmailsSentDetails(bb.Struct): """ Sent proactive account capture email to all unmanaged members. - :ivar domain_name: Domain name. + :ivar team_log.AccountCaptureNotificationEmailsSentDetails.domain_name: + Domain name. """ __slots__ = [ @@ -809,7 +818,8 @@ class AccountCaptureRelinquishAccountDetails(bb.Struct): """ Account-captured user changed account email to personal email. - :ivar domain_name: Domain name. + :ivar team_log.AccountCaptureRelinquishAccountDetails.domain_name: Domain + name. """ __slots__ = [ @@ -915,10 +925,10 @@ class ActionDetails(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar JoinTeamDetails team_join_details: Additional information relevant - when a new member joins the team. - :ivar MemberRemoveActionType remove_action: Define how the user was removed - from the team. + :ivar JoinTeamDetails team_log.ActionDetails.team_join_details: Additional + information relevant when a new member joins the team. + :ivar MemberRemoveActionType team_log.ActionDetails.remove_action: Define + how the user was removed from the team. """ _catch_all = 'other' @@ -931,8 +941,8 @@ def team_join_details(cls, val): Create an instance of this class set to the ``team_join_details`` tag with value ``val``. - :param JoinTeamDetails val: - :rtype: ActionDetails + :param team_log.JoinTeamDetails val: + :rtype: team_log.ActionDetails """ return cls('team_join_details', val) @@ -942,8 +952,8 @@ def remove_action(cls, val): Create an instance of this class set to the ``remove_action`` tag with value ``val``. - :param MemberRemoveActionType val: - :rtype: ActionDetails + :param team_log.MemberRemoveActionType val: + :rtype: team_log.ActionDetails """ return cls('remove_action', val) @@ -977,7 +987,7 @@ def get_team_join_details(self): Only call this if :meth:`is_team_join_details` is true. - :rtype: JoinTeamDetails + :rtype: team_log.JoinTeamDetails """ if not self.is_team_join_details(): raise AttributeError("tag 'team_join_details' not set") @@ -989,7 +999,7 @@ def get_remove_action(self): Only call this if :meth:`is_remove_action` is true. - :rtype: MemberRemoveActionType + :rtype: team_log.MemberRemoveActionType """ if not self.is_remove_action(): raise AttributeError("tag 'remove_action' not set") @@ -1011,12 +1021,14 @@ class ActorLogInfo(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar UserLogInfo user: The user who did the action. - :ivar UserLogInfo admin: The admin who did the action. - :ivar AppLogInfo app: The application who did the action. - :ivar ResellerLogInfo reseller: Action done by reseller. - :ivar dropbox: Action done by Dropbox. - :ivar anonymous: Anonymous actor. + :ivar UserLogInfo team_log.ActorLogInfo.user: The user who did the action. + :ivar UserLogInfo team_log.ActorLogInfo.admin: The admin who did the action. + :ivar AppLogInfo team_log.ActorLogInfo.app: The application who did the + action. + :ivar ResellerLogInfo team_log.ActorLogInfo.reseller: Action done by + reseller. + :ivar team_log.ActorLogInfo.dropbox: Action done by Dropbox. + :ivar team_log.ActorLogInfo.anonymous: Anonymous actor. """ _catch_all = 'other' @@ -1033,8 +1045,8 @@ def user(cls, val): Create an instance of this class set to the ``user`` tag with value ``val``. - :param UserLogInfo val: - :rtype: ActorLogInfo + :param team_log.UserLogInfo val: + :rtype: team_log.ActorLogInfo """ return cls('user', val) @@ -1044,8 +1056,8 @@ def admin(cls, val): Create an instance of this class set to the ``admin`` tag with value ``val``. - :param UserLogInfo val: - :rtype: ActorLogInfo + :param team_log.UserLogInfo val: + :rtype: team_log.ActorLogInfo """ return cls('admin', val) @@ -1055,8 +1067,8 @@ def app(cls, val): Create an instance of this class set to the ``app`` tag with value ``val``. - :param AppLogInfo val: - :rtype: ActorLogInfo + :param team_log.AppLogInfo val: + :rtype: team_log.ActorLogInfo """ return cls('app', val) @@ -1066,8 +1078,8 @@ def reseller(cls, val): Create an instance of this class set to the ``reseller`` tag with value ``val``. - :param ResellerLogInfo val: - :rtype: ActorLogInfo + :param team_log.ResellerLogInfo val: + :rtype: team_log.ActorLogInfo """ return cls('reseller', val) @@ -1133,7 +1145,7 @@ def get_user(self): Only call this if :meth:`is_user` is true. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if not self.is_user(): raise AttributeError("tag 'user' not set") @@ -1145,7 +1157,7 @@ def get_admin(self): Only call this if :meth:`is_admin` is true. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if not self.is_admin(): raise AttributeError("tag 'admin' not set") @@ -1157,7 +1169,7 @@ def get_app(self): Only call this if :meth:`is_app` is true. - :rtype: AppLogInfo + :rtype: team_log.AppLogInfo """ if not self.is_app(): raise AttributeError("tag 'app' not set") @@ -1169,7 +1181,7 @@ def get_reseller(self): Only call this if :meth:`is_reseller` is true. - :rtype: ResellerLogInfo + :rtype: team_log.ResellerLogInfo """ if not self.is_reseller(): raise AttributeError("tag 'reseller' not set") @@ -1400,7 +1412,7 @@ class ApiSessionLogInfo(bb.Struct): """ Api session. - :ivar request_id: Api request ID. + :ivar team_log.ApiSessionLogInfo.request_id: Api request ID. """ __slots__ = [ @@ -1454,7 +1466,7 @@ class AppLinkTeamDetails(bb.Struct): """ Linked app for team. - :ivar app_info: Relevant application details. + :ivar team_log.AppLinkTeamDetails.app_info: Relevant application details. """ __slots__ = [ @@ -1476,7 +1488,7 @@ def app_info(self): """ Relevant application details. - :rtype: AppLogInfo + :rtype: team_log.AppLogInfo """ if self._app_info_present: return self._app_info_value @@ -1555,7 +1567,7 @@ class AppLinkUserDetails(bb.Struct): """ Linked app for member. - :ivar app_info: Relevant application details. + :ivar team_log.AppLinkUserDetails.app_info: Relevant application details. """ __slots__ = [ @@ -1577,7 +1589,7 @@ def app_info(self): """ Relevant application details. - :rtype: AppLogInfo + :rtype: team_log.AppLogInfo """ if self._app_info_present: return self._app_info_value @@ -1656,9 +1668,10 @@ class AppLogInfo(bb.Struct): """ App's logged information. - :ivar app_id: App unique ID. Might be missing due to historical data gap. - :ivar display_name: App display name. Might be missing due to historical - data gap. + :ivar team_log.AppLogInfo.app_id: App unique ID. Might be missing due to + historical data gap. + :ivar team_log.AppLogInfo.display_name: App display name. Might be missing + due to historical data gap. """ __slots__ = [ @@ -1749,7 +1762,7 @@ class AppUnlinkTeamDetails(bb.Struct): """ Unlinked app for team. - :ivar app_info: Relevant application details. + :ivar team_log.AppUnlinkTeamDetails.app_info: Relevant application details. """ __slots__ = [ @@ -1771,7 +1784,7 @@ def app_info(self): """ Relevant application details. - :rtype: AppLogInfo + :rtype: team_log.AppLogInfo """ if self._app_info_present: return self._app_info_value @@ -1850,7 +1863,7 @@ class AppUnlinkUserDetails(bb.Struct): """ Unlinked app for member. - :ivar app_info: Relevant application details. + :ivar team_log.AppUnlinkUserDetails.app_info: Relevant application details. """ __slots__ = [ @@ -1872,7 +1885,7 @@ def app_info(self): """ Relevant application details. - :rtype: AppLogInfo + :rtype: team_log.AppLogInfo """ if self._app_info_present: return self._app_info_value @@ -1955,12 +1968,14 @@ class AssetLogInfo(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar FileLogInfo file: File's details. - :ivar FolderLogInfo folder: Folder's details. - :ivar PaperDocumentLogInfo paper_document: Paper docuement's details. - :ivar PaperFolderLogInfo paper_folder: Paper folder's details. - :ivar ShowcaseDocumentLogInfo showcase_document: Showcase document's + :ivar FileLogInfo team_log.AssetLogInfo.file: File's details. + :ivar FolderLogInfo team_log.AssetLogInfo.folder: Folder's details. + :ivar PaperDocumentLogInfo team_log.AssetLogInfo.paper_document: Paper + docuement's details. + :ivar PaperFolderLogInfo team_log.AssetLogInfo.paper_folder: Paper folder's details. + :ivar ShowcaseDocumentLogInfo team_log.AssetLogInfo.showcase_document: + Showcase document's details. """ _catch_all = 'other' @@ -1973,8 +1988,8 @@ def file(cls, val): Create an instance of this class set to the ``file`` tag with value ``val``. - :param FileLogInfo val: - :rtype: AssetLogInfo + :param team_log.FileLogInfo val: + :rtype: team_log.AssetLogInfo """ return cls('file', val) @@ -1984,8 +1999,8 @@ def folder(cls, val): Create an instance of this class set to the ``folder`` tag with value ``val``. - :param FolderLogInfo val: - :rtype: AssetLogInfo + :param team_log.FolderLogInfo val: + :rtype: team_log.AssetLogInfo """ return cls('folder', val) @@ -1995,8 +2010,8 @@ def paper_document(cls, val): Create an instance of this class set to the ``paper_document`` tag with value ``val``. - :param PaperDocumentLogInfo val: - :rtype: AssetLogInfo + :param team_log.PaperDocumentLogInfo val: + :rtype: team_log.AssetLogInfo """ return cls('paper_document', val) @@ -2006,8 +2021,8 @@ def paper_folder(cls, val): Create an instance of this class set to the ``paper_folder`` tag with value ``val``. - :param PaperFolderLogInfo val: - :rtype: AssetLogInfo + :param team_log.PaperFolderLogInfo val: + :rtype: team_log.AssetLogInfo """ return cls('paper_folder', val) @@ -2017,8 +2032,8 @@ def showcase_document(cls, val): Create an instance of this class set to the ``showcase_document`` tag with value ``val``. - :param ShowcaseDocumentLogInfo val: - :rtype: AssetLogInfo + :param team_log.ShowcaseDocumentLogInfo val: + :rtype: team_log.AssetLogInfo """ return cls('showcase_document', val) @@ -2076,7 +2091,7 @@ def get_file(self): Only call this if :meth:`is_file` is true. - :rtype: FileLogInfo + :rtype: team_log.FileLogInfo """ if not self.is_file(): raise AttributeError("tag 'file' not set") @@ -2088,7 +2103,7 @@ def get_folder(self): Only call this if :meth:`is_folder` is true. - :rtype: FolderLogInfo + :rtype: team_log.FolderLogInfo """ if not self.is_folder(): raise AttributeError("tag 'folder' not set") @@ -2100,7 +2115,7 @@ def get_paper_document(self): Only call this if :meth:`is_paper_document` is true. - :rtype: PaperDocumentLogInfo + :rtype: team_log.PaperDocumentLogInfo """ if not self.is_paper_document(): raise AttributeError("tag 'paper_document' not set") @@ -2112,7 +2127,7 @@ def get_paper_folder(self): Only call this if :meth:`is_paper_folder` is true. - :rtype: PaperFolderLogInfo + :rtype: team_log.PaperFolderLogInfo """ if not self.is_paper_folder(): raise AttributeError("tag 'paper_folder' not set") @@ -2124,7 +2139,7 @@ def get_showcase_document(self): Only call this if :meth:`is_showcase_document` is true. - :rtype: ShowcaseDocumentLogInfo + :rtype: team_log.ShowcaseDocumentLogInfo """ if not self.is_showcase_document(): raise AttributeError("tag 'showcase_document' not set") @@ -2191,8 +2206,10 @@ class CameraUploadsPolicyChangedDetails(bb.Struct): """ Changed camera uploads setting for team. - :ivar new_value: New camera uploads setting. - :ivar previous_value: Previous camera uploads setting. + :ivar team_log.CameraUploadsPolicyChangedDetails.new_value: New camera + uploads setting. + :ivar team_log.CameraUploadsPolicyChangedDetails.previous_value: Previous + camera uploads setting. """ __slots__ = [ @@ -2221,7 +2238,7 @@ def new_value(self): """ New camera uploads setting. - :rtype: CameraUploadsPolicy + :rtype: team_log.CameraUploadsPolicy """ if self._new_value_present: return self._new_value_value @@ -2244,7 +2261,7 @@ def previous_value(self): """ Previous camera uploads setting. - :rtype: CameraUploadsPolicy + :rtype: team_log.CameraUploadsPolicy """ if self._previous_value_present: return self._previous_value_value @@ -2324,13 +2341,13 @@ class Certificate(bb.Struct): """ Certificate details. - :ivar subject: Certificate subject. - :ivar issuer: Certificate issuer. - :ivar issue_date: Certificate issue date. - :ivar expiration_date: Certificate expiration date. - :ivar serial_number: Certificate serial number. - :ivar sha1_fingerprint: Certificate sha1 fingerprint. - :ivar common_name: Certificate common name. + :ivar team_log.Certificate.subject: Certificate subject. + :ivar team_log.Certificate.issuer: Certificate issuer. + :ivar team_log.Certificate.issue_date: Certificate issue date. + :ivar team_log.Certificate.expiration_date: Certificate expiration date. + :ivar team_log.Certificate.serial_number: Certificate serial number. + :ivar team_log.Certificate.sha1_fingerprint: Certificate sha1 fingerprint. + :ivar team_log.Certificate.common_name: Certificate common name. """ __slots__ = [ @@ -2573,7 +2590,7 @@ class CollectionShareDetails(bb.Struct): """ Shared album. - :ivar album_name: Album name. + :ivar team_log.CollectionShareDetails.album_name: Album name. """ __slots__ = [ @@ -2727,14 +2744,15 @@ class ContextLogInfo(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar TeamMemberLogInfo team_member: Action was done on behalf of a team - member. - :ivar NonTeamMemberLogInfo non_team_member: Action was done on behalf of a - non team member. - :ivar anonymous: Anonymous context. - :ivar team: Action was done on behalf of the team. - :ivar TrustedNonTeamMemberLogInfo trusted_non_team_member: Action was done - on behalf of a trusted non team member. + :ivar TeamMemberLogInfo team_log.ContextLogInfo.team_member: Action was done + on behalf of a team member. + :ivar NonTeamMemberLogInfo team_log.ContextLogInfo.non_team_member: Action + was done on behalf of a non team member. + :ivar team_log.ContextLogInfo.anonymous: Anonymous context. + :ivar team_log.ContextLogInfo.team: Action was done on behalf of the team. + :ivar TrustedNonTeamMemberLogInfo + team_log.ContextLogInfo.trusted_non_team_member: Action was done on + behalf of a trusted non team member. """ _catch_all = 'other' @@ -2751,8 +2769,8 @@ def team_member(cls, val): Create an instance of this class set to the ``team_member`` tag with value ``val``. - :param TeamMemberLogInfo val: - :rtype: ContextLogInfo + :param team_log.TeamMemberLogInfo val: + :rtype: team_log.ContextLogInfo """ return cls('team_member', val) @@ -2762,8 +2780,8 @@ def non_team_member(cls, val): Create an instance of this class set to the ``non_team_member`` tag with value ``val``. - :param NonTeamMemberLogInfo val: - :rtype: ContextLogInfo + :param team_log.NonTeamMemberLogInfo val: + :rtype: team_log.ContextLogInfo """ return cls('non_team_member', val) @@ -2773,8 +2791,8 @@ def trusted_non_team_member(cls, val): Create an instance of this class set to the ``trusted_non_team_member`` tag with value ``val``. - :param TrustedNonTeamMemberLogInfo val: - :rtype: ContextLogInfo + :param team_log.TrustedNonTeamMemberLogInfo val: + :rtype: team_log.ContextLogInfo """ return cls('trusted_non_team_member', val) @@ -2832,7 +2850,7 @@ def get_team_member(self): Only call this if :meth:`is_team_member` is true. - :rtype: TeamMemberLogInfo + :rtype: team_log.TeamMemberLogInfo """ if not self.is_team_member(): raise AttributeError("tag 'team_member' not set") @@ -2844,7 +2862,7 @@ def get_non_team_member(self): Only call this if :meth:`is_non_team_member` is true. - :rtype: NonTeamMemberLogInfo + :rtype: team_log.NonTeamMemberLogInfo """ if not self.is_non_team_member(): raise AttributeError("tag 'non_team_member' not set") @@ -2856,7 +2874,7 @@ def get_trusted_non_team_member(self): Only call this if :meth:`is_trusted_non_team_member` is true. - :rtype: TrustedNonTeamMemberLogInfo + :rtype: team_log.TrustedNonTeamMemberLogInfo """ if not self.is_trusted_non_team_member(): raise AttributeError("tag 'trusted_non_team_member' not set") @@ -2942,8 +2960,10 @@ class DataPlacementRestrictionChangePolicyDetails(bb.Struct): """ Set restrictions on data center locations where team data resides. - :ivar previous_value: Previous placement restriction. - :ivar new_value: New placement restriction. + :ivar team_log.DataPlacementRestrictionChangePolicyDetails.previous_value: + Previous placement restriction. + :ivar team_log.DataPlacementRestrictionChangePolicyDetails.new_value: New + placement restriction. """ __slots__ = [ @@ -2972,7 +2992,7 @@ def previous_value(self): """ Previous placement restriction. - :rtype: PlacementRestriction + :rtype: team_log.PlacementRestriction """ if self._previous_value_present: return self._previous_value_value @@ -2995,7 +3015,7 @@ def new_value(self): """ New placement restriction. - :rtype: PlacementRestriction + :rtype: team_log.PlacementRestriction """ if self._new_value_present: return self._new_value_value @@ -3075,7 +3095,9 @@ class DataPlacementRestrictionSatisfyPolicyDetails(bb.Struct): """ Completed restrictions on data center locations where team data resides. - :ivar placement_restriction: Placement restriction. + :ivar + team_log.DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction: + Placement restriction. """ __slots__ = [ @@ -3097,7 +3119,7 @@ def placement_restriction(self): """ Placement restriction. - :rtype: PlacementRestriction + :rtype: team_log.PlacementRestriction """ if self._placement_restriction_present: return self._placement_restriction_value @@ -3176,12 +3198,12 @@ class DeviceSessionLogInfo(bb.Struct): """ Device's session logged information. - :ivar ip_address: The IP address of the last activity from this session. - Might be missing due to historical data gap. - :ivar created: The time this session was created. Might be missing due to - historical data gap. - :ivar updated: The time of the last activity from this session. Might be - missing due to historical data gap. + :ivar team_log.DeviceSessionLogInfo.ip_address: The IP address of the last + activity from this session. Might be missing due to historical data gap. + :ivar team_log.DeviceSessionLogInfo.created: The time this session was + created. Might be missing due to historical data gap. + :ivar team_log.DeviceSessionLogInfo.updated: The time of the last activity + from this session. Might be missing due to historical data gap. """ __slots__ = [ @@ -3309,14 +3331,19 @@ class DesktopDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information about linked Dropbox desktop client sessions - :ivar session_info: Desktop session unique id. Might be missing due to - historical data gap. - :ivar host_name: Name of the hosting desktop. - :ivar client_type: The Dropbox desktop client type. - :ivar client_version: The Dropbox client version. - :ivar platform: Information on the hosting platform. - :ivar is_delete_on_unlink_supported: Whether itu2019s possible to delete all - of the account files upon unlinking. + :ivar team_log.DesktopDeviceSessionLogInfo.session_info: Desktop session + unique id. Might be missing due to historical data gap. + :ivar team_log.DesktopDeviceSessionLogInfo.host_name: Name of the hosting + desktop. + :ivar team_log.DesktopDeviceSessionLogInfo.client_type: The Dropbox desktop + client type. + :ivar team_log.DesktopDeviceSessionLogInfo.client_version: The Dropbox + client version. + :ivar team_log.DesktopDeviceSessionLogInfo.platform: Information on the + hosting platform. + :ivar team_log.DesktopDeviceSessionLogInfo.is_delete_on_unlink_supported: + Whether itu2019s possible to delete all of the account files upon + unlinking. """ __slots__ = [ @@ -3379,7 +3406,7 @@ def session_info(self): """ Desktop session unique id. Might be missing due to historical data gap. - :rtype: DesktopSessionLogInfo + :rtype: team_log.DesktopSessionLogInfo """ if self._session_info_present: return self._session_info_value @@ -3541,7 +3568,8 @@ class SessionLogInfo(bb.Struct): """ Session's logged information. - :ivar session_id: Session ID. Might be missing due to historical data gap. + :ivar team_log.SessionLogInfo.session_id: Session ID. Might be missing due + to historical data gap. """ __slots__ = [ @@ -3623,10 +3651,12 @@ class DeviceApprovalsChangeDesktopPolicyDetails(bb.Struct): Set/removed limit on number of computers member can link to team Dropbox account. - :ivar new_value: New desktop device approvals policy. Might be missing due - to historical data gap. - :ivar previous_value: Previous desktop device approvals policy. Might be - missing due to historical data gap. + :ivar team_log.DeviceApprovalsChangeDesktopPolicyDetails.new_value: New + desktop device approvals policy. Might be missing due to historical data + gap. + :ivar team_log.DeviceApprovalsChangeDesktopPolicyDetails.previous_value: + Previous desktop device approvals policy. Might be missing due to + historical data gap. """ __slots__ = [ @@ -3656,7 +3686,7 @@ def new_value(self): New desktop device approvals policy. Might be missing due to historical data gap. - :rtype: DeviceApprovalsPolicy + :rtype: team_log.DeviceApprovalsPolicy """ if self._new_value_present: return self._new_value_value @@ -3683,7 +3713,7 @@ def previous_value(self): Previous desktop device approvals policy. Might be missing due to historical data gap. - :rtype: DeviceApprovalsPolicy + :rtype: team_log.DeviceApprovalsPolicy """ if self._previous_value_present: return self._previous_value_value @@ -3767,10 +3797,12 @@ class DeviceApprovalsChangeMobilePolicyDetails(bb.Struct): Set/removed limit on number of mobile devices member can link to team Dropbox account. - :ivar new_value: New mobile device approvals policy. Might be missing due to + :ivar team_log.DeviceApprovalsChangeMobilePolicyDetails.new_value: New + mobile device approvals policy. Might be missing due to historical data + gap. + :ivar team_log.DeviceApprovalsChangeMobilePolicyDetails.previous_value: + Previous mobile device approvals policy. Might be missing due to historical data gap. - :ivar previous_value: Previous mobile device approvals policy. Might be - missing due to historical data gap. """ __slots__ = [ @@ -3800,7 +3832,7 @@ def new_value(self): New mobile device approvals policy. Might be missing due to historical data gap. - :rtype: DeviceApprovalsPolicy + :rtype: team_log.DeviceApprovalsPolicy """ if self._new_value_present: return self._new_value_value @@ -3827,7 +3859,7 @@ def previous_value(self): Previous mobile device approvals policy. Might be missing due to historical data gap. - :rtype: DeviceApprovalsPolicy + :rtype: team_log.DeviceApprovalsPolicy """ if self._previous_value_present: return self._previous_value_value @@ -3910,10 +3942,11 @@ class DeviceApprovalsChangeOverageActionDetails(bb.Struct): """ Changed device approvals setting when member is over limit. - :ivar new_value: New over the limits policy. Might be missing due to - historical data gap. - :ivar previous_value: Previous over the limit policy. Might be missing due - to historical data gap. + :ivar team_log.DeviceApprovalsChangeOverageActionDetails.new_value: New over + the limits policy. Might be missing due to historical data gap. + :ivar team_log.DeviceApprovalsChangeOverageActionDetails.previous_value: + Previous over the limit policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -4052,10 +4085,11 @@ class DeviceApprovalsChangeUnlinkActionDetails(bb.Struct): """ Changed device approvals setting when member unlinks approved device. - :ivar new_value: New device unlink policy. Might be missing due to - historical data gap. - :ivar previous_value: Previous device unlink policy. Might be missing due to - historical data gap. + :ivar team_log.DeviceApprovalsChangeUnlinkActionDetails.new_value: New + device unlink policy. Might be missing due to historical data gap. + :ivar team_log.DeviceApprovalsChangeUnlinkActionDetails.previous_value: + Previous device unlink policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -4084,7 +4118,7 @@ def new_value(self): """ New device unlink policy. Might be missing due to historical data gap. - :rtype: DeviceUnlinkPolicy + :rtype: team_log.DeviceUnlinkPolicy """ if self._new_value_present: return self._new_value_value @@ -4111,7 +4145,7 @@ def previous_value(self): Previous device unlink policy. Might be missing due to historical data gap. - :rtype: DeviceUnlinkPolicy + :rtype: team_log.DeviceUnlinkPolicy """ if self._previous_value_present: return self._previous_value_value @@ -4241,7 +4275,8 @@ class DeviceChangeIpDesktopDetails(bb.Struct): """ Changed IP address associated with active desktop session. - :ivar device_session_info: Device's session logged information. + :ivar team_log.DeviceChangeIpDesktopDetails.device_session_info: Device's + session logged information. """ __slots__ = [ @@ -4263,7 +4298,7 @@ def device_session_info(self): """ Device's session logged information. - :rtype: DeviceSessionLogInfo + :rtype: team_log.DeviceSessionLogInfo """ if self._device_session_info_present: return self._device_session_info_value @@ -4342,7 +4377,8 @@ class DeviceChangeIpMobileDetails(bb.Struct): """ Changed IP address associated with active mobile session. - :ivar device_session_info: Device's session logged information. + :ivar team_log.DeviceChangeIpMobileDetails.device_session_info: Device's + session logged information. """ __slots__ = [ @@ -4364,7 +4400,7 @@ def device_session_info(self): """ Device's session logged information. - :rtype: DeviceSessionLogInfo + :rtype: team_log.DeviceSessionLogInfo """ if self._device_session_info_present: return self._device_session_info_value @@ -4446,7 +4482,7 @@ class DeviceChangeIpWebDetails(bb.Struct): """ Changed IP address associated with active web session. - :ivar user_agent: Web browser name. + :ivar team_log.DeviceChangeIpWebDetails.user_agent: Web browser name. """ __slots__ = [ @@ -4547,11 +4583,12 @@ class DeviceDeleteOnUnlinkFailDetails(bb.Struct): """ Failed to delete all files from unlinked device. - :ivar session_info: Session unique id. Might be missing due to historical - data gap. - :ivar display_name: The device name. Might be missing due to historical data - gap. - :ivar num_failures: The number of times that remote file deletion failed. + :ivar team_log.DeviceDeleteOnUnlinkFailDetails.session_info: Session unique + id. Might be missing due to historical data gap. + :ivar team_log.DeviceDeleteOnUnlinkFailDetails.display_name: The device + name. Might be missing due to historical data gap. + :ivar team_log.DeviceDeleteOnUnlinkFailDetails.num_failures: The number of + times that remote file deletion failed. """ __slots__ = [ @@ -4587,7 +4624,7 @@ def session_info(self): """ Session unique id. Might be missing due to historical data gap. - :rtype: SessionLogInfo + :rtype: team_log.SessionLogInfo """ if self._session_info_present: return self._session_info_value @@ -4720,10 +4757,10 @@ class DeviceDeleteOnUnlinkSuccessDetails(bb.Struct): """ Deleted all files from unlinked device. - :ivar session_info: Session unique id. Might be missing due to historical - data gap. - :ivar display_name: The device name. Might be missing due to historical data - gap. + :ivar team_log.DeviceDeleteOnUnlinkSuccessDetails.session_info: Session + unique id. Might be missing due to historical data gap. + :ivar team_log.DeviceDeleteOnUnlinkSuccessDetails.display_name: The device + name. Might be missing due to historical data gap. """ __slots__ = [ @@ -4752,7 +4789,7 @@ def session_info(self): """ Session unique id. Might be missing due to historical data gap. - :rtype: SessionLogInfo + :rtype: team_log.SessionLogInfo """ if self._session_info_present: return self._session_info_value @@ -4861,9 +4898,10 @@ class DeviceLinkFailDetails(bb.Struct): """ Failed to link device. - :ivar ip_address: IP address. Might be missing due to historical data gap. - :ivar device_type: A description of the device used while user approval - blocked. + :ivar team_log.DeviceLinkFailDetails.ip_address: IP address. Might be + missing due to historical data gap. + :ivar team_log.DeviceLinkFailDetails.device_type: A description of the + device used while user approval blocked. """ __slots__ = [ @@ -4918,7 +4956,7 @@ def device_type(self): """ A description of the device used while user approval blocked. - :rtype: DeviceType + :rtype: team_log.DeviceType """ if self._device_type_present: return self._device_type_value @@ -4998,7 +5036,8 @@ class DeviceLinkSuccessDetails(bb.Struct): """ Linked device. - :ivar device_session_info: Device's session logged information. + :ivar team_log.DeviceLinkSuccessDetails.device_session_info: Device's + session logged information. """ __slots__ = [ @@ -5020,7 +5059,7 @@ def device_session_info(self): """ Device's session logged information. - :rtype: DeviceSessionLogInfo + :rtype: team_log.DeviceSessionLogInfo """ if self._device_session_info_present: return self._device_session_info_value @@ -5285,11 +5324,11 @@ class DeviceUnlinkDetails(bb.Struct): """ Disconnected device. - :ivar session_info: Session unique id. - :ivar display_name: The device name. Might be missing due to historical data - gap. - :ivar delete_data: True if the user requested to delete data after device - unlink, false otherwise. + :ivar team_log.DeviceUnlinkDetails.session_info: Session unique id. + :ivar team_log.DeviceUnlinkDetails.display_name: The device name. Might be + missing due to historical data gap. + :ivar team_log.DeviceUnlinkDetails.delete_data: True if the user requested + to delete data after device unlink, false otherwise. """ __slots__ = [ @@ -5325,7 +5364,7 @@ def session_info(self): """ Session unique id. - :rtype: SessionLogInfo + :rtype: team_log.SessionLogInfo """ if self._session_info_present: return self._session_info_value @@ -5846,8 +5885,10 @@ class DomainInvitesEmailExistingUsersDetails(bb.Struct): """ Sent domain invites to existing domain accounts. - :ivar domain_name: Domain names. - :ivar num_recipients: Number of recipients. + :ivar team_log.DomainInvitesEmailExistingUsersDetails.domain_name: Domain + names. + :ivar team_log.DomainInvitesEmailExistingUsersDetails.num_recipients: Number + of recipients. """ __slots__ = [ @@ -6183,9 +6224,11 @@ class DomainVerificationAddDomainFailDetails(bb.Struct): """ Failed to verify team domain. - :ivar domain_name: Domain name. - :ivar verification_method: Domain name verification method. Might be missing - due to historical data gap. + :ivar team_log.DomainVerificationAddDomainFailDetails.domain_name: Domain + name. + :ivar team_log.DomainVerificationAddDomainFailDetails.verification_method: + Domain name verification method. Might be missing due to historical data + gap. """ __slots__ = [ @@ -6321,9 +6364,12 @@ class DomainVerificationAddDomainSuccessDetails(bb.Struct): """ Verified team domain. - :ivar domain_names: Domain names. - :ivar verification_method: Domain name verification method. Might be missing - due to historical data gap. + :ivar team_log.DomainVerificationAddDomainSuccessDetails.domain_names: + Domain names. + :ivar + team_log.DomainVerificationAddDomainSuccessDetails.verification_method: + Domain name verification method. Might be missing due to historical data + gap. """ __slots__ = [ @@ -6459,7 +6505,8 @@ class DomainVerificationRemoveDomainDetails(bb.Struct): """ Removed domain from list of verified team domains. - :ivar domain_names: Domain names. + :ivar team_log.DomainVerificationRemoveDomainDetails.domain_names: Domain + names. """ __slots__ = [ @@ -6609,8 +6656,8 @@ class DurationLogInfo(bb.Struct): """ Represents a time duration: unit and amount - :ivar unit: Time unit. - :ivar amount: Amount of time. + :ivar team_log.DurationLogInfo.unit: Time unit. + :ivar team_log.DurationLogInfo.amount: Amount of time. """ __slots__ = [ @@ -6639,7 +6686,7 @@ def unit(self): """ Time unit. - :rtype: TimeUnit + :rtype: team_log.TimeUnit """ if self._unit_present: return self._unit_value @@ -6763,9 +6810,10 @@ class EmmChangePolicyDetails(bb.Struct): """ Enabled/disabled enterprise mobility management for members. - :ivar new_value: New enterprise mobility management policy. - :ivar previous_value: Previous enterprise mobility management policy. Might - be missing due to historical data gap. + :ivar team_log.EmmChangePolicyDetails.new_value: New enterprise mobility + management policy. + :ivar team_log.EmmChangePolicyDetails.previous_value: Previous enterprise + mobility management policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -7037,7 +7085,7 @@ class EmmErrorDetails(bb.Struct): """ Failed to sign in via EMM. - :ivar error_details: Error details. + :ivar team_log.EmmErrorDetails.error_details: Error details. """ __slots__ = [ @@ -7059,7 +7107,7 @@ def error_details(self): """ Error details. - :rtype: FailureDetailsLogInfo + :rtype: team_log.FailureDetailsLogInfo """ if self._error_details_present: return self._error_details_value @@ -7346,33 +7394,44 @@ class EventCategory(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar apps: Events that apply to management of linked apps. - :ivar comments: Events that have to do with comments on files and Paper - documents. - :ivar devices: Events that apply to linked devices on mobile, desktop and - Web platforms. - :ivar domains: Events that involve domain management feature: domain - verification, invite enforcement and account capture. - :ivar file_operations: Events that have to do with filesystem operations on - files and folders: copy, move, delete, etc. - :ivar file_requests: Events that apply to the file requests feature. - :ivar groups: Events that involve group management. - :ivar logins: Events that involve users signing in to or out of Dropbox. - :ivar members: Events that involve team member management. - :ivar paper: Events that apply to Dropbox Paper. - :ivar passwords: Events that involve using, changing or resetting passwords. - :ivar reports: Events that concern generation of admin reports, including - team activity and device usage. - :ivar sharing: Events that apply to all types of sharing and collaboration. - :ivar showcase: Events that apply to Dropbox Showcase. - :ivar sso: Events that involve using or configuring single sign-on as well - as administrative policies concerning single sign-on. - :ivar team_folders: Events that involve team folder management. - :ivar team_policies: Events that involve a change in team-wide policies. - :ivar team_profile: Events that involve a change in the team profile. - :ivar tfa: Events that involve using or configuring two factor - authentication as well as administrative policies concerning two factor - authentication. + :ivar team_log.EventCategory.apps: Events that apply to management of linked + apps. + :ivar team_log.EventCategory.comments: Events that have to do with comments + on files and Paper documents. + :ivar team_log.EventCategory.devices: Events that apply to linked devices on + mobile, desktop and Web platforms. + :ivar team_log.EventCategory.domains: Events that involve domain management + feature: domain verification, invite enforcement and account capture. + :ivar team_log.EventCategory.file_operations: Events that have to do with + filesystem operations on files and folders: copy, move, delete, etc. + :ivar team_log.EventCategory.file_requests: Events that apply to the file + requests feature. + :ivar team_log.EventCategory.groups: Events that involve group management. + :ivar team_log.EventCategory.logins: Events that involve users signing in to + or out of Dropbox. + :ivar team_log.EventCategory.members: Events that involve team member + management. + :ivar team_log.EventCategory.paper: Events that apply to Dropbox Paper. + :ivar team_log.EventCategory.passwords: Events that involve using, changing + or resetting passwords. + :ivar team_log.EventCategory.reports: Events that concern generation of + admin reports, including team activity and device usage. + :ivar team_log.EventCategory.sharing: Events that apply to all types of + sharing and collaboration. + :ivar team_log.EventCategory.showcase: Events that apply to Dropbox + Showcase. + :ivar team_log.EventCategory.sso: Events that involve using or configuring + single sign-on as well as administrative policies concerning single + sign-on. + :ivar team_log.EventCategory.team_folders: Events that involve team folder + management. + :ivar team_log.EventCategory.team_policies: Events that involve a change in + team-wide policies. + :ivar team_log.EventCategory.team_profile: Events that involve a change in + the team profile. + :ivar team_log.EventCategory.tfa: Events that involve using or configuring + two factor authentication as well as administrative policies concerning + two factor authentication. """ _catch_all = 'other' @@ -7593,8 +7652,8 @@ class EventDetails(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar MissingDetails missing_details: Hints that this event was returned - with missing details due to an internal error. + :ivar MissingDetails team_log.EventDetails.missing_details: Hints that this + event was returned with missing details due to an internal error. """ _catch_all = 'other' @@ -7607,8 +7666,8 @@ def app_link_team_details(cls, val): Create an instance of this class set to the ``app_link_team_details`` tag with value ``val``. - :param AppLinkTeamDetails val: - :rtype: EventDetails + :param team_log.AppLinkTeamDetails val: + :rtype: team_log.EventDetails """ return cls('app_link_team_details', val) @@ -7618,8 +7677,8 @@ def app_link_user_details(cls, val): Create an instance of this class set to the ``app_link_user_details`` tag with value ``val``. - :param AppLinkUserDetails val: - :rtype: EventDetails + :param team_log.AppLinkUserDetails val: + :rtype: team_log.EventDetails """ return cls('app_link_user_details', val) @@ -7629,8 +7688,8 @@ def app_unlink_team_details(cls, val): Create an instance of this class set to the ``app_unlink_team_details`` tag with value ``val``. - :param AppUnlinkTeamDetails val: - :rtype: EventDetails + :param team_log.AppUnlinkTeamDetails val: + :rtype: team_log.EventDetails """ return cls('app_unlink_team_details', val) @@ -7640,8 +7699,8 @@ def app_unlink_user_details(cls, val): Create an instance of this class set to the ``app_unlink_user_details`` tag with value ``val``. - :param AppUnlinkUserDetails val: - :rtype: EventDetails + :param team_log.AppUnlinkUserDetails val: + :rtype: team_log.EventDetails """ return cls('app_unlink_user_details', val) @@ -7651,8 +7710,8 @@ def file_add_comment_details(cls, val): Create an instance of this class set to the ``file_add_comment_details`` tag with value ``val``. - :param FileAddCommentDetails val: - :rtype: EventDetails + :param team_log.FileAddCommentDetails val: + :rtype: team_log.EventDetails """ return cls('file_add_comment_details', val) @@ -7662,8 +7721,8 @@ def file_change_comment_subscription_details(cls, val): Create an instance of this class set to the ``file_change_comment_subscription_details`` tag with value ``val``. - :param FileChangeCommentSubscriptionDetails val: - :rtype: EventDetails + :param team_log.FileChangeCommentSubscriptionDetails val: + :rtype: team_log.EventDetails """ return cls('file_change_comment_subscription_details', val) @@ -7673,8 +7732,8 @@ def file_delete_comment_details(cls, val): Create an instance of this class set to the ``file_delete_comment_details`` tag with value ``val``. - :param FileDeleteCommentDetails val: - :rtype: EventDetails + :param team_log.FileDeleteCommentDetails val: + :rtype: team_log.EventDetails """ return cls('file_delete_comment_details', val) @@ -7684,8 +7743,8 @@ def file_edit_comment_details(cls, val): Create an instance of this class set to the ``file_edit_comment_details`` tag with value ``val``. - :param FileEditCommentDetails val: - :rtype: EventDetails + :param team_log.FileEditCommentDetails val: + :rtype: team_log.EventDetails """ return cls('file_edit_comment_details', val) @@ -7695,8 +7754,8 @@ def file_like_comment_details(cls, val): Create an instance of this class set to the ``file_like_comment_details`` tag with value ``val``. - :param FileLikeCommentDetails val: - :rtype: EventDetails + :param team_log.FileLikeCommentDetails val: + :rtype: team_log.EventDetails """ return cls('file_like_comment_details', val) @@ -7706,8 +7765,8 @@ def file_resolve_comment_details(cls, val): Create an instance of this class set to the ``file_resolve_comment_details`` tag with value ``val``. - :param FileResolveCommentDetails val: - :rtype: EventDetails + :param team_log.FileResolveCommentDetails val: + :rtype: team_log.EventDetails """ return cls('file_resolve_comment_details', val) @@ -7717,8 +7776,8 @@ def file_unlike_comment_details(cls, val): Create an instance of this class set to the ``file_unlike_comment_details`` tag with value ``val``. - :param FileUnlikeCommentDetails val: - :rtype: EventDetails + :param team_log.FileUnlikeCommentDetails val: + :rtype: team_log.EventDetails """ return cls('file_unlike_comment_details', val) @@ -7728,8 +7787,8 @@ def file_unresolve_comment_details(cls, val): Create an instance of this class set to the ``file_unresolve_comment_details`` tag with value ``val``. - :param FileUnresolveCommentDetails val: - :rtype: EventDetails + :param team_log.FileUnresolveCommentDetails val: + :rtype: team_log.EventDetails """ return cls('file_unresolve_comment_details', val) @@ -7739,8 +7798,8 @@ def device_change_ip_desktop_details(cls, val): Create an instance of this class set to the ``device_change_ip_desktop_details`` tag with value ``val``. - :param DeviceChangeIpDesktopDetails val: - :rtype: EventDetails + :param team_log.DeviceChangeIpDesktopDetails val: + :rtype: team_log.EventDetails """ return cls('device_change_ip_desktop_details', val) @@ -7750,8 +7809,8 @@ def device_change_ip_mobile_details(cls, val): Create an instance of this class set to the ``device_change_ip_mobile_details`` tag with value ``val``. - :param DeviceChangeIpMobileDetails val: - :rtype: EventDetails + :param team_log.DeviceChangeIpMobileDetails val: + :rtype: team_log.EventDetails """ return cls('device_change_ip_mobile_details', val) @@ -7761,8 +7820,8 @@ def device_change_ip_web_details(cls, val): Create an instance of this class set to the ``device_change_ip_web_details`` tag with value ``val``. - :param DeviceChangeIpWebDetails val: - :rtype: EventDetails + :param team_log.DeviceChangeIpWebDetails val: + :rtype: team_log.EventDetails """ return cls('device_change_ip_web_details', val) @@ -7772,8 +7831,8 @@ def device_delete_on_unlink_fail_details(cls, val): Create an instance of this class set to the ``device_delete_on_unlink_fail_details`` tag with value ``val``. - :param DeviceDeleteOnUnlinkFailDetails val: - :rtype: EventDetails + :param team_log.DeviceDeleteOnUnlinkFailDetails val: + :rtype: team_log.EventDetails """ return cls('device_delete_on_unlink_fail_details', val) @@ -7783,8 +7842,8 @@ def device_delete_on_unlink_success_details(cls, val): Create an instance of this class set to the ``device_delete_on_unlink_success_details`` tag with value ``val``. - :param DeviceDeleteOnUnlinkSuccessDetails val: - :rtype: EventDetails + :param team_log.DeviceDeleteOnUnlinkSuccessDetails val: + :rtype: team_log.EventDetails """ return cls('device_delete_on_unlink_success_details', val) @@ -7794,8 +7853,8 @@ def device_link_fail_details(cls, val): Create an instance of this class set to the ``device_link_fail_details`` tag with value ``val``. - :param DeviceLinkFailDetails val: - :rtype: EventDetails + :param team_log.DeviceLinkFailDetails val: + :rtype: team_log.EventDetails """ return cls('device_link_fail_details', val) @@ -7805,8 +7864,8 @@ def device_link_success_details(cls, val): Create an instance of this class set to the ``device_link_success_details`` tag with value ``val``. - :param DeviceLinkSuccessDetails val: - :rtype: EventDetails + :param team_log.DeviceLinkSuccessDetails val: + :rtype: team_log.EventDetails """ return cls('device_link_success_details', val) @@ -7816,8 +7875,8 @@ def device_management_disabled_details(cls, val): Create an instance of this class set to the ``device_management_disabled_details`` tag with value ``val``. - :param DeviceManagementDisabledDetails val: - :rtype: EventDetails + :param team_log.DeviceManagementDisabledDetails val: + :rtype: team_log.EventDetails """ return cls('device_management_disabled_details', val) @@ -7827,8 +7886,8 @@ def device_management_enabled_details(cls, val): Create an instance of this class set to the ``device_management_enabled_details`` tag with value ``val``. - :param DeviceManagementEnabledDetails val: - :rtype: EventDetails + :param team_log.DeviceManagementEnabledDetails val: + :rtype: team_log.EventDetails """ return cls('device_management_enabled_details', val) @@ -7838,8 +7897,8 @@ def device_unlink_details(cls, val): Create an instance of this class set to the ``device_unlink_details`` tag with value ``val``. - :param DeviceUnlinkDetails val: - :rtype: EventDetails + :param team_log.DeviceUnlinkDetails val: + :rtype: team_log.EventDetails """ return cls('device_unlink_details', val) @@ -7849,8 +7908,8 @@ def emm_refresh_auth_token_details(cls, val): Create an instance of this class set to the ``emm_refresh_auth_token_details`` tag with value ``val``. - :param EmmRefreshAuthTokenDetails val: - :rtype: EventDetails + :param team_log.EmmRefreshAuthTokenDetails val: + :rtype: team_log.EventDetails """ return cls('emm_refresh_auth_token_details', val) @@ -7860,8 +7919,8 @@ def account_capture_change_availability_details(cls, val): Create an instance of this class set to the ``account_capture_change_availability_details`` tag with value ``val``. - :param AccountCaptureChangeAvailabilityDetails val: - :rtype: EventDetails + :param team_log.AccountCaptureChangeAvailabilityDetails val: + :rtype: team_log.EventDetails """ return cls('account_capture_change_availability_details', val) @@ -7871,8 +7930,8 @@ def account_capture_migrate_account_details(cls, val): Create an instance of this class set to the ``account_capture_migrate_account_details`` tag with value ``val``. - :param AccountCaptureMigrateAccountDetails val: - :rtype: EventDetails + :param team_log.AccountCaptureMigrateAccountDetails val: + :rtype: team_log.EventDetails """ return cls('account_capture_migrate_account_details', val) @@ -7883,8 +7942,8 @@ def account_capture_notification_emails_sent_details(cls, val): ``account_capture_notification_emails_sent_details`` tag with value ``val``. - :param AccountCaptureNotificationEmailsSentDetails val: - :rtype: EventDetails + :param team_log.AccountCaptureNotificationEmailsSentDetails val: + :rtype: team_log.EventDetails """ return cls('account_capture_notification_emails_sent_details', val) @@ -7894,8 +7953,8 @@ def account_capture_relinquish_account_details(cls, val): Create an instance of this class set to the ``account_capture_relinquish_account_details`` tag with value ``val``. - :param AccountCaptureRelinquishAccountDetails val: - :rtype: EventDetails + :param team_log.AccountCaptureRelinquishAccountDetails val: + :rtype: team_log.EventDetails """ return cls('account_capture_relinquish_account_details', val) @@ -7905,8 +7964,8 @@ def disabled_domain_invites_details(cls, val): Create an instance of this class set to the ``disabled_domain_invites_details`` tag with value ``val``. - :param DisabledDomainInvitesDetails val: - :rtype: EventDetails + :param team_log.DisabledDomainInvitesDetails val: + :rtype: team_log.EventDetails """ return cls('disabled_domain_invites_details', val) @@ -7917,8 +7976,8 @@ def domain_invites_approve_request_to_join_team_details(cls, val): ``domain_invites_approve_request_to_join_team_details`` tag with value ``val``. - :param DomainInvitesApproveRequestToJoinTeamDetails val: - :rtype: EventDetails + :param team_log.DomainInvitesApproveRequestToJoinTeamDetails val: + :rtype: team_log.EventDetails """ return cls('domain_invites_approve_request_to_join_team_details', val) @@ -7929,8 +7988,8 @@ def domain_invites_decline_request_to_join_team_details(cls, val): ``domain_invites_decline_request_to_join_team_details`` tag with value ``val``. - :param DomainInvitesDeclineRequestToJoinTeamDetails val: - :rtype: EventDetails + :param team_log.DomainInvitesDeclineRequestToJoinTeamDetails val: + :rtype: team_log.EventDetails """ return cls('domain_invites_decline_request_to_join_team_details', val) @@ -7940,8 +7999,8 @@ def domain_invites_email_existing_users_details(cls, val): Create an instance of this class set to the ``domain_invites_email_existing_users_details`` tag with value ``val``. - :param DomainInvitesEmailExistingUsersDetails val: - :rtype: EventDetails + :param team_log.DomainInvitesEmailExistingUsersDetails val: + :rtype: team_log.EventDetails """ return cls('domain_invites_email_existing_users_details', val) @@ -7951,8 +8010,8 @@ def domain_invites_request_to_join_team_details(cls, val): Create an instance of this class set to the ``domain_invites_request_to_join_team_details`` tag with value ``val``. - :param DomainInvitesRequestToJoinTeamDetails val: - :rtype: EventDetails + :param team_log.DomainInvitesRequestToJoinTeamDetails val: + :rtype: team_log.EventDetails """ return cls('domain_invites_request_to_join_team_details', val) @@ -7963,8 +8022,8 @@ def domain_invites_set_invite_new_user_pref_to_no_details(cls, val): ``domain_invites_set_invite_new_user_pref_to_no_details`` tag with value ``val``. - :param DomainInvitesSetInviteNewUserPrefToNoDetails val: - :rtype: EventDetails + :param team_log.DomainInvitesSetInviteNewUserPrefToNoDetails val: + :rtype: team_log.EventDetails """ return cls('domain_invites_set_invite_new_user_pref_to_no_details', val) @@ -7975,8 +8034,8 @@ def domain_invites_set_invite_new_user_pref_to_yes_details(cls, val): ``domain_invites_set_invite_new_user_pref_to_yes_details`` tag with value ``val``. - :param DomainInvitesSetInviteNewUserPrefToYesDetails val: - :rtype: EventDetails + :param team_log.DomainInvitesSetInviteNewUserPrefToYesDetails val: + :rtype: team_log.EventDetails """ return cls('domain_invites_set_invite_new_user_pref_to_yes_details', val) @@ -7986,8 +8045,8 @@ def domain_verification_add_domain_fail_details(cls, val): Create an instance of this class set to the ``domain_verification_add_domain_fail_details`` tag with value ``val``. - :param DomainVerificationAddDomainFailDetails val: - :rtype: EventDetails + :param team_log.DomainVerificationAddDomainFailDetails val: + :rtype: team_log.EventDetails """ return cls('domain_verification_add_domain_fail_details', val) @@ -7998,8 +8057,8 @@ def domain_verification_add_domain_success_details(cls, val): ``domain_verification_add_domain_success_details`` tag with value ``val``. - :param DomainVerificationAddDomainSuccessDetails val: - :rtype: EventDetails + :param team_log.DomainVerificationAddDomainSuccessDetails val: + :rtype: team_log.EventDetails """ return cls('domain_verification_add_domain_success_details', val) @@ -8009,8 +8068,8 @@ def domain_verification_remove_domain_details(cls, val): Create an instance of this class set to the ``domain_verification_remove_domain_details`` tag with value ``val``. - :param DomainVerificationRemoveDomainDetails val: - :rtype: EventDetails + :param team_log.DomainVerificationRemoveDomainDetails val: + :rtype: team_log.EventDetails """ return cls('domain_verification_remove_domain_details', val) @@ -8020,8 +8079,8 @@ def enabled_domain_invites_details(cls, val): Create an instance of this class set to the ``enabled_domain_invites_details`` tag with value ``val``. - :param EnabledDomainInvitesDetails val: - :rtype: EventDetails + :param team_log.EnabledDomainInvitesDetails val: + :rtype: team_log.EventDetails """ return cls('enabled_domain_invites_details', val) @@ -8031,8 +8090,8 @@ def create_folder_details(cls, val): Create an instance of this class set to the ``create_folder_details`` tag with value ``val``. - :param CreateFolderDetails val: - :rtype: EventDetails + :param team_log.CreateFolderDetails val: + :rtype: team_log.EventDetails """ return cls('create_folder_details', val) @@ -8042,8 +8101,8 @@ def file_add_details(cls, val): Create an instance of this class set to the ``file_add_details`` tag with value ``val``. - :param FileAddDetails val: - :rtype: EventDetails + :param team_log.FileAddDetails val: + :rtype: team_log.EventDetails """ return cls('file_add_details', val) @@ -8053,8 +8112,8 @@ def file_copy_details(cls, val): Create an instance of this class set to the ``file_copy_details`` tag with value ``val``. - :param FileCopyDetails val: - :rtype: EventDetails + :param team_log.FileCopyDetails val: + :rtype: team_log.EventDetails """ return cls('file_copy_details', val) @@ -8064,8 +8123,8 @@ def file_delete_details(cls, val): Create an instance of this class set to the ``file_delete_details`` tag with value ``val``. - :param FileDeleteDetails val: - :rtype: EventDetails + :param team_log.FileDeleteDetails val: + :rtype: team_log.EventDetails """ return cls('file_delete_details', val) @@ -8075,8 +8134,8 @@ def file_download_details(cls, val): Create an instance of this class set to the ``file_download_details`` tag with value ``val``. - :param FileDownloadDetails val: - :rtype: EventDetails + :param team_log.FileDownloadDetails val: + :rtype: team_log.EventDetails """ return cls('file_download_details', val) @@ -8086,8 +8145,8 @@ def file_edit_details(cls, val): Create an instance of this class set to the ``file_edit_details`` tag with value ``val``. - :param FileEditDetails val: - :rtype: EventDetails + :param team_log.FileEditDetails val: + :rtype: team_log.EventDetails """ return cls('file_edit_details', val) @@ -8097,8 +8156,8 @@ def file_get_copy_reference_details(cls, val): Create an instance of this class set to the ``file_get_copy_reference_details`` tag with value ``val``. - :param FileGetCopyReferenceDetails val: - :rtype: EventDetails + :param team_log.FileGetCopyReferenceDetails val: + :rtype: team_log.EventDetails """ return cls('file_get_copy_reference_details', val) @@ -8108,8 +8167,8 @@ def file_move_details(cls, val): Create an instance of this class set to the ``file_move_details`` tag with value ``val``. - :param FileMoveDetails val: - :rtype: EventDetails + :param team_log.FileMoveDetails val: + :rtype: team_log.EventDetails """ return cls('file_move_details', val) @@ -8119,8 +8178,8 @@ def file_permanently_delete_details(cls, val): Create an instance of this class set to the ``file_permanently_delete_details`` tag with value ``val``. - :param FilePermanentlyDeleteDetails val: - :rtype: EventDetails + :param team_log.FilePermanentlyDeleteDetails val: + :rtype: team_log.EventDetails """ return cls('file_permanently_delete_details', val) @@ -8130,8 +8189,8 @@ def file_preview_details(cls, val): Create an instance of this class set to the ``file_preview_details`` tag with value ``val``. - :param FilePreviewDetails val: - :rtype: EventDetails + :param team_log.FilePreviewDetails val: + :rtype: team_log.EventDetails """ return cls('file_preview_details', val) @@ -8141,8 +8200,8 @@ def file_rename_details(cls, val): Create an instance of this class set to the ``file_rename_details`` tag with value ``val``. - :param FileRenameDetails val: - :rtype: EventDetails + :param team_log.FileRenameDetails val: + :rtype: team_log.EventDetails """ return cls('file_rename_details', val) @@ -8152,8 +8211,8 @@ def file_restore_details(cls, val): Create an instance of this class set to the ``file_restore_details`` tag with value ``val``. - :param FileRestoreDetails val: - :rtype: EventDetails + :param team_log.FileRestoreDetails val: + :rtype: team_log.EventDetails """ return cls('file_restore_details', val) @@ -8163,8 +8222,8 @@ def file_revert_details(cls, val): Create an instance of this class set to the ``file_revert_details`` tag with value ``val``. - :param FileRevertDetails val: - :rtype: EventDetails + :param team_log.FileRevertDetails val: + :rtype: team_log.EventDetails """ return cls('file_revert_details', val) @@ -8174,8 +8233,8 @@ def file_rollback_changes_details(cls, val): Create an instance of this class set to the ``file_rollback_changes_details`` tag with value ``val``. - :param FileRollbackChangesDetails val: - :rtype: EventDetails + :param team_log.FileRollbackChangesDetails val: + :rtype: team_log.EventDetails """ return cls('file_rollback_changes_details', val) @@ -8185,8 +8244,8 @@ def file_save_copy_reference_details(cls, val): Create an instance of this class set to the ``file_save_copy_reference_details`` tag with value ``val``. - :param FileSaveCopyReferenceDetails val: - :rtype: EventDetails + :param team_log.FileSaveCopyReferenceDetails val: + :rtype: team_log.EventDetails """ return cls('file_save_copy_reference_details', val) @@ -8196,8 +8255,8 @@ def file_request_change_details(cls, val): Create an instance of this class set to the ``file_request_change_details`` tag with value ``val``. - :param FileRequestChangeDetails val: - :rtype: EventDetails + :param team_log.FileRequestChangeDetails val: + :rtype: team_log.EventDetails """ return cls('file_request_change_details', val) @@ -8207,8 +8266,8 @@ def file_request_close_details(cls, val): Create an instance of this class set to the ``file_request_close_details`` tag with value ``val``. - :param FileRequestCloseDetails val: - :rtype: EventDetails + :param team_log.FileRequestCloseDetails val: + :rtype: team_log.EventDetails """ return cls('file_request_close_details', val) @@ -8218,8 +8277,8 @@ def file_request_create_details(cls, val): Create an instance of this class set to the ``file_request_create_details`` tag with value ``val``. - :param FileRequestCreateDetails val: - :rtype: EventDetails + :param team_log.FileRequestCreateDetails val: + :rtype: team_log.EventDetails """ return cls('file_request_create_details', val) @@ -8229,8 +8288,8 @@ def file_request_receive_file_details(cls, val): Create an instance of this class set to the ``file_request_receive_file_details`` tag with value ``val``. - :param FileRequestReceiveFileDetails val: - :rtype: EventDetails + :param team_log.FileRequestReceiveFileDetails val: + :rtype: team_log.EventDetails """ return cls('file_request_receive_file_details', val) @@ -8240,8 +8299,8 @@ def group_add_external_id_details(cls, val): Create an instance of this class set to the ``group_add_external_id_details`` tag with value ``val``. - :param GroupAddExternalIdDetails val: - :rtype: EventDetails + :param team_log.GroupAddExternalIdDetails val: + :rtype: team_log.EventDetails """ return cls('group_add_external_id_details', val) @@ -8251,8 +8310,8 @@ def group_add_member_details(cls, val): Create an instance of this class set to the ``group_add_member_details`` tag with value ``val``. - :param GroupAddMemberDetails val: - :rtype: EventDetails + :param team_log.GroupAddMemberDetails val: + :rtype: team_log.EventDetails """ return cls('group_add_member_details', val) @@ -8262,8 +8321,8 @@ def group_change_external_id_details(cls, val): Create an instance of this class set to the ``group_change_external_id_details`` tag with value ``val``. - :param GroupChangeExternalIdDetails val: - :rtype: EventDetails + :param team_log.GroupChangeExternalIdDetails val: + :rtype: team_log.EventDetails """ return cls('group_change_external_id_details', val) @@ -8273,8 +8332,8 @@ def group_change_management_type_details(cls, val): Create an instance of this class set to the ``group_change_management_type_details`` tag with value ``val``. - :param GroupChangeManagementTypeDetails val: - :rtype: EventDetails + :param team_log.GroupChangeManagementTypeDetails val: + :rtype: team_log.EventDetails """ return cls('group_change_management_type_details', val) @@ -8284,8 +8343,8 @@ def group_change_member_role_details(cls, val): Create an instance of this class set to the ``group_change_member_role_details`` tag with value ``val``. - :param GroupChangeMemberRoleDetails val: - :rtype: EventDetails + :param team_log.GroupChangeMemberRoleDetails val: + :rtype: team_log.EventDetails """ return cls('group_change_member_role_details', val) @@ -8295,8 +8354,8 @@ def group_create_details(cls, val): Create an instance of this class set to the ``group_create_details`` tag with value ``val``. - :param GroupCreateDetails val: - :rtype: EventDetails + :param team_log.GroupCreateDetails val: + :rtype: team_log.EventDetails """ return cls('group_create_details', val) @@ -8306,8 +8365,8 @@ def group_delete_details(cls, val): Create an instance of this class set to the ``group_delete_details`` tag with value ``val``. - :param GroupDeleteDetails val: - :rtype: EventDetails + :param team_log.GroupDeleteDetails val: + :rtype: team_log.EventDetails """ return cls('group_delete_details', val) @@ -8317,8 +8376,8 @@ def group_description_updated_details(cls, val): Create an instance of this class set to the ``group_description_updated_details`` tag with value ``val``. - :param GroupDescriptionUpdatedDetails val: - :rtype: EventDetails + :param team_log.GroupDescriptionUpdatedDetails val: + :rtype: team_log.EventDetails """ return cls('group_description_updated_details', val) @@ -8328,8 +8387,8 @@ def group_join_policy_updated_details(cls, val): Create an instance of this class set to the ``group_join_policy_updated_details`` tag with value ``val``. - :param GroupJoinPolicyUpdatedDetails val: - :rtype: EventDetails + :param team_log.GroupJoinPolicyUpdatedDetails val: + :rtype: team_log.EventDetails """ return cls('group_join_policy_updated_details', val) @@ -8339,8 +8398,8 @@ def group_moved_details(cls, val): Create an instance of this class set to the ``group_moved_details`` tag with value ``val``. - :param GroupMovedDetails val: - :rtype: EventDetails + :param team_log.GroupMovedDetails val: + :rtype: team_log.EventDetails """ return cls('group_moved_details', val) @@ -8350,8 +8409,8 @@ def group_remove_external_id_details(cls, val): Create an instance of this class set to the ``group_remove_external_id_details`` tag with value ``val``. - :param GroupRemoveExternalIdDetails val: - :rtype: EventDetails + :param team_log.GroupRemoveExternalIdDetails val: + :rtype: team_log.EventDetails """ return cls('group_remove_external_id_details', val) @@ -8361,8 +8420,8 @@ def group_remove_member_details(cls, val): Create an instance of this class set to the ``group_remove_member_details`` tag with value ``val``. - :param GroupRemoveMemberDetails val: - :rtype: EventDetails + :param team_log.GroupRemoveMemberDetails val: + :rtype: team_log.EventDetails """ return cls('group_remove_member_details', val) @@ -8372,8 +8431,8 @@ def group_rename_details(cls, val): Create an instance of this class set to the ``group_rename_details`` tag with value ``val``. - :param GroupRenameDetails val: - :rtype: EventDetails + :param team_log.GroupRenameDetails val: + :rtype: team_log.EventDetails """ return cls('group_rename_details', val) @@ -8383,8 +8442,8 @@ def emm_error_details(cls, val): Create an instance of this class set to the ``emm_error_details`` tag with value ``val``. - :param EmmErrorDetails val: - :rtype: EventDetails + :param team_log.EmmErrorDetails val: + :rtype: team_log.EventDetails """ return cls('emm_error_details', val) @@ -8394,8 +8453,8 @@ def login_fail_details(cls, val): Create an instance of this class set to the ``login_fail_details`` tag with value ``val``. - :param LoginFailDetails val: - :rtype: EventDetails + :param team_log.LoginFailDetails val: + :rtype: team_log.EventDetails """ return cls('login_fail_details', val) @@ -8405,8 +8464,8 @@ def login_success_details(cls, val): Create an instance of this class set to the ``login_success_details`` tag with value ``val``. - :param LoginSuccessDetails val: - :rtype: EventDetails + :param team_log.LoginSuccessDetails val: + :rtype: team_log.EventDetails """ return cls('login_success_details', val) @@ -8416,8 +8475,8 @@ def logout_details(cls, val): Create an instance of this class set to the ``logout_details`` tag with value ``val``. - :param LogoutDetails val: - :rtype: EventDetails + :param team_log.LogoutDetails val: + :rtype: team_log.EventDetails """ return cls('logout_details', val) @@ -8427,8 +8486,8 @@ def reseller_support_session_end_details(cls, val): Create an instance of this class set to the ``reseller_support_session_end_details`` tag with value ``val``. - :param ResellerSupportSessionEndDetails val: - :rtype: EventDetails + :param team_log.ResellerSupportSessionEndDetails val: + :rtype: team_log.EventDetails """ return cls('reseller_support_session_end_details', val) @@ -8438,8 +8497,8 @@ def reseller_support_session_start_details(cls, val): Create an instance of this class set to the ``reseller_support_session_start_details`` tag with value ``val``. - :param ResellerSupportSessionStartDetails val: - :rtype: EventDetails + :param team_log.ResellerSupportSessionStartDetails val: + :rtype: team_log.EventDetails """ return cls('reseller_support_session_start_details', val) @@ -8449,8 +8508,8 @@ def sign_in_as_session_end_details(cls, val): Create an instance of this class set to the ``sign_in_as_session_end_details`` tag with value ``val``. - :param SignInAsSessionEndDetails val: - :rtype: EventDetails + :param team_log.SignInAsSessionEndDetails val: + :rtype: team_log.EventDetails """ return cls('sign_in_as_session_end_details', val) @@ -8460,8 +8519,8 @@ def sign_in_as_session_start_details(cls, val): Create an instance of this class set to the ``sign_in_as_session_start_details`` tag with value ``val``. - :param SignInAsSessionStartDetails val: - :rtype: EventDetails + :param team_log.SignInAsSessionStartDetails val: + :rtype: team_log.EventDetails """ return cls('sign_in_as_session_start_details', val) @@ -8471,8 +8530,8 @@ def sso_error_details(cls, val): Create an instance of this class set to the ``sso_error_details`` tag with value ``val``. - :param SsoErrorDetails val: - :rtype: EventDetails + :param team_log.SsoErrorDetails val: + :rtype: team_log.EventDetails """ return cls('sso_error_details', val) @@ -8482,8 +8541,8 @@ def member_add_name_details(cls, val): Create an instance of this class set to the ``member_add_name_details`` tag with value ``val``. - :param MemberAddNameDetails val: - :rtype: EventDetails + :param team_log.MemberAddNameDetails val: + :rtype: team_log.EventDetails """ return cls('member_add_name_details', val) @@ -8493,8 +8552,8 @@ def member_change_admin_role_details(cls, val): Create an instance of this class set to the ``member_change_admin_role_details`` tag with value ``val``. - :param MemberChangeAdminRoleDetails val: - :rtype: EventDetails + :param team_log.MemberChangeAdminRoleDetails val: + :rtype: team_log.EventDetails """ return cls('member_change_admin_role_details', val) @@ -8504,8 +8563,8 @@ def member_change_email_details(cls, val): Create an instance of this class set to the ``member_change_email_details`` tag with value ``val``. - :param MemberChangeEmailDetails val: - :rtype: EventDetails + :param team_log.MemberChangeEmailDetails val: + :rtype: team_log.EventDetails """ return cls('member_change_email_details', val) @@ -8515,8 +8574,8 @@ def member_change_membership_type_details(cls, val): Create an instance of this class set to the ``member_change_membership_type_details`` tag with value ``val``. - :param MemberChangeMembershipTypeDetails val: - :rtype: EventDetails + :param team_log.MemberChangeMembershipTypeDetails val: + :rtype: team_log.EventDetails """ return cls('member_change_membership_type_details', val) @@ -8526,8 +8585,8 @@ def member_change_name_details(cls, val): Create an instance of this class set to the ``member_change_name_details`` tag with value ``val``. - :param MemberChangeNameDetails val: - :rtype: EventDetails + :param team_log.MemberChangeNameDetails val: + :rtype: team_log.EventDetails """ return cls('member_change_name_details', val) @@ -8537,8 +8596,8 @@ def member_change_status_details(cls, val): Create an instance of this class set to the ``member_change_status_details`` tag with value ``val``. - :param MemberChangeStatusDetails val: - :rtype: EventDetails + :param team_log.MemberChangeStatusDetails val: + :rtype: team_log.EventDetails """ return cls('member_change_status_details', val) @@ -8548,8 +8607,8 @@ def member_delete_manual_contacts_details(cls, val): Create an instance of this class set to the ``member_delete_manual_contacts_details`` tag with value ``val``. - :param MemberDeleteManualContactsDetails val: - :rtype: EventDetails + :param team_log.MemberDeleteManualContactsDetails val: + :rtype: team_log.EventDetails """ return cls('member_delete_manual_contacts_details', val) @@ -8560,8 +8619,8 @@ def member_permanently_delete_account_contents_details(cls, val): ``member_permanently_delete_account_contents_details`` tag with value ``val``. - :param MemberPermanentlyDeleteAccountContentsDetails val: - :rtype: EventDetails + :param team_log.MemberPermanentlyDeleteAccountContentsDetails val: + :rtype: team_log.EventDetails """ return cls('member_permanently_delete_account_contents_details', val) @@ -8571,8 +8630,8 @@ def member_space_limits_add_custom_quota_details(cls, val): Create an instance of this class set to the ``member_space_limits_add_custom_quota_details`` tag with value ``val``. - :param MemberSpaceLimitsAddCustomQuotaDetails val: - :rtype: EventDetails + :param team_log.MemberSpaceLimitsAddCustomQuotaDetails val: + :rtype: team_log.EventDetails """ return cls('member_space_limits_add_custom_quota_details', val) @@ -8583,8 +8642,8 @@ def member_space_limits_change_custom_quota_details(cls, val): ``member_space_limits_change_custom_quota_details`` tag with value ``val``. - :param MemberSpaceLimitsChangeCustomQuotaDetails val: - :rtype: EventDetails + :param team_log.MemberSpaceLimitsChangeCustomQuotaDetails val: + :rtype: team_log.EventDetails """ return cls('member_space_limits_change_custom_quota_details', val) @@ -8594,8 +8653,8 @@ def member_space_limits_change_status_details(cls, val): Create an instance of this class set to the ``member_space_limits_change_status_details`` tag with value ``val``. - :param MemberSpaceLimitsChangeStatusDetails val: - :rtype: EventDetails + :param team_log.MemberSpaceLimitsChangeStatusDetails val: + :rtype: team_log.EventDetails """ return cls('member_space_limits_change_status_details', val) @@ -8606,8 +8665,8 @@ def member_space_limits_remove_custom_quota_details(cls, val): ``member_space_limits_remove_custom_quota_details`` tag with value ``val``. - :param MemberSpaceLimitsRemoveCustomQuotaDetails val: - :rtype: EventDetails + :param team_log.MemberSpaceLimitsRemoveCustomQuotaDetails val: + :rtype: team_log.EventDetails """ return cls('member_space_limits_remove_custom_quota_details', val) @@ -8617,8 +8676,8 @@ def member_suggest_details(cls, val): Create an instance of this class set to the ``member_suggest_details`` tag with value ``val``. - :param MemberSuggestDetails val: - :rtype: EventDetails + :param team_log.MemberSuggestDetails val: + :rtype: team_log.EventDetails """ return cls('member_suggest_details', val) @@ -8628,8 +8687,8 @@ def member_transfer_account_contents_details(cls, val): Create an instance of this class set to the ``member_transfer_account_contents_details`` tag with value ``val``. - :param MemberTransferAccountContentsDetails val: - :rtype: EventDetails + :param team_log.MemberTransferAccountContentsDetails val: + :rtype: team_log.EventDetails """ return cls('member_transfer_account_contents_details', val) @@ -8639,8 +8698,8 @@ def secondary_mails_policy_changed_details(cls, val): Create an instance of this class set to the ``secondary_mails_policy_changed_details`` tag with value ``val``. - :param SecondaryMailsPolicyChangedDetails val: - :rtype: EventDetails + :param team_log.SecondaryMailsPolicyChangedDetails val: + :rtype: team_log.EventDetails """ return cls('secondary_mails_policy_changed_details', val) @@ -8650,8 +8709,8 @@ def paper_content_add_member_details(cls, val): Create an instance of this class set to the ``paper_content_add_member_details`` tag with value ``val``. - :param PaperContentAddMemberDetails val: - :rtype: EventDetails + :param team_log.PaperContentAddMemberDetails val: + :rtype: team_log.EventDetails """ return cls('paper_content_add_member_details', val) @@ -8661,8 +8720,8 @@ def paper_content_add_to_folder_details(cls, val): Create an instance of this class set to the ``paper_content_add_to_folder_details`` tag with value ``val``. - :param PaperContentAddToFolderDetails val: - :rtype: EventDetails + :param team_log.PaperContentAddToFolderDetails val: + :rtype: team_log.EventDetails """ return cls('paper_content_add_to_folder_details', val) @@ -8672,8 +8731,8 @@ def paper_content_archive_details(cls, val): Create an instance of this class set to the ``paper_content_archive_details`` tag with value ``val``. - :param PaperContentArchiveDetails val: - :rtype: EventDetails + :param team_log.PaperContentArchiveDetails val: + :rtype: team_log.EventDetails """ return cls('paper_content_archive_details', val) @@ -8683,8 +8742,8 @@ def paper_content_create_details(cls, val): Create an instance of this class set to the ``paper_content_create_details`` tag with value ``val``. - :param PaperContentCreateDetails val: - :rtype: EventDetails + :param team_log.PaperContentCreateDetails val: + :rtype: team_log.EventDetails """ return cls('paper_content_create_details', val) @@ -8694,8 +8753,8 @@ def paper_content_permanently_delete_details(cls, val): Create an instance of this class set to the ``paper_content_permanently_delete_details`` tag with value ``val``. - :param PaperContentPermanentlyDeleteDetails val: - :rtype: EventDetails + :param team_log.PaperContentPermanentlyDeleteDetails val: + :rtype: team_log.EventDetails """ return cls('paper_content_permanently_delete_details', val) @@ -8705,8 +8764,8 @@ def paper_content_remove_from_folder_details(cls, val): Create an instance of this class set to the ``paper_content_remove_from_folder_details`` tag with value ``val``. - :param PaperContentRemoveFromFolderDetails val: - :rtype: EventDetails + :param team_log.PaperContentRemoveFromFolderDetails val: + :rtype: team_log.EventDetails """ return cls('paper_content_remove_from_folder_details', val) @@ -8716,8 +8775,8 @@ def paper_content_remove_member_details(cls, val): Create an instance of this class set to the ``paper_content_remove_member_details`` tag with value ``val``. - :param PaperContentRemoveMemberDetails val: - :rtype: EventDetails + :param team_log.PaperContentRemoveMemberDetails val: + :rtype: team_log.EventDetails """ return cls('paper_content_remove_member_details', val) @@ -8727,8 +8786,8 @@ def paper_content_rename_details(cls, val): Create an instance of this class set to the ``paper_content_rename_details`` tag with value ``val``. - :param PaperContentRenameDetails val: - :rtype: EventDetails + :param team_log.PaperContentRenameDetails val: + :rtype: team_log.EventDetails """ return cls('paper_content_rename_details', val) @@ -8738,8 +8797,8 @@ def paper_content_restore_details(cls, val): Create an instance of this class set to the ``paper_content_restore_details`` tag with value ``val``. - :param PaperContentRestoreDetails val: - :rtype: EventDetails + :param team_log.PaperContentRestoreDetails val: + :rtype: team_log.EventDetails """ return cls('paper_content_restore_details', val) @@ -8749,8 +8808,8 @@ def paper_doc_add_comment_details(cls, val): Create an instance of this class set to the ``paper_doc_add_comment_details`` tag with value ``val``. - :param PaperDocAddCommentDetails val: - :rtype: EventDetails + :param team_log.PaperDocAddCommentDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_add_comment_details', val) @@ -8760,8 +8819,8 @@ def paper_doc_change_member_role_details(cls, val): Create an instance of this class set to the ``paper_doc_change_member_role_details`` tag with value ``val``. - :param PaperDocChangeMemberRoleDetails val: - :rtype: EventDetails + :param team_log.PaperDocChangeMemberRoleDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_change_member_role_details', val) @@ -8771,8 +8830,8 @@ def paper_doc_change_sharing_policy_details(cls, val): Create an instance of this class set to the ``paper_doc_change_sharing_policy_details`` tag with value ``val``. - :param PaperDocChangeSharingPolicyDetails val: - :rtype: EventDetails + :param team_log.PaperDocChangeSharingPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_change_sharing_policy_details', val) @@ -8782,8 +8841,8 @@ def paper_doc_change_subscription_details(cls, val): Create an instance of this class set to the ``paper_doc_change_subscription_details`` tag with value ``val``. - :param PaperDocChangeSubscriptionDetails val: - :rtype: EventDetails + :param team_log.PaperDocChangeSubscriptionDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_change_subscription_details', val) @@ -8793,8 +8852,8 @@ def paper_doc_deleted_details(cls, val): Create an instance of this class set to the ``paper_doc_deleted_details`` tag with value ``val``. - :param PaperDocDeletedDetails val: - :rtype: EventDetails + :param team_log.PaperDocDeletedDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_deleted_details', val) @@ -8804,8 +8863,8 @@ def paper_doc_delete_comment_details(cls, val): Create an instance of this class set to the ``paper_doc_delete_comment_details`` tag with value ``val``. - :param PaperDocDeleteCommentDetails val: - :rtype: EventDetails + :param team_log.PaperDocDeleteCommentDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_delete_comment_details', val) @@ -8815,8 +8874,8 @@ def paper_doc_download_details(cls, val): Create an instance of this class set to the ``paper_doc_download_details`` tag with value ``val``. - :param PaperDocDownloadDetails val: - :rtype: EventDetails + :param team_log.PaperDocDownloadDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_download_details', val) @@ -8826,8 +8885,8 @@ def paper_doc_edit_details(cls, val): Create an instance of this class set to the ``paper_doc_edit_details`` tag with value ``val``. - :param PaperDocEditDetails val: - :rtype: EventDetails + :param team_log.PaperDocEditDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_edit_details', val) @@ -8837,8 +8896,8 @@ def paper_doc_edit_comment_details(cls, val): Create an instance of this class set to the ``paper_doc_edit_comment_details`` tag with value ``val``. - :param PaperDocEditCommentDetails val: - :rtype: EventDetails + :param team_log.PaperDocEditCommentDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_edit_comment_details', val) @@ -8848,8 +8907,8 @@ def paper_doc_followed_details(cls, val): Create an instance of this class set to the ``paper_doc_followed_details`` tag with value ``val``. - :param PaperDocFollowedDetails val: - :rtype: EventDetails + :param team_log.PaperDocFollowedDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_followed_details', val) @@ -8859,8 +8918,8 @@ def paper_doc_mention_details(cls, val): Create an instance of this class set to the ``paper_doc_mention_details`` tag with value ``val``. - :param PaperDocMentionDetails val: - :rtype: EventDetails + :param team_log.PaperDocMentionDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_mention_details', val) @@ -8870,8 +8929,8 @@ def paper_doc_ownership_changed_details(cls, val): Create an instance of this class set to the ``paper_doc_ownership_changed_details`` tag with value ``val``. - :param PaperDocOwnershipChangedDetails val: - :rtype: EventDetails + :param team_log.PaperDocOwnershipChangedDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_ownership_changed_details', val) @@ -8881,8 +8940,8 @@ def paper_doc_request_access_details(cls, val): Create an instance of this class set to the ``paper_doc_request_access_details`` tag with value ``val``. - :param PaperDocRequestAccessDetails val: - :rtype: EventDetails + :param team_log.PaperDocRequestAccessDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_request_access_details', val) @@ -8892,8 +8951,8 @@ def paper_doc_resolve_comment_details(cls, val): Create an instance of this class set to the ``paper_doc_resolve_comment_details`` tag with value ``val``. - :param PaperDocResolveCommentDetails val: - :rtype: EventDetails + :param team_log.PaperDocResolveCommentDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_resolve_comment_details', val) @@ -8903,8 +8962,8 @@ def paper_doc_revert_details(cls, val): Create an instance of this class set to the ``paper_doc_revert_details`` tag with value ``val``. - :param PaperDocRevertDetails val: - :rtype: EventDetails + :param team_log.PaperDocRevertDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_revert_details', val) @@ -8914,8 +8973,8 @@ def paper_doc_slack_share_details(cls, val): Create an instance of this class set to the ``paper_doc_slack_share_details`` tag with value ``val``. - :param PaperDocSlackShareDetails val: - :rtype: EventDetails + :param team_log.PaperDocSlackShareDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_slack_share_details', val) @@ -8925,8 +8984,8 @@ def paper_doc_team_invite_details(cls, val): Create an instance of this class set to the ``paper_doc_team_invite_details`` tag with value ``val``. - :param PaperDocTeamInviteDetails val: - :rtype: EventDetails + :param team_log.PaperDocTeamInviteDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_team_invite_details', val) @@ -8936,8 +8995,8 @@ def paper_doc_trashed_details(cls, val): Create an instance of this class set to the ``paper_doc_trashed_details`` tag with value ``val``. - :param PaperDocTrashedDetails val: - :rtype: EventDetails + :param team_log.PaperDocTrashedDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_trashed_details', val) @@ -8947,8 +9006,8 @@ def paper_doc_unresolve_comment_details(cls, val): Create an instance of this class set to the ``paper_doc_unresolve_comment_details`` tag with value ``val``. - :param PaperDocUnresolveCommentDetails val: - :rtype: EventDetails + :param team_log.PaperDocUnresolveCommentDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_unresolve_comment_details', val) @@ -8958,8 +9017,8 @@ def paper_doc_untrashed_details(cls, val): Create an instance of this class set to the ``paper_doc_untrashed_details`` tag with value ``val``. - :param PaperDocUntrashedDetails val: - :rtype: EventDetails + :param team_log.PaperDocUntrashedDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_untrashed_details', val) @@ -8969,8 +9028,8 @@ def paper_doc_view_details(cls, val): Create an instance of this class set to the ``paper_doc_view_details`` tag with value ``val``. - :param PaperDocViewDetails val: - :rtype: EventDetails + :param team_log.PaperDocViewDetails val: + :rtype: team_log.EventDetails """ return cls('paper_doc_view_details', val) @@ -8980,8 +9039,8 @@ def paper_external_view_allow_details(cls, val): Create an instance of this class set to the ``paper_external_view_allow_details`` tag with value ``val``. - :param PaperExternalViewAllowDetails val: - :rtype: EventDetails + :param team_log.PaperExternalViewAllowDetails val: + :rtype: team_log.EventDetails """ return cls('paper_external_view_allow_details', val) @@ -8991,8 +9050,8 @@ def paper_external_view_default_team_details(cls, val): Create an instance of this class set to the ``paper_external_view_default_team_details`` tag with value ``val``. - :param PaperExternalViewDefaultTeamDetails val: - :rtype: EventDetails + :param team_log.PaperExternalViewDefaultTeamDetails val: + :rtype: team_log.EventDetails """ return cls('paper_external_view_default_team_details', val) @@ -9002,8 +9061,8 @@ def paper_external_view_forbid_details(cls, val): Create an instance of this class set to the ``paper_external_view_forbid_details`` tag with value ``val``. - :param PaperExternalViewForbidDetails val: - :rtype: EventDetails + :param team_log.PaperExternalViewForbidDetails val: + :rtype: team_log.EventDetails """ return cls('paper_external_view_forbid_details', val) @@ -9013,8 +9072,8 @@ def paper_folder_change_subscription_details(cls, val): Create an instance of this class set to the ``paper_folder_change_subscription_details`` tag with value ``val``. - :param PaperFolderChangeSubscriptionDetails val: - :rtype: EventDetails + :param team_log.PaperFolderChangeSubscriptionDetails val: + :rtype: team_log.EventDetails """ return cls('paper_folder_change_subscription_details', val) @@ -9024,8 +9083,8 @@ def paper_folder_deleted_details(cls, val): Create an instance of this class set to the ``paper_folder_deleted_details`` tag with value ``val``. - :param PaperFolderDeletedDetails val: - :rtype: EventDetails + :param team_log.PaperFolderDeletedDetails val: + :rtype: team_log.EventDetails """ return cls('paper_folder_deleted_details', val) @@ -9035,8 +9094,8 @@ def paper_folder_followed_details(cls, val): Create an instance of this class set to the ``paper_folder_followed_details`` tag with value ``val``. - :param PaperFolderFollowedDetails val: - :rtype: EventDetails + :param team_log.PaperFolderFollowedDetails val: + :rtype: team_log.EventDetails """ return cls('paper_folder_followed_details', val) @@ -9046,8 +9105,8 @@ def paper_folder_team_invite_details(cls, val): Create an instance of this class set to the ``paper_folder_team_invite_details`` tag with value ``val``. - :param PaperFolderTeamInviteDetails val: - :rtype: EventDetails + :param team_log.PaperFolderTeamInviteDetails val: + :rtype: team_log.EventDetails """ return cls('paper_folder_team_invite_details', val) @@ -9057,8 +9116,8 @@ def password_change_details(cls, val): Create an instance of this class set to the ``password_change_details`` tag with value ``val``. - :param PasswordChangeDetails val: - :rtype: EventDetails + :param team_log.PasswordChangeDetails val: + :rtype: team_log.EventDetails """ return cls('password_change_details', val) @@ -9068,8 +9127,8 @@ def password_reset_details(cls, val): Create an instance of this class set to the ``password_reset_details`` tag with value ``val``. - :param PasswordResetDetails val: - :rtype: EventDetails + :param team_log.PasswordResetDetails val: + :rtype: team_log.EventDetails """ return cls('password_reset_details', val) @@ -9079,8 +9138,8 @@ def password_reset_all_details(cls, val): Create an instance of this class set to the ``password_reset_all_details`` tag with value ``val``. - :param PasswordResetAllDetails val: - :rtype: EventDetails + :param team_log.PasswordResetAllDetails val: + :rtype: team_log.EventDetails """ return cls('password_reset_all_details', val) @@ -9090,8 +9149,8 @@ def emm_create_exceptions_report_details(cls, val): Create an instance of this class set to the ``emm_create_exceptions_report_details`` tag with value ``val``. - :param EmmCreateExceptionsReportDetails val: - :rtype: EventDetails + :param team_log.EmmCreateExceptionsReportDetails val: + :rtype: team_log.EventDetails """ return cls('emm_create_exceptions_report_details', val) @@ -9101,8 +9160,8 @@ def emm_create_usage_report_details(cls, val): Create an instance of this class set to the ``emm_create_usage_report_details`` tag with value ``val``. - :param EmmCreateUsageReportDetails val: - :rtype: EventDetails + :param team_log.EmmCreateUsageReportDetails val: + :rtype: team_log.EventDetails """ return cls('emm_create_usage_report_details', val) @@ -9112,8 +9171,8 @@ def export_members_report_details(cls, val): Create an instance of this class set to the ``export_members_report_details`` tag with value ``val``. - :param ExportMembersReportDetails val: - :rtype: EventDetails + :param team_log.ExportMembersReportDetails val: + :rtype: team_log.EventDetails """ return cls('export_members_report_details', val) @@ -9123,8 +9182,8 @@ def paper_admin_export_start_details(cls, val): Create an instance of this class set to the ``paper_admin_export_start_details`` tag with value ``val``. - :param PaperAdminExportStartDetails val: - :rtype: EventDetails + :param team_log.PaperAdminExportStartDetails val: + :rtype: team_log.EventDetails """ return cls('paper_admin_export_start_details', val) @@ -9135,8 +9194,8 @@ def smart_sync_create_admin_privilege_report_details(cls, val): ``smart_sync_create_admin_privilege_report_details`` tag with value ``val``. - :param SmartSyncCreateAdminPrivilegeReportDetails val: - :rtype: EventDetails + :param team_log.SmartSyncCreateAdminPrivilegeReportDetails val: + :rtype: team_log.EventDetails """ return cls('smart_sync_create_admin_privilege_report_details', val) @@ -9146,8 +9205,8 @@ def team_activity_create_report_details(cls, val): Create an instance of this class set to the ``team_activity_create_report_details`` tag with value ``val``. - :param TeamActivityCreateReportDetails val: - :rtype: EventDetails + :param team_log.TeamActivityCreateReportDetails val: + :rtype: team_log.EventDetails """ return cls('team_activity_create_report_details', val) @@ -9157,8 +9216,8 @@ def collection_share_details(cls, val): Create an instance of this class set to the ``collection_share_details`` tag with value ``val``. - :param CollectionShareDetails val: - :rtype: EventDetails + :param team_log.CollectionShareDetails val: + :rtype: team_log.EventDetails """ return cls('collection_share_details', val) @@ -9168,8 +9227,8 @@ def note_acl_invite_only_details(cls, val): Create an instance of this class set to the ``note_acl_invite_only_details`` tag with value ``val``. - :param NoteAclInviteOnlyDetails val: - :rtype: EventDetails + :param team_log.NoteAclInviteOnlyDetails val: + :rtype: team_log.EventDetails """ return cls('note_acl_invite_only_details', val) @@ -9179,8 +9238,8 @@ def note_acl_link_details(cls, val): Create an instance of this class set to the ``note_acl_link_details`` tag with value ``val``. - :param NoteAclLinkDetails val: - :rtype: EventDetails + :param team_log.NoteAclLinkDetails val: + :rtype: team_log.EventDetails """ return cls('note_acl_link_details', val) @@ -9190,8 +9249,8 @@ def note_acl_team_link_details(cls, val): Create an instance of this class set to the ``note_acl_team_link_details`` tag with value ``val``. - :param NoteAclTeamLinkDetails val: - :rtype: EventDetails + :param team_log.NoteAclTeamLinkDetails val: + :rtype: team_log.EventDetails """ return cls('note_acl_team_link_details', val) @@ -9201,8 +9260,8 @@ def note_shared_details(cls, val): Create an instance of this class set to the ``note_shared_details`` tag with value ``val``. - :param NoteSharedDetails val: - :rtype: EventDetails + :param team_log.NoteSharedDetails val: + :rtype: team_log.EventDetails """ return cls('note_shared_details', val) @@ -9212,8 +9271,8 @@ def note_share_receive_details(cls, val): Create an instance of this class set to the ``note_share_receive_details`` tag with value ``val``. - :param NoteShareReceiveDetails val: - :rtype: EventDetails + :param team_log.NoteShareReceiveDetails val: + :rtype: team_log.EventDetails """ return cls('note_share_receive_details', val) @@ -9223,8 +9282,8 @@ def open_note_shared_details(cls, val): Create an instance of this class set to the ``open_note_shared_details`` tag with value ``val``. - :param OpenNoteSharedDetails val: - :rtype: EventDetails + :param team_log.OpenNoteSharedDetails val: + :rtype: team_log.EventDetails """ return cls('open_note_shared_details', val) @@ -9234,8 +9293,8 @@ def sf_add_group_details(cls, val): Create an instance of this class set to the ``sf_add_group_details`` tag with value ``val``. - :param SfAddGroupDetails val: - :rtype: EventDetails + :param team_log.SfAddGroupDetails val: + :rtype: team_log.EventDetails """ return cls('sf_add_group_details', val) @@ -9246,8 +9305,8 @@ def sf_allow_non_members_to_view_shared_links_details(cls, val): ``sf_allow_non_members_to_view_shared_links_details`` tag with value ``val``. - :param SfAllowNonMembersToViewSharedLinksDetails val: - :rtype: EventDetails + :param team_log.SfAllowNonMembersToViewSharedLinksDetails val: + :rtype: team_log.EventDetails """ return cls('sf_allow_non_members_to_view_shared_links_details', val) @@ -9257,8 +9316,8 @@ def sf_external_invite_warn_details(cls, val): Create an instance of this class set to the ``sf_external_invite_warn_details`` tag with value ``val``. - :param SfExternalInviteWarnDetails val: - :rtype: EventDetails + :param team_log.SfExternalInviteWarnDetails val: + :rtype: team_log.EventDetails """ return cls('sf_external_invite_warn_details', val) @@ -9268,8 +9327,8 @@ def sf_fb_invite_details(cls, val): Create an instance of this class set to the ``sf_fb_invite_details`` tag with value ``val``. - :param SfFbInviteDetails val: - :rtype: EventDetails + :param team_log.SfFbInviteDetails val: + :rtype: team_log.EventDetails """ return cls('sf_fb_invite_details', val) @@ -9279,8 +9338,8 @@ def sf_fb_invite_change_role_details(cls, val): Create an instance of this class set to the ``sf_fb_invite_change_role_details`` tag with value ``val``. - :param SfFbInviteChangeRoleDetails val: - :rtype: EventDetails + :param team_log.SfFbInviteChangeRoleDetails val: + :rtype: team_log.EventDetails """ return cls('sf_fb_invite_change_role_details', val) @@ -9290,8 +9349,8 @@ def sf_fb_uninvite_details(cls, val): Create an instance of this class set to the ``sf_fb_uninvite_details`` tag with value ``val``. - :param SfFbUninviteDetails val: - :rtype: EventDetails + :param team_log.SfFbUninviteDetails val: + :rtype: team_log.EventDetails """ return cls('sf_fb_uninvite_details', val) @@ -9301,8 +9360,8 @@ def sf_invite_group_details(cls, val): Create an instance of this class set to the ``sf_invite_group_details`` tag with value ``val``. - :param SfInviteGroupDetails val: - :rtype: EventDetails + :param team_log.SfInviteGroupDetails val: + :rtype: team_log.EventDetails """ return cls('sf_invite_group_details', val) @@ -9312,8 +9371,8 @@ def sf_team_grant_access_details(cls, val): Create an instance of this class set to the ``sf_team_grant_access_details`` tag with value ``val``. - :param SfTeamGrantAccessDetails val: - :rtype: EventDetails + :param team_log.SfTeamGrantAccessDetails val: + :rtype: team_log.EventDetails """ return cls('sf_team_grant_access_details', val) @@ -9323,8 +9382,8 @@ def sf_team_invite_details(cls, val): Create an instance of this class set to the ``sf_team_invite_details`` tag with value ``val``. - :param SfTeamInviteDetails val: - :rtype: EventDetails + :param team_log.SfTeamInviteDetails val: + :rtype: team_log.EventDetails """ return cls('sf_team_invite_details', val) @@ -9334,8 +9393,8 @@ def sf_team_invite_change_role_details(cls, val): Create an instance of this class set to the ``sf_team_invite_change_role_details`` tag with value ``val``. - :param SfTeamInviteChangeRoleDetails val: - :rtype: EventDetails + :param team_log.SfTeamInviteChangeRoleDetails val: + :rtype: team_log.EventDetails """ return cls('sf_team_invite_change_role_details', val) @@ -9345,8 +9404,8 @@ def sf_team_join_details(cls, val): Create an instance of this class set to the ``sf_team_join_details`` tag with value ``val``. - :param SfTeamJoinDetails val: - :rtype: EventDetails + :param team_log.SfTeamJoinDetails val: + :rtype: team_log.EventDetails """ return cls('sf_team_join_details', val) @@ -9356,8 +9415,8 @@ def sf_team_join_from_oob_link_details(cls, val): Create an instance of this class set to the ``sf_team_join_from_oob_link_details`` tag with value ``val``. - :param SfTeamJoinFromOobLinkDetails val: - :rtype: EventDetails + :param team_log.SfTeamJoinFromOobLinkDetails val: + :rtype: team_log.EventDetails """ return cls('sf_team_join_from_oob_link_details', val) @@ -9367,8 +9426,8 @@ def sf_team_uninvite_details(cls, val): Create an instance of this class set to the ``sf_team_uninvite_details`` tag with value ``val``. - :param SfTeamUninviteDetails val: - :rtype: EventDetails + :param team_log.SfTeamUninviteDetails val: + :rtype: team_log.EventDetails """ return cls('sf_team_uninvite_details', val) @@ -9378,8 +9437,8 @@ def shared_content_add_invitees_details(cls, val): Create an instance of this class set to the ``shared_content_add_invitees_details`` tag with value ``val``. - :param SharedContentAddInviteesDetails val: - :rtype: EventDetails + :param team_log.SharedContentAddInviteesDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_add_invitees_details', val) @@ -9389,8 +9448,8 @@ def shared_content_add_link_expiry_details(cls, val): Create an instance of this class set to the ``shared_content_add_link_expiry_details`` tag with value ``val``. - :param SharedContentAddLinkExpiryDetails val: - :rtype: EventDetails + :param team_log.SharedContentAddLinkExpiryDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_add_link_expiry_details', val) @@ -9400,8 +9459,8 @@ def shared_content_add_link_password_details(cls, val): Create an instance of this class set to the ``shared_content_add_link_password_details`` tag with value ``val``. - :param SharedContentAddLinkPasswordDetails val: - :rtype: EventDetails + :param team_log.SharedContentAddLinkPasswordDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_add_link_password_details', val) @@ -9411,8 +9470,8 @@ def shared_content_add_member_details(cls, val): Create an instance of this class set to the ``shared_content_add_member_details`` tag with value ``val``. - :param SharedContentAddMemberDetails val: - :rtype: EventDetails + :param team_log.SharedContentAddMemberDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_add_member_details', val) @@ -9423,8 +9482,8 @@ def shared_content_change_downloads_policy_details(cls, val): ``shared_content_change_downloads_policy_details`` tag with value ``val``. - :param SharedContentChangeDownloadsPolicyDetails val: - :rtype: EventDetails + :param team_log.SharedContentChangeDownloadsPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_change_downloads_policy_details', val) @@ -9434,8 +9493,8 @@ def shared_content_change_invitee_role_details(cls, val): Create an instance of this class set to the ``shared_content_change_invitee_role_details`` tag with value ``val``. - :param SharedContentChangeInviteeRoleDetails val: - :rtype: EventDetails + :param team_log.SharedContentChangeInviteeRoleDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_change_invitee_role_details', val) @@ -9445,8 +9504,8 @@ def shared_content_change_link_audience_details(cls, val): Create an instance of this class set to the ``shared_content_change_link_audience_details`` tag with value ``val``. - :param SharedContentChangeLinkAudienceDetails val: - :rtype: EventDetails + :param team_log.SharedContentChangeLinkAudienceDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_change_link_audience_details', val) @@ -9456,8 +9515,8 @@ def shared_content_change_link_expiry_details(cls, val): Create an instance of this class set to the ``shared_content_change_link_expiry_details`` tag with value ``val``. - :param SharedContentChangeLinkExpiryDetails val: - :rtype: EventDetails + :param team_log.SharedContentChangeLinkExpiryDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_change_link_expiry_details', val) @@ -9467,8 +9526,8 @@ def shared_content_change_link_password_details(cls, val): Create an instance of this class set to the ``shared_content_change_link_password_details`` tag with value ``val``. - :param SharedContentChangeLinkPasswordDetails val: - :rtype: EventDetails + :param team_log.SharedContentChangeLinkPasswordDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_change_link_password_details', val) @@ -9478,8 +9537,8 @@ def shared_content_change_member_role_details(cls, val): Create an instance of this class set to the ``shared_content_change_member_role_details`` tag with value ``val``. - :param SharedContentChangeMemberRoleDetails val: - :rtype: EventDetails + :param team_log.SharedContentChangeMemberRoleDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_change_member_role_details', val) @@ -9490,8 +9549,8 @@ def shared_content_change_viewer_info_policy_details(cls, val): ``shared_content_change_viewer_info_policy_details`` tag with value ``val``. - :param SharedContentChangeViewerInfoPolicyDetails val: - :rtype: EventDetails + :param team_log.SharedContentChangeViewerInfoPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_change_viewer_info_policy_details', val) @@ -9501,8 +9560,8 @@ def shared_content_claim_invitation_details(cls, val): Create an instance of this class set to the ``shared_content_claim_invitation_details`` tag with value ``val``. - :param SharedContentClaimInvitationDetails val: - :rtype: EventDetails + :param team_log.SharedContentClaimInvitationDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_claim_invitation_details', val) @@ -9512,8 +9571,8 @@ def shared_content_copy_details(cls, val): Create an instance of this class set to the ``shared_content_copy_details`` tag with value ``val``. - :param SharedContentCopyDetails val: - :rtype: EventDetails + :param team_log.SharedContentCopyDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_copy_details', val) @@ -9523,8 +9582,8 @@ def shared_content_download_details(cls, val): Create an instance of this class set to the ``shared_content_download_details`` tag with value ``val``. - :param SharedContentDownloadDetails val: - :rtype: EventDetails + :param team_log.SharedContentDownloadDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_download_details', val) @@ -9534,8 +9593,8 @@ def shared_content_relinquish_membership_details(cls, val): Create an instance of this class set to the ``shared_content_relinquish_membership_details`` tag with value ``val``. - :param SharedContentRelinquishMembershipDetails val: - :rtype: EventDetails + :param team_log.SharedContentRelinquishMembershipDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_relinquish_membership_details', val) @@ -9545,8 +9604,8 @@ def shared_content_remove_invitees_details(cls, val): Create an instance of this class set to the ``shared_content_remove_invitees_details`` tag with value ``val``. - :param SharedContentRemoveInviteesDetails val: - :rtype: EventDetails + :param team_log.SharedContentRemoveInviteesDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_remove_invitees_details', val) @@ -9556,8 +9615,8 @@ def shared_content_remove_link_expiry_details(cls, val): Create an instance of this class set to the ``shared_content_remove_link_expiry_details`` tag with value ``val``. - :param SharedContentRemoveLinkExpiryDetails val: - :rtype: EventDetails + :param team_log.SharedContentRemoveLinkExpiryDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_remove_link_expiry_details', val) @@ -9567,8 +9626,8 @@ def shared_content_remove_link_password_details(cls, val): Create an instance of this class set to the ``shared_content_remove_link_password_details`` tag with value ``val``. - :param SharedContentRemoveLinkPasswordDetails val: - :rtype: EventDetails + :param team_log.SharedContentRemoveLinkPasswordDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_remove_link_password_details', val) @@ -9578,8 +9637,8 @@ def shared_content_remove_member_details(cls, val): Create an instance of this class set to the ``shared_content_remove_member_details`` tag with value ``val``. - :param SharedContentRemoveMemberDetails val: - :rtype: EventDetails + :param team_log.SharedContentRemoveMemberDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_remove_member_details', val) @@ -9589,8 +9648,8 @@ def shared_content_request_access_details(cls, val): Create an instance of this class set to the ``shared_content_request_access_details`` tag with value ``val``. - :param SharedContentRequestAccessDetails val: - :rtype: EventDetails + :param team_log.SharedContentRequestAccessDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_request_access_details', val) @@ -9600,8 +9659,8 @@ def shared_content_unshare_details(cls, val): Create an instance of this class set to the ``shared_content_unshare_details`` tag with value ``val``. - :param SharedContentUnshareDetails val: - :rtype: EventDetails + :param team_log.SharedContentUnshareDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_unshare_details', val) @@ -9611,8 +9670,8 @@ def shared_content_view_details(cls, val): Create an instance of this class set to the ``shared_content_view_details`` tag with value ``val``. - :param SharedContentViewDetails val: - :rtype: EventDetails + :param team_log.SharedContentViewDetails val: + :rtype: team_log.EventDetails """ return cls('shared_content_view_details', val) @@ -9622,8 +9681,8 @@ def shared_folder_change_link_policy_details(cls, val): Create an instance of this class set to the ``shared_folder_change_link_policy_details`` tag with value ``val``. - :param SharedFolderChangeLinkPolicyDetails val: - :rtype: EventDetails + :param team_log.SharedFolderChangeLinkPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_change_link_policy_details', val) @@ -9634,8 +9693,8 @@ def shared_folder_change_members_inheritance_policy_details(cls, val): ``shared_folder_change_members_inheritance_policy_details`` tag with value ``val``. - :param SharedFolderChangeMembersInheritancePolicyDetails val: - :rtype: EventDetails + :param team_log.SharedFolderChangeMembersInheritancePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_change_members_inheritance_policy_details', val) @@ -9646,8 +9705,8 @@ def shared_folder_change_members_management_policy_details(cls, val): ``shared_folder_change_members_management_policy_details`` tag with value ``val``. - :param SharedFolderChangeMembersManagementPolicyDetails val: - :rtype: EventDetails + :param team_log.SharedFolderChangeMembersManagementPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_change_members_management_policy_details', val) @@ -9657,8 +9716,8 @@ def shared_folder_change_members_policy_details(cls, val): Create an instance of this class set to the ``shared_folder_change_members_policy_details`` tag with value ``val``. - :param SharedFolderChangeMembersPolicyDetails val: - :rtype: EventDetails + :param team_log.SharedFolderChangeMembersPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_change_members_policy_details', val) @@ -9668,8 +9727,8 @@ def shared_folder_create_details(cls, val): Create an instance of this class set to the ``shared_folder_create_details`` tag with value ``val``. - :param SharedFolderCreateDetails val: - :rtype: EventDetails + :param team_log.SharedFolderCreateDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_create_details', val) @@ -9679,8 +9738,8 @@ def shared_folder_decline_invitation_details(cls, val): Create an instance of this class set to the ``shared_folder_decline_invitation_details`` tag with value ``val``. - :param SharedFolderDeclineInvitationDetails val: - :rtype: EventDetails + :param team_log.SharedFolderDeclineInvitationDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_decline_invitation_details', val) @@ -9690,8 +9749,8 @@ def shared_folder_mount_details(cls, val): Create an instance of this class set to the ``shared_folder_mount_details`` tag with value ``val``. - :param SharedFolderMountDetails val: - :rtype: EventDetails + :param team_log.SharedFolderMountDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_mount_details', val) @@ -9701,8 +9760,8 @@ def shared_folder_nest_details(cls, val): Create an instance of this class set to the ``shared_folder_nest_details`` tag with value ``val``. - :param SharedFolderNestDetails val: - :rtype: EventDetails + :param team_log.SharedFolderNestDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_nest_details', val) @@ -9712,8 +9771,8 @@ def shared_folder_transfer_ownership_details(cls, val): Create an instance of this class set to the ``shared_folder_transfer_ownership_details`` tag with value ``val``. - :param SharedFolderTransferOwnershipDetails val: - :rtype: EventDetails + :param team_log.SharedFolderTransferOwnershipDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_transfer_ownership_details', val) @@ -9723,8 +9782,8 @@ def shared_folder_unmount_details(cls, val): Create an instance of this class set to the ``shared_folder_unmount_details`` tag with value ``val``. - :param SharedFolderUnmountDetails val: - :rtype: EventDetails + :param team_log.SharedFolderUnmountDetails val: + :rtype: team_log.EventDetails """ return cls('shared_folder_unmount_details', val) @@ -9734,8 +9793,8 @@ def shared_link_add_expiry_details(cls, val): Create an instance of this class set to the ``shared_link_add_expiry_details`` tag with value ``val``. - :param SharedLinkAddExpiryDetails val: - :rtype: EventDetails + :param team_log.SharedLinkAddExpiryDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_add_expiry_details', val) @@ -9745,8 +9804,8 @@ def shared_link_change_expiry_details(cls, val): Create an instance of this class set to the ``shared_link_change_expiry_details`` tag with value ``val``. - :param SharedLinkChangeExpiryDetails val: - :rtype: EventDetails + :param team_log.SharedLinkChangeExpiryDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_change_expiry_details', val) @@ -9756,8 +9815,8 @@ def shared_link_change_visibility_details(cls, val): Create an instance of this class set to the ``shared_link_change_visibility_details`` tag with value ``val``. - :param SharedLinkChangeVisibilityDetails val: - :rtype: EventDetails + :param team_log.SharedLinkChangeVisibilityDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_change_visibility_details', val) @@ -9767,8 +9826,8 @@ def shared_link_copy_details(cls, val): Create an instance of this class set to the ``shared_link_copy_details`` tag with value ``val``. - :param SharedLinkCopyDetails val: - :rtype: EventDetails + :param team_log.SharedLinkCopyDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_copy_details', val) @@ -9778,8 +9837,8 @@ def shared_link_create_details(cls, val): Create an instance of this class set to the ``shared_link_create_details`` tag with value ``val``. - :param SharedLinkCreateDetails val: - :rtype: EventDetails + :param team_log.SharedLinkCreateDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_create_details', val) @@ -9789,8 +9848,8 @@ def shared_link_disable_details(cls, val): Create an instance of this class set to the ``shared_link_disable_details`` tag with value ``val``. - :param SharedLinkDisableDetails val: - :rtype: EventDetails + :param team_log.SharedLinkDisableDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_disable_details', val) @@ -9800,8 +9859,8 @@ def shared_link_download_details(cls, val): Create an instance of this class set to the ``shared_link_download_details`` tag with value ``val``. - :param SharedLinkDownloadDetails val: - :rtype: EventDetails + :param team_log.SharedLinkDownloadDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_download_details', val) @@ -9811,8 +9870,8 @@ def shared_link_remove_expiry_details(cls, val): Create an instance of this class set to the ``shared_link_remove_expiry_details`` tag with value ``val``. - :param SharedLinkRemoveExpiryDetails val: - :rtype: EventDetails + :param team_log.SharedLinkRemoveExpiryDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_remove_expiry_details', val) @@ -9822,8 +9881,8 @@ def shared_link_share_details(cls, val): Create an instance of this class set to the ``shared_link_share_details`` tag with value ``val``. - :param SharedLinkShareDetails val: - :rtype: EventDetails + :param team_log.SharedLinkShareDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_share_details', val) @@ -9833,8 +9892,8 @@ def shared_link_view_details(cls, val): Create an instance of this class set to the ``shared_link_view_details`` tag with value ``val``. - :param SharedLinkViewDetails val: - :rtype: EventDetails + :param team_log.SharedLinkViewDetails val: + :rtype: team_log.EventDetails """ return cls('shared_link_view_details', val) @@ -9844,8 +9903,8 @@ def shared_note_opened_details(cls, val): Create an instance of this class set to the ``shared_note_opened_details`` tag with value ``val``. - :param SharedNoteOpenedDetails val: - :rtype: EventDetails + :param team_log.SharedNoteOpenedDetails val: + :rtype: team_log.EventDetails """ return cls('shared_note_opened_details', val) @@ -9855,8 +9914,8 @@ def shmodel_group_share_details(cls, val): Create an instance of this class set to the ``shmodel_group_share_details`` tag with value ``val``. - :param ShmodelGroupShareDetails val: - :rtype: EventDetails + :param team_log.ShmodelGroupShareDetails val: + :rtype: team_log.EventDetails """ return cls('shmodel_group_share_details', val) @@ -9866,8 +9925,8 @@ def showcase_access_granted_details(cls, val): Create an instance of this class set to the ``showcase_access_granted_details`` tag with value ``val``. - :param ShowcaseAccessGrantedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseAccessGrantedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_access_granted_details', val) @@ -9877,8 +9936,8 @@ def showcase_add_member_details(cls, val): Create an instance of this class set to the ``showcase_add_member_details`` tag with value ``val``. - :param ShowcaseAddMemberDetails val: - :rtype: EventDetails + :param team_log.ShowcaseAddMemberDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_add_member_details', val) @@ -9888,8 +9947,8 @@ def showcase_archived_details(cls, val): Create an instance of this class set to the ``showcase_archived_details`` tag with value ``val``. - :param ShowcaseArchivedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseArchivedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_archived_details', val) @@ -9899,8 +9958,8 @@ def showcase_created_details(cls, val): Create an instance of this class set to the ``showcase_created_details`` tag with value ``val``. - :param ShowcaseCreatedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseCreatedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_created_details', val) @@ -9910,8 +9969,8 @@ def showcase_delete_comment_details(cls, val): Create an instance of this class set to the ``showcase_delete_comment_details`` tag with value ``val``. - :param ShowcaseDeleteCommentDetails val: - :rtype: EventDetails + :param team_log.ShowcaseDeleteCommentDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_delete_comment_details', val) @@ -9921,8 +9980,8 @@ def showcase_edited_details(cls, val): Create an instance of this class set to the ``showcase_edited_details`` tag with value ``val``. - :param ShowcaseEditedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseEditedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_edited_details', val) @@ -9932,8 +9991,8 @@ def showcase_edit_comment_details(cls, val): Create an instance of this class set to the ``showcase_edit_comment_details`` tag with value ``val``. - :param ShowcaseEditCommentDetails val: - :rtype: EventDetails + :param team_log.ShowcaseEditCommentDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_edit_comment_details', val) @@ -9943,8 +10002,8 @@ def showcase_file_added_details(cls, val): Create an instance of this class set to the ``showcase_file_added_details`` tag with value ``val``. - :param ShowcaseFileAddedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseFileAddedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_file_added_details', val) @@ -9954,8 +10013,8 @@ def showcase_file_download_details(cls, val): Create an instance of this class set to the ``showcase_file_download_details`` tag with value ``val``. - :param ShowcaseFileDownloadDetails val: - :rtype: EventDetails + :param team_log.ShowcaseFileDownloadDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_file_download_details', val) @@ -9965,8 +10024,8 @@ def showcase_file_removed_details(cls, val): Create an instance of this class set to the ``showcase_file_removed_details`` tag with value ``val``. - :param ShowcaseFileRemovedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseFileRemovedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_file_removed_details', val) @@ -9976,8 +10035,8 @@ def showcase_file_view_details(cls, val): Create an instance of this class set to the ``showcase_file_view_details`` tag with value ``val``. - :param ShowcaseFileViewDetails val: - :rtype: EventDetails + :param team_log.ShowcaseFileViewDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_file_view_details', val) @@ -9987,8 +10046,8 @@ def showcase_permanently_deleted_details(cls, val): Create an instance of this class set to the ``showcase_permanently_deleted_details`` tag with value ``val``. - :param ShowcasePermanentlyDeletedDetails val: - :rtype: EventDetails + :param team_log.ShowcasePermanentlyDeletedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_permanently_deleted_details', val) @@ -9998,8 +10057,8 @@ def showcase_post_comment_details(cls, val): Create an instance of this class set to the ``showcase_post_comment_details`` tag with value ``val``. - :param ShowcasePostCommentDetails val: - :rtype: EventDetails + :param team_log.ShowcasePostCommentDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_post_comment_details', val) @@ -10009,8 +10068,8 @@ def showcase_remove_member_details(cls, val): Create an instance of this class set to the ``showcase_remove_member_details`` tag with value ``val``. - :param ShowcaseRemoveMemberDetails val: - :rtype: EventDetails + :param team_log.ShowcaseRemoveMemberDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_remove_member_details', val) @@ -10020,8 +10079,8 @@ def showcase_renamed_details(cls, val): Create an instance of this class set to the ``showcase_renamed_details`` tag with value ``val``. - :param ShowcaseRenamedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseRenamedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_renamed_details', val) @@ -10031,8 +10090,8 @@ def showcase_request_access_details(cls, val): Create an instance of this class set to the ``showcase_request_access_details`` tag with value ``val``. - :param ShowcaseRequestAccessDetails val: - :rtype: EventDetails + :param team_log.ShowcaseRequestAccessDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_request_access_details', val) @@ -10042,8 +10101,8 @@ def showcase_resolve_comment_details(cls, val): Create an instance of this class set to the ``showcase_resolve_comment_details`` tag with value ``val``. - :param ShowcaseResolveCommentDetails val: - :rtype: EventDetails + :param team_log.ShowcaseResolveCommentDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_resolve_comment_details', val) @@ -10053,8 +10112,8 @@ def showcase_restored_details(cls, val): Create an instance of this class set to the ``showcase_restored_details`` tag with value ``val``. - :param ShowcaseRestoredDetails val: - :rtype: EventDetails + :param team_log.ShowcaseRestoredDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_restored_details', val) @@ -10064,8 +10123,8 @@ def showcase_trashed_details(cls, val): Create an instance of this class set to the ``showcase_trashed_details`` tag with value ``val``. - :param ShowcaseTrashedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseTrashedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_trashed_details', val) @@ -10075,8 +10134,8 @@ def showcase_trashed_deprecated_details(cls, val): Create an instance of this class set to the ``showcase_trashed_deprecated_details`` tag with value ``val``. - :param ShowcaseTrashedDeprecatedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseTrashedDeprecatedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_trashed_deprecated_details', val) @@ -10086,8 +10145,8 @@ def showcase_unresolve_comment_details(cls, val): Create an instance of this class set to the ``showcase_unresolve_comment_details`` tag with value ``val``. - :param ShowcaseUnresolveCommentDetails val: - :rtype: EventDetails + :param team_log.ShowcaseUnresolveCommentDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_unresolve_comment_details', val) @@ -10097,8 +10156,8 @@ def showcase_untrashed_details(cls, val): Create an instance of this class set to the ``showcase_untrashed_details`` tag with value ``val``. - :param ShowcaseUntrashedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseUntrashedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_untrashed_details', val) @@ -10108,8 +10167,8 @@ def showcase_untrashed_deprecated_details(cls, val): Create an instance of this class set to the ``showcase_untrashed_deprecated_details`` tag with value ``val``. - :param ShowcaseUntrashedDeprecatedDetails val: - :rtype: EventDetails + :param team_log.ShowcaseUntrashedDeprecatedDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_untrashed_deprecated_details', val) @@ -10119,8 +10178,8 @@ def showcase_view_details(cls, val): Create an instance of this class set to the ``showcase_view_details`` tag with value ``val``. - :param ShowcaseViewDetails val: - :rtype: EventDetails + :param team_log.ShowcaseViewDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_view_details', val) @@ -10130,8 +10189,8 @@ def sso_add_cert_details(cls, val): Create an instance of this class set to the ``sso_add_cert_details`` tag with value ``val``. - :param SsoAddCertDetails val: - :rtype: EventDetails + :param team_log.SsoAddCertDetails val: + :rtype: team_log.EventDetails """ return cls('sso_add_cert_details', val) @@ -10141,8 +10200,8 @@ def sso_add_login_url_details(cls, val): Create an instance of this class set to the ``sso_add_login_url_details`` tag with value ``val``. - :param SsoAddLoginUrlDetails val: - :rtype: EventDetails + :param team_log.SsoAddLoginUrlDetails val: + :rtype: team_log.EventDetails """ return cls('sso_add_login_url_details', val) @@ -10152,8 +10211,8 @@ def sso_add_logout_url_details(cls, val): Create an instance of this class set to the ``sso_add_logout_url_details`` tag with value ``val``. - :param SsoAddLogoutUrlDetails val: - :rtype: EventDetails + :param team_log.SsoAddLogoutUrlDetails val: + :rtype: team_log.EventDetails """ return cls('sso_add_logout_url_details', val) @@ -10163,8 +10222,8 @@ def sso_change_cert_details(cls, val): Create an instance of this class set to the ``sso_change_cert_details`` tag with value ``val``. - :param SsoChangeCertDetails val: - :rtype: EventDetails + :param team_log.SsoChangeCertDetails val: + :rtype: team_log.EventDetails """ return cls('sso_change_cert_details', val) @@ -10174,8 +10233,8 @@ def sso_change_login_url_details(cls, val): Create an instance of this class set to the ``sso_change_login_url_details`` tag with value ``val``. - :param SsoChangeLoginUrlDetails val: - :rtype: EventDetails + :param team_log.SsoChangeLoginUrlDetails val: + :rtype: team_log.EventDetails """ return cls('sso_change_login_url_details', val) @@ -10185,8 +10244,8 @@ def sso_change_logout_url_details(cls, val): Create an instance of this class set to the ``sso_change_logout_url_details`` tag with value ``val``. - :param SsoChangeLogoutUrlDetails val: - :rtype: EventDetails + :param team_log.SsoChangeLogoutUrlDetails val: + :rtype: team_log.EventDetails """ return cls('sso_change_logout_url_details', val) @@ -10196,8 +10255,8 @@ def sso_change_saml_identity_mode_details(cls, val): Create an instance of this class set to the ``sso_change_saml_identity_mode_details`` tag with value ``val``. - :param SsoChangeSamlIdentityModeDetails val: - :rtype: EventDetails + :param team_log.SsoChangeSamlIdentityModeDetails val: + :rtype: team_log.EventDetails """ return cls('sso_change_saml_identity_mode_details', val) @@ -10207,8 +10266,8 @@ def sso_remove_cert_details(cls, val): Create an instance of this class set to the ``sso_remove_cert_details`` tag with value ``val``. - :param SsoRemoveCertDetails val: - :rtype: EventDetails + :param team_log.SsoRemoveCertDetails val: + :rtype: team_log.EventDetails """ return cls('sso_remove_cert_details', val) @@ -10218,8 +10277,8 @@ def sso_remove_login_url_details(cls, val): Create an instance of this class set to the ``sso_remove_login_url_details`` tag with value ``val``. - :param SsoRemoveLoginUrlDetails val: - :rtype: EventDetails + :param team_log.SsoRemoveLoginUrlDetails val: + :rtype: team_log.EventDetails """ return cls('sso_remove_login_url_details', val) @@ -10229,8 +10288,8 @@ def sso_remove_logout_url_details(cls, val): Create an instance of this class set to the ``sso_remove_logout_url_details`` tag with value ``val``. - :param SsoRemoveLogoutUrlDetails val: - :rtype: EventDetails + :param team_log.SsoRemoveLogoutUrlDetails val: + :rtype: team_log.EventDetails """ return cls('sso_remove_logout_url_details', val) @@ -10240,8 +10299,8 @@ def team_folder_change_status_details(cls, val): Create an instance of this class set to the ``team_folder_change_status_details`` tag with value ``val``. - :param TeamFolderChangeStatusDetails val: - :rtype: EventDetails + :param team_log.TeamFolderChangeStatusDetails val: + :rtype: team_log.EventDetails """ return cls('team_folder_change_status_details', val) @@ -10251,8 +10310,8 @@ def team_folder_create_details(cls, val): Create an instance of this class set to the ``team_folder_create_details`` tag with value ``val``. - :param TeamFolderCreateDetails val: - :rtype: EventDetails + :param team_log.TeamFolderCreateDetails val: + :rtype: team_log.EventDetails """ return cls('team_folder_create_details', val) @@ -10262,8 +10321,8 @@ def team_folder_downgrade_details(cls, val): Create an instance of this class set to the ``team_folder_downgrade_details`` tag with value ``val``. - :param TeamFolderDowngradeDetails val: - :rtype: EventDetails + :param team_log.TeamFolderDowngradeDetails val: + :rtype: team_log.EventDetails """ return cls('team_folder_downgrade_details', val) @@ -10273,8 +10332,8 @@ def team_folder_permanently_delete_details(cls, val): Create an instance of this class set to the ``team_folder_permanently_delete_details`` tag with value ``val``. - :param TeamFolderPermanentlyDeleteDetails val: - :rtype: EventDetails + :param team_log.TeamFolderPermanentlyDeleteDetails val: + :rtype: team_log.EventDetails """ return cls('team_folder_permanently_delete_details', val) @@ -10284,8 +10343,8 @@ def team_folder_rename_details(cls, val): Create an instance of this class set to the ``team_folder_rename_details`` tag with value ``val``. - :param TeamFolderRenameDetails val: - :rtype: EventDetails + :param team_log.TeamFolderRenameDetails val: + :rtype: team_log.EventDetails """ return cls('team_folder_rename_details', val) @@ -10295,8 +10354,8 @@ def team_selective_sync_settings_changed_details(cls, val): Create an instance of this class set to the ``team_selective_sync_settings_changed_details`` tag with value ``val``. - :param TeamSelectiveSyncSettingsChangedDetails val: - :rtype: EventDetails + :param team_log.TeamSelectiveSyncSettingsChangedDetails val: + :rtype: team_log.EventDetails """ return cls('team_selective_sync_settings_changed_details', val) @@ -10306,8 +10365,8 @@ def account_capture_change_policy_details(cls, val): Create an instance of this class set to the ``account_capture_change_policy_details`` tag with value ``val``. - :param AccountCaptureChangePolicyDetails val: - :rtype: EventDetails + :param team_log.AccountCaptureChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('account_capture_change_policy_details', val) @@ -10317,8 +10376,8 @@ def allow_download_disabled_details(cls, val): Create an instance of this class set to the ``allow_download_disabled_details`` tag with value ``val``. - :param AllowDownloadDisabledDetails val: - :rtype: EventDetails + :param team_log.AllowDownloadDisabledDetails val: + :rtype: team_log.EventDetails """ return cls('allow_download_disabled_details', val) @@ -10328,8 +10387,8 @@ def allow_download_enabled_details(cls, val): Create an instance of this class set to the ``allow_download_enabled_details`` tag with value ``val``. - :param AllowDownloadEnabledDetails val: - :rtype: EventDetails + :param team_log.AllowDownloadEnabledDetails val: + :rtype: team_log.EventDetails """ return cls('allow_download_enabled_details', val) @@ -10339,8 +10398,8 @@ def camera_uploads_policy_changed_details(cls, val): Create an instance of this class set to the ``camera_uploads_policy_changed_details`` tag with value ``val``. - :param CameraUploadsPolicyChangedDetails val: - :rtype: EventDetails + :param team_log.CameraUploadsPolicyChangedDetails val: + :rtype: team_log.EventDetails """ return cls('camera_uploads_policy_changed_details', val) @@ -10351,8 +10410,8 @@ def data_placement_restriction_change_policy_details(cls, val): ``data_placement_restriction_change_policy_details`` tag with value ``val``. - :param DataPlacementRestrictionChangePolicyDetails val: - :rtype: EventDetails + :param team_log.DataPlacementRestrictionChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('data_placement_restriction_change_policy_details', val) @@ -10363,8 +10422,8 @@ def data_placement_restriction_satisfy_policy_details(cls, val): ``data_placement_restriction_satisfy_policy_details`` tag with value ``val``. - :param DataPlacementRestrictionSatisfyPolicyDetails val: - :rtype: EventDetails + :param team_log.DataPlacementRestrictionSatisfyPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('data_placement_restriction_satisfy_policy_details', val) @@ -10375,8 +10434,8 @@ def device_approvals_change_desktop_policy_details(cls, val): ``device_approvals_change_desktop_policy_details`` tag with value ``val``. - :param DeviceApprovalsChangeDesktopPolicyDetails val: - :rtype: EventDetails + :param team_log.DeviceApprovalsChangeDesktopPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('device_approvals_change_desktop_policy_details', val) @@ -10387,8 +10446,8 @@ def device_approvals_change_mobile_policy_details(cls, val): ``device_approvals_change_mobile_policy_details`` tag with value ``val``. - :param DeviceApprovalsChangeMobilePolicyDetails val: - :rtype: EventDetails + :param team_log.DeviceApprovalsChangeMobilePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('device_approvals_change_mobile_policy_details', val) @@ -10399,8 +10458,8 @@ def device_approvals_change_overage_action_details(cls, val): ``device_approvals_change_overage_action_details`` tag with value ``val``. - :param DeviceApprovalsChangeOverageActionDetails val: - :rtype: EventDetails + :param team_log.DeviceApprovalsChangeOverageActionDetails val: + :rtype: team_log.EventDetails """ return cls('device_approvals_change_overage_action_details', val) @@ -10411,8 +10470,8 @@ def device_approvals_change_unlink_action_details(cls, val): ``device_approvals_change_unlink_action_details`` tag with value ``val``. - :param DeviceApprovalsChangeUnlinkActionDetails val: - :rtype: EventDetails + :param team_log.DeviceApprovalsChangeUnlinkActionDetails val: + :rtype: team_log.EventDetails """ return cls('device_approvals_change_unlink_action_details', val) @@ -10422,8 +10481,8 @@ def directory_restrictions_add_members_details(cls, val): Create an instance of this class set to the ``directory_restrictions_add_members_details`` tag with value ``val``. - :param DirectoryRestrictionsAddMembersDetails val: - :rtype: EventDetails + :param team_log.DirectoryRestrictionsAddMembersDetails val: + :rtype: team_log.EventDetails """ return cls('directory_restrictions_add_members_details', val) @@ -10434,8 +10493,8 @@ def directory_restrictions_remove_members_details(cls, val): ``directory_restrictions_remove_members_details`` tag with value ``val``. - :param DirectoryRestrictionsRemoveMembersDetails val: - :rtype: EventDetails + :param team_log.DirectoryRestrictionsRemoveMembersDetails val: + :rtype: team_log.EventDetails """ return cls('directory_restrictions_remove_members_details', val) @@ -10445,8 +10504,8 @@ def emm_add_exception_details(cls, val): Create an instance of this class set to the ``emm_add_exception_details`` tag with value ``val``. - :param EmmAddExceptionDetails val: - :rtype: EventDetails + :param team_log.EmmAddExceptionDetails val: + :rtype: team_log.EventDetails """ return cls('emm_add_exception_details', val) @@ -10456,8 +10515,8 @@ def emm_change_policy_details(cls, val): Create an instance of this class set to the ``emm_change_policy_details`` tag with value ``val``. - :param EmmChangePolicyDetails val: - :rtype: EventDetails + :param team_log.EmmChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('emm_change_policy_details', val) @@ -10467,8 +10526,8 @@ def emm_remove_exception_details(cls, val): Create an instance of this class set to the ``emm_remove_exception_details`` tag with value ``val``. - :param EmmRemoveExceptionDetails val: - :rtype: EventDetails + :param team_log.EmmRemoveExceptionDetails val: + :rtype: team_log.EventDetails """ return cls('emm_remove_exception_details', val) @@ -10479,8 +10538,8 @@ def extended_version_history_change_policy_details(cls, val): ``extended_version_history_change_policy_details`` tag with value ``val``. - :param ExtendedVersionHistoryChangePolicyDetails val: - :rtype: EventDetails + :param team_log.ExtendedVersionHistoryChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('extended_version_history_change_policy_details', val) @@ -10490,8 +10549,8 @@ def file_comments_change_policy_details(cls, val): Create an instance of this class set to the ``file_comments_change_policy_details`` tag with value ``val``. - :param FileCommentsChangePolicyDetails val: - :rtype: EventDetails + :param team_log.FileCommentsChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('file_comments_change_policy_details', val) @@ -10501,8 +10560,8 @@ def file_requests_change_policy_details(cls, val): Create an instance of this class set to the ``file_requests_change_policy_details`` tag with value ``val``. - :param FileRequestsChangePolicyDetails val: - :rtype: EventDetails + :param team_log.FileRequestsChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('file_requests_change_policy_details', val) @@ -10512,8 +10571,8 @@ def file_requests_emails_enabled_details(cls, val): Create an instance of this class set to the ``file_requests_emails_enabled_details`` tag with value ``val``. - :param FileRequestsEmailsEnabledDetails val: - :rtype: EventDetails + :param team_log.FileRequestsEmailsEnabledDetails val: + :rtype: team_log.EventDetails """ return cls('file_requests_emails_enabled_details', val) @@ -10524,8 +10583,8 @@ def file_requests_emails_restricted_to_team_only_details(cls, val): ``file_requests_emails_restricted_to_team_only_details`` tag with value ``val``. - :param FileRequestsEmailsRestrictedToTeamOnlyDetails val: - :rtype: EventDetails + :param team_log.FileRequestsEmailsRestrictedToTeamOnlyDetails val: + :rtype: team_log.EventDetails """ return cls('file_requests_emails_restricted_to_team_only_details', val) @@ -10535,8 +10594,8 @@ def google_sso_change_policy_details(cls, val): Create an instance of this class set to the ``google_sso_change_policy_details`` tag with value ``val``. - :param GoogleSsoChangePolicyDetails val: - :rtype: EventDetails + :param team_log.GoogleSsoChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('google_sso_change_policy_details', val) @@ -10546,8 +10605,8 @@ def group_user_management_change_policy_details(cls, val): Create an instance of this class set to the ``group_user_management_change_policy_details`` tag with value ``val``. - :param GroupUserManagementChangePolicyDetails val: - :rtype: EventDetails + :param team_log.GroupUserManagementChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('group_user_management_change_policy_details', val) @@ -10557,8 +10616,8 @@ def member_requests_change_policy_details(cls, val): Create an instance of this class set to the ``member_requests_change_policy_details`` tag with value ``val``. - :param MemberRequestsChangePolicyDetails val: - :rtype: EventDetails + :param team_log.MemberRequestsChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('member_requests_change_policy_details', val) @@ -10568,8 +10627,8 @@ def member_space_limits_add_exception_details(cls, val): Create an instance of this class set to the ``member_space_limits_add_exception_details`` tag with value ``val``. - :param MemberSpaceLimitsAddExceptionDetails val: - :rtype: EventDetails + :param team_log.MemberSpaceLimitsAddExceptionDetails val: + :rtype: team_log.EventDetails """ return cls('member_space_limits_add_exception_details', val) @@ -10580,8 +10639,8 @@ def member_space_limits_change_caps_type_policy_details(cls, val): ``member_space_limits_change_caps_type_policy_details`` tag with value ``val``. - :param MemberSpaceLimitsChangeCapsTypePolicyDetails val: - :rtype: EventDetails + :param team_log.MemberSpaceLimitsChangeCapsTypePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('member_space_limits_change_caps_type_policy_details', val) @@ -10591,8 +10650,8 @@ def member_space_limits_change_policy_details(cls, val): Create an instance of this class set to the ``member_space_limits_change_policy_details`` tag with value ``val``. - :param MemberSpaceLimitsChangePolicyDetails val: - :rtype: EventDetails + :param team_log.MemberSpaceLimitsChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('member_space_limits_change_policy_details', val) @@ -10602,8 +10661,8 @@ def member_space_limits_remove_exception_details(cls, val): Create an instance of this class set to the ``member_space_limits_remove_exception_details`` tag with value ``val``. - :param MemberSpaceLimitsRemoveExceptionDetails val: - :rtype: EventDetails + :param team_log.MemberSpaceLimitsRemoveExceptionDetails val: + :rtype: team_log.EventDetails """ return cls('member_space_limits_remove_exception_details', val) @@ -10613,8 +10672,8 @@ def member_suggestions_change_policy_details(cls, val): Create an instance of this class set to the ``member_suggestions_change_policy_details`` tag with value ``val``. - :param MemberSuggestionsChangePolicyDetails val: - :rtype: EventDetails + :param team_log.MemberSuggestionsChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('member_suggestions_change_policy_details', val) @@ -10624,8 +10683,8 @@ def microsoft_office_addin_change_policy_details(cls, val): Create an instance of this class set to the ``microsoft_office_addin_change_policy_details`` tag with value ``val``. - :param MicrosoftOfficeAddinChangePolicyDetails val: - :rtype: EventDetails + :param team_log.MicrosoftOfficeAddinChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('microsoft_office_addin_change_policy_details', val) @@ -10635,8 +10694,8 @@ def network_control_change_policy_details(cls, val): Create an instance of this class set to the ``network_control_change_policy_details`` tag with value ``val``. - :param NetworkControlChangePolicyDetails val: - :rtype: EventDetails + :param team_log.NetworkControlChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('network_control_change_policy_details', val) @@ -10646,8 +10705,8 @@ def paper_change_deployment_policy_details(cls, val): Create an instance of this class set to the ``paper_change_deployment_policy_details`` tag with value ``val``. - :param PaperChangeDeploymentPolicyDetails val: - :rtype: EventDetails + :param team_log.PaperChangeDeploymentPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('paper_change_deployment_policy_details', val) @@ -10657,8 +10716,8 @@ def paper_change_member_link_policy_details(cls, val): Create an instance of this class set to the ``paper_change_member_link_policy_details`` tag with value ``val``. - :param PaperChangeMemberLinkPolicyDetails val: - :rtype: EventDetails + :param team_log.PaperChangeMemberLinkPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('paper_change_member_link_policy_details', val) @@ -10668,8 +10727,8 @@ def paper_change_member_policy_details(cls, val): Create an instance of this class set to the ``paper_change_member_policy_details`` tag with value ``val``. - :param PaperChangeMemberPolicyDetails val: - :rtype: EventDetails + :param team_log.PaperChangeMemberPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('paper_change_member_policy_details', val) @@ -10679,8 +10738,8 @@ def paper_change_policy_details(cls, val): Create an instance of this class set to the ``paper_change_policy_details`` tag with value ``val``. - :param PaperChangePolicyDetails val: - :rtype: EventDetails + :param team_log.PaperChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('paper_change_policy_details', val) @@ -10690,8 +10749,8 @@ def paper_enabled_users_group_addition_details(cls, val): Create an instance of this class set to the ``paper_enabled_users_group_addition_details`` tag with value ``val``. - :param PaperEnabledUsersGroupAdditionDetails val: - :rtype: EventDetails + :param team_log.PaperEnabledUsersGroupAdditionDetails val: + :rtype: team_log.EventDetails """ return cls('paper_enabled_users_group_addition_details', val) @@ -10701,8 +10760,8 @@ def paper_enabled_users_group_removal_details(cls, val): Create an instance of this class set to the ``paper_enabled_users_group_removal_details`` tag with value ``val``. - :param PaperEnabledUsersGroupRemovalDetails val: - :rtype: EventDetails + :param team_log.PaperEnabledUsersGroupRemovalDetails val: + :rtype: team_log.EventDetails """ return cls('paper_enabled_users_group_removal_details', val) @@ -10712,8 +10771,8 @@ def permanent_delete_change_policy_details(cls, val): Create an instance of this class set to the ``permanent_delete_change_policy_details`` tag with value ``val``. - :param PermanentDeleteChangePolicyDetails val: - :rtype: EventDetails + :param team_log.PermanentDeleteChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('permanent_delete_change_policy_details', val) @@ -10723,8 +10782,8 @@ def sharing_change_folder_join_policy_details(cls, val): Create an instance of this class set to the ``sharing_change_folder_join_policy_details`` tag with value ``val``. - :param SharingChangeFolderJoinPolicyDetails val: - :rtype: EventDetails + :param team_log.SharingChangeFolderJoinPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('sharing_change_folder_join_policy_details', val) @@ -10734,8 +10793,8 @@ def sharing_change_link_policy_details(cls, val): Create an instance of this class set to the ``sharing_change_link_policy_details`` tag with value ``val``. - :param SharingChangeLinkPolicyDetails val: - :rtype: EventDetails + :param team_log.SharingChangeLinkPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('sharing_change_link_policy_details', val) @@ -10745,8 +10804,8 @@ def sharing_change_member_policy_details(cls, val): Create an instance of this class set to the ``sharing_change_member_policy_details`` tag with value ``val``. - :param SharingChangeMemberPolicyDetails val: - :rtype: EventDetails + :param team_log.SharingChangeMemberPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('sharing_change_member_policy_details', val) @@ -10756,8 +10815,8 @@ def showcase_change_download_policy_details(cls, val): Create an instance of this class set to the ``showcase_change_download_policy_details`` tag with value ``val``. - :param ShowcaseChangeDownloadPolicyDetails val: - :rtype: EventDetails + :param team_log.ShowcaseChangeDownloadPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_change_download_policy_details', val) @@ -10767,8 +10826,8 @@ def showcase_change_enabled_policy_details(cls, val): Create an instance of this class set to the ``showcase_change_enabled_policy_details`` tag with value ``val``. - :param ShowcaseChangeEnabledPolicyDetails val: - :rtype: EventDetails + :param team_log.ShowcaseChangeEnabledPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_change_enabled_policy_details', val) @@ -10779,8 +10838,8 @@ def showcase_change_external_sharing_policy_details(cls, val): ``showcase_change_external_sharing_policy_details`` tag with value ``val``. - :param ShowcaseChangeExternalSharingPolicyDetails val: - :rtype: EventDetails + :param team_log.ShowcaseChangeExternalSharingPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('showcase_change_external_sharing_policy_details', val) @@ -10790,8 +10849,8 @@ def smart_sync_change_policy_details(cls, val): Create an instance of this class set to the ``smart_sync_change_policy_details`` tag with value ``val``. - :param SmartSyncChangePolicyDetails val: - :rtype: EventDetails + :param team_log.SmartSyncChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('smart_sync_change_policy_details', val) @@ -10801,8 +10860,8 @@ def smart_sync_not_opt_out_details(cls, val): Create an instance of this class set to the ``smart_sync_not_opt_out_details`` tag with value ``val``. - :param SmartSyncNotOptOutDetails val: - :rtype: EventDetails + :param team_log.SmartSyncNotOptOutDetails val: + :rtype: team_log.EventDetails """ return cls('smart_sync_not_opt_out_details', val) @@ -10812,8 +10871,8 @@ def smart_sync_opt_out_details(cls, val): Create an instance of this class set to the ``smart_sync_opt_out_details`` tag with value ``val``. - :param SmartSyncOptOutDetails val: - :rtype: EventDetails + :param team_log.SmartSyncOptOutDetails val: + :rtype: team_log.EventDetails """ return cls('smart_sync_opt_out_details', val) @@ -10823,8 +10882,8 @@ def sso_change_policy_details(cls, val): Create an instance of this class set to the ``sso_change_policy_details`` tag with value ``val``. - :param SsoChangePolicyDetails val: - :rtype: EventDetails + :param team_log.SsoChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('sso_change_policy_details', val) @@ -10834,8 +10893,8 @@ def team_selective_sync_policy_changed_details(cls, val): Create an instance of this class set to the ``team_selective_sync_policy_changed_details`` tag with value ``val``. - :param TeamSelectiveSyncPolicyChangedDetails val: - :rtype: EventDetails + :param team_log.TeamSelectiveSyncPolicyChangedDetails val: + :rtype: team_log.EventDetails """ return cls('team_selective_sync_policy_changed_details', val) @@ -10845,8 +10904,8 @@ def tfa_change_policy_details(cls, val): Create an instance of this class set to the ``tfa_change_policy_details`` tag with value ``val``. - :param TfaChangePolicyDetails val: - :rtype: EventDetails + :param team_log.TfaChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('tfa_change_policy_details', val) @@ -10856,8 +10915,8 @@ def two_account_change_policy_details(cls, val): Create an instance of this class set to the ``two_account_change_policy_details`` tag with value ``val``. - :param TwoAccountChangePolicyDetails val: - :rtype: EventDetails + :param team_log.TwoAccountChangePolicyDetails val: + :rtype: team_log.EventDetails """ return cls('two_account_change_policy_details', val) @@ -10867,8 +10926,8 @@ def viewer_info_policy_changed_details(cls, val): Create an instance of this class set to the ``viewer_info_policy_changed_details`` tag with value ``val``. - :param ViewerInfoPolicyChangedDetails val: - :rtype: EventDetails + :param team_log.ViewerInfoPolicyChangedDetails val: + :rtype: team_log.EventDetails """ return cls('viewer_info_policy_changed_details', val) @@ -10879,8 +10938,8 @@ def web_sessions_change_fixed_length_policy_details(cls, val): ``web_sessions_change_fixed_length_policy_details`` tag with value ``val``. - :param WebSessionsChangeFixedLengthPolicyDetails val: - :rtype: EventDetails + :param team_log.WebSessionsChangeFixedLengthPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('web_sessions_change_fixed_length_policy_details', val) @@ -10891,8 +10950,8 @@ def web_sessions_change_idle_length_policy_details(cls, val): ``web_sessions_change_idle_length_policy_details`` tag with value ``val``. - :param WebSessionsChangeIdleLengthPolicyDetails val: - :rtype: EventDetails + :param team_log.WebSessionsChangeIdleLengthPolicyDetails val: + :rtype: team_log.EventDetails """ return cls('web_sessions_change_idle_length_policy_details', val) @@ -10902,8 +10961,8 @@ def team_merge_from_details(cls, val): Create an instance of this class set to the ``team_merge_from_details`` tag with value ``val``. - :param TeamMergeFromDetails val: - :rtype: EventDetails + :param team_log.TeamMergeFromDetails val: + :rtype: team_log.EventDetails """ return cls('team_merge_from_details', val) @@ -10913,8 +10972,8 @@ def team_merge_to_details(cls, val): Create an instance of this class set to the ``team_merge_to_details`` tag with value ``val``. - :param TeamMergeToDetails val: - :rtype: EventDetails + :param team_log.TeamMergeToDetails val: + :rtype: team_log.EventDetails """ return cls('team_merge_to_details', val) @@ -10924,8 +10983,8 @@ def team_profile_add_logo_details(cls, val): Create an instance of this class set to the ``team_profile_add_logo_details`` tag with value ``val``. - :param TeamProfileAddLogoDetails val: - :rtype: EventDetails + :param team_log.TeamProfileAddLogoDetails val: + :rtype: team_log.EventDetails """ return cls('team_profile_add_logo_details', val) @@ -10935,8 +10994,8 @@ def team_profile_change_default_language_details(cls, val): Create an instance of this class set to the ``team_profile_change_default_language_details`` tag with value ``val``. - :param TeamProfileChangeDefaultLanguageDetails val: - :rtype: EventDetails + :param team_log.TeamProfileChangeDefaultLanguageDetails val: + :rtype: team_log.EventDetails """ return cls('team_profile_change_default_language_details', val) @@ -10946,8 +11005,8 @@ def team_profile_change_logo_details(cls, val): Create an instance of this class set to the ``team_profile_change_logo_details`` tag with value ``val``. - :param TeamProfileChangeLogoDetails val: - :rtype: EventDetails + :param team_log.TeamProfileChangeLogoDetails val: + :rtype: team_log.EventDetails """ return cls('team_profile_change_logo_details', val) @@ -10957,8 +11016,8 @@ def team_profile_change_name_details(cls, val): Create an instance of this class set to the ``team_profile_change_name_details`` tag with value ``val``. - :param TeamProfileChangeNameDetails val: - :rtype: EventDetails + :param team_log.TeamProfileChangeNameDetails val: + :rtype: team_log.EventDetails """ return cls('team_profile_change_name_details', val) @@ -10968,8 +11027,8 @@ def team_profile_remove_logo_details(cls, val): Create an instance of this class set to the ``team_profile_remove_logo_details`` tag with value ``val``. - :param TeamProfileRemoveLogoDetails val: - :rtype: EventDetails + :param team_log.TeamProfileRemoveLogoDetails val: + :rtype: team_log.EventDetails """ return cls('team_profile_remove_logo_details', val) @@ -10979,8 +11038,8 @@ def tfa_add_backup_phone_details(cls, val): Create an instance of this class set to the ``tfa_add_backup_phone_details`` tag with value ``val``. - :param TfaAddBackupPhoneDetails val: - :rtype: EventDetails + :param team_log.TfaAddBackupPhoneDetails val: + :rtype: team_log.EventDetails """ return cls('tfa_add_backup_phone_details', val) @@ -10990,8 +11049,8 @@ def tfa_add_security_key_details(cls, val): Create an instance of this class set to the ``tfa_add_security_key_details`` tag with value ``val``. - :param TfaAddSecurityKeyDetails val: - :rtype: EventDetails + :param team_log.TfaAddSecurityKeyDetails val: + :rtype: team_log.EventDetails """ return cls('tfa_add_security_key_details', val) @@ -11001,8 +11060,8 @@ def tfa_change_backup_phone_details(cls, val): Create an instance of this class set to the ``tfa_change_backup_phone_details`` tag with value ``val``. - :param TfaChangeBackupPhoneDetails val: - :rtype: EventDetails + :param team_log.TfaChangeBackupPhoneDetails val: + :rtype: team_log.EventDetails """ return cls('tfa_change_backup_phone_details', val) @@ -11012,8 +11071,8 @@ def tfa_change_status_details(cls, val): Create an instance of this class set to the ``tfa_change_status_details`` tag with value ``val``. - :param TfaChangeStatusDetails val: - :rtype: EventDetails + :param team_log.TfaChangeStatusDetails val: + :rtype: team_log.EventDetails """ return cls('tfa_change_status_details', val) @@ -11023,8 +11082,8 @@ def tfa_remove_backup_phone_details(cls, val): Create an instance of this class set to the ``tfa_remove_backup_phone_details`` tag with value ``val``. - :param TfaRemoveBackupPhoneDetails val: - :rtype: EventDetails + :param team_log.TfaRemoveBackupPhoneDetails val: + :rtype: team_log.EventDetails """ return cls('tfa_remove_backup_phone_details', val) @@ -11034,8 +11093,8 @@ def tfa_remove_security_key_details(cls, val): Create an instance of this class set to the ``tfa_remove_security_key_details`` tag with value ``val``. - :param TfaRemoveSecurityKeyDetails val: - :rtype: EventDetails + :param team_log.TfaRemoveSecurityKeyDetails val: + :rtype: team_log.EventDetails """ return cls('tfa_remove_security_key_details', val) @@ -11045,8 +11104,8 @@ def tfa_reset_details(cls, val): Create an instance of this class set to the ``tfa_reset_details`` tag with value ``val``. - :param TfaResetDetails val: - :rtype: EventDetails + :param team_log.TfaResetDetails val: + :rtype: team_log.EventDetails """ return cls('tfa_reset_details', val) @@ -11056,8 +11115,8 @@ def missing_details(cls, val): Create an instance of this class set to the ``missing_details`` tag with value ``val``. - :param MissingDetails val: - :rtype: EventDetails + :param team_log.MissingDetails val: + :rtype: team_log.EventDetails """ return cls('missing_details', val) @@ -13569,7 +13628,7 @@ def get_app_link_team_details(self): """ Only call this if :meth:`is_app_link_team_details` is true. - :rtype: AppLinkTeamDetails + :rtype: team_log.AppLinkTeamDetails """ if not self.is_app_link_team_details(): raise AttributeError("tag 'app_link_team_details' not set") @@ -13579,7 +13638,7 @@ def get_app_link_user_details(self): """ Only call this if :meth:`is_app_link_user_details` is true. - :rtype: AppLinkUserDetails + :rtype: team_log.AppLinkUserDetails """ if not self.is_app_link_user_details(): raise AttributeError("tag 'app_link_user_details' not set") @@ -13589,7 +13648,7 @@ def get_app_unlink_team_details(self): """ Only call this if :meth:`is_app_unlink_team_details` is true. - :rtype: AppUnlinkTeamDetails + :rtype: team_log.AppUnlinkTeamDetails """ if not self.is_app_unlink_team_details(): raise AttributeError("tag 'app_unlink_team_details' not set") @@ -13599,7 +13658,7 @@ def get_app_unlink_user_details(self): """ Only call this if :meth:`is_app_unlink_user_details` is true. - :rtype: AppUnlinkUserDetails + :rtype: team_log.AppUnlinkUserDetails """ if not self.is_app_unlink_user_details(): raise AttributeError("tag 'app_unlink_user_details' not set") @@ -13609,7 +13668,7 @@ def get_file_add_comment_details(self): """ Only call this if :meth:`is_file_add_comment_details` is true. - :rtype: FileAddCommentDetails + :rtype: team_log.FileAddCommentDetails """ if not self.is_file_add_comment_details(): raise AttributeError("tag 'file_add_comment_details' not set") @@ -13619,7 +13678,7 @@ def get_file_change_comment_subscription_details(self): """ Only call this if :meth:`is_file_change_comment_subscription_details` is true. - :rtype: FileChangeCommentSubscriptionDetails + :rtype: team_log.FileChangeCommentSubscriptionDetails """ if not self.is_file_change_comment_subscription_details(): raise AttributeError("tag 'file_change_comment_subscription_details' not set") @@ -13629,7 +13688,7 @@ def get_file_delete_comment_details(self): """ Only call this if :meth:`is_file_delete_comment_details` is true. - :rtype: FileDeleteCommentDetails + :rtype: team_log.FileDeleteCommentDetails """ if not self.is_file_delete_comment_details(): raise AttributeError("tag 'file_delete_comment_details' not set") @@ -13639,7 +13698,7 @@ def get_file_edit_comment_details(self): """ Only call this if :meth:`is_file_edit_comment_details` is true. - :rtype: FileEditCommentDetails + :rtype: team_log.FileEditCommentDetails """ if not self.is_file_edit_comment_details(): raise AttributeError("tag 'file_edit_comment_details' not set") @@ -13649,7 +13708,7 @@ def get_file_like_comment_details(self): """ Only call this if :meth:`is_file_like_comment_details` is true. - :rtype: FileLikeCommentDetails + :rtype: team_log.FileLikeCommentDetails """ if not self.is_file_like_comment_details(): raise AttributeError("tag 'file_like_comment_details' not set") @@ -13659,7 +13718,7 @@ def get_file_resolve_comment_details(self): """ Only call this if :meth:`is_file_resolve_comment_details` is true. - :rtype: FileResolveCommentDetails + :rtype: team_log.FileResolveCommentDetails """ if not self.is_file_resolve_comment_details(): raise AttributeError("tag 'file_resolve_comment_details' not set") @@ -13669,7 +13728,7 @@ def get_file_unlike_comment_details(self): """ Only call this if :meth:`is_file_unlike_comment_details` is true. - :rtype: FileUnlikeCommentDetails + :rtype: team_log.FileUnlikeCommentDetails """ if not self.is_file_unlike_comment_details(): raise AttributeError("tag 'file_unlike_comment_details' not set") @@ -13679,7 +13738,7 @@ def get_file_unresolve_comment_details(self): """ Only call this if :meth:`is_file_unresolve_comment_details` is true. - :rtype: FileUnresolveCommentDetails + :rtype: team_log.FileUnresolveCommentDetails """ if not self.is_file_unresolve_comment_details(): raise AttributeError("tag 'file_unresolve_comment_details' not set") @@ -13689,7 +13748,7 @@ def get_device_change_ip_desktop_details(self): """ Only call this if :meth:`is_device_change_ip_desktop_details` is true. - :rtype: DeviceChangeIpDesktopDetails + :rtype: team_log.DeviceChangeIpDesktopDetails """ if not self.is_device_change_ip_desktop_details(): raise AttributeError("tag 'device_change_ip_desktop_details' not set") @@ -13699,7 +13758,7 @@ def get_device_change_ip_mobile_details(self): """ Only call this if :meth:`is_device_change_ip_mobile_details` is true. - :rtype: DeviceChangeIpMobileDetails + :rtype: team_log.DeviceChangeIpMobileDetails """ if not self.is_device_change_ip_mobile_details(): raise AttributeError("tag 'device_change_ip_mobile_details' not set") @@ -13709,7 +13768,7 @@ def get_device_change_ip_web_details(self): """ Only call this if :meth:`is_device_change_ip_web_details` is true. - :rtype: DeviceChangeIpWebDetails + :rtype: team_log.DeviceChangeIpWebDetails """ if not self.is_device_change_ip_web_details(): raise AttributeError("tag 'device_change_ip_web_details' not set") @@ -13719,7 +13778,7 @@ def get_device_delete_on_unlink_fail_details(self): """ Only call this if :meth:`is_device_delete_on_unlink_fail_details` is true. - :rtype: DeviceDeleteOnUnlinkFailDetails + :rtype: team_log.DeviceDeleteOnUnlinkFailDetails """ if not self.is_device_delete_on_unlink_fail_details(): raise AttributeError("tag 'device_delete_on_unlink_fail_details' not set") @@ -13729,7 +13788,7 @@ def get_device_delete_on_unlink_success_details(self): """ Only call this if :meth:`is_device_delete_on_unlink_success_details` is true. - :rtype: DeviceDeleteOnUnlinkSuccessDetails + :rtype: team_log.DeviceDeleteOnUnlinkSuccessDetails """ if not self.is_device_delete_on_unlink_success_details(): raise AttributeError("tag 'device_delete_on_unlink_success_details' not set") @@ -13739,7 +13798,7 @@ def get_device_link_fail_details(self): """ Only call this if :meth:`is_device_link_fail_details` is true. - :rtype: DeviceLinkFailDetails + :rtype: team_log.DeviceLinkFailDetails """ if not self.is_device_link_fail_details(): raise AttributeError("tag 'device_link_fail_details' not set") @@ -13749,7 +13808,7 @@ def get_device_link_success_details(self): """ Only call this if :meth:`is_device_link_success_details` is true. - :rtype: DeviceLinkSuccessDetails + :rtype: team_log.DeviceLinkSuccessDetails """ if not self.is_device_link_success_details(): raise AttributeError("tag 'device_link_success_details' not set") @@ -13759,7 +13818,7 @@ def get_device_management_disabled_details(self): """ Only call this if :meth:`is_device_management_disabled_details` is true. - :rtype: DeviceManagementDisabledDetails + :rtype: team_log.DeviceManagementDisabledDetails """ if not self.is_device_management_disabled_details(): raise AttributeError("tag 'device_management_disabled_details' not set") @@ -13769,7 +13828,7 @@ def get_device_management_enabled_details(self): """ Only call this if :meth:`is_device_management_enabled_details` is true. - :rtype: DeviceManagementEnabledDetails + :rtype: team_log.DeviceManagementEnabledDetails """ if not self.is_device_management_enabled_details(): raise AttributeError("tag 'device_management_enabled_details' not set") @@ -13779,7 +13838,7 @@ def get_device_unlink_details(self): """ Only call this if :meth:`is_device_unlink_details` is true. - :rtype: DeviceUnlinkDetails + :rtype: team_log.DeviceUnlinkDetails """ if not self.is_device_unlink_details(): raise AttributeError("tag 'device_unlink_details' not set") @@ -13789,7 +13848,7 @@ def get_emm_refresh_auth_token_details(self): """ Only call this if :meth:`is_emm_refresh_auth_token_details` is true. - :rtype: EmmRefreshAuthTokenDetails + :rtype: team_log.EmmRefreshAuthTokenDetails """ if not self.is_emm_refresh_auth_token_details(): raise AttributeError("tag 'emm_refresh_auth_token_details' not set") @@ -13799,7 +13858,7 @@ def get_account_capture_change_availability_details(self): """ Only call this if :meth:`is_account_capture_change_availability_details` is true. - :rtype: AccountCaptureChangeAvailabilityDetails + :rtype: team_log.AccountCaptureChangeAvailabilityDetails """ if not self.is_account_capture_change_availability_details(): raise AttributeError("tag 'account_capture_change_availability_details' not set") @@ -13809,7 +13868,7 @@ def get_account_capture_migrate_account_details(self): """ Only call this if :meth:`is_account_capture_migrate_account_details` is true. - :rtype: AccountCaptureMigrateAccountDetails + :rtype: team_log.AccountCaptureMigrateAccountDetails """ if not self.is_account_capture_migrate_account_details(): raise AttributeError("tag 'account_capture_migrate_account_details' not set") @@ -13819,7 +13878,7 @@ def get_account_capture_notification_emails_sent_details(self): """ Only call this if :meth:`is_account_capture_notification_emails_sent_details` is true. - :rtype: AccountCaptureNotificationEmailsSentDetails + :rtype: team_log.AccountCaptureNotificationEmailsSentDetails """ if not self.is_account_capture_notification_emails_sent_details(): raise AttributeError("tag 'account_capture_notification_emails_sent_details' not set") @@ -13829,7 +13888,7 @@ def get_account_capture_relinquish_account_details(self): """ Only call this if :meth:`is_account_capture_relinquish_account_details` is true. - :rtype: AccountCaptureRelinquishAccountDetails + :rtype: team_log.AccountCaptureRelinquishAccountDetails """ if not self.is_account_capture_relinquish_account_details(): raise AttributeError("tag 'account_capture_relinquish_account_details' not set") @@ -13839,7 +13898,7 @@ def get_disabled_domain_invites_details(self): """ Only call this if :meth:`is_disabled_domain_invites_details` is true. - :rtype: DisabledDomainInvitesDetails + :rtype: team_log.DisabledDomainInvitesDetails """ if not self.is_disabled_domain_invites_details(): raise AttributeError("tag 'disabled_domain_invites_details' not set") @@ -13849,7 +13908,7 @@ def get_domain_invites_approve_request_to_join_team_details(self): """ Only call this if :meth:`is_domain_invites_approve_request_to_join_team_details` is true. - :rtype: DomainInvitesApproveRequestToJoinTeamDetails + :rtype: team_log.DomainInvitesApproveRequestToJoinTeamDetails """ if not self.is_domain_invites_approve_request_to_join_team_details(): raise AttributeError("tag 'domain_invites_approve_request_to_join_team_details' not set") @@ -13859,7 +13918,7 @@ def get_domain_invites_decline_request_to_join_team_details(self): """ Only call this if :meth:`is_domain_invites_decline_request_to_join_team_details` is true. - :rtype: DomainInvitesDeclineRequestToJoinTeamDetails + :rtype: team_log.DomainInvitesDeclineRequestToJoinTeamDetails """ if not self.is_domain_invites_decline_request_to_join_team_details(): raise AttributeError("tag 'domain_invites_decline_request_to_join_team_details' not set") @@ -13869,7 +13928,7 @@ def get_domain_invites_email_existing_users_details(self): """ Only call this if :meth:`is_domain_invites_email_existing_users_details` is true. - :rtype: DomainInvitesEmailExistingUsersDetails + :rtype: team_log.DomainInvitesEmailExistingUsersDetails """ if not self.is_domain_invites_email_existing_users_details(): raise AttributeError("tag 'domain_invites_email_existing_users_details' not set") @@ -13879,7 +13938,7 @@ def get_domain_invites_request_to_join_team_details(self): """ Only call this if :meth:`is_domain_invites_request_to_join_team_details` is true. - :rtype: DomainInvitesRequestToJoinTeamDetails + :rtype: team_log.DomainInvitesRequestToJoinTeamDetails """ if not self.is_domain_invites_request_to_join_team_details(): raise AttributeError("tag 'domain_invites_request_to_join_team_details' not set") @@ -13889,7 +13948,7 @@ def get_domain_invites_set_invite_new_user_pref_to_no_details(self): """ Only call this if :meth:`is_domain_invites_set_invite_new_user_pref_to_no_details` is true. - :rtype: DomainInvitesSetInviteNewUserPrefToNoDetails + :rtype: team_log.DomainInvitesSetInviteNewUserPrefToNoDetails """ if not self.is_domain_invites_set_invite_new_user_pref_to_no_details(): raise AttributeError("tag 'domain_invites_set_invite_new_user_pref_to_no_details' not set") @@ -13899,7 +13958,7 @@ def get_domain_invites_set_invite_new_user_pref_to_yes_details(self): """ Only call this if :meth:`is_domain_invites_set_invite_new_user_pref_to_yes_details` is true. - :rtype: DomainInvitesSetInviteNewUserPrefToYesDetails + :rtype: team_log.DomainInvitesSetInviteNewUserPrefToYesDetails """ if not self.is_domain_invites_set_invite_new_user_pref_to_yes_details(): raise AttributeError("tag 'domain_invites_set_invite_new_user_pref_to_yes_details' not set") @@ -13909,7 +13968,7 @@ def get_domain_verification_add_domain_fail_details(self): """ Only call this if :meth:`is_domain_verification_add_domain_fail_details` is true. - :rtype: DomainVerificationAddDomainFailDetails + :rtype: team_log.DomainVerificationAddDomainFailDetails """ if not self.is_domain_verification_add_domain_fail_details(): raise AttributeError("tag 'domain_verification_add_domain_fail_details' not set") @@ -13919,7 +13978,7 @@ def get_domain_verification_add_domain_success_details(self): """ Only call this if :meth:`is_domain_verification_add_domain_success_details` is true. - :rtype: DomainVerificationAddDomainSuccessDetails + :rtype: team_log.DomainVerificationAddDomainSuccessDetails """ if not self.is_domain_verification_add_domain_success_details(): raise AttributeError("tag 'domain_verification_add_domain_success_details' not set") @@ -13929,7 +13988,7 @@ def get_domain_verification_remove_domain_details(self): """ Only call this if :meth:`is_domain_verification_remove_domain_details` is true. - :rtype: DomainVerificationRemoveDomainDetails + :rtype: team_log.DomainVerificationRemoveDomainDetails """ if not self.is_domain_verification_remove_domain_details(): raise AttributeError("tag 'domain_verification_remove_domain_details' not set") @@ -13939,7 +13998,7 @@ def get_enabled_domain_invites_details(self): """ Only call this if :meth:`is_enabled_domain_invites_details` is true. - :rtype: EnabledDomainInvitesDetails + :rtype: team_log.EnabledDomainInvitesDetails """ if not self.is_enabled_domain_invites_details(): raise AttributeError("tag 'enabled_domain_invites_details' not set") @@ -13949,7 +14008,7 @@ def get_create_folder_details(self): """ Only call this if :meth:`is_create_folder_details` is true. - :rtype: CreateFolderDetails + :rtype: team_log.CreateFolderDetails """ if not self.is_create_folder_details(): raise AttributeError("tag 'create_folder_details' not set") @@ -13959,7 +14018,7 @@ def get_file_add_details(self): """ Only call this if :meth:`is_file_add_details` is true. - :rtype: FileAddDetails + :rtype: team_log.FileAddDetails """ if not self.is_file_add_details(): raise AttributeError("tag 'file_add_details' not set") @@ -13969,7 +14028,7 @@ def get_file_copy_details(self): """ Only call this if :meth:`is_file_copy_details` is true. - :rtype: FileCopyDetails + :rtype: team_log.FileCopyDetails """ if not self.is_file_copy_details(): raise AttributeError("tag 'file_copy_details' not set") @@ -13979,7 +14038,7 @@ def get_file_delete_details(self): """ Only call this if :meth:`is_file_delete_details` is true. - :rtype: FileDeleteDetails + :rtype: team_log.FileDeleteDetails """ if not self.is_file_delete_details(): raise AttributeError("tag 'file_delete_details' not set") @@ -13989,7 +14048,7 @@ def get_file_download_details(self): """ Only call this if :meth:`is_file_download_details` is true. - :rtype: FileDownloadDetails + :rtype: team_log.FileDownloadDetails """ if not self.is_file_download_details(): raise AttributeError("tag 'file_download_details' not set") @@ -13999,7 +14058,7 @@ def get_file_edit_details(self): """ Only call this if :meth:`is_file_edit_details` is true. - :rtype: FileEditDetails + :rtype: team_log.FileEditDetails """ if not self.is_file_edit_details(): raise AttributeError("tag 'file_edit_details' not set") @@ -14009,7 +14068,7 @@ def get_file_get_copy_reference_details(self): """ Only call this if :meth:`is_file_get_copy_reference_details` is true. - :rtype: FileGetCopyReferenceDetails + :rtype: team_log.FileGetCopyReferenceDetails """ if not self.is_file_get_copy_reference_details(): raise AttributeError("tag 'file_get_copy_reference_details' not set") @@ -14019,7 +14078,7 @@ def get_file_move_details(self): """ Only call this if :meth:`is_file_move_details` is true. - :rtype: FileMoveDetails + :rtype: team_log.FileMoveDetails """ if not self.is_file_move_details(): raise AttributeError("tag 'file_move_details' not set") @@ -14029,7 +14088,7 @@ def get_file_permanently_delete_details(self): """ Only call this if :meth:`is_file_permanently_delete_details` is true. - :rtype: FilePermanentlyDeleteDetails + :rtype: team_log.FilePermanentlyDeleteDetails """ if not self.is_file_permanently_delete_details(): raise AttributeError("tag 'file_permanently_delete_details' not set") @@ -14039,7 +14098,7 @@ def get_file_preview_details(self): """ Only call this if :meth:`is_file_preview_details` is true. - :rtype: FilePreviewDetails + :rtype: team_log.FilePreviewDetails """ if not self.is_file_preview_details(): raise AttributeError("tag 'file_preview_details' not set") @@ -14049,7 +14108,7 @@ def get_file_rename_details(self): """ Only call this if :meth:`is_file_rename_details` is true. - :rtype: FileRenameDetails + :rtype: team_log.FileRenameDetails """ if not self.is_file_rename_details(): raise AttributeError("tag 'file_rename_details' not set") @@ -14059,7 +14118,7 @@ def get_file_restore_details(self): """ Only call this if :meth:`is_file_restore_details` is true. - :rtype: FileRestoreDetails + :rtype: team_log.FileRestoreDetails """ if not self.is_file_restore_details(): raise AttributeError("tag 'file_restore_details' not set") @@ -14069,7 +14128,7 @@ def get_file_revert_details(self): """ Only call this if :meth:`is_file_revert_details` is true. - :rtype: FileRevertDetails + :rtype: team_log.FileRevertDetails """ if not self.is_file_revert_details(): raise AttributeError("tag 'file_revert_details' not set") @@ -14079,7 +14138,7 @@ def get_file_rollback_changes_details(self): """ Only call this if :meth:`is_file_rollback_changes_details` is true. - :rtype: FileRollbackChangesDetails + :rtype: team_log.FileRollbackChangesDetails """ if not self.is_file_rollback_changes_details(): raise AttributeError("tag 'file_rollback_changes_details' not set") @@ -14089,7 +14148,7 @@ def get_file_save_copy_reference_details(self): """ Only call this if :meth:`is_file_save_copy_reference_details` is true. - :rtype: FileSaveCopyReferenceDetails + :rtype: team_log.FileSaveCopyReferenceDetails """ if not self.is_file_save_copy_reference_details(): raise AttributeError("tag 'file_save_copy_reference_details' not set") @@ -14099,7 +14158,7 @@ def get_file_request_change_details(self): """ Only call this if :meth:`is_file_request_change_details` is true. - :rtype: FileRequestChangeDetails + :rtype: team_log.FileRequestChangeDetails """ if not self.is_file_request_change_details(): raise AttributeError("tag 'file_request_change_details' not set") @@ -14109,7 +14168,7 @@ def get_file_request_close_details(self): """ Only call this if :meth:`is_file_request_close_details` is true. - :rtype: FileRequestCloseDetails + :rtype: team_log.FileRequestCloseDetails """ if not self.is_file_request_close_details(): raise AttributeError("tag 'file_request_close_details' not set") @@ -14119,7 +14178,7 @@ def get_file_request_create_details(self): """ Only call this if :meth:`is_file_request_create_details` is true. - :rtype: FileRequestCreateDetails + :rtype: team_log.FileRequestCreateDetails """ if not self.is_file_request_create_details(): raise AttributeError("tag 'file_request_create_details' not set") @@ -14129,7 +14188,7 @@ def get_file_request_receive_file_details(self): """ Only call this if :meth:`is_file_request_receive_file_details` is true. - :rtype: FileRequestReceiveFileDetails + :rtype: team_log.FileRequestReceiveFileDetails """ if not self.is_file_request_receive_file_details(): raise AttributeError("tag 'file_request_receive_file_details' not set") @@ -14139,7 +14198,7 @@ def get_group_add_external_id_details(self): """ Only call this if :meth:`is_group_add_external_id_details` is true. - :rtype: GroupAddExternalIdDetails + :rtype: team_log.GroupAddExternalIdDetails """ if not self.is_group_add_external_id_details(): raise AttributeError("tag 'group_add_external_id_details' not set") @@ -14149,7 +14208,7 @@ def get_group_add_member_details(self): """ Only call this if :meth:`is_group_add_member_details` is true. - :rtype: GroupAddMemberDetails + :rtype: team_log.GroupAddMemberDetails """ if not self.is_group_add_member_details(): raise AttributeError("tag 'group_add_member_details' not set") @@ -14159,7 +14218,7 @@ def get_group_change_external_id_details(self): """ Only call this if :meth:`is_group_change_external_id_details` is true. - :rtype: GroupChangeExternalIdDetails + :rtype: team_log.GroupChangeExternalIdDetails """ if not self.is_group_change_external_id_details(): raise AttributeError("tag 'group_change_external_id_details' not set") @@ -14169,7 +14228,7 @@ def get_group_change_management_type_details(self): """ Only call this if :meth:`is_group_change_management_type_details` is true. - :rtype: GroupChangeManagementTypeDetails + :rtype: team_log.GroupChangeManagementTypeDetails """ if not self.is_group_change_management_type_details(): raise AttributeError("tag 'group_change_management_type_details' not set") @@ -14179,7 +14238,7 @@ def get_group_change_member_role_details(self): """ Only call this if :meth:`is_group_change_member_role_details` is true. - :rtype: GroupChangeMemberRoleDetails + :rtype: team_log.GroupChangeMemberRoleDetails """ if not self.is_group_change_member_role_details(): raise AttributeError("tag 'group_change_member_role_details' not set") @@ -14189,7 +14248,7 @@ def get_group_create_details(self): """ Only call this if :meth:`is_group_create_details` is true. - :rtype: GroupCreateDetails + :rtype: team_log.GroupCreateDetails """ if not self.is_group_create_details(): raise AttributeError("tag 'group_create_details' not set") @@ -14199,7 +14258,7 @@ def get_group_delete_details(self): """ Only call this if :meth:`is_group_delete_details` is true. - :rtype: GroupDeleteDetails + :rtype: team_log.GroupDeleteDetails """ if not self.is_group_delete_details(): raise AttributeError("tag 'group_delete_details' not set") @@ -14209,7 +14268,7 @@ def get_group_description_updated_details(self): """ Only call this if :meth:`is_group_description_updated_details` is true. - :rtype: GroupDescriptionUpdatedDetails + :rtype: team_log.GroupDescriptionUpdatedDetails """ if not self.is_group_description_updated_details(): raise AttributeError("tag 'group_description_updated_details' not set") @@ -14219,7 +14278,7 @@ def get_group_join_policy_updated_details(self): """ Only call this if :meth:`is_group_join_policy_updated_details` is true. - :rtype: GroupJoinPolicyUpdatedDetails + :rtype: team_log.GroupJoinPolicyUpdatedDetails """ if not self.is_group_join_policy_updated_details(): raise AttributeError("tag 'group_join_policy_updated_details' not set") @@ -14229,7 +14288,7 @@ def get_group_moved_details(self): """ Only call this if :meth:`is_group_moved_details` is true. - :rtype: GroupMovedDetails + :rtype: team_log.GroupMovedDetails """ if not self.is_group_moved_details(): raise AttributeError("tag 'group_moved_details' not set") @@ -14239,7 +14298,7 @@ def get_group_remove_external_id_details(self): """ Only call this if :meth:`is_group_remove_external_id_details` is true. - :rtype: GroupRemoveExternalIdDetails + :rtype: team_log.GroupRemoveExternalIdDetails """ if not self.is_group_remove_external_id_details(): raise AttributeError("tag 'group_remove_external_id_details' not set") @@ -14249,7 +14308,7 @@ def get_group_remove_member_details(self): """ Only call this if :meth:`is_group_remove_member_details` is true. - :rtype: GroupRemoveMemberDetails + :rtype: team_log.GroupRemoveMemberDetails """ if not self.is_group_remove_member_details(): raise AttributeError("tag 'group_remove_member_details' not set") @@ -14259,7 +14318,7 @@ def get_group_rename_details(self): """ Only call this if :meth:`is_group_rename_details` is true. - :rtype: GroupRenameDetails + :rtype: team_log.GroupRenameDetails """ if not self.is_group_rename_details(): raise AttributeError("tag 'group_rename_details' not set") @@ -14269,7 +14328,7 @@ def get_emm_error_details(self): """ Only call this if :meth:`is_emm_error_details` is true. - :rtype: EmmErrorDetails + :rtype: team_log.EmmErrorDetails """ if not self.is_emm_error_details(): raise AttributeError("tag 'emm_error_details' not set") @@ -14279,7 +14338,7 @@ def get_login_fail_details(self): """ Only call this if :meth:`is_login_fail_details` is true. - :rtype: LoginFailDetails + :rtype: team_log.LoginFailDetails """ if not self.is_login_fail_details(): raise AttributeError("tag 'login_fail_details' not set") @@ -14289,7 +14348,7 @@ def get_login_success_details(self): """ Only call this if :meth:`is_login_success_details` is true. - :rtype: LoginSuccessDetails + :rtype: team_log.LoginSuccessDetails """ if not self.is_login_success_details(): raise AttributeError("tag 'login_success_details' not set") @@ -14299,7 +14358,7 @@ def get_logout_details(self): """ Only call this if :meth:`is_logout_details` is true. - :rtype: LogoutDetails + :rtype: team_log.LogoutDetails """ if not self.is_logout_details(): raise AttributeError("tag 'logout_details' not set") @@ -14309,7 +14368,7 @@ def get_reseller_support_session_end_details(self): """ Only call this if :meth:`is_reseller_support_session_end_details` is true. - :rtype: ResellerSupportSessionEndDetails + :rtype: team_log.ResellerSupportSessionEndDetails """ if not self.is_reseller_support_session_end_details(): raise AttributeError("tag 'reseller_support_session_end_details' not set") @@ -14319,7 +14378,7 @@ def get_reseller_support_session_start_details(self): """ Only call this if :meth:`is_reseller_support_session_start_details` is true. - :rtype: ResellerSupportSessionStartDetails + :rtype: team_log.ResellerSupportSessionStartDetails """ if not self.is_reseller_support_session_start_details(): raise AttributeError("tag 'reseller_support_session_start_details' not set") @@ -14329,7 +14388,7 @@ def get_sign_in_as_session_end_details(self): """ Only call this if :meth:`is_sign_in_as_session_end_details` is true. - :rtype: SignInAsSessionEndDetails + :rtype: team_log.SignInAsSessionEndDetails """ if not self.is_sign_in_as_session_end_details(): raise AttributeError("tag 'sign_in_as_session_end_details' not set") @@ -14339,7 +14398,7 @@ def get_sign_in_as_session_start_details(self): """ Only call this if :meth:`is_sign_in_as_session_start_details` is true. - :rtype: SignInAsSessionStartDetails + :rtype: team_log.SignInAsSessionStartDetails """ if not self.is_sign_in_as_session_start_details(): raise AttributeError("tag 'sign_in_as_session_start_details' not set") @@ -14349,7 +14408,7 @@ def get_sso_error_details(self): """ Only call this if :meth:`is_sso_error_details` is true. - :rtype: SsoErrorDetails + :rtype: team_log.SsoErrorDetails """ if not self.is_sso_error_details(): raise AttributeError("tag 'sso_error_details' not set") @@ -14359,7 +14418,7 @@ def get_member_add_name_details(self): """ Only call this if :meth:`is_member_add_name_details` is true. - :rtype: MemberAddNameDetails + :rtype: team_log.MemberAddNameDetails """ if not self.is_member_add_name_details(): raise AttributeError("tag 'member_add_name_details' not set") @@ -14369,7 +14428,7 @@ def get_member_change_admin_role_details(self): """ Only call this if :meth:`is_member_change_admin_role_details` is true. - :rtype: MemberChangeAdminRoleDetails + :rtype: team_log.MemberChangeAdminRoleDetails """ if not self.is_member_change_admin_role_details(): raise AttributeError("tag 'member_change_admin_role_details' not set") @@ -14379,7 +14438,7 @@ def get_member_change_email_details(self): """ Only call this if :meth:`is_member_change_email_details` is true. - :rtype: MemberChangeEmailDetails + :rtype: team_log.MemberChangeEmailDetails """ if not self.is_member_change_email_details(): raise AttributeError("tag 'member_change_email_details' not set") @@ -14389,7 +14448,7 @@ def get_member_change_membership_type_details(self): """ Only call this if :meth:`is_member_change_membership_type_details` is true. - :rtype: MemberChangeMembershipTypeDetails + :rtype: team_log.MemberChangeMembershipTypeDetails """ if not self.is_member_change_membership_type_details(): raise AttributeError("tag 'member_change_membership_type_details' not set") @@ -14399,7 +14458,7 @@ def get_member_change_name_details(self): """ Only call this if :meth:`is_member_change_name_details` is true. - :rtype: MemberChangeNameDetails + :rtype: team_log.MemberChangeNameDetails """ if not self.is_member_change_name_details(): raise AttributeError("tag 'member_change_name_details' not set") @@ -14409,7 +14468,7 @@ def get_member_change_status_details(self): """ Only call this if :meth:`is_member_change_status_details` is true. - :rtype: MemberChangeStatusDetails + :rtype: team_log.MemberChangeStatusDetails """ if not self.is_member_change_status_details(): raise AttributeError("tag 'member_change_status_details' not set") @@ -14419,7 +14478,7 @@ def get_member_delete_manual_contacts_details(self): """ Only call this if :meth:`is_member_delete_manual_contacts_details` is true. - :rtype: MemberDeleteManualContactsDetails + :rtype: team_log.MemberDeleteManualContactsDetails """ if not self.is_member_delete_manual_contacts_details(): raise AttributeError("tag 'member_delete_manual_contacts_details' not set") @@ -14429,7 +14488,7 @@ def get_member_permanently_delete_account_contents_details(self): """ Only call this if :meth:`is_member_permanently_delete_account_contents_details` is true. - :rtype: MemberPermanentlyDeleteAccountContentsDetails + :rtype: team_log.MemberPermanentlyDeleteAccountContentsDetails """ if not self.is_member_permanently_delete_account_contents_details(): raise AttributeError("tag 'member_permanently_delete_account_contents_details' not set") @@ -14439,7 +14498,7 @@ def get_member_space_limits_add_custom_quota_details(self): """ Only call this if :meth:`is_member_space_limits_add_custom_quota_details` is true. - :rtype: MemberSpaceLimitsAddCustomQuotaDetails + :rtype: team_log.MemberSpaceLimitsAddCustomQuotaDetails """ if not self.is_member_space_limits_add_custom_quota_details(): raise AttributeError("tag 'member_space_limits_add_custom_quota_details' not set") @@ -14449,7 +14508,7 @@ def get_member_space_limits_change_custom_quota_details(self): """ Only call this if :meth:`is_member_space_limits_change_custom_quota_details` is true. - :rtype: MemberSpaceLimitsChangeCustomQuotaDetails + :rtype: team_log.MemberSpaceLimitsChangeCustomQuotaDetails """ if not self.is_member_space_limits_change_custom_quota_details(): raise AttributeError("tag 'member_space_limits_change_custom_quota_details' not set") @@ -14459,7 +14518,7 @@ def get_member_space_limits_change_status_details(self): """ Only call this if :meth:`is_member_space_limits_change_status_details` is true. - :rtype: MemberSpaceLimitsChangeStatusDetails + :rtype: team_log.MemberSpaceLimitsChangeStatusDetails """ if not self.is_member_space_limits_change_status_details(): raise AttributeError("tag 'member_space_limits_change_status_details' not set") @@ -14469,7 +14528,7 @@ def get_member_space_limits_remove_custom_quota_details(self): """ Only call this if :meth:`is_member_space_limits_remove_custom_quota_details` is true. - :rtype: MemberSpaceLimitsRemoveCustomQuotaDetails + :rtype: team_log.MemberSpaceLimitsRemoveCustomQuotaDetails """ if not self.is_member_space_limits_remove_custom_quota_details(): raise AttributeError("tag 'member_space_limits_remove_custom_quota_details' not set") @@ -14479,7 +14538,7 @@ def get_member_suggest_details(self): """ Only call this if :meth:`is_member_suggest_details` is true. - :rtype: MemberSuggestDetails + :rtype: team_log.MemberSuggestDetails """ if not self.is_member_suggest_details(): raise AttributeError("tag 'member_suggest_details' not set") @@ -14489,7 +14548,7 @@ def get_member_transfer_account_contents_details(self): """ Only call this if :meth:`is_member_transfer_account_contents_details` is true. - :rtype: MemberTransferAccountContentsDetails + :rtype: team_log.MemberTransferAccountContentsDetails """ if not self.is_member_transfer_account_contents_details(): raise AttributeError("tag 'member_transfer_account_contents_details' not set") @@ -14499,7 +14558,7 @@ def get_secondary_mails_policy_changed_details(self): """ Only call this if :meth:`is_secondary_mails_policy_changed_details` is true. - :rtype: SecondaryMailsPolicyChangedDetails + :rtype: team_log.SecondaryMailsPolicyChangedDetails """ if not self.is_secondary_mails_policy_changed_details(): raise AttributeError("tag 'secondary_mails_policy_changed_details' not set") @@ -14509,7 +14568,7 @@ def get_paper_content_add_member_details(self): """ Only call this if :meth:`is_paper_content_add_member_details` is true. - :rtype: PaperContentAddMemberDetails + :rtype: team_log.PaperContentAddMemberDetails """ if not self.is_paper_content_add_member_details(): raise AttributeError("tag 'paper_content_add_member_details' not set") @@ -14519,7 +14578,7 @@ def get_paper_content_add_to_folder_details(self): """ Only call this if :meth:`is_paper_content_add_to_folder_details` is true. - :rtype: PaperContentAddToFolderDetails + :rtype: team_log.PaperContentAddToFolderDetails """ if not self.is_paper_content_add_to_folder_details(): raise AttributeError("tag 'paper_content_add_to_folder_details' not set") @@ -14529,7 +14588,7 @@ def get_paper_content_archive_details(self): """ Only call this if :meth:`is_paper_content_archive_details` is true. - :rtype: PaperContentArchiveDetails + :rtype: team_log.PaperContentArchiveDetails """ if not self.is_paper_content_archive_details(): raise AttributeError("tag 'paper_content_archive_details' not set") @@ -14539,7 +14598,7 @@ def get_paper_content_create_details(self): """ Only call this if :meth:`is_paper_content_create_details` is true. - :rtype: PaperContentCreateDetails + :rtype: team_log.PaperContentCreateDetails """ if not self.is_paper_content_create_details(): raise AttributeError("tag 'paper_content_create_details' not set") @@ -14549,7 +14608,7 @@ def get_paper_content_permanently_delete_details(self): """ Only call this if :meth:`is_paper_content_permanently_delete_details` is true. - :rtype: PaperContentPermanentlyDeleteDetails + :rtype: team_log.PaperContentPermanentlyDeleteDetails """ if not self.is_paper_content_permanently_delete_details(): raise AttributeError("tag 'paper_content_permanently_delete_details' not set") @@ -14559,7 +14618,7 @@ def get_paper_content_remove_from_folder_details(self): """ Only call this if :meth:`is_paper_content_remove_from_folder_details` is true. - :rtype: PaperContentRemoveFromFolderDetails + :rtype: team_log.PaperContentRemoveFromFolderDetails """ if not self.is_paper_content_remove_from_folder_details(): raise AttributeError("tag 'paper_content_remove_from_folder_details' not set") @@ -14569,7 +14628,7 @@ def get_paper_content_remove_member_details(self): """ Only call this if :meth:`is_paper_content_remove_member_details` is true. - :rtype: PaperContentRemoveMemberDetails + :rtype: team_log.PaperContentRemoveMemberDetails """ if not self.is_paper_content_remove_member_details(): raise AttributeError("tag 'paper_content_remove_member_details' not set") @@ -14579,7 +14638,7 @@ def get_paper_content_rename_details(self): """ Only call this if :meth:`is_paper_content_rename_details` is true. - :rtype: PaperContentRenameDetails + :rtype: team_log.PaperContentRenameDetails """ if not self.is_paper_content_rename_details(): raise AttributeError("tag 'paper_content_rename_details' not set") @@ -14589,7 +14648,7 @@ def get_paper_content_restore_details(self): """ Only call this if :meth:`is_paper_content_restore_details` is true. - :rtype: PaperContentRestoreDetails + :rtype: team_log.PaperContentRestoreDetails """ if not self.is_paper_content_restore_details(): raise AttributeError("tag 'paper_content_restore_details' not set") @@ -14599,7 +14658,7 @@ def get_paper_doc_add_comment_details(self): """ Only call this if :meth:`is_paper_doc_add_comment_details` is true. - :rtype: PaperDocAddCommentDetails + :rtype: team_log.PaperDocAddCommentDetails """ if not self.is_paper_doc_add_comment_details(): raise AttributeError("tag 'paper_doc_add_comment_details' not set") @@ -14609,7 +14668,7 @@ def get_paper_doc_change_member_role_details(self): """ Only call this if :meth:`is_paper_doc_change_member_role_details` is true. - :rtype: PaperDocChangeMemberRoleDetails + :rtype: team_log.PaperDocChangeMemberRoleDetails """ if not self.is_paper_doc_change_member_role_details(): raise AttributeError("tag 'paper_doc_change_member_role_details' not set") @@ -14619,7 +14678,7 @@ def get_paper_doc_change_sharing_policy_details(self): """ Only call this if :meth:`is_paper_doc_change_sharing_policy_details` is true. - :rtype: PaperDocChangeSharingPolicyDetails + :rtype: team_log.PaperDocChangeSharingPolicyDetails """ if not self.is_paper_doc_change_sharing_policy_details(): raise AttributeError("tag 'paper_doc_change_sharing_policy_details' not set") @@ -14629,7 +14688,7 @@ def get_paper_doc_change_subscription_details(self): """ Only call this if :meth:`is_paper_doc_change_subscription_details` is true. - :rtype: PaperDocChangeSubscriptionDetails + :rtype: team_log.PaperDocChangeSubscriptionDetails """ if not self.is_paper_doc_change_subscription_details(): raise AttributeError("tag 'paper_doc_change_subscription_details' not set") @@ -14639,7 +14698,7 @@ def get_paper_doc_deleted_details(self): """ Only call this if :meth:`is_paper_doc_deleted_details` is true. - :rtype: PaperDocDeletedDetails + :rtype: team_log.PaperDocDeletedDetails """ if not self.is_paper_doc_deleted_details(): raise AttributeError("tag 'paper_doc_deleted_details' not set") @@ -14649,7 +14708,7 @@ def get_paper_doc_delete_comment_details(self): """ Only call this if :meth:`is_paper_doc_delete_comment_details` is true. - :rtype: PaperDocDeleteCommentDetails + :rtype: team_log.PaperDocDeleteCommentDetails """ if not self.is_paper_doc_delete_comment_details(): raise AttributeError("tag 'paper_doc_delete_comment_details' not set") @@ -14659,7 +14718,7 @@ def get_paper_doc_download_details(self): """ Only call this if :meth:`is_paper_doc_download_details` is true. - :rtype: PaperDocDownloadDetails + :rtype: team_log.PaperDocDownloadDetails """ if not self.is_paper_doc_download_details(): raise AttributeError("tag 'paper_doc_download_details' not set") @@ -14669,7 +14728,7 @@ def get_paper_doc_edit_details(self): """ Only call this if :meth:`is_paper_doc_edit_details` is true. - :rtype: PaperDocEditDetails + :rtype: team_log.PaperDocEditDetails """ if not self.is_paper_doc_edit_details(): raise AttributeError("tag 'paper_doc_edit_details' not set") @@ -14679,7 +14738,7 @@ def get_paper_doc_edit_comment_details(self): """ Only call this if :meth:`is_paper_doc_edit_comment_details` is true. - :rtype: PaperDocEditCommentDetails + :rtype: team_log.PaperDocEditCommentDetails """ if not self.is_paper_doc_edit_comment_details(): raise AttributeError("tag 'paper_doc_edit_comment_details' not set") @@ -14689,7 +14748,7 @@ def get_paper_doc_followed_details(self): """ Only call this if :meth:`is_paper_doc_followed_details` is true. - :rtype: PaperDocFollowedDetails + :rtype: team_log.PaperDocFollowedDetails """ if not self.is_paper_doc_followed_details(): raise AttributeError("tag 'paper_doc_followed_details' not set") @@ -14699,7 +14758,7 @@ def get_paper_doc_mention_details(self): """ Only call this if :meth:`is_paper_doc_mention_details` is true. - :rtype: PaperDocMentionDetails + :rtype: team_log.PaperDocMentionDetails """ if not self.is_paper_doc_mention_details(): raise AttributeError("tag 'paper_doc_mention_details' not set") @@ -14709,7 +14768,7 @@ def get_paper_doc_ownership_changed_details(self): """ Only call this if :meth:`is_paper_doc_ownership_changed_details` is true. - :rtype: PaperDocOwnershipChangedDetails + :rtype: team_log.PaperDocOwnershipChangedDetails """ if not self.is_paper_doc_ownership_changed_details(): raise AttributeError("tag 'paper_doc_ownership_changed_details' not set") @@ -14719,7 +14778,7 @@ def get_paper_doc_request_access_details(self): """ Only call this if :meth:`is_paper_doc_request_access_details` is true. - :rtype: PaperDocRequestAccessDetails + :rtype: team_log.PaperDocRequestAccessDetails """ if not self.is_paper_doc_request_access_details(): raise AttributeError("tag 'paper_doc_request_access_details' not set") @@ -14729,7 +14788,7 @@ def get_paper_doc_resolve_comment_details(self): """ Only call this if :meth:`is_paper_doc_resolve_comment_details` is true. - :rtype: PaperDocResolveCommentDetails + :rtype: team_log.PaperDocResolveCommentDetails """ if not self.is_paper_doc_resolve_comment_details(): raise AttributeError("tag 'paper_doc_resolve_comment_details' not set") @@ -14739,7 +14798,7 @@ def get_paper_doc_revert_details(self): """ Only call this if :meth:`is_paper_doc_revert_details` is true. - :rtype: PaperDocRevertDetails + :rtype: team_log.PaperDocRevertDetails """ if not self.is_paper_doc_revert_details(): raise AttributeError("tag 'paper_doc_revert_details' not set") @@ -14749,7 +14808,7 @@ def get_paper_doc_slack_share_details(self): """ Only call this if :meth:`is_paper_doc_slack_share_details` is true. - :rtype: PaperDocSlackShareDetails + :rtype: team_log.PaperDocSlackShareDetails """ if not self.is_paper_doc_slack_share_details(): raise AttributeError("tag 'paper_doc_slack_share_details' not set") @@ -14759,7 +14818,7 @@ def get_paper_doc_team_invite_details(self): """ Only call this if :meth:`is_paper_doc_team_invite_details` is true. - :rtype: PaperDocTeamInviteDetails + :rtype: team_log.PaperDocTeamInviteDetails """ if not self.is_paper_doc_team_invite_details(): raise AttributeError("tag 'paper_doc_team_invite_details' not set") @@ -14769,7 +14828,7 @@ def get_paper_doc_trashed_details(self): """ Only call this if :meth:`is_paper_doc_trashed_details` is true. - :rtype: PaperDocTrashedDetails + :rtype: team_log.PaperDocTrashedDetails """ if not self.is_paper_doc_trashed_details(): raise AttributeError("tag 'paper_doc_trashed_details' not set") @@ -14779,7 +14838,7 @@ def get_paper_doc_unresolve_comment_details(self): """ Only call this if :meth:`is_paper_doc_unresolve_comment_details` is true. - :rtype: PaperDocUnresolveCommentDetails + :rtype: team_log.PaperDocUnresolveCommentDetails """ if not self.is_paper_doc_unresolve_comment_details(): raise AttributeError("tag 'paper_doc_unresolve_comment_details' not set") @@ -14789,7 +14848,7 @@ def get_paper_doc_untrashed_details(self): """ Only call this if :meth:`is_paper_doc_untrashed_details` is true. - :rtype: PaperDocUntrashedDetails + :rtype: team_log.PaperDocUntrashedDetails """ if not self.is_paper_doc_untrashed_details(): raise AttributeError("tag 'paper_doc_untrashed_details' not set") @@ -14799,7 +14858,7 @@ def get_paper_doc_view_details(self): """ Only call this if :meth:`is_paper_doc_view_details` is true. - :rtype: PaperDocViewDetails + :rtype: team_log.PaperDocViewDetails """ if not self.is_paper_doc_view_details(): raise AttributeError("tag 'paper_doc_view_details' not set") @@ -14809,7 +14868,7 @@ def get_paper_external_view_allow_details(self): """ Only call this if :meth:`is_paper_external_view_allow_details` is true. - :rtype: PaperExternalViewAllowDetails + :rtype: team_log.PaperExternalViewAllowDetails """ if not self.is_paper_external_view_allow_details(): raise AttributeError("tag 'paper_external_view_allow_details' not set") @@ -14819,7 +14878,7 @@ def get_paper_external_view_default_team_details(self): """ Only call this if :meth:`is_paper_external_view_default_team_details` is true. - :rtype: PaperExternalViewDefaultTeamDetails + :rtype: team_log.PaperExternalViewDefaultTeamDetails """ if not self.is_paper_external_view_default_team_details(): raise AttributeError("tag 'paper_external_view_default_team_details' not set") @@ -14829,7 +14888,7 @@ def get_paper_external_view_forbid_details(self): """ Only call this if :meth:`is_paper_external_view_forbid_details` is true. - :rtype: PaperExternalViewForbidDetails + :rtype: team_log.PaperExternalViewForbidDetails """ if not self.is_paper_external_view_forbid_details(): raise AttributeError("tag 'paper_external_view_forbid_details' not set") @@ -14839,7 +14898,7 @@ def get_paper_folder_change_subscription_details(self): """ Only call this if :meth:`is_paper_folder_change_subscription_details` is true. - :rtype: PaperFolderChangeSubscriptionDetails + :rtype: team_log.PaperFolderChangeSubscriptionDetails """ if not self.is_paper_folder_change_subscription_details(): raise AttributeError("tag 'paper_folder_change_subscription_details' not set") @@ -14849,7 +14908,7 @@ def get_paper_folder_deleted_details(self): """ Only call this if :meth:`is_paper_folder_deleted_details` is true. - :rtype: PaperFolderDeletedDetails + :rtype: team_log.PaperFolderDeletedDetails """ if not self.is_paper_folder_deleted_details(): raise AttributeError("tag 'paper_folder_deleted_details' not set") @@ -14859,7 +14918,7 @@ def get_paper_folder_followed_details(self): """ Only call this if :meth:`is_paper_folder_followed_details` is true. - :rtype: PaperFolderFollowedDetails + :rtype: team_log.PaperFolderFollowedDetails """ if not self.is_paper_folder_followed_details(): raise AttributeError("tag 'paper_folder_followed_details' not set") @@ -14869,7 +14928,7 @@ def get_paper_folder_team_invite_details(self): """ Only call this if :meth:`is_paper_folder_team_invite_details` is true. - :rtype: PaperFolderTeamInviteDetails + :rtype: team_log.PaperFolderTeamInviteDetails """ if not self.is_paper_folder_team_invite_details(): raise AttributeError("tag 'paper_folder_team_invite_details' not set") @@ -14879,7 +14938,7 @@ def get_password_change_details(self): """ Only call this if :meth:`is_password_change_details` is true. - :rtype: PasswordChangeDetails + :rtype: team_log.PasswordChangeDetails """ if not self.is_password_change_details(): raise AttributeError("tag 'password_change_details' not set") @@ -14889,7 +14948,7 @@ def get_password_reset_details(self): """ Only call this if :meth:`is_password_reset_details` is true. - :rtype: PasswordResetDetails + :rtype: team_log.PasswordResetDetails """ if not self.is_password_reset_details(): raise AttributeError("tag 'password_reset_details' not set") @@ -14899,7 +14958,7 @@ def get_password_reset_all_details(self): """ Only call this if :meth:`is_password_reset_all_details` is true. - :rtype: PasswordResetAllDetails + :rtype: team_log.PasswordResetAllDetails """ if not self.is_password_reset_all_details(): raise AttributeError("tag 'password_reset_all_details' not set") @@ -14909,7 +14968,7 @@ def get_emm_create_exceptions_report_details(self): """ Only call this if :meth:`is_emm_create_exceptions_report_details` is true. - :rtype: EmmCreateExceptionsReportDetails + :rtype: team_log.EmmCreateExceptionsReportDetails """ if not self.is_emm_create_exceptions_report_details(): raise AttributeError("tag 'emm_create_exceptions_report_details' not set") @@ -14919,7 +14978,7 @@ def get_emm_create_usage_report_details(self): """ Only call this if :meth:`is_emm_create_usage_report_details` is true. - :rtype: EmmCreateUsageReportDetails + :rtype: team_log.EmmCreateUsageReportDetails """ if not self.is_emm_create_usage_report_details(): raise AttributeError("tag 'emm_create_usage_report_details' not set") @@ -14929,7 +14988,7 @@ def get_export_members_report_details(self): """ Only call this if :meth:`is_export_members_report_details` is true. - :rtype: ExportMembersReportDetails + :rtype: team_log.ExportMembersReportDetails """ if not self.is_export_members_report_details(): raise AttributeError("tag 'export_members_report_details' not set") @@ -14939,7 +14998,7 @@ def get_paper_admin_export_start_details(self): """ Only call this if :meth:`is_paper_admin_export_start_details` is true. - :rtype: PaperAdminExportStartDetails + :rtype: team_log.PaperAdminExportStartDetails """ if not self.is_paper_admin_export_start_details(): raise AttributeError("tag 'paper_admin_export_start_details' not set") @@ -14949,7 +15008,7 @@ def get_smart_sync_create_admin_privilege_report_details(self): """ Only call this if :meth:`is_smart_sync_create_admin_privilege_report_details` is true. - :rtype: SmartSyncCreateAdminPrivilegeReportDetails + :rtype: team_log.SmartSyncCreateAdminPrivilegeReportDetails """ if not self.is_smart_sync_create_admin_privilege_report_details(): raise AttributeError("tag 'smart_sync_create_admin_privilege_report_details' not set") @@ -14959,7 +15018,7 @@ def get_team_activity_create_report_details(self): """ Only call this if :meth:`is_team_activity_create_report_details` is true. - :rtype: TeamActivityCreateReportDetails + :rtype: team_log.TeamActivityCreateReportDetails """ if not self.is_team_activity_create_report_details(): raise AttributeError("tag 'team_activity_create_report_details' not set") @@ -14969,7 +15028,7 @@ def get_collection_share_details(self): """ Only call this if :meth:`is_collection_share_details` is true. - :rtype: CollectionShareDetails + :rtype: team_log.CollectionShareDetails """ if not self.is_collection_share_details(): raise AttributeError("tag 'collection_share_details' not set") @@ -14979,7 +15038,7 @@ def get_note_acl_invite_only_details(self): """ Only call this if :meth:`is_note_acl_invite_only_details` is true. - :rtype: NoteAclInviteOnlyDetails + :rtype: team_log.NoteAclInviteOnlyDetails """ if not self.is_note_acl_invite_only_details(): raise AttributeError("tag 'note_acl_invite_only_details' not set") @@ -14989,7 +15048,7 @@ def get_note_acl_link_details(self): """ Only call this if :meth:`is_note_acl_link_details` is true. - :rtype: NoteAclLinkDetails + :rtype: team_log.NoteAclLinkDetails """ if not self.is_note_acl_link_details(): raise AttributeError("tag 'note_acl_link_details' not set") @@ -14999,7 +15058,7 @@ def get_note_acl_team_link_details(self): """ Only call this if :meth:`is_note_acl_team_link_details` is true. - :rtype: NoteAclTeamLinkDetails + :rtype: team_log.NoteAclTeamLinkDetails """ if not self.is_note_acl_team_link_details(): raise AttributeError("tag 'note_acl_team_link_details' not set") @@ -15009,7 +15068,7 @@ def get_note_shared_details(self): """ Only call this if :meth:`is_note_shared_details` is true. - :rtype: NoteSharedDetails + :rtype: team_log.NoteSharedDetails """ if not self.is_note_shared_details(): raise AttributeError("tag 'note_shared_details' not set") @@ -15019,7 +15078,7 @@ def get_note_share_receive_details(self): """ Only call this if :meth:`is_note_share_receive_details` is true. - :rtype: NoteShareReceiveDetails + :rtype: team_log.NoteShareReceiveDetails """ if not self.is_note_share_receive_details(): raise AttributeError("tag 'note_share_receive_details' not set") @@ -15029,7 +15088,7 @@ def get_open_note_shared_details(self): """ Only call this if :meth:`is_open_note_shared_details` is true. - :rtype: OpenNoteSharedDetails + :rtype: team_log.OpenNoteSharedDetails """ if not self.is_open_note_shared_details(): raise AttributeError("tag 'open_note_shared_details' not set") @@ -15039,7 +15098,7 @@ def get_sf_add_group_details(self): """ Only call this if :meth:`is_sf_add_group_details` is true. - :rtype: SfAddGroupDetails + :rtype: team_log.SfAddGroupDetails """ if not self.is_sf_add_group_details(): raise AttributeError("tag 'sf_add_group_details' not set") @@ -15049,7 +15108,7 @@ def get_sf_allow_non_members_to_view_shared_links_details(self): """ Only call this if :meth:`is_sf_allow_non_members_to_view_shared_links_details` is true. - :rtype: SfAllowNonMembersToViewSharedLinksDetails + :rtype: team_log.SfAllowNonMembersToViewSharedLinksDetails """ if not self.is_sf_allow_non_members_to_view_shared_links_details(): raise AttributeError("tag 'sf_allow_non_members_to_view_shared_links_details' not set") @@ -15059,7 +15118,7 @@ def get_sf_external_invite_warn_details(self): """ Only call this if :meth:`is_sf_external_invite_warn_details` is true. - :rtype: SfExternalInviteWarnDetails + :rtype: team_log.SfExternalInviteWarnDetails """ if not self.is_sf_external_invite_warn_details(): raise AttributeError("tag 'sf_external_invite_warn_details' not set") @@ -15069,7 +15128,7 @@ def get_sf_fb_invite_details(self): """ Only call this if :meth:`is_sf_fb_invite_details` is true. - :rtype: SfFbInviteDetails + :rtype: team_log.SfFbInviteDetails """ if not self.is_sf_fb_invite_details(): raise AttributeError("tag 'sf_fb_invite_details' not set") @@ -15079,7 +15138,7 @@ def get_sf_fb_invite_change_role_details(self): """ Only call this if :meth:`is_sf_fb_invite_change_role_details` is true. - :rtype: SfFbInviteChangeRoleDetails + :rtype: team_log.SfFbInviteChangeRoleDetails """ if not self.is_sf_fb_invite_change_role_details(): raise AttributeError("tag 'sf_fb_invite_change_role_details' not set") @@ -15089,7 +15148,7 @@ def get_sf_fb_uninvite_details(self): """ Only call this if :meth:`is_sf_fb_uninvite_details` is true. - :rtype: SfFbUninviteDetails + :rtype: team_log.SfFbUninviteDetails """ if not self.is_sf_fb_uninvite_details(): raise AttributeError("tag 'sf_fb_uninvite_details' not set") @@ -15099,7 +15158,7 @@ def get_sf_invite_group_details(self): """ Only call this if :meth:`is_sf_invite_group_details` is true. - :rtype: SfInviteGroupDetails + :rtype: team_log.SfInviteGroupDetails """ if not self.is_sf_invite_group_details(): raise AttributeError("tag 'sf_invite_group_details' not set") @@ -15109,7 +15168,7 @@ def get_sf_team_grant_access_details(self): """ Only call this if :meth:`is_sf_team_grant_access_details` is true. - :rtype: SfTeamGrantAccessDetails + :rtype: team_log.SfTeamGrantAccessDetails """ if not self.is_sf_team_grant_access_details(): raise AttributeError("tag 'sf_team_grant_access_details' not set") @@ -15119,7 +15178,7 @@ def get_sf_team_invite_details(self): """ Only call this if :meth:`is_sf_team_invite_details` is true. - :rtype: SfTeamInviteDetails + :rtype: team_log.SfTeamInviteDetails """ if not self.is_sf_team_invite_details(): raise AttributeError("tag 'sf_team_invite_details' not set") @@ -15129,7 +15188,7 @@ def get_sf_team_invite_change_role_details(self): """ Only call this if :meth:`is_sf_team_invite_change_role_details` is true. - :rtype: SfTeamInviteChangeRoleDetails + :rtype: team_log.SfTeamInviteChangeRoleDetails """ if not self.is_sf_team_invite_change_role_details(): raise AttributeError("tag 'sf_team_invite_change_role_details' not set") @@ -15139,7 +15198,7 @@ def get_sf_team_join_details(self): """ Only call this if :meth:`is_sf_team_join_details` is true. - :rtype: SfTeamJoinDetails + :rtype: team_log.SfTeamJoinDetails """ if not self.is_sf_team_join_details(): raise AttributeError("tag 'sf_team_join_details' not set") @@ -15149,7 +15208,7 @@ def get_sf_team_join_from_oob_link_details(self): """ Only call this if :meth:`is_sf_team_join_from_oob_link_details` is true. - :rtype: SfTeamJoinFromOobLinkDetails + :rtype: team_log.SfTeamJoinFromOobLinkDetails """ if not self.is_sf_team_join_from_oob_link_details(): raise AttributeError("tag 'sf_team_join_from_oob_link_details' not set") @@ -15159,7 +15218,7 @@ def get_sf_team_uninvite_details(self): """ Only call this if :meth:`is_sf_team_uninvite_details` is true. - :rtype: SfTeamUninviteDetails + :rtype: team_log.SfTeamUninviteDetails """ if not self.is_sf_team_uninvite_details(): raise AttributeError("tag 'sf_team_uninvite_details' not set") @@ -15169,7 +15228,7 @@ def get_shared_content_add_invitees_details(self): """ Only call this if :meth:`is_shared_content_add_invitees_details` is true. - :rtype: SharedContentAddInviteesDetails + :rtype: team_log.SharedContentAddInviteesDetails """ if not self.is_shared_content_add_invitees_details(): raise AttributeError("tag 'shared_content_add_invitees_details' not set") @@ -15179,7 +15238,7 @@ def get_shared_content_add_link_expiry_details(self): """ Only call this if :meth:`is_shared_content_add_link_expiry_details` is true. - :rtype: SharedContentAddLinkExpiryDetails + :rtype: team_log.SharedContentAddLinkExpiryDetails """ if not self.is_shared_content_add_link_expiry_details(): raise AttributeError("tag 'shared_content_add_link_expiry_details' not set") @@ -15189,7 +15248,7 @@ def get_shared_content_add_link_password_details(self): """ Only call this if :meth:`is_shared_content_add_link_password_details` is true. - :rtype: SharedContentAddLinkPasswordDetails + :rtype: team_log.SharedContentAddLinkPasswordDetails """ if not self.is_shared_content_add_link_password_details(): raise AttributeError("tag 'shared_content_add_link_password_details' not set") @@ -15199,7 +15258,7 @@ def get_shared_content_add_member_details(self): """ Only call this if :meth:`is_shared_content_add_member_details` is true. - :rtype: SharedContentAddMemberDetails + :rtype: team_log.SharedContentAddMemberDetails """ if not self.is_shared_content_add_member_details(): raise AttributeError("tag 'shared_content_add_member_details' not set") @@ -15209,7 +15268,7 @@ def get_shared_content_change_downloads_policy_details(self): """ Only call this if :meth:`is_shared_content_change_downloads_policy_details` is true. - :rtype: SharedContentChangeDownloadsPolicyDetails + :rtype: team_log.SharedContentChangeDownloadsPolicyDetails """ if not self.is_shared_content_change_downloads_policy_details(): raise AttributeError("tag 'shared_content_change_downloads_policy_details' not set") @@ -15219,7 +15278,7 @@ def get_shared_content_change_invitee_role_details(self): """ Only call this if :meth:`is_shared_content_change_invitee_role_details` is true. - :rtype: SharedContentChangeInviteeRoleDetails + :rtype: team_log.SharedContentChangeInviteeRoleDetails """ if not self.is_shared_content_change_invitee_role_details(): raise AttributeError("tag 'shared_content_change_invitee_role_details' not set") @@ -15229,7 +15288,7 @@ def get_shared_content_change_link_audience_details(self): """ Only call this if :meth:`is_shared_content_change_link_audience_details` is true. - :rtype: SharedContentChangeLinkAudienceDetails + :rtype: team_log.SharedContentChangeLinkAudienceDetails """ if not self.is_shared_content_change_link_audience_details(): raise AttributeError("tag 'shared_content_change_link_audience_details' not set") @@ -15239,7 +15298,7 @@ def get_shared_content_change_link_expiry_details(self): """ Only call this if :meth:`is_shared_content_change_link_expiry_details` is true. - :rtype: SharedContentChangeLinkExpiryDetails + :rtype: team_log.SharedContentChangeLinkExpiryDetails """ if not self.is_shared_content_change_link_expiry_details(): raise AttributeError("tag 'shared_content_change_link_expiry_details' not set") @@ -15249,7 +15308,7 @@ def get_shared_content_change_link_password_details(self): """ Only call this if :meth:`is_shared_content_change_link_password_details` is true. - :rtype: SharedContentChangeLinkPasswordDetails + :rtype: team_log.SharedContentChangeLinkPasswordDetails """ if not self.is_shared_content_change_link_password_details(): raise AttributeError("tag 'shared_content_change_link_password_details' not set") @@ -15259,7 +15318,7 @@ def get_shared_content_change_member_role_details(self): """ Only call this if :meth:`is_shared_content_change_member_role_details` is true. - :rtype: SharedContentChangeMemberRoleDetails + :rtype: team_log.SharedContentChangeMemberRoleDetails """ if not self.is_shared_content_change_member_role_details(): raise AttributeError("tag 'shared_content_change_member_role_details' not set") @@ -15269,7 +15328,7 @@ def get_shared_content_change_viewer_info_policy_details(self): """ Only call this if :meth:`is_shared_content_change_viewer_info_policy_details` is true. - :rtype: SharedContentChangeViewerInfoPolicyDetails + :rtype: team_log.SharedContentChangeViewerInfoPolicyDetails """ if not self.is_shared_content_change_viewer_info_policy_details(): raise AttributeError("tag 'shared_content_change_viewer_info_policy_details' not set") @@ -15279,7 +15338,7 @@ def get_shared_content_claim_invitation_details(self): """ Only call this if :meth:`is_shared_content_claim_invitation_details` is true. - :rtype: SharedContentClaimInvitationDetails + :rtype: team_log.SharedContentClaimInvitationDetails """ if not self.is_shared_content_claim_invitation_details(): raise AttributeError("tag 'shared_content_claim_invitation_details' not set") @@ -15289,7 +15348,7 @@ def get_shared_content_copy_details(self): """ Only call this if :meth:`is_shared_content_copy_details` is true. - :rtype: SharedContentCopyDetails + :rtype: team_log.SharedContentCopyDetails """ if not self.is_shared_content_copy_details(): raise AttributeError("tag 'shared_content_copy_details' not set") @@ -15299,7 +15358,7 @@ def get_shared_content_download_details(self): """ Only call this if :meth:`is_shared_content_download_details` is true. - :rtype: SharedContentDownloadDetails + :rtype: team_log.SharedContentDownloadDetails """ if not self.is_shared_content_download_details(): raise AttributeError("tag 'shared_content_download_details' not set") @@ -15309,7 +15368,7 @@ def get_shared_content_relinquish_membership_details(self): """ Only call this if :meth:`is_shared_content_relinquish_membership_details` is true. - :rtype: SharedContentRelinquishMembershipDetails + :rtype: team_log.SharedContentRelinquishMembershipDetails """ if not self.is_shared_content_relinquish_membership_details(): raise AttributeError("tag 'shared_content_relinquish_membership_details' not set") @@ -15319,7 +15378,7 @@ def get_shared_content_remove_invitees_details(self): """ Only call this if :meth:`is_shared_content_remove_invitees_details` is true. - :rtype: SharedContentRemoveInviteesDetails + :rtype: team_log.SharedContentRemoveInviteesDetails """ if not self.is_shared_content_remove_invitees_details(): raise AttributeError("tag 'shared_content_remove_invitees_details' not set") @@ -15329,7 +15388,7 @@ def get_shared_content_remove_link_expiry_details(self): """ Only call this if :meth:`is_shared_content_remove_link_expiry_details` is true. - :rtype: SharedContentRemoveLinkExpiryDetails + :rtype: team_log.SharedContentRemoveLinkExpiryDetails """ if not self.is_shared_content_remove_link_expiry_details(): raise AttributeError("tag 'shared_content_remove_link_expiry_details' not set") @@ -15339,7 +15398,7 @@ def get_shared_content_remove_link_password_details(self): """ Only call this if :meth:`is_shared_content_remove_link_password_details` is true. - :rtype: SharedContentRemoveLinkPasswordDetails + :rtype: team_log.SharedContentRemoveLinkPasswordDetails """ if not self.is_shared_content_remove_link_password_details(): raise AttributeError("tag 'shared_content_remove_link_password_details' not set") @@ -15349,7 +15408,7 @@ def get_shared_content_remove_member_details(self): """ Only call this if :meth:`is_shared_content_remove_member_details` is true. - :rtype: SharedContentRemoveMemberDetails + :rtype: team_log.SharedContentRemoveMemberDetails """ if not self.is_shared_content_remove_member_details(): raise AttributeError("tag 'shared_content_remove_member_details' not set") @@ -15359,7 +15418,7 @@ def get_shared_content_request_access_details(self): """ Only call this if :meth:`is_shared_content_request_access_details` is true. - :rtype: SharedContentRequestAccessDetails + :rtype: team_log.SharedContentRequestAccessDetails """ if not self.is_shared_content_request_access_details(): raise AttributeError("tag 'shared_content_request_access_details' not set") @@ -15369,7 +15428,7 @@ def get_shared_content_unshare_details(self): """ Only call this if :meth:`is_shared_content_unshare_details` is true. - :rtype: SharedContentUnshareDetails + :rtype: team_log.SharedContentUnshareDetails """ if not self.is_shared_content_unshare_details(): raise AttributeError("tag 'shared_content_unshare_details' not set") @@ -15379,7 +15438,7 @@ def get_shared_content_view_details(self): """ Only call this if :meth:`is_shared_content_view_details` is true. - :rtype: SharedContentViewDetails + :rtype: team_log.SharedContentViewDetails """ if not self.is_shared_content_view_details(): raise AttributeError("tag 'shared_content_view_details' not set") @@ -15389,7 +15448,7 @@ def get_shared_folder_change_link_policy_details(self): """ Only call this if :meth:`is_shared_folder_change_link_policy_details` is true. - :rtype: SharedFolderChangeLinkPolicyDetails + :rtype: team_log.SharedFolderChangeLinkPolicyDetails """ if not self.is_shared_folder_change_link_policy_details(): raise AttributeError("tag 'shared_folder_change_link_policy_details' not set") @@ -15399,7 +15458,7 @@ def get_shared_folder_change_members_inheritance_policy_details(self): """ Only call this if :meth:`is_shared_folder_change_members_inheritance_policy_details` is true. - :rtype: SharedFolderChangeMembersInheritancePolicyDetails + :rtype: team_log.SharedFolderChangeMembersInheritancePolicyDetails """ if not self.is_shared_folder_change_members_inheritance_policy_details(): raise AttributeError("tag 'shared_folder_change_members_inheritance_policy_details' not set") @@ -15409,7 +15468,7 @@ def get_shared_folder_change_members_management_policy_details(self): """ Only call this if :meth:`is_shared_folder_change_members_management_policy_details` is true. - :rtype: SharedFolderChangeMembersManagementPolicyDetails + :rtype: team_log.SharedFolderChangeMembersManagementPolicyDetails """ if not self.is_shared_folder_change_members_management_policy_details(): raise AttributeError("tag 'shared_folder_change_members_management_policy_details' not set") @@ -15419,7 +15478,7 @@ def get_shared_folder_change_members_policy_details(self): """ Only call this if :meth:`is_shared_folder_change_members_policy_details` is true. - :rtype: SharedFolderChangeMembersPolicyDetails + :rtype: team_log.SharedFolderChangeMembersPolicyDetails """ if not self.is_shared_folder_change_members_policy_details(): raise AttributeError("tag 'shared_folder_change_members_policy_details' not set") @@ -15429,7 +15488,7 @@ def get_shared_folder_create_details(self): """ Only call this if :meth:`is_shared_folder_create_details` is true. - :rtype: SharedFolderCreateDetails + :rtype: team_log.SharedFolderCreateDetails """ if not self.is_shared_folder_create_details(): raise AttributeError("tag 'shared_folder_create_details' not set") @@ -15439,7 +15498,7 @@ def get_shared_folder_decline_invitation_details(self): """ Only call this if :meth:`is_shared_folder_decline_invitation_details` is true. - :rtype: SharedFolderDeclineInvitationDetails + :rtype: team_log.SharedFolderDeclineInvitationDetails """ if not self.is_shared_folder_decline_invitation_details(): raise AttributeError("tag 'shared_folder_decline_invitation_details' not set") @@ -15449,7 +15508,7 @@ def get_shared_folder_mount_details(self): """ Only call this if :meth:`is_shared_folder_mount_details` is true. - :rtype: SharedFolderMountDetails + :rtype: team_log.SharedFolderMountDetails """ if not self.is_shared_folder_mount_details(): raise AttributeError("tag 'shared_folder_mount_details' not set") @@ -15459,7 +15518,7 @@ def get_shared_folder_nest_details(self): """ Only call this if :meth:`is_shared_folder_nest_details` is true. - :rtype: SharedFolderNestDetails + :rtype: team_log.SharedFolderNestDetails """ if not self.is_shared_folder_nest_details(): raise AttributeError("tag 'shared_folder_nest_details' not set") @@ -15469,7 +15528,7 @@ def get_shared_folder_transfer_ownership_details(self): """ Only call this if :meth:`is_shared_folder_transfer_ownership_details` is true. - :rtype: SharedFolderTransferOwnershipDetails + :rtype: team_log.SharedFolderTransferOwnershipDetails """ if not self.is_shared_folder_transfer_ownership_details(): raise AttributeError("tag 'shared_folder_transfer_ownership_details' not set") @@ -15479,7 +15538,7 @@ def get_shared_folder_unmount_details(self): """ Only call this if :meth:`is_shared_folder_unmount_details` is true. - :rtype: SharedFolderUnmountDetails + :rtype: team_log.SharedFolderUnmountDetails """ if not self.is_shared_folder_unmount_details(): raise AttributeError("tag 'shared_folder_unmount_details' not set") @@ -15489,7 +15548,7 @@ def get_shared_link_add_expiry_details(self): """ Only call this if :meth:`is_shared_link_add_expiry_details` is true. - :rtype: SharedLinkAddExpiryDetails + :rtype: team_log.SharedLinkAddExpiryDetails """ if not self.is_shared_link_add_expiry_details(): raise AttributeError("tag 'shared_link_add_expiry_details' not set") @@ -15499,7 +15558,7 @@ def get_shared_link_change_expiry_details(self): """ Only call this if :meth:`is_shared_link_change_expiry_details` is true. - :rtype: SharedLinkChangeExpiryDetails + :rtype: team_log.SharedLinkChangeExpiryDetails """ if not self.is_shared_link_change_expiry_details(): raise AttributeError("tag 'shared_link_change_expiry_details' not set") @@ -15509,7 +15568,7 @@ def get_shared_link_change_visibility_details(self): """ Only call this if :meth:`is_shared_link_change_visibility_details` is true. - :rtype: SharedLinkChangeVisibilityDetails + :rtype: team_log.SharedLinkChangeVisibilityDetails """ if not self.is_shared_link_change_visibility_details(): raise AttributeError("tag 'shared_link_change_visibility_details' not set") @@ -15519,7 +15578,7 @@ def get_shared_link_copy_details(self): """ Only call this if :meth:`is_shared_link_copy_details` is true. - :rtype: SharedLinkCopyDetails + :rtype: team_log.SharedLinkCopyDetails """ if not self.is_shared_link_copy_details(): raise AttributeError("tag 'shared_link_copy_details' not set") @@ -15529,7 +15588,7 @@ def get_shared_link_create_details(self): """ Only call this if :meth:`is_shared_link_create_details` is true. - :rtype: SharedLinkCreateDetails + :rtype: team_log.SharedLinkCreateDetails """ if not self.is_shared_link_create_details(): raise AttributeError("tag 'shared_link_create_details' not set") @@ -15539,7 +15598,7 @@ def get_shared_link_disable_details(self): """ Only call this if :meth:`is_shared_link_disable_details` is true. - :rtype: SharedLinkDisableDetails + :rtype: team_log.SharedLinkDisableDetails """ if not self.is_shared_link_disable_details(): raise AttributeError("tag 'shared_link_disable_details' not set") @@ -15549,7 +15608,7 @@ def get_shared_link_download_details(self): """ Only call this if :meth:`is_shared_link_download_details` is true. - :rtype: SharedLinkDownloadDetails + :rtype: team_log.SharedLinkDownloadDetails """ if not self.is_shared_link_download_details(): raise AttributeError("tag 'shared_link_download_details' not set") @@ -15559,7 +15618,7 @@ def get_shared_link_remove_expiry_details(self): """ Only call this if :meth:`is_shared_link_remove_expiry_details` is true. - :rtype: SharedLinkRemoveExpiryDetails + :rtype: team_log.SharedLinkRemoveExpiryDetails """ if not self.is_shared_link_remove_expiry_details(): raise AttributeError("tag 'shared_link_remove_expiry_details' not set") @@ -15569,7 +15628,7 @@ def get_shared_link_share_details(self): """ Only call this if :meth:`is_shared_link_share_details` is true. - :rtype: SharedLinkShareDetails + :rtype: team_log.SharedLinkShareDetails """ if not self.is_shared_link_share_details(): raise AttributeError("tag 'shared_link_share_details' not set") @@ -15579,7 +15638,7 @@ def get_shared_link_view_details(self): """ Only call this if :meth:`is_shared_link_view_details` is true. - :rtype: SharedLinkViewDetails + :rtype: team_log.SharedLinkViewDetails """ if not self.is_shared_link_view_details(): raise AttributeError("tag 'shared_link_view_details' not set") @@ -15589,7 +15648,7 @@ def get_shared_note_opened_details(self): """ Only call this if :meth:`is_shared_note_opened_details` is true. - :rtype: SharedNoteOpenedDetails + :rtype: team_log.SharedNoteOpenedDetails """ if not self.is_shared_note_opened_details(): raise AttributeError("tag 'shared_note_opened_details' not set") @@ -15599,7 +15658,7 @@ def get_shmodel_group_share_details(self): """ Only call this if :meth:`is_shmodel_group_share_details` is true. - :rtype: ShmodelGroupShareDetails + :rtype: team_log.ShmodelGroupShareDetails """ if not self.is_shmodel_group_share_details(): raise AttributeError("tag 'shmodel_group_share_details' not set") @@ -15609,7 +15668,7 @@ def get_showcase_access_granted_details(self): """ Only call this if :meth:`is_showcase_access_granted_details` is true. - :rtype: ShowcaseAccessGrantedDetails + :rtype: team_log.ShowcaseAccessGrantedDetails """ if not self.is_showcase_access_granted_details(): raise AttributeError("tag 'showcase_access_granted_details' not set") @@ -15619,7 +15678,7 @@ def get_showcase_add_member_details(self): """ Only call this if :meth:`is_showcase_add_member_details` is true. - :rtype: ShowcaseAddMemberDetails + :rtype: team_log.ShowcaseAddMemberDetails """ if not self.is_showcase_add_member_details(): raise AttributeError("tag 'showcase_add_member_details' not set") @@ -15629,7 +15688,7 @@ def get_showcase_archived_details(self): """ Only call this if :meth:`is_showcase_archived_details` is true. - :rtype: ShowcaseArchivedDetails + :rtype: team_log.ShowcaseArchivedDetails """ if not self.is_showcase_archived_details(): raise AttributeError("tag 'showcase_archived_details' not set") @@ -15639,7 +15698,7 @@ def get_showcase_created_details(self): """ Only call this if :meth:`is_showcase_created_details` is true. - :rtype: ShowcaseCreatedDetails + :rtype: team_log.ShowcaseCreatedDetails """ if not self.is_showcase_created_details(): raise AttributeError("tag 'showcase_created_details' not set") @@ -15649,7 +15708,7 @@ def get_showcase_delete_comment_details(self): """ Only call this if :meth:`is_showcase_delete_comment_details` is true. - :rtype: ShowcaseDeleteCommentDetails + :rtype: team_log.ShowcaseDeleteCommentDetails """ if not self.is_showcase_delete_comment_details(): raise AttributeError("tag 'showcase_delete_comment_details' not set") @@ -15659,7 +15718,7 @@ def get_showcase_edited_details(self): """ Only call this if :meth:`is_showcase_edited_details` is true. - :rtype: ShowcaseEditedDetails + :rtype: team_log.ShowcaseEditedDetails """ if not self.is_showcase_edited_details(): raise AttributeError("tag 'showcase_edited_details' not set") @@ -15669,7 +15728,7 @@ def get_showcase_edit_comment_details(self): """ Only call this if :meth:`is_showcase_edit_comment_details` is true. - :rtype: ShowcaseEditCommentDetails + :rtype: team_log.ShowcaseEditCommentDetails """ if not self.is_showcase_edit_comment_details(): raise AttributeError("tag 'showcase_edit_comment_details' not set") @@ -15679,7 +15738,7 @@ def get_showcase_file_added_details(self): """ Only call this if :meth:`is_showcase_file_added_details` is true. - :rtype: ShowcaseFileAddedDetails + :rtype: team_log.ShowcaseFileAddedDetails """ if not self.is_showcase_file_added_details(): raise AttributeError("tag 'showcase_file_added_details' not set") @@ -15689,7 +15748,7 @@ def get_showcase_file_download_details(self): """ Only call this if :meth:`is_showcase_file_download_details` is true. - :rtype: ShowcaseFileDownloadDetails + :rtype: team_log.ShowcaseFileDownloadDetails """ if not self.is_showcase_file_download_details(): raise AttributeError("tag 'showcase_file_download_details' not set") @@ -15699,7 +15758,7 @@ def get_showcase_file_removed_details(self): """ Only call this if :meth:`is_showcase_file_removed_details` is true. - :rtype: ShowcaseFileRemovedDetails + :rtype: team_log.ShowcaseFileRemovedDetails """ if not self.is_showcase_file_removed_details(): raise AttributeError("tag 'showcase_file_removed_details' not set") @@ -15709,7 +15768,7 @@ def get_showcase_file_view_details(self): """ Only call this if :meth:`is_showcase_file_view_details` is true. - :rtype: ShowcaseFileViewDetails + :rtype: team_log.ShowcaseFileViewDetails """ if not self.is_showcase_file_view_details(): raise AttributeError("tag 'showcase_file_view_details' not set") @@ -15719,7 +15778,7 @@ def get_showcase_permanently_deleted_details(self): """ Only call this if :meth:`is_showcase_permanently_deleted_details` is true. - :rtype: ShowcasePermanentlyDeletedDetails + :rtype: team_log.ShowcasePermanentlyDeletedDetails """ if not self.is_showcase_permanently_deleted_details(): raise AttributeError("tag 'showcase_permanently_deleted_details' not set") @@ -15729,7 +15788,7 @@ def get_showcase_post_comment_details(self): """ Only call this if :meth:`is_showcase_post_comment_details` is true. - :rtype: ShowcasePostCommentDetails + :rtype: team_log.ShowcasePostCommentDetails """ if not self.is_showcase_post_comment_details(): raise AttributeError("tag 'showcase_post_comment_details' not set") @@ -15739,7 +15798,7 @@ def get_showcase_remove_member_details(self): """ Only call this if :meth:`is_showcase_remove_member_details` is true. - :rtype: ShowcaseRemoveMemberDetails + :rtype: team_log.ShowcaseRemoveMemberDetails """ if not self.is_showcase_remove_member_details(): raise AttributeError("tag 'showcase_remove_member_details' not set") @@ -15749,7 +15808,7 @@ def get_showcase_renamed_details(self): """ Only call this if :meth:`is_showcase_renamed_details` is true. - :rtype: ShowcaseRenamedDetails + :rtype: team_log.ShowcaseRenamedDetails """ if not self.is_showcase_renamed_details(): raise AttributeError("tag 'showcase_renamed_details' not set") @@ -15759,7 +15818,7 @@ def get_showcase_request_access_details(self): """ Only call this if :meth:`is_showcase_request_access_details` is true. - :rtype: ShowcaseRequestAccessDetails + :rtype: team_log.ShowcaseRequestAccessDetails """ if not self.is_showcase_request_access_details(): raise AttributeError("tag 'showcase_request_access_details' not set") @@ -15769,7 +15828,7 @@ def get_showcase_resolve_comment_details(self): """ Only call this if :meth:`is_showcase_resolve_comment_details` is true. - :rtype: ShowcaseResolveCommentDetails + :rtype: team_log.ShowcaseResolveCommentDetails """ if not self.is_showcase_resolve_comment_details(): raise AttributeError("tag 'showcase_resolve_comment_details' not set") @@ -15779,7 +15838,7 @@ def get_showcase_restored_details(self): """ Only call this if :meth:`is_showcase_restored_details` is true. - :rtype: ShowcaseRestoredDetails + :rtype: team_log.ShowcaseRestoredDetails """ if not self.is_showcase_restored_details(): raise AttributeError("tag 'showcase_restored_details' not set") @@ -15789,7 +15848,7 @@ def get_showcase_trashed_details(self): """ Only call this if :meth:`is_showcase_trashed_details` is true. - :rtype: ShowcaseTrashedDetails + :rtype: team_log.ShowcaseTrashedDetails """ if not self.is_showcase_trashed_details(): raise AttributeError("tag 'showcase_trashed_details' not set") @@ -15799,7 +15858,7 @@ def get_showcase_trashed_deprecated_details(self): """ Only call this if :meth:`is_showcase_trashed_deprecated_details` is true. - :rtype: ShowcaseTrashedDeprecatedDetails + :rtype: team_log.ShowcaseTrashedDeprecatedDetails """ if not self.is_showcase_trashed_deprecated_details(): raise AttributeError("tag 'showcase_trashed_deprecated_details' not set") @@ -15809,7 +15868,7 @@ def get_showcase_unresolve_comment_details(self): """ Only call this if :meth:`is_showcase_unresolve_comment_details` is true. - :rtype: ShowcaseUnresolveCommentDetails + :rtype: team_log.ShowcaseUnresolveCommentDetails """ if not self.is_showcase_unresolve_comment_details(): raise AttributeError("tag 'showcase_unresolve_comment_details' not set") @@ -15819,7 +15878,7 @@ def get_showcase_untrashed_details(self): """ Only call this if :meth:`is_showcase_untrashed_details` is true. - :rtype: ShowcaseUntrashedDetails + :rtype: team_log.ShowcaseUntrashedDetails """ if not self.is_showcase_untrashed_details(): raise AttributeError("tag 'showcase_untrashed_details' not set") @@ -15829,7 +15888,7 @@ def get_showcase_untrashed_deprecated_details(self): """ Only call this if :meth:`is_showcase_untrashed_deprecated_details` is true. - :rtype: ShowcaseUntrashedDeprecatedDetails + :rtype: team_log.ShowcaseUntrashedDeprecatedDetails """ if not self.is_showcase_untrashed_deprecated_details(): raise AttributeError("tag 'showcase_untrashed_deprecated_details' not set") @@ -15839,7 +15898,7 @@ def get_showcase_view_details(self): """ Only call this if :meth:`is_showcase_view_details` is true. - :rtype: ShowcaseViewDetails + :rtype: team_log.ShowcaseViewDetails """ if not self.is_showcase_view_details(): raise AttributeError("tag 'showcase_view_details' not set") @@ -15849,7 +15908,7 @@ def get_sso_add_cert_details(self): """ Only call this if :meth:`is_sso_add_cert_details` is true. - :rtype: SsoAddCertDetails + :rtype: team_log.SsoAddCertDetails """ if not self.is_sso_add_cert_details(): raise AttributeError("tag 'sso_add_cert_details' not set") @@ -15859,7 +15918,7 @@ def get_sso_add_login_url_details(self): """ Only call this if :meth:`is_sso_add_login_url_details` is true. - :rtype: SsoAddLoginUrlDetails + :rtype: team_log.SsoAddLoginUrlDetails """ if not self.is_sso_add_login_url_details(): raise AttributeError("tag 'sso_add_login_url_details' not set") @@ -15869,7 +15928,7 @@ def get_sso_add_logout_url_details(self): """ Only call this if :meth:`is_sso_add_logout_url_details` is true. - :rtype: SsoAddLogoutUrlDetails + :rtype: team_log.SsoAddLogoutUrlDetails """ if not self.is_sso_add_logout_url_details(): raise AttributeError("tag 'sso_add_logout_url_details' not set") @@ -15879,7 +15938,7 @@ def get_sso_change_cert_details(self): """ Only call this if :meth:`is_sso_change_cert_details` is true. - :rtype: SsoChangeCertDetails + :rtype: team_log.SsoChangeCertDetails """ if not self.is_sso_change_cert_details(): raise AttributeError("tag 'sso_change_cert_details' not set") @@ -15889,7 +15948,7 @@ def get_sso_change_login_url_details(self): """ Only call this if :meth:`is_sso_change_login_url_details` is true. - :rtype: SsoChangeLoginUrlDetails + :rtype: team_log.SsoChangeLoginUrlDetails """ if not self.is_sso_change_login_url_details(): raise AttributeError("tag 'sso_change_login_url_details' not set") @@ -15899,7 +15958,7 @@ def get_sso_change_logout_url_details(self): """ Only call this if :meth:`is_sso_change_logout_url_details` is true. - :rtype: SsoChangeLogoutUrlDetails + :rtype: team_log.SsoChangeLogoutUrlDetails """ if not self.is_sso_change_logout_url_details(): raise AttributeError("tag 'sso_change_logout_url_details' not set") @@ -15909,7 +15968,7 @@ def get_sso_change_saml_identity_mode_details(self): """ Only call this if :meth:`is_sso_change_saml_identity_mode_details` is true. - :rtype: SsoChangeSamlIdentityModeDetails + :rtype: team_log.SsoChangeSamlIdentityModeDetails """ if not self.is_sso_change_saml_identity_mode_details(): raise AttributeError("tag 'sso_change_saml_identity_mode_details' not set") @@ -15919,7 +15978,7 @@ def get_sso_remove_cert_details(self): """ Only call this if :meth:`is_sso_remove_cert_details` is true. - :rtype: SsoRemoveCertDetails + :rtype: team_log.SsoRemoveCertDetails """ if not self.is_sso_remove_cert_details(): raise AttributeError("tag 'sso_remove_cert_details' not set") @@ -15929,7 +15988,7 @@ def get_sso_remove_login_url_details(self): """ Only call this if :meth:`is_sso_remove_login_url_details` is true. - :rtype: SsoRemoveLoginUrlDetails + :rtype: team_log.SsoRemoveLoginUrlDetails """ if not self.is_sso_remove_login_url_details(): raise AttributeError("tag 'sso_remove_login_url_details' not set") @@ -15939,7 +15998,7 @@ def get_sso_remove_logout_url_details(self): """ Only call this if :meth:`is_sso_remove_logout_url_details` is true. - :rtype: SsoRemoveLogoutUrlDetails + :rtype: team_log.SsoRemoveLogoutUrlDetails """ if not self.is_sso_remove_logout_url_details(): raise AttributeError("tag 'sso_remove_logout_url_details' not set") @@ -15949,7 +16008,7 @@ def get_team_folder_change_status_details(self): """ Only call this if :meth:`is_team_folder_change_status_details` is true. - :rtype: TeamFolderChangeStatusDetails + :rtype: team_log.TeamFolderChangeStatusDetails """ if not self.is_team_folder_change_status_details(): raise AttributeError("tag 'team_folder_change_status_details' not set") @@ -15959,7 +16018,7 @@ def get_team_folder_create_details(self): """ Only call this if :meth:`is_team_folder_create_details` is true. - :rtype: TeamFolderCreateDetails + :rtype: team_log.TeamFolderCreateDetails """ if not self.is_team_folder_create_details(): raise AttributeError("tag 'team_folder_create_details' not set") @@ -15969,7 +16028,7 @@ def get_team_folder_downgrade_details(self): """ Only call this if :meth:`is_team_folder_downgrade_details` is true. - :rtype: TeamFolderDowngradeDetails + :rtype: team_log.TeamFolderDowngradeDetails """ if not self.is_team_folder_downgrade_details(): raise AttributeError("tag 'team_folder_downgrade_details' not set") @@ -15979,7 +16038,7 @@ def get_team_folder_permanently_delete_details(self): """ Only call this if :meth:`is_team_folder_permanently_delete_details` is true. - :rtype: TeamFolderPermanentlyDeleteDetails + :rtype: team_log.TeamFolderPermanentlyDeleteDetails """ if not self.is_team_folder_permanently_delete_details(): raise AttributeError("tag 'team_folder_permanently_delete_details' not set") @@ -15989,7 +16048,7 @@ def get_team_folder_rename_details(self): """ Only call this if :meth:`is_team_folder_rename_details` is true. - :rtype: TeamFolderRenameDetails + :rtype: team_log.TeamFolderRenameDetails """ if not self.is_team_folder_rename_details(): raise AttributeError("tag 'team_folder_rename_details' not set") @@ -15999,7 +16058,7 @@ def get_team_selective_sync_settings_changed_details(self): """ Only call this if :meth:`is_team_selective_sync_settings_changed_details` is true. - :rtype: TeamSelectiveSyncSettingsChangedDetails + :rtype: team_log.TeamSelectiveSyncSettingsChangedDetails """ if not self.is_team_selective_sync_settings_changed_details(): raise AttributeError("tag 'team_selective_sync_settings_changed_details' not set") @@ -16009,7 +16068,7 @@ def get_account_capture_change_policy_details(self): """ Only call this if :meth:`is_account_capture_change_policy_details` is true. - :rtype: AccountCaptureChangePolicyDetails + :rtype: team_log.AccountCaptureChangePolicyDetails """ if not self.is_account_capture_change_policy_details(): raise AttributeError("tag 'account_capture_change_policy_details' not set") @@ -16019,7 +16078,7 @@ def get_allow_download_disabled_details(self): """ Only call this if :meth:`is_allow_download_disabled_details` is true. - :rtype: AllowDownloadDisabledDetails + :rtype: team_log.AllowDownloadDisabledDetails """ if not self.is_allow_download_disabled_details(): raise AttributeError("tag 'allow_download_disabled_details' not set") @@ -16029,7 +16088,7 @@ def get_allow_download_enabled_details(self): """ Only call this if :meth:`is_allow_download_enabled_details` is true. - :rtype: AllowDownloadEnabledDetails + :rtype: team_log.AllowDownloadEnabledDetails """ if not self.is_allow_download_enabled_details(): raise AttributeError("tag 'allow_download_enabled_details' not set") @@ -16039,7 +16098,7 @@ def get_camera_uploads_policy_changed_details(self): """ Only call this if :meth:`is_camera_uploads_policy_changed_details` is true. - :rtype: CameraUploadsPolicyChangedDetails + :rtype: team_log.CameraUploadsPolicyChangedDetails """ if not self.is_camera_uploads_policy_changed_details(): raise AttributeError("tag 'camera_uploads_policy_changed_details' not set") @@ -16049,7 +16108,7 @@ def get_data_placement_restriction_change_policy_details(self): """ Only call this if :meth:`is_data_placement_restriction_change_policy_details` is true. - :rtype: DataPlacementRestrictionChangePolicyDetails + :rtype: team_log.DataPlacementRestrictionChangePolicyDetails """ if not self.is_data_placement_restriction_change_policy_details(): raise AttributeError("tag 'data_placement_restriction_change_policy_details' not set") @@ -16059,7 +16118,7 @@ def get_data_placement_restriction_satisfy_policy_details(self): """ Only call this if :meth:`is_data_placement_restriction_satisfy_policy_details` is true. - :rtype: DataPlacementRestrictionSatisfyPolicyDetails + :rtype: team_log.DataPlacementRestrictionSatisfyPolicyDetails """ if not self.is_data_placement_restriction_satisfy_policy_details(): raise AttributeError("tag 'data_placement_restriction_satisfy_policy_details' not set") @@ -16069,7 +16128,7 @@ def get_device_approvals_change_desktop_policy_details(self): """ Only call this if :meth:`is_device_approvals_change_desktop_policy_details` is true. - :rtype: DeviceApprovalsChangeDesktopPolicyDetails + :rtype: team_log.DeviceApprovalsChangeDesktopPolicyDetails """ if not self.is_device_approvals_change_desktop_policy_details(): raise AttributeError("tag 'device_approvals_change_desktop_policy_details' not set") @@ -16079,7 +16138,7 @@ def get_device_approvals_change_mobile_policy_details(self): """ Only call this if :meth:`is_device_approvals_change_mobile_policy_details` is true. - :rtype: DeviceApprovalsChangeMobilePolicyDetails + :rtype: team_log.DeviceApprovalsChangeMobilePolicyDetails """ if not self.is_device_approvals_change_mobile_policy_details(): raise AttributeError("tag 'device_approvals_change_mobile_policy_details' not set") @@ -16089,7 +16148,7 @@ def get_device_approvals_change_overage_action_details(self): """ Only call this if :meth:`is_device_approvals_change_overage_action_details` is true. - :rtype: DeviceApprovalsChangeOverageActionDetails + :rtype: team_log.DeviceApprovalsChangeOverageActionDetails """ if not self.is_device_approvals_change_overage_action_details(): raise AttributeError("tag 'device_approvals_change_overage_action_details' not set") @@ -16099,7 +16158,7 @@ def get_device_approvals_change_unlink_action_details(self): """ Only call this if :meth:`is_device_approvals_change_unlink_action_details` is true. - :rtype: DeviceApprovalsChangeUnlinkActionDetails + :rtype: team_log.DeviceApprovalsChangeUnlinkActionDetails """ if not self.is_device_approvals_change_unlink_action_details(): raise AttributeError("tag 'device_approvals_change_unlink_action_details' not set") @@ -16109,7 +16168,7 @@ def get_directory_restrictions_add_members_details(self): """ Only call this if :meth:`is_directory_restrictions_add_members_details` is true. - :rtype: DirectoryRestrictionsAddMembersDetails + :rtype: team_log.DirectoryRestrictionsAddMembersDetails """ if not self.is_directory_restrictions_add_members_details(): raise AttributeError("tag 'directory_restrictions_add_members_details' not set") @@ -16119,7 +16178,7 @@ def get_directory_restrictions_remove_members_details(self): """ Only call this if :meth:`is_directory_restrictions_remove_members_details` is true. - :rtype: DirectoryRestrictionsRemoveMembersDetails + :rtype: team_log.DirectoryRestrictionsRemoveMembersDetails """ if not self.is_directory_restrictions_remove_members_details(): raise AttributeError("tag 'directory_restrictions_remove_members_details' not set") @@ -16129,7 +16188,7 @@ def get_emm_add_exception_details(self): """ Only call this if :meth:`is_emm_add_exception_details` is true. - :rtype: EmmAddExceptionDetails + :rtype: team_log.EmmAddExceptionDetails """ if not self.is_emm_add_exception_details(): raise AttributeError("tag 'emm_add_exception_details' not set") @@ -16139,7 +16198,7 @@ def get_emm_change_policy_details(self): """ Only call this if :meth:`is_emm_change_policy_details` is true. - :rtype: EmmChangePolicyDetails + :rtype: team_log.EmmChangePolicyDetails """ if not self.is_emm_change_policy_details(): raise AttributeError("tag 'emm_change_policy_details' not set") @@ -16149,7 +16208,7 @@ def get_emm_remove_exception_details(self): """ Only call this if :meth:`is_emm_remove_exception_details` is true. - :rtype: EmmRemoveExceptionDetails + :rtype: team_log.EmmRemoveExceptionDetails """ if not self.is_emm_remove_exception_details(): raise AttributeError("tag 'emm_remove_exception_details' not set") @@ -16159,7 +16218,7 @@ def get_extended_version_history_change_policy_details(self): """ Only call this if :meth:`is_extended_version_history_change_policy_details` is true. - :rtype: ExtendedVersionHistoryChangePolicyDetails + :rtype: team_log.ExtendedVersionHistoryChangePolicyDetails """ if not self.is_extended_version_history_change_policy_details(): raise AttributeError("tag 'extended_version_history_change_policy_details' not set") @@ -16169,7 +16228,7 @@ def get_file_comments_change_policy_details(self): """ Only call this if :meth:`is_file_comments_change_policy_details` is true. - :rtype: FileCommentsChangePolicyDetails + :rtype: team_log.FileCommentsChangePolicyDetails """ if not self.is_file_comments_change_policy_details(): raise AttributeError("tag 'file_comments_change_policy_details' not set") @@ -16179,7 +16238,7 @@ def get_file_requests_change_policy_details(self): """ Only call this if :meth:`is_file_requests_change_policy_details` is true. - :rtype: FileRequestsChangePolicyDetails + :rtype: team_log.FileRequestsChangePolicyDetails """ if not self.is_file_requests_change_policy_details(): raise AttributeError("tag 'file_requests_change_policy_details' not set") @@ -16189,7 +16248,7 @@ def get_file_requests_emails_enabled_details(self): """ Only call this if :meth:`is_file_requests_emails_enabled_details` is true. - :rtype: FileRequestsEmailsEnabledDetails + :rtype: team_log.FileRequestsEmailsEnabledDetails """ if not self.is_file_requests_emails_enabled_details(): raise AttributeError("tag 'file_requests_emails_enabled_details' not set") @@ -16199,7 +16258,7 @@ def get_file_requests_emails_restricted_to_team_only_details(self): """ Only call this if :meth:`is_file_requests_emails_restricted_to_team_only_details` is true. - :rtype: FileRequestsEmailsRestrictedToTeamOnlyDetails + :rtype: team_log.FileRequestsEmailsRestrictedToTeamOnlyDetails """ if not self.is_file_requests_emails_restricted_to_team_only_details(): raise AttributeError("tag 'file_requests_emails_restricted_to_team_only_details' not set") @@ -16209,7 +16268,7 @@ def get_google_sso_change_policy_details(self): """ Only call this if :meth:`is_google_sso_change_policy_details` is true. - :rtype: GoogleSsoChangePolicyDetails + :rtype: team_log.GoogleSsoChangePolicyDetails """ if not self.is_google_sso_change_policy_details(): raise AttributeError("tag 'google_sso_change_policy_details' not set") @@ -16219,7 +16278,7 @@ def get_group_user_management_change_policy_details(self): """ Only call this if :meth:`is_group_user_management_change_policy_details` is true. - :rtype: GroupUserManagementChangePolicyDetails + :rtype: team_log.GroupUserManagementChangePolicyDetails """ if not self.is_group_user_management_change_policy_details(): raise AttributeError("tag 'group_user_management_change_policy_details' not set") @@ -16229,7 +16288,7 @@ def get_member_requests_change_policy_details(self): """ Only call this if :meth:`is_member_requests_change_policy_details` is true. - :rtype: MemberRequestsChangePolicyDetails + :rtype: team_log.MemberRequestsChangePolicyDetails """ if not self.is_member_requests_change_policy_details(): raise AttributeError("tag 'member_requests_change_policy_details' not set") @@ -16239,7 +16298,7 @@ def get_member_space_limits_add_exception_details(self): """ Only call this if :meth:`is_member_space_limits_add_exception_details` is true. - :rtype: MemberSpaceLimitsAddExceptionDetails + :rtype: team_log.MemberSpaceLimitsAddExceptionDetails """ if not self.is_member_space_limits_add_exception_details(): raise AttributeError("tag 'member_space_limits_add_exception_details' not set") @@ -16249,7 +16308,7 @@ def get_member_space_limits_change_caps_type_policy_details(self): """ Only call this if :meth:`is_member_space_limits_change_caps_type_policy_details` is true. - :rtype: MemberSpaceLimitsChangeCapsTypePolicyDetails + :rtype: team_log.MemberSpaceLimitsChangeCapsTypePolicyDetails """ if not self.is_member_space_limits_change_caps_type_policy_details(): raise AttributeError("tag 'member_space_limits_change_caps_type_policy_details' not set") @@ -16259,7 +16318,7 @@ def get_member_space_limits_change_policy_details(self): """ Only call this if :meth:`is_member_space_limits_change_policy_details` is true. - :rtype: MemberSpaceLimitsChangePolicyDetails + :rtype: team_log.MemberSpaceLimitsChangePolicyDetails """ if not self.is_member_space_limits_change_policy_details(): raise AttributeError("tag 'member_space_limits_change_policy_details' not set") @@ -16269,7 +16328,7 @@ def get_member_space_limits_remove_exception_details(self): """ Only call this if :meth:`is_member_space_limits_remove_exception_details` is true. - :rtype: MemberSpaceLimitsRemoveExceptionDetails + :rtype: team_log.MemberSpaceLimitsRemoveExceptionDetails """ if not self.is_member_space_limits_remove_exception_details(): raise AttributeError("tag 'member_space_limits_remove_exception_details' not set") @@ -16279,7 +16338,7 @@ def get_member_suggestions_change_policy_details(self): """ Only call this if :meth:`is_member_suggestions_change_policy_details` is true. - :rtype: MemberSuggestionsChangePolicyDetails + :rtype: team_log.MemberSuggestionsChangePolicyDetails """ if not self.is_member_suggestions_change_policy_details(): raise AttributeError("tag 'member_suggestions_change_policy_details' not set") @@ -16289,7 +16348,7 @@ def get_microsoft_office_addin_change_policy_details(self): """ Only call this if :meth:`is_microsoft_office_addin_change_policy_details` is true. - :rtype: MicrosoftOfficeAddinChangePolicyDetails + :rtype: team_log.MicrosoftOfficeAddinChangePolicyDetails """ if not self.is_microsoft_office_addin_change_policy_details(): raise AttributeError("tag 'microsoft_office_addin_change_policy_details' not set") @@ -16299,7 +16358,7 @@ def get_network_control_change_policy_details(self): """ Only call this if :meth:`is_network_control_change_policy_details` is true. - :rtype: NetworkControlChangePolicyDetails + :rtype: team_log.NetworkControlChangePolicyDetails """ if not self.is_network_control_change_policy_details(): raise AttributeError("tag 'network_control_change_policy_details' not set") @@ -16309,7 +16368,7 @@ def get_paper_change_deployment_policy_details(self): """ Only call this if :meth:`is_paper_change_deployment_policy_details` is true. - :rtype: PaperChangeDeploymentPolicyDetails + :rtype: team_log.PaperChangeDeploymentPolicyDetails """ if not self.is_paper_change_deployment_policy_details(): raise AttributeError("tag 'paper_change_deployment_policy_details' not set") @@ -16319,7 +16378,7 @@ def get_paper_change_member_link_policy_details(self): """ Only call this if :meth:`is_paper_change_member_link_policy_details` is true. - :rtype: PaperChangeMemberLinkPolicyDetails + :rtype: team_log.PaperChangeMemberLinkPolicyDetails """ if not self.is_paper_change_member_link_policy_details(): raise AttributeError("tag 'paper_change_member_link_policy_details' not set") @@ -16329,7 +16388,7 @@ def get_paper_change_member_policy_details(self): """ Only call this if :meth:`is_paper_change_member_policy_details` is true. - :rtype: PaperChangeMemberPolicyDetails + :rtype: team_log.PaperChangeMemberPolicyDetails """ if not self.is_paper_change_member_policy_details(): raise AttributeError("tag 'paper_change_member_policy_details' not set") @@ -16339,7 +16398,7 @@ def get_paper_change_policy_details(self): """ Only call this if :meth:`is_paper_change_policy_details` is true. - :rtype: PaperChangePolicyDetails + :rtype: team_log.PaperChangePolicyDetails """ if not self.is_paper_change_policy_details(): raise AttributeError("tag 'paper_change_policy_details' not set") @@ -16349,7 +16408,7 @@ def get_paper_enabled_users_group_addition_details(self): """ Only call this if :meth:`is_paper_enabled_users_group_addition_details` is true. - :rtype: PaperEnabledUsersGroupAdditionDetails + :rtype: team_log.PaperEnabledUsersGroupAdditionDetails """ if not self.is_paper_enabled_users_group_addition_details(): raise AttributeError("tag 'paper_enabled_users_group_addition_details' not set") @@ -16359,7 +16418,7 @@ def get_paper_enabled_users_group_removal_details(self): """ Only call this if :meth:`is_paper_enabled_users_group_removal_details` is true. - :rtype: PaperEnabledUsersGroupRemovalDetails + :rtype: team_log.PaperEnabledUsersGroupRemovalDetails """ if not self.is_paper_enabled_users_group_removal_details(): raise AttributeError("tag 'paper_enabled_users_group_removal_details' not set") @@ -16369,7 +16428,7 @@ def get_permanent_delete_change_policy_details(self): """ Only call this if :meth:`is_permanent_delete_change_policy_details` is true. - :rtype: PermanentDeleteChangePolicyDetails + :rtype: team_log.PermanentDeleteChangePolicyDetails """ if not self.is_permanent_delete_change_policy_details(): raise AttributeError("tag 'permanent_delete_change_policy_details' not set") @@ -16379,7 +16438,7 @@ def get_sharing_change_folder_join_policy_details(self): """ Only call this if :meth:`is_sharing_change_folder_join_policy_details` is true. - :rtype: SharingChangeFolderJoinPolicyDetails + :rtype: team_log.SharingChangeFolderJoinPolicyDetails """ if not self.is_sharing_change_folder_join_policy_details(): raise AttributeError("tag 'sharing_change_folder_join_policy_details' not set") @@ -16389,7 +16448,7 @@ def get_sharing_change_link_policy_details(self): """ Only call this if :meth:`is_sharing_change_link_policy_details` is true. - :rtype: SharingChangeLinkPolicyDetails + :rtype: team_log.SharingChangeLinkPolicyDetails """ if not self.is_sharing_change_link_policy_details(): raise AttributeError("tag 'sharing_change_link_policy_details' not set") @@ -16399,7 +16458,7 @@ def get_sharing_change_member_policy_details(self): """ Only call this if :meth:`is_sharing_change_member_policy_details` is true. - :rtype: SharingChangeMemberPolicyDetails + :rtype: team_log.SharingChangeMemberPolicyDetails """ if not self.is_sharing_change_member_policy_details(): raise AttributeError("tag 'sharing_change_member_policy_details' not set") @@ -16409,7 +16468,7 @@ def get_showcase_change_download_policy_details(self): """ Only call this if :meth:`is_showcase_change_download_policy_details` is true. - :rtype: ShowcaseChangeDownloadPolicyDetails + :rtype: team_log.ShowcaseChangeDownloadPolicyDetails """ if not self.is_showcase_change_download_policy_details(): raise AttributeError("tag 'showcase_change_download_policy_details' not set") @@ -16419,7 +16478,7 @@ def get_showcase_change_enabled_policy_details(self): """ Only call this if :meth:`is_showcase_change_enabled_policy_details` is true. - :rtype: ShowcaseChangeEnabledPolicyDetails + :rtype: team_log.ShowcaseChangeEnabledPolicyDetails """ if not self.is_showcase_change_enabled_policy_details(): raise AttributeError("tag 'showcase_change_enabled_policy_details' not set") @@ -16429,7 +16488,7 @@ def get_showcase_change_external_sharing_policy_details(self): """ Only call this if :meth:`is_showcase_change_external_sharing_policy_details` is true. - :rtype: ShowcaseChangeExternalSharingPolicyDetails + :rtype: team_log.ShowcaseChangeExternalSharingPolicyDetails """ if not self.is_showcase_change_external_sharing_policy_details(): raise AttributeError("tag 'showcase_change_external_sharing_policy_details' not set") @@ -16439,7 +16498,7 @@ def get_smart_sync_change_policy_details(self): """ Only call this if :meth:`is_smart_sync_change_policy_details` is true. - :rtype: SmartSyncChangePolicyDetails + :rtype: team_log.SmartSyncChangePolicyDetails """ if not self.is_smart_sync_change_policy_details(): raise AttributeError("tag 'smart_sync_change_policy_details' not set") @@ -16449,7 +16508,7 @@ def get_smart_sync_not_opt_out_details(self): """ Only call this if :meth:`is_smart_sync_not_opt_out_details` is true. - :rtype: SmartSyncNotOptOutDetails + :rtype: team_log.SmartSyncNotOptOutDetails """ if not self.is_smart_sync_not_opt_out_details(): raise AttributeError("tag 'smart_sync_not_opt_out_details' not set") @@ -16459,7 +16518,7 @@ def get_smart_sync_opt_out_details(self): """ Only call this if :meth:`is_smart_sync_opt_out_details` is true. - :rtype: SmartSyncOptOutDetails + :rtype: team_log.SmartSyncOptOutDetails """ if not self.is_smart_sync_opt_out_details(): raise AttributeError("tag 'smart_sync_opt_out_details' not set") @@ -16469,7 +16528,7 @@ def get_sso_change_policy_details(self): """ Only call this if :meth:`is_sso_change_policy_details` is true. - :rtype: SsoChangePolicyDetails + :rtype: team_log.SsoChangePolicyDetails """ if not self.is_sso_change_policy_details(): raise AttributeError("tag 'sso_change_policy_details' not set") @@ -16479,7 +16538,7 @@ def get_team_selective_sync_policy_changed_details(self): """ Only call this if :meth:`is_team_selective_sync_policy_changed_details` is true. - :rtype: TeamSelectiveSyncPolicyChangedDetails + :rtype: team_log.TeamSelectiveSyncPolicyChangedDetails """ if not self.is_team_selective_sync_policy_changed_details(): raise AttributeError("tag 'team_selective_sync_policy_changed_details' not set") @@ -16489,7 +16548,7 @@ def get_tfa_change_policy_details(self): """ Only call this if :meth:`is_tfa_change_policy_details` is true. - :rtype: TfaChangePolicyDetails + :rtype: team_log.TfaChangePolicyDetails """ if not self.is_tfa_change_policy_details(): raise AttributeError("tag 'tfa_change_policy_details' not set") @@ -16499,7 +16558,7 @@ def get_two_account_change_policy_details(self): """ Only call this if :meth:`is_two_account_change_policy_details` is true. - :rtype: TwoAccountChangePolicyDetails + :rtype: team_log.TwoAccountChangePolicyDetails """ if not self.is_two_account_change_policy_details(): raise AttributeError("tag 'two_account_change_policy_details' not set") @@ -16509,7 +16568,7 @@ def get_viewer_info_policy_changed_details(self): """ Only call this if :meth:`is_viewer_info_policy_changed_details` is true. - :rtype: ViewerInfoPolicyChangedDetails + :rtype: team_log.ViewerInfoPolicyChangedDetails """ if not self.is_viewer_info_policy_changed_details(): raise AttributeError("tag 'viewer_info_policy_changed_details' not set") @@ -16519,7 +16578,7 @@ def get_web_sessions_change_fixed_length_policy_details(self): """ Only call this if :meth:`is_web_sessions_change_fixed_length_policy_details` is true. - :rtype: WebSessionsChangeFixedLengthPolicyDetails + :rtype: team_log.WebSessionsChangeFixedLengthPolicyDetails """ if not self.is_web_sessions_change_fixed_length_policy_details(): raise AttributeError("tag 'web_sessions_change_fixed_length_policy_details' not set") @@ -16529,7 +16588,7 @@ def get_web_sessions_change_idle_length_policy_details(self): """ Only call this if :meth:`is_web_sessions_change_idle_length_policy_details` is true. - :rtype: WebSessionsChangeIdleLengthPolicyDetails + :rtype: team_log.WebSessionsChangeIdleLengthPolicyDetails """ if not self.is_web_sessions_change_idle_length_policy_details(): raise AttributeError("tag 'web_sessions_change_idle_length_policy_details' not set") @@ -16539,7 +16598,7 @@ def get_team_merge_from_details(self): """ Only call this if :meth:`is_team_merge_from_details` is true. - :rtype: TeamMergeFromDetails + :rtype: team_log.TeamMergeFromDetails """ if not self.is_team_merge_from_details(): raise AttributeError("tag 'team_merge_from_details' not set") @@ -16549,7 +16608,7 @@ def get_team_merge_to_details(self): """ Only call this if :meth:`is_team_merge_to_details` is true. - :rtype: TeamMergeToDetails + :rtype: team_log.TeamMergeToDetails """ if not self.is_team_merge_to_details(): raise AttributeError("tag 'team_merge_to_details' not set") @@ -16559,7 +16618,7 @@ def get_team_profile_add_logo_details(self): """ Only call this if :meth:`is_team_profile_add_logo_details` is true. - :rtype: TeamProfileAddLogoDetails + :rtype: team_log.TeamProfileAddLogoDetails """ if not self.is_team_profile_add_logo_details(): raise AttributeError("tag 'team_profile_add_logo_details' not set") @@ -16569,7 +16628,7 @@ def get_team_profile_change_default_language_details(self): """ Only call this if :meth:`is_team_profile_change_default_language_details` is true. - :rtype: TeamProfileChangeDefaultLanguageDetails + :rtype: team_log.TeamProfileChangeDefaultLanguageDetails """ if not self.is_team_profile_change_default_language_details(): raise AttributeError("tag 'team_profile_change_default_language_details' not set") @@ -16579,7 +16638,7 @@ def get_team_profile_change_logo_details(self): """ Only call this if :meth:`is_team_profile_change_logo_details` is true. - :rtype: TeamProfileChangeLogoDetails + :rtype: team_log.TeamProfileChangeLogoDetails """ if not self.is_team_profile_change_logo_details(): raise AttributeError("tag 'team_profile_change_logo_details' not set") @@ -16589,7 +16648,7 @@ def get_team_profile_change_name_details(self): """ Only call this if :meth:`is_team_profile_change_name_details` is true. - :rtype: TeamProfileChangeNameDetails + :rtype: team_log.TeamProfileChangeNameDetails """ if not self.is_team_profile_change_name_details(): raise AttributeError("tag 'team_profile_change_name_details' not set") @@ -16599,7 +16658,7 @@ def get_team_profile_remove_logo_details(self): """ Only call this if :meth:`is_team_profile_remove_logo_details` is true. - :rtype: TeamProfileRemoveLogoDetails + :rtype: team_log.TeamProfileRemoveLogoDetails """ if not self.is_team_profile_remove_logo_details(): raise AttributeError("tag 'team_profile_remove_logo_details' not set") @@ -16609,7 +16668,7 @@ def get_tfa_add_backup_phone_details(self): """ Only call this if :meth:`is_tfa_add_backup_phone_details` is true. - :rtype: TfaAddBackupPhoneDetails + :rtype: team_log.TfaAddBackupPhoneDetails """ if not self.is_tfa_add_backup_phone_details(): raise AttributeError("tag 'tfa_add_backup_phone_details' not set") @@ -16619,7 +16678,7 @@ def get_tfa_add_security_key_details(self): """ Only call this if :meth:`is_tfa_add_security_key_details` is true. - :rtype: TfaAddSecurityKeyDetails + :rtype: team_log.TfaAddSecurityKeyDetails """ if not self.is_tfa_add_security_key_details(): raise AttributeError("tag 'tfa_add_security_key_details' not set") @@ -16629,7 +16688,7 @@ def get_tfa_change_backup_phone_details(self): """ Only call this if :meth:`is_tfa_change_backup_phone_details` is true. - :rtype: TfaChangeBackupPhoneDetails + :rtype: team_log.TfaChangeBackupPhoneDetails """ if not self.is_tfa_change_backup_phone_details(): raise AttributeError("tag 'tfa_change_backup_phone_details' not set") @@ -16639,7 +16698,7 @@ def get_tfa_change_status_details(self): """ Only call this if :meth:`is_tfa_change_status_details` is true. - :rtype: TfaChangeStatusDetails + :rtype: team_log.TfaChangeStatusDetails """ if not self.is_tfa_change_status_details(): raise AttributeError("tag 'tfa_change_status_details' not set") @@ -16649,7 +16708,7 @@ def get_tfa_remove_backup_phone_details(self): """ Only call this if :meth:`is_tfa_remove_backup_phone_details` is true. - :rtype: TfaRemoveBackupPhoneDetails + :rtype: team_log.TfaRemoveBackupPhoneDetails """ if not self.is_tfa_remove_backup_phone_details(): raise AttributeError("tag 'tfa_remove_backup_phone_details' not set") @@ -16659,7 +16718,7 @@ def get_tfa_remove_security_key_details(self): """ Only call this if :meth:`is_tfa_remove_security_key_details` is true. - :rtype: TfaRemoveSecurityKeyDetails + :rtype: team_log.TfaRemoveSecurityKeyDetails """ if not self.is_tfa_remove_security_key_details(): raise AttributeError("tag 'tfa_remove_security_key_details' not set") @@ -16669,7 +16728,7 @@ def get_tfa_reset_details(self): """ Only call this if :meth:`is_tfa_reset_details` is true. - :rtype: TfaResetDetails + :rtype: team_log.TfaResetDetails """ if not self.is_tfa_reset_details(): raise AttributeError("tag 'tfa_reset_details' not set") @@ -16682,7 +16741,7 @@ def get_missing_details(self): Only call this if :meth:`is_missing_details` is true. - :rtype: MissingDetails + :rtype: team_log.MissingDetails """ if not self.is_missing_details(): raise AttributeError("tag 'missing_details' not set") @@ -16704,657 +16763,791 @@ class EventType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar AppLinkTeamType app_link_team: (apps) Linked app for team - :ivar AppLinkUserType app_link_user: (apps) Linked app for member - :ivar AppUnlinkTeamType app_unlink_team: (apps) Unlinked app for team - :ivar AppUnlinkUserType app_unlink_user: (apps) Unlinked app for member - :ivar FileAddCommentType file_add_comment: (comments) Added file comment - :ivar FileChangeCommentSubscriptionType file_change_comment_subscription: - (comments) Subscribed to or unsubscribed from comment notifications for - file - :ivar FileDeleteCommentType file_delete_comment: (comments) Deleted file - comment - :ivar FileEditCommentType file_edit_comment: (comments) Edited file comment - :ivar FileLikeCommentType file_like_comment: (comments) Liked file comment - (deprecated, no longer logged) - :ivar FileResolveCommentType file_resolve_comment: (comments) Resolved file - comment - :ivar FileUnlikeCommentType file_unlike_comment: (comments) Unliked file - comment (deprecated, no longer logged) - :ivar FileUnresolveCommentType file_unresolve_comment: (comments) Unresolved - file comment - :ivar DeviceChangeIpDesktopType device_change_ip_desktop: (devices) Changed - IP address associated with active desktop session - :ivar DeviceChangeIpMobileType device_change_ip_mobile: (devices) Changed IP - address associated with active mobile session - :ivar DeviceChangeIpWebType device_change_ip_web: (devices) Changed IP - address associated with active web session - :ivar DeviceDeleteOnUnlinkFailType device_delete_on_unlink_fail: (devices) - Failed to delete all files from unlinked device - :ivar DeviceDeleteOnUnlinkSuccessType device_delete_on_unlink_success: - (devices) Deleted all files from unlinked device - :ivar DeviceLinkFailType device_link_fail: (devices) Failed to link device - :ivar DeviceLinkSuccessType device_link_success: (devices) Linked device - :ivar DeviceManagementDisabledType device_management_disabled: (devices) - Disabled device management (deprecated, no longer logged) - :ivar DeviceManagementEnabledType device_management_enabled: (devices) - Enabled device management (deprecated, no longer logged) - :ivar DeviceUnlinkType device_unlink: (devices) Disconnected device - :ivar EmmRefreshAuthTokenType emm_refresh_auth_token: (devices) Refreshed - auth token used for setting up enterprise mobility management + :ivar AppLinkTeamType team_log.EventType.app_link_team: (apps) Linked app + for team + :ivar AppLinkUserType team_log.EventType.app_link_user: (apps) Linked app + for member + :ivar AppUnlinkTeamType team_log.EventType.app_unlink_team: (apps) Unlinked + app for team + :ivar AppUnlinkUserType team_log.EventType.app_unlink_user: (apps) Unlinked + app for member + :ivar FileAddCommentType team_log.EventType.file_add_comment: (comments) + Added file comment + :ivar FileChangeCommentSubscriptionType + team_log.EventType.file_change_comment_subscription: (comments) + Subscribed to or unsubscribed from comment notifications for file + :ivar FileDeleteCommentType team_log.EventType.file_delete_comment: + (comments) Deleted file comment + :ivar FileEditCommentType team_log.EventType.file_edit_comment: (comments) + Edited file comment + :ivar FileLikeCommentType team_log.EventType.file_like_comment: (comments) + Liked file comment (deprecated, no longer logged) + :ivar FileResolveCommentType team_log.EventType.file_resolve_comment: + (comments) Resolved file comment + :ivar FileUnlikeCommentType team_log.EventType.file_unlike_comment: + (comments) Unliked file comment (deprecated, no longer logged) + :ivar FileUnresolveCommentType team_log.EventType.file_unresolve_comment: + (comments) Unresolved file comment + :ivar DeviceChangeIpDesktopType team_log.EventType.device_change_ip_desktop: + (devices) Changed IP address associated with active desktop session + :ivar DeviceChangeIpMobileType team_log.EventType.device_change_ip_mobile: + (devices) Changed IP address associated with active mobile session + :ivar DeviceChangeIpWebType team_log.EventType.device_change_ip_web: + (devices) Changed IP address associated with active web session + :ivar DeviceDeleteOnUnlinkFailType + team_log.EventType.device_delete_on_unlink_fail: (devices) Failed to + delete all files from unlinked device + :ivar DeviceDeleteOnUnlinkSuccessType + team_log.EventType.device_delete_on_unlink_success: (devices) Deleted + all files from unlinked device + :ivar DeviceLinkFailType team_log.EventType.device_link_fail: (devices) + Failed to link device + :ivar DeviceLinkSuccessType team_log.EventType.device_link_success: + (devices) Linked device + :ivar DeviceManagementDisabledType + team_log.EventType.device_management_disabled: (devices) Disabled device + management (deprecated, no longer logged) + :ivar DeviceManagementEnabledType + team_log.EventType.device_management_enabled: (devices) Enabled device + management (deprecated, no longer logged) + :ivar DeviceUnlinkType team_log.EventType.device_unlink: (devices) + Disconnected device + :ivar EmmRefreshAuthTokenType team_log.EventType.emm_refresh_auth_token: + (devices) Refreshed auth token used for setting up enterprise mobility + management :ivar AccountCaptureChangeAvailabilityType - account_capture_change_availability: (domains) Granted/revoked option to - enable account capture on team domains - :ivar AccountCaptureMigrateAccountType account_capture_migrate_account: - (domains) Account-captured user migrated account to team + team_log.EventType.account_capture_change_availability: (domains) + Granted/revoked option to enable account capture on team domains + :ivar AccountCaptureMigrateAccountType + team_log.EventType.account_capture_migrate_account: (domains) + Account-captured user migrated account to team :ivar AccountCaptureNotificationEmailsSentType - account_capture_notification_emails_sent: (domains) Sent proactive - account capture email to all unmanaged members + team_log.EventType.account_capture_notification_emails_sent: (domains) + Sent proactive account capture email to all unmanaged members :ivar AccountCaptureRelinquishAccountType - account_capture_relinquish_account: (domains) Account-captured user - changed account email to personal email - :ivar DisabledDomainInvitesType disabled_domain_invites: (domains) Disabled - domain invites (deprecated, no longer logged) + team_log.EventType.account_capture_relinquish_account: (domains) + Account-captured user changed account email to personal email + :ivar DisabledDomainInvitesType team_log.EventType.disabled_domain_invites: + (domains) Disabled domain invites (deprecated, no longer logged) :ivar DomainInvitesApproveRequestToJoinTeamType - domain_invites_approve_request_to_join_team: (domains) Approved user's - request to join team + team_log.EventType.domain_invites_approve_request_to_join_team: + (domains) Approved user's request to join team :ivar DomainInvitesDeclineRequestToJoinTeamType - domain_invites_decline_request_to_join_team: (domains) Declined user's - request to join team + team_log.EventType.domain_invites_decline_request_to_join_team: + (domains) Declined user's request to join team :ivar DomainInvitesEmailExistingUsersType - domain_invites_email_existing_users: (domains) Sent domain invites to - existing domain accounts (deprecated, no longer logged) + team_log.EventType.domain_invites_email_existing_users: (domains) Sent + domain invites to existing domain accounts (deprecated, no longer + logged) :ivar DomainInvitesRequestToJoinTeamType - domain_invites_request_to_join_team: (domains) Requested to join team + team_log.EventType.domain_invites_request_to_join_team: (domains) + Requested to join team :ivar DomainInvitesSetInviteNewUserPrefToNoType - domain_invites_set_invite_new_user_pref_to_no: (domains) Disabled - "Automatically invite new users" (deprecated, no longer logged) + team_log.EventType.domain_invites_set_invite_new_user_pref_to_no: + (domains) Disabled "Automatically invite new users" (deprecated, no + longer logged) :ivar DomainInvitesSetInviteNewUserPrefToYesType - domain_invites_set_invite_new_user_pref_to_yes: (domains) Enabled - "Automatically invite new users" (deprecated, no longer logged) + team_log.EventType.domain_invites_set_invite_new_user_pref_to_yes: + (domains) Enabled "Automatically invite new users" (deprecated, no + longer logged) :ivar DomainVerificationAddDomainFailType - domain_verification_add_domain_fail: (domains) Failed to verify team - domain + team_log.EventType.domain_verification_add_domain_fail: (domains) Failed + to verify team domain :ivar DomainVerificationAddDomainSuccessType - domain_verification_add_domain_success: (domains) Verified team domain - :ivar DomainVerificationRemoveDomainType domain_verification_remove_domain: - (domains) Removed domain from list of verified team domains - :ivar EnabledDomainInvitesType enabled_domain_invites: (domains) Enabled - domain invites (deprecated, no longer logged) - :ivar CreateFolderType create_folder: (file_operations) Created folders - (deprecated, no longer logged) - :ivar FileAddType file_add: (file_operations) Added files and/or folders - :ivar FileCopyType file_copy: (file_operations) Copied files and/or folders - :ivar FileDeleteType file_delete: (file_operations) Deleted files and/or - folders - :ivar FileDownloadType file_download: (file_operations) Downloaded files - and/or folders - :ivar FileEditType file_edit: (file_operations) Edited files - :ivar FileGetCopyReferenceType file_get_copy_reference: (file_operations) - Created copy reference to file/folder - :ivar FileMoveType file_move: (file_operations) Moved files and/or folders - :ivar FilePermanentlyDeleteType file_permanently_delete: (file_operations) - Permanently deleted files and/or folders - :ivar FilePreviewType file_preview: (file_operations) Previewed files and/or - folders - :ivar FileRenameType file_rename: (file_operations) Renamed files and/or - folders - :ivar FileRestoreType file_restore: (file_operations) Restored deleted files + team_log.EventType.domain_verification_add_domain_success: (domains) + Verified team domain + :ivar DomainVerificationRemoveDomainType + team_log.EventType.domain_verification_remove_domain: (domains) Removed + domain from list of verified team domains + :ivar EnabledDomainInvitesType team_log.EventType.enabled_domain_invites: + (domains) Enabled domain invites (deprecated, no longer logged) + :ivar CreateFolderType team_log.EventType.create_folder: (file_operations) + Created folders (deprecated, no longer logged) + :ivar FileAddType team_log.EventType.file_add: (file_operations) Added files and/or folders - :ivar FileRevertType file_revert: (file_operations) Reverted files to - previous version - :ivar FileRollbackChangesType file_rollback_changes: (file_operations) - Rolled back file actions - :ivar FileSaveCopyReferenceType file_save_copy_reference: (file_operations) - Saved file/folder using copy reference - :ivar FileRequestChangeType file_request_change: (file_requests) Changed - file request - :ivar FileRequestCloseType file_request_close: (file_requests) Closed file - request - :ivar FileRequestCreateType file_request_create: (file_requests) Created - file request - :ivar FileRequestReceiveFileType file_request_receive_file: (file_requests) - Received files for file request - :ivar GroupAddExternalIdType group_add_external_id: (groups) Added external - ID for group - :ivar GroupAddMemberType group_add_member: (groups) Added team members to + :ivar FileCopyType team_log.EventType.file_copy: (file_operations) Copied + files and/or folders + :ivar FileDeleteType team_log.EventType.file_delete: (file_operations) + Deleted files and/or folders + :ivar FileDownloadType team_log.EventType.file_download: (file_operations) + Downloaded files and/or folders + :ivar FileEditType team_log.EventType.file_edit: (file_operations) Edited + files + :ivar FileGetCopyReferenceType team_log.EventType.file_get_copy_reference: + (file_operations) Created copy reference to file/folder + :ivar FileMoveType team_log.EventType.file_move: (file_operations) Moved + files and/or folders + :ivar FilePermanentlyDeleteType team_log.EventType.file_permanently_delete: + (file_operations) Permanently deleted files and/or folders + :ivar FilePreviewType team_log.EventType.file_preview: (file_operations) + Previewed files and/or folders + :ivar FileRenameType team_log.EventType.file_rename: (file_operations) + Renamed files and/or folders + :ivar FileRestoreType team_log.EventType.file_restore: (file_operations) + Restored deleted files and/or folders + :ivar FileRevertType team_log.EventType.file_revert: (file_operations) + Reverted files to previous version + :ivar FileRollbackChangesType team_log.EventType.file_rollback_changes: + (file_operations) Rolled back file actions + :ivar FileSaveCopyReferenceType team_log.EventType.file_save_copy_reference: + (file_operations) Saved file/folder using copy reference + :ivar FileRequestChangeType team_log.EventType.file_request_change: + (file_requests) Changed file request + :ivar FileRequestCloseType team_log.EventType.file_request_close: + (file_requests) Closed file request + :ivar FileRequestCreateType team_log.EventType.file_request_create: + (file_requests) Created file request + :ivar FileRequestReceiveFileType + team_log.EventType.file_request_receive_file: (file_requests) Received + files for file request + :ivar GroupAddExternalIdType team_log.EventType.group_add_external_id: + (groups) Added external ID for group + :ivar GroupAddMemberType team_log.EventType.group_add_member: (groups) Added + team members to group + :ivar GroupChangeExternalIdType team_log.EventType.group_change_external_id: + (groups) Changed external ID for group + :ivar GroupChangeManagementTypeType + team_log.EventType.group_change_management_type: (groups) Changed group + management type + :ivar GroupChangeMemberRoleType team_log.EventType.group_change_member_role: + (groups) Changed manager permissions of group member + :ivar GroupCreateType team_log.EventType.group_create: (groups) Created group - :ivar GroupChangeExternalIdType group_change_external_id: (groups) Changed - external ID for group - :ivar GroupChangeManagementTypeType group_change_management_type: (groups) - Changed group management type - :ivar GroupChangeMemberRoleType group_change_member_role: (groups) Changed - manager permissions of group member - :ivar GroupCreateType group_create: (groups) Created group - :ivar GroupDeleteType group_delete: (groups) Deleted group - :ivar GroupDescriptionUpdatedType group_description_updated: (groups) - Updated group (deprecated, no longer logged) - :ivar GroupJoinPolicyUpdatedType group_join_policy_updated: (groups) Updated - group join policy (deprecated, no longer logged) - :ivar GroupMovedType group_moved: (groups) Moved group (deprecated, no - longer logged) - :ivar GroupRemoveExternalIdType group_remove_external_id: (groups) Removed - external ID for group - :ivar GroupRemoveMemberType group_remove_member: (groups) Removed team - members from group - :ivar GroupRenameType group_rename: (groups) Renamed group - :ivar EmmErrorType emm_error: (logins) Failed to sign in via EMM - (deprecated, replaced by 'Failed to sign in') - :ivar LoginFailType login_fail: (logins) Failed to sign in - :ivar LoginSuccessType login_success: (logins) Signed in - :ivar LogoutType logout: (logins) Signed out - :ivar ResellerSupportSessionEndType reseller_support_session_end: (logins) - Ended reseller support session - :ivar ResellerSupportSessionStartType reseller_support_session_start: - (logins) Started reseller support session - :ivar SignInAsSessionEndType sign_in_as_session_end: (logins) Ended admin - sign-in-as session - :ivar SignInAsSessionStartType sign_in_as_session_start: (logins) Started - admin sign-in-as session - :ivar SsoErrorType sso_error: (logins) Failed to sign in via SSO - (deprecated, replaced by 'Failed to sign in') - :ivar MemberAddNameType member_add_name: (members) Added team member name - :ivar MemberChangeAdminRoleType member_change_admin_role: (members) Changed - team member admin role - :ivar MemberChangeEmailType member_change_email: (members) Changed team - member email - :ivar MemberChangeMembershipTypeType member_change_membership_type: - (members) Changed membership type (limited/full) of member (deprecated, - no longer logged) - :ivar MemberChangeNameType member_change_name: (members) Changed team member - name - :ivar MemberChangeStatusType member_change_status: (members) Changed member - status (invited, joined, suspended, etc.) - :ivar MemberDeleteManualContactsType member_delete_manual_contacts: - (members) Cleared manually added contacts + :ivar GroupDeleteType team_log.EventType.group_delete: (groups) Deleted + group + :ivar GroupDescriptionUpdatedType + team_log.EventType.group_description_updated: (groups) Updated group + (deprecated, no longer logged) + :ivar GroupJoinPolicyUpdatedType + team_log.EventType.group_join_policy_updated: (groups) Updated group + join policy (deprecated, no longer logged) + :ivar GroupMovedType team_log.EventType.group_moved: (groups) Moved group + (deprecated, no longer logged) + :ivar GroupRemoveExternalIdType team_log.EventType.group_remove_external_id: + (groups) Removed external ID for group + :ivar GroupRemoveMemberType team_log.EventType.group_remove_member: (groups) + Removed team members from group + :ivar GroupRenameType team_log.EventType.group_rename: (groups) Renamed + group + :ivar EmmErrorType team_log.EventType.emm_error: (logins) Failed to sign in + via EMM (deprecated, replaced by 'Failed to sign in') + :ivar LoginFailType team_log.EventType.login_fail: (logins) Failed to sign + in + :ivar LoginSuccessType team_log.EventType.login_success: (logins) Signed in + :ivar LogoutType team_log.EventType.logout: (logins) Signed out + :ivar ResellerSupportSessionEndType + team_log.EventType.reseller_support_session_end: (logins) Ended reseller + support session + :ivar ResellerSupportSessionStartType + team_log.EventType.reseller_support_session_start: (logins) Started + reseller support session + :ivar SignInAsSessionEndType team_log.EventType.sign_in_as_session_end: + (logins) Ended admin sign-in-as session + :ivar SignInAsSessionStartType team_log.EventType.sign_in_as_session_start: + (logins) Started admin sign-in-as session + :ivar SsoErrorType team_log.EventType.sso_error: (logins) Failed to sign in + via SSO (deprecated, replaced by 'Failed to sign in') + :ivar MemberAddNameType team_log.EventType.member_add_name: (members) Added + team member name + :ivar MemberChangeAdminRoleType team_log.EventType.member_change_admin_role: + (members) Changed team member admin role + :ivar MemberChangeEmailType team_log.EventType.member_change_email: + (members) Changed team member email + :ivar MemberChangeMembershipTypeType + team_log.EventType.member_change_membership_type: (members) Changed + membership type (limited/full) of member (deprecated, no longer logged) + :ivar MemberChangeNameType team_log.EventType.member_change_name: (members) + Changed team member name + :ivar MemberChangeStatusType team_log.EventType.member_change_status: + (members) Changed member status (invited, joined, suspended, etc.) + :ivar MemberDeleteManualContactsType + team_log.EventType.member_delete_manual_contacts: (members) Cleared + manually added contacts :ivar MemberPermanentlyDeleteAccountContentsType - member_permanently_delete_account_contents: (members) Permanently - deleted contents of deleted team member account + team_log.EventType.member_permanently_delete_account_contents: (members) + Permanently deleted contents of deleted team member account :ivar MemberSpaceLimitsAddCustomQuotaType - member_space_limits_add_custom_quota: (members) Set custom member space - limit + team_log.EventType.member_space_limits_add_custom_quota: (members) Set + custom member space limit :ivar MemberSpaceLimitsChangeCustomQuotaType - member_space_limits_change_custom_quota: (members) Changed custom member - space limit - :ivar MemberSpaceLimitsChangeStatusType member_space_limits_change_status: - (members) Changed space limit status + team_log.EventType.member_space_limits_change_custom_quota: (members) + Changed custom member space limit + :ivar MemberSpaceLimitsChangeStatusType + team_log.EventType.member_space_limits_change_status: (members) Changed + space limit status :ivar MemberSpaceLimitsRemoveCustomQuotaType - member_space_limits_remove_custom_quota: (members) Removed custom member - space limit - :ivar MemberSuggestType member_suggest: (members) Suggested person to add to - team - :ivar MemberTransferAccountContentsType member_transfer_account_contents: - (members) Transferred contents of deleted member account to another - member - :ivar SecondaryMailsPolicyChangedType secondary_mails_policy_changed: - (members) Secondary mails policy changed - :ivar PaperContentAddMemberType paper_content_add_member: (paper) Added team - member to Paper doc/folder - :ivar PaperContentAddToFolderType paper_content_add_to_folder: (paper) Added - Paper doc/folder to folder - :ivar PaperContentArchiveType paper_content_archive: (paper) Archived Paper - doc/folder - :ivar PaperContentCreateType paper_content_create: (paper) Created Paper - doc/folder - :ivar PaperContentPermanentlyDeleteType paper_content_permanently_delete: - (paper) Permanently deleted Paper doc/folder - :ivar PaperContentRemoveFromFolderType paper_content_remove_from_folder: - (paper) Removed Paper doc/folder from folder - :ivar PaperContentRemoveMemberType paper_content_remove_member: (paper) - Removed team member from Paper doc/folder - :ivar PaperContentRenameType paper_content_rename: (paper) Renamed Paper - doc/folder - :ivar PaperContentRestoreType paper_content_restore: (paper) Restored - archived Paper doc/folder - :ivar PaperDocAddCommentType paper_doc_add_comment: (paper) Added Paper doc - comment - :ivar PaperDocChangeMemberRoleType paper_doc_change_member_role: (paper) - Changed team member permissions for Paper doc - :ivar PaperDocChangeSharingPolicyType paper_doc_change_sharing_policy: - (paper) Changed sharing setting for Paper doc - :ivar PaperDocChangeSubscriptionType paper_doc_change_subscription: (paper) + team_log.EventType.member_space_limits_remove_custom_quota: (members) + Removed custom member space limit + :ivar MemberSuggestType team_log.EventType.member_suggest: (members) + Suggested person to add to team + :ivar MemberTransferAccountContentsType + team_log.EventType.member_transfer_account_contents: (members) + Transferred contents of deleted member account to another member + :ivar SecondaryMailsPolicyChangedType + team_log.EventType.secondary_mails_policy_changed: (members) Secondary + mails policy changed + :ivar PaperContentAddMemberType team_log.EventType.paper_content_add_member: + (paper) Added team member to Paper doc/folder + :ivar PaperContentAddToFolderType + team_log.EventType.paper_content_add_to_folder: (paper) Added Paper + doc/folder to folder + :ivar PaperContentArchiveType team_log.EventType.paper_content_archive: + (paper) Archived Paper doc/folder + :ivar PaperContentCreateType team_log.EventType.paper_content_create: + (paper) Created Paper doc/folder + :ivar PaperContentPermanentlyDeleteType + team_log.EventType.paper_content_permanently_delete: (paper) Permanently + deleted Paper doc/folder + :ivar PaperContentRemoveFromFolderType + team_log.EventType.paper_content_remove_from_folder: (paper) Removed + Paper doc/folder from folder + :ivar PaperContentRemoveMemberType + team_log.EventType.paper_content_remove_member: (paper) Removed team + member from Paper doc/folder + :ivar PaperContentRenameType team_log.EventType.paper_content_rename: + (paper) Renamed Paper doc/folder + :ivar PaperContentRestoreType team_log.EventType.paper_content_restore: + (paper) Restored archived Paper doc/folder + :ivar PaperDocAddCommentType team_log.EventType.paper_doc_add_comment: + (paper) Added Paper doc comment + :ivar PaperDocChangeMemberRoleType + team_log.EventType.paper_doc_change_member_role: (paper) Changed team + member permissions for Paper doc + :ivar PaperDocChangeSharingPolicyType + team_log.EventType.paper_doc_change_sharing_policy: (paper) Changed + sharing setting for Paper doc + :ivar PaperDocChangeSubscriptionType + team_log.EventType.paper_doc_change_subscription: (paper) Followed/unfollowed Paper doc - :ivar PaperDocDeletedType paper_doc_deleted: (paper) Archived Paper doc - (deprecated, no longer logged) - :ivar PaperDocDeleteCommentType paper_doc_delete_comment: (paper) Deleted - Paper doc comment - :ivar PaperDocDownloadType paper_doc_download: (paper) Downloaded Paper doc - in specific format - :ivar PaperDocEditType paper_doc_edit: (paper) Edited Paper doc - :ivar PaperDocEditCommentType paper_doc_edit_comment: (paper) Edited Paper + :ivar PaperDocDeletedType team_log.EventType.paper_doc_deleted: (paper) + Archived Paper doc (deprecated, no longer logged) + :ivar PaperDocDeleteCommentType team_log.EventType.paper_doc_delete_comment: + (paper) Deleted Paper doc comment + :ivar PaperDocDownloadType team_log.EventType.paper_doc_download: (paper) + Downloaded Paper doc in specific format + :ivar PaperDocEditType team_log.EventType.paper_doc_edit: (paper) Edited + Paper doc + :ivar PaperDocEditCommentType team_log.EventType.paper_doc_edit_comment: + (paper) Edited Paper doc comment + :ivar PaperDocFollowedType team_log.EventType.paper_doc_followed: (paper) + Followed Paper doc (deprecated, replaced by 'Followed/unfollowed Paper + doc') + :ivar PaperDocMentionType team_log.EventType.paper_doc_mention: (paper) + Mentioned team member in Paper doc + :ivar PaperDocOwnershipChangedType + team_log.EventType.paper_doc_ownership_changed: (paper) Transferred + ownership of Paper doc + :ivar PaperDocRequestAccessType team_log.EventType.paper_doc_request_access: + (paper) Requested access to Paper doc + :ivar PaperDocResolveCommentType + team_log.EventType.paper_doc_resolve_comment: (paper) Resolved Paper doc + comment + :ivar PaperDocRevertType team_log.EventType.paper_doc_revert: (paper) + Restored Paper doc to previous version + :ivar PaperDocSlackShareType team_log.EventType.paper_doc_slack_share: + (paper) Shared Paper doc via Slack + :ivar PaperDocTeamInviteType team_log.EventType.paper_doc_team_invite: + (paper) Shared Paper doc with team member (deprecated, no longer logged) + :ivar PaperDocTrashedType team_log.EventType.paper_doc_trashed: (paper) + Deleted Paper doc + :ivar PaperDocUnresolveCommentType + team_log.EventType.paper_doc_unresolve_comment: (paper) Unresolved Paper doc comment - :ivar PaperDocFollowedType paper_doc_followed: (paper) Followed Paper doc - (deprecated, replaced by 'Followed/unfollowed Paper doc') - :ivar PaperDocMentionType paper_doc_mention: (paper) Mentioned team member - in Paper doc - :ivar PaperDocOwnershipChangedType paper_doc_ownership_changed: (paper) - Transferred ownership of Paper doc - :ivar PaperDocRequestAccessType paper_doc_request_access: (paper) Requested - access to Paper doc - :ivar PaperDocResolveCommentType paper_doc_resolve_comment: (paper) Resolved - Paper doc comment - :ivar PaperDocRevertType paper_doc_revert: (paper) Restored Paper doc to - previous version - :ivar PaperDocSlackShareType paper_doc_slack_share: (paper) Shared Paper doc - via Slack - :ivar PaperDocTeamInviteType paper_doc_team_invite: (paper) Shared Paper doc - with team member (deprecated, no longer logged) - :ivar PaperDocTrashedType paper_doc_trashed: (paper) Deleted Paper doc - :ivar PaperDocUnresolveCommentType paper_doc_unresolve_comment: (paper) - Unresolved Paper doc comment - :ivar PaperDocUntrashedType paper_doc_untrashed: (paper) Restored Paper doc - :ivar PaperDocViewType paper_doc_view: (paper) Viewed Paper doc - :ivar PaperExternalViewAllowType paper_external_view_allow: (paper) Changed - Paper external sharing setting to anyone (deprecated, no longer logged) - :ivar PaperExternalViewDefaultTeamType paper_external_view_default_team: - (paper) Changed Paper external sharing setting to default team - (deprecated, no longer logged) - :ivar PaperExternalViewForbidType paper_external_view_forbid: (paper) - Changed Paper external sharing setting to team-only (deprecated, no - longer logged) - :ivar PaperFolderChangeSubscriptionType paper_folder_change_subscription: - (paper) Followed/unfollowed Paper folder - :ivar PaperFolderDeletedType paper_folder_deleted: (paper) Archived Paper - folder (deprecated, no longer logged) - :ivar PaperFolderFollowedType paper_folder_followed: (paper) Followed Paper - folder (deprecated, replaced by 'Followed/unfollowed Paper folder') - :ivar PaperFolderTeamInviteType paper_folder_team_invite: (paper) Shared - Paper folder with member (deprecated, no longer logged) - :ivar PasswordChangeType password_change: (passwords) Changed password - :ivar PasswordResetType password_reset: (passwords) Reset password - :ivar PasswordResetAllType password_reset_all: (passwords) Reset all team - member passwords - :ivar EmmCreateExceptionsReportType emm_create_exceptions_report: (reports) - Created EMM-excluded users report - :ivar EmmCreateUsageReportType emm_create_usage_report: (reports) Created - EMM mobile app usage report - :ivar ExportMembersReportType export_members_report: (reports) Created - member data report - :ivar PaperAdminExportStartType paper_admin_export_start: (reports) Exported - all team Paper docs + :ivar PaperDocUntrashedType team_log.EventType.paper_doc_untrashed: (paper) + Restored Paper doc + :ivar PaperDocViewType team_log.EventType.paper_doc_view: (paper) Viewed + Paper doc + :ivar PaperExternalViewAllowType + team_log.EventType.paper_external_view_allow: (paper) Changed Paper + external sharing setting to anyone (deprecated, no longer logged) + :ivar PaperExternalViewDefaultTeamType + team_log.EventType.paper_external_view_default_team: (paper) Changed + Paper external sharing setting to default team (deprecated, no longer + logged) + :ivar PaperExternalViewForbidType + team_log.EventType.paper_external_view_forbid: (paper) Changed Paper + external sharing setting to team-only (deprecated, no longer logged) + :ivar PaperFolderChangeSubscriptionType + team_log.EventType.paper_folder_change_subscription: (paper) + Followed/unfollowed Paper folder + :ivar PaperFolderDeletedType team_log.EventType.paper_folder_deleted: + (paper) Archived Paper folder (deprecated, no longer logged) + :ivar PaperFolderFollowedType team_log.EventType.paper_folder_followed: + (paper) Followed Paper folder (deprecated, replaced by + 'Followed/unfollowed Paper folder') + :ivar PaperFolderTeamInviteType team_log.EventType.paper_folder_team_invite: + (paper) Shared Paper folder with member (deprecated, no longer logged) + :ivar PasswordChangeType team_log.EventType.password_change: (passwords) + Changed password + :ivar PasswordResetType team_log.EventType.password_reset: (passwords) Reset + password + :ivar PasswordResetAllType team_log.EventType.password_reset_all: + (passwords) Reset all team member passwords + :ivar EmmCreateExceptionsReportType + team_log.EventType.emm_create_exceptions_report: (reports) Created + EMM-excluded users report + :ivar EmmCreateUsageReportType team_log.EventType.emm_create_usage_report: + (reports) Created EMM mobile app usage report + :ivar ExportMembersReportType team_log.EventType.export_members_report: + (reports) Created member data report + :ivar PaperAdminExportStartType team_log.EventType.paper_admin_export_start: + (reports) Exported all team Paper docs :ivar SmartSyncCreateAdminPrivilegeReportType - smart_sync_create_admin_privilege_report: (reports) Created Smart Sync - non-admin devices report - :ivar TeamActivityCreateReportType team_activity_create_report: (reports) - Created team activity report - :ivar CollectionShareType collection_share: (sharing) Shared album - :ivar NoteAclInviteOnlyType note_acl_invite_only: (sharing) Changed Paper - doc to invite-only (deprecated, no longer logged) - :ivar NoteAclLinkType note_acl_link: (sharing) Changed Paper doc to - link-accessible (deprecated, no longer logged) - :ivar NoteAclTeamLinkType note_acl_team_link: (sharing) Changed Paper doc to - link-accessible for team (deprecated, no longer logged) - :ivar NoteSharedType note_shared: (sharing) Shared Paper doc (deprecated, no - longer logged) - :ivar NoteShareReceiveType note_share_receive: (sharing) Shared received - Paper doc (deprecated, no longer logged) - :ivar OpenNoteSharedType open_note_shared: (sharing) Opened shared Paper doc - (deprecated, no longer logged) - :ivar SfAddGroupType sf_add_group: (sharing) Added team to shared folder - (deprecated, no longer logged) - :ivar SfAllowNonMembersToViewSharedLinksType - sf_allow_non_members_to_view_shared_links: (sharing) Allowed - non-collaborators to view links to files in shared folder (deprecated, - no longer logged) - :ivar SfExternalInviteWarnType sf_external_invite_warn: (sharing) Set team - members to see warning before sharing folders outside team (deprecated, - no longer logged) - :ivar SfFbInviteType sf_fb_invite: (sharing) Invited Facebook users to - shared folder (deprecated, no longer logged) - :ivar SfFbInviteChangeRoleType sf_fb_invite_change_role: (sharing) Changed - Facebook user's role in shared folder (deprecated, no longer logged) - :ivar SfFbUninviteType sf_fb_uninvite: (sharing) Uninvited Facebook user - from shared folder (deprecated, no longer logged) - :ivar SfInviteGroupType sf_invite_group: (sharing) Invited group to shared - folder (deprecated, no longer logged) - :ivar SfTeamGrantAccessType sf_team_grant_access: (sharing) Granted access + team_log.EventType.smart_sync_create_admin_privilege_report: (reports) + Created Smart Sync non-admin devices report + :ivar TeamActivityCreateReportType + team_log.EventType.team_activity_create_report: (reports) Created team + activity report + :ivar CollectionShareType team_log.EventType.collection_share: (sharing) + Shared album + :ivar NoteAclInviteOnlyType team_log.EventType.note_acl_invite_only: + (sharing) Changed Paper doc to invite-only (deprecated, no longer + logged) + :ivar NoteAclLinkType team_log.EventType.note_acl_link: (sharing) Changed + Paper doc to link-accessible (deprecated, no longer logged) + :ivar NoteAclTeamLinkType team_log.EventType.note_acl_team_link: (sharing) + Changed Paper doc to link-accessible for team (deprecated, no longer + logged) + :ivar NoteSharedType team_log.EventType.note_shared: (sharing) Shared Paper + doc (deprecated, no longer logged) + :ivar NoteShareReceiveType team_log.EventType.note_share_receive: (sharing) + Shared received Paper doc (deprecated, no longer logged) + :ivar OpenNoteSharedType team_log.EventType.open_note_shared: (sharing) + Opened shared Paper doc (deprecated, no longer logged) + :ivar SfAddGroupType team_log.EventType.sf_add_group: (sharing) Added team to shared folder (deprecated, no longer logged) - :ivar SfTeamInviteType sf_team_invite: (sharing) Invited team members to - shared folder (deprecated, replaced by 'Invited user to Dropbox and - added them to shared file/folder') - :ivar SfTeamInviteChangeRoleType sf_team_invite_change_role: (sharing) - Changed team member's role in shared folder (deprecated, no longer + :ivar SfAllowNonMembersToViewSharedLinksType + team_log.EventType.sf_allow_non_members_to_view_shared_links: (sharing) + Allowed non-collaborators to view links to files in shared folder + (deprecated, no longer logged) + :ivar SfExternalInviteWarnType team_log.EventType.sf_external_invite_warn: + (sharing) Set team members to see warning before sharing folders outside + team (deprecated, no longer logged) + :ivar SfFbInviteType team_log.EventType.sf_fb_invite: (sharing) Invited + Facebook users to shared folder (deprecated, no longer logged) + :ivar SfFbInviteChangeRoleType team_log.EventType.sf_fb_invite_change_role: + (sharing) Changed Facebook user's role in shared folder (deprecated, no + longer logged) + :ivar SfFbUninviteType team_log.EventType.sf_fb_uninvite: (sharing) + Uninvited Facebook user from shared folder (deprecated, no longer logged) - :ivar SfTeamJoinType sf_team_join: (sharing) Joined team member's shared - folder (deprecated, no longer logged) - :ivar SfTeamJoinFromOobLinkType sf_team_join_from_oob_link: (sharing) Joined - team member's shared folder from link (deprecated, no longer logged) - :ivar SfTeamUninviteType sf_team_uninvite: (sharing) Unshared folder with - team member (deprecated, replaced by 'Removed invitee from shared - file/folder before invite was accepted') - :ivar SharedContentAddInviteesType shared_content_add_invitees: (sharing) - Invited user to Dropbox and added them to shared file/folder - :ivar SharedContentAddLinkExpiryType shared_content_add_link_expiry: - (sharing) Added expiration date to link for shared file/folder - :ivar SharedContentAddLinkPasswordType shared_content_add_link_password: - (sharing) Added password to link for shared file/folder - :ivar SharedContentAddMemberType shared_content_add_member: (sharing) Added - users and/or groups to shared file/folder + :ivar SfInviteGroupType team_log.EventType.sf_invite_group: (sharing) + Invited group to shared folder (deprecated, no longer logged) + :ivar SfTeamGrantAccessType team_log.EventType.sf_team_grant_access: + (sharing) Granted access to shared folder (deprecated, no longer logged) + :ivar SfTeamInviteType team_log.EventType.sf_team_invite: (sharing) Invited + team members to shared folder (deprecated, replaced by 'Invited user to + Dropbox and added them to shared file/folder') + :ivar SfTeamInviteChangeRoleType + team_log.EventType.sf_team_invite_change_role: (sharing) Changed team + member's role in shared folder (deprecated, no longer logged) + :ivar SfTeamJoinType team_log.EventType.sf_team_join: (sharing) Joined team + member's shared folder (deprecated, no longer logged) + :ivar SfTeamJoinFromOobLinkType + team_log.EventType.sf_team_join_from_oob_link: (sharing) Joined team + member's shared folder from link (deprecated, no longer logged) + :ivar SfTeamUninviteType team_log.EventType.sf_team_uninvite: (sharing) + Unshared folder with team member (deprecated, replaced by 'Removed + invitee from shared file/folder before invite was accepted') + :ivar SharedContentAddInviteesType + team_log.EventType.shared_content_add_invitees: (sharing) Invited user + to Dropbox and added them to shared file/folder + :ivar SharedContentAddLinkExpiryType + team_log.EventType.shared_content_add_link_expiry: (sharing) Added + expiration date to link for shared file/folder + :ivar SharedContentAddLinkPasswordType + team_log.EventType.shared_content_add_link_password: (sharing) Added + password to link for shared file/folder + :ivar SharedContentAddMemberType + team_log.EventType.shared_content_add_member: (sharing) Added users + and/or groups to shared file/folder :ivar SharedContentChangeDownloadsPolicyType - shared_content_change_downloads_policy: (sharing) Changed whether - members can download shared file/folder - :ivar SharedContentChangeInviteeRoleType shared_content_change_invitee_role: - (sharing) Changed access type of invitee to shared file/folder before - invite was accepted + team_log.EventType.shared_content_change_downloads_policy: (sharing) + Changed whether members can download shared file/folder + :ivar SharedContentChangeInviteeRoleType + team_log.EventType.shared_content_change_invitee_role: (sharing) Changed + access type of invitee to shared file/folder before invite was accepted :ivar SharedContentChangeLinkAudienceType - shared_content_change_link_audience: (sharing) Changed link audience of - shared file/folder - :ivar SharedContentChangeLinkExpiryType shared_content_change_link_expiry: - (sharing) Changed link expiration of shared file/folder + team_log.EventType.shared_content_change_link_audience: (sharing) + Changed link audience of shared file/folder + :ivar SharedContentChangeLinkExpiryType + team_log.EventType.shared_content_change_link_expiry: (sharing) Changed + link expiration of shared file/folder :ivar SharedContentChangeLinkPasswordType - shared_content_change_link_password: (sharing) Changed link password of - shared file/folder - :ivar SharedContentChangeMemberRoleType shared_content_change_member_role: - (sharing) Changed access type of shared file/folder member + team_log.EventType.shared_content_change_link_password: (sharing) + Changed link password of shared file/folder + :ivar SharedContentChangeMemberRoleType + team_log.EventType.shared_content_change_member_role: (sharing) Changed + access type of shared file/folder member :ivar SharedContentChangeViewerInfoPolicyType - shared_content_change_viewer_info_policy: (sharing) Changed whether - members can see who viewed shared file/folder - :ivar SharedContentClaimInvitationType shared_content_claim_invitation: - (sharing) Acquired membership of shared file/folder by accepting invite - :ivar SharedContentCopyType shared_content_copy: (sharing) Copied shared - file/folder to own Dropbox - :ivar SharedContentDownloadType shared_content_download: (sharing) - Downloaded shared file/folder + team_log.EventType.shared_content_change_viewer_info_policy: (sharing) + Changed whether members can see who viewed shared file/folder + :ivar SharedContentClaimInvitationType + team_log.EventType.shared_content_claim_invitation: (sharing) Acquired + membership of shared file/folder by accepting invite + :ivar SharedContentCopyType team_log.EventType.shared_content_copy: + (sharing) Copied shared file/folder to own Dropbox + :ivar SharedContentDownloadType team_log.EventType.shared_content_download: + (sharing) Downloaded shared file/folder :ivar SharedContentRelinquishMembershipType - shared_content_relinquish_membership: (sharing) Left shared file/folder - :ivar SharedContentRemoveInviteesType shared_content_remove_invitees: - (sharing) Removed invitee from shared file/folder before invite was - accepted - :ivar SharedContentRemoveLinkExpiryType shared_content_remove_link_expiry: - (sharing) Removed link expiration date of shared file/folder - :ivar SharedContentRemoveLinkPasswordType - shared_content_remove_link_password: (sharing) Removed link password of + team_log.EventType.shared_content_relinquish_membership: (sharing) Left shared file/folder - :ivar SharedContentRemoveMemberType shared_content_remove_member: (sharing) - Removed user/group from shared file/folder - :ivar SharedContentRequestAccessType shared_content_request_access: - (sharing) Requested access to shared file/folder - :ivar SharedContentUnshareType shared_content_unshare: (sharing) Unshared - file/folder by clearing membership and turning off link - :ivar SharedContentViewType shared_content_view: (sharing) Previewed shared - file/folder - :ivar SharedFolderChangeLinkPolicyType shared_folder_change_link_policy: - (sharing) Changed who can access shared folder via link + :ivar SharedContentRemoveInviteesType + team_log.EventType.shared_content_remove_invitees: (sharing) Removed + invitee from shared file/folder before invite was accepted + :ivar SharedContentRemoveLinkExpiryType + team_log.EventType.shared_content_remove_link_expiry: (sharing) Removed + link expiration date of shared file/folder + :ivar SharedContentRemoveLinkPasswordType + team_log.EventType.shared_content_remove_link_password: (sharing) + Removed link password of shared file/folder + :ivar SharedContentRemoveMemberType + team_log.EventType.shared_content_remove_member: (sharing) Removed + user/group from shared file/folder + :ivar SharedContentRequestAccessType + team_log.EventType.shared_content_request_access: (sharing) Requested + access to shared file/folder + :ivar SharedContentUnshareType team_log.EventType.shared_content_unshare: + (sharing) Unshared file/folder by clearing membership and turning off + link + :ivar SharedContentViewType team_log.EventType.shared_content_view: + (sharing) Previewed shared file/folder + :ivar SharedFolderChangeLinkPolicyType + team_log.EventType.shared_folder_change_link_policy: (sharing) Changed + who can access shared folder via link :ivar SharedFolderChangeMembersInheritancePolicyType - shared_folder_change_members_inheritance_policy: (sharing) Changed - whether shared folder inherits members from parent folder + team_log.EventType.shared_folder_change_members_inheritance_policy: + (sharing) Changed whether shared folder inherits members from parent + folder :ivar SharedFolderChangeMembersManagementPolicyType - shared_folder_change_members_management_policy: (sharing) Changed who - can add/remove members of shared folder + team_log.EventType.shared_folder_change_members_management_policy: + (sharing) Changed who can add/remove members of shared folder :ivar SharedFolderChangeMembersPolicyType - shared_folder_change_members_policy: (sharing) Changed who can become - member of shared folder - :ivar SharedFolderCreateType shared_folder_create: (sharing) Created shared - folder - :ivar SharedFolderDeclineInvitationType shared_folder_decline_invitation: - (sharing) Declined team member's invite to shared folder - :ivar SharedFolderMountType shared_folder_mount: (sharing) Added shared - folder to own Dropbox - :ivar SharedFolderNestType shared_folder_nest: (sharing) Changed parent of - shared folder - :ivar SharedFolderTransferOwnershipType shared_folder_transfer_ownership: - (sharing) Transferred ownership of shared folder to another member - :ivar SharedFolderUnmountType shared_folder_unmount: (sharing) Deleted - shared folder from Dropbox - :ivar SharedLinkAddExpiryType shared_link_add_expiry: (sharing) Added shared + team_log.EventType.shared_folder_change_members_policy: (sharing) + Changed who can become member of shared folder + :ivar SharedFolderCreateType team_log.EventType.shared_folder_create: + (sharing) Created shared folder + :ivar SharedFolderDeclineInvitationType + team_log.EventType.shared_folder_decline_invitation: (sharing) Declined + team member's invite to shared folder + :ivar SharedFolderMountType team_log.EventType.shared_folder_mount: + (sharing) Added shared folder to own Dropbox + :ivar SharedFolderNestType team_log.EventType.shared_folder_nest: (sharing) + Changed parent of shared folder + :ivar SharedFolderTransferOwnershipType + team_log.EventType.shared_folder_transfer_ownership: (sharing) + Transferred ownership of shared folder to another member + :ivar SharedFolderUnmountType team_log.EventType.shared_folder_unmount: + (sharing) Deleted shared folder from Dropbox + :ivar SharedLinkAddExpiryType team_log.EventType.shared_link_add_expiry: + (sharing) Added shared link expiration date + :ivar SharedLinkChangeExpiryType + team_log.EventType.shared_link_change_expiry: (sharing) Changed shared link expiration date - :ivar SharedLinkChangeExpiryType shared_link_change_expiry: (sharing) - Changed shared link expiration date - :ivar SharedLinkChangeVisibilityType shared_link_change_visibility: - (sharing) Changed visibility of shared link - :ivar SharedLinkCopyType shared_link_copy: (sharing) Added file/folder to - Dropbox from shared link - :ivar SharedLinkCreateType shared_link_create: (sharing) Created shared link - :ivar SharedLinkDisableType shared_link_disable: (sharing) Removed shared - link - :ivar SharedLinkDownloadType shared_link_download: (sharing) Downloaded - file/folder from shared link - :ivar SharedLinkRemoveExpiryType shared_link_remove_expiry: (sharing) - Removed shared link expiration date - :ivar SharedLinkShareType shared_link_share: (sharing) Added members as - audience of shared link - :ivar SharedLinkViewType shared_link_view: (sharing) Opened shared link - :ivar SharedNoteOpenedType shared_note_opened: (sharing) Opened shared Paper - doc (deprecated, no longer logged) - :ivar ShmodelGroupShareType shmodel_group_share: (sharing) Shared link with - group (deprecated, no longer logged) - :ivar ShowcaseAccessGrantedType showcase_access_granted: (showcase) Granted - access to showcase - :ivar ShowcaseAddMemberType showcase_add_member: (showcase) Added member to - showcase - :ivar ShowcaseArchivedType showcase_archived: (showcase) Archived showcase - :ivar ShowcaseCreatedType showcase_created: (showcase) Created showcase - :ivar ShowcaseDeleteCommentType showcase_delete_comment: (showcase) Deleted + :ivar SharedLinkChangeVisibilityType + team_log.EventType.shared_link_change_visibility: (sharing) Changed + visibility of shared link + :ivar SharedLinkCopyType team_log.EventType.shared_link_copy: (sharing) + Added file/folder to Dropbox from shared link + :ivar SharedLinkCreateType team_log.EventType.shared_link_create: (sharing) + Created shared link + :ivar SharedLinkDisableType team_log.EventType.shared_link_disable: + (sharing) Removed shared link + :ivar SharedLinkDownloadType team_log.EventType.shared_link_download: + (sharing) Downloaded file/folder from shared link + :ivar SharedLinkRemoveExpiryType + team_log.EventType.shared_link_remove_expiry: (sharing) Removed shared + link expiration date + :ivar SharedLinkShareType team_log.EventType.shared_link_share: (sharing) + Added members as audience of shared link + :ivar SharedLinkViewType team_log.EventType.shared_link_view: (sharing) + Opened shared link + :ivar SharedNoteOpenedType team_log.EventType.shared_note_opened: (sharing) + Opened shared Paper doc (deprecated, no longer logged) + :ivar ShmodelGroupShareType team_log.EventType.shmodel_group_share: + (sharing) Shared link with group (deprecated, no longer logged) + :ivar ShowcaseAccessGrantedType team_log.EventType.showcase_access_granted: + (showcase) Granted access to showcase + :ivar ShowcaseAddMemberType team_log.EventType.showcase_add_member: + (showcase) Added member to showcase + :ivar ShowcaseArchivedType team_log.EventType.showcase_archived: (showcase) + Archived showcase + :ivar ShowcaseCreatedType team_log.EventType.showcase_created: (showcase) + Created showcase + :ivar ShowcaseDeleteCommentType team_log.EventType.showcase_delete_comment: + (showcase) Deleted showcase comment + :ivar ShowcaseEditedType team_log.EventType.showcase_edited: (showcase) + Edited showcase + :ivar ShowcaseEditCommentType team_log.EventType.showcase_edit_comment: + (showcase) Edited showcase comment + :ivar ShowcaseFileAddedType team_log.EventType.showcase_file_added: + (showcase) Added file to showcase + :ivar ShowcaseFileDownloadType team_log.EventType.showcase_file_download: + (showcase) Downloaded file from showcase + :ivar ShowcaseFileRemovedType team_log.EventType.showcase_file_removed: + (showcase) Removed file from showcase + :ivar ShowcaseFileViewType team_log.EventType.showcase_file_view: (showcase) + Viewed file in showcase + :ivar ShowcasePermanentlyDeletedType + team_log.EventType.showcase_permanently_deleted: (showcase) Permanently + deleted showcase + :ivar ShowcasePostCommentType team_log.EventType.showcase_post_comment: + (showcase) Added showcase comment + :ivar ShowcaseRemoveMemberType team_log.EventType.showcase_remove_member: + (showcase) Removed member from showcase + :ivar ShowcaseRenamedType team_log.EventType.showcase_renamed: (showcase) + Renamed showcase + :ivar ShowcaseRequestAccessType team_log.EventType.showcase_request_access: + (showcase) Requested access to showcase + :ivar ShowcaseResolveCommentType + team_log.EventType.showcase_resolve_comment: (showcase) Resolved showcase comment - :ivar ShowcaseEditedType showcase_edited: (showcase) Edited showcase - :ivar ShowcaseEditCommentType showcase_edit_comment: (showcase) Edited + :ivar ShowcaseRestoredType team_log.EventType.showcase_restored: (showcase) + Unarchived showcase + :ivar ShowcaseTrashedType team_log.EventType.showcase_trashed: (showcase) + Deleted showcase + :ivar ShowcaseTrashedDeprecatedType + team_log.EventType.showcase_trashed_deprecated: (showcase) Deleted + showcase (old version) (deprecated, replaced by 'Deleted showcase') + :ivar ShowcaseUnresolveCommentType + team_log.EventType.showcase_unresolve_comment: (showcase) Unresolved showcase comment - :ivar ShowcaseFileAddedType showcase_file_added: (showcase) Added file to - showcase - :ivar ShowcaseFileDownloadType showcase_file_download: (showcase) Downloaded - file from showcase - :ivar ShowcaseFileRemovedType showcase_file_removed: (showcase) Removed file - from showcase - :ivar ShowcaseFileViewType showcase_file_view: (showcase) Viewed file in + :ivar ShowcaseUntrashedType team_log.EventType.showcase_untrashed: + (showcase) Restored showcase + :ivar ShowcaseUntrashedDeprecatedType + team_log.EventType.showcase_untrashed_deprecated: (showcase) Restored + showcase (old version) (deprecated, replaced by 'Restored showcase') + :ivar ShowcaseViewType team_log.EventType.showcase_view: (showcase) Viewed showcase - :ivar ShowcasePermanentlyDeletedType showcase_permanently_deleted: - (showcase) Permanently deleted showcase - :ivar ShowcasePostCommentType showcase_post_comment: (showcase) Added - showcase comment - :ivar ShowcaseRemoveMemberType showcase_remove_member: (showcase) Removed - member from showcase - :ivar ShowcaseRenamedType showcase_renamed: (showcase) Renamed showcase - :ivar ShowcaseRequestAccessType showcase_request_access: (showcase) - Requested access to showcase - :ivar ShowcaseResolveCommentType showcase_resolve_comment: (showcase) - Resolved showcase comment - :ivar ShowcaseRestoredType showcase_restored: (showcase) Unarchived showcase - :ivar ShowcaseTrashedType showcase_trashed: (showcase) Deleted showcase - :ivar ShowcaseTrashedDeprecatedType showcase_trashed_deprecated: (showcase) - Deleted showcase (old version) (deprecated, replaced by 'Deleted - showcase') - :ivar ShowcaseUnresolveCommentType showcase_unresolve_comment: (showcase) - Unresolved showcase comment - :ivar ShowcaseUntrashedType showcase_untrashed: (showcase) Restored showcase - :ivar ShowcaseUntrashedDeprecatedType showcase_untrashed_deprecated: - (showcase) Restored showcase (old version) (deprecated, replaced by - 'Restored showcase') - :ivar ShowcaseViewType showcase_view: (showcase) Viewed showcase - :ivar SsoAddCertType sso_add_cert: (sso) Added X.509 certificate for SSO - :ivar SsoAddLoginUrlType sso_add_login_url: (sso) Added sign-in URL for SSO - :ivar SsoAddLogoutUrlType sso_add_logout_url: (sso) Added sign-out URL for - SSO - :ivar SsoChangeCertType sso_change_cert: (sso) Changed X.509 certificate for - SSO - :ivar SsoChangeLoginUrlType sso_change_login_url: (sso) Changed sign-in URL - for SSO - :ivar SsoChangeLogoutUrlType sso_change_logout_url: (sso) Changed sign-out - URL for SSO - :ivar SsoChangeSamlIdentityModeType sso_change_saml_identity_mode: (sso) - Changed SAML identity mode for SSO - :ivar SsoRemoveCertType sso_remove_cert: (sso) Removed X.509 certificate for - SSO - :ivar SsoRemoveLoginUrlType sso_remove_login_url: (sso) Removed sign-in URL - for SSO - :ivar SsoRemoveLogoutUrlType sso_remove_logout_url: (sso) Removed sign-out - URL for SSO - :ivar TeamFolderChangeStatusType team_folder_change_status: (team_folders) - Changed archival status of team folder - :ivar TeamFolderCreateType team_folder_create: (team_folders) Created team - folder in active status - :ivar TeamFolderDowngradeType team_folder_downgrade: (team_folders) - Downgraded team folder to regular shared folder - :ivar TeamFolderPermanentlyDeleteType team_folder_permanently_delete: - (team_folders) Permanently deleted archived team folder - :ivar TeamFolderRenameType team_folder_rename: (team_folders) Renamed - active/archived team folder + :ivar SsoAddCertType team_log.EventType.sso_add_cert: (sso) Added X.509 + certificate for SSO + :ivar SsoAddLoginUrlType team_log.EventType.sso_add_login_url: (sso) Added + sign-in URL for SSO + :ivar SsoAddLogoutUrlType team_log.EventType.sso_add_logout_url: (sso) Added + sign-out URL for SSO + :ivar SsoChangeCertType team_log.EventType.sso_change_cert: (sso) Changed + X.509 certificate for SSO + :ivar SsoChangeLoginUrlType team_log.EventType.sso_change_login_url: (sso) + Changed sign-in URL for SSO + :ivar SsoChangeLogoutUrlType team_log.EventType.sso_change_logout_url: (sso) + Changed sign-out URL for SSO + :ivar SsoChangeSamlIdentityModeType + team_log.EventType.sso_change_saml_identity_mode: (sso) Changed SAML + identity mode for SSO + :ivar SsoRemoveCertType team_log.EventType.sso_remove_cert: (sso) Removed + X.509 certificate for SSO + :ivar SsoRemoveLoginUrlType team_log.EventType.sso_remove_login_url: (sso) + Removed sign-in URL for SSO + :ivar SsoRemoveLogoutUrlType team_log.EventType.sso_remove_logout_url: (sso) + Removed sign-out URL for SSO + :ivar TeamFolderChangeStatusType + team_log.EventType.team_folder_change_status: (team_folders) Changed + archival status of team folder + :ivar TeamFolderCreateType team_log.EventType.team_folder_create: + (team_folders) Created team folder in active status + :ivar TeamFolderDowngradeType team_log.EventType.team_folder_downgrade: + (team_folders) Downgraded team folder to regular shared folder + :ivar TeamFolderPermanentlyDeleteType + team_log.EventType.team_folder_permanently_delete: (team_folders) + Permanently deleted archived team folder + :ivar TeamFolderRenameType team_log.EventType.team_folder_rename: + (team_folders) Renamed active/archived team folder :ivar TeamSelectiveSyncSettingsChangedType - team_selective_sync_settings_changed: (team_folders) Changed sync - default - :ivar AccountCaptureChangePolicyType account_capture_change_policy: - (team_policies) Changed account capture setting on team domain - :ivar AllowDownloadDisabledType allow_download_disabled: (team_policies) - Disabled downloads (deprecated, no longer logged) - :ivar AllowDownloadEnabledType allow_download_enabled: (team_policies) - Enabled downloads (deprecated, no longer logged) - :ivar CameraUploadsPolicyChangedType camera_uploads_policy_changed: - (team_policies) Changed camera uploads setting for team + team_log.EventType.team_selective_sync_settings_changed: (team_folders) + Changed sync default + :ivar AccountCaptureChangePolicyType + team_log.EventType.account_capture_change_policy: (team_policies) + Changed account capture setting on team domain + :ivar AllowDownloadDisabledType team_log.EventType.allow_download_disabled: + (team_policies) Disabled downloads (deprecated, no longer logged) + :ivar AllowDownloadEnabledType team_log.EventType.allow_download_enabled: + (team_policies) Enabled downloads (deprecated, no longer logged) + :ivar CameraUploadsPolicyChangedType + team_log.EventType.camera_uploads_policy_changed: (team_policies) + Changed camera uploads setting for team :ivar DataPlacementRestrictionChangePolicyType - data_placement_restriction_change_policy: (team_policies) Set - restrictions on data center locations where team data resides + team_log.EventType.data_placement_restriction_change_policy: + (team_policies) Set restrictions on data center locations where team + data resides :ivar DataPlacementRestrictionSatisfyPolicyType - data_placement_restriction_satisfy_policy: (team_policies) Completed - restrictions on data center locations where team data resides + team_log.EventType.data_placement_restriction_satisfy_policy: + (team_policies) Completed restrictions on data center locations where + team data resides :ivar DeviceApprovalsChangeDesktopPolicyType - device_approvals_change_desktop_policy: (team_policies) Set/removed - limit on number of computers member can link to team Dropbox account + team_log.EventType.device_approvals_change_desktop_policy: + (team_policies) Set/removed limit on number of computers member can link + to team Dropbox account :ivar DeviceApprovalsChangeMobilePolicyType - device_approvals_change_mobile_policy: (team_policies) Set/removed limit - on number of mobile devices member can link to team Dropbox account + team_log.EventType.device_approvals_change_mobile_policy: + (team_policies) Set/removed limit on number of mobile devices member can + link to team Dropbox account :ivar DeviceApprovalsChangeOverageActionType - device_approvals_change_overage_action: (team_policies) Changed device - approvals setting when member is over limit + team_log.EventType.device_approvals_change_overage_action: + (team_policies) Changed device approvals setting when member is over + limit :ivar DeviceApprovalsChangeUnlinkActionType - device_approvals_change_unlink_action: (team_policies) Changed device - approvals setting when member unlinks approved device + team_log.EventType.device_approvals_change_unlink_action: + (team_policies) Changed device approvals setting when member unlinks + approved device :ivar DirectoryRestrictionsAddMembersType - directory_restrictions_add_members: (team_policies) Added members to - directory restrictions list + team_log.EventType.directory_restrictions_add_members: (team_policies) + Added members to directory restrictions list :ivar DirectoryRestrictionsRemoveMembersType - directory_restrictions_remove_members: (team_policies) Removed members - from directory restrictions list - :ivar EmmAddExceptionType emm_add_exception: (team_policies) Added members - to EMM exception list - :ivar EmmChangePolicyType emm_change_policy: (team_policies) - Enabled/disabled enterprise mobility management for members - :ivar EmmRemoveExceptionType emm_remove_exception: (team_policies) Removed - members from EMM exception list + team_log.EventType.directory_restrictions_remove_members: + (team_policies) Removed members from directory restrictions list + :ivar EmmAddExceptionType team_log.EventType.emm_add_exception: + (team_policies) Added members to EMM exception list + :ivar EmmChangePolicyType team_log.EventType.emm_change_policy: + (team_policies) Enabled/disabled enterprise mobility management for + members + :ivar EmmRemoveExceptionType team_log.EventType.emm_remove_exception: + (team_policies) Removed members from EMM exception list :ivar ExtendedVersionHistoryChangePolicyType - extended_version_history_change_policy: (team_policies) Accepted/opted - out of extended version history - :ivar FileCommentsChangePolicyType file_comments_change_policy: - (team_policies) Enabled/disabled commenting on team files - :ivar FileRequestsChangePolicyType file_requests_change_policy: - (team_policies) Enabled/disabled file requests - :ivar FileRequestsEmailsEnabledType file_requests_emails_enabled: - (team_policies) Enabled file request emails for everyone (deprecated, no - longer logged) + team_log.EventType.extended_version_history_change_policy: + (team_policies) Accepted/opted out of extended version history + :ivar FileCommentsChangePolicyType + team_log.EventType.file_comments_change_policy: (team_policies) + Enabled/disabled commenting on team files + :ivar FileRequestsChangePolicyType + team_log.EventType.file_requests_change_policy: (team_policies) + Enabled/disabled file requests + :ivar FileRequestsEmailsEnabledType + team_log.EventType.file_requests_emails_enabled: (team_policies) Enabled + file request emails for everyone (deprecated, no longer logged) :ivar FileRequestsEmailsRestrictedToTeamOnlyType - file_requests_emails_restricted_to_team_only: (team_policies) Enabled - file request emails for team (deprecated, no longer logged) - :ivar GoogleSsoChangePolicyType google_sso_change_policy: (team_policies) - Enabled/disabled Google single sign-on for team + team_log.EventType.file_requests_emails_restricted_to_team_only: + (team_policies) Enabled file request emails for team (deprecated, no + longer logged) + :ivar GoogleSsoChangePolicyType team_log.EventType.google_sso_change_policy: + (team_policies) Enabled/disabled Google single sign-on for team :ivar GroupUserManagementChangePolicyType - group_user_management_change_policy: (team_policies) Changed who can - create groups - :ivar MemberRequestsChangePolicyType member_requests_change_policy: - (team_policies) Changed whether users can find team when not invited - :ivar MemberSpaceLimitsAddExceptionType member_space_limits_add_exception: - (team_policies) Added members to member space limit exception list + team_log.EventType.group_user_management_change_policy: (team_policies) + Changed who can create groups + :ivar MemberRequestsChangePolicyType + team_log.EventType.member_requests_change_policy: (team_policies) + Changed whether users can find team when not invited + :ivar MemberSpaceLimitsAddExceptionType + team_log.EventType.member_space_limits_add_exception: (team_policies) + Added members to member space limit exception list :ivar MemberSpaceLimitsChangeCapsTypePolicyType - member_space_limits_change_caps_type_policy: (team_policies) Changed - member space limit type for team - :ivar MemberSpaceLimitsChangePolicyType member_space_limits_change_policy: - (team_policies) Changed team default member space limit + team_log.EventType.member_space_limits_change_caps_type_policy: + (team_policies) Changed member space limit type for team + :ivar MemberSpaceLimitsChangePolicyType + team_log.EventType.member_space_limits_change_policy: (team_policies) + Changed team default member space limit :ivar MemberSpaceLimitsRemoveExceptionType - member_space_limits_remove_exception: (team_policies) Removed members - from member space limit exception list - :ivar MemberSuggestionsChangePolicyType member_suggestions_change_policy: - (team_policies) Enabled/disabled option for team members to suggest - people to add to team - :ivar MicrosoftOfficeAddinChangePolicyType - microsoft_office_addin_change_policy: (team_policies) Enabled/disabled - Microsoft Office add-in - :ivar NetworkControlChangePolicyType network_control_change_policy: - (team_policies) Enabled/disabled network control - :ivar PaperChangeDeploymentPolicyType paper_change_deployment_policy: - (team_policies) Changed whether Dropbox Paper, when enabled, is deployed - to all members or to specific members - :ivar PaperChangeMemberLinkPolicyType paper_change_member_link_policy: - (team_policies) Changed whether non-members can view Paper docs with - link (deprecated, no longer logged) - :ivar PaperChangeMemberPolicyType paper_change_member_policy: - (team_policies) Changed whether members can share Paper docs outside - team, and if docs are accessible only by team members or anyone by - default - :ivar PaperChangePolicyType paper_change_policy: (team_policies) - Enabled/disabled Dropbox Paper for team - :ivar PaperEnabledUsersGroupAdditionType paper_enabled_users_group_addition: - (team_policies) Added users to Paper-enabled users list - :ivar PaperEnabledUsersGroupRemovalType paper_enabled_users_group_removal: - (team_policies) Removed users from Paper-enabled users list - :ivar PermanentDeleteChangePolicyType permanent_delete_change_policy: - (team_policies) Enabled/disabled ability of team members to permanently - delete content - :ivar SharingChangeFolderJoinPolicyType sharing_change_folder_join_policy: - (team_policies) Changed whether team members can join shared folders - owned outside team - :ivar SharingChangeLinkPolicyType sharing_change_link_policy: - (team_policies) Changed whether members can share links outside team, - and if links are accessible only by team members or anyone by default - :ivar SharingChangeMemberPolicyType sharing_change_member_policy: - (team_policies) Changed whether members can share files/folders outside + team_log.EventType.member_space_limits_remove_exception: (team_policies) + Removed members from member space limit exception list + :ivar MemberSuggestionsChangePolicyType + team_log.EventType.member_suggestions_change_policy: (team_policies) + Enabled/disabled option for team members to suggest people to add to team - :ivar ShowcaseChangeDownloadPolicyType showcase_change_download_policy: - (team_policies) Enabled/disabled downloading files from Dropbox Showcase - for team - :ivar ShowcaseChangeEnabledPolicyType showcase_change_enabled_policy: - (team_policies) Enabled/disabled Dropbox Showcase for team + :ivar MicrosoftOfficeAddinChangePolicyType + team_log.EventType.microsoft_office_addin_change_policy: (team_policies) + Enabled/disabled Microsoft Office add-in + :ivar NetworkControlChangePolicyType + team_log.EventType.network_control_change_policy: (team_policies) + Enabled/disabled network control + :ivar PaperChangeDeploymentPolicyType + team_log.EventType.paper_change_deployment_policy: (team_policies) + Changed whether Dropbox Paper, when enabled, is deployed to all members + or to specific members + :ivar PaperChangeMemberLinkPolicyType + team_log.EventType.paper_change_member_link_policy: (team_policies) + Changed whether non-members can view Paper docs with link (deprecated, + no longer logged) + :ivar PaperChangeMemberPolicyType + team_log.EventType.paper_change_member_policy: (team_policies) Changed + whether members can share Paper docs outside team, and if docs are + accessible only by team members or anyone by default + :ivar PaperChangePolicyType team_log.EventType.paper_change_policy: + (team_policies) Enabled/disabled Dropbox Paper for team + :ivar PaperEnabledUsersGroupAdditionType + team_log.EventType.paper_enabled_users_group_addition: (team_policies) + Added users to Paper-enabled users list + :ivar PaperEnabledUsersGroupRemovalType + team_log.EventType.paper_enabled_users_group_removal: (team_policies) + Removed users from Paper-enabled users list + :ivar PermanentDeleteChangePolicyType + team_log.EventType.permanent_delete_change_policy: (team_policies) + Enabled/disabled ability of team members to permanently delete content + :ivar SharingChangeFolderJoinPolicyType + team_log.EventType.sharing_change_folder_join_policy: (team_policies) + Changed whether team members can join shared folders owned outside team + :ivar SharingChangeLinkPolicyType + team_log.EventType.sharing_change_link_policy: (team_policies) Changed + whether members can share links outside team, and if links are + accessible only by team members or anyone by default + :ivar SharingChangeMemberPolicyType + team_log.EventType.sharing_change_member_policy: (team_policies) Changed + whether members can share files/folders outside team + :ivar ShowcaseChangeDownloadPolicyType + team_log.EventType.showcase_change_download_policy: (team_policies) + Enabled/disabled downloading files from Dropbox Showcase for team + :ivar ShowcaseChangeEnabledPolicyType + team_log.EventType.showcase_change_enabled_policy: (team_policies) + Enabled/disabled Dropbox Showcase for team :ivar ShowcaseChangeExternalSharingPolicyType - showcase_change_external_sharing_policy: (team_policies) - Enabled/disabled sharing Dropbox Showcase externally for team - :ivar SmartSyncChangePolicyType smart_sync_change_policy: (team_policies) - Changed default Smart Sync setting for team members - :ivar SmartSyncNotOptOutType smart_sync_not_opt_out: (team_policies) Opted - team into Smart Sync - :ivar SmartSyncOptOutType smart_sync_opt_out: (team_policies) Opted team out - of Smart Sync - :ivar SsoChangePolicyType sso_change_policy: (team_policies) Changed single - sign-on setting for team - :ivar TeamSelectiveSyncPolicyChangedType team_selective_sync_policy_changed: - (team_policies) Enabled/disabled Team Selective Sync for team - :ivar TfaChangePolicyType tfa_change_policy: (team_policies) Changed - two-step verification setting for team - :ivar TwoAccountChangePolicyType two_account_change_policy: (team_policies) + team_log.EventType.showcase_change_external_sharing_policy: + (team_policies) Enabled/disabled sharing Dropbox Showcase externally for + team + :ivar SmartSyncChangePolicyType team_log.EventType.smart_sync_change_policy: + (team_policies) Changed default Smart Sync setting for team members + :ivar SmartSyncNotOptOutType team_log.EventType.smart_sync_not_opt_out: + (team_policies) Opted team into Smart Sync + :ivar SmartSyncOptOutType team_log.EventType.smart_sync_opt_out: + (team_policies) Opted team out of Smart Sync + :ivar SsoChangePolicyType team_log.EventType.sso_change_policy: + (team_policies) Changed single sign-on setting for team + :ivar TeamSelectiveSyncPolicyChangedType + team_log.EventType.team_selective_sync_policy_changed: (team_policies) + Enabled/disabled Team Selective Sync for team + :ivar TfaChangePolicyType team_log.EventType.tfa_change_policy: + (team_policies) Changed two-step verification setting for team + :ivar TwoAccountChangePolicyType + team_log.EventType.two_account_change_policy: (team_policies) Enabled/disabled option for members to link personal Dropbox account and team account to same computer - :ivar ViewerInfoPolicyChangedType viewer_info_policy_changed: - (team_policies) Changed team policy for viewer info + :ivar ViewerInfoPolicyChangedType + team_log.EventType.viewer_info_policy_changed: (team_policies) Changed + team policy for viewer info :ivar WebSessionsChangeFixedLengthPolicyType - web_sessions_change_fixed_length_policy: (team_policies) Changed how - long members can stay signed in to Dropbox.com + team_log.EventType.web_sessions_change_fixed_length_policy: + (team_policies) Changed how long members can stay signed in to + Dropbox.com :ivar WebSessionsChangeIdleLengthPolicyType - web_sessions_change_idle_length_policy: (team_policies) Changed how long - team members can be idle while signed in to Dropbox.com - :ivar TeamMergeFromType team_merge_from: (team_profile) Merged another team - into this team - :ivar TeamMergeToType team_merge_to: (team_profile) Merged this team into - another team - :ivar TeamProfileAddLogoType team_profile_add_logo: (team_profile) Added - team logo to display on shared link headers + team_log.EventType.web_sessions_change_idle_length_policy: + (team_policies) Changed how long team members can be idle while signed + in to Dropbox.com + :ivar TeamMergeFromType team_log.EventType.team_merge_from: (team_profile) + Merged another team into this team + :ivar TeamMergeToType team_log.EventType.team_merge_to: (team_profile) + Merged this team into another team + :ivar TeamProfileAddLogoType team_log.EventType.team_profile_add_logo: + (team_profile) Added team logo to display on shared link headers :ivar TeamProfileChangeDefaultLanguageType - team_profile_change_default_language: (team_profile) Changed default - language for team - :ivar TeamProfileChangeLogoType team_profile_change_logo: (team_profile) - Changed team logo displayed on shared link headers - :ivar TeamProfileChangeNameType team_profile_change_name: (team_profile) - Changed team name - :ivar TeamProfileRemoveLogoType team_profile_remove_logo: (team_profile) - Removed team logo displayed on shared link headers - :ivar TfaAddBackupPhoneType tfa_add_backup_phone: (tfa) Added backup phone - for two-step verification - :ivar TfaAddSecurityKeyType tfa_add_security_key: (tfa) Added security key - for two-step verification - :ivar TfaChangeBackupPhoneType tfa_change_backup_phone: (tfa) Changed backup - phone for two-step verification - :ivar TfaChangeStatusType tfa_change_status: (tfa) Enabled/disabled/changed - two-step verification setting - :ivar TfaRemoveBackupPhoneType tfa_remove_backup_phone: (tfa) Removed backup - phone for two-step verification - :ivar TfaRemoveSecurityKeyType tfa_remove_security_key: (tfa) Removed - security key for two-step verification - :ivar TfaResetType tfa_reset: (tfa) Reset two-step verification for team - member + team_log.EventType.team_profile_change_default_language: (team_profile) + Changed default language for team + :ivar TeamProfileChangeLogoType team_log.EventType.team_profile_change_logo: + (team_profile) Changed team logo displayed on shared link headers + :ivar TeamProfileChangeNameType team_log.EventType.team_profile_change_name: + (team_profile) Changed team name + :ivar TeamProfileRemoveLogoType team_log.EventType.team_profile_remove_logo: + (team_profile) Removed team logo displayed on shared link headers + :ivar TfaAddBackupPhoneType team_log.EventType.tfa_add_backup_phone: (tfa) + Added backup phone for two-step verification + :ivar TfaAddSecurityKeyType team_log.EventType.tfa_add_security_key: (tfa) + Added security key for two-step verification + :ivar TfaChangeBackupPhoneType team_log.EventType.tfa_change_backup_phone: + (tfa) Changed backup phone for two-step verification + :ivar TfaChangeStatusType team_log.EventType.tfa_change_status: (tfa) + Enabled/disabled/changed two-step verification setting + :ivar TfaRemoveBackupPhoneType team_log.EventType.tfa_remove_backup_phone: + (tfa) Removed backup phone for two-step verification + :ivar TfaRemoveSecurityKeyType team_log.EventType.tfa_remove_security_key: + (tfa) Removed security key for two-step verification + :ivar TfaResetType team_log.EventType.tfa_reset: (tfa) Reset two-step + verification for team member """ _catch_all = 'other' @@ -17367,8 +17560,8 @@ def app_link_team(cls, val): Create an instance of this class set to the ``app_link_team`` tag with value ``val``. - :param AppLinkTeamType val: - :rtype: EventType + :param team_log.AppLinkTeamType val: + :rtype: team_log.EventType """ return cls('app_link_team', val) @@ -17378,8 +17571,8 @@ def app_link_user(cls, val): Create an instance of this class set to the ``app_link_user`` tag with value ``val``. - :param AppLinkUserType val: - :rtype: EventType + :param team_log.AppLinkUserType val: + :rtype: team_log.EventType """ return cls('app_link_user', val) @@ -17389,8 +17582,8 @@ def app_unlink_team(cls, val): Create an instance of this class set to the ``app_unlink_team`` tag with value ``val``. - :param AppUnlinkTeamType val: - :rtype: EventType + :param team_log.AppUnlinkTeamType val: + :rtype: team_log.EventType """ return cls('app_unlink_team', val) @@ -17400,8 +17593,8 @@ def app_unlink_user(cls, val): Create an instance of this class set to the ``app_unlink_user`` tag with value ``val``. - :param AppUnlinkUserType val: - :rtype: EventType + :param team_log.AppUnlinkUserType val: + :rtype: team_log.EventType """ return cls('app_unlink_user', val) @@ -17411,8 +17604,8 @@ def file_add_comment(cls, val): Create an instance of this class set to the ``file_add_comment`` tag with value ``val``. - :param FileAddCommentType val: - :rtype: EventType + :param team_log.FileAddCommentType val: + :rtype: team_log.EventType """ return cls('file_add_comment', val) @@ -17422,8 +17615,8 @@ def file_change_comment_subscription(cls, val): Create an instance of this class set to the ``file_change_comment_subscription`` tag with value ``val``. - :param FileChangeCommentSubscriptionType val: - :rtype: EventType + :param team_log.FileChangeCommentSubscriptionType val: + :rtype: team_log.EventType """ return cls('file_change_comment_subscription', val) @@ -17433,8 +17626,8 @@ def file_delete_comment(cls, val): Create an instance of this class set to the ``file_delete_comment`` tag with value ``val``. - :param FileDeleteCommentType val: - :rtype: EventType + :param team_log.FileDeleteCommentType val: + :rtype: team_log.EventType """ return cls('file_delete_comment', val) @@ -17444,8 +17637,8 @@ def file_edit_comment(cls, val): Create an instance of this class set to the ``file_edit_comment`` tag with value ``val``. - :param FileEditCommentType val: - :rtype: EventType + :param team_log.FileEditCommentType val: + :rtype: team_log.EventType """ return cls('file_edit_comment', val) @@ -17455,8 +17648,8 @@ def file_like_comment(cls, val): Create an instance of this class set to the ``file_like_comment`` tag with value ``val``. - :param FileLikeCommentType val: - :rtype: EventType + :param team_log.FileLikeCommentType val: + :rtype: team_log.EventType """ return cls('file_like_comment', val) @@ -17466,8 +17659,8 @@ def file_resolve_comment(cls, val): Create an instance of this class set to the ``file_resolve_comment`` tag with value ``val``. - :param FileResolveCommentType val: - :rtype: EventType + :param team_log.FileResolveCommentType val: + :rtype: team_log.EventType """ return cls('file_resolve_comment', val) @@ -17477,8 +17670,8 @@ def file_unlike_comment(cls, val): Create an instance of this class set to the ``file_unlike_comment`` tag with value ``val``. - :param FileUnlikeCommentType val: - :rtype: EventType + :param team_log.FileUnlikeCommentType val: + :rtype: team_log.EventType """ return cls('file_unlike_comment', val) @@ -17488,8 +17681,8 @@ def file_unresolve_comment(cls, val): Create an instance of this class set to the ``file_unresolve_comment`` tag with value ``val``. - :param FileUnresolveCommentType val: - :rtype: EventType + :param team_log.FileUnresolveCommentType val: + :rtype: team_log.EventType """ return cls('file_unresolve_comment', val) @@ -17499,8 +17692,8 @@ def device_change_ip_desktop(cls, val): Create an instance of this class set to the ``device_change_ip_desktop`` tag with value ``val``. - :param DeviceChangeIpDesktopType val: - :rtype: EventType + :param team_log.DeviceChangeIpDesktopType val: + :rtype: team_log.EventType """ return cls('device_change_ip_desktop', val) @@ -17510,8 +17703,8 @@ def device_change_ip_mobile(cls, val): Create an instance of this class set to the ``device_change_ip_mobile`` tag with value ``val``. - :param DeviceChangeIpMobileType val: - :rtype: EventType + :param team_log.DeviceChangeIpMobileType val: + :rtype: team_log.EventType """ return cls('device_change_ip_mobile', val) @@ -17521,8 +17714,8 @@ def device_change_ip_web(cls, val): Create an instance of this class set to the ``device_change_ip_web`` tag with value ``val``. - :param DeviceChangeIpWebType val: - :rtype: EventType + :param team_log.DeviceChangeIpWebType val: + :rtype: team_log.EventType """ return cls('device_change_ip_web', val) @@ -17532,8 +17725,8 @@ def device_delete_on_unlink_fail(cls, val): Create an instance of this class set to the ``device_delete_on_unlink_fail`` tag with value ``val``. - :param DeviceDeleteOnUnlinkFailType val: - :rtype: EventType + :param team_log.DeviceDeleteOnUnlinkFailType val: + :rtype: team_log.EventType """ return cls('device_delete_on_unlink_fail', val) @@ -17543,8 +17736,8 @@ def device_delete_on_unlink_success(cls, val): Create an instance of this class set to the ``device_delete_on_unlink_success`` tag with value ``val``. - :param DeviceDeleteOnUnlinkSuccessType val: - :rtype: EventType + :param team_log.DeviceDeleteOnUnlinkSuccessType val: + :rtype: team_log.EventType """ return cls('device_delete_on_unlink_success', val) @@ -17554,8 +17747,8 @@ def device_link_fail(cls, val): Create an instance of this class set to the ``device_link_fail`` tag with value ``val``. - :param DeviceLinkFailType val: - :rtype: EventType + :param team_log.DeviceLinkFailType val: + :rtype: team_log.EventType """ return cls('device_link_fail', val) @@ -17565,8 +17758,8 @@ def device_link_success(cls, val): Create an instance of this class set to the ``device_link_success`` tag with value ``val``. - :param DeviceLinkSuccessType val: - :rtype: EventType + :param team_log.DeviceLinkSuccessType val: + :rtype: team_log.EventType """ return cls('device_link_success', val) @@ -17576,8 +17769,8 @@ def device_management_disabled(cls, val): Create an instance of this class set to the ``device_management_disabled`` tag with value ``val``. - :param DeviceManagementDisabledType val: - :rtype: EventType + :param team_log.DeviceManagementDisabledType val: + :rtype: team_log.EventType """ return cls('device_management_disabled', val) @@ -17587,8 +17780,8 @@ def device_management_enabled(cls, val): Create an instance of this class set to the ``device_management_enabled`` tag with value ``val``. - :param DeviceManagementEnabledType val: - :rtype: EventType + :param team_log.DeviceManagementEnabledType val: + :rtype: team_log.EventType """ return cls('device_management_enabled', val) @@ -17598,8 +17791,8 @@ def device_unlink(cls, val): Create an instance of this class set to the ``device_unlink`` tag with value ``val``. - :param DeviceUnlinkType val: - :rtype: EventType + :param team_log.DeviceUnlinkType val: + :rtype: team_log.EventType """ return cls('device_unlink', val) @@ -17609,8 +17802,8 @@ def emm_refresh_auth_token(cls, val): Create an instance of this class set to the ``emm_refresh_auth_token`` tag with value ``val``. - :param EmmRefreshAuthTokenType val: - :rtype: EventType + :param team_log.EmmRefreshAuthTokenType val: + :rtype: team_log.EventType """ return cls('emm_refresh_auth_token', val) @@ -17620,8 +17813,8 @@ def account_capture_change_availability(cls, val): Create an instance of this class set to the ``account_capture_change_availability`` tag with value ``val``. - :param AccountCaptureChangeAvailabilityType val: - :rtype: EventType + :param team_log.AccountCaptureChangeAvailabilityType val: + :rtype: team_log.EventType """ return cls('account_capture_change_availability', val) @@ -17631,8 +17824,8 @@ def account_capture_migrate_account(cls, val): Create an instance of this class set to the ``account_capture_migrate_account`` tag with value ``val``. - :param AccountCaptureMigrateAccountType val: - :rtype: EventType + :param team_log.AccountCaptureMigrateAccountType val: + :rtype: team_log.EventType """ return cls('account_capture_migrate_account', val) @@ -17642,8 +17835,8 @@ def account_capture_notification_emails_sent(cls, val): Create an instance of this class set to the ``account_capture_notification_emails_sent`` tag with value ``val``. - :param AccountCaptureNotificationEmailsSentType val: - :rtype: EventType + :param team_log.AccountCaptureNotificationEmailsSentType val: + :rtype: team_log.EventType """ return cls('account_capture_notification_emails_sent', val) @@ -17653,8 +17846,8 @@ def account_capture_relinquish_account(cls, val): Create an instance of this class set to the ``account_capture_relinquish_account`` tag with value ``val``. - :param AccountCaptureRelinquishAccountType val: - :rtype: EventType + :param team_log.AccountCaptureRelinquishAccountType val: + :rtype: team_log.EventType """ return cls('account_capture_relinquish_account', val) @@ -17664,8 +17857,8 @@ def disabled_domain_invites(cls, val): Create an instance of this class set to the ``disabled_domain_invites`` tag with value ``val``. - :param DisabledDomainInvitesType val: - :rtype: EventType + :param team_log.DisabledDomainInvitesType val: + :rtype: team_log.EventType """ return cls('disabled_domain_invites', val) @@ -17675,8 +17868,8 @@ def domain_invites_approve_request_to_join_team(cls, val): Create an instance of this class set to the ``domain_invites_approve_request_to_join_team`` tag with value ``val``. - :param DomainInvitesApproveRequestToJoinTeamType val: - :rtype: EventType + :param team_log.DomainInvitesApproveRequestToJoinTeamType val: + :rtype: team_log.EventType """ return cls('domain_invites_approve_request_to_join_team', val) @@ -17686,8 +17879,8 @@ def domain_invites_decline_request_to_join_team(cls, val): Create an instance of this class set to the ``domain_invites_decline_request_to_join_team`` tag with value ``val``. - :param DomainInvitesDeclineRequestToJoinTeamType val: - :rtype: EventType + :param team_log.DomainInvitesDeclineRequestToJoinTeamType val: + :rtype: team_log.EventType """ return cls('domain_invites_decline_request_to_join_team', val) @@ -17697,8 +17890,8 @@ def domain_invites_email_existing_users(cls, val): Create an instance of this class set to the ``domain_invites_email_existing_users`` tag with value ``val``. - :param DomainInvitesEmailExistingUsersType val: - :rtype: EventType + :param team_log.DomainInvitesEmailExistingUsersType val: + :rtype: team_log.EventType """ return cls('domain_invites_email_existing_users', val) @@ -17708,8 +17901,8 @@ def domain_invites_request_to_join_team(cls, val): Create an instance of this class set to the ``domain_invites_request_to_join_team`` tag with value ``val``. - :param DomainInvitesRequestToJoinTeamType val: - :rtype: EventType + :param team_log.DomainInvitesRequestToJoinTeamType val: + :rtype: team_log.EventType """ return cls('domain_invites_request_to_join_team', val) @@ -17720,8 +17913,8 @@ def domain_invites_set_invite_new_user_pref_to_no(cls, val): ``domain_invites_set_invite_new_user_pref_to_no`` tag with value ``val``. - :param DomainInvitesSetInviteNewUserPrefToNoType val: - :rtype: EventType + :param team_log.DomainInvitesSetInviteNewUserPrefToNoType val: + :rtype: team_log.EventType """ return cls('domain_invites_set_invite_new_user_pref_to_no', val) @@ -17732,8 +17925,8 @@ def domain_invites_set_invite_new_user_pref_to_yes(cls, val): ``domain_invites_set_invite_new_user_pref_to_yes`` tag with value ``val``. - :param DomainInvitesSetInviteNewUserPrefToYesType val: - :rtype: EventType + :param team_log.DomainInvitesSetInviteNewUserPrefToYesType val: + :rtype: team_log.EventType """ return cls('domain_invites_set_invite_new_user_pref_to_yes', val) @@ -17743,8 +17936,8 @@ def domain_verification_add_domain_fail(cls, val): Create an instance of this class set to the ``domain_verification_add_domain_fail`` tag with value ``val``. - :param DomainVerificationAddDomainFailType val: - :rtype: EventType + :param team_log.DomainVerificationAddDomainFailType val: + :rtype: team_log.EventType """ return cls('domain_verification_add_domain_fail', val) @@ -17754,8 +17947,8 @@ def domain_verification_add_domain_success(cls, val): Create an instance of this class set to the ``domain_verification_add_domain_success`` tag with value ``val``. - :param DomainVerificationAddDomainSuccessType val: - :rtype: EventType + :param team_log.DomainVerificationAddDomainSuccessType val: + :rtype: team_log.EventType """ return cls('domain_verification_add_domain_success', val) @@ -17765,8 +17958,8 @@ def domain_verification_remove_domain(cls, val): Create an instance of this class set to the ``domain_verification_remove_domain`` tag with value ``val``. - :param DomainVerificationRemoveDomainType val: - :rtype: EventType + :param team_log.DomainVerificationRemoveDomainType val: + :rtype: team_log.EventType """ return cls('domain_verification_remove_domain', val) @@ -17776,8 +17969,8 @@ def enabled_domain_invites(cls, val): Create an instance of this class set to the ``enabled_domain_invites`` tag with value ``val``. - :param EnabledDomainInvitesType val: - :rtype: EventType + :param team_log.EnabledDomainInvitesType val: + :rtype: team_log.EventType """ return cls('enabled_domain_invites', val) @@ -17787,8 +17980,8 @@ def create_folder(cls, val): Create an instance of this class set to the ``create_folder`` tag with value ``val``. - :param CreateFolderType val: - :rtype: EventType + :param team_log.CreateFolderType val: + :rtype: team_log.EventType """ return cls('create_folder', val) @@ -17798,8 +17991,8 @@ def file_add(cls, val): Create an instance of this class set to the ``file_add`` tag with value ``val``. - :param FileAddType val: - :rtype: EventType + :param team_log.FileAddType val: + :rtype: team_log.EventType """ return cls('file_add', val) @@ -17809,8 +18002,8 @@ def file_copy(cls, val): Create an instance of this class set to the ``file_copy`` tag with value ``val``. - :param FileCopyType val: - :rtype: EventType + :param team_log.FileCopyType val: + :rtype: team_log.EventType """ return cls('file_copy', val) @@ -17820,8 +18013,8 @@ def file_delete(cls, val): Create an instance of this class set to the ``file_delete`` tag with value ``val``. - :param FileDeleteType val: - :rtype: EventType + :param team_log.FileDeleteType val: + :rtype: team_log.EventType """ return cls('file_delete', val) @@ -17831,8 +18024,8 @@ def file_download(cls, val): Create an instance of this class set to the ``file_download`` tag with value ``val``. - :param FileDownloadType val: - :rtype: EventType + :param team_log.FileDownloadType val: + :rtype: team_log.EventType """ return cls('file_download', val) @@ -17842,8 +18035,8 @@ def file_edit(cls, val): Create an instance of this class set to the ``file_edit`` tag with value ``val``. - :param FileEditType val: - :rtype: EventType + :param team_log.FileEditType val: + :rtype: team_log.EventType """ return cls('file_edit', val) @@ -17853,8 +18046,8 @@ def file_get_copy_reference(cls, val): Create an instance of this class set to the ``file_get_copy_reference`` tag with value ``val``. - :param FileGetCopyReferenceType val: - :rtype: EventType + :param team_log.FileGetCopyReferenceType val: + :rtype: team_log.EventType """ return cls('file_get_copy_reference', val) @@ -17864,8 +18057,8 @@ def file_move(cls, val): Create an instance of this class set to the ``file_move`` tag with value ``val``. - :param FileMoveType val: - :rtype: EventType + :param team_log.FileMoveType val: + :rtype: team_log.EventType """ return cls('file_move', val) @@ -17875,8 +18068,8 @@ def file_permanently_delete(cls, val): Create an instance of this class set to the ``file_permanently_delete`` tag with value ``val``. - :param FilePermanentlyDeleteType val: - :rtype: EventType + :param team_log.FilePermanentlyDeleteType val: + :rtype: team_log.EventType """ return cls('file_permanently_delete', val) @@ -17886,8 +18079,8 @@ def file_preview(cls, val): Create an instance of this class set to the ``file_preview`` tag with value ``val``. - :param FilePreviewType val: - :rtype: EventType + :param team_log.FilePreviewType val: + :rtype: team_log.EventType """ return cls('file_preview', val) @@ -17897,8 +18090,8 @@ def file_rename(cls, val): Create an instance of this class set to the ``file_rename`` tag with value ``val``. - :param FileRenameType val: - :rtype: EventType + :param team_log.FileRenameType val: + :rtype: team_log.EventType """ return cls('file_rename', val) @@ -17908,8 +18101,8 @@ def file_restore(cls, val): Create an instance of this class set to the ``file_restore`` tag with value ``val``. - :param FileRestoreType val: - :rtype: EventType + :param team_log.FileRestoreType val: + :rtype: team_log.EventType """ return cls('file_restore', val) @@ -17919,8 +18112,8 @@ def file_revert(cls, val): Create an instance of this class set to the ``file_revert`` tag with value ``val``. - :param FileRevertType val: - :rtype: EventType + :param team_log.FileRevertType val: + :rtype: team_log.EventType """ return cls('file_revert', val) @@ -17930,8 +18123,8 @@ def file_rollback_changes(cls, val): Create an instance of this class set to the ``file_rollback_changes`` tag with value ``val``. - :param FileRollbackChangesType val: - :rtype: EventType + :param team_log.FileRollbackChangesType val: + :rtype: team_log.EventType """ return cls('file_rollback_changes', val) @@ -17941,8 +18134,8 @@ def file_save_copy_reference(cls, val): Create an instance of this class set to the ``file_save_copy_reference`` tag with value ``val``. - :param FileSaveCopyReferenceType val: - :rtype: EventType + :param team_log.FileSaveCopyReferenceType val: + :rtype: team_log.EventType """ return cls('file_save_copy_reference', val) @@ -17952,8 +18145,8 @@ def file_request_change(cls, val): Create an instance of this class set to the ``file_request_change`` tag with value ``val``. - :param FileRequestChangeType val: - :rtype: EventType + :param team_log.FileRequestChangeType val: + :rtype: team_log.EventType """ return cls('file_request_change', val) @@ -17963,8 +18156,8 @@ def file_request_close(cls, val): Create an instance of this class set to the ``file_request_close`` tag with value ``val``. - :param FileRequestCloseType val: - :rtype: EventType + :param team_log.FileRequestCloseType val: + :rtype: team_log.EventType """ return cls('file_request_close', val) @@ -17974,8 +18167,8 @@ def file_request_create(cls, val): Create an instance of this class set to the ``file_request_create`` tag with value ``val``. - :param FileRequestCreateType val: - :rtype: EventType + :param team_log.FileRequestCreateType val: + :rtype: team_log.EventType """ return cls('file_request_create', val) @@ -17985,8 +18178,8 @@ def file_request_receive_file(cls, val): Create an instance of this class set to the ``file_request_receive_file`` tag with value ``val``. - :param FileRequestReceiveFileType val: - :rtype: EventType + :param team_log.FileRequestReceiveFileType val: + :rtype: team_log.EventType """ return cls('file_request_receive_file', val) @@ -17996,8 +18189,8 @@ def group_add_external_id(cls, val): Create an instance of this class set to the ``group_add_external_id`` tag with value ``val``. - :param GroupAddExternalIdType val: - :rtype: EventType + :param team_log.GroupAddExternalIdType val: + :rtype: team_log.EventType """ return cls('group_add_external_id', val) @@ -18007,8 +18200,8 @@ def group_add_member(cls, val): Create an instance of this class set to the ``group_add_member`` tag with value ``val``. - :param GroupAddMemberType val: - :rtype: EventType + :param team_log.GroupAddMemberType val: + :rtype: team_log.EventType """ return cls('group_add_member', val) @@ -18018,8 +18211,8 @@ def group_change_external_id(cls, val): Create an instance of this class set to the ``group_change_external_id`` tag with value ``val``. - :param GroupChangeExternalIdType val: - :rtype: EventType + :param team_log.GroupChangeExternalIdType val: + :rtype: team_log.EventType """ return cls('group_change_external_id', val) @@ -18029,8 +18222,8 @@ def group_change_management_type(cls, val): Create an instance of this class set to the ``group_change_management_type`` tag with value ``val``. - :param GroupChangeManagementTypeType val: - :rtype: EventType + :param team_log.GroupChangeManagementTypeType val: + :rtype: team_log.EventType """ return cls('group_change_management_type', val) @@ -18040,8 +18233,8 @@ def group_change_member_role(cls, val): Create an instance of this class set to the ``group_change_member_role`` tag with value ``val``. - :param GroupChangeMemberRoleType val: - :rtype: EventType + :param team_log.GroupChangeMemberRoleType val: + :rtype: team_log.EventType """ return cls('group_change_member_role', val) @@ -18051,8 +18244,8 @@ def group_create(cls, val): Create an instance of this class set to the ``group_create`` tag with value ``val``. - :param GroupCreateType val: - :rtype: EventType + :param team_log.GroupCreateType val: + :rtype: team_log.EventType """ return cls('group_create', val) @@ -18062,8 +18255,8 @@ def group_delete(cls, val): Create an instance of this class set to the ``group_delete`` tag with value ``val``. - :param GroupDeleteType val: - :rtype: EventType + :param team_log.GroupDeleteType val: + :rtype: team_log.EventType """ return cls('group_delete', val) @@ -18073,8 +18266,8 @@ def group_description_updated(cls, val): Create an instance of this class set to the ``group_description_updated`` tag with value ``val``. - :param GroupDescriptionUpdatedType val: - :rtype: EventType + :param team_log.GroupDescriptionUpdatedType val: + :rtype: team_log.EventType """ return cls('group_description_updated', val) @@ -18084,8 +18277,8 @@ def group_join_policy_updated(cls, val): Create an instance of this class set to the ``group_join_policy_updated`` tag with value ``val``. - :param GroupJoinPolicyUpdatedType val: - :rtype: EventType + :param team_log.GroupJoinPolicyUpdatedType val: + :rtype: team_log.EventType """ return cls('group_join_policy_updated', val) @@ -18095,8 +18288,8 @@ def group_moved(cls, val): Create an instance of this class set to the ``group_moved`` tag with value ``val``. - :param GroupMovedType val: - :rtype: EventType + :param team_log.GroupMovedType val: + :rtype: team_log.EventType """ return cls('group_moved', val) @@ -18106,8 +18299,8 @@ def group_remove_external_id(cls, val): Create an instance of this class set to the ``group_remove_external_id`` tag with value ``val``. - :param GroupRemoveExternalIdType val: - :rtype: EventType + :param team_log.GroupRemoveExternalIdType val: + :rtype: team_log.EventType """ return cls('group_remove_external_id', val) @@ -18117,8 +18310,8 @@ def group_remove_member(cls, val): Create an instance of this class set to the ``group_remove_member`` tag with value ``val``. - :param GroupRemoveMemberType val: - :rtype: EventType + :param team_log.GroupRemoveMemberType val: + :rtype: team_log.EventType """ return cls('group_remove_member', val) @@ -18128,8 +18321,8 @@ def group_rename(cls, val): Create an instance of this class set to the ``group_rename`` tag with value ``val``. - :param GroupRenameType val: - :rtype: EventType + :param team_log.GroupRenameType val: + :rtype: team_log.EventType """ return cls('group_rename', val) @@ -18139,8 +18332,8 @@ def emm_error(cls, val): Create an instance of this class set to the ``emm_error`` tag with value ``val``. - :param EmmErrorType val: - :rtype: EventType + :param team_log.EmmErrorType val: + :rtype: team_log.EventType """ return cls('emm_error', val) @@ -18150,8 +18343,8 @@ def login_fail(cls, val): Create an instance of this class set to the ``login_fail`` tag with value ``val``. - :param LoginFailType val: - :rtype: EventType + :param team_log.LoginFailType val: + :rtype: team_log.EventType """ return cls('login_fail', val) @@ -18161,8 +18354,8 @@ def login_success(cls, val): Create an instance of this class set to the ``login_success`` tag with value ``val``. - :param LoginSuccessType val: - :rtype: EventType + :param team_log.LoginSuccessType val: + :rtype: team_log.EventType """ return cls('login_success', val) @@ -18172,8 +18365,8 @@ def logout(cls, val): Create an instance of this class set to the ``logout`` tag with value ``val``. - :param LogoutType val: - :rtype: EventType + :param team_log.LogoutType val: + :rtype: team_log.EventType """ return cls('logout', val) @@ -18183,8 +18376,8 @@ def reseller_support_session_end(cls, val): Create an instance of this class set to the ``reseller_support_session_end`` tag with value ``val``. - :param ResellerSupportSessionEndType val: - :rtype: EventType + :param team_log.ResellerSupportSessionEndType val: + :rtype: team_log.EventType """ return cls('reseller_support_session_end', val) @@ -18194,8 +18387,8 @@ def reseller_support_session_start(cls, val): Create an instance of this class set to the ``reseller_support_session_start`` tag with value ``val``. - :param ResellerSupportSessionStartType val: - :rtype: EventType + :param team_log.ResellerSupportSessionStartType val: + :rtype: team_log.EventType """ return cls('reseller_support_session_start', val) @@ -18205,8 +18398,8 @@ def sign_in_as_session_end(cls, val): Create an instance of this class set to the ``sign_in_as_session_end`` tag with value ``val``. - :param SignInAsSessionEndType val: - :rtype: EventType + :param team_log.SignInAsSessionEndType val: + :rtype: team_log.EventType """ return cls('sign_in_as_session_end', val) @@ -18216,8 +18409,8 @@ def sign_in_as_session_start(cls, val): Create an instance of this class set to the ``sign_in_as_session_start`` tag with value ``val``. - :param SignInAsSessionStartType val: - :rtype: EventType + :param team_log.SignInAsSessionStartType val: + :rtype: team_log.EventType """ return cls('sign_in_as_session_start', val) @@ -18227,8 +18420,8 @@ def sso_error(cls, val): Create an instance of this class set to the ``sso_error`` tag with value ``val``. - :param SsoErrorType val: - :rtype: EventType + :param team_log.SsoErrorType val: + :rtype: team_log.EventType """ return cls('sso_error', val) @@ -18238,8 +18431,8 @@ def member_add_name(cls, val): Create an instance of this class set to the ``member_add_name`` tag with value ``val``. - :param MemberAddNameType val: - :rtype: EventType + :param team_log.MemberAddNameType val: + :rtype: team_log.EventType """ return cls('member_add_name', val) @@ -18249,8 +18442,8 @@ def member_change_admin_role(cls, val): Create an instance of this class set to the ``member_change_admin_role`` tag with value ``val``. - :param MemberChangeAdminRoleType val: - :rtype: EventType + :param team_log.MemberChangeAdminRoleType val: + :rtype: team_log.EventType """ return cls('member_change_admin_role', val) @@ -18260,8 +18453,8 @@ def member_change_email(cls, val): Create an instance of this class set to the ``member_change_email`` tag with value ``val``. - :param MemberChangeEmailType val: - :rtype: EventType + :param team_log.MemberChangeEmailType val: + :rtype: team_log.EventType """ return cls('member_change_email', val) @@ -18271,8 +18464,8 @@ def member_change_membership_type(cls, val): Create an instance of this class set to the ``member_change_membership_type`` tag with value ``val``. - :param MemberChangeMembershipTypeType val: - :rtype: EventType + :param team_log.MemberChangeMembershipTypeType val: + :rtype: team_log.EventType """ return cls('member_change_membership_type', val) @@ -18282,8 +18475,8 @@ def member_change_name(cls, val): Create an instance of this class set to the ``member_change_name`` tag with value ``val``. - :param MemberChangeNameType val: - :rtype: EventType + :param team_log.MemberChangeNameType val: + :rtype: team_log.EventType """ return cls('member_change_name', val) @@ -18293,8 +18486,8 @@ def member_change_status(cls, val): Create an instance of this class set to the ``member_change_status`` tag with value ``val``. - :param MemberChangeStatusType val: - :rtype: EventType + :param team_log.MemberChangeStatusType val: + :rtype: team_log.EventType """ return cls('member_change_status', val) @@ -18304,8 +18497,8 @@ def member_delete_manual_contacts(cls, val): Create an instance of this class set to the ``member_delete_manual_contacts`` tag with value ``val``. - :param MemberDeleteManualContactsType val: - :rtype: EventType + :param team_log.MemberDeleteManualContactsType val: + :rtype: team_log.EventType """ return cls('member_delete_manual_contacts', val) @@ -18315,8 +18508,8 @@ def member_permanently_delete_account_contents(cls, val): Create an instance of this class set to the ``member_permanently_delete_account_contents`` tag with value ``val``. - :param MemberPermanentlyDeleteAccountContentsType val: - :rtype: EventType + :param team_log.MemberPermanentlyDeleteAccountContentsType val: + :rtype: team_log.EventType """ return cls('member_permanently_delete_account_contents', val) @@ -18326,8 +18519,8 @@ def member_space_limits_add_custom_quota(cls, val): Create an instance of this class set to the ``member_space_limits_add_custom_quota`` tag with value ``val``. - :param MemberSpaceLimitsAddCustomQuotaType val: - :rtype: EventType + :param team_log.MemberSpaceLimitsAddCustomQuotaType val: + :rtype: team_log.EventType """ return cls('member_space_limits_add_custom_quota', val) @@ -18337,8 +18530,8 @@ def member_space_limits_change_custom_quota(cls, val): Create an instance of this class set to the ``member_space_limits_change_custom_quota`` tag with value ``val``. - :param MemberSpaceLimitsChangeCustomQuotaType val: - :rtype: EventType + :param team_log.MemberSpaceLimitsChangeCustomQuotaType val: + :rtype: team_log.EventType """ return cls('member_space_limits_change_custom_quota', val) @@ -18348,8 +18541,8 @@ def member_space_limits_change_status(cls, val): Create an instance of this class set to the ``member_space_limits_change_status`` tag with value ``val``. - :param MemberSpaceLimitsChangeStatusType val: - :rtype: EventType + :param team_log.MemberSpaceLimitsChangeStatusType val: + :rtype: team_log.EventType """ return cls('member_space_limits_change_status', val) @@ -18359,8 +18552,8 @@ def member_space_limits_remove_custom_quota(cls, val): Create an instance of this class set to the ``member_space_limits_remove_custom_quota`` tag with value ``val``. - :param MemberSpaceLimitsRemoveCustomQuotaType val: - :rtype: EventType + :param team_log.MemberSpaceLimitsRemoveCustomQuotaType val: + :rtype: team_log.EventType """ return cls('member_space_limits_remove_custom_quota', val) @@ -18370,8 +18563,8 @@ def member_suggest(cls, val): Create an instance of this class set to the ``member_suggest`` tag with value ``val``. - :param MemberSuggestType val: - :rtype: EventType + :param team_log.MemberSuggestType val: + :rtype: team_log.EventType """ return cls('member_suggest', val) @@ -18381,8 +18574,8 @@ def member_transfer_account_contents(cls, val): Create an instance of this class set to the ``member_transfer_account_contents`` tag with value ``val``. - :param MemberTransferAccountContentsType val: - :rtype: EventType + :param team_log.MemberTransferAccountContentsType val: + :rtype: team_log.EventType """ return cls('member_transfer_account_contents', val) @@ -18392,8 +18585,8 @@ def secondary_mails_policy_changed(cls, val): Create an instance of this class set to the ``secondary_mails_policy_changed`` tag with value ``val``. - :param SecondaryMailsPolicyChangedType val: - :rtype: EventType + :param team_log.SecondaryMailsPolicyChangedType val: + :rtype: team_log.EventType """ return cls('secondary_mails_policy_changed', val) @@ -18403,8 +18596,8 @@ def paper_content_add_member(cls, val): Create an instance of this class set to the ``paper_content_add_member`` tag with value ``val``. - :param PaperContentAddMemberType val: - :rtype: EventType + :param team_log.PaperContentAddMemberType val: + :rtype: team_log.EventType """ return cls('paper_content_add_member', val) @@ -18414,8 +18607,8 @@ def paper_content_add_to_folder(cls, val): Create an instance of this class set to the ``paper_content_add_to_folder`` tag with value ``val``. - :param PaperContentAddToFolderType val: - :rtype: EventType + :param team_log.PaperContentAddToFolderType val: + :rtype: team_log.EventType """ return cls('paper_content_add_to_folder', val) @@ -18425,8 +18618,8 @@ def paper_content_archive(cls, val): Create an instance of this class set to the ``paper_content_archive`` tag with value ``val``. - :param PaperContentArchiveType val: - :rtype: EventType + :param team_log.PaperContentArchiveType val: + :rtype: team_log.EventType """ return cls('paper_content_archive', val) @@ -18436,8 +18629,8 @@ def paper_content_create(cls, val): Create an instance of this class set to the ``paper_content_create`` tag with value ``val``. - :param PaperContentCreateType val: - :rtype: EventType + :param team_log.PaperContentCreateType val: + :rtype: team_log.EventType """ return cls('paper_content_create', val) @@ -18447,8 +18640,8 @@ def paper_content_permanently_delete(cls, val): Create an instance of this class set to the ``paper_content_permanently_delete`` tag with value ``val``. - :param PaperContentPermanentlyDeleteType val: - :rtype: EventType + :param team_log.PaperContentPermanentlyDeleteType val: + :rtype: team_log.EventType """ return cls('paper_content_permanently_delete', val) @@ -18458,8 +18651,8 @@ def paper_content_remove_from_folder(cls, val): Create an instance of this class set to the ``paper_content_remove_from_folder`` tag with value ``val``. - :param PaperContentRemoveFromFolderType val: - :rtype: EventType + :param team_log.PaperContentRemoveFromFolderType val: + :rtype: team_log.EventType """ return cls('paper_content_remove_from_folder', val) @@ -18469,8 +18662,8 @@ def paper_content_remove_member(cls, val): Create an instance of this class set to the ``paper_content_remove_member`` tag with value ``val``. - :param PaperContentRemoveMemberType val: - :rtype: EventType + :param team_log.PaperContentRemoveMemberType val: + :rtype: team_log.EventType """ return cls('paper_content_remove_member', val) @@ -18480,8 +18673,8 @@ def paper_content_rename(cls, val): Create an instance of this class set to the ``paper_content_rename`` tag with value ``val``. - :param PaperContentRenameType val: - :rtype: EventType + :param team_log.PaperContentRenameType val: + :rtype: team_log.EventType """ return cls('paper_content_rename', val) @@ -18491,8 +18684,8 @@ def paper_content_restore(cls, val): Create an instance of this class set to the ``paper_content_restore`` tag with value ``val``. - :param PaperContentRestoreType val: - :rtype: EventType + :param team_log.PaperContentRestoreType val: + :rtype: team_log.EventType """ return cls('paper_content_restore', val) @@ -18502,8 +18695,8 @@ def paper_doc_add_comment(cls, val): Create an instance of this class set to the ``paper_doc_add_comment`` tag with value ``val``. - :param PaperDocAddCommentType val: - :rtype: EventType + :param team_log.PaperDocAddCommentType val: + :rtype: team_log.EventType """ return cls('paper_doc_add_comment', val) @@ -18513,8 +18706,8 @@ def paper_doc_change_member_role(cls, val): Create an instance of this class set to the ``paper_doc_change_member_role`` tag with value ``val``. - :param PaperDocChangeMemberRoleType val: - :rtype: EventType + :param team_log.PaperDocChangeMemberRoleType val: + :rtype: team_log.EventType """ return cls('paper_doc_change_member_role', val) @@ -18524,8 +18717,8 @@ def paper_doc_change_sharing_policy(cls, val): Create an instance of this class set to the ``paper_doc_change_sharing_policy`` tag with value ``val``. - :param PaperDocChangeSharingPolicyType val: - :rtype: EventType + :param team_log.PaperDocChangeSharingPolicyType val: + :rtype: team_log.EventType """ return cls('paper_doc_change_sharing_policy', val) @@ -18535,8 +18728,8 @@ def paper_doc_change_subscription(cls, val): Create an instance of this class set to the ``paper_doc_change_subscription`` tag with value ``val``. - :param PaperDocChangeSubscriptionType val: - :rtype: EventType + :param team_log.PaperDocChangeSubscriptionType val: + :rtype: team_log.EventType """ return cls('paper_doc_change_subscription', val) @@ -18546,8 +18739,8 @@ def paper_doc_deleted(cls, val): Create an instance of this class set to the ``paper_doc_deleted`` tag with value ``val``. - :param PaperDocDeletedType val: - :rtype: EventType + :param team_log.PaperDocDeletedType val: + :rtype: team_log.EventType """ return cls('paper_doc_deleted', val) @@ -18557,8 +18750,8 @@ def paper_doc_delete_comment(cls, val): Create an instance of this class set to the ``paper_doc_delete_comment`` tag with value ``val``. - :param PaperDocDeleteCommentType val: - :rtype: EventType + :param team_log.PaperDocDeleteCommentType val: + :rtype: team_log.EventType """ return cls('paper_doc_delete_comment', val) @@ -18568,8 +18761,8 @@ def paper_doc_download(cls, val): Create an instance of this class set to the ``paper_doc_download`` tag with value ``val``. - :param PaperDocDownloadType val: - :rtype: EventType + :param team_log.PaperDocDownloadType val: + :rtype: team_log.EventType """ return cls('paper_doc_download', val) @@ -18579,8 +18772,8 @@ def paper_doc_edit(cls, val): Create an instance of this class set to the ``paper_doc_edit`` tag with value ``val``. - :param PaperDocEditType val: - :rtype: EventType + :param team_log.PaperDocEditType val: + :rtype: team_log.EventType """ return cls('paper_doc_edit', val) @@ -18590,8 +18783,8 @@ def paper_doc_edit_comment(cls, val): Create an instance of this class set to the ``paper_doc_edit_comment`` tag with value ``val``. - :param PaperDocEditCommentType val: - :rtype: EventType + :param team_log.PaperDocEditCommentType val: + :rtype: team_log.EventType """ return cls('paper_doc_edit_comment', val) @@ -18601,8 +18794,8 @@ def paper_doc_followed(cls, val): Create an instance of this class set to the ``paper_doc_followed`` tag with value ``val``. - :param PaperDocFollowedType val: - :rtype: EventType + :param team_log.PaperDocFollowedType val: + :rtype: team_log.EventType """ return cls('paper_doc_followed', val) @@ -18612,8 +18805,8 @@ def paper_doc_mention(cls, val): Create an instance of this class set to the ``paper_doc_mention`` tag with value ``val``. - :param PaperDocMentionType val: - :rtype: EventType + :param team_log.PaperDocMentionType val: + :rtype: team_log.EventType """ return cls('paper_doc_mention', val) @@ -18623,8 +18816,8 @@ def paper_doc_ownership_changed(cls, val): Create an instance of this class set to the ``paper_doc_ownership_changed`` tag with value ``val``. - :param PaperDocOwnershipChangedType val: - :rtype: EventType + :param team_log.PaperDocOwnershipChangedType val: + :rtype: team_log.EventType """ return cls('paper_doc_ownership_changed', val) @@ -18634,8 +18827,8 @@ def paper_doc_request_access(cls, val): Create an instance of this class set to the ``paper_doc_request_access`` tag with value ``val``. - :param PaperDocRequestAccessType val: - :rtype: EventType + :param team_log.PaperDocRequestAccessType val: + :rtype: team_log.EventType """ return cls('paper_doc_request_access', val) @@ -18645,8 +18838,8 @@ def paper_doc_resolve_comment(cls, val): Create an instance of this class set to the ``paper_doc_resolve_comment`` tag with value ``val``. - :param PaperDocResolveCommentType val: - :rtype: EventType + :param team_log.PaperDocResolveCommentType val: + :rtype: team_log.EventType """ return cls('paper_doc_resolve_comment', val) @@ -18656,8 +18849,8 @@ def paper_doc_revert(cls, val): Create an instance of this class set to the ``paper_doc_revert`` tag with value ``val``. - :param PaperDocRevertType val: - :rtype: EventType + :param team_log.PaperDocRevertType val: + :rtype: team_log.EventType """ return cls('paper_doc_revert', val) @@ -18667,8 +18860,8 @@ def paper_doc_slack_share(cls, val): Create an instance of this class set to the ``paper_doc_slack_share`` tag with value ``val``. - :param PaperDocSlackShareType val: - :rtype: EventType + :param team_log.PaperDocSlackShareType val: + :rtype: team_log.EventType """ return cls('paper_doc_slack_share', val) @@ -18678,8 +18871,8 @@ def paper_doc_team_invite(cls, val): Create an instance of this class set to the ``paper_doc_team_invite`` tag with value ``val``. - :param PaperDocTeamInviteType val: - :rtype: EventType + :param team_log.PaperDocTeamInviteType val: + :rtype: team_log.EventType """ return cls('paper_doc_team_invite', val) @@ -18689,8 +18882,8 @@ def paper_doc_trashed(cls, val): Create an instance of this class set to the ``paper_doc_trashed`` tag with value ``val``. - :param PaperDocTrashedType val: - :rtype: EventType + :param team_log.PaperDocTrashedType val: + :rtype: team_log.EventType """ return cls('paper_doc_trashed', val) @@ -18700,8 +18893,8 @@ def paper_doc_unresolve_comment(cls, val): Create an instance of this class set to the ``paper_doc_unresolve_comment`` tag with value ``val``. - :param PaperDocUnresolveCommentType val: - :rtype: EventType + :param team_log.PaperDocUnresolveCommentType val: + :rtype: team_log.EventType """ return cls('paper_doc_unresolve_comment', val) @@ -18711,8 +18904,8 @@ def paper_doc_untrashed(cls, val): Create an instance of this class set to the ``paper_doc_untrashed`` tag with value ``val``. - :param PaperDocUntrashedType val: - :rtype: EventType + :param team_log.PaperDocUntrashedType val: + :rtype: team_log.EventType """ return cls('paper_doc_untrashed', val) @@ -18722,8 +18915,8 @@ def paper_doc_view(cls, val): Create an instance of this class set to the ``paper_doc_view`` tag with value ``val``. - :param PaperDocViewType val: - :rtype: EventType + :param team_log.PaperDocViewType val: + :rtype: team_log.EventType """ return cls('paper_doc_view', val) @@ -18733,8 +18926,8 @@ def paper_external_view_allow(cls, val): Create an instance of this class set to the ``paper_external_view_allow`` tag with value ``val``. - :param PaperExternalViewAllowType val: - :rtype: EventType + :param team_log.PaperExternalViewAllowType val: + :rtype: team_log.EventType """ return cls('paper_external_view_allow', val) @@ -18744,8 +18937,8 @@ def paper_external_view_default_team(cls, val): Create an instance of this class set to the ``paper_external_view_default_team`` tag with value ``val``. - :param PaperExternalViewDefaultTeamType val: - :rtype: EventType + :param team_log.PaperExternalViewDefaultTeamType val: + :rtype: team_log.EventType """ return cls('paper_external_view_default_team', val) @@ -18755,8 +18948,8 @@ def paper_external_view_forbid(cls, val): Create an instance of this class set to the ``paper_external_view_forbid`` tag with value ``val``. - :param PaperExternalViewForbidType val: - :rtype: EventType + :param team_log.PaperExternalViewForbidType val: + :rtype: team_log.EventType """ return cls('paper_external_view_forbid', val) @@ -18766,8 +18959,8 @@ def paper_folder_change_subscription(cls, val): Create an instance of this class set to the ``paper_folder_change_subscription`` tag with value ``val``. - :param PaperFolderChangeSubscriptionType val: - :rtype: EventType + :param team_log.PaperFolderChangeSubscriptionType val: + :rtype: team_log.EventType """ return cls('paper_folder_change_subscription', val) @@ -18777,8 +18970,8 @@ def paper_folder_deleted(cls, val): Create an instance of this class set to the ``paper_folder_deleted`` tag with value ``val``. - :param PaperFolderDeletedType val: - :rtype: EventType + :param team_log.PaperFolderDeletedType val: + :rtype: team_log.EventType """ return cls('paper_folder_deleted', val) @@ -18788,8 +18981,8 @@ def paper_folder_followed(cls, val): Create an instance of this class set to the ``paper_folder_followed`` tag with value ``val``. - :param PaperFolderFollowedType val: - :rtype: EventType + :param team_log.PaperFolderFollowedType val: + :rtype: team_log.EventType """ return cls('paper_folder_followed', val) @@ -18799,8 +18992,8 @@ def paper_folder_team_invite(cls, val): Create an instance of this class set to the ``paper_folder_team_invite`` tag with value ``val``. - :param PaperFolderTeamInviteType val: - :rtype: EventType + :param team_log.PaperFolderTeamInviteType val: + :rtype: team_log.EventType """ return cls('paper_folder_team_invite', val) @@ -18810,8 +19003,8 @@ def password_change(cls, val): Create an instance of this class set to the ``password_change`` tag with value ``val``. - :param PasswordChangeType val: - :rtype: EventType + :param team_log.PasswordChangeType val: + :rtype: team_log.EventType """ return cls('password_change', val) @@ -18821,8 +19014,8 @@ def password_reset(cls, val): Create an instance of this class set to the ``password_reset`` tag with value ``val``. - :param PasswordResetType val: - :rtype: EventType + :param team_log.PasswordResetType val: + :rtype: team_log.EventType """ return cls('password_reset', val) @@ -18832,8 +19025,8 @@ def password_reset_all(cls, val): Create an instance of this class set to the ``password_reset_all`` tag with value ``val``. - :param PasswordResetAllType val: - :rtype: EventType + :param team_log.PasswordResetAllType val: + :rtype: team_log.EventType """ return cls('password_reset_all', val) @@ -18843,8 +19036,8 @@ def emm_create_exceptions_report(cls, val): Create an instance of this class set to the ``emm_create_exceptions_report`` tag with value ``val``. - :param EmmCreateExceptionsReportType val: - :rtype: EventType + :param team_log.EmmCreateExceptionsReportType val: + :rtype: team_log.EventType """ return cls('emm_create_exceptions_report', val) @@ -18854,8 +19047,8 @@ def emm_create_usage_report(cls, val): Create an instance of this class set to the ``emm_create_usage_report`` tag with value ``val``. - :param EmmCreateUsageReportType val: - :rtype: EventType + :param team_log.EmmCreateUsageReportType val: + :rtype: team_log.EventType """ return cls('emm_create_usage_report', val) @@ -18865,8 +19058,8 @@ def export_members_report(cls, val): Create an instance of this class set to the ``export_members_report`` tag with value ``val``. - :param ExportMembersReportType val: - :rtype: EventType + :param team_log.ExportMembersReportType val: + :rtype: team_log.EventType """ return cls('export_members_report', val) @@ -18876,8 +19069,8 @@ def paper_admin_export_start(cls, val): Create an instance of this class set to the ``paper_admin_export_start`` tag with value ``val``. - :param PaperAdminExportStartType val: - :rtype: EventType + :param team_log.PaperAdminExportStartType val: + :rtype: team_log.EventType """ return cls('paper_admin_export_start', val) @@ -18887,8 +19080,8 @@ def smart_sync_create_admin_privilege_report(cls, val): Create an instance of this class set to the ``smart_sync_create_admin_privilege_report`` tag with value ``val``. - :param SmartSyncCreateAdminPrivilegeReportType val: - :rtype: EventType + :param team_log.SmartSyncCreateAdminPrivilegeReportType val: + :rtype: team_log.EventType """ return cls('smart_sync_create_admin_privilege_report', val) @@ -18898,8 +19091,8 @@ def team_activity_create_report(cls, val): Create an instance of this class set to the ``team_activity_create_report`` tag with value ``val``. - :param TeamActivityCreateReportType val: - :rtype: EventType + :param team_log.TeamActivityCreateReportType val: + :rtype: team_log.EventType """ return cls('team_activity_create_report', val) @@ -18909,8 +19102,8 @@ def collection_share(cls, val): Create an instance of this class set to the ``collection_share`` tag with value ``val``. - :param CollectionShareType val: - :rtype: EventType + :param team_log.CollectionShareType val: + :rtype: team_log.EventType """ return cls('collection_share', val) @@ -18920,8 +19113,8 @@ def note_acl_invite_only(cls, val): Create an instance of this class set to the ``note_acl_invite_only`` tag with value ``val``. - :param NoteAclInviteOnlyType val: - :rtype: EventType + :param team_log.NoteAclInviteOnlyType val: + :rtype: team_log.EventType """ return cls('note_acl_invite_only', val) @@ -18931,8 +19124,8 @@ def note_acl_link(cls, val): Create an instance of this class set to the ``note_acl_link`` tag with value ``val``. - :param NoteAclLinkType val: - :rtype: EventType + :param team_log.NoteAclLinkType val: + :rtype: team_log.EventType """ return cls('note_acl_link', val) @@ -18942,8 +19135,8 @@ def note_acl_team_link(cls, val): Create an instance of this class set to the ``note_acl_team_link`` tag with value ``val``. - :param NoteAclTeamLinkType val: - :rtype: EventType + :param team_log.NoteAclTeamLinkType val: + :rtype: team_log.EventType """ return cls('note_acl_team_link', val) @@ -18953,8 +19146,8 @@ def note_shared(cls, val): Create an instance of this class set to the ``note_shared`` tag with value ``val``. - :param NoteSharedType val: - :rtype: EventType + :param team_log.NoteSharedType val: + :rtype: team_log.EventType """ return cls('note_shared', val) @@ -18964,8 +19157,8 @@ def note_share_receive(cls, val): Create an instance of this class set to the ``note_share_receive`` tag with value ``val``. - :param NoteShareReceiveType val: - :rtype: EventType + :param team_log.NoteShareReceiveType val: + :rtype: team_log.EventType """ return cls('note_share_receive', val) @@ -18975,8 +19168,8 @@ def open_note_shared(cls, val): Create an instance of this class set to the ``open_note_shared`` tag with value ``val``. - :param OpenNoteSharedType val: - :rtype: EventType + :param team_log.OpenNoteSharedType val: + :rtype: team_log.EventType """ return cls('open_note_shared', val) @@ -18986,8 +19179,8 @@ def sf_add_group(cls, val): Create an instance of this class set to the ``sf_add_group`` tag with value ``val``. - :param SfAddGroupType val: - :rtype: EventType + :param team_log.SfAddGroupType val: + :rtype: team_log.EventType """ return cls('sf_add_group', val) @@ -18997,8 +19190,8 @@ def sf_allow_non_members_to_view_shared_links(cls, val): Create an instance of this class set to the ``sf_allow_non_members_to_view_shared_links`` tag with value ``val``. - :param SfAllowNonMembersToViewSharedLinksType val: - :rtype: EventType + :param team_log.SfAllowNonMembersToViewSharedLinksType val: + :rtype: team_log.EventType """ return cls('sf_allow_non_members_to_view_shared_links', val) @@ -19008,8 +19201,8 @@ def sf_external_invite_warn(cls, val): Create an instance of this class set to the ``sf_external_invite_warn`` tag with value ``val``. - :param SfExternalInviteWarnType val: - :rtype: EventType + :param team_log.SfExternalInviteWarnType val: + :rtype: team_log.EventType """ return cls('sf_external_invite_warn', val) @@ -19019,8 +19212,8 @@ def sf_fb_invite(cls, val): Create an instance of this class set to the ``sf_fb_invite`` tag with value ``val``. - :param SfFbInviteType val: - :rtype: EventType + :param team_log.SfFbInviteType val: + :rtype: team_log.EventType """ return cls('sf_fb_invite', val) @@ -19030,8 +19223,8 @@ def sf_fb_invite_change_role(cls, val): Create an instance of this class set to the ``sf_fb_invite_change_role`` tag with value ``val``. - :param SfFbInviteChangeRoleType val: - :rtype: EventType + :param team_log.SfFbInviteChangeRoleType val: + :rtype: team_log.EventType """ return cls('sf_fb_invite_change_role', val) @@ -19041,8 +19234,8 @@ def sf_fb_uninvite(cls, val): Create an instance of this class set to the ``sf_fb_uninvite`` tag with value ``val``. - :param SfFbUninviteType val: - :rtype: EventType + :param team_log.SfFbUninviteType val: + :rtype: team_log.EventType """ return cls('sf_fb_uninvite', val) @@ -19052,8 +19245,8 @@ def sf_invite_group(cls, val): Create an instance of this class set to the ``sf_invite_group`` tag with value ``val``. - :param SfInviteGroupType val: - :rtype: EventType + :param team_log.SfInviteGroupType val: + :rtype: team_log.EventType """ return cls('sf_invite_group', val) @@ -19063,8 +19256,8 @@ def sf_team_grant_access(cls, val): Create an instance of this class set to the ``sf_team_grant_access`` tag with value ``val``. - :param SfTeamGrantAccessType val: - :rtype: EventType + :param team_log.SfTeamGrantAccessType val: + :rtype: team_log.EventType """ return cls('sf_team_grant_access', val) @@ -19074,8 +19267,8 @@ def sf_team_invite(cls, val): Create an instance of this class set to the ``sf_team_invite`` tag with value ``val``. - :param SfTeamInviteType val: - :rtype: EventType + :param team_log.SfTeamInviteType val: + :rtype: team_log.EventType """ return cls('sf_team_invite', val) @@ -19085,8 +19278,8 @@ def sf_team_invite_change_role(cls, val): Create an instance of this class set to the ``sf_team_invite_change_role`` tag with value ``val``. - :param SfTeamInviteChangeRoleType val: - :rtype: EventType + :param team_log.SfTeamInviteChangeRoleType val: + :rtype: team_log.EventType """ return cls('sf_team_invite_change_role', val) @@ -19096,8 +19289,8 @@ def sf_team_join(cls, val): Create an instance of this class set to the ``sf_team_join`` tag with value ``val``. - :param SfTeamJoinType val: - :rtype: EventType + :param team_log.SfTeamJoinType val: + :rtype: team_log.EventType """ return cls('sf_team_join', val) @@ -19107,8 +19300,8 @@ def sf_team_join_from_oob_link(cls, val): Create an instance of this class set to the ``sf_team_join_from_oob_link`` tag with value ``val``. - :param SfTeamJoinFromOobLinkType val: - :rtype: EventType + :param team_log.SfTeamJoinFromOobLinkType val: + :rtype: team_log.EventType """ return cls('sf_team_join_from_oob_link', val) @@ -19118,8 +19311,8 @@ def sf_team_uninvite(cls, val): Create an instance of this class set to the ``sf_team_uninvite`` tag with value ``val``. - :param SfTeamUninviteType val: - :rtype: EventType + :param team_log.SfTeamUninviteType val: + :rtype: team_log.EventType """ return cls('sf_team_uninvite', val) @@ -19129,8 +19322,8 @@ def shared_content_add_invitees(cls, val): Create an instance of this class set to the ``shared_content_add_invitees`` tag with value ``val``. - :param SharedContentAddInviteesType val: - :rtype: EventType + :param team_log.SharedContentAddInviteesType val: + :rtype: team_log.EventType """ return cls('shared_content_add_invitees', val) @@ -19140,8 +19333,8 @@ def shared_content_add_link_expiry(cls, val): Create an instance of this class set to the ``shared_content_add_link_expiry`` tag with value ``val``. - :param SharedContentAddLinkExpiryType val: - :rtype: EventType + :param team_log.SharedContentAddLinkExpiryType val: + :rtype: team_log.EventType """ return cls('shared_content_add_link_expiry', val) @@ -19151,8 +19344,8 @@ def shared_content_add_link_password(cls, val): Create an instance of this class set to the ``shared_content_add_link_password`` tag with value ``val``. - :param SharedContentAddLinkPasswordType val: - :rtype: EventType + :param team_log.SharedContentAddLinkPasswordType val: + :rtype: team_log.EventType """ return cls('shared_content_add_link_password', val) @@ -19162,8 +19355,8 @@ def shared_content_add_member(cls, val): Create an instance of this class set to the ``shared_content_add_member`` tag with value ``val``. - :param SharedContentAddMemberType val: - :rtype: EventType + :param team_log.SharedContentAddMemberType val: + :rtype: team_log.EventType """ return cls('shared_content_add_member', val) @@ -19173,8 +19366,8 @@ def shared_content_change_downloads_policy(cls, val): Create an instance of this class set to the ``shared_content_change_downloads_policy`` tag with value ``val``. - :param SharedContentChangeDownloadsPolicyType val: - :rtype: EventType + :param team_log.SharedContentChangeDownloadsPolicyType val: + :rtype: team_log.EventType """ return cls('shared_content_change_downloads_policy', val) @@ -19184,8 +19377,8 @@ def shared_content_change_invitee_role(cls, val): Create an instance of this class set to the ``shared_content_change_invitee_role`` tag with value ``val``. - :param SharedContentChangeInviteeRoleType val: - :rtype: EventType + :param team_log.SharedContentChangeInviteeRoleType val: + :rtype: team_log.EventType """ return cls('shared_content_change_invitee_role', val) @@ -19195,8 +19388,8 @@ def shared_content_change_link_audience(cls, val): Create an instance of this class set to the ``shared_content_change_link_audience`` tag with value ``val``. - :param SharedContentChangeLinkAudienceType val: - :rtype: EventType + :param team_log.SharedContentChangeLinkAudienceType val: + :rtype: team_log.EventType """ return cls('shared_content_change_link_audience', val) @@ -19206,8 +19399,8 @@ def shared_content_change_link_expiry(cls, val): Create an instance of this class set to the ``shared_content_change_link_expiry`` tag with value ``val``. - :param SharedContentChangeLinkExpiryType val: - :rtype: EventType + :param team_log.SharedContentChangeLinkExpiryType val: + :rtype: team_log.EventType """ return cls('shared_content_change_link_expiry', val) @@ -19217,8 +19410,8 @@ def shared_content_change_link_password(cls, val): Create an instance of this class set to the ``shared_content_change_link_password`` tag with value ``val``. - :param SharedContentChangeLinkPasswordType val: - :rtype: EventType + :param team_log.SharedContentChangeLinkPasswordType val: + :rtype: team_log.EventType """ return cls('shared_content_change_link_password', val) @@ -19228,8 +19421,8 @@ def shared_content_change_member_role(cls, val): Create an instance of this class set to the ``shared_content_change_member_role`` tag with value ``val``. - :param SharedContentChangeMemberRoleType val: - :rtype: EventType + :param team_log.SharedContentChangeMemberRoleType val: + :rtype: team_log.EventType """ return cls('shared_content_change_member_role', val) @@ -19239,8 +19432,8 @@ def shared_content_change_viewer_info_policy(cls, val): Create an instance of this class set to the ``shared_content_change_viewer_info_policy`` tag with value ``val``. - :param SharedContentChangeViewerInfoPolicyType val: - :rtype: EventType + :param team_log.SharedContentChangeViewerInfoPolicyType val: + :rtype: team_log.EventType """ return cls('shared_content_change_viewer_info_policy', val) @@ -19250,8 +19443,8 @@ def shared_content_claim_invitation(cls, val): Create an instance of this class set to the ``shared_content_claim_invitation`` tag with value ``val``. - :param SharedContentClaimInvitationType val: - :rtype: EventType + :param team_log.SharedContentClaimInvitationType val: + :rtype: team_log.EventType """ return cls('shared_content_claim_invitation', val) @@ -19261,8 +19454,8 @@ def shared_content_copy(cls, val): Create an instance of this class set to the ``shared_content_copy`` tag with value ``val``. - :param SharedContentCopyType val: - :rtype: EventType + :param team_log.SharedContentCopyType val: + :rtype: team_log.EventType """ return cls('shared_content_copy', val) @@ -19272,8 +19465,8 @@ def shared_content_download(cls, val): Create an instance of this class set to the ``shared_content_download`` tag with value ``val``. - :param SharedContentDownloadType val: - :rtype: EventType + :param team_log.SharedContentDownloadType val: + :rtype: team_log.EventType """ return cls('shared_content_download', val) @@ -19283,8 +19476,8 @@ def shared_content_relinquish_membership(cls, val): Create an instance of this class set to the ``shared_content_relinquish_membership`` tag with value ``val``. - :param SharedContentRelinquishMembershipType val: - :rtype: EventType + :param team_log.SharedContentRelinquishMembershipType val: + :rtype: team_log.EventType """ return cls('shared_content_relinquish_membership', val) @@ -19294,8 +19487,8 @@ def shared_content_remove_invitees(cls, val): Create an instance of this class set to the ``shared_content_remove_invitees`` tag with value ``val``. - :param SharedContentRemoveInviteesType val: - :rtype: EventType + :param team_log.SharedContentRemoveInviteesType val: + :rtype: team_log.EventType """ return cls('shared_content_remove_invitees', val) @@ -19305,8 +19498,8 @@ def shared_content_remove_link_expiry(cls, val): Create an instance of this class set to the ``shared_content_remove_link_expiry`` tag with value ``val``. - :param SharedContentRemoveLinkExpiryType val: - :rtype: EventType + :param team_log.SharedContentRemoveLinkExpiryType val: + :rtype: team_log.EventType """ return cls('shared_content_remove_link_expiry', val) @@ -19316,8 +19509,8 @@ def shared_content_remove_link_password(cls, val): Create an instance of this class set to the ``shared_content_remove_link_password`` tag with value ``val``. - :param SharedContentRemoveLinkPasswordType val: - :rtype: EventType + :param team_log.SharedContentRemoveLinkPasswordType val: + :rtype: team_log.EventType """ return cls('shared_content_remove_link_password', val) @@ -19327,8 +19520,8 @@ def shared_content_remove_member(cls, val): Create an instance of this class set to the ``shared_content_remove_member`` tag with value ``val``. - :param SharedContentRemoveMemberType val: - :rtype: EventType + :param team_log.SharedContentRemoveMemberType val: + :rtype: team_log.EventType """ return cls('shared_content_remove_member', val) @@ -19338,8 +19531,8 @@ def shared_content_request_access(cls, val): Create an instance of this class set to the ``shared_content_request_access`` tag with value ``val``. - :param SharedContentRequestAccessType val: - :rtype: EventType + :param team_log.SharedContentRequestAccessType val: + :rtype: team_log.EventType """ return cls('shared_content_request_access', val) @@ -19349,8 +19542,8 @@ def shared_content_unshare(cls, val): Create an instance of this class set to the ``shared_content_unshare`` tag with value ``val``. - :param SharedContentUnshareType val: - :rtype: EventType + :param team_log.SharedContentUnshareType val: + :rtype: team_log.EventType """ return cls('shared_content_unshare', val) @@ -19360,8 +19553,8 @@ def shared_content_view(cls, val): Create an instance of this class set to the ``shared_content_view`` tag with value ``val``. - :param SharedContentViewType val: - :rtype: EventType + :param team_log.SharedContentViewType val: + :rtype: team_log.EventType """ return cls('shared_content_view', val) @@ -19371,8 +19564,8 @@ def shared_folder_change_link_policy(cls, val): Create an instance of this class set to the ``shared_folder_change_link_policy`` tag with value ``val``. - :param SharedFolderChangeLinkPolicyType val: - :rtype: EventType + :param team_log.SharedFolderChangeLinkPolicyType val: + :rtype: team_log.EventType """ return cls('shared_folder_change_link_policy', val) @@ -19383,8 +19576,8 @@ def shared_folder_change_members_inheritance_policy(cls, val): ``shared_folder_change_members_inheritance_policy`` tag with value ``val``. - :param SharedFolderChangeMembersInheritancePolicyType val: - :rtype: EventType + :param team_log.SharedFolderChangeMembersInheritancePolicyType val: + :rtype: team_log.EventType """ return cls('shared_folder_change_members_inheritance_policy', val) @@ -19395,8 +19588,8 @@ def shared_folder_change_members_management_policy(cls, val): ``shared_folder_change_members_management_policy`` tag with value ``val``. - :param SharedFolderChangeMembersManagementPolicyType val: - :rtype: EventType + :param team_log.SharedFolderChangeMembersManagementPolicyType val: + :rtype: team_log.EventType """ return cls('shared_folder_change_members_management_policy', val) @@ -19406,8 +19599,8 @@ def shared_folder_change_members_policy(cls, val): Create an instance of this class set to the ``shared_folder_change_members_policy`` tag with value ``val``. - :param SharedFolderChangeMembersPolicyType val: - :rtype: EventType + :param team_log.SharedFolderChangeMembersPolicyType val: + :rtype: team_log.EventType """ return cls('shared_folder_change_members_policy', val) @@ -19417,8 +19610,8 @@ def shared_folder_create(cls, val): Create an instance of this class set to the ``shared_folder_create`` tag with value ``val``. - :param SharedFolderCreateType val: - :rtype: EventType + :param team_log.SharedFolderCreateType val: + :rtype: team_log.EventType """ return cls('shared_folder_create', val) @@ -19428,8 +19621,8 @@ def shared_folder_decline_invitation(cls, val): Create an instance of this class set to the ``shared_folder_decline_invitation`` tag with value ``val``. - :param SharedFolderDeclineInvitationType val: - :rtype: EventType + :param team_log.SharedFolderDeclineInvitationType val: + :rtype: team_log.EventType """ return cls('shared_folder_decline_invitation', val) @@ -19439,8 +19632,8 @@ def shared_folder_mount(cls, val): Create an instance of this class set to the ``shared_folder_mount`` tag with value ``val``. - :param SharedFolderMountType val: - :rtype: EventType + :param team_log.SharedFolderMountType val: + :rtype: team_log.EventType """ return cls('shared_folder_mount', val) @@ -19450,8 +19643,8 @@ def shared_folder_nest(cls, val): Create an instance of this class set to the ``shared_folder_nest`` tag with value ``val``. - :param SharedFolderNestType val: - :rtype: EventType + :param team_log.SharedFolderNestType val: + :rtype: team_log.EventType """ return cls('shared_folder_nest', val) @@ -19461,8 +19654,8 @@ def shared_folder_transfer_ownership(cls, val): Create an instance of this class set to the ``shared_folder_transfer_ownership`` tag with value ``val``. - :param SharedFolderTransferOwnershipType val: - :rtype: EventType + :param team_log.SharedFolderTransferOwnershipType val: + :rtype: team_log.EventType """ return cls('shared_folder_transfer_ownership', val) @@ -19472,8 +19665,8 @@ def shared_folder_unmount(cls, val): Create an instance of this class set to the ``shared_folder_unmount`` tag with value ``val``. - :param SharedFolderUnmountType val: - :rtype: EventType + :param team_log.SharedFolderUnmountType val: + :rtype: team_log.EventType """ return cls('shared_folder_unmount', val) @@ -19483,8 +19676,8 @@ def shared_link_add_expiry(cls, val): Create an instance of this class set to the ``shared_link_add_expiry`` tag with value ``val``. - :param SharedLinkAddExpiryType val: - :rtype: EventType + :param team_log.SharedLinkAddExpiryType val: + :rtype: team_log.EventType """ return cls('shared_link_add_expiry', val) @@ -19494,8 +19687,8 @@ def shared_link_change_expiry(cls, val): Create an instance of this class set to the ``shared_link_change_expiry`` tag with value ``val``. - :param SharedLinkChangeExpiryType val: - :rtype: EventType + :param team_log.SharedLinkChangeExpiryType val: + :rtype: team_log.EventType """ return cls('shared_link_change_expiry', val) @@ -19505,8 +19698,8 @@ def shared_link_change_visibility(cls, val): Create an instance of this class set to the ``shared_link_change_visibility`` tag with value ``val``. - :param SharedLinkChangeVisibilityType val: - :rtype: EventType + :param team_log.SharedLinkChangeVisibilityType val: + :rtype: team_log.EventType """ return cls('shared_link_change_visibility', val) @@ -19516,8 +19709,8 @@ def shared_link_copy(cls, val): Create an instance of this class set to the ``shared_link_copy`` tag with value ``val``. - :param SharedLinkCopyType val: - :rtype: EventType + :param team_log.SharedLinkCopyType val: + :rtype: team_log.EventType """ return cls('shared_link_copy', val) @@ -19527,8 +19720,8 @@ def shared_link_create(cls, val): Create an instance of this class set to the ``shared_link_create`` tag with value ``val``. - :param SharedLinkCreateType val: - :rtype: EventType + :param team_log.SharedLinkCreateType val: + :rtype: team_log.EventType """ return cls('shared_link_create', val) @@ -19538,8 +19731,8 @@ def shared_link_disable(cls, val): Create an instance of this class set to the ``shared_link_disable`` tag with value ``val``. - :param SharedLinkDisableType val: - :rtype: EventType + :param team_log.SharedLinkDisableType val: + :rtype: team_log.EventType """ return cls('shared_link_disable', val) @@ -19549,8 +19742,8 @@ def shared_link_download(cls, val): Create an instance of this class set to the ``shared_link_download`` tag with value ``val``. - :param SharedLinkDownloadType val: - :rtype: EventType + :param team_log.SharedLinkDownloadType val: + :rtype: team_log.EventType """ return cls('shared_link_download', val) @@ -19560,8 +19753,8 @@ def shared_link_remove_expiry(cls, val): Create an instance of this class set to the ``shared_link_remove_expiry`` tag with value ``val``. - :param SharedLinkRemoveExpiryType val: - :rtype: EventType + :param team_log.SharedLinkRemoveExpiryType val: + :rtype: team_log.EventType """ return cls('shared_link_remove_expiry', val) @@ -19571,8 +19764,8 @@ def shared_link_share(cls, val): Create an instance of this class set to the ``shared_link_share`` tag with value ``val``. - :param SharedLinkShareType val: - :rtype: EventType + :param team_log.SharedLinkShareType val: + :rtype: team_log.EventType """ return cls('shared_link_share', val) @@ -19582,8 +19775,8 @@ def shared_link_view(cls, val): Create an instance of this class set to the ``shared_link_view`` tag with value ``val``. - :param SharedLinkViewType val: - :rtype: EventType + :param team_log.SharedLinkViewType val: + :rtype: team_log.EventType """ return cls('shared_link_view', val) @@ -19593,8 +19786,8 @@ def shared_note_opened(cls, val): Create an instance of this class set to the ``shared_note_opened`` tag with value ``val``. - :param SharedNoteOpenedType val: - :rtype: EventType + :param team_log.SharedNoteOpenedType val: + :rtype: team_log.EventType """ return cls('shared_note_opened', val) @@ -19604,8 +19797,8 @@ def shmodel_group_share(cls, val): Create an instance of this class set to the ``shmodel_group_share`` tag with value ``val``. - :param ShmodelGroupShareType val: - :rtype: EventType + :param team_log.ShmodelGroupShareType val: + :rtype: team_log.EventType """ return cls('shmodel_group_share', val) @@ -19615,8 +19808,8 @@ def showcase_access_granted(cls, val): Create an instance of this class set to the ``showcase_access_granted`` tag with value ``val``. - :param ShowcaseAccessGrantedType val: - :rtype: EventType + :param team_log.ShowcaseAccessGrantedType val: + :rtype: team_log.EventType """ return cls('showcase_access_granted', val) @@ -19626,8 +19819,8 @@ def showcase_add_member(cls, val): Create an instance of this class set to the ``showcase_add_member`` tag with value ``val``. - :param ShowcaseAddMemberType val: - :rtype: EventType + :param team_log.ShowcaseAddMemberType val: + :rtype: team_log.EventType """ return cls('showcase_add_member', val) @@ -19637,8 +19830,8 @@ def showcase_archived(cls, val): Create an instance of this class set to the ``showcase_archived`` tag with value ``val``. - :param ShowcaseArchivedType val: - :rtype: EventType + :param team_log.ShowcaseArchivedType val: + :rtype: team_log.EventType """ return cls('showcase_archived', val) @@ -19648,8 +19841,8 @@ def showcase_created(cls, val): Create an instance of this class set to the ``showcase_created`` tag with value ``val``. - :param ShowcaseCreatedType val: - :rtype: EventType + :param team_log.ShowcaseCreatedType val: + :rtype: team_log.EventType """ return cls('showcase_created', val) @@ -19659,8 +19852,8 @@ def showcase_delete_comment(cls, val): Create an instance of this class set to the ``showcase_delete_comment`` tag with value ``val``. - :param ShowcaseDeleteCommentType val: - :rtype: EventType + :param team_log.ShowcaseDeleteCommentType val: + :rtype: team_log.EventType """ return cls('showcase_delete_comment', val) @@ -19670,8 +19863,8 @@ def showcase_edited(cls, val): Create an instance of this class set to the ``showcase_edited`` tag with value ``val``. - :param ShowcaseEditedType val: - :rtype: EventType + :param team_log.ShowcaseEditedType val: + :rtype: team_log.EventType """ return cls('showcase_edited', val) @@ -19681,8 +19874,8 @@ def showcase_edit_comment(cls, val): Create an instance of this class set to the ``showcase_edit_comment`` tag with value ``val``. - :param ShowcaseEditCommentType val: - :rtype: EventType + :param team_log.ShowcaseEditCommentType val: + :rtype: team_log.EventType """ return cls('showcase_edit_comment', val) @@ -19692,8 +19885,8 @@ def showcase_file_added(cls, val): Create an instance of this class set to the ``showcase_file_added`` tag with value ``val``. - :param ShowcaseFileAddedType val: - :rtype: EventType + :param team_log.ShowcaseFileAddedType val: + :rtype: team_log.EventType """ return cls('showcase_file_added', val) @@ -19703,8 +19896,8 @@ def showcase_file_download(cls, val): Create an instance of this class set to the ``showcase_file_download`` tag with value ``val``. - :param ShowcaseFileDownloadType val: - :rtype: EventType + :param team_log.ShowcaseFileDownloadType val: + :rtype: team_log.EventType """ return cls('showcase_file_download', val) @@ -19714,8 +19907,8 @@ def showcase_file_removed(cls, val): Create an instance of this class set to the ``showcase_file_removed`` tag with value ``val``. - :param ShowcaseFileRemovedType val: - :rtype: EventType + :param team_log.ShowcaseFileRemovedType val: + :rtype: team_log.EventType """ return cls('showcase_file_removed', val) @@ -19725,8 +19918,8 @@ def showcase_file_view(cls, val): Create an instance of this class set to the ``showcase_file_view`` tag with value ``val``. - :param ShowcaseFileViewType val: - :rtype: EventType + :param team_log.ShowcaseFileViewType val: + :rtype: team_log.EventType """ return cls('showcase_file_view', val) @@ -19736,8 +19929,8 @@ def showcase_permanently_deleted(cls, val): Create an instance of this class set to the ``showcase_permanently_deleted`` tag with value ``val``. - :param ShowcasePermanentlyDeletedType val: - :rtype: EventType + :param team_log.ShowcasePermanentlyDeletedType val: + :rtype: team_log.EventType """ return cls('showcase_permanently_deleted', val) @@ -19747,8 +19940,8 @@ def showcase_post_comment(cls, val): Create an instance of this class set to the ``showcase_post_comment`` tag with value ``val``. - :param ShowcasePostCommentType val: - :rtype: EventType + :param team_log.ShowcasePostCommentType val: + :rtype: team_log.EventType """ return cls('showcase_post_comment', val) @@ -19758,8 +19951,8 @@ def showcase_remove_member(cls, val): Create an instance of this class set to the ``showcase_remove_member`` tag with value ``val``. - :param ShowcaseRemoveMemberType val: - :rtype: EventType + :param team_log.ShowcaseRemoveMemberType val: + :rtype: team_log.EventType """ return cls('showcase_remove_member', val) @@ -19769,8 +19962,8 @@ def showcase_renamed(cls, val): Create an instance of this class set to the ``showcase_renamed`` tag with value ``val``. - :param ShowcaseRenamedType val: - :rtype: EventType + :param team_log.ShowcaseRenamedType val: + :rtype: team_log.EventType """ return cls('showcase_renamed', val) @@ -19780,8 +19973,8 @@ def showcase_request_access(cls, val): Create an instance of this class set to the ``showcase_request_access`` tag with value ``val``. - :param ShowcaseRequestAccessType val: - :rtype: EventType + :param team_log.ShowcaseRequestAccessType val: + :rtype: team_log.EventType """ return cls('showcase_request_access', val) @@ -19791,8 +19984,8 @@ def showcase_resolve_comment(cls, val): Create an instance of this class set to the ``showcase_resolve_comment`` tag with value ``val``. - :param ShowcaseResolveCommentType val: - :rtype: EventType + :param team_log.ShowcaseResolveCommentType val: + :rtype: team_log.EventType """ return cls('showcase_resolve_comment', val) @@ -19802,8 +19995,8 @@ def showcase_restored(cls, val): Create an instance of this class set to the ``showcase_restored`` tag with value ``val``. - :param ShowcaseRestoredType val: - :rtype: EventType + :param team_log.ShowcaseRestoredType val: + :rtype: team_log.EventType """ return cls('showcase_restored', val) @@ -19813,8 +20006,8 @@ def showcase_trashed(cls, val): Create an instance of this class set to the ``showcase_trashed`` tag with value ``val``. - :param ShowcaseTrashedType val: - :rtype: EventType + :param team_log.ShowcaseTrashedType val: + :rtype: team_log.EventType """ return cls('showcase_trashed', val) @@ -19824,8 +20017,8 @@ def showcase_trashed_deprecated(cls, val): Create an instance of this class set to the ``showcase_trashed_deprecated`` tag with value ``val``. - :param ShowcaseTrashedDeprecatedType val: - :rtype: EventType + :param team_log.ShowcaseTrashedDeprecatedType val: + :rtype: team_log.EventType """ return cls('showcase_trashed_deprecated', val) @@ -19835,8 +20028,8 @@ def showcase_unresolve_comment(cls, val): Create an instance of this class set to the ``showcase_unresolve_comment`` tag with value ``val``. - :param ShowcaseUnresolveCommentType val: - :rtype: EventType + :param team_log.ShowcaseUnresolveCommentType val: + :rtype: team_log.EventType """ return cls('showcase_unresolve_comment', val) @@ -19846,8 +20039,8 @@ def showcase_untrashed(cls, val): Create an instance of this class set to the ``showcase_untrashed`` tag with value ``val``. - :param ShowcaseUntrashedType val: - :rtype: EventType + :param team_log.ShowcaseUntrashedType val: + :rtype: team_log.EventType """ return cls('showcase_untrashed', val) @@ -19857,8 +20050,8 @@ def showcase_untrashed_deprecated(cls, val): Create an instance of this class set to the ``showcase_untrashed_deprecated`` tag with value ``val``. - :param ShowcaseUntrashedDeprecatedType val: - :rtype: EventType + :param team_log.ShowcaseUntrashedDeprecatedType val: + :rtype: team_log.EventType """ return cls('showcase_untrashed_deprecated', val) @@ -19868,8 +20061,8 @@ def showcase_view(cls, val): Create an instance of this class set to the ``showcase_view`` tag with value ``val``. - :param ShowcaseViewType val: - :rtype: EventType + :param team_log.ShowcaseViewType val: + :rtype: team_log.EventType """ return cls('showcase_view', val) @@ -19879,8 +20072,8 @@ def sso_add_cert(cls, val): Create an instance of this class set to the ``sso_add_cert`` tag with value ``val``. - :param SsoAddCertType val: - :rtype: EventType + :param team_log.SsoAddCertType val: + :rtype: team_log.EventType """ return cls('sso_add_cert', val) @@ -19890,8 +20083,8 @@ def sso_add_login_url(cls, val): Create an instance of this class set to the ``sso_add_login_url`` tag with value ``val``. - :param SsoAddLoginUrlType val: - :rtype: EventType + :param team_log.SsoAddLoginUrlType val: + :rtype: team_log.EventType """ return cls('sso_add_login_url', val) @@ -19901,8 +20094,8 @@ def sso_add_logout_url(cls, val): Create an instance of this class set to the ``sso_add_logout_url`` tag with value ``val``. - :param SsoAddLogoutUrlType val: - :rtype: EventType + :param team_log.SsoAddLogoutUrlType val: + :rtype: team_log.EventType """ return cls('sso_add_logout_url', val) @@ -19912,8 +20105,8 @@ def sso_change_cert(cls, val): Create an instance of this class set to the ``sso_change_cert`` tag with value ``val``. - :param SsoChangeCertType val: - :rtype: EventType + :param team_log.SsoChangeCertType val: + :rtype: team_log.EventType """ return cls('sso_change_cert', val) @@ -19923,8 +20116,8 @@ def sso_change_login_url(cls, val): Create an instance of this class set to the ``sso_change_login_url`` tag with value ``val``. - :param SsoChangeLoginUrlType val: - :rtype: EventType + :param team_log.SsoChangeLoginUrlType val: + :rtype: team_log.EventType """ return cls('sso_change_login_url', val) @@ -19934,8 +20127,8 @@ def sso_change_logout_url(cls, val): Create an instance of this class set to the ``sso_change_logout_url`` tag with value ``val``. - :param SsoChangeLogoutUrlType val: - :rtype: EventType + :param team_log.SsoChangeLogoutUrlType val: + :rtype: team_log.EventType """ return cls('sso_change_logout_url', val) @@ -19945,8 +20138,8 @@ def sso_change_saml_identity_mode(cls, val): Create an instance of this class set to the ``sso_change_saml_identity_mode`` tag with value ``val``. - :param SsoChangeSamlIdentityModeType val: - :rtype: EventType + :param team_log.SsoChangeSamlIdentityModeType val: + :rtype: team_log.EventType """ return cls('sso_change_saml_identity_mode', val) @@ -19956,8 +20149,8 @@ def sso_remove_cert(cls, val): Create an instance of this class set to the ``sso_remove_cert`` tag with value ``val``. - :param SsoRemoveCertType val: - :rtype: EventType + :param team_log.SsoRemoveCertType val: + :rtype: team_log.EventType """ return cls('sso_remove_cert', val) @@ -19967,8 +20160,8 @@ def sso_remove_login_url(cls, val): Create an instance of this class set to the ``sso_remove_login_url`` tag with value ``val``. - :param SsoRemoveLoginUrlType val: - :rtype: EventType + :param team_log.SsoRemoveLoginUrlType val: + :rtype: team_log.EventType """ return cls('sso_remove_login_url', val) @@ -19978,8 +20171,8 @@ def sso_remove_logout_url(cls, val): Create an instance of this class set to the ``sso_remove_logout_url`` tag with value ``val``. - :param SsoRemoveLogoutUrlType val: - :rtype: EventType + :param team_log.SsoRemoveLogoutUrlType val: + :rtype: team_log.EventType """ return cls('sso_remove_logout_url', val) @@ -19989,8 +20182,8 @@ def team_folder_change_status(cls, val): Create an instance of this class set to the ``team_folder_change_status`` tag with value ``val``. - :param TeamFolderChangeStatusType val: - :rtype: EventType + :param team_log.TeamFolderChangeStatusType val: + :rtype: team_log.EventType """ return cls('team_folder_change_status', val) @@ -20000,8 +20193,8 @@ def team_folder_create(cls, val): Create an instance of this class set to the ``team_folder_create`` tag with value ``val``. - :param TeamFolderCreateType val: - :rtype: EventType + :param team_log.TeamFolderCreateType val: + :rtype: team_log.EventType """ return cls('team_folder_create', val) @@ -20011,8 +20204,8 @@ def team_folder_downgrade(cls, val): Create an instance of this class set to the ``team_folder_downgrade`` tag with value ``val``. - :param TeamFolderDowngradeType val: - :rtype: EventType + :param team_log.TeamFolderDowngradeType val: + :rtype: team_log.EventType """ return cls('team_folder_downgrade', val) @@ -20022,8 +20215,8 @@ def team_folder_permanently_delete(cls, val): Create an instance of this class set to the ``team_folder_permanently_delete`` tag with value ``val``. - :param TeamFolderPermanentlyDeleteType val: - :rtype: EventType + :param team_log.TeamFolderPermanentlyDeleteType val: + :rtype: team_log.EventType """ return cls('team_folder_permanently_delete', val) @@ -20033,8 +20226,8 @@ def team_folder_rename(cls, val): Create an instance of this class set to the ``team_folder_rename`` tag with value ``val``. - :param TeamFolderRenameType val: - :rtype: EventType + :param team_log.TeamFolderRenameType val: + :rtype: team_log.EventType """ return cls('team_folder_rename', val) @@ -20044,8 +20237,8 @@ def team_selective_sync_settings_changed(cls, val): Create an instance of this class set to the ``team_selective_sync_settings_changed`` tag with value ``val``. - :param TeamSelectiveSyncSettingsChangedType val: - :rtype: EventType + :param team_log.TeamSelectiveSyncSettingsChangedType val: + :rtype: team_log.EventType """ return cls('team_selective_sync_settings_changed', val) @@ -20055,8 +20248,8 @@ def account_capture_change_policy(cls, val): Create an instance of this class set to the ``account_capture_change_policy`` tag with value ``val``. - :param AccountCaptureChangePolicyType val: - :rtype: EventType + :param team_log.AccountCaptureChangePolicyType val: + :rtype: team_log.EventType """ return cls('account_capture_change_policy', val) @@ -20066,8 +20259,8 @@ def allow_download_disabled(cls, val): Create an instance of this class set to the ``allow_download_disabled`` tag with value ``val``. - :param AllowDownloadDisabledType val: - :rtype: EventType + :param team_log.AllowDownloadDisabledType val: + :rtype: team_log.EventType """ return cls('allow_download_disabled', val) @@ -20077,8 +20270,8 @@ def allow_download_enabled(cls, val): Create an instance of this class set to the ``allow_download_enabled`` tag with value ``val``. - :param AllowDownloadEnabledType val: - :rtype: EventType + :param team_log.AllowDownloadEnabledType val: + :rtype: team_log.EventType """ return cls('allow_download_enabled', val) @@ -20088,8 +20281,8 @@ def camera_uploads_policy_changed(cls, val): Create an instance of this class set to the ``camera_uploads_policy_changed`` tag with value ``val``. - :param CameraUploadsPolicyChangedType val: - :rtype: EventType + :param team_log.CameraUploadsPolicyChangedType val: + :rtype: team_log.EventType """ return cls('camera_uploads_policy_changed', val) @@ -20099,8 +20292,8 @@ def data_placement_restriction_change_policy(cls, val): Create an instance of this class set to the ``data_placement_restriction_change_policy`` tag with value ``val``. - :param DataPlacementRestrictionChangePolicyType val: - :rtype: EventType + :param team_log.DataPlacementRestrictionChangePolicyType val: + :rtype: team_log.EventType """ return cls('data_placement_restriction_change_policy', val) @@ -20110,8 +20303,8 @@ def data_placement_restriction_satisfy_policy(cls, val): Create an instance of this class set to the ``data_placement_restriction_satisfy_policy`` tag with value ``val``. - :param DataPlacementRestrictionSatisfyPolicyType val: - :rtype: EventType + :param team_log.DataPlacementRestrictionSatisfyPolicyType val: + :rtype: team_log.EventType """ return cls('data_placement_restriction_satisfy_policy', val) @@ -20121,8 +20314,8 @@ def device_approvals_change_desktop_policy(cls, val): Create an instance of this class set to the ``device_approvals_change_desktop_policy`` tag with value ``val``. - :param DeviceApprovalsChangeDesktopPolicyType val: - :rtype: EventType + :param team_log.DeviceApprovalsChangeDesktopPolicyType val: + :rtype: team_log.EventType """ return cls('device_approvals_change_desktop_policy', val) @@ -20132,8 +20325,8 @@ def device_approvals_change_mobile_policy(cls, val): Create an instance of this class set to the ``device_approvals_change_mobile_policy`` tag with value ``val``. - :param DeviceApprovalsChangeMobilePolicyType val: - :rtype: EventType + :param team_log.DeviceApprovalsChangeMobilePolicyType val: + :rtype: team_log.EventType """ return cls('device_approvals_change_mobile_policy', val) @@ -20143,8 +20336,8 @@ def device_approvals_change_overage_action(cls, val): Create an instance of this class set to the ``device_approvals_change_overage_action`` tag with value ``val``. - :param DeviceApprovalsChangeOverageActionType val: - :rtype: EventType + :param team_log.DeviceApprovalsChangeOverageActionType val: + :rtype: team_log.EventType """ return cls('device_approvals_change_overage_action', val) @@ -20154,8 +20347,8 @@ def device_approvals_change_unlink_action(cls, val): Create an instance of this class set to the ``device_approvals_change_unlink_action`` tag with value ``val``. - :param DeviceApprovalsChangeUnlinkActionType val: - :rtype: EventType + :param team_log.DeviceApprovalsChangeUnlinkActionType val: + :rtype: team_log.EventType """ return cls('device_approvals_change_unlink_action', val) @@ -20165,8 +20358,8 @@ def directory_restrictions_add_members(cls, val): Create an instance of this class set to the ``directory_restrictions_add_members`` tag with value ``val``. - :param DirectoryRestrictionsAddMembersType val: - :rtype: EventType + :param team_log.DirectoryRestrictionsAddMembersType val: + :rtype: team_log.EventType """ return cls('directory_restrictions_add_members', val) @@ -20176,8 +20369,8 @@ def directory_restrictions_remove_members(cls, val): Create an instance of this class set to the ``directory_restrictions_remove_members`` tag with value ``val``. - :param DirectoryRestrictionsRemoveMembersType val: - :rtype: EventType + :param team_log.DirectoryRestrictionsRemoveMembersType val: + :rtype: team_log.EventType """ return cls('directory_restrictions_remove_members', val) @@ -20187,8 +20380,8 @@ def emm_add_exception(cls, val): Create an instance of this class set to the ``emm_add_exception`` tag with value ``val``. - :param EmmAddExceptionType val: - :rtype: EventType + :param team_log.EmmAddExceptionType val: + :rtype: team_log.EventType """ return cls('emm_add_exception', val) @@ -20198,8 +20391,8 @@ def emm_change_policy(cls, val): Create an instance of this class set to the ``emm_change_policy`` tag with value ``val``. - :param EmmChangePolicyType val: - :rtype: EventType + :param team_log.EmmChangePolicyType val: + :rtype: team_log.EventType """ return cls('emm_change_policy', val) @@ -20209,8 +20402,8 @@ def emm_remove_exception(cls, val): Create an instance of this class set to the ``emm_remove_exception`` tag with value ``val``. - :param EmmRemoveExceptionType val: - :rtype: EventType + :param team_log.EmmRemoveExceptionType val: + :rtype: team_log.EventType """ return cls('emm_remove_exception', val) @@ -20220,8 +20413,8 @@ def extended_version_history_change_policy(cls, val): Create an instance of this class set to the ``extended_version_history_change_policy`` tag with value ``val``. - :param ExtendedVersionHistoryChangePolicyType val: - :rtype: EventType + :param team_log.ExtendedVersionHistoryChangePolicyType val: + :rtype: team_log.EventType """ return cls('extended_version_history_change_policy', val) @@ -20231,8 +20424,8 @@ def file_comments_change_policy(cls, val): Create an instance of this class set to the ``file_comments_change_policy`` tag with value ``val``. - :param FileCommentsChangePolicyType val: - :rtype: EventType + :param team_log.FileCommentsChangePolicyType val: + :rtype: team_log.EventType """ return cls('file_comments_change_policy', val) @@ -20242,8 +20435,8 @@ def file_requests_change_policy(cls, val): Create an instance of this class set to the ``file_requests_change_policy`` tag with value ``val``. - :param FileRequestsChangePolicyType val: - :rtype: EventType + :param team_log.FileRequestsChangePolicyType val: + :rtype: team_log.EventType """ return cls('file_requests_change_policy', val) @@ -20253,8 +20446,8 @@ def file_requests_emails_enabled(cls, val): Create an instance of this class set to the ``file_requests_emails_enabled`` tag with value ``val``. - :param FileRequestsEmailsEnabledType val: - :rtype: EventType + :param team_log.FileRequestsEmailsEnabledType val: + :rtype: team_log.EventType """ return cls('file_requests_emails_enabled', val) @@ -20264,8 +20457,8 @@ def file_requests_emails_restricted_to_team_only(cls, val): Create an instance of this class set to the ``file_requests_emails_restricted_to_team_only`` tag with value ``val``. - :param FileRequestsEmailsRestrictedToTeamOnlyType val: - :rtype: EventType + :param team_log.FileRequestsEmailsRestrictedToTeamOnlyType val: + :rtype: team_log.EventType """ return cls('file_requests_emails_restricted_to_team_only', val) @@ -20275,8 +20468,8 @@ def google_sso_change_policy(cls, val): Create an instance of this class set to the ``google_sso_change_policy`` tag with value ``val``. - :param GoogleSsoChangePolicyType val: - :rtype: EventType + :param team_log.GoogleSsoChangePolicyType val: + :rtype: team_log.EventType """ return cls('google_sso_change_policy', val) @@ -20286,8 +20479,8 @@ def group_user_management_change_policy(cls, val): Create an instance of this class set to the ``group_user_management_change_policy`` tag with value ``val``. - :param GroupUserManagementChangePolicyType val: - :rtype: EventType + :param team_log.GroupUserManagementChangePolicyType val: + :rtype: team_log.EventType """ return cls('group_user_management_change_policy', val) @@ -20297,8 +20490,8 @@ def member_requests_change_policy(cls, val): Create an instance of this class set to the ``member_requests_change_policy`` tag with value ``val``. - :param MemberRequestsChangePolicyType val: - :rtype: EventType + :param team_log.MemberRequestsChangePolicyType val: + :rtype: team_log.EventType """ return cls('member_requests_change_policy', val) @@ -20308,8 +20501,8 @@ def member_space_limits_add_exception(cls, val): Create an instance of this class set to the ``member_space_limits_add_exception`` tag with value ``val``. - :param MemberSpaceLimitsAddExceptionType val: - :rtype: EventType + :param team_log.MemberSpaceLimitsAddExceptionType val: + :rtype: team_log.EventType """ return cls('member_space_limits_add_exception', val) @@ -20319,8 +20512,8 @@ def member_space_limits_change_caps_type_policy(cls, val): Create an instance of this class set to the ``member_space_limits_change_caps_type_policy`` tag with value ``val``. - :param MemberSpaceLimitsChangeCapsTypePolicyType val: - :rtype: EventType + :param team_log.MemberSpaceLimitsChangeCapsTypePolicyType val: + :rtype: team_log.EventType """ return cls('member_space_limits_change_caps_type_policy', val) @@ -20330,8 +20523,8 @@ def member_space_limits_change_policy(cls, val): Create an instance of this class set to the ``member_space_limits_change_policy`` tag with value ``val``. - :param MemberSpaceLimitsChangePolicyType val: - :rtype: EventType + :param team_log.MemberSpaceLimitsChangePolicyType val: + :rtype: team_log.EventType """ return cls('member_space_limits_change_policy', val) @@ -20341,8 +20534,8 @@ def member_space_limits_remove_exception(cls, val): Create an instance of this class set to the ``member_space_limits_remove_exception`` tag with value ``val``. - :param MemberSpaceLimitsRemoveExceptionType val: - :rtype: EventType + :param team_log.MemberSpaceLimitsRemoveExceptionType val: + :rtype: team_log.EventType """ return cls('member_space_limits_remove_exception', val) @@ -20352,8 +20545,8 @@ def member_suggestions_change_policy(cls, val): Create an instance of this class set to the ``member_suggestions_change_policy`` tag with value ``val``. - :param MemberSuggestionsChangePolicyType val: - :rtype: EventType + :param team_log.MemberSuggestionsChangePolicyType val: + :rtype: team_log.EventType """ return cls('member_suggestions_change_policy', val) @@ -20363,8 +20556,8 @@ def microsoft_office_addin_change_policy(cls, val): Create an instance of this class set to the ``microsoft_office_addin_change_policy`` tag with value ``val``. - :param MicrosoftOfficeAddinChangePolicyType val: - :rtype: EventType + :param team_log.MicrosoftOfficeAddinChangePolicyType val: + :rtype: team_log.EventType """ return cls('microsoft_office_addin_change_policy', val) @@ -20374,8 +20567,8 @@ def network_control_change_policy(cls, val): Create an instance of this class set to the ``network_control_change_policy`` tag with value ``val``. - :param NetworkControlChangePolicyType val: - :rtype: EventType + :param team_log.NetworkControlChangePolicyType val: + :rtype: team_log.EventType """ return cls('network_control_change_policy', val) @@ -20385,8 +20578,8 @@ def paper_change_deployment_policy(cls, val): Create an instance of this class set to the ``paper_change_deployment_policy`` tag with value ``val``. - :param PaperChangeDeploymentPolicyType val: - :rtype: EventType + :param team_log.PaperChangeDeploymentPolicyType val: + :rtype: team_log.EventType """ return cls('paper_change_deployment_policy', val) @@ -20396,8 +20589,8 @@ def paper_change_member_link_policy(cls, val): Create an instance of this class set to the ``paper_change_member_link_policy`` tag with value ``val``. - :param PaperChangeMemberLinkPolicyType val: - :rtype: EventType + :param team_log.PaperChangeMemberLinkPolicyType val: + :rtype: team_log.EventType """ return cls('paper_change_member_link_policy', val) @@ -20407,8 +20600,8 @@ def paper_change_member_policy(cls, val): Create an instance of this class set to the ``paper_change_member_policy`` tag with value ``val``. - :param PaperChangeMemberPolicyType val: - :rtype: EventType + :param team_log.PaperChangeMemberPolicyType val: + :rtype: team_log.EventType """ return cls('paper_change_member_policy', val) @@ -20418,8 +20611,8 @@ def paper_change_policy(cls, val): Create an instance of this class set to the ``paper_change_policy`` tag with value ``val``. - :param PaperChangePolicyType val: - :rtype: EventType + :param team_log.PaperChangePolicyType val: + :rtype: team_log.EventType """ return cls('paper_change_policy', val) @@ -20429,8 +20622,8 @@ def paper_enabled_users_group_addition(cls, val): Create an instance of this class set to the ``paper_enabled_users_group_addition`` tag with value ``val``. - :param PaperEnabledUsersGroupAdditionType val: - :rtype: EventType + :param team_log.PaperEnabledUsersGroupAdditionType val: + :rtype: team_log.EventType """ return cls('paper_enabled_users_group_addition', val) @@ -20440,8 +20633,8 @@ def paper_enabled_users_group_removal(cls, val): Create an instance of this class set to the ``paper_enabled_users_group_removal`` tag with value ``val``. - :param PaperEnabledUsersGroupRemovalType val: - :rtype: EventType + :param team_log.PaperEnabledUsersGroupRemovalType val: + :rtype: team_log.EventType """ return cls('paper_enabled_users_group_removal', val) @@ -20451,8 +20644,8 @@ def permanent_delete_change_policy(cls, val): Create an instance of this class set to the ``permanent_delete_change_policy`` tag with value ``val``. - :param PermanentDeleteChangePolicyType val: - :rtype: EventType + :param team_log.PermanentDeleteChangePolicyType val: + :rtype: team_log.EventType """ return cls('permanent_delete_change_policy', val) @@ -20462,8 +20655,8 @@ def sharing_change_folder_join_policy(cls, val): Create an instance of this class set to the ``sharing_change_folder_join_policy`` tag with value ``val``. - :param SharingChangeFolderJoinPolicyType val: - :rtype: EventType + :param team_log.SharingChangeFolderJoinPolicyType val: + :rtype: team_log.EventType """ return cls('sharing_change_folder_join_policy', val) @@ -20473,8 +20666,8 @@ def sharing_change_link_policy(cls, val): Create an instance of this class set to the ``sharing_change_link_policy`` tag with value ``val``. - :param SharingChangeLinkPolicyType val: - :rtype: EventType + :param team_log.SharingChangeLinkPolicyType val: + :rtype: team_log.EventType """ return cls('sharing_change_link_policy', val) @@ -20484,8 +20677,8 @@ def sharing_change_member_policy(cls, val): Create an instance of this class set to the ``sharing_change_member_policy`` tag with value ``val``. - :param SharingChangeMemberPolicyType val: - :rtype: EventType + :param team_log.SharingChangeMemberPolicyType val: + :rtype: team_log.EventType """ return cls('sharing_change_member_policy', val) @@ -20495,8 +20688,8 @@ def showcase_change_download_policy(cls, val): Create an instance of this class set to the ``showcase_change_download_policy`` tag with value ``val``. - :param ShowcaseChangeDownloadPolicyType val: - :rtype: EventType + :param team_log.ShowcaseChangeDownloadPolicyType val: + :rtype: team_log.EventType """ return cls('showcase_change_download_policy', val) @@ -20506,8 +20699,8 @@ def showcase_change_enabled_policy(cls, val): Create an instance of this class set to the ``showcase_change_enabled_policy`` tag with value ``val``. - :param ShowcaseChangeEnabledPolicyType val: - :rtype: EventType + :param team_log.ShowcaseChangeEnabledPolicyType val: + :rtype: team_log.EventType """ return cls('showcase_change_enabled_policy', val) @@ -20517,8 +20710,8 @@ def showcase_change_external_sharing_policy(cls, val): Create an instance of this class set to the ``showcase_change_external_sharing_policy`` tag with value ``val``. - :param ShowcaseChangeExternalSharingPolicyType val: - :rtype: EventType + :param team_log.ShowcaseChangeExternalSharingPolicyType val: + :rtype: team_log.EventType """ return cls('showcase_change_external_sharing_policy', val) @@ -20528,8 +20721,8 @@ def smart_sync_change_policy(cls, val): Create an instance of this class set to the ``smart_sync_change_policy`` tag with value ``val``. - :param SmartSyncChangePolicyType val: - :rtype: EventType + :param team_log.SmartSyncChangePolicyType val: + :rtype: team_log.EventType """ return cls('smart_sync_change_policy', val) @@ -20539,8 +20732,8 @@ def smart_sync_not_opt_out(cls, val): Create an instance of this class set to the ``smart_sync_not_opt_out`` tag with value ``val``. - :param SmartSyncNotOptOutType val: - :rtype: EventType + :param team_log.SmartSyncNotOptOutType val: + :rtype: team_log.EventType """ return cls('smart_sync_not_opt_out', val) @@ -20550,8 +20743,8 @@ def smart_sync_opt_out(cls, val): Create an instance of this class set to the ``smart_sync_opt_out`` tag with value ``val``. - :param SmartSyncOptOutType val: - :rtype: EventType + :param team_log.SmartSyncOptOutType val: + :rtype: team_log.EventType """ return cls('smart_sync_opt_out', val) @@ -20561,8 +20754,8 @@ def sso_change_policy(cls, val): Create an instance of this class set to the ``sso_change_policy`` tag with value ``val``. - :param SsoChangePolicyType val: - :rtype: EventType + :param team_log.SsoChangePolicyType val: + :rtype: team_log.EventType """ return cls('sso_change_policy', val) @@ -20572,8 +20765,8 @@ def team_selective_sync_policy_changed(cls, val): Create an instance of this class set to the ``team_selective_sync_policy_changed`` tag with value ``val``. - :param TeamSelectiveSyncPolicyChangedType val: - :rtype: EventType + :param team_log.TeamSelectiveSyncPolicyChangedType val: + :rtype: team_log.EventType """ return cls('team_selective_sync_policy_changed', val) @@ -20583,8 +20776,8 @@ def tfa_change_policy(cls, val): Create an instance of this class set to the ``tfa_change_policy`` tag with value ``val``. - :param TfaChangePolicyType val: - :rtype: EventType + :param team_log.TfaChangePolicyType val: + :rtype: team_log.EventType """ return cls('tfa_change_policy', val) @@ -20594,8 +20787,8 @@ def two_account_change_policy(cls, val): Create an instance of this class set to the ``two_account_change_policy`` tag with value ``val``. - :param TwoAccountChangePolicyType val: - :rtype: EventType + :param team_log.TwoAccountChangePolicyType val: + :rtype: team_log.EventType """ return cls('two_account_change_policy', val) @@ -20605,8 +20798,8 @@ def viewer_info_policy_changed(cls, val): Create an instance of this class set to the ``viewer_info_policy_changed`` tag with value ``val``. - :param ViewerInfoPolicyChangedType val: - :rtype: EventType + :param team_log.ViewerInfoPolicyChangedType val: + :rtype: team_log.EventType """ return cls('viewer_info_policy_changed', val) @@ -20616,8 +20809,8 @@ def web_sessions_change_fixed_length_policy(cls, val): Create an instance of this class set to the ``web_sessions_change_fixed_length_policy`` tag with value ``val``. - :param WebSessionsChangeFixedLengthPolicyType val: - :rtype: EventType + :param team_log.WebSessionsChangeFixedLengthPolicyType val: + :rtype: team_log.EventType """ return cls('web_sessions_change_fixed_length_policy', val) @@ -20627,8 +20820,8 @@ def web_sessions_change_idle_length_policy(cls, val): Create an instance of this class set to the ``web_sessions_change_idle_length_policy`` tag with value ``val``. - :param WebSessionsChangeIdleLengthPolicyType val: - :rtype: EventType + :param team_log.WebSessionsChangeIdleLengthPolicyType val: + :rtype: team_log.EventType """ return cls('web_sessions_change_idle_length_policy', val) @@ -20638,8 +20831,8 @@ def team_merge_from(cls, val): Create an instance of this class set to the ``team_merge_from`` tag with value ``val``. - :param TeamMergeFromType val: - :rtype: EventType + :param team_log.TeamMergeFromType val: + :rtype: team_log.EventType """ return cls('team_merge_from', val) @@ -20649,8 +20842,8 @@ def team_merge_to(cls, val): Create an instance of this class set to the ``team_merge_to`` tag with value ``val``. - :param TeamMergeToType val: - :rtype: EventType + :param team_log.TeamMergeToType val: + :rtype: team_log.EventType """ return cls('team_merge_to', val) @@ -20660,8 +20853,8 @@ def team_profile_add_logo(cls, val): Create an instance of this class set to the ``team_profile_add_logo`` tag with value ``val``. - :param TeamProfileAddLogoType val: - :rtype: EventType + :param team_log.TeamProfileAddLogoType val: + :rtype: team_log.EventType """ return cls('team_profile_add_logo', val) @@ -20671,8 +20864,8 @@ def team_profile_change_default_language(cls, val): Create an instance of this class set to the ``team_profile_change_default_language`` tag with value ``val``. - :param TeamProfileChangeDefaultLanguageType val: - :rtype: EventType + :param team_log.TeamProfileChangeDefaultLanguageType val: + :rtype: team_log.EventType """ return cls('team_profile_change_default_language', val) @@ -20682,8 +20875,8 @@ def team_profile_change_logo(cls, val): Create an instance of this class set to the ``team_profile_change_logo`` tag with value ``val``. - :param TeamProfileChangeLogoType val: - :rtype: EventType + :param team_log.TeamProfileChangeLogoType val: + :rtype: team_log.EventType """ return cls('team_profile_change_logo', val) @@ -20693,8 +20886,8 @@ def team_profile_change_name(cls, val): Create an instance of this class set to the ``team_profile_change_name`` tag with value ``val``. - :param TeamProfileChangeNameType val: - :rtype: EventType + :param team_log.TeamProfileChangeNameType val: + :rtype: team_log.EventType """ return cls('team_profile_change_name', val) @@ -20704,8 +20897,8 @@ def team_profile_remove_logo(cls, val): Create an instance of this class set to the ``team_profile_remove_logo`` tag with value ``val``. - :param TeamProfileRemoveLogoType val: - :rtype: EventType + :param team_log.TeamProfileRemoveLogoType val: + :rtype: team_log.EventType """ return cls('team_profile_remove_logo', val) @@ -20715,8 +20908,8 @@ def tfa_add_backup_phone(cls, val): Create an instance of this class set to the ``tfa_add_backup_phone`` tag with value ``val``. - :param TfaAddBackupPhoneType val: - :rtype: EventType + :param team_log.TfaAddBackupPhoneType val: + :rtype: team_log.EventType """ return cls('tfa_add_backup_phone', val) @@ -20726,8 +20919,8 @@ def tfa_add_security_key(cls, val): Create an instance of this class set to the ``tfa_add_security_key`` tag with value ``val``. - :param TfaAddSecurityKeyType val: - :rtype: EventType + :param team_log.TfaAddSecurityKeyType val: + :rtype: team_log.EventType """ return cls('tfa_add_security_key', val) @@ -20737,8 +20930,8 @@ def tfa_change_backup_phone(cls, val): Create an instance of this class set to the ``tfa_change_backup_phone`` tag with value ``val``. - :param TfaChangeBackupPhoneType val: - :rtype: EventType + :param team_log.TfaChangeBackupPhoneType val: + :rtype: team_log.EventType """ return cls('tfa_change_backup_phone', val) @@ -20748,8 +20941,8 @@ def tfa_change_status(cls, val): Create an instance of this class set to the ``tfa_change_status`` tag with value ``val``. - :param TfaChangeStatusType val: - :rtype: EventType + :param team_log.TfaChangeStatusType val: + :rtype: team_log.EventType """ return cls('tfa_change_status', val) @@ -20759,8 +20952,8 @@ def tfa_remove_backup_phone(cls, val): Create an instance of this class set to the ``tfa_remove_backup_phone`` tag with value ``val``. - :param TfaRemoveBackupPhoneType val: - :rtype: EventType + :param team_log.TfaRemoveBackupPhoneType val: + :rtype: team_log.EventType """ return cls('tfa_remove_backup_phone', val) @@ -20770,8 +20963,8 @@ def tfa_remove_security_key(cls, val): Create an instance of this class set to the ``tfa_remove_security_key`` tag with value ``val``. - :param TfaRemoveSecurityKeyType val: - :rtype: EventType + :param team_log.TfaRemoveSecurityKeyType val: + :rtype: team_log.EventType """ return cls('tfa_remove_security_key', val) @@ -20781,8 +20974,8 @@ def tfa_reset(cls, val): Create an instance of this class set to the ``tfa_reset`` tag with value ``val``. - :param TfaResetType val: - :rtype: EventType + :param team_log.TfaResetType val: + :rtype: team_log.EventType """ return cls('tfa_reset', val) @@ -23288,7 +23481,7 @@ def get_app_link_team(self): Only call this if :meth:`is_app_link_team` is true. - :rtype: AppLinkTeamType + :rtype: team_log.AppLinkTeamType """ if not self.is_app_link_team(): raise AttributeError("tag 'app_link_team' not set") @@ -23300,7 +23493,7 @@ def get_app_link_user(self): Only call this if :meth:`is_app_link_user` is true. - :rtype: AppLinkUserType + :rtype: team_log.AppLinkUserType """ if not self.is_app_link_user(): raise AttributeError("tag 'app_link_user' not set") @@ -23312,7 +23505,7 @@ def get_app_unlink_team(self): Only call this if :meth:`is_app_unlink_team` is true. - :rtype: AppUnlinkTeamType + :rtype: team_log.AppUnlinkTeamType """ if not self.is_app_unlink_team(): raise AttributeError("tag 'app_unlink_team' not set") @@ -23324,7 +23517,7 @@ def get_app_unlink_user(self): Only call this if :meth:`is_app_unlink_user` is true. - :rtype: AppUnlinkUserType + :rtype: team_log.AppUnlinkUserType """ if not self.is_app_unlink_user(): raise AttributeError("tag 'app_unlink_user' not set") @@ -23336,7 +23529,7 @@ def get_file_add_comment(self): Only call this if :meth:`is_file_add_comment` is true. - :rtype: FileAddCommentType + :rtype: team_log.FileAddCommentType """ if not self.is_file_add_comment(): raise AttributeError("tag 'file_add_comment' not set") @@ -23349,7 +23542,7 @@ def get_file_change_comment_subscription(self): Only call this if :meth:`is_file_change_comment_subscription` is true. - :rtype: FileChangeCommentSubscriptionType + :rtype: team_log.FileChangeCommentSubscriptionType """ if not self.is_file_change_comment_subscription(): raise AttributeError("tag 'file_change_comment_subscription' not set") @@ -23361,7 +23554,7 @@ def get_file_delete_comment(self): Only call this if :meth:`is_file_delete_comment` is true. - :rtype: FileDeleteCommentType + :rtype: team_log.FileDeleteCommentType """ if not self.is_file_delete_comment(): raise AttributeError("tag 'file_delete_comment' not set") @@ -23373,7 +23566,7 @@ def get_file_edit_comment(self): Only call this if :meth:`is_file_edit_comment` is true. - :rtype: FileEditCommentType + :rtype: team_log.FileEditCommentType """ if not self.is_file_edit_comment(): raise AttributeError("tag 'file_edit_comment' not set") @@ -23385,7 +23578,7 @@ def get_file_like_comment(self): Only call this if :meth:`is_file_like_comment` is true. - :rtype: FileLikeCommentType + :rtype: team_log.FileLikeCommentType """ if not self.is_file_like_comment(): raise AttributeError("tag 'file_like_comment' not set") @@ -23397,7 +23590,7 @@ def get_file_resolve_comment(self): Only call this if :meth:`is_file_resolve_comment` is true. - :rtype: FileResolveCommentType + :rtype: team_log.FileResolveCommentType """ if not self.is_file_resolve_comment(): raise AttributeError("tag 'file_resolve_comment' not set") @@ -23409,7 +23602,7 @@ def get_file_unlike_comment(self): Only call this if :meth:`is_file_unlike_comment` is true. - :rtype: FileUnlikeCommentType + :rtype: team_log.FileUnlikeCommentType """ if not self.is_file_unlike_comment(): raise AttributeError("tag 'file_unlike_comment' not set") @@ -23421,7 +23614,7 @@ def get_file_unresolve_comment(self): Only call this if :meth:`is_file_unresolve_comment` is true. - :rtype: FileUnresolveCommentType + :rtype: team_log.FileUnresolveCommentType """ if not self.is_file_unresolve_comment(): raise AttributeError("tag 'file_unresolve_comment' not set") @@ -23433,7 +23626,7 @@ def get_device_change_ip_desktop(self): Only call this if :meth:`is_device_change_ip_desktop` is true. - :rtype: DeviceChangeIpDesktopType + :rtype: team_log.DeviceChangeIpDesktopType """ if not self.is_device_change_ip_desktop(): raise AttributeError("tag 'device_change_ip_desktop' not set") @@ -23445,7 +23638,7 @@ def get_device_change_ip_mobile(self): Only call this if :meth:`is_device_change_ip_mobile` is true. - :rtype: DeviceChangeIpMobileType + :rtype: team_log.DeviceChangeIpMobileType """ if not self.is_device_change_ip_mobile(): raise AttributeError("tag 'device_change_ip_mobile' not set") @@ -23457,7 +23650,7 @@ def get_device_change_ip_web(self): Only call this if :meth:`is_device_change_ip_web` is true. - :rtype: DeviceChangeIpWebType + :rtype: team_log.DeviceChangeIpWebType """ if not self.is_device_change_ip_web(): raise AttributeError("tag 'device_change_ip_web' not set") @@ -23469,7 +23662,7 @@ def get_device_delete_on_unlink_fail(self): Only call this if :meth:`is_device_delete_on_unlink_fail` is true. - :rtype: DeviceDeleteOnUnlinkFailType + :rtype: team_log.DeviceDeleteOnUnlinkFailType """ if not self.is_device_delete_on_unlink_fail(): raise AttributeError("tag 'device_delete_on_unlink_fail' not set") @@ -23481,7 +23674,7 @@ def get_device_delete_on_unlink_success(self): Only call this if :meth:`is_device_delete_on_unlink_success` is true. - :rtype: DeviceDeleteOnUnlinkSuccessType + :rtype: team_log.DeviceDeleteOnUnlinkSuccessType """ if not self.is_device_delete_on_unlink_success(): raise AttributeError("tag 'device_delete_on_unlink_success' not set") @@ -23493,7 +23686,7 @@ def get_device_link_fail(self): Only call this if :meth:`is_device_link_fail` is true. - :rtype: DeviceLinkFailType + :rtype: team_log.DeviceLinkFailType """ if not self.is_device_link_fail(): raise AttributeError("tag 'device_link_fail' not set") @@ -23505,7 +23698,7 @@ def get_device_link_success(self): Only call this if :meth:`is_device_link_success` is true. - :rtype: DeviceLinkSuccessType + :rtype: team_log.DeviceLinkSuccessType """ if not self.is_device_link_success(): raise AttributeError("tag 'device_link_success' not set") @@ -23517,7 +23710,7 @@ def get_device_management_disabled(self): Only call this if :meth:`is_device_management_disabled` is true. - :rtype: DeviceManagementDisabledType + :rtype: team_log.DeviceManagementDisabledType """ if not self.is_device_management_disabled(): raise AttributeError("tag 'device_management_disabled' not set") @@ -23529,7 +23722,7 @@ def get_device_management_enabled(self): Only call this if :meth:`is_device_management_enabled` is true. - :rtype: DeviceManagementEnabledType + :rtype: team_log.DeviceManagementEnabledType """ if not self.is_device_management_enabled(): raise AttributeError("tag 'device_management_enabled' not set") @@ -23541,7 +23734,7 @@ def get_device_unlink(self): Only call this if :meth:`is_device_unlink` is true. - :rtype: DeviceUnlinkType + :rtype: team_log.DeviceUnlinkType """ if not self.is_device_unlink(): raise AttributeError("tag 'device_unlink' not set") @@ -23554,7 +23747,7 @@ def get_emm_refresh_auth_token(self): Only call this if :meth:`is_emm_refresh_auth_token` is true. - :rtype: EmmRefreshAuthTokenType + :rtype: team_log.EmmRefreshAuthTokenType """ if not self.is_emm_refresh_auth_token(): raise AttributeError("tag 'emm_refresh_auth_token' not set") @@ -23567,7 +23760,7 @@ def get_account_capture_change_availability(self): Only call this if :meth:`is_account_capture_change_availability` is true. - :rtype: AccountCaptureChangeAvailabilityType + :rtype: team_log.AccountCaptureChangeAvailabilityType """ if not self.is_account_capture_change_availability(): raise AttributeError("tag 'account_capture_change_availability' not set") @@ -23579,7 +23772,7 @@ def get_account_capture_migrate_account(self): Only call this if :meth:`is_account_capture_migrate_account` is true. - :rtype: AccountCaptureMigrateAccountType + :rtype: team_log.AccountCaptureMigrateAccountType """ if not self.is_account_capture_migrate_account(): raise AttributeError("tag 'account_capture_migrate_account' not set") @@ -23591,7 +23784,7 @@ def get_account_capture_notification_emails_sent(self): Only call this if :meth:`is_account_capture_notification_emails_sent` is true. - :rtype: AccountCaptureNotificationEmailsSentType + :rtype: team_log.AccountCaptureNotificationEmailsSentType """ if not self.is_account_capture_notification_emails_sent(): raise AttributeError("tag 'account_capture_notification_emails_sent' not set") @@ -23603,7 +23796,7 @@ def get_account_capture_relinquish_account(self): Only call this if :meth:`is_account_capture_relinquish_account` is true. - :rtype: AccountCaptureRelinquishAccountType + :rtype: team_log.AccountCaptureRelinquishAccountType """ if not self.is_account_capture_relinquish_account(): raise AttributeError("tag 'account_capture_relinquish_account' not set") @@ -23615,7 +23808,7 @@ def get_disabled_domain_invites(self): Only call this if :meth:`is_disabled_domain_invites` is true. - :rtype: DisabledDomainInvitesType + :rtype: team_log.DisabledDomainInvitesType """ if not self.is_disabled_domain_invites(): raise AttributeError("tag 'disabled_domain_invites' not set") @@ -23627,7 +23820,7 @@ def get_domain_invites_approve_request_to_join_team(self): Only call this if :meth:`is_domain_invites_approve_request_to_join_team` is true. - :rtype: DomainInvitesApproveRequestToJoinTeamType + :rtype: team_log.DomainInvitesApproveRequestToJoinTeamType """ if not self.is_domain_invites_approve_request_to_join_team(): raise AttributeError("tag 'domain_invites_approve_request_to_join_team' not set") @@ -23639,7 +23832,7 @@ def get_domain_invites_decline_request_to_join_team(self): Only call this if :meth:`is_domain_invites_decline_request_to_join_team` is true. - :rtype: DomainInvitesDeclineRequestToJoinTeamType + :rtype: team_log.DomainInvitesDeclineRequestToJoinTeamType """ if not self.is_domain_invites_decline_request_to_join_team(): raise AttributeError("tag 'domain_invites_decline_request_to_join_team' not set") @@ -23652,7 +23845,7 @@ def get_domain_invites_email_existing_users(self): Only call this if :meth:`is_domain_invites_email_existing_users` is true. - :rtype: DomainInvitesEmailExistingUsersType + :rtype: team_log.DomainInvitesEmailExistingUsersType """ if not self.is_domain_invites_email_existing_users(): raise AttributeError("tag 'domain_invites_email_existing_users' not set") @@ -23664,7 +23857,7 @@ def get_domain_invites_request_to_join_team(self): Only call this if :meth:`is_domain_invites_request_to_join_team` is true. - :rtype: DomainInvitesRequestToJoinTeamType + :rtype: team_log.DomainInvitesRequestToJoinTeamType """ if not self.is_domain_invites_request_to_join_team(): raise AttributeError("tag 'domain_invites_request_to_join_team' not set") @@ -23677,7 +23870,7 @@ def get_domain_invites_set_invite_new_user_pref_to_no(self): Only call this if :meth:`is_domain_invites_set_invite_new_user_pref_to_no` is true. - :rtype: DomainInvitesSetInviteNewUserPrefToNoType + :rtype: team_log.DomainInvitesSetInviteNewUserPrefToNoType """ if not self.is_domain_invites_set_invite_new_user_pref_to_no(): raise AttributeError("tag 'domain_invites_set_invite_new_user_pref_to_no' not set") @@ -23690,7 +23883,7 @@ def get_domain_invites_set_invite_new_user_pref_to_yes(self): Only call this if :meth:`is_domain_invites_set_invite_new_user_pref_to_yes` is true. - :rtype: DomainInvitesSetInviteNewUserPrefToYesType + :rtype: team_log.DomainInvitesSetInviteNewUserPrefToYesType """ if not self.is_domain_invites_set_invite_new_user_pref_to_yes(): raise AttributeError("tag 'domain_invites_set_invite_new_user_pref_to_yes' not set") @@ -23702,7 +23895,7 @@ def get_domain_verification_add_domain_fail(self): Only call this if :meth:`is_domain_verification_add_domain_fail` is true. - :rtype: DomainVerificationAddDomainFailType + :rtype: team_log.DomainVerificationAddDomainFailType """ if not self.is_domain_verification_add_domain_fail(): raise AttributeError("tag 'domain_verification_add_domain_fail' not set") @@ -23714,7 +23907,7 @@ def get_domain_verification_add_domain_success(self): Only call this if :meth:`is_domain_verification_add_domain_success` is true. - :rtype: DomainVerificationAddDomainSuccessType + :rtype: team_log.DomainVerificationAddDomainSuccessType """ if not self.is_domain_verification_add_domain_success(): raise AttributeError("tag 'domain_verification_add_domain_success' not set") @@ -23726,7 +23919,7 @@ def get_domain_verification_remove_domain(self): Only call this if :meth:`is_domain_verification_remove_domain` is true. - :rtype: DomainVerificationRemoveDomainType + :rtype: team_log.DomainVerificationRemoveDomainType """ if not self.is_domain_verification_remove_domain(): raise AttributeError("tag 'domain_verification_remove_domain' not set") @@ -23738,7 +23931,7 @@ def get_enabled_domain_invites(self): Only call this if :meth:`is_enabled_domain_invites` is true. - :rtype: EnabledDomainInvitesType + :rtype: team_log.EnabledDomainInvitesType """ if not self.is_enabled_domain_invites(): raise AttributeError("tag 'enabled_domain_invites' not set") @@ -23750,7 +23943,7 @@ def get_create_folder(self): Only call this if :meth:`is_create_folder` is true. - :rtype: CreateFolderType + :rtype: team_log.CreateFolderType """ if not self.is_create_folder(): raise AttributeError("tag 'create_folder' not set") @@ -23762,7 +23955,7 @@ def get_file_add(self): Only call this if :meth:`is_file_add` is true. - :rtype: FileAddType + :rtype: team_log.FileAddType """ if not self.is_file_add(): raise AttributeError("tag 'file_add' not set") @@ -23774,7 +23967,7 @@ def get_file_copy(self): Only call this if :meth:`is_file_copy` is true. - :rtype: FileCopyType + :rtype: team_log.FileCopyType """ if not self.is_file_copy(): raise AttributeError("tag 'file_copy' not set") @@ -23786,7 +23979,7 @@ def get_file_delete(self): Only call this if :meth:`is_file_delete` is true. - :rtype: FileDeleteType + :rtype: team_log.FileDeleteType """ if not self.is_file_delete(): raise AttributeError("tag 'file_delete' not set") @@ -23798,7 +23991,7 @@ def get_file_download(self): Only call this if :meth:`is_file_download` is true. - :rtype: FileDownloadType + :rtype: team_log.FileDownloadType """ if not self.is_file_download(): raise AttributeError("tag 'file_download' not set") @@ -23810,7 +24003,7 @@ def get_file_edit(self): Only call this if :meth:`is_file_edit` is true. - :rtype: FileEditType + :rtype: team_log.FileEditType """ if not self.is_file_edit(): raise AttributeError("tag 'file_edit' not set") @@ -23822,7 +24015,7 @@ def get_file_get_copy_reference(self): Only call this if :meth:`is_file_get_copy_reference` is true. - :rtype: FileGetCopyReferenceType + :rtype: team_log.FileGetCopyReferenceType """ if not self.is_file_get_copy_reference(): raise AttributeError("tag 'file_get_copy_reference' not set") @@ -23834,7 +24027,7 @@ def get_file_move(self): Only call this if :meth:`is_file_move` is true. - :rtype: FileMoveType + :rtype: team_log.FileMoveType """ if not self.is_file_move(): raise AttributeError("tag 'file_move' not set") @@ -23846,7 +24039,7 @@ def get_file_permanently_delete(self): Only call this if :meth:`is_file_permanently_delete` is true. - :rtype: FilePermanentlyDeleteType + :rtype: team_log.FilePermanentlyDeleteType """ if not self.is_file_permanently_delete(): raise AttributeError("tag 'file_permanently_delete' not set") @@ -23858,7 +24051,7 @@ def get_file_preview(self): Only call this if :meth:`is_file_preview` is true. - :rtype: FilePreviewType + :rtype: team_log.FilePreviewType """ if not self.is_file_preview(): raise AttributeError("tag 'file_preview' not set") @@ -23870,7 +24063,7 @@ def get_file_rename(self): Only call this if :meth:`is_file_rename` is true. - :rtype: FileRenameType + :rtype: team_log.FileRenameType """ if not self.is_file_rename(): raise AttributeError("tag 'file_rename' not set") @@ -23882,7 +24075,7 @@ def get_file_restore(self): Only call this if :meth:`is_file_restore` is true. - :rtype: FileRestoreType + :rtype: team_log.FileRestoreType """ if not self.is_file_restore(): raise AttributeError("tag 'file_restore' not set") @@ -23894,7 +24087,7 @@ def get_file_revert(self): Only call this if :meth:`is_file_revert` is true. - :rtype: FileRevertType + :rtype: team_log.FileRevertType """ if not self.is_file_revert(): raise AttributeError("tag 'file_revert' not set") @@ -23906,7 +24099,7 @@ def get_file_rollback_changes(self): Only call this if :meth:`is_file_rollback_changes` is true. - :rtype: FileRollbackChangesType + :rtype: team_log.FileRollbackChangesType """ if not self.is_file_rollback_changes(): raise AttributeError("tag 'file_rollback_changes' not set") @@ -23918,7 +24111,7 @@ def get_file_save_copy_reference(self): Only call this if :meth:`is_file_save_copy_reference` is true. - :rtype: FileSaveCopyReferenceType + :rtype: team_log.FileSaveCopyReferenceType """ if not self.is_file_save_copy_reference(): raise AttributeError("tag 'file_save_copy_reference' not set") @@ -23930,7 +24123,7 @@ def get_file_request_change(self): Only call this if :meth:`is_file_request_change` is true. - :rtype: FileRequestChangeType + :rtype: team_log.FileRequestChangeType """ if not self.is_file_request_change(): raise AttributeError("tag 'file_request_change' not set") @@ -23942,7 +24135,7 @@ def get_file_request_close(self): Only call this if :meth:`is_file_request_close` is true. - :rtype: FileRequestCloseType + :rtype: team_log.FileRequestCloseType """ if not self.is_file_request_close(): raise AttributeError("tag 'file_request_close' not set") @@ -23954,7 +24147,7 @@ def get_file_request_create(self): Only call this if :meth:`is_file_request_create` is true. - :rtype: FileRequestCreateType + :rtype: team_log.FileRequestCreateType """ if not self.is_file_request_create(): raise AttributeError("tag 'file_request_create' not set") @@ -23966,7 +24159,7 @@ def get_file_request_receive_file(self): Only call this if :meth:`is_file_request_receive_file` is true. - :rtype: FileRequestReceiveFileType + :rtype: team_log.FileRequestReceiveFileType """ if not self.is_file_request_receive_file(): raise AttributeError("tag 'file_request_receive_file' not set") @@ -23978,7 +24171,7 @@ def get_group_add_external_id(self): Only call this if :meth:`is_group_add_external_id` is true. - :rtype: GroupAddExternalIdType + :rtype: team_log.GroupAddExternalIdType """ if not self.is_group_add_external_id(): raise AttributeError("tag 'group_add_external_id' not set") @@ -23990,7 +24183,7 @@ def get_group_add_member(self): Only call this if :meth:`is_group_add_member` is true. - :rtype: GroupAddMemberType + :rtype: team_log.GroupAddMemberType """ if not self.is_group_add_member(): raise AttributeError("tag 'group_add_member' not set") @@ -24002,7 +24195,7 @@ def get_group_change_external_id(self): Only call this if :meth:`is_group_change_external_id` is true. - :rtype: GroupChangeExternalIdType + :rtype: team_log.GroupChangeExternalIdType """ if not self.is_group_change_external_id(): raise AttributeError("tag 'group_change_external_id' not set") @@ -24014,7 +24207,7 @@ def get_group_change_management_type(self): Only call this if :meth:`is_group_change_management_type` is true. - :rtype: GroupChangeManagementTypeType + :rtype: team_log.GroupChangeManagementTypeType """ if not self.is_group_change_management_type(): raise AttributeError("tag 'group_change_management_type' not set") @@ -24026,7 +24219,7 @@ def get_group_change_member_role(self): Only call this if :meth:`is_group_change_member_role` is true. - :rtype: GroupChangeMemberRoleType + :rtype: team_log.GroupChangeMemberRoleType """ if not self.is_group_change_member_role(): raise AttributeError("tag 'group_change_member_role' not set") @@ -24038,7 +24231,7 @@ def get_group_create(self): Only call this if :meth:`is_group_create` is true. - :rtype: GroupCreateType + :rtype: team_log.GroupCreateType """ if not self.is_group_create(): raise AttributeError("tag 'group_create' not set") @@ -24050,7 +24243,7 @@ def get_group_delete(self): Only call this if :meth:`is_group_delete` is true. - :rtype: GroupDeleteType + :rtype: team_log.GroupDeleteType """ if not self.is_group_delete(): raise AttributeError("tag 'group_delete' not set") @@ -24062,7 +24255,7 @@ def get_group_description_updated(self): Only call this if :meth:`is_group_description_updated` is true. - :rtype: GroupDescriptionUpdatedType + :rtype: team_log.GroupDescriptionUpdatedType """ if not self.is_group_description_updated(): raise AttributeError("tag 'group_description_updated' not set") @@ -24074,7 +24267,7 @@ def get_group_join_policy_updated(self): Only call this if :meth:`is_group_join_policy_updated` is true. - :rtype: GroupJoinPolicyUpdatedType + :rtype: team_log.GroupJoinPolicyUpdatedType """ if not self.is_group_join_policy_updated(): raise AttributeError("tag 'group_join_policy_updated' not set") @@ -24086,7 +24279,7 @@ def get_group_moved(self): Only call this if :meth:`is_group_moved` is true. - :rtype: GroupMovedType + :rtype: team_log.GroupMovedType """ if not self.is_group_moved(): raise AttributeError("tag 'group_moved' not set") @@ -24098,7 +24291,7 @@ def get_group_remove_external_id(self): Only call this if :meth:`is_group_remove_external_id` is true. - :rtype: GroupRemoveExternalIdType + :rtype: team_log.GroupRemoveExternalIdType """ if not self.is_group_remove_external_id(): raise AttributeError("tag 'group_remove_external_id' not set") @@ -24110,7 +24303,7 @@ def get_group_remove_member(self): Only call this if :meth:`is_group_remove_member` is true. - :rtype: GroupRemoveMemberType + :rtype: team_log.GroupRemoveMemberType """ if not self.is_group_remove_member(): raise AttributeError("tag 'group_remove_member' not set") @@ -24122,7 +24315,7 @@ def get_group_rename(self): Only call this if :meth:`is_group_rename` is true. - :rtype: GroupRenameType + :rtype: team_log.GroupRenameType """ if not self.is_group_rename(): raise AttributeError("tag 'group_rename' not set") @@ -24135,7 +24328,7 @@ def get_emm_error(self): Only call this if :meth:`is_emm_error` is true. - :rtype: EmmErrorType + :rtype: team_log.EmmErrorType """ if not self.is_emm_error(): raise AttributeError("tag 'emm_error' not set") @@ -24147,7 +24340,7 @@ def get_login_fail(self): Only call this if :meth:`is_login_fail` is true. - :rtype: LoginFailType + :rtype: team_log.LoginFailType """ if not self.is_login_fail(): raise AttributeError("tag 'login_fail' not set") @@ -24159,7 +24352,7 @@ def get_login_success(self): Only call this if :meth:`is_login_success` is true. - :rtype: LoginSuccessType + :rtype: team_log.LoginSuccessType """ if not self.is_login_success(): raise AttributeError("tag 'login_success' not set") @@ -24171,7 +24364,7 @@ def get_logout(self): Only call this if :meth:`is_logout` is true. - :rtype: LogoutType + :rtype: team_log.LogoutType """ if not self.is_logout(): raise AttributeError("tag 'logout' not set") @@ -24183,7 +24376,7 @@ def get_reseller_support_session_end(self): Only call this if :meth:`is_reseller_support_session_end` is true. - :rtype: ResellerSupportSessionEndType + :rtype: team_log.ResellerSupportSessionEndType """ if not self.is_reseller_support_session_end(): raise AttributeError("tag 'reseller_support_session_end' not set") @@ -24195,7 +24388,7 @@ def get_reseller_support_session_start(self): Only call this if :meth:`is_reseller_support_session_start` is true. - :rtype: ResellerSupportSessionStartType + :rtype: team_log.ResellerSupportSessionStartType """ if not self.is_reseller_support_session_start(): raise AttributeError("tag 'reseller_support_session_start' not set") @@ -24207,7 +24400,7 @@ def get_sign_in_as_session_end(self): Only call this if :meth:`is_sign_in_as_session_end` is true. - :rtype: SignInAsSessionEndType + :rtype: team_log.SignInAsSessionEndType """ if not self.is_sign_in_as_session_end(): raise AttributeError("tag 'sign_in_as_session_end' not set") @@ -24219,7 +24412,7 @@ def get_sign_in_as_session_start(self): Only call this if :meth:`is_sign_in_as_session_start` is true. - :rtype: SignInAsSessionStartType + :rtype: team_log.SignInAsSessionStartType """ if not self.is_sign_in_as_session_start(): raise AttributeError("tag 'sign_in_as_session_start' not set") @@ -24232,7 +24425,7 @@ def get_sso_error(self): Only call this if :meth:`is_sso_error` is true. - :rtype: SsoErrorType + :rtype: team_log.SsoErrorType """ if not self.is_sso_error(): raise AttributeError("tag 'sso_error' not set") @@ -24244,7 +24437,7 @@ def get_member_add_name(self): Only call this if :meth:`is_member_add_name` is true. - :rtype: MemberAddNameType + :rtype: team_log.MemberAddNameType """ if not self.is_member_add_name(): raise AttributeError("tag 'member_add_name' not set") @@ -24256,7 +24449,7 @@ def get_member_change_admin_role(self): Only call this if :meth:`is_member_change_admin_role` is true. - :rtype: MemberChangeAdminRoleType + :rtype: team_log.MemberChangeAdminRoleType """ if not self.is_member_change_admin_role(): raise AttributeError("tag 'member_change_admin_role' not set") @@ -24268,7 +24461,7 @@ def get_member_change_email(self): Only call this if :meth:`is_member_change_email` is true. - :rtype: MemberChangeEmailType + :rtype: team_log.MemberChangeEmailType """ if not self.is_member_change_email(): raise AttributeError("tag 'member_change_email' not set") @@ -24281,7 +24474,7 @@ def get_member_change_membership_type(self): Only call this if :meth:`is_member_change_membership_type` is true. - :rtype: MemberChangeMembershipTypeType + :rtype: team_log.MemberChangeMembershipTypeType """ if not self.is_member_change_membership_type(): raise AttributeError("tag 'member_change_membership_type' not set") @@ -24293,7 +24486,7 @@ def get_member_change_name(self): Only call this if :meth:`is_member_change_name` is true. - :rtype: MemberChangeNameType + :rtype: team_log.MemberChangeNameType """ if not self.is_member_change_name(): raise AttributeError("tag 'member_change_name' not set") @@ -24305,7 +24498,7 @@ def get_member_change_status(self): Only call this if :meth:`is_member_change_status` is true. - :rtype: MemberChangeStatusType + :rtype: team_log.MemberChangeStatusType """ if not self.is_member_change_status(): raise AttributeError("tag 'member_change_status' not set") @@ -24317,7 +24510,7 @@ def get_member_delete_manual_contacts(self): Only call this if :meth:`is_member_delete_manual_contacts` is true. - :rtype: MemberDeleteManualContactsType + :rtype: team_log.MemberDeleteManualContactsType """ if not self.is_member_delete_manual_contacts(): raise AttributeError("tag 'member_delete_manual_contacts' not set") @@ -24329,7 +24522,7 @@ def get_member_permanently_delete_account_contents(self): Only call this if :meth:`is_member_permanently_delete_account_contents` is true. - :rtype: MemberPermanentlyDeleteAccountContentsType + :rtype: team_log.MemberPermanentlyDeleteAccountContentsType """ if not self.is_member_permanently_delete_account_contents(): raise AttributeError("tag 'member_permanently_delete_account_contents' not set") @@ -24341,7 +24534,7 @@ def get_member_space_limits_add_custom_quota(self): Only call this if :meth:`is_member_space_limits_add_custom_quota` is true. - :rtype: MemberSpaceLimitsAddCustomQuotaType + :rtype: team_log.MemberSpaceLimitsAddCustomQuotaType """ if not self.is_member_space_limits_add_custom_quota(): raise AttributeError("tag 'member_space_limits_add_custom_quota' not set") @@ -24353,7 +24546,7 @@ def get_member_space_limits_change_custom_quota(self): Only call this if :meth:`is_member_space_limits_change_custom_quota` is true. - :rtype: MemberSpaceLimitsChangeCustomQuotaType + :rtype: team_log.MemberSpaceLimitsChangeCustomQuotaType """ if not self.is_member_space_limits_change_custom_quota(): raise AttributeError("tag 'member_space_limits_change_custom_quota' not set") @@ -24365,7 +24558,7 @@ def get_member_space_limits_change_status(self): Only call this if :meth:`is_member_space_limits_change_status` is true. - :rtype: MemberSpaceLimitsChangeStatusType + :rtype: team_log.MemberSpaceLimitsChangeStatusType """ if not self.is_member_space_limits_change_status(): raise AttributeError("tag 'member_space_limits_change_status' not set") @@ -24377,7 +24570,7 @@ def get_member_space_limits_remove_custom_quota(self): Only call this if :meth:`is_member_space_limits_remove_custom_quota` is true. - :rtype: MemberSpaceLimitsRemoveCustomQuotaType + :rtype: team_log.MemberSpaceLimitsRemoveCustomQuotaType """ if not self.is_member_space_limits_remove_custom_quota(): raise AttributeError("tag 'member_space_limits_remove_custom_quota' not set") @@ -24389,7 +24582,7 @@ def get_member_suggest(self): Only call this if :meth:`is_member_suggest` is true. - :rtype: MemberSuggestType + :rtype: team_log.MemberSuggestType """ if not self.is_member_suggest(): raise AttributeError("tag 'member_suggest' not set") @@ -24402,7 +24595,7 @@ def get_member_transfer_account_contents(self): Only call this if :meth:`is_member_transfer_account_contents` is true. - :rtype: MemberTransferAccountContentsType + :rtype: team_log.MemberTransferAccountContentsType """ if not self.is_member_transfer_account_contents(): raise AttributeError("tag 'member_transfer_account_contents' not set") @@ -24414,7 +24607,7 @@ def get_secondary_mails_policy_changed(self): Only call this if :meth:`is_secondary_mails_policy_changed` is true. - :rtype: SecondaryMailsPolicyChangedType + :rtype: team_log.SecondaryMailsPolicyChangedType """ if not self.is_secondary_mails_policy_changed(): raise AttributeError("tag 'secondary_mails_policy_changed' not set") @@ -24426,7 +24619,7 @@ def get_paper_content_add_member(self): Only call this if :meth:`is_paper_content_add_member` is true. - :rtype: PaperContentAddMemberType + :rtype: team_log.PaperContentAddMemberType """ if not self.is_paper_content_add_member(): raise AttributeError("tag 'paper_content_add_member' not set") @@ -24438,7 +24631,7 @@ def get_paper_content_add_to_folder(self): Only call this if :meth:`is_paper_content_add_to_folder` is true. - :rtype: PaperContentAddToFolderType + :rtype: team_log.PaperContentAddToFolderType """ if not self.is_paper_content_add_to_folder(): raise AttributeError("tag 'paper_content_add_to_folder' not set") @@ -24450,7 +24643,7 @@ def get_paper_content_archive(self): Only call this if :meth:`is_paper_content_archive` is true. - :rtype: PaperContentArchiveType + :rtype: team_log.PaperContentArchiveType """ if not self.is_paper_content_archive(): raise AttributeError("tag 'paper_content_archive' not set") @@ -24462,7 +24655,7 @@ def get_paper_content_create(self): Only call this if :meth:`is_paper_content_create` is true. - :rtype: PaperContentCreateType + :rtype: team_log.PaperContentCreateType """ if not self.is_paper_content_create(): raise AttributeError("tag 'paper_content_create' not set") @@ -24474,7 +24667,7 @@ def get_paper_content_permanently_delete(self): Only call this if :meth:`is_paper_content_permanently_delete` is true. - :rtype: PaperContentPermanentlyDeleteType + :rtype: team_log.PaperContentPermanentlyDeleteType """ if not self.is_paper_content_permanently_delete(): raise AttributeError("tag 'paper_content_permanently_delete' not set") @@ -24486,7 +24679,7 @@ def get_paper_content_remove_from_folder(self): Only call this if :meth:`is_paper_content_remove_from_folder` is true. - :rtype: PaperContentRemoveFromFolderType + :rtype: team_log.PaperContentRemoveFromFolderType """ if not self.is_paper_content_remove_from_folder(): raise AttributeError("tag 'paper_content_remove_from_folder' not set") @@ -24498,7 +24691,7 @@ def get_paper_content_remove_member(self): Only call this if :meth:`is_paper_content_remove_member` is true. - :rtype: PaperContentRemoveMemberType + :rtype: team_log.PaperContentRemoveMemberType """ if not self.is_paper_content_remove_member(): raise AttributeError("tag 'paper_content_remove_member' not set") @@ -24510,7 +24703,7 @@ def get_paper_content_rename(self): Only call this if :meth:`is_paper_content_rename` is true. - :rtype: PaperContentRenameType + :rtype: team_log.PaperContentRenameType """ if not self.is_paper_content_rename(): raise AttributeError("tag 'paper_content_rename' not set") @@ -24522,7 +24715,7 @@ def get_paper_content_restore(self): Only call this if :meth:`is_paper_content_restore` is true. - :rtype: PaperContentRestoreType + :rtype: team_log.PaperContentRestoreType """ if not self.is_paper_content_restore(): raise AttributeError("tag 'paper_content_restore' not set") @@ -24534,7 +24727,7 @@ def get_paper_doc_add_comment(self): Only call this if :meth:`is_paper_doc_add_comment` is true. - :rtype: PaperDocAddCommentType + :rtype: team_log.PaperDocAddCommentType """ if not self.is_paper_doc_add_comment(): raise AttributeError("tag 'paper_doc_add_comment' not set") @@ -24546,7 +24739,7 @@ def get_paper_doc_change_member_role(self): Only call this if :meth:`is_paper_doc_change_member_role` is true. - :rtype: PaperDocChangeMemberRoleType + :rtype: team_log.PaperDocChangeMemberRoleType """ if not self.is_paper_doc_change_member_role(): raise AttributeError("tag 'paper_doc_change_member_role' not set") @@ -24558,7 +24751,7 @@ def get_paper_doc_change_sharing_policy(self): Only call this if :meth:`is_paper_doc_change_sharing_policy` is true. - :rtype: PaperDocChangeSharingPolicyType + :rtype: team_log.PaperDocChangeSharingPolicyType """ if not self.is_paper_doc_change_sharing_policy(): raise AttributeError("tag 'paper_doc_change_sharing_policy' not set") @@ -24570,7 +24763,7 @@ def get_paper_doc_change_subscription(self): Only call this if :meth:`is_paper_doc_change_subscription` is true. - :rtype: PaperDocChangeSubscriptionType + :rtype: team_log.PaperDocChangeSubscriptionType """ if not self.is_paper_doc_change_subscription(): raise AttributeError("tag 'paper_doc_change_subscription' not set") @@ -24582,7 +24775,7 @@ def get_paper_doc_deleted(self): Only call this if :meth:`is_paper_doc_deleted` is true. - :rtype: PaperDocDeletedType + :rtype: team_log.PaperDocDeletedType """ if not self.is_paper_doc_deleted(): raise AttributeError("tag 'paper_doc_deleted' not set") @@ -24594,7 +24787,7 @@ def get_paper_doc_delete_comment(self): Only call this if :meth:`is_paper_doc_delete_comment` is true. - :rtype: PaperDocDeleteCommentType + :rtype: team_log.PaperDocDeleteCommentType """ if not self.is_paper_doc_delete_comment(): raise AttributeError("tag 'paper_doc_delete_comment' not set") @@ -24606,7 +24799,7 @@ def get_paper_doc_download(self): Only call this if :meth:`is_paper_doc_download` is true. - :rtype: PaperDocDownloadType + :rtype: team_log.PaperDocDownloadType """ if not self.is_paper_doc_download(): raise AttributeError("tag 'paper_doc_download' not set") @@ -24618,7 +24811,7 @@ def get_paper_doc_edit(self): Only call this if :meth:`is_paper_doc_edit` is true. - :rtype: PaperDocEditType + :rtype: team_log.PaperDocEditType """ if not self.is_paper_doc_edit(): raise AttributeError("tag 'paper_doc_edit' not set") @@ -24630,7 +24823,7 @@ def get_paper_doc_edit_comment(self): Only call this if :meth:`is_paper_doc_edit_comment` is true. - :rtype: PaperDocEditCommentType + :rtype: team_log.PaperDocEditCommentType """ if not self.is_paper_doc_edit_comment(): raise AttributeError("tag 'paper_doc_edit_comment' not set") @@ -24643,7 +24836,7 @@ def get_paper_doc_followed(self): Only call this if :meth:`is_paper_doc_followed` is true. - :rtype: PaperDocFollowedType + :rtype: team_log.PaperDocFollowedType """ if not self.is_paper_doc_followed(): raise AttributeError("tag 'paper_doc_followed' not set") @@ -24655,7 +24848,7 @@ def get_paper_doc_mention(self): Only call this if :meth:`is_paper_doc_mention` is true. - :rtype: PaperDocMentionType + :rtype: team_log.PaperDocMentionType """ if not self.is_paper_doc_mention(): raise AttributeError("tag 'paper_doc_mention' not set") @@ -24667,7 +24860,7 @@ def get_paper_doc_ownership_changed(self): Only call this if :meth:`is_paper_doc_ownership_changed` is true. - :rtype: PaperDocOwnershipChangedType + :rtype: team_log.PaperDocOwnershipChangedType """ if not self.is_paper_doc_ownership_changed(): raise AttributeError("tag 'paper_doc_ownership_changed' not set") @@ -24679,7 +24872,7 @@ def get_paper_doc_request_access(self): Only call this if :meth:`is_paper_doc_request_access` is true. - :rtype: PaperDocRequestAccessType + :rtype: team_log.PaperDocRequestAccessType """ if not self.is_paper_doc_request_access(): raise AttributeError("tag 'paper_doc_request_access' not set") @@ -24691,7 +24884,7 @@ def get_paper_doc_resolve_comment(self): Only call this if :meth:`is_paper_doc_resolve_comment` is true. - :rtype: PaperDocResolveCommentType + :rtype: team_log.PaperDocResolveCommentType """ if not self.is_paper_doc_resolve_comment(): raise AttributeError("tag 'paper_doc_resolve_comment' not set") @@ -24703,7 +24896,7 @@ def get_paper_doc_revert(self): Only call this if :meth:`is_paper_doc_revert` is true. - :rtype: PaperDocRevertType + :rtype: team_log.PaperDocRevertType """ if not self.is_paper_doc_revert(): raise AttributeError("tag 'paper_doc_revert' not set") @@ -24715,7 +24908,7 @@ def get_paper_doc_slack_share(self): Only call this if :meth:`is_paper_doc_slack_share` is true. - :rtype: PaperDocSlackShareType + :rtype: team_log.PaperDocSlackShareType """ if not self.is_paper_doc_slack_share(): raise AttributeError("tag 'paper_doc_slack_share' not set") @@ -24727,7 +24920,7 @@ def get_paper_doc_team_invite(self): Only call this if :meth:`is_paper_doc_team_invite` is true. - :rtype: PaperDocTeamInviteType + :rtype: team_log.PaperDocTeamInviteType """ if not self.is_paper_doc_team_invite(): raise AttributeError("tag 'paper_doc_team_invite' not set") @@ -24739,7 +24932,7 @@ def get_paper_doc_trashed(self): Only call this if :meth:`is_paper_doc_trashed` is true. - :rtype: PaperDocTrashedType + :rtype: team_log.PaperDocTrashedType """ if not self.is_paper_doc_trashed(): raise AttributeError("tag 'paper_doc_trashed' not set") @@ -24751,7 +24944,7 @@ def get_paper_doc_unresolve_comment(self): Only call this if :meth:`is_paper_doc_unresolve_comment` is true. - :rtype: PaperDocUnresolveCommentType + :rtype: team_log.PaperDocUnresolveCommentType """ if not self.is_paper_doc_unresolve_comment(): raise AttributeError("tag 'paper_doc_unresolve_comment' not set") @@ -24763,7 +24956,7 @@ def get_paper_doc_untrashed(self): Only call this if :meth:`is_paper_doc_untrashed` is true. - :rtype: PaperDocUntrashedType + :rtype: team_log.PaperDocUntrashedType """ if not self.is_paper_doc_untrashed(): raise AttributeError("tag 'paper_doc_untrashed' not set") @@ -24775,7 +24968,7 @@ def get_paper_doc_view(self): Only call this if :meth:`is_paper_doc_view` is true. - :rtype: PaperDocViewType + :rtype: team_log.PaperDocViewType """ if not self.is_paper_doc_view(): raise AttributeError("tag 'paper_doc_view' not set") @@ -24788,7 +24981,7 @@ def get_paper_external_view_allow(self): Only call this if :meth:`is_paper_external_view_allow` is true. - :rtype: PaperExternalViewAllowType + :rtype: team_log.PaperExternalViewAllowType """ if not self.is_paper_external_view_allow(): raise AttributeError("tag 'paper_external_view_allow' not set") @@ -24801,7 +24994,7 @@ def get_paper_external_view_default_team(self): Only call this if :meth:`is_paper_external_view_default_team` is true. - :rtype: PaperExternalViewDefaultTeamType + :rtype: team_log.PaperExternalViewDefaultTeamType """ if not self.is_paper_external_view_default_team(): raise AttributeError("tag 'paper_external_view_default_team' not set") @@ -24814,7 +25007,7 @@ def get_paper_external_view_forbid(self): Only call this if :meth:`is_paper_external_view_forbid` is true. - :rtype: PaperExternalViewForbidType + :rtype: team_log.PaperExternalViewForbidType """ if not self.is_paper_external_view_forbid(): raise AttributeError("tag 'paper_external_view_forbid' not set") @@ -24826,7 +25019,7 @@ def get_paper_folder_change_subscription(self): Only call this if :meth:`is_paper_folder_change_subscription` is true. - :rtype: PaperFolderChangeSubscriptionType + :rtype: team_log.PaperFolderChangeSubscriptionType """ if not self.is_paper_folder_change_subscription(): raise AttributeError("tag 'paper_folder_change_subscription' not set") @@ -24838,7 +25031,7 @@ def get_paper_folder_deleted(self): Only call this if :meth:`is_paper_folder_deleted` is true. - :rtype: PaperFolderDeletedType + :rtype: team_log.PaperFolderDeletedType """ if not self.is_paper_folder_deleted(): raise AttributeError("tag 'paper_folder_deleted' not set") @@ -24851,7 +25044,7 @@ def get_paper_folder_followed(self): Only call this if :meth:`is_paper_folder_followed` is true. - :rtype: PaperFolderFollowedType + :rtype: team_log.PaperFolderFollowedType """ if not self.is_paper_folder_followed(): raise AttributeError("tag 'paper_folder_followed' not set") @@ -24863,7 +25056,7 @@ def get_paper_folder_team_invite(self): Only call this if :meth:`is_paper_folder_team_invite` is true. - :rtype: PaperFolderTeamInviteType + :rtype: team_log.PaperFolderTeamInviteType """ if not self.is_paper_folder_team_invite(): raise AttributeError("tag 'paper_folder_team_invite' not set") @@ -24875,7 +25068,7 @@ def get_password_change(self): Only call this if :meth:`is_password_change` is true. - :rtype: PasswordChangeType + :rtype: team_log.PasswordChangeType """ if not self.is_password_change(): raise AttributeError("tag 'password_change' not set") @@ -24887,7 +25080,7 @@ def get_password_reset(self): Only call this if :meth:`is_password_reset` is true. - :rtype: PasswordResetType + :rtype: team_log.PasswordResetType """ if not self.is_password_reset(): raise AttributeError("tag 'password_reset' not set") @@ -24899,7 +25092,7 @@ def get_password_reset_all(self): Only call this if :meth:`is_password_reset_all` is true. - :rtype: PasswordResetAllType + :rtype: team_log.PasswordResetAllType """ if not self.is_password_reset_all(): raise AttributeError("tag 'password_reset_all' not set") @@ -24911,7 +25104,7 @@ def get_emm_create_exceptions_report(self): Only call this if :meth:`is_emm_create_exceptions_report` is true. - :rtype: EmmCreateExceptionsReportType + :rtype: team_log.EmmCreateExceptionsReportType """ if not self.is_emm_create_exceptions_report(): raise AttributeError("tag 'emm_create_exceptions_report' not set") @@ -24923,7 +25116,7 @@ def get_emm_create_usage_report(self): Only call this if :meth:`is_emm_create_usage_report` is true. - :rtype: EmmCreateUsageReportType + :rtype: team_log.EmmCreateUsageReportType """ if not self.is_emm_create_usage_report(): raise AttributeError("tag 'emm_create_usage_report' not set") @@ -24935,7 +25128,7 @@ def get_export_members_report(self): Only call this if :meth:`is_export_members_report` is true. - :rtype: ExportMembersReportType + :rtype: team_log.ExportMembersReportType """ if not self.is_export_members_report(): raise AttributeError("tag 'export_members_report' not set") @@ -24947,7 +25140,7 @@ def get_paper_admin_export_start(self): Only call this if :meth:`is_paper_admin_export_start` is true. - :rtype: PaperAdminExportStartType + :rtype: team_log.PaperAdminExportStartType """ if not self.is_paper_admin_export_start(): raise AttributeError("tag 'paper_admin_export_start' not set") @@ -24959,7 +25152,7 @@ def get_smart_sync_create_admin_privilege_report(self): Only call this if :meth:`is_smart_sync_create_admin_privilege_report` is true. - :rtype: SmartSyncCreateAdminPrivilegeReportType + :rtype: team_log.SmartSyncCreateAdminPrivilegeReportType """ if not self.is_smart_sync_create_admin_privilege_report(): raise AttributeError("tag 'smart_sync_create_admin_privilege_report' not set") @@ -24971,7 +25164,7 @@ def get_team_activity_create_report(self): Only call this if :meth:`is_team_activity_create_report` is true. - :rtype: TeamActivityCreateReportType + :rtype: team_log.TeamActivityCreateReportType """ if not self.is_team_activity_create_report(): raise AttributeError("tag 'team_activity_create_report' not set") @@ -24983,7 +25176,7 @@ def get_collection_share(self): Only call this if :meth:`is_collection_share` is true. - :rtype: CollectionShareType + :rtype: team_log.CollectionShareType """ if not self.is_collection_share(): raise AttributeError("tag 'collection_share' not set") @@ -24996,7 +25189,7 @@ def get_note_acl_invite_only(self): Only call this if :meth:`is_note_acl_invite_only` is true. - :rtype: NoteAclInviteOnlyType + :rtype: team_log.NoteAclInviteOnlyType """ if not self.is_note_acl_invite_only(): raise AttributeError("tag 'note_acl_invite_only' not set") @@ -25009,7 +25202,7 @@ def get_note_acl_link(self): Only call this if :meth:`is_note_acl_link` is true. - :rtype: NoteAclLinkType + :rtype: team_log.NoteAclLinkType """ if not self.is_note_acl_link(): raise AttributeError("tag 'note_acl_link' not set") @@ -25022,7 +25215,7 @@ def get_note_acl_team_link(self): Only call this if :meth:`is_note_acl_team_link` is true. - :rtype: NoteAclTeamLinkType + :rtype: team_log.NoteAclTeamLinkType """ if not self.is_note_acl_team_link(): raise AttributeError("tag 'note_acl_team_link' not set") @@ -25034,7 +25227,7 @@ def get_note_shared(self): Only call this if :meth:`is_note_shared` is true. - :rtype: NoteSharedType + :rtype: team_log.NoteSharedType """ if not self.is_note_shared(): raise AttributeError("tag 'note_shared' not set") @@ -25046,7 +25239,7 @@ def get_note_share_receive(self): Only call this if :meth:`is_note_share_receive` is true. - :rtype: NoteShareReceiveType + :rtype: team_log.NoteShareReceiveType """ if not self.is_note_share_receive(): raise AttributeError("tag 'note_share_receive' not set") @@ -25058,7 +25251,7 @@ def get_open_note_shared(self): Only call this if :meth:`is_open_note_shared` is true. - :rtype: OpenNoteSharedType + :rtype: team_log.OpenNoteSharedType """ if not self.is_open_note_shared(): raise AttributeError("tag 'open_note_shared' not set") @@ -25070,7 +25263,7 @@ def get_sf_add_group(self): Only call this if :meth:`is_sf_add_group` is true. - :rtype: SfAddGroupType + :rtype: team_log.SfAddGroupType """ if not self.is_sf_add_group(): raise AttributeError("tag 'sf_add_group' not set") @@ -25083,7 +25276,7 @@ def get_sf_allow_non_members_to_view_shared_links(self): Only call this if :meth:`is_sf_allow_non_members_to_view_shared_links` is true. - :rtype: SfAllowNonMembersToViewSharedLinksType + :rtype: team_log.SfAllowNonMembersToViewSharedLinksType """ if not self.is_sf_allow_non_members_to_view_shared_links(): raise AttributeError("tag 'sf_allow_non_members_to_view_shared_links' not set") @@ -25096,7 +25289,7 @@ def get_sf_external_invite_warn(self): Only call this if :meth:`is_sf_external_invite_warn` is true. - :rtype: SfExternalInviteWarnType + :rtype: team_log.SfExternalInviteWarnType """ if not self.is_sf_external_invite_warn(): raise AttributeError("tag 'sf_external_invite_warn' not set") @@ -25109,7 +25302,7 @@ def get_sf_fb_invite(self): Only call this if :meth:`is_sf_fb_invite` is true. - :rtype: SfFbInviteType + :rtype: team_log.SfFbInviteType """ if not self.is_sf_fb_invite(): raise AttributeError("tag 'sf_fb_invite' not set") @@ -25122,7 +25315,7 @@ def get_sf_fb_invite_change_role(self): Only call this if :meth:`is_sf_fb_invite_change_role` is true. - :rtype: SfFbInviteChangeRoleType + :rtype: team_log.SfFbInviteChangeRoleType """ if not self.is_sf_fb_invite_change_role(): raise AttributeError("tag 'sf_fb_invite_change_role' not set") @@ -25135,7 +25328,7 @@ def get_sf_fb_uninvite(self): Only call this if :meth:`is_sf_fb_uninvite` is true. - :rtype: SfFbUninviteType + :rtype: team_log.SfFbUninviteType """ if not self.is_sf_fb_uninvite(): raise AttributeError("tag 'sf_fb_uninvite' not set") @@ -25147,7 +25340,7 @@ def get_sf_invite_group(self): Only call this if :meth:`is_sf_invite_group` is true. - :rtype: SfInviteGroupType + :rtype: team_log.SfInviteGroupType """ if not self.is_sf_invite_group(): raise AttributeError("tag 'sf_invite_group' not set") @@ -25159,7 +25352,7 @@ def get_sf_team_grant_access(self): Only call this if :meth:`is_sf_team_grant_access` is true. - :rtype: SfTeamGrantAccessType + :rtype: team_log.SfTeamGrantAccessType """ if not self.is_sf_team_grant_access(): raise AttributeError("tag 'sf_team_grant_access' not set") @@ -25172,7 +25365,7 @@ def get_sf_team_invite(self): Only call this if :meth:`is_sf_team_invite` is true. - :rtype: SfTeamInviteType + :rtype: team_log.SfTeamInviteType """ if not self.is_sf_team_invite(): raise AttributeError("tag 'sf_team_invite' not set") @@ -25185,7 +25378,7 @@ def get_sf_team_invite_change_role(self): Only call this if :meth:`is_sf_team_invite_change_role` is true. - :rtype: SfTeamInviteChangeRoleType + :rtype: team_log.SfTeamInviteChangeRoleType """ if not self.is_sf_team_invite_change_role(): raise AttributeError("tag 'sf_team_invite_change_role' not set") @@ -25198,7 +25391,7 @@ def get_sf_team_join(self): Only call this if :meth:`is_sf_team_join` is true. - :rtype: SfTeamJoinType + :rtype: team_log.SfTeamJoinType """ if not self.is_sf_team_join(): raise AttributeError("tag 'sf_team_join' not set") @@ -25211,7 +25404,7 @@ def get_sf_team_join_from_oob_link(self): Only call this if :meth:`is_sf_team_join_from_oob_link` is true. - :rtype: SfTeamJoinFromOobLinkType + :rtype: team_log.SfTeamJoinFromOobLinkType """ if not self.is_sf_team_join_from_oob_link(): raise AttributeError("tag 'sf_team_join_from_oob_link' not set") @@ -25224,7 +25417,7 @@ def get_sf_team_uninvite(self): Only call this if :meth:`is_sf_team_uninvite` is true. - :rtype: SfTeamUninviteType + :rtype: team_log.SfTeamUninviteType """ if not self.is_sf_team_uninvite(): raise AttributeError("tag 'sf_team_uninvite' not set") @@ -25236,7 +25429,7 @@ def get_shared_content_add_invitees(self): Only call this if :meth:`is_shared_content_add_invitees` is true. - :rtype: SharedContentAddInviteesType + :rtype: team_log.SharedContentAddInviteesType """ if not self.is_shared_content_add_invitees(): raise AttributeError("tag 'shared_content_add_invitees' not set") @@ -25248,7 +25441,7 @@ def get_shared_content_add_link_expiry(self): Only call this if :meth:`is_shared_content_add_link_expiry` is true. - :rtype: SharedContentAddLinkExpiryType + :rtype: team_log.SharedContentAddLinkExpiryType """ if not self.is_shared_content_add_link_expiry(): raise AttributeError("tag 'shared_content_add_link_expiry' not set") @@ -25260,7 +25453,7 @@ def get_shared_content_add_link_password(self): Only call this if :meth:`is_shared_content_add_link_password` is true. - :rtype: SharedContentAddLinkPasswordType + :rtype: team_log.SharedContentAddLinkPasswordType """ if not self.is_shared_content_add_link_password(): raise AttributeError("tag 'shared_content_add_link_password' not set") @@ -25272,7 +25465,7 @@ def get_shared_content_add_member(self): Only call this if :meth:`is_shared_content_add_member` is true. - :rtype: SharedContentAddMemberType + :rtype: team_log.SharedContentAddMemberType """ if not self.is_shared_content_add_member(): raise AttributeError("tag 'shared_content_add_member' not set") @@ -25284,7 +25477,7 @@ def get_shared_content_change_downloads_policy(self): Only call this if :meth:`is_shared_content_change_downloads_policy` is true. - :rtype: SharedContentChangeDownloadsPolicyType + :rtype: team_log.SharedContentChangeDownloadsPolicyType """ if not self.is_shared_content_change_downloads_policy(): raise AttributeError("tag 'shared_content_change_downloads_policy' not set") @@ -25297,7 +25490,7 @@ def get_shared_content_change_invitee_role(self): Only call this if :meth:`is_shared_content_change_invitee_role` is true. - :rtype: SharedContentChangeInviteeRoleType + :rtype: team_log.SharedContentChangeInviteeRoleType """ if not self.is_shared_content_change_invitee_role(): raise AttributeError("tag 'shared_content_change_invitee_role' not set") @@ -25309,7 +25502,7 @@ def get_shared_content_change_link_audience(self): Only call this if :meth:`is_shared_content_change_link_audience` is true. - :rtype: SharedContentChangeLinkAudienceType + :rtype: team_log.SharedContentChangeLinkAudienceType """ if not self.is_shared_content_change_link_audience(): raise AttributeError("tag 'shared_content_change_link_audience' not set") @@ -25321,7 +25514,7 @@ def get_shared_content_change_link_expiry(self): Only call this if :meth:`is_shared_content_change_link_expiry` is true. - :rtype: SharedContentChangeLinkExpiryType + :rtype: team_log.SharedContentChangeLinkExpiryType """ if not self.is_shared_content_change_link_expiry(): raise AttributeError("tag 'shared_content_change_link_expiry' not set") @@ -25333,7 +25526,7 @@ def get_shared_content_change_link_password(self): Only call this if :meth:`is_shared_content_change_link_password` is true. - :rtype: SharedContentChangeLinkPasswordType + :rtype: team_log.SharedContentChangeLinkPasswordType """ if not self.is_shared_content_change_link_password(): raise AttributeError("tag 'shared_content_change_link_password' not set") @@ -25345,7 +25538,7 @@ def get_shared_content_change_member_role(self): Only call this if :meth:`is_shared_content_change_member_role` is true. - :rtype: SharedContentChangeMemberRoleType + :rtype: team_log.SharedContentChangeMemberRoleType """ if not self.is_shared_content_change_member_role(): raise AttributeError("tag 'shared_content_change_member_role' not set") @@ -25357,7 +25550,7 @@ def get_shared_content_change_viewer_info_policy(self): Only call this if :meth:`is_shared_content_change_viewer_info_policy` is true. - :rtype: SharedContentChangeViewerInfoPolicyType + :rtype: team_log.SharedContentChangeViewerInfoPolicyType """ if not self.is_shared_content_change_viewer_info_policy(): raise AttributeError("tag 'shared_content_change_viewer_info_policy' not set") @@ -25369,7 +25562,7 @@ def get_shared_content_claim_invitation(self): Only call this if :meth:`is_shared_content_claim_invitation` is true. - :rtype: SharedContentClaimInvitationType + :rtype: team_log.SharedContentClaimInvitationType """ if not self.is_shared_content_claim_invitation(): raise AttributeError("tag 'shared_content_claim_invitation' not set") @@ -25381,7 +25574,7 @@ def get_shared_content_copy(self): Only call this if :meth:`is_shared_content_copy` is true. - :rtype: SharedContentCopyType + :rtype: team_log.SharedContentCopyType """ if not self.is_shared_content_copy(): raise AttributeError("tag 'shared_content_copy' not set") @@ -25393,7 +25586,7 @@ def get_shared_content_download(self): Only call this if :meth:`is_shared_content_download` is true. - :rtype: SharedContentDownloadType + :rtype: team_log.SharedContentDownloadType """ if not self.is_shared_content_download(): raise AttributeError("tag 'shared_content_download' not set") @@ -25405,7 +25598,7 @@ def get_shared_content_relinquish_membership(self): Only call this if :meth:`is_shared_content_relinquish_membership` is true. - :rtype: SharedContentRelinquishMembershipType + :rtype: team_log.SharedContentRelinquishMembershipType """ if not self.is_shared_content_relinquish_membership(): raise AttributeError("tag 'shared_content_relinquish_membership' not set") @@ -25418,7 +25611,7 @@ def get_shared_content_remove_invitees(self): Only call this if :meth:`is_shared_content_remove_invitees` is true. - :rtype: SharedContentRemoveInviteesType + :rtype: team_log.SharedContentRemoveInviteesType """ if not self.is_shared_content_remove_invitees(): raise AttributeError("tag 'shared_content_remove_invitees' not set") @@ -25430,7 +25623,7 @@ def get_shared_content_remove_link_expiry(self): Only call this if :meth:`is_shared_content_remove_link_expiry` is true. - :rtype: SharedContentRemoveLinkExpiryType + :rtype: team_log.SharedContentRemoveLinkExpiryType """ if not self.is_shared_content_remove_link_expiry(): raise AttributeError("tag 'shared_content_remove_link_expiry' not set") @@ -25442,7 +25635,7 @@ def get_shared_content_remove_link_password(self): Only call this if :meth:`is_shared_content_remove_link_password` is true. - :rtype: SharedContentRemoveLinkPasswordType + :rtype: team_log.SharedContentRemoveLinkPasswordType """ if not self.is_shared_content_remove_link_password(): raise AttributeError("tag 'shared_content_remove_link_password' not set") @@ -25454,7 +25647,7 @@ def get_shared_content_remove_member(self): Only call this if :meth:`is_shared_content_remove_member` is true. - :rtype: SharedContentRemoveMemberType + :rtype: team_log.SharedContentRemoveMemberType """ if not self.is_shared_content_remove_member(): raise AttributeError("tag 'shared_content_remove_member' not set") @@ -25466,7 +25659,7 @@ def get_shared_content_request_access(self): Only call this if :meth:`is_shared_content_request_access` is true. - :rtype: SharedContentRequestAccessType + :rtype: team_log.SharedContentRequestAccessType """ if not self.is_shared_content_request_access(): raise AttributeError("tag 'shared_content_request_access' not set") @@ -25479,7 +25672,7 @@ def get_shared_content_unshare(self): Only call this if :meth:`is_shared_content_unshare` is true. - :rtype: SharedContentUnshareType + :rtype: team_log.SharedContentUnshareType """ if not self.is_shared_content_unshare(): raise AttributeError("tag 'shared_content_unshare' not set") @@ -25491,7 +25684,7 @@ def get_shared_content_view(self): Only call this if :meth:`is_shared_content_view` is true. - :rtype: SharedContentViewType + :rtype: team_log.SharedContentViewType """ if not self.is_shared_content_view(): raise AttributeError("tag 'shared_content_view' not set") @@ -25503,7 +25696,7 @@ def get_shared_folder_change_link_policy(self): Only call this if :meth:`is_shared_folder_change_link_policy` is true. - :rtype: SharedFolderChangeLinkPolicyType + :rtype: team_log.SharedFolderChangeLinkPolicyType """ if not self.is_shared_folder_change_link_policy(): raise AttributeError("tag 'shared_folder_change_link_policy' not set") @@ -25516,7 +25709,7 @@ def get_shared_folder_change_members_inheritance_policy(self): Only call this if :meth:`is_shared_folder_change_members_inheritance_policy` is true. - :rtype: SharedFolderChangeMembersInheritancePolicyType + :rtype: team_log.SharedFolderChangeMembersInheritancePolicyType """ if not self.is_shared_folder_change_members_inheritance_policy(): raise AttributeError("tag 'shared_folder_change_members_inheritance_policy' not set") @@ -25528,7 +25721,7 @@ def get_shared_folder_change_members_management_policy(self): Only call this if :meth:`is_shared_folder_change_members_management_policy` is true. - :rtype: SharedFolderChangeMembersManagementPolicyType + :rtype: team_log.SharedFolderChangeMembersManagementPolicyType """ if not self.is_shared_folder_change_members_management_policy(): raise AttributeError("tag 'shared_folder_change_members_management_policy' not set") @@ -25540,7 +25733,7 @@ def get_shared_folder_change_members_policy(self): Only call this if :meth:`is_shared_folder_change_members_policy` is true. - :rtype: SharedFolderChangeMembersPolicyType + :rtype: team_log.SharedFolderChangeMembersPolicyType """ if not self.is_shared_folder_change_members_policy(): raise AttributeError("tag 'shared_folder_change_members_policy' not set") @@ -25552,7 +25745,7 @@ def get_shared_folder_create(self): Only call this if :meth:`is_shared_folder_create` is true. - :rtype: SharedFolderCreateType + :rtype: team_log.SharedFolderCreateType """ if not self.is_shared_folder_create(): raise AttributeError("tag 'shared_folder_create' not set") @@ -25564,7 +25757,7 @@ def get_shared_folder_decline_invitation(self): Only call this if :meth:`is_shared_folder_decline_invitation` is true. - :rtype: SharedFolderDeclineInvitationType + :rtype: team_log.SharedFolderDeclineInvitationType """ if not self.is_shared_folder_decline_invitation(): raise AttributeError("tag 'shared_folder_decline_invitation' not set") @@ -25576,7 +25769,7 @@ def get_shared_folder_mount(self): Only call this if :meth:`is_shared_folder_mount` is true. - :rtype: SharedFolderMountType + :rtype: team_log.SharedFolderMountType """ if not self.is_shared_folder_mount(): raise AttributeError("tag 'shared_folder_mount' not set") @@ -25588,7 +25781,7 @@ def get_shared_folder_nest(self): Only call this if :meth:`is_shared_folder_nest` is true. - :rtype: SharedFolderNestType + :rtype: team_log.SharedFolderNestType """ if not self.is_shared_folder_nest(): raise AttributeError("tag 'shared_folder_nest' not set") @@ -25600,7 +25793,7 @@ def get_shared_folder_transfer_ownership(self): Only call this if :meth:`is_shared_folder_transfer_ownership` is true. - :rtype: SharedFolderTransferOwnershipType + :rtype: team_log.SharedFolderTransferOwnershipType """ if not self.is_shared_folder_transfer_ownership(): raise AttributeError("tag 'shared_folder_transfer_ownership' not set") @@ -25612,7 +25805,7 @@ def get_shared_folder_unmount(self): Only call this if :meth:`is_shared_folder_unmount` is true. - :rtype: SharedFolderUnmountType + :rtype: team_log.SharedFolderUnmountType """ if not self.is_shared_folder_unmount(): raise AttributeError("tag 'shared_folder_unmount' not set") @@ -25624,7 +25817,7 @@ def get_shared_link_add_expiry(self): Only call this if :meth:`is_shared_link_add_expiry` is true. - :rtype: SharedLinkAddExpiryType + :rtype: team_log.SharedLinkAddExpiryType """ if not self.is_shared_link_add_expiry(): raise AttributeError("tag 'shared_link_add_expiry' not set") @@ -25636,7 +25829,7 @@ def get_shared_link_change_expiry(self): Only call this if :meth:`is_shared_link_change_expiry` is true. - :rtype: SharedLinkChangeExpiryType + :rtype: team_log.SharedLinkChangeExpiryType """ if not self.is_shared_link_change_expiry(): raise AttributeError("tag 'shared_link_change_expiry' not set") @@ -25648,7 +25841,7 @@ def get_shared_link_change_visibility(self): Only call this if :meth:`is_shared_link_change_visibility` is true. - :rtype: SharedLinkChangeVisibilityType + :rtype: team_log.SharedLinkChangeVisibilityType """ if not self.is_shared_link_change_visibility(): raise AttributeError("tag 'shared_link_change_visibility' not set") @@ -25660,7 +25853,7 @@ def get_shared_link_copy(self): Only call this if :meth:`is_shared_link_copy` is true. - :rtype: SharedLinkCopyType + :rtype: team_log.SharedLinkCopyType """ if not self.is_shared_link_copy(): raise AttributeError("tag 'shared_link_copy' not set") @@ -25672,7 +25865,7 @@ def get_shared_link_create(self): Only call this if :meth:`is_shared_link_create` is true. - :rtype: SharedLinkCreateType + :rtype: team_log.SharedLinkCreateType """ if not self.is_shared_link_create(): raise AttributeError("tag 'shared_link_create' not set") @@ -25684,7 +25877,7 @@ def get_shared_link_disable(self): Only call this if :meth:`is_shared_link_disable` is true. - :rtype: SharedLinkDisableType + :rtype: team_log.SharedLinkDisableType """ if not self.is_shared_link_disable(): raise AttributeError("tag 'shared_link_disable' not set") @@ -25696,7 +25889,7 @@ def get_shared_link_download(self): Only call this if :meth:`is_shared_link_download` is true. - :rtype: SharedLinkDownloadType + :rtype: team_log.SharedLinkDownloadType """ if not self.is_shared_link_download(): raise AttributeError("tag 'shared_link_download' not set") @@ -25708,7 +25901,7 @@ def get_shared_link_remove_expiry(self): Only call this if :meth:`is_shared_link_remove_expiry` is true. - :rtype: SharedLinkRemoveExpiryType + :rtype: team_log.SharedLinkRemoveExpiryType """ if not self.is_shared_link_remove_expiry(): raise AttributeError("tag 'shared_link_remove_expiry' not set") @@ -25720,7 +25913,7 @@ def get_shared_link_share(self): Only call this if :meth:`is_shared_link_share` is true. - :rtype: SharedLinkShareType + :rtype: team_log.SharedLinkShareType """ if not self.is_shared_link_share(): raise AttributeError("tag 'shared_link_share' not set") @@ -25732,7 +25925,7 @@ def get_shared_link_view(self): Only call this if :meth:`is_shared_link_view` is true. - :rtype: SharedLinkViewType + :rtype: team_log.SharedLinkViewType """ if not self.is_shared_link_view(): raise AttributeError("tag 'shared_link_view' not set") @@ -25744,7 +25937,7 @@ def get_shared_note_opened(self): Only call this if :meth:`is_shared_note_opened` is true. - :rtype: SharedNoteOpenedType + :rtype: team_log.SharedNoteOpenedType """ if not self.is_shared_note_opened(): raise AttributeError("tag 'shared_note_opened' not set") @@ -25756,7 +25949,7 @@ def get_shmodel_group_share(self): Only call this if :meth:`is_shmodel_group_share` is true. - :rtype: ShmodelGroupShareType + :rtype: team_log.ShmodelGroupShareType """ if not self.is_shmodel_group_share(): raise AttributeError("tag 'shmodel_group_share' not set") @@ -25768,7 +25961,7 @@ def get_showcase_access_granted(self): Only call this if :meth:`is_showcase_access_granted` is true. - :rtype: ShowcaseAccessGrantedType + :rtype: team_log.ShowcaseAccessGrantedType """ if not self.is_showcase_access_granted(): raise AttributeError("tag 'showcase_access_granted' not set") @@ -25780,7 +25973,7 @@ def get_showcase_add_member(self): Only call this if :meth:`is_showcase_add_member` is true. - :rtype: ShowcaseAddMemberType + :rtype: team_log.ShowcaseAddMemberType """ if not self.is_showcase_add_member(): raise AttributeError("tag 'showcase_add_member' not set") @@ -25792,7 +25985,7 @@ def get_showcase_archived(self): Only call this if :meth:`is_showcase_archived` is true. - :rtype: ShowcaseArchivedType + :rtype: team_log.ShowcaseArchivedType """ if not self.is_showcase_archived(): raise AttributeError("tag 'showcase_archived' not set") @@ -25804,7 +25997,7 @@ def get_showcase_created(self): Only call this if :meth:`is_showcase_created` is true. - :rtype: ShowcaseCreatedType + :rtype: team_log.ShowcaseCreatedType """ if not self.is_showcase_created(): raise AttributeError("tag 'showcase_created' not set") @@ -25816,7 +26009,7 @@ def get_showcase_delete_comment(self): Only call this if :meth:`is_showcase_delete_comment` is true. - :rtype: ShowcaseDeleteCommentType + :rtype: team_log.ShowcaseDeleteCommentType """ if not self.is_showcase_delete_comment(): raise AttributeError("tag 'showcase_delete_comment' not set") @@ -25828,7 +26021,7 @@ def get_showcase_edited(self): Only call this if :meth:`is_showcase_edited` is true. - :rtype: ShowcaseEditedType + :rtype: team_log.ShowcaseEditedType """ if not self.is_showcase_edited(): raise AttributeError("tag 'showcase_edited' not set") @@ -25840,7 +26033,7 @@ def get_showcase_edit_comment(self): Only call this if :meth:`is_showcase_edit_comment` is true. - :rtype: ShowcaseEditCommentType + :rtype: team_log.ShowcaseEditCommentType """ if not self.is_showcase_edit_comment(): raise AttributeError("tag 'showcase_edit_comment' not set") @@ -25852,7 +26045,7 @@ def get_showcase_file_added(self): Only call this if :meth:`is_showcase_file_added` is true. - :rtype: ShowcaseFileAddedType + :rtype: team_log.ShowcaseFileAddedType """ if not self.is_showcase_file_added(): raise AttributeError("tag 'showcase_file_added' not set") @@ -25864,7 +26057,7 @@ def get_showcase_file_download(self): Only call this if :meth:`is_showcase_file_download` is true. - :rtype: ShowcaseFileDownloadType + :rtype: team_log.ShowcaseFileDownloadType """ if not self.is_showcase_file_download(): raise AttributeError("tag 'showcase_file_download' not set") @@ -25876,7 +26069,7 @@ def get_showcase_file_removed(self): Only call this if :meth:`is_showcase_file_removed` is true. - :rtype: ShowcaseFileRemovedType + :rtype: team_log.ShowcaseFileRemovedType """ if not self.is_showcase_file_removed(): raise AttributeError("tag 'showcase_file_removed' not set") @@ -25888,7 +26081,7 @@ def get_showcase_file_view(self): Only call this if :meth:`is_showcase_file_view` is true. - :rtype: ShowcaseFileViewType + :rtype: team_log.ShowcaseFileViewType """ if not self.is_showcase_file_view(): raise AttributeError("tag 'showcase_file_view' not set") @@ -25900,7 +26093,7 @@ def get_showcase_permanently_deleted(self): Only call this if :meth:`is_showcase_permanently_deleted` is true. - :rtype: ShowcasePermanentlyDeletedType + :rtype: team_log.ShowcasePermanentlyDeletedType """ if not self.is_showcase_permanently_deleted(): raise AttributeError("tag 'showcase_permanently_deleted' not set") @@ -25912,7 +26105,7 @@ def get_showcase_post_comment(self): Only call this if :meth:`is_showcase_post_comment` is true. - :rtype: ShowcasePostCommentType + :rtype: team_log.ShowcasePostCommentType """ if not self.is_showcase_post_comment(): raise AttributeError("tag 'showcase_post_comment' not set") @@ -25924,7 +26117,7 @@ def get_showcase_remove_member(self): Only call this if :meth:`is_showcase_remove_member` is true. - :rtype: ShowcaseRemoveMemberType + :rtype: team_log.ShowcaseRemoveMemberType """ if not self.is_showcase_remove_member(): raise AttributeError("tag 'showcase_remove_member' not set") @@ -25936,7 +26129,7 @@ def get_showcase_renamed(self): Only call this if :meth:`is_showcase_renamed` is true. - :rtype: ShowcaseRenamedType + :rtype: team_log.ShowcaseRenamedType """ if not self.is_showcase_renamed(): raise AttributeError("tag 'showcase_renamed' not set") @@ -25948,7 +26141,7 @@ def get_showcase_request_access(self): Only call this if :meth:`is_showcase_request_access` is true. - :rtype: ShowcaseRequestAccessType + :rtype: team_log.ShowcaseRequestAccessType """ if not self.is_showcase_request_access(): raise AttributeError("tag 'showcase_request_access' not set") @@ -25960,7 +26153,7 @@ def get_showcase_resolve_comment(self): Only call this if :meth:`is_showcase_resolve_comment` is true. - :rtype: ShowcaseResolveCommentType + :rtype: team_log.ShowcaseResolveCommentType """ if not self.is_showcase_resolve_comment(): raise AttributeError("tag 'showcase_resolve_comment' not set") @@ -25972,7 +26165,7 @@ def get_showcase_restored(self): Only call this if :meth:`is_showcase_restored` is true. - :rtype: ShowcaseRestoredType + :rtype: team_log.ShowcaseRestoredType """ if not self.is_showcase_restored(): raise AttributeError("tag 'showcase_restored' not set") @@ -25984,7 +26177,7 @@ def get_showcase_trashed(self): Only call this if :meth:`is_showcase_trashed` is true. - :rtype: ShowcaseTrashedType + :rtype: team_log.ShowcaseTrashedType """ if not self.is_showcase_trashed(): raise AttributeError("tag 'showcase_trashed' not set") @@ -25997,7 +26190,7 @@ def get_showcase_trashed_deprecated(self): Only call this if :meth:`is_showcase_trashed_deprecated` is true. - :rtype: ShowcaseTrashedDeprecatedType + :rtype: team_log.ShowcaseTrashedDeprecatedType """ if not self.is_showcase_trashed_deprecated(): raise AttributeError("tag 'showcase_trashed_deprecated' not set") @@ -26009,7 +26202,7 @@ def get_showcase_unresolve_comment(self): Only call this if :meth:`is_showcase_unresolve_comment` is true. - :rtype: ShowcaseUnresolveCommentType + :rtype: team_log.ShowcaseUnresolveCommentType """ if not self.is_showcase_unresolve_comment(): raise AttributeError("tag 'showcase_unresolve_comment' not set") @@ -26021,7 +26214,7 @@ def get_showcase_untrashed(self): Only call this if :meth:`is_showcase_untrashed` is true. - :rtype: ShowcaseUntrashedType + :rtype: team_log.ShowcaseUntrashedType """ if not self.is_showcase_untrashed(): raise AttributeError("tag 'showcase_untrashed' not set") @@ -26034,7 +26227,7 @@ def get_showcase_untrashed_deprecated(self): Only call this if :meth:`is_showcase_untrashed_deprecated` is true. - :rtype: ShowcaseUntrashedDeprecatedType + :rtype: team_log.ShowcaseUntrashedDeprecatedType """ if not self.is_showcase_untrashed_deprecated(): raise AttributeError("tag 'showcase_untrashed_deprecated' not set") @@ -26046,7 +26239,7 @@ def get_showcase_view(self): Only call this if :meth:`is_showcase_view` is true. - :rtype: ShowcaseViewType + :rtype: team_log.ShowcaseViewType """ if not self.is_showcase_view(): raise AttributeError("tag 'showcase_view' not set") @@ -26058,7 +26251,7 @@ def get_sso_add_cert(self): Only call this if :meth:`is_sso_add_cert` is true. - :rtype: SsoAddCertType + :rtype: team_log.SsoAddCertType """ if not self.is_sso_add_cert(): raise AttributeError("tag 'sso_add_cert' not set") @@ -26070,7 +26263,7 @@ def get_sso_add_login_url(self): Only call this if :meth:`is_sso_add_login_url` is true. - :rtype: SsoAddLoginUrlType + :rtype: team_log.SsoAddLoginUrlType """ if not self.is_sso_add_login_url(): raise AttributeError("tag 'sso_add_login_url' not set") @@ -26082,7 +26275,7 @@ def get_sso_add_logout_url(self): Only call this if :meth:`is_sso_add_logout_url` is true. - :rtype: SsoAddLogoutUrlType + :rtype: team_log.SsoAddLogoutUrlType """ if not self.is_sso_add_logout_url(): raise AttributeError("tag 'sso_add_logout_url' not set") @@ -26094,7 +26287,7 @@ def get_sso_change_cert(self): Only call this if :meth:`is_sso_change_cert` is true. - :rtype: SsoChangeCertType + :rtype: team_log.SsoChangeCertType """ if not self.is_sso_change_cert(): raise AttributeError("tag 'sso_change_cert' not set") @@ -26106,7 +26299,7 @@ def get_sso_change_login_url(self): Only call this if :meth:`is_sso_change_login_url` is true. - :rtype: SsoChangeLoginUrlType + :rtype: team_log.SsoChangeLoginUrlType """ if not self.is_sso_change_login_url(): raise AttributeError("tag 'sso_change_login_url' not set") @@ -26118,7 +26311,7 @@ def get_sso_change_logout_url(self): Only call this if :meth:`is_sso_change_logout_url` is true. - :rtype: SsoChangeLogoutUrlType + :rtype: team_log.SsoChangeLogoutUrlType """ if not self.is_sso_change_logout_url(): raise AttributeError("tag 'sso_change_logout_url' not set") @@ -26130,7 +26323,7 @@ def get_sso_change_saml_identity_mode(self): Only call this if :meth:`is_sso_change_saml_identity_mode` is true. - :rtype: SsoChangeSamlIdentityModeType + :rtype: team_log.SsoChangeSamlIdentityModeType """ if not self.is_sso_change_saml_identity_mode(): raise AttributeError("tag 'sso_change_saml_identity_mode' not set") @@ -26142,7 +26335,7 @@ def get_sso_remove_cert(self): Only call this if :meth:`is_sso_remove_cert` is true. - :rtype: SsoRemoveCertType + :rtype: team_log.SsoRemoveCertType """ if not self.is_sso_remove_cert(): raise AttributeError("tag 'sso_remove_cert' not set") @@ -26154,7 +26347,7 @@ def get_sso_remove_login_url(self): Only call this if :meth:`is_sso_remove_login_url` is true. - :rtype: SsoRemoveLoginUrlType + :rtype: team_log.SsoRemoveLoginUrlType """ if not self.is_sso_remove_login_url(): raise AttributeError("tag 'sso_remove_login_url' not set") @@ -26166,7 +26359,7 @@ def get_sso_remove_logout_url(self): Only call this if :meth:`is_sso_remove_logout_url` is true. - :rtype: SsoRemoveLogoutUrlType + :rtype: team_log.SsoRemoveLogoutUrlType """ if not self.is_sso_remove_logout_url(): raise AttributeError("tag 'sso_remove_logout_url' not set") @@ -26178,7 +26371,7 @@ def get_team_folder_change_status(self): Only call this if :meth:`is_team_folder_change_status` is true. - :rtype: TeamFolderChangeStatusType + :rtype: team_log.TeamFolderChangeStatusType """ if not self.is_team_folder_change_status(): raise AttributeError("tag 'team_folder_change_status' not set") @@ -26190,7 +26383,7 @@ def get_team_folder_create(self): Only call this if :meth:`is_team_folder_create` is true. - :rtype: TeamFolderCreateType + :rtype: team_log.TeamFolderCreateType """ if not self.is_team_folder_create(): raise AttributeError("tag 'team_folder_create' not set") @@ -26202,7 +26395,7 @@ def get_team_folder_downgrade(self): Only call this if :meth:`is_team_folder_downgrade` is true. - :rtype: TeamFolderDowngradeType + :rtype: team_log.TeamFolderDowngradeType """ if not self.is_team_folder_downgrade(): raise AttributeError("tag 'team_folder_downgrade' not set") @@ -26214,7 +26407,7 @@ def get_team_folder_permanently_delete(self): Only call this if :meth:`is_team_folder_permanently_delete` is true. - :rtype: TeamFolderPermanentlyDeleteType + :rtype: team_log.TeamFolderPermanentlyDeleteType """ if not self.is_team_folder_permanently_delete(): raise AttributeError("tag 'team_folder_permanently_delete' not set") @@ -26226,7 +26419,7 @@ def get_team_folder_rename(self): Only call this if :meth:`is_team_folder_rename` is true. - :rtype: TeamFolderRenameType + :rtype: team_log.TeamFolderRenameType """ if not self.is_team_folder_rename(): raise AttributeError("tag 'team_folder_rename' not set") @@ -26238,7 +26431,7 @@ def get_team_selective_sync_settings_changed(self): Only call this if :meth:`is_team_selective_sync_settings_changed` is true. - :rtype: TeamSelectiveSyncSettingsChangedType + :rtype: team_log.TeamSelectiveSyncSettingsChangedType """ if not self.is_team_selective_sync_settings_changed(): raise AttributeError("tag 'team_selective_sync_settings_changed' not set") @@ -26250,7 +26443,7 @@ def get_account_capture_change_policy(self): Only call this if :meth:`is_account_capture_change_policy` is true. - :rtype: AccountCaptureChangePolicyType + :rtype: team_log.AccountCaptureChangePolicyType """ if not self.is_account_capture_change_policy(): raise AttributeError("tag 'account_capture_change_policy' not set") @@ -26262,7 +26455,7 @@ def get_allow_download_disabled(self): Only call this if :meth:`is_allow_download_disabled` is true. - :rtype: AllowDownloadDisabledType + :rtype: team_log.AllowDownloadDisabledType """ if not self.is_allow_download_disabled(): raise AttributeError("tag 'allow_download_disabled' not set") @@ -26274,7 +26467,7 @@ def get_allow_download_enabled(self): Only call this if :meth:`is_allow_download_enabled` is true. - :rtype: AllowDownloadEnabledType + :rtype: team_log.AllowDownloadEnabledType """ if not self.is_allow_download_enabled(): raise AttributeError("tag 'allow_download_enabled' not set") @@ -26286,7 +26479,7 @@ def get_camera_uploads_policy_changed(self): Only call this if :meth:`is_camera_uploads_policy_changed` is true. - :rtype: CameraUploadsPolicyChangedType + :rtype: team_log.CameraUploadsPolicyChangedType """ if not self.is_camera_uploads_policy_changed(): raise AttributeError("tag 'camera_uploads_policy_changed' not set") @@ -26299,7 +26492,7 @@ def get_data_placement_restriction_change_policy(self): Only call this if :meth:`is_data_placement_restriction_change_policy` is true. - :rtype: DataPlacementRestrictionChangePolicyType + :rtype: team_log.DataPlacementRestrictionChangePolicyType """ if not self.is_data_placement_restriction_change_policy(): raise AttributeError("tag 'data_placement_restriction_change_policy' not set") @@ -26312,7 +26505,7 @@ def get_data_placement_restriction_satisfy_policy(self): Only call this if :meth:`is_data_placement_restriction_satisfy_policy` is true. - :rtype: DataPlacementRestrictionSatisfyPolicyType + :rtype: team_log.DataPlacementRestrictionSatisfyPolicyType """ if not self.is_data_placement_restriction_satisfy_policy(): raise AttributeError("tag 'data_placement_restriction_satisfy_policy' not set") @@ -26325,7 +26518,7 @@ def get_device_approvals_change_desktop_policy(self): Only call this if :meth:`is_device_approvals_change_desktop_policy` is true. - :rtype: DeviceApprovalsChangeDesktopPolicyType + :rtype: team_log.DeviceApprovalsChangeDesktopPolicyType """ if not self.is_device_approvals_change_desktop_policy(): raise AttributeError("tag 'device_approvals_change_desktop_policy' not set") @@ -26338,7 +26531,7 @@ def get_device_approvals_change_mobile_policy(self): Only call this if :meth:`is_device_approvals_change_mobile_policy` is true. - :rtype: DeviceApprovalsChangeMobilePolicyType + :rtype: team_log.DeviceApprovalsChangeMobilePolicyType """ if not self.is_device_approvals_change_mobile_policy(): raise AttributeError("tag 'device_approvals_change_mobile_policy' not set") @@ -26351,7 +26544,7 @@ def get_device_approvals_change_overage_action(self): Only call this if :meth:`is_device_approvals_change_overage_action` is true. - :rtype: DeviceApprovalsChangeOverageActionType + :rtype: team_log.DeviceApprovalsChangeOverageActionType """ if not self.is_device_approvals_change_overage_action(): raise AttributeError("tag 'device_approvals_change_overage_action' not set") @@ -26364,7 +26557,7 @@ def get_device_approvals_change_unlink_action(self): Only call this if :meth:`is_device_approvals_change_unlink_action` is true. - :rtype: DeviceApprovalsChangeUnlinkActionType + :rtype: team_log.DeviceApprovalsChangeUnlinkActionType """ if not self.is_device_approvals_change_unlink_action(): raise AttributeError("tag 'device_approvals_change_unlink_action' not set") @@ -26376,7 +26569,7 @@ def get_directory_restrictions_add_members(self): Only call this if :meth:`is_directory_restrictions_add_members` is true. - :rtype: DirectoryRestrictionsAddMembersType + :rtype: team_log.DirectoryRestrictionsAddMembersType """ if not self.is_directory_restrictions_add_members(): raise AttributeError("tag 'directory_restrictions_add_members' not set") @@ -26388,7 +26581,7 @@ def get_directory_restrictions_remove_members(self): Only call this if :meth:`is_directory_restrictions_remove_members` is true. - :rtype: DirectoryRestrictionsRemoveMembersType + :rtype: team_log.DirectoryRestrictionsRemoveMembersType """ if not self.is_directory_restrictions_remove_members(): raise AttributeError("tag 'directory_restrictions_remove_members' not set") @@ -26400,7 +26593,7 @@ def get_emm_add_exception(self): Only call this if :meth:`is_emm_add_exception` is true. - :rtype: EmmAddExceptionType + :rtype: team_log.EmmAddExceptionType """ if not self.is_emm_add_exception(): raise AttributeError("tag 'emm_add_exception' not set") @@ -26413,7 +26606,7 @@ def get_emm_change_policy(self): Only call this if :meth:`is_emm_change_policy` is true. - :rtype: EmmChangePolicyType + :rtype: team_log.EmmChangePolicyType """ if not self.is_emm_change_policy(): raise AttributeError("tag 'emm_change_policy' not set") @@ -26425,7 +26618,7 @@ def get_emm_remove_exception(self): Only call this if :meth:`is_emm_remove_exception` is true. - :rtype: EmmRemoveExceptionType + :rtype: team_log.EmmRemoveExceptionType """ if not self.is_emm_remove_exception(): raise AttributeError("tag 'emm_remove_exception' not set") @@ -26437,7 +26630,7 @@ def get_extended_version_history_change_policy(self): Only call this if :meth:`is_extended_version_history_change_policy` is true. - :rtype: ExtendedVersionHistoryChangePolicyType + :rtype: team_log.ExtendedVersionHistoryChangePolicyType """ if not self.is_extended_version_history_change_policy(): raise AttributeError("tag 'extended_version_history_change_policy' not set") @@ -26449,7 +26642,7 @@ def get_file_comments_change_policy(self): Only call this if :meth:`is_file_comments_change_policy` is true. - :rtype: FileCommentsChangePolicyType + :rtype: team_log.FileCommentsChangePolicyType """ if not self.is_file_comments_change_policy(): raise AttributeError("tag 'file_comments_change_policy' not set") @@ -26461,7 +26654,7 @@ def get_file_requests_change_policy(self): Only call this if :meth:`is_file_requests_change_policy` is true. - :rtype: FileRequestsChangePolicyType + :rtype: team_log.FileRequestsChangePolicyType """ if not self.is_file_requests_change_policy(): raise AttributeError("tag 'file_requests_change_policy' not set") @@ -26474,7 +26667,7 @@ def get_file_requests_emails_enabled(self): Only call this if :meth:`is_file_requests_emails_enabled` is true. - :rtype: FileRequestsEmailsEnabledType + :rtype: team_log.FileRequestsEmailsEnabledType """ if not self.is_file_requests_emails_enabled(): raise AttributeError("tag 'file_requests_emails_enabled' not set") @@ -26487,7 +26680,7 @@ def get_file_requests_emails_restricted_to_team_only(self): Only call this if :meth:`is_file_requests_emails_restricted_to_team_only` is true. - :rtype: FileRequestsEmailsRestrictedToTeamOnlyType + :rtype: team_log.FileRequestsEmailsRestrictedToTeamOnlyType """ if not self.is_file_requests_emails_restricted_to_team_only(): raise AttributeError("tag 'file_requests_emails_restricted_to_team_only' not set") @@ -26499,7 +26692,7 @@ def get_google_sso_change_policy(self): Only call this if :meth:`is_google_sso_change_policy` is true. - :rtype: GoogleSsoChangePolicyType + :rtype: team_log.GoogleSsoChangePolicyType """ if not self.is_google_sso_change_policy(): raise AttributeError("tag 'google_sso_change_policy' not set") @@ -26511,7 +26704,7 @@ def get_group_user_management_change_policy(self): Only call this if :meth:`is_group_user_management_change_policy` is true. - :rtype: GroupUserManagementChangePolicyType + :rtype: team_log.GroupUserManagementChangePolicyType """ if not self.is_group_user_management_change_policy(): raise AttributeError("tag 'group_user_management_change_policy' not set") @@ -26523,7 +26716,7 @@ def get_member_requests_change_policy(self): Only call this if :meth:`is_member_requests_change_policy` is true. - :rtype: MemberRequestsChangePolicyType + :rtype: team_log.MemberRequestsChangePolicyType """ if not self.is_member_requests_change_policy(): raise AttributeError("tag 'member_requests_change_policy' not set") @@ -26535,7 +26728,7 @@ def get_member_space_limits_add_exception(self): Only call this if :meth:`is_member_space_limits_add_exception` is true. - :rtype: MemberSpaceLimitsAddExceptionType + :rtype: team_log.MemberSpaceLimitsAddExceptionType """ if not self.is_member_space_limits_add_exception(): raise AttributeError("tag 'member_space_limits_add_exception' not set") @@ -26547,7 +26740,7 @@ def get_member_space_limits_change_caps_type_policy(self): Only call this if :meth:`is_member_space_limits_change_caps_type_policy` is true. - :rtype: MemberSpaceLimitsChangeCapsTypePolicyType + :rtype: team_log.MemberSpaceLimitsChangeCapsTypePolicyType """ if not self.is_member_space_limits_change_caps_type_policy(): raise AttributeError("tag 'member_space_limits_change_caps_type_policy' not set") @@ -26559,7 +26752,7 @@ def get_member_space_limits_change_policy(self): Only call this if :meth:`is_member_space_limits_change_policy` is true. - :rtype: MemberSpaceLimitsChangePolicyType + :rtype: team_log.MemberSpaceLimitsChangePolicyType """ if not self.is_member_space_limits_change_policy(): raise AttributeError("tag 'member_space_limits_change_policy' not set") @@ -26571,7 +26764,7 @@ def get_member_space_limits_remove_exception(self): Only call this if :meth:`is_member_space_limits_remove_exception` is true. - :rtype: MemberSpaceLimitsRemoveExceptionType + :rtype: team_log.MemberSpaceLimitsRemoveExceptionType """ if not self.is_member_space_limits_remove_exception(): raise AttributeError("tag 'member_space_limits_remove_exception' not set") @@ -26584,7 +26777,7 @@ def get_member_suggestions_change_policy(self): Only call this if :meth:`is_member_suggestions_change_policy` is true. - :rtype: MemberSuggestionsChangePolicyType + :rtype: team_log.MemberSuggestionsChangePolicyType """ if not self.is_member_suggestions_change_policy(): raise AttributeError("tag 'member_suggestions_change_policy' not set") @@ -26596,7 +26789,7 @@ def get_microsoft_office_addin_change_policy(self): Only call this if :meth:`is_microsoft_office_addin_change_policy` is true. - :rtype: MicrosoftOfficeAddinChangePolicyType + :rtype: team_log.MicrosoftOfficeAddinChangePolicyType """ if not self.is_microsoft_office_addin_change_policy(): raise AttributeError("tag 'microsoft_office_addin_change_policy' not set") @@ -26608,7 +26801,7 @@ def get_network_control_change_policy(self): Only call this if :meth:`is_network_control_change_policy` is true. - :rtype: NetworkControlChangePolicyType + :rtype: team_log.NetworkControlChangePolicyType """ if not self.is_network_control_change_policy(): raise AttributeError("tag 'network_control_change_policy' not set") @@ -26621,7 +26814,7 @@ def get_paper_change_deployment_policy(self): Only call this if :meth:`is_paper_change_deployment_policy` is true. - :rtype: PaperChangeDeploymentPolicyType + :rtype: team_log.PaperChangeDeploymentPolicyType """ if not self.is_paper_change_deployment_policy(): raise AttributeError("tag 'paper_change_deployment_policy' not set") @@ -26634,7 +26827,7 @@ def get_paper_change_member_link_policy(self): Only call this if :meth:`is_paper_change_member_link_policy` is true. - :rtype: PaperChangeMemberLinkPolicyType + :rtype: team_log.PaperChangeMemberLinkPolicyType """ if not self.is_paper_change_member_link_policy(): raise AttributeError("tag 'paper_change_member_link_policy' not set") @@ -26648,7 +26841,7 @@ def get_paper_change_member_policy(self): Only call this if :meth:`is_paper_change_member_policy` is true. - :rtype: PaperChangeMemberPolicyType + :rtype: team_log.PaperChangeMemberPolicyType """ if not self.is_paper_change_member_policy(): raise AttributeError("tag 'paper_change_member_policy' not set") @@ -26660,7 +26853,7 @@ def get_paper_change_policy(self): Only call this if :meth:`is_paper_change_policy` is true. - :rtype: PaperChangePolicyType + :rtype: team_log.PaperChangePolicyType """ if not self.is_paper_change_policy(): raise AttributeError("tag 'paper_change_policy' not set") @@ -26672,7 +26865,7 @@ def get_paper_enabled_users_group_addition(self): Only call this if :meth:`is_paper_enabled_users_group_addition` is true. - :rtype: PaperEnabledUsersGroupAdditionType + :rtype: team_log.PaperEnabledUsersGroupAdditionType """ if not self.is_paper_enabled_users_group_addition(): raise AttributeError("tag 'paper_enabled_users_group_addition' not set") @@ -26684,7 +26877,7 @@ def get_paper_enabled_users_group_removal(self): Only call this if :meth:`is_paper_enabled_users_group_removal` is true. - :rtype: PaperEnabledUsersGroupRemovalType + :rtype: team_log.PaperEnabledUsersGroupRemovalType """ if not self.is_paper_enabled_users_group_removal(): raise AttributeError("tag 'paper_enabled_users_group_removal' not set") @@ -26697,7 +26890,7 @@ def get_permanent_delete_change_policy(self): Only call this if :meth:`is_permanent_delete_change_policy` is true. - :rtype: PermanentDeleteChangePolicyType + :rtype: team_log.PermanentDeleteChangePolicyType """ if not self.is_permanent_delete_change_policy(): raise AttributeError("tag 'permanent_delete_change_policy' not set") @@ -26710,7 +26903,7 @@ def get_sharing_change_folder_join_policy(self): Only call this if :meth:`is_sharing_change_folder_join_policy` is true. - :rtype: SharingChangeFolderJoinPolicyType + :rtype: team_log.SharingChangeFolderJoinPolicyType """ if not self.is_sharing_change_folder_join_policy(): raise AttributeError("tag 'sharing_change_folder_join_policy' not set") @@ -26723,7 +26916,7 @@ def get_sharing_change_link_policy(self): Only call this if :meth:`is_sharing_change_link_policy` is true. - :rtype: SharingChangeLinkPolicyType + :rtype: team_log.SharingChangeLinkPolicyType """ if not self.is_sharing_change_link_policy(): raise AttributeError("tag 'sharing_change_link_policy' not set") @@ -26736,7 +26929,7 @@ def get_sharing_change_member_policy(self): Only call this if :meth:`is_sharing_change_member_policy` is true. - :rtype: SharingChangeMemberPolicyType + :rtype: team_log.SharingChangeMemberPolicyType """ if not self.is_sharing_change_member_policy(): raise AttributeError("tag 'sharing_change_member_policy' not set") @@ -26749,7 +26942,7 @@ def get_showcase_change_download_policy(self): Only call this if :meth:`is_showcase_change_download_policy` is true. - :rtype: ShowcaseChangeDownloadPolicyType + :rtype: team_log.ShowcaseChangeDownloadPolicyType """ if not self.is_showcase_change_download_policy(): raise AttributeError("tag 'showcase_change_download_policy' not set") @@ -26761,7 +26954,7 @@ def get_showcase_change_enabled_policy(self): Only call this if :meth:`is_showcase_change_enabled_policy` is true. - :rtype: ShowcaseChangeEnabledPolicyType + :rtype: team_log.ShowcaseChangeEnabledPolicyType """ if not self.is_showcase_change_enabled_policy(): raise AttributeError("tag 'showcase_change_enabled_policy' not set") @@ -26774,7 +26967,7 @@ def get_showcase_change_external_sharing_policy(self): Only call this if :meth:`is_showcase_change_external_sharing_policy` is true. - :rtype: ShowcaseChangeExternalSharingPolicyType + :rtype: team_log.ShowcaseChangeExternalSharingPolicyType """ if not self.is_showcase_change_external_sharing_policy(): raise AttributeError("tag 'showcase_change_external_sharing_policy' not set") @@ -26786,7 +26979,7 @@ def get_smart_sync_change_policy(self): Only call this if :meth:`is_smart_sync_change_policy` is true. - :rtype: SmartSyncChangePolicyType + :rtype: team_log.SmartSyncChangePolicyType """ if not self.is_smart_sync_change_policy(): raise AttributeError("tag 'smart_sync_change_policy' not set") @@ -26798,7 +26991,7 @@ def get_smart_sync_not_opt_out(self): Only call this if :meth:`is_smart_sync_not_opt_out` is true. - :rtype: SmartSyncNotOptOutType + :rtype: team_log.SmartSyncNotOptOutType """ if not self.is_smart_sync_not_opt_out(): raise AttributeError("tag 'smart_sync_not_opt_out' not set") @@ -26810,7 +27003,7 @@ def get_smart_sync_opt_out(self): Only call this if :meth:`is_smart_sync_opt_out` is true. - :rtype: SmartSyncOptOutType + :rtype: team_log.SmartSyncOptOutType """ if not self.is_smart_sync_opt_out(): raise AttributeError("tag 'smart_sync_opt_out' not set") @@ -26822,7 +27015,7 @@ def get_sso_change_policy(self): Only call this if :meth:`is_sso_change_policy` is true. - :rtype: SsoChangePolicyType + :rtype: team_log.SsoChangePolicyType """ if not self.is_sso_change_policy(): raise AttributeError("tag 'sso_change_policy' not set") @@ -26834,7 +27027,7 @@ def get_team_selective_sync_policy_changed(self): Only call this if :meth:`is_team_selective_sync_policy_changed` is true. - :rtype: TeamSelectiveSyncPolicyChangedType + :rtype: team_log.TeamSelectiveSyncPolicyChangedType """ if not self.is_team_selective_sync_policy_changed(): raise AttributeError("tag 'team_selective_sync_policy_changed' not set") @@ -26846,7 +27039,7 @@ def get_tfa_change_policy(self): Only call this if :meth:`is_tfa_change_policy` is true. - :rtype: TfaChangePolicyType + :rtype: team_log.TfaChangePolicyType """ if not self.is_tfa_change_policy(): raise AttributeError("tag 'tfa_change_policy' not set") @@ -26859,7 +27052,7 @@ def get_two_account_change_policy(self): Only call this if :meth:`is_two_account_change_policy` is true. - :rtype: TwoAccountChangePolicyType + :rtype: team_log.TwoAccountChangePolicyType """ if not self.is_two_account_change_policy(): raise AttributeError("tag 'two_account_change_policy' not set") @@ -26871,7 +27064,7 @@ def get_viewer_info_policy_changed(self): Only call this if :meth:`is_viewer_info_policy_changed` is true. - :rtype: ViewerInfoPolicyChangedType + :rtype: team_log.ViewerInfoPolicyChangedType """ if not self.is_viewer_info_policy_changed(): raise AttributeError("tag 'viewer_info_policy_changed' not set") @@ -26884,7 +27077,7 @@ def get_web_sessions_change_fixed_length_policy(self): Only call this if :meth:`is_web_sessions_change_fixed_length_policy` is true. - :rtype: WebSessionsChangeFixedLengthPolicyType + :rtype: team_log.WebSessionsChangeFixedLengthPolicyType """ if not self.is_web_sessions_change_fixed_length_policy(): raise AttributeError("tag 'web_sessions_change_fixed_length_policy' not set") @@ -26897,7 +27090,7 @@ def get_web_sessions_change_idle_length_policy(self): Only call this if :meth:`is_web_sessions_change_idle_length_policy` is true. - :rtype: WebSessionsChangeIdleLengthPolicyType + :rtype: team_log.WebSessionsChangeIdleLengthPolicyType """ if not self.is_web_sessions_change_idle_length_policy(): raise AttributeError("tag 'web_sessions_change_idle_length_policy' not set") @@ -26909,7 +27102,7 @@ def get_team_merge_from(self): Only call this if :meth:`is_team_merge_from` is true. - :rtype: TeamMergeFromType + :rtype: team_log.TeamMergeFromType """ if not self.is_team_merge_from(): raise AttributeError("tag 'team_merge_from' not set") @@ -26921,7 +27114,7 @@ def get_team_merge_to(self): Only call this if :meth:`is_team_merge_to` is true. - :rtype: TeamMergeToType + :rtype: team_log.TeamMergeToType """ if not self.is_team_merge_to(): raise AttributeError("tag 'team_merge_to' not set") @@ -26933,7 +27126,7 @@ def get_team_profile_add_logo(self): Only call this if :meth:`is_team_profile_add_logo` is true. - :rtype: TeamProfileAddLogoType + :rtype: team_log.TeamProfileAddLogoType """ if not self.is_team_profile_add_logo(): raise AttributeError("tag 'team_profile_add_logo' not set") @@ -26945,7 +27138,7 @@ def get_team_profile_change_default_language(self): Only call this if :meth:`is_team_profile_change_default_language` is true. - :rtype: TeamProfileChangeDefaultLanguageType + :rtype: team_log.TeamProfileChangeDefaultLanguageType """ if not self.is_team_profile_change_default_language(): raise AttributeError("tag 'team_profile_change_default_language' not set") @@ -26957,7 +27150,7 @@ def get_team_profile_change_logo(self): Only call this if :meth:`is_team_profile_change_logo` is true. - :rtype: TeamProfileChangeLogoType + :rtype: team_log.TeamProfileChangeLogoType """ if not self.is_team_profile_change_logo(): raise AttributeError("tag 'team_profile_change_logo' not set") @@ -26969,7 +27162,7 @@ def get_team_profile_change_name(self): Only call this if :meth:`is_team_profile_change_name` is true. - :rtype: TeamProfileChangeNameType + :rtype: team_log.TeamProfileChangeNameType """ if not self.is_team_profile_change_name(): raise AttributeError("tag 'team_profile_change_name' not set") @@ -26981,7 +27174,7 @@ def get_team_profile_remove_logo(self): Only call this if :meth:`is_team_profile_remove_logo` is true. - :rtype: TeamProfileRemoveLogoType + :rtype: team_log.TeamProfileRemoveLogoType """ if not self.is_team_profile_remove_logo(): raise AttributeError("tag 'team_profile_remove_logo' not set") @@ -26993,7 +27186,7 @@ def get_tfa_add_backup_phone(self): Only call this if :meth:`is_tfa_add_backup_phone` is true. - :rtype: TfaAddBackupPhoneType + :rtype: team_log.TfaAddBackupPhoneType """ if not self.is_tfa_add_backup_phone(): raise AttributeError("tag 'tfa_add_backup_phone' not set") @@ -27005,7 +27198,7 @@ def get_tfa_add_security_key(self): Only call this if :meth:`is_tfa_add_security_key` is true. - :rtype: TfaAddSecurityKeyType + :rtype: team_log.TfaAddSecurityKeyType """ if not self.is_tfa_add_security_key(): raise AttributeError("tag 'tfa_add_security_key' not set") @@ -27017,7 +27210,7 @@ def get_tfa_change_backup_phone(self): Only call this if :meth:`is_tfa_change_backup_phone` is true. - :rtype: TfaChangeBackupPhoneType + :rtype: team_log.TfaChangeBackupPhoneType """ if not self.is_tfa_change_backup_phone(): raise AttributeError("tag 'tfa_change_backup_phone' not set") @@ -27029,7 +27222,7 @@ def get_tfa_change_status(self): Only call this if :meth:`is_tfa_change_status` is true. - :rtype: TfaChangeStatusType + :rtype: team_log.TfaChangeStatusType """ if not self.is_tfa_change_status(): raise AttributeError("tag 'tfa_change_status' not set") @@ -27041,7 +27234,7 @@ def get_tfa_remove_backup_phone(self): Only call this if :meth:`is_tfa_remove_backup_phone` is true. - :rtype: TfaRemoveBackupPhoneType + :rtype: team_log.TfaRemoveBackupPhoneType """ if not self.is_tfa_remove_backup_phone(): raise AttributeError("tag 'tfa_remove_backup_phone' not set") @@ -27053,7 +27246,7 @@ def get_tfa_remove_security_key(self): Only call this if :meth:`is_tfa_remove_security_key` is true. - :rtype: TfaRemoveSecurityKeyType + :rtype: team_log.TfaRemoveSecurityKeyType """ if not self.is_tfa_remove_security_key(): raise AttributeError("tag 'tfa_remove_security_key' not set") @@ -27065,7 +27258,7 @@ def get_tfa_reset(self): Only call this if :meth:`is_tfa_reset` is true. - :rtype: TfaResetType + :rtype: team_log.TfaResetType """ if not self.is_tfa_reset(): raise AttributeError("tag 'tfa_reset' not set") @@ -27151,9 +27344,11 @@ class ExtendedVersionHistoryChangePolicyDetails(bb.Struct): """ Accepted/opted out of extended version history. - :ivar new_value: New extended version history policy. - :ivar previous_value: Previous extended version history policy. Might be - missing due to historical data gap. + :ivar team_log.ExtendedVersionHistoryChangePolicyDetails.new_value: New + extended version history policy. + :ivar team_log.ExtendedVersionHistoryChangePolicyDetails.previous_value: + Previous extended version history policy. Might be missing due to + historical data gap. """ __slots__ = [ @@ -27182,7 +27377,7 @@ def new_value(self): """ New extended version history policy. - :rtype: ExtendedVersionHistoryPolicy + :rtype: team_log.ExtendedVersionHistoryPolicy """ if self._new_value_present: return self._new_value_value @@ -27206,7 +27401,7 @@ def previous_value(self): Previous extended version history policy. Might be missing due to historical data gap. - :rtype: ExtendedVersionHistoryPolicy + :rtype: team_log.ExtendedVersionHistoryPolicy """ if self._previous_value_present: return self._previous_value_value @@ -27356,8 +27551,9 @@ class ExternalUserLogInfo(bb.Struct): """ A user without a Dropbox account. - :ivar user_identifier: An external user identifier. - :ivar identifier_type: Identifier type. + :ivar team_log.ExternalUserLogInfo.user_identifier: An external user + identifier. + :ivar team_log.ExternalUserLogInfo.identifier_type: Identifier type. """ __slots__ = [ @@ -27409,7 +27605,7 @@ def identifier_type(self): """ Identifier type. - :rtype: IdentifierType + :rtype: team_log.IdentifierType """ if self._identifier_type_present: return self._identifier_type_value @@ -27442,10 +27638,10 @@ class FailureDetailsLogInfo(bb.Struct): """ Provides details about a failure - :ivar user_friendly_message: A user friendly explanation of the error. Might - be missing due to historical data gap. - :ivar technical_error_message: A technical explanation of the error. This is - relevant for some errors. + :ivar team_log.FailureDetailsLogInfo.user_friendly_message: A user friendly + explanation of the error. Might be missing due to historical data gap. + :ivar team_log.FailureDetailsLogInfo.technical_error_message: A technical + explanation of the error. This is relevant for some errors. """ __slots__ = [ @@ -27537,8 +27733,8 @@ class FileAddCommentDetails(bb.Struct): """ Added file comment. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.FileAddCommentDetails.comment_text: Comment text. Might be + missing due to historical data gap. """ __slots__ = [ @@ -27710,9 +27906,10 @@ class FileChangeCommentSubscriptionDetails(bb.Struct): """ Subscribed to or unsubscribed from comment notifications for file. - :ivar new_value: New file comment subscription. - :ivar previous_value: Previous file comment subscription. Might be missing - due to historical data gap. + :ivar team_log.FileChangeCommentSubscriptionDetails.new_value: New file + comment subscription. + :ivar team_log.FileChangeCommentSubscriptionDetails.previous_value: Previous + file comment subscription. Might be missing due to historical data gap. """ __slots__ = [ @@ -27741,7 +27938,7 @@ def new_value(self): """ New file comment subscription. - :rtype: FileCommentNotificationPolicy + :rtype: team_log.FileCommentNotificationPolicy """ if self._new_value_present: return self._new_value_value @@ -27765,7 +27962,7 @@ def previous_value(self): Previous file comment subscription. Might be missing due to historical data gap. - :rtype: FileCommentNotificationPolicy + :rtype: team_log.FileCommentNotificationPolicy """ if self._previous_value_present: return self._previous_value_value @@ -27897,9 +28094,11 @@ class FileCommentsChangePolicyDetails(bb.Struct): """ Enabled/disabled commenting on team files. - :ivar new_value: New commenting on team files policy. - :ivar previous_value: Previous commenting on team files policy. Might be - missing due to historical data gap. + :ivar team_log.FileCommentsChangePolicyDetails.new_value: New commenting on + team files policy. + :ivar team_log.FileCommentsChangePolicyDetails.previous_value: Previous + commenting on team files policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -27928,7 +28127,7 @@ def new_value(self): """ New commenting on team files policy. - :rtype: FileCommentsPolicy + :rtype: team_log.FileCommentsPolicy """ if self._new_value_present: return self._new_value_value @@ -27952,7 +28151,7 @@ def previous_value(self): Previous commenting on team files policy. Might be missing due to historical data gap. - :rtype: FileCommentsPolicy + :rtype: team_log.FileCommentsPolicy """ if self._previous_value_present: return self._previous_value_value @@ -28084,7 +28283,8 @@ class FileCopyDetails(bb.Struct): """ Copied files and/or folders. - :ivar relocate_action_details: Relocate action details. + :ivar team_log.FileCopyDetails.relocate_action_details: Relocate action + details. """ __slots__ = [ @@ -28106,7 +28306,7 @@ def relocate_action_details(self): """ Relocate action details. - :rtype: list of [RelocateAssetReferencesLogInfo] + :rtype: list of [team_log.RelocateAssetReferencesLogInfo] """ if self._relocate_action_details_present: return self._relocate_action_details_value @@ -28185,8 +28385,8 @@ class FileDeleteCommentDetails(bb.Struct): """ Deleted file comment. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.FileDeleteCommentDetails.comment_text: Comment text. Might be + missing due to historical data gap. """ __slots__ = [ @@ -28426,9 +28626,10 @@ class FileEditCommentDetails(bb.Struct): """ Edited file comment. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. - :ivar previous_comment_text: Previous comment text. + :ivar team_log.FileEditCommentDetails.comment_text: Comment text. Might be + missing due to historical data gap. + :ivar team_log.FileEditCommentDetails.previous_comment_text: Previous + comment text. """ __slots__ = [ @@ -28699,8 +28900,8 @@ class FileLikeCommentDetails(bb.Struct): """ Liked file comment. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.FileLikeCommentDetails.comment_text: Comment text. Might be + missing due to historical data gap. """ __slots__ = [ @@ -28804,10 +29005,11 @@ class FileOrFolderLogInfo(bb.Struct): """ Generic information relevant both for files and folders - :ivar path: Path relative to event context. - :ivar display_name: Display name. Might be missing due to historical data - gap. - :ivar file_id: Unique ID. Might be missing due to historical data gap. + :ivar team_log.FileOrFolderLogInfo.path: Path relative to event context. + :ivar team_log.FileOrFolderLogInfo.display_name: Display name. Might be + missing due to historical data gap. + :ivar team_log.FileOrFolderLogInfo.file_id: Unique ID. Might be missing due + to historical data gap. """ __slots__ = [ @@ -28843,7 +29045,7 @@ def path(self): """ Path relative to event context. - :rtype: PathLogInfo + :rtype: team_log.PathLogInfo """ if self._path_present: return self._path_value @@ -28959,7 +29161,8 @@ class FileMoveDetails(bb.Struct): """ Moved files and/or folders. - :ivar relocate_action_details: Relocate action details. + :ivar team_log.FileMoveDetails.relocate_action_details: Relocate action + details. """ __slots__ = [ @@ -28981,7 +29184,7 @@ def relocate_action_details(self): """ Relocate action details. - :rtype: list of [RelocateAssetReferencesLogInfo] + :rtype: list of [team_log.RelocateAssetReferencesLogInfo] """ if self._relocate_action_details_present: return self._relocate_action_details_value @@ -29196,7 +29399,8 @@ class FileRenameDetails(bb.Struct): """ Renamed files and/or folders. - :ivar relocate_action_details: Relocate action details. + :ivar team_log.FileRenameDetails.relocate_action_details: Relocate action + details. """ __slots__ = [ @@ -29218,7 +29422,7 @@ def relocate_action_details(self): """ Relocate action details. - :rtype: list of [RelocateAssetReferencesLogInfo] + :rtype: list of [team_log.RelocateAssetReferencesLogInfo] """ if self._relocate_action_details_present: return self._relocate_action_details_value @@ -29297,11 +29501,12 @@ class FileRequestChangeDetails(bb.Struct): """ Changed file request. - :ivar file_request_id: File request id. Might be missing due to historical - data gap. - :ivar previous_details: Previous file request details. Might be missing due - to historical data gap. - :ivar new_details: New file request details. + :ivar team_log.FileRequestChangeDetails.file_request_id: File request id. + Might be missing due to historical data gap. + :ivar team_log.FileRequestChangeDetails.previous_details: Previous file + request details. Might be missing due to historical data gap. + :ivar team_log.FileRequestChangeDetails.new_details: New file request + details. """ __slots__ = [ @@ -29364,7 +29569,7 @@ def previous_details(self): Previous file request details. Might be missing due to historical data gap. - :rtype: FileRequestDetails + :rtype: team_log.FileRequestDetails """ if self._previous_details_present: return self._previous_details_value @@ -29390,7 +29595,7 @@ def new_details(self): """ New file request details. - :rtype: FileRequestDetails + :rtype: team_log.FileRequestDetails """ if self._new_details_present: return self._new_details_value @@ -29471,10 +29676,10 @@ class FileRequestCloseDetails(bb.Struct): """ Closed file request. - :ivar file_request_id: File request id. Might be missing due to historical - data gap. - :ivar previous_details: Previous file request details. Might be missing due - to historical data gap. + :ivar team_log.FileRequestCloseDetails.file_request_id: File request id. + Might be missing due to historical data gap. + :ivar team_log.FileRequestCloseDetails.previous_details: Previous file + request details. Might be missing due to historical data gap. """ __slots__ = [ @@ -29530,7 +29735,7 @@ def previous_details(self): Previous file request details. Might be missing due to historical data gap. - :rtype: FileRequestDetails + :rtype: team_log.FileRequestDetails """ if self._previous_details_present: return self._previous_details_value @@ -29613,10 +29818,10 @@ class FileRequestCreateDetails(bb.Struct): """ Created file request. - :ivar file_request_id: File request id. Might be missing due to historical - data gap. - :ivar request_details: File request details. Might be missing due to - historical data gap. + :ivar team_log.FileRequestCreateDetails.file_request_id: File request id. + Might be missing due to historical data gap. + :ivar team_log.FileRequestCreateDetails.request_details: File request + details. Might be missing due to historical data gap. """ __slots__ = [ @@ -29671,7 +29876,7 @@ def request_details(self): """ File request details. Might be missing due to historical data gap. - :rtype: FileRequestDetails + :rtype: team_log.FileRequestDetails """ if self._request_details_present: return self._request_details_value @@ -29754,10 +29959,11 @@ class FileRequestDeadline(bb.Struct): """ File request deadline - :ivar deadline: The deadline for this file request. Might be missing due to - historical data gap. - :ivar allow_late_uploads: If set, allow uploads after the deadline has - passed. Might be missing due to historical data gap. + :ivar team_log.FileRequestDeadline.deadline: The deadline for this file + request. Might be missing due to historical data gap. + :ivar team_log.FileRequestDeadline.allow_late_uploads: If set, allow uploads + after the deadline has passed. Might be missing due to historical data + gap. """ __slots__ = [ @@ -29850,9 +30056,10 @@ class FileRequestDetails(bb.Struct): """ File request details - :ivar asset_index: Asset position in the Assets list. - :ivar deadline: File request deadline. Might be missing due to historical - data gap. + :ivar team_log.FileRequestDetails.asset_index: Asset position in the Assets + list. + :ivar team_log.FileRequestDetails.deadline: File request deadline. Might be + missing due to historical data gap. """ __slots__ = [ @@ -29904,7 +30111,7 @@ def deadline(self): """ File request deadline. Might be missing due to historical data gap. - :rtype: FileRequestDeadline + :rtype: team_log.FileRequestDeadline """ if self._deadline_present: return self._deadline_value @@ -29940,15 +30147,16 @@ class FileRequestReceiveFileDetails(bb.Struct): """ Received files for file request. - :ivar file_request_id: File request id. Might be missing due to historical - data gap. - :ivar file_request_details: File request details. Might be missing due to - historical data gap. - :ivar submitted_file_names: Submitted file names. - :ivar submitter_name: The name as provided by the submitter. Might be - missing due to historical data gap. - :ivar submitter_email: The email as provided by the submitter. Might be - missing due to historical data gap. + :ivar team_log.FileRequestReceiveFileDetails.file_request_id: File request + id. Might be missing due to historical data gap. + :ivar team_log.FileRequestReceiveFileDetails.file_request_details: File + request details. Might be missing due to historical data gap. + :ivar team_log.FileRequestReceiveFileDetails.submitted_file_names: Submitted + file names. + :ivar team_log.FileRequestReceiveFileDetails.submitter_name: The name as + provided by the submitter. Might be missing due to historical data gap. + :ivar team_log.FileRequestReceiveFileDetails.submitter_email: The email as + provided by the submitter. Might be missing due to historical data gap. """ __slots__ = [ @@ -30024,7 +30232,7 @@ def file_request_details(self): """ File request details. Might be missing due to historical data gap. - :rtype: FileRequestDetails + :rtype: team_log.FileRequestDetails """ if self._file_request_details_present: return self._file_request_details_value @@ -30187,9 +30395,10 @@ class FileRequestsChangePolicyDetails(bb.Struct): """ Enabled/disabled file requests. - :ivar new_value: New file requests policy. - :ivar previous_value: Previous file requests policy. Might be missing due to - historical data gap. + :ivar team_log.FileRequestsChangePolicyDetails.new_value: New file requests + policy. + :ivar team_log.FileRequestsChangePolicyDetails.previous_value: Previous file + requests policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -30218,7 +30427,7 @@ def new_value(self): """ New file requests policy. - :rtype: FileRequestsPolicy + :rtype: team_log.FileRequestsPolicy """ if self._new_value_present: return self._new_value_value @@ -30242,7 +30451,7 @@ def previous_value(self): Previous file requests policy. Might be missing due to historical data gap. - :rtype: FileRequestsPolicy + :rtype: team_log.FileRequestsPolicy """ if self._previous_value_present: return self._previous_value_value @@ -30510,8 +30719,8 @@ class FileResolveCommentDetails(bb.Struct): """ Resolved file comment. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.FileResolveCommentDetails.comment_text: Comment text. Might + be missing due to historical data gap. """ __slots__ = [ @@ -30819,7 +31028,8 @@ class FileSaveCopyReferenceDetails(bb.Struct): """ Saved file/folder using copy reference. - :ivar relocate_action_details: Relocate action details. + :ivar team_log.FileSaveCopyReferenceDetails.relocate_action_details: + Relocate action details. """ __slots__ = [ @@ -30841,7 +31051,7 @@ def relocate_action_details(self): """ Relocate action details. - :rtype: list of [RelocateAssetReferencesLogInfo] + :rtype: list of [team_log.RelocateAssetReferencesLogInfo] """ if self._relocate_action_details_present: return self._relocate_action_details_value @@ -30920,8 +31130,8 @@ class FileUnlikeCommentDetails(bb.Struct): """ Unliked file comment. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.FileUnlikeCommentDetails.comment_text: Comment text. Might be + missing due to historical data gap. """ __slots__ = [ @@ -31025,8 +31235,8 @@ class FileUnresolveCommentDetails(bb.Struct): """ Unresolved file comment. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.FileUnresolveCommentDetails.comment_text: Comment text. Might + be missing due to historical data gap. """ __slots__ = [ @@ -31160,10 +31370,10 @@ class GeoLocationLogInfo(bb.Struct): """ Geographic location details. - :ivar city: City name. - :ivar region: Region name. - :ivar country: Country code. - :ivar ip_address: IP address. + :ivar team_log.GeoLocationLogInfo.city: City name. + :ivar team_log.GeoLocationLogInfo.region: Region name. + :ivar team_log.GeoLocationLogInfo.country: Country code. + :ivar team_log.GeoLocationLogInfo.ip_address: IP address. """ __slots__ = [ @@ -31317,15 +31527,17 @@ def __repr__(self): class GetTeamEventsArg(bb.Struct): """ - :ivar 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 + :ivar team_log.GetTeamEventsArg.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 :meth:`dropbox.dropbox.Dropbox.team_log_get_events_continue`. - :ivar account_id: Filter the events by account ID. Return ony events with - this account_id as either Actor, Context, or Participants. - :ivar time: Filter by time range. - :ivar category: Filter the returned events to a single category. + :ivar team_log.GetTeamEventsArg.account_id: Filter the events by account ID. + Return ony events with this account_id as either Actor, Context, or + Participants. + :ivar team_log.GetTeamEventsArg.time: Filter by time range. + :ivar team_log.GetTeamEventsArg.category: Filter the returned events to a + single category. """ __slots__ = [ @@ -31448,7 +31660,7 @@ def category(self): """ Filter the returned events to a single category. - :rtype: EventCategory + :rtype: team_log.EventCategory """ if self._category_present: return self._category_value @@ -31484,7 +31696,8 @@ def __repr__(self): class GetTeamEventsContinueArg(bb.Struct): """ - :ivar cursor: Indicates from what point to get the next set of events. + :ivar team_log.GetTeamEventsContinueArg.cursor: Indicates from what point to + get the next set of events. """ __slots__ = [ @@ -31543,14 +31756,15 @@ class GetTeamEventsContinueError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar bad_cursor: Bad cursor. - :ivar datetime.datetime reset: Cursors are intended to be used quickly. - Individual cursor values are normally valid for days, but in rare cases - may be reset sooner. Cursor reset errors should be handled by fetching a - new cursor from :route:`get_events`. The associated value is the - approximate timestamp of the most recent event returned by the cursor. - This should be used as a resumption point when calling - :route:`get_events` to obtain a new cursor. + :ivar team_log.GetTeamEventsContinueError.bad_cursor: Bad cursor. + :ivar datetime.datetime team_log.GetTeamEventsContinueError.reset: Cursors + are intended to be used quickly. Individual cursor values are normally + valid for days, but in rare cases may be reset sooner. Cursor reset + errors should be handled by fetching a new cursor from + :route:`get_events`. The associated value is the approximate timestamp + of the most recent event returned by the cursor. This should be used as + a resumption point when calling :route:`get_events` to obtain a new + cursor. """ _catch_all = 'other' @@ -31566,7 +31780,7 @@ def reset(cls, val): ``val``. :param datetime.datetime val: - :rtype: GetTeamEventsContinueError + :rtype: team_log.GetTeamEventsContinueError """ return cls('reset', val) @@ -31630,8 +31844,9 @@ class GetTeamEventsError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar account_id_not_found: No user found matching the provided account_id. - :ivar invalid_time_range: Invalid time range. + :ivar team_log.GetTeamEventsError.account_id_not_found: No user found + matching the provided account_id. + :ivar team_log.GetTeamEventsError.invalid_time_range: Invalid time range. """ _catch_all = 'other' @@ -31676,9 +31891,9 @@ def __repr__(self): class GetTeamEventsResult(bb.Struct): """ - :ivar events: List of events. Note that events are not guaranteed to be - sorted by their timestamp value. - :ivar cursor: Pass the cursor into + :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.Dropbox.team_log_get_events_continue` to obtain additional events. The value of ``cursor`` may change for each response from :meth:`dropbox.dropbox.Dropbox.team_log_get_events_continue`, @@ -31687,8 +31902,8 @@ class GetTeamEventsResult(bb.Struct): 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 has_more: Is true if there may be additional events that have not been - returned yet. An additional call to + :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.Dropbox.team_log_get_events_continue` can retrieve them. Note that ``has_more`` may be ``True``, even if ``events`` is empty. @@ -31728,7 +31943,7 @@ def events(self): List of events. Note that events are not guaranteed to be sorted by their timestamp value. - :rtype: list of [TeamEvent] + :rtype: list of [team_log.TeamEvent] """ if self._events_present: return self._events_value @@ -31820,9 +32035,10 @@ class GoogleSsoChangePolicyDetails(bb.Struct): """ Enabled/disabled Google single sign-on for team. - :ivar new_value: New Google single sign-on policy. - :ivar previous_value: Previous Google single sign-on policy. Might be - missing due to historical data gap. + :ivar team_log.GoogleSsoChangePolicyDetails.new_value: New Google single + sign-on policy. + :ivar team_log.GoogleSsoChangePolicyDetails.previous_value: Previous Google + single sign-on policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -31851,7 +32067,7 @@ def new_value(self): """ New Google single sign-on policy. - :rtype: GoogleSsoPolicy + :rtype: team_log.GoogleSsoPolicy """ if self._new_value_present: return self._new_value_value @@ -31875,7 +32091,7 @@ def previous_value(self): Previous Google single sign-on policy. Might be missing due to historical data gap. - :rtype: GoogleSsoPolicy + :rtype: team_log.GoogleSsoPolicy """ if self._previous_value_present: return self._previous_value_value @@ -32007,7 +32223,7 @@ class GroupAddExternalIdDetails(bb.Struct): """ Added external ID for group. - :ivar new_value: Current external id. + :ivar team_log.GroupAddExternalIdDetails.new_value: Current external id. """ __slots__ = [ @@ -32108,7 +32324,7 @@ class GroupAddMemberDetails(bb.Struct): """ Added team members to group. - :ivar is_group_owner: Is group owner. + :ivar team_log.GroupAddMemberDetails.is_group_owner: Is group owner. """ __slots__ = [ @@ -32209,8 +32425,8 @@ class GroupChangeExternalIdDetails(bb.Struct): """ Changed external ID for group. - :ivar new_value: Current external id. - :ivar previous_value: Old external id. + :ivar team_log.GroupChangeExternalIdDetails.new_value: Current external id. + :ivar team_log.GroupChangeExternalIdDetails.previous_value: Old external id. """ __slots__ = [ @@ -32342,9 +32558,10 @@ class GroupChangeManagementTypeDetails(bb.Struct): """ Changed group management type. - :ivar new_value: New group management type. - :ivar previous_value: Previous group management type. Might be missing due - to historical data gap. + :ivar team_log.GroupChangeManagementTypeDetails.new_value: New group + management type. + :ivar team_log.GroupChangeManagementTypeDetails.previous_value: Previous + group management type. Might be missing due to historical data gap. """ __slots__ = [ @@ -32480,7 +32697,7 @@ class GroupChangeMemberRoleDetails(bb.Struct): """ Changed manager permissions of group member. - :ivar is_group_owner: Is group owner. + :ivar team_log.GroupChangeMemberRoleDetails.is_group_owner: Is group owner. """ __slots__ = [ @@ -32581,9 +32798,9 @@ class GroupCreateDetails(bb.Struct): """ Created group. - :ivar is_company_managed: Is company managed group. Might be missing due to - historical data gap. - :ivar join_policy: Group join policy. + :ivar team_log.GroupCreateDetails.is_company_managed: Is company managed + group. Might be missing due to historical data gap. + :ivar team_log.GroupCreateDetails.join_policy: Group join policy. """ __slots__ = [ @@ -32638,7 +32855,7 @@ def join_policy(self): """ Group join policy. - :rtype: GroupJoinPolicy + :rtype: team_log.GroupJoinPolicy """ if self._join_policy_present: return self._join_policy_value @@ -32721,8 +32938,8 @@ class GroupDeleteDetails(bb.Struct): """ Deleted group. - :ivar is_company_managed: Is company managed group. Might be missing due to - historical data gap. + :ivar team_log.GroupDeleteDetails.is_company_managed: Is company managed + group. Might be missing due to historical data gap. """ __slots__ = [ @@ -32941,9 +33158,9 @@ class GroupJoinPolicyUpdatedDetails(bb.Struct): """ Updated group join policy. - :ivar is_company_managed: Is company managed group. Might be missing due to - historical data gap. - :ivar join_policy: Group join policy. + :ivar team_log.GroupJoinPolicyUpdatedDetails.is_company_managed: Is company + managed group. Might be missing due to historical data gap. + :ivar team_log.GroupJoinPolicyUpdatedDetails.join_policy: Group join policy. """ __slots__ = [ @@ -32998,7 +33215,7 @@ def join_policy(self): """ Group join policy. - :rtype: GroupJoinPolicy + :rtype: team_log.GroupJoinPolicy """ if self._join_policy_present: return self._join_policy_value @@ -33081,11 +33298,11 @@ class GroupLogInfo(bb.Struct): """ Group's logged information. - :ivar group_id: The unique id of this group. Might be missing due to - historical data gap. - :ivar display_name: The name of this group. - :ivar external_id: External group ID. Might be missing due to historical - data gap. + :ivar team_log.GroupLogInfo.group_id: The unique id of this group. Might be + missing due to historical data gap. + :ivar team_log.GroupLogInfo.display_name: The name of this group. + :ivar team_log.GroupLogInfo.external_id: External group ID. Might be missing + due to historical data gap. """ __slots__ = [ @@ -33276,7 +33493,7 @@ class GroupRemoveExternalIdDetails(bb.Struct): """ Removed external ID for group. - :ivar previous_value: Old external id. + :ivar team_log.GroupRemoveExternalIdDetails.previous_value: Old external id. """ __slots__ = [ @@ -33445,8 +33662,8 @@ class GroupRenameDetails(bb.Struct): """ Renamed group. - :ivar previous_value: Previous display name. - :ivar new_value: New display name. + :ivar team_log.GroupRenameDetails.previous_value: Previous display name. + :ivar team_log.GroupRenameDetails.new_value: New display name. """ __slots__ = [ @@ -33578,9 +33795,11 @@ class GroupUserManagementChangePolicyDetails(bb.Struct): """ Changed who can create groups. - :ivar new_value: New group users management policy. - :ivar previous_value: Previous group users management policy. Might be - missing due to historical data gap. + :ivar team_log.GroupUserManagementChangePolicyDetails.new_value: New group + users management policy. + :ivar team_log.GroupUserManagementChangePolicyDetails.previous_value: + Previous group users management policy. Might be missing due to + historical data gap. """ __slots__ = [ @@ -33763,9 +33982,9 @@ class JoinTeamDetails(bb.Struct): """ Additional information relevant when a new member joins the team. - :ivar linked_apps: Linked applications. - :ivar linked_devices: Linked devices. - :ivar linked_shared_folders: Linked shared folders. + :ivar team_log.JoinTeamDetails.linked_apps: Linked applications. + :ivar team_log.JoinTeamDetails.linked_devices: Linked devices. + :ivar team_log.JoinTeamDetails.linked_shared_folders: Linked shared folders. """ __slots__ = [ @@ -33801,7 +34020,7 @@ def linked_apps(self): """ Linked applications. - :rtype: list of [UserLinkedAppLogInfo] + :rtype: list of [team_log.UserLinkedAppLogInfo] """ if self._linked_apps_present: return self._linked_apps_value @@ -33824,7 +34043,7 @@ def linked_devices(self): """ Linked devices. - :rtype: list of [LinkedDeviceLogInfo] + :rtype: list of [team_log.LinkedDeviceLogInfo] """ if self._linked_devices_present: return self._linked_devices_value @@ -33847,7 +34066,7 @@ def linked_shared_folders(self): """ Linked shared folders. - :rtype: list of [FolderLogInfo] + :rtype: list of [team_log.FolderLogInfo] """ if self._linked_shared_folders_present: return self._linked_shared_folders_value @@ -33881,24 +34100,26 @@ class LegacyDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information on sessions, in legacy format - :ivar session_info: Session unique id. Might be missing due to historical - data gap. - :ivar display_name: The device name. Might be missing due to historical data - gap. - :ivar is_emm_managed: Is device managed by emm. Might be missing due to - historical data gap. - :ivar platform: Information on the hosting platform. Might be missing due to - historical data gap. - :ivar mac_address: The mac address of the last activity from this session. + :ivar team_log.LegacyDeviceSessionLogInfo.session_info: Session unique id. Might be missing due to historical data gap. - :ivar os_version: The hosting OS version. Might be missing due to historical + :ivar team_log.LegacyDeviceSessionLogInfo.display_name: The device name. + Might be missing due to historical data gap. + :ivar team_log.LegacyDeviceSessionLogInfo.is_emm_managed: Is device managed + by emm. Might be missing due to historical data gap. + :ivar team_log.LegacyDeviceSessionLogInfo.platform: Information on the + hosting platform. Might be missing due to historical data gap. + :ivar team_log.LegacyDeviceSessionLogInfo.mac_address: The mac address of + the last activity from this session. Might be missing due to historical data gap. - :ivar device_type: Information on the hosting device type. Might be missing - due to historical data gap. - :ivar client_version: The Dropbox client version. Might be missing due to + :ivar team_log.LegacyDeviceSessionLogInfo.os_version: The hosting OS + version. Might be missing due to historical data gap. + :ivar team_log.LegacyDeviceSessionLogInfo.device_type: Information on the + hosting device type. Might be missing due to historical data gap. + :ivar team_log.LegacyDeviceSessionLogInfo.client_version: The Dropbox client + version. Might be missing due to historical data gap. + :ivar team_log.LegacyDeviceSessionLogInfo.legacy_uniq_id: Alternative unique + device session id, instead of session id field. Might be missing due to historical data gap. - :ivar legacy_uniq_id: Alternative unique device session id, instead of - session id field. Might be missing due to historical data gap. """ __slots__ = [ @@ -33982,7 +34203,7 @@ def session_info(self): """ Session unique id. Might be missing due to historical data gap. - :rtype: SessionLogInfo + :rtype: team_log.SessionLogInfo """ if self._session_info_present: return self._session_info_value @@ -34244,13 +34465,17 @@ class LinkedDeviceLogInfo(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar MobileDeviceSessionLogInfo mobile_device_session: mobile device + :ivar MobileDeviceSessionLogInfo + team_log.LinkedDeviceLogInfo.mobile_device_session: mobile device session's details. - :ivar DesktopDeviceSessionLogInfo desktop_device_session: desktop device + :ivar DesktopDeviceSessionLogInfo + team_log.LinkedDeviceLogInfo.desktop_device_session: desktop device session's details. - :ivar WebDeviceSessionLogInfo web_device_session: web device session's + :ivar WebDeviceSessionLogInfo + team_log.LinkedDeviceLogInfo.web_device_session: web device session's details. - :ivar LegacyDeviceSessionLogInfo legacy_device_session: legacy device + :ivar LegacyDeviceSessionLogInfo + team_log.LinkedDeviceLogInfo.legacy_device_session: legacy device session's details. """ @@ -34264,8 +34489,8 @@ def mobile_device_session(cls, val): Create an instance of this class set to the ``mobile_device_session`` tag with value ``val``. - :param MobileDeviceSessionLogInfo val: - :rtype: LinkedDeviceLogInfo + :param team_log.MobileDeviceSessionLogInfo val: + :rtype: team_log.LinkedDeviceLogInfo """ return cls('mobile_device_session', val) @@ -34275,8 +34500,8 @@ def desktop_device_session(cls, val): Create an instance of this class set to the ``desktop_device_session`` tag with value ``val``. - :param DesktopDeviceSessionLogInfo val: - :rtype: LinkedDeviceLogInfo + :param team_log.DesktopDeviceSessionLogInfo val: + :rtype: team_log.LinkedDeviceLogInfo """ return cls('desktop_device_session', val) @@ -34286,8 +34511,8 @@ def web_device_session(cls, val): Create an instance of this class set to the ``web_device_session`` tag with value ``val``. - :param WebDeviceSessionLogInfo val: - :rtype: LinkedDeviceLogInfo + :param team_log.WebDeviceSessionLogInfo val: + :rtype: team_log.LinkedDeviceLogInfo """ return cls('web_device_session', val) @@ -34297,8 +34522,8 @@ def legacy_device_session(cls, val): Create an instance of this class set to the ``legacy_device_session`` tag with value ``val``. - :param LegacyDeviceSessionLogInfo val: - :rtype: LinkedDeviceLogInfo + :param team_log.LegacyDeviceSessionLogInfo val: + :rtype: team_log.LinkedDeviceLogInfo """ return cls('legacy_device_session', val) @@ -34348,7 +34573,7 @@ def get_mobile_device_session(self): Only call this if :meth:`is_mobile_device_session` is true. - :rtype: MobileDeviceSessionLogInfo + :rtype: team_log.MobileDeviceSessionLogInfo """ if not self.is_mobile_device_session(): raise AttributeError("tag 'mobile_device_session' not set") @@ -34360,7 +34585,7 @@ def get_desktop_device_session(self): Only call this if :meth:`is_desktop_device_session` is true. - :rtype: DesktopDeviceSessionLogInfo + :rtype: team_log.DesktopDeviceSessionLogInfo """ if not self.is_desktop_device_session(): raise AttributeError("tag 'desktop_device_session' not set") @@ -34372,7 +34597,7 @@ def get_web_device_session(self): Only call this if :meth:`is_web_device_session` is true. - :rtype: WebDeviceSessionLogInfo + :rtype: team_log.WebDeviceSessionLogInfo """ if not self.is_web_device_session(): raise AttributeError("tag 'web_device_session' not set") @@ -34384,7 +34609,7 @@ def get_legacy_device_session(self): Only call this if :meth:`is_legacy_device_session` is true. - :rtype: LegacyDeviceSessionLogInfo + :rtype: team_log.LegacyDeviceSessionLogInfo """ if not self.is_legacy_device_session(): raise AttributeError("tag 'legacy_device_session' not set") @@ -34402,10 +34627,10 @@ class LoginFailDetails(bb.Struct): """ Failed to sign in. - :ivar is_emm_managed: Tells if the login device is EMM managed. Might be - missing due to historical data gap. - :ivar login_method: Login method. - :ivar error_details: Error details. + :ivar team_log.LoginFailDetails.is_emm_managed: Tells if the login device is + EMM managed. Might be missing due to historical data gap. + :ivar team_log.LoginFailDetails.login_method: Login method. + :ivar team_log.LoginFailDetails.error_details: Error details. """ __slots__ = [ @@ -34468,7 +34693,7 @@ def login_method(self): """ Login method. - :rtype: LoginMethod + :rtype: team_log.LoginMethod """ if self._login_method_present: return self._login_method_value @@ -34491,7 +34716,7 @@ def error_details(self): """ Error details. - :rtype: FailureDetailsLogInfo + :rtype: team_log.FailureDetailsLogInfo """ if self._error_details_present: return self._error_details_value @@ -34629,9 +34854,9 @@ class LoginSuccessDetails(bb.Struct): """ Signed in. - :ivar is_emm_managed: Tells if the login device is EMM managed. Might be - missing due to historical data gap. - :ivar login_method: Login method. + :ivar team_log.LoginSuccessDetails.is_emm_managed: Tells if the login device + is EMM managed. Might be missing due to historical data gap. + :ivar team_log.LoginSuccessDetails.login_method: Login method. """ __slots__ = [ @@ -34687,7 +34912,7 @@ def login_method(self): """ Login method. - :rtype: LoginMethod + :rtype: team_log.LoginMethod """ if self._login_method_present: return self._login_method_value @@ -34835,7 +35060,7 @@ class MemberAddNameDetails(bb.Struct): """ Added team member name. - :ivar new_value: New user's name. + :ivar team_log.MemberAddNameDetails.new_value: New user's name. """ __slots__ = [ @@ -34857,7 +35082,7 @@ def new_value(self): """ New user's name. - :rtype: UserNameLogInfo + :rtype: team_log.UserNameLogInfo """ if self._new_value_present: return self._new_value_value @@ -34936,11 +35161,12 @@ class MemberChangeAdminRoleDetails(bb.Struct): """ Changed team member admin role. - :ivar new_value: New admin role. This field is relevant when the admin role - is changed or whenthe user role changes from no admin rights to with - admin rights. - :ivar previous_value: Previous admin role. This field is relevant when the - admin role is changed or when the admin role is removed. + :ivar team_log.MemberChangeAdminRoleDetails.new_value: New admin role. This + field is relevant when the admin role is changed or whenthe user role + changes from no admin rights to with admin rights. + :ivar team_log.MemberChangeAdminRoleDetails.previous_value: Previous admin + role. This field is relevant when the admin role is changed or when the + admin role is removed. """ __slots__ = [ @@ -34970,7 +35196,7 @@ def new_value(self): New admin role. This field is relevant when the admin role is changed or whenthe user role changes from no admin rights to with admin rights. - :rtype: AdminRole + :rtype: team_log.AdminRole """ if self._new_value_present: return self._new_value_value @@ -34997,7 +35223,7 @@ def previous_value(self): Previous admin role. This field is relevant when the admin role is changed or when the admin role is removed. - :rtype: AdminRole + :rtype: team_log.AdminRole """ if self._previous_value_present: return self._previous_value_value @@ -35080,9 +35306,9 @@ class MemberChangeEmailDetails(bb.Struct): """ Changed team member email. - :ivar new_value: New email. - :ivar previous_value: Previous email. Might be missing due to historical - data gap. + :ivar team_log.MemberChangeEmailDetails.new_value: New email. + :ivar team_log.MemberChangeEmailDetails.previous_value: Previous email. + Might be missing due to historical data gap. """ __slots__ = [ @@ -35217,8 +35443,10 @@ class MemberChangeMembershipTypeDetails(bb.Struct): """ Changed membership type (limited/full) of member. - :ivar prev_value: Previous membership type. - :ivar new_value: New membership type. + :ivar team_log.MemberChangeMembershipTypeDetails.prev_value: Previous + membership type. + :ivar team_log.MemberChangeMembershipTypeDetails.new_value: New membership + type. """ __slots__ = [ @@ -35247,7 +35475,7 @@ def prev_value(self): """ Previous membership type. - :rtype: TeamMembershipType + :rtype: team_log.TeamMembershipType """ if self._prev_value_present: return self._prev_value_value @@ -35270,7 +35498,7 @@ def new_value(self): """ New membership type. - :rtype: TeamMembershipType + :rtype: team_log.TeamMembershipType """ if self._new_value_present: return self._new_value_value @@ -35350,9 +35578,9 @@ class MemberChangeNameDetails(bb.Struct): """ Changed team member name. - :ivar new_value: New user's name. - :ivar previous_value: Previous user's name. Might be missing due to - historical data gap. + :ivar team_log.MemberChangeNameDetails.new_value: New user's name. + :ivar team_log.MemberChangeNameDetails.previous_value: Previous user's name. + Might be missing due to historical data gap. """ __slots__ = [ @@ -35381,7 +35609,7 @@ def new_value(self): """ New user's name. - :rtype: UserNameLogInfo + :rtype: team_log.UserNameLogInfo """ if self._new_value_present: return self._new_value_value @@ -35404,7 +35632,7 @@ def previous_value(self): """ Previous user's name. Might be missing due to historical data gap. - :rtype: UserNameLogInfo + :rtype: team_log.UserNameLogInfo """ if self._previous_value_present: return self._previous_value_value @@ -35487,11 +35715,11 @@ class MemberChangeStatusDetails(bb.Struct): """ Changed member status (invited, joined, suspended, etc.). - :ivar previous_value: Previous member status. Might be missing due to - historical data gap. - :ivar new_value: New member status. - :ivar action: Additional information indicating the action taken that caused - status change. + :ivar team_log.MemberChangeStatusDetails.previous_value: Previous member + status. Might be missing due to historical data gap. + :ivar team_log.MemberChangeStatusDetails.new_value: New member status. + :ivar team_log.MemberChangeStatusDetails.action: Additional information + indicating the action taken that caused status change. """ __slots__ = [ @@ -35527,7 +35755,7 @@ def previous_value(self): """ Previous member status. Might be missing due to historical data gap. - :rtype: MemberStatus + :rtype: team_log.MemberStatus """ if self._previous_value_present: return self._previous_value_value @@ -35553,7 +35781,7 @@ def new_value(self): """ New member status. - :rtype: MemberStatus + :rtype: team_log.MemberStatus """ if self._new_value_present: return self._new_value_value @@ -35577,7 +35805,7 @@ def action(self): Additional information indicating the action taken that caused status change. - :rtype: ActionDetails + :rtype: team_log.ActionDetails """ if self._action_present: return self._action_value @@ -35854,9 +36082,11 @@ class MemberRequestsChangePolicyDetails(bb.Struct): """ Changed whether users can find team when not invited. - :ivar new_value: New member change requests policy. - :ivar previous_value: Previous member change requests policy. Might be - missing due to historical data gap. + :ivar team_log.MemberRequestsChangePolicyDetails.new_value: New member + change requests policy. + :ivar team_log.MemberRequestsChangePolicyDetails.previous_value: Previous + member change requests policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -35885,7 +36115,7 @@ def new_value(self): """ New member change requests policy. - :rtype: MemberRequestsPolicy + :rtype: team_log.MemberRequestsPolicy """ if self._new_value_present: return self._new_value_value @@ -35909,7 +36139,7 @@ def previous_value(self): Previous member change requests policy. Might be missing due to historical data gap. - :rtype: MemberRequestsPolicy + :rtype: team_log.MemberRequestsPolicy """ if self._previous_value_present: return self._previous_value_value @@ -36049,7 +36279,8 @@ class MemberSpaceLimitsAddCustomQuotaDetails(bb.Struct): """ Set custom member space limit. - :ivar new_value: New custom quota value in bytes. + :ivar team_log.MemberSpaceLimitsAddCustomQuotaDetails.new_value: New custom + quota value in bytes. """ __slots__ = [ @@ -36218,8 +36449,10 @@ class MemberSpaceLimitsChangeCapsTypePolicyDetails(bb.Struct): """ Changed member space limit type for team. - :ivar previous_value: Previous space limit type. - :ivar new_value: New space limit type. + :ivar team_log.MemberSpaceLimitsChangeCapsTypePolicyDetails.previous_value: + Previous space limit type. + :ivar team_log.MemberSpaceLimitsChangeCapsTypePolicyDetails.new_value: New + space limit type. """ __slots__ = [ @@ -36248,7 +36481,7 @@ def previous_value(self): """ Previous space limit type. - :rtype: SpaceCapsType + :rtype: team_log.SpaceCapsType """ if self._previous_value_present: return self._previous_value_value @@ -36271,7 +36504,7 @@ def new_value(self): """ New space limit type. - :rtype: SpaceCapsType + :rtype: team_log.SpaceCapsType """ if self._new_value_present: return self._new_value_value @@ -36351,8 +36584,10 @@ class MemberSpaceLimitsChangeCustomQuotaDetails(bb.Struct): """ Changed custom member space limit. - :ivar previous_value: Previous custom quota value in bytes. - :ivar new_value: New custom quota value in bytes. + :ivar team_log.MemberSpaceLimitsChangeCustomQuotaDetails.previous_value: + Previous custom quota value in bytes. + :ivar team_log.MemberSpaceLimitsChangeCustomQuotaDetails.new_value: New + custom quota value in bytes. """ __slots__ = [ @@ -36484,10 +36719,12 @@ class MemberSpaceLimitsChangePolicyDetails(bb.Struct): """ Changed team default member space limit. - :ivar previous_value: Previous team default limit value in bytes. Might be - missing due to historical data gap. - :ivar new_value: New team default limit value in bytes. Might be missing due - to historical data gap. + :ivar team_log.MemberSpaceLimitsChangePolicyDetails.previous_value: Previous + team default limit value in bytes. Might be missing due to historical + data gap. + :ivar team_log.MemberSpaceLimitsChangePolicyDetails.new_value: New team + default limit value in bytes. Might be missing due to historical data + gap. """ __slots__ = [ @@ -36627,8 +36864,10 @@ class MemberSpaceLimitsChangeStatusDetails(bb.Struct): """ Changed space limit status. - :ivar previous_value: Previous storage quota status. - :ivar new_value: New storage quota status. + :ivar team_log.MemberSpaceLimitsChangeStatusDetails.previous_value: Previous + storage quota status. + :ivar team_log.MemberSpaceLimitsChangeStatusDetails.new_value: New storage + quota status. """ __slots__ = [ @@ -36657,7 +36896,7 @@ def previous_value(self): """ Previous storage quota status. - :rtype: SpaceLimitsStatus + :rtype: team_log.SpaceLimitsStatus """ if self._previous_value_present: return self._previous_value_value @@ -36680,7 +36919,7 @@ def new_value(self): """ New storage quota status. - :rtype: SpaceLimitsStatus + :rtype: team_log.SpaceLimitsStatus """ if self._new_value_present: return self._new_value_value @@ -36973,7 +37212,8 @@ class MemberSuggestDetails(bb.Struct): """ Suggested person to add to team. - :ivar suggested_members: suggested users emails. + :ivar team_log.MemberSuggestDetails.suggested_members: suggested users + emails. """ __slots__ = [ @@ -37074,9 +37314,11 @@ class MemberSuggestionsChangePolicyDetails(bb.Struct): """ Enabled/disabled option for team members to suggest people to add to team. - :ivar new_value: New team member suggestions policy. - :ivar previous_value: Previous team member suggestions policy. Might be - missing due to historical data gap. + :ivar team_log.MemberSuggestionsChangePolicyDetails.new_value: New team + member suggestions policy. + :ivar team_log.MemberSuggestionsChangePolicyDetails.previous_value: Previous + team member suggestions policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -37105,7 +37347,7 @@ def new_value(self): """ New team member suggestions policy. - :rtype: MemberSuggestionsPolicy + :rtype: team_log.MemberSuggestionsPolicy """ if self._new_value_present: return self._new_value_value @@ -37129,7 +37371,7 @@ def previous_value(self): Previous team member suggestions policy. Might be missing due to historical data gap. - :rtype: MemberSuggestionsPolicy + :rtype: team_log.MemberSuggestionsPolicy """ if self._previous_value_present: return self._previous_value_value @@ -37329,9 +37571,11 @@ class MicrosoftOfficeAddinChangePolicyDetails(bb.Struct): """ Enabled/disabled Microsoft Office add-in. - :ivar new_value: New Microsoft Office addin policy. - :ivar previous_value: Previous Microsoft Office addin policy. Might be - missing due to historical data gap. + :ivar team_log.MicrosoftOfficeAddinChangePolicyDetails.new_value: New + Microsoft Office addin policy. + :ivar team_log.MicrosoftOfficeAddinChangePolicyDetails.previous_value: + Previous Microsoft Office addin policy. Might be missing due to + historical data gap. """ __slots__ = [ @@ -37360,7 +37604,7 @@ def new_value(self): """ New Microsoft Office addin policy. - :rtype: MicrosoftOfficeAddinPolicy + :rtype: team_log.MicrosoftOfficeAddinPolicy """ if self._new_value_present: return self._new_value_value @@ -37384,7 +37628,7 @@ def previous_value(self): Previous Microsoft Office addin policy. Might be missing due to historical data gap. - :rtype: MicrosoftOfficeAddinPolicy + :rtype: team_log.MicrosoftOfficeAddinPolicy """ if self._previous_value_present: return self._previous_value_value @@ -37517,8 +37761,8 @@ class MissingDetails(bb.Struct): An indication that an error occurred while retrieving the event. Some attributes of the event may be omitted as a result. - :ivar source_event_fields: All the data that could be retrieved and - converted from the source event. + :ivar team_log.MissingDetails.source_event_fields: All the data that could + be retrieved and converted from the source event. """ __slots__ = [ @@ -37576,13 +37820,17 @@ class MobileDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information about linked Dropbox mobile client sessions - :ivar session_info: Mobile session unique id. Might be missing due to - historical data gap. - :ivar device_name: The device name. - :ivar client_type: The mobile application type. - :ivar client_version: The Dropbox client version. - :ivar os_version: The hosting OS version. - :ivar last_carrier: last carrier used by the device. + :ivar team_log.MobileDeviceSessionLogInfo.session_info: Mobile session + unique id. Might be missing due to historical data gap. + :ivar team_log.MobileDeviceSessionLogInfo.device_name: The device name. + :ivar team_log.MobileDeviceSessionLogInfo.client_type: The mobile + application type. + :ivar team_log.MobileDeviceSessionLogInfo.client_version: The Dropbox client + version. + :ivar team_log.MobileDeviceSessionLogInfo.os_version: The hosting OS + version. + :ivar team_log.MobileDeviceSessionLogInfo.last_carrier: last carrier used by + the device. """ __slots__ = [ @@ -37645,7 +37893,7 @@ def session_info(self): """ Mobile session unique id. Might be missing due to historical data gap. - :rtype: MobileSessionLogInfo + :rtype: team_log.MobileSessionLogInfo """ if self._session_info_present: return self._session_info_value @@ -37836,9 +38084,11 @@ class NamespaceRelativePathLogInfo(bb.Struct): """ Namespace relative path details. - :ivar ns_id: Namespace ID. Might be missing due to historical data gap. - :ivar relative_path: A path relative to the specified namespace ID. Might be + :ivar team_log.NamespaceRelativePathLogInfo.ns_id: Namespace ID. Might be missing due to historical data gap. + :ivar team_log.NamespaceRelativePathLogInfo.relative_path: A path relative + to the specified namespace ID. Might be missing due to historical data + gap. """ __slots__ = [ @@ -37930,9 +38180,10 @@ class NetworkControlChangePolicyDetails(bb.Struct): """ Enabled/disabled network control. - :ivar new_value: New network control policy. - :ivar previous_value: Previous network control policy. Might be missing due - to historical data gap. + :ivar team_log.NetworkControlChangePolicyDetails.new_value: New network + control policy. + :ivar team_log.NetworkControlChangePolicyDetails.previous_value: Previous + network control policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -37961,7 +38212,7 @@ def new_value(self): """ New network control policy. - :rtype: NetworkControlPolicy + :rtype: team_log.NetworkControlPolicy """ if self._new_value_present: return self._new_value_value @@ -37985,7 +38236,7 @@ def previous_value(self): Previous network control policy. Might be missing due to historical data gap. - :rtype: NetworkControlPolicy + :rtype: team_log.NetworkControlPolicy """ if self._previous_value_present: return self._previous_value_value @@ -38117,12 +38368,12 @@ class UserLogInfo(bb.Struct): """ User's logged information. - :ivar account_id: User unique ID. Might be missing due to historical data - gap. - :ivar display_name: User display name. Might be missing due to historical - data gap. - :ivar email: User email address. Might be missing due to historical data - gap. + :ivar team_log.UserLogInfo.account_id: User unique ID. Might be missing due + to historical data gap. + :ivar team_log.UserLogInfo.display_name: User display name. Might be missing + due to historical data gap. + :ivar team_log.UserLogInfo.email: User email address. Might be missing due + to historical data gap. """ __slots__ = [ @@ -38685,8 +38936,9 @@ class OriginLogInfo(bb.Struct): """ The origin from which the actor performed the action. - :ivar geo_location: Geographic location details. - :ivar access_method: The method that was used to perform the action. + :ivar team_log.OriginLogInfo.geo_location: Geographic location details. + :ivar team_log.OriginLogInfo.access_method: The method that was used to + perform the action. """ __slots__ = [ @@ -38715,7 +38967,7 @@ def geo_location(self): """ Geographic location details. - :rtype: GeoLocationLogInfo + :rtype: team_log.GeoLocationLogInfo """ if self._geo_location_present: return self._geo_location_value @@ -38741,7 +38993,7 @@ def access_method(self): """ The method that was used to perform the action. - :rtype: AccessMethodLogInfo + :rtype: team_log.AccessMethodLogInfo """ if self._access_method_present: return self._access_method_value @@ -38900,9 +39152,11 @@ class PaperChangeDeploymentPolicyDetails(bb.Struct): Changed whether Dropbox Paper, when enabled, is deployed to all members or to specific members. - :ivar new_value: New Dropbox Paper deployment policy. - :ivar previous_value: Previous Dropbox Paper deployment policy. Might be - missing due to historical data gap. + :ivar team_log.PaperChangeDeploymentPolicyDetails.new_value: New Dropbox + Paper deployment policy. + :ivar team_log.PaperChangeDeploymentPolicyDetails.previous_value: Previous + Dropbox Paper deployment policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -39038,7 +39292,8 @@ class PaperChangeMemberLinkPolicyDetails(bb.Struct): """ Changed whether non-members can view Paper docs with link. - :ivar new_value: New paper external link accessibility policy. + :ivar team_log.PaperChangeMemberLinkPolicyDetails.new_value: New paper + external link accessibility policy. """ __slots__ = [ @@ -39060,7 +39315,7 @@ def new_value(self): """ New paper external link accessibility policy. - :rtype: PaperMemberPolicy + :rtype: team_log.PaperMemberPolicy """ if self._new_value_present: return self._new_value_value @@ -39140,9 +39395,11 @@ class PaperChangeMemberPolicyDetails(bb.Struct): Changed whether members can share Paper docs outside team, and if docs are accessible only by team members or anyone by default. - :ivar new_value: New paper external accessibility policy. - :ivar previous_value: Previous paper external accessibility policy. Might be - missing due to historical data gap. + :ivar team_log.PaperChangeMemberPolicyDetails.new_value: New paper external + accessibility policy. + :ivar team_log.PaperChangeMemberPolicyDetails.previous_value: Previous paper + external accessibility policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -39171,7 +39428,7 @@ def new_value(self): """ New paper external accessibility policy. - :rtype: PaperMemberPolicy + :rtype: team_log.PaperMemberPolicy """ if self._new_value_present: return self._new_value_value @@ -39195,7 +39452,7 @@ def previous_value(self): Previous paper external accessibility policy. Might be missing due to historical data gap. - :rtype: PaperMemberPolicy + :rtype: team_log.PaperMemberPolicy """ if self._previous_value_present: return self._previous_value_value @@ -39278,9 +39535,9 @@ class PaperChangePolicyDetails(bb.Struct): """ Enabled/disabled Dropbox Paper for team. - :ivar new_value: New Dropbox Paper policy. - :ivar previous_value: Previous Dropbox Paper policy. Might be missing due to - historical data gap. + :ivar team_log.PaperChangePolicyDetails.new_value: New Dropbox Paper policy. + :ivar team_log.PaperChangePolicyDetails.previous_value: Previous Dropbox + Paper policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -39416,7 +39673,8 @@ class PaperContentAddMemberDetails(bb.Struct): """ Added team member to Paper doc/folder. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperContentAddMemberDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -39517,9 +39775,12 @@ class PaperContentAddToFolderDetails(bb.Struct): """ Added Paper doc/folder to folder. - :ivar event_uuid: Event unique identifier. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar parent_asset_index: Parent asset position in the Assets list. + :ivar team_log.PaperContentAddToFolderDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperContentAddToFolderDetails.target_asset_index: Target + asset position in the Assets list. + :ivar team_log.PaperContentAddToFolderDetails.parent_asset_index: Parent + asset position in the Assets list. """ __slots__ = [ @@ -39682,7 +39943,8 @@ class PaperContentArchiveDetails(bb.Struct): """ Archived Paper doc/folder. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperContentArchiveDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -39783,7 +40045,8 @@ class PaperContentCreateDetails(bb.Struct): """ Created Paper doc/folder. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperContentCreateDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -39884,7 +40147,8 @@ class PaperContentPermanentlyDeleteDetails(bb.Struct): """ Permanently deleted Paper doc/folder. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperContentPermanentlyDeleteDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -39985,9 +40249,12 @@ class PaperContentRemoveFromFolderDetails(bb.Struct): """ Removed Paper doc/folder from folder. - :ivar event_uuid: Event unique identifier. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar parent_asset_index: Parent asset position in the Assets list. + :ivar team_log.PaperContentRemoveFromFolderDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperContentRemoveFromFolderDetails.target_asset_index: + Target asset position in the Assets list. + :ivar team_log.PaperContentRemoveFromFolderDetails.parent_asset_index: + Parent asset position in the Assets list. """ __slots__ = [ @@ -40150,7 +40417,8 @@ class PaperContentRemoveMemberDetails(bb.Struct): """ Removed team member from Paper doc/folder. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperContentRemoveMemberDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -40251,7 +40519,8 @@ class PaperContentRenameDetails(bb.Struct): """ Renamed Paper doc/folder. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperContentRenameDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -40352,7 +40621,8 @@ class PaperContentRestoreDetails(bb.Struct): """ Restored archived Paper doc/folder. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperContentRestoreDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -40453,9 +40723,10 @@ class PaperDocAddCommentDetails(bb.Struct): """ Added Paper doc comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.PaperDocAddCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperDocAddCommentDetails.comment_text: Comment text. Might + be missing due to historical data gap. """ __slots__ = [ @@ -40590,8 +40861,10 @@ class PaperDocChangeMemberRoleDetails(bb.Struct): """ Changed team member permissions for Paper doc. - :ivar event_uuid: Event unique identifier. - :ivar access_type: Paper doc access type. + :ivar team_log.PaperDocChangeMemberRoleDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperDocChangeMemberRoleDetails.access_type: Paper doc access + type. """ __slots__ = [ @@ -40643,7 +40916,7 @@ def access_type(self): """ Paper doc access type. - :rtype: PaperAccessType + :rtype: team_log.PaperAccessType """ if self._access_type_present: return self._access_type_value @@ -40723,11 +40996,13 @@ class PaperDocChangeSharingPolicyDetails(bb.Struct): """ Changed sharing setting for Paper doc. - :ivar event_uuid: Event unique identifier. - :ivar public_sharing_policy: Sharing policy with external users. Might be - missing due to historical data gap. - :ivar team_sharing_policy: Sharing policy with team. Might be missing due to - historical data gap. + :ivar team_log.PaperDocChangeSharingPolicyDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperDocChangeSharingPolicyDetails.public_sharing_policy: + Sharing policy with external users. Might be missing due to historical + data gap. + :ivar team_log.PaperDocChangeSharingPolicyDetails.team_sharing_policy: + Sharing policy with team. Might be missing due to historical data gap. """ __slots__ = [ @@ -40897,10 +41172,14 @@ class PaperDocChangeSubscriptionDetails(bb.Struct): """ Followed/unfollowed Paper doc. - :ivar event_uuid: Event unique identifier. - :ivar new_subscription_level: New doc subscription level. - :ivar previous_subscription_level: Previous doc subscription level. Might be - missing due to historical data gap. + :ivar team_log.PaperDocChangeSubscriptionDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperDocChangeSubscriptionDetails.new_subscription_level: New + doc subscription level. + :ivar + team_log.PaperDocChangeSubscriptionDetails.previous_subscription_level: + Previous doc subscription level. Might be missing due to historical data + gap. """ __slots__ = [ @@ -41067,9 +41346,10 @@ class PaperDocDeleteCommentDetails(bb.Struct): """ Deleted Paper doc comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.PaperDocDeleteCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperDocDeleteCommentDetails.comment_text: Comment text. + Might be missing due to historical data gap. """ __slots__ = [ @@ -41204,7 +41484,7 @@ class PaperDocDeletedDetails(bb.Struct): """ Archived Paper doc. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocDeletedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -41305,8 +41585,9 @@ class PaperDocDownloadDetails(bb.Struct): """ Downloaded Paper doc in specific format. - :ivar event_uuid: Event unique identifier. - :ivar export_file_format: Export file format. + :ivar team_log.PaperDocDownloadDetails.event_uuid: Event unique identifier. + :ivar team_log.PaperDocDownloadDetails.export_file_format: Export file + format. """ __slots__ = [ @@ -41358,7 +41639,7 @@ def export_file_format(self): """ Export file format. - :rtype: PaperDownloadFormat + :rtype: team_log.PaperDownloadFormat """ if self._export_file_format_present: return self._export_file_format_value @@ -41438,9 +41719,10 @@ class PaperDocEditCommentDetails(bb.Struct): """ Edited Paper doc comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.PaperDocEditCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperDocEditCommentDetails.comment_text: Comment text. Might + be missing due to historical data gap. """ __slots__ = [ @@ -41575,7 +41857,7 @@ class PaperDocEditDetails(bb.Struct): """ Edited Paper doc. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocEditDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -41676,7 +41958,7 @@ class PaperDocFollowedDetails(bb.Struct): """ Followed Paper doc. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocFollowedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -41777,7 +42059,7 @@ class PaperDocMentionDetails(bb.Struct): """ Mentioned team member in Paper doc. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocMentionDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -41878,9 +42160,11 @@ class PaperDocOwnershipChangedDetails(bb.Struct): """ Transferred ownership of Paper doc. - :ivar event_uuid: Event unique identifier. - :ivar old_owner_user_id: Previous owner. - :ivar new_owner_user_id: New owner. + :ivar team_log.PaperDocOwnershipChangedDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperDocOwnershipChangedDetails.old_owner_user_id: Previous + owner. + :ivar team_log.PaperDocOwnershipChangedDetails.new_owner_user_id: New owner. """ __slots__ = [ @@ -42046,7 +42330,8 @@ class PaperDocRequestAccessDetails(bb.Struct): """ Requested access to Paper doc. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocRequestAccessDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -42147,9 +42432,10 @@ class PaperDocResolveCommentDetails(bb.Struct): """ Resolved Paper doc comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.PaperDocResolveCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperDocResolveCommentDetails.comment_text: Comment text. + Might be missing due to historical data gap. """ __slots__ = [ @@ -42284,7 +42570,7 @@ class PaperDocRevertDetails(bb.Struct): """ Restored Paper doc to previous version. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocRevertDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -42385,7 +42671,8 @@ class PaperDocSlackShareDetails(bb.Struct): """ Shared Paper doc via Slack. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocSlackShareDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -42486,7 +42773,8 @@ class PaperDocTeamInviteDetails(bb.Struct): """ Shared Paper doc with team member. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocTeamInviteDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -42587,7 +42875,7 @@ class PaperDocTrashedDetails(bb.Struct): """ Deleted Paper doc. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocTrashedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -42688,9 +42976,10 @@ class PaperDocUnresolveCommentDetails(bb.Struct): """ Unresolved Paper doc comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. Might be missing due to historical data - gap. + :ivar team_log.PaperDocUnresolveCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperDocUnresolveCommentDetails.comment_text: Comment text. + Might be missing due to historical data gap. """ __slots__ = [ @@ -42825,7 +43114,7 @@ class PaperDocUntrashedDetails(bb.Struct): """ Restored Paper doc. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocUntrashedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -42926,7 +43215,7 @@ class PaperDocViewDetails(bb.Struct): """ Viewed Paper doc. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperDocViewDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -43027,8 +43316,8 @@ class PaperDocumentLogInfo(bb.Struct): """ Paper document's logged information. - :ivar doc_id: Papers document Id. - :ivar doc_title: Paper document title. + :ivar team_log.PaperDocumentLogInfo.doc_id: Papers document Id. + :ivar team_log.PaperDocumentLogInfo.doc_title: Paper document title. """ __slots__ = [ @@ -43316,7 +43605,8 @@ class PaperExternalViewAllowDetails(bb.Struct): """ Changed Paper external sharing setting to anyone. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperExternalViewAllowDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -43417,7 +43707,8 @@ class PaperExternalViewDefaultTeamDetails(bb.Struct): """ Changed Paper external sharing setting to default team. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperExternalViewDefaultTeamDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -43518,7 +43809,8 @@ class PaperExternalViewForbidDetails(bb.Struct): """ Changed Paper external sharing setting to team-only. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperExternalViewForbidDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -43619,10 +43911,14 @@ class PaperFolderChangeSubscriptionDetails(bb.Struct): """ Followed/unfollowed Paper folder. - :ivar event_uuid: Event unique identifier. - :ivar new_subscription_level: New folder subscription level. - :ivar previous_subscription_level: Previous folder subscription level. Might - be missing due to historical data gap. + :ivar team_log.PaperFolderChangeSubscriptionDetails.event_uuid: Event unique + identifier. + :ivar team_log.PaperFolderChangeSubscriptionDetails.new_subscription_level: + New folder subscription level. + :ivar + team_log.PaperFolderChangeSubscriptionDetails.previous_subscription_level: + Previous folder subscription level. Might be missing due to historical + data gap. """ __slots__ = [ @@ -43789,7 +44085,8 @@ class PaperFolderDeletedDetails(bb.Struct): """ Archived Paper folder. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperFolderDeletedDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -43890,7 +44187,8 @@ class PaperFolderFollowedDetails(bb.Struct): """ Followed Paper folder. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperFolderFollowedDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -43991,8 +44289,8 @@ class PaperFolderLogInfo(bb.Struct): """ Paper folder's logged information. - :ivar folder_id: Papers folder Id. - :ivar folder_name: Paper folder name. + :ivar team_log.PaperFolderLogInfo.folder_id: Papers folder Id. + :ivar team_log.PaperFolderLogInfo.folder_name: Paper folder name. """ __slots__ = [ @@ -44077,7 +44375,8 @@ class PaperFolderTeamInviteDetails(bb.Struct): """ Shared Paper folder with member. - :ivar event_uuid: Event unique identifier. + :ivar team_log.PaperFolderTeamInviteDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -44241,8 +44540,9 @@ class ParticipantLogInfo(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar UserLogInfo user: A user with a Dropbox account. - :ivar GroupLogInfo group: Group details. + :ivar UserLogInfo team_log.ParticipantLogInfo.user: A user with a Dropbox + account. + :ivar GroupLogInfo team_log.ParticipantLogInfo.group: Group details. """ _catch_all = 'other' @@ -44255,8 +44555,8 @@ def user(cls, val): Create an instance of this class set to the ``user`` tag with value ``val``. - :param UserLogInfo val: - :rtype: ParticipantLogInfo + :param team_log.UserLogInfo val: + :rtype: team_log.ParticipantLogInfo """ return cls('user', val) @@ -44266,8 +44566,8 @@ def group(cls, val): Create an instance of this class set to the ``group`` tag with value ``val``. - :param GroupLogInfo val: - :rtype: ParticipantLogInfo + :param team_log.GroupLogInfo val: + :rtype: team_log.ParticipantLogInfo """ return cls('group', val) @@ -44301,7 +44601,7 @@ def get_user(self): Only call this if :meth:`is_user` is true. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if not self.is_user(): raise AttributeError("tag 'user' not set") @@ -44313,7 +44613,7 @@ def get_group(self): Only call this if :meth:`is_group` is true. - :rtype: GroupLogInfo + :rtype: team_log.GroupLogInfo """ if not self.is_group(): raise AttributeError("tag 'group' not set") @@ -44592,10 +44892,10 @@ class PathLogInfo(bb.Struct): """ Path's details. - :ivar contextual: Fully qualified path relative to event's context. Might be - missing due to historical data gap. - :ivar namespace_relative: Path relative to the namespace containing the - content. + :ivar team_log.PathLogInfo.contextual: Fully qualified path relative to + event's context. Might be missing due to historical data gap. + :ivar team_log.PathLogInfo.namespace_relative: Path relative to the + namespace containing the content. """ __slots__ = [ @@ -44651,7 +44951,7 @@ def namespace_relative(self): """ Path relative to the namespace containing the content. - :rtype: NamespaceRelativePathLogInfo + :rtype: team_log.NamespaceRelativePathLogInfo """ if self._namespace_relative_present: return self._namespace_relative_value @@ -44684,9 +44984,11 @@ class PermanentDeleteChangePolicyDetails(bb.Struct): """ Enabled/disabled ability of team members to permanently delete content. - :ivar new_value: New permanent delete content policy. - :ivar previous_value: Previous permanent delete content policy. Might be - missing due to historical data gap. + :ivar team_log.PermanentDeleteChangePolicyDetails.new_value: New permanent + delete content policy. + :ivar team_log.PermanentDeleteChangePolicyDetails.previous_value: Previous + permanent delete content policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -44715,7 +45017,7 @@ def new_value(self): """ New permanent delete content policy. - :rtype: ContentPermanentDeletePolicy + :rtype: team_log.ContentPermanentDeletePolicy """ if self._new_value_present: return self._new_value_value @@ -44739,7 +45041,7 @@ def previous_value(self): Previous permanent delete content policy. Might be missing due to historical data gap. - :rtype: ContentPermanentDeletePolicy + :rtype: team_log.ContentPermanentDeletePolicy """ if self._previous_value_present: return self._previous_value_value @@ -44909,8 +45211,10 @@ class RelocateAssetReferencesLogInfo(bb.Struct): Provides the indices of the source asset and the destination asset for a relocate action. - :ivar src_asset_index: Source asset position in the Assets list. - :ivar dest_asset_index: Destination asset position in the Assets list. + :ivar team_log.RelocateAssetReferencesLogInfo.src_asset_index: Source asset + position in the Assets list. + :ivar team_log.RelocateAssetReferencesLogInfo.dest_asset_index: Destination + asset position in the Assets list. """ __slots__ = [ @@ -44995,8 +45299,8 @@ class ResellerLogInfo(bb.Struct): """ Reseller information. - :ivar reseller_name: Reseller name. - :ivar reseller_email: Reseller email. + :ivar team_log.ResellerLogInfo.reseller_name: Reseller name. + :ivar team_log.ResellerLogInfo.reseller_email: Reseller email. """ __slots__ = [ @@ -45264,8 +45568,10 @@ class SecondaryMailsPolicyChangedDetails(bb.Struct): """ Secondary mails policy changed. - :ivar previous_value: Previous secondary mails policy. - :ivar new_value: New secondary mails policy. + :ivar team_log.SecondaryMailsPolicyChangedDetails.previous_value: Previous + secondary mails policy. + :ivar team_log.SecondaryMailsPolicyChangedDetails.new_value: New secondary + mails policy. """ __slots__ = [ @@ -45294,7 +45600,7 @@ def previous_value(self): """ Previous secondary mails policy. - :rtype: SecondaryMailsPolicy + :rtype: team_log.SecondaryMailsPolicy """ if self._previous_value_present: return self._previous_value_value @@ -45317,7 +45623,7 @@ def new_value(self): """ New secondary mails policy. - :rtype: SecondaryMailsPolicy + :rtype: team_log.SecondaryMailsPolicy """ if self._new_value_present: return self._new_value_value @@ -45397,11 +45703,13 @@ class SfAddGroupDetails(bb.Struct): """ Added team to shared folder. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. - :ivar sharing_permission: Sharing permission. Might be missing due to - historical data gap. - :ivar team_name: Team name. + :ivar team_log.SfAddGroupDetails.target_asset_index: Target asset position + in the Assets list. + :ivar team_log.SfAddGroupDetails.original_folder_name: Original shared + folder name. + :ivar team_log.SfAddGroupDetails.sharing_permission: Sharing permission. + Might be missing due to historical data gap. + :ivar team_log.SfAddGroupDetails.team_name: Team name. """ __slots__ = [ @@ -45598,10 +45906,13 @@ class SfAllowNonMembersToViewSharedLinksDetails(bb.Struct): """ Allowed non-collaborators to view links to files in shared folder. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. - :ivar shared_folder_type: Shared folder type. Might be missing due to - historical data gap. + :ivar team_log.SfAllowNonMembersToViewSharedLinksDetails.target_asset_index: + Target asset position in the Assets list. + :ivar + team_log.SfAllowNonMembersToViewSharedLinksDetails.original_folder_name: + Original shared folder name. + :ivar team_log.SfAllowNonMembersToViewSharedLinksDetails.shared_folder_type: + Shared folder type. Might be missing due to historical data gap. """ __slots__ = [ @@ -45767,12 +46078,15 @@ class SfExternalInviteWarnDetails(bb.Struct): """ Set team members to see warning before sharing folders outside team. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. - :ivar new_sharing_permission: New sharing permission. Might be missing due - to historical data gap. - :ivar previous_sharing_permission: Previous sharing permission. Might be - missing due to historical data gap. + :ivar team_log.SfExternalInviteWarnDetails.target_asset_index: Target asset + position in the Assets list. + :ivar team_log.SfExternalInviteWarnDetails.original_folder_name: Original + shared folder name. + :ivar team_log.SfExternalInviteWarnDetails.new_sharing_permission: New + sharing permission. Might be missing due to historical data gap. + :ivar team_log.SfExternalInviteWarnDetails.previous_sharing_permission: + Previous sharing permission. Might be missing due to historical data + gap. """ __slots__ = [ @@ -45973,12 +46287,15 @@ class SfFbInviteChangeRoleDetails(bb.Struct): """ Changed Facebook user's role in shared folder. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. - :ivar previous_sharing_permission: Previous sharing permission. Might be - missing due to historical data gap. - :ivar new_sharing_permission: New sharing permission. Might be missing due - to historical data gap. + :ivar team_log.SfFbInviteChangeRoleDetails.target_asset_index: Target asset + position in the Assets list. + :ivar team_log.SfFbInviteChangeRoleDetails.original_folder_name: Original + shared folder name. + :ivar team_log.SfFbInviteChangeRoleDetails.previous_sharing_permission: + Previous sharing permission. Might be missing due to historical data + gap. + :ivar team_log.SfFbInviteChangeRoleDetails.new_sharing_permission: New + sharing permission. Might be missing due to historical data gap. """ __slots__ = [ @@ -46179,10 +46496,12 @@ class SfFbInviteDetails(bb.Struct): """ Invited Facebook users to shared folder. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. - :ivar sharing_permission: Sharing permission. Might be missing due to - historical data gap. + :ivar team_log.SfFbInviteDetails.target_asset_index: Target asset position + in the Assets list. + :ivar team_log.SfFbInviteDetails.original_folder_name: Original shared + folder name. + :ivar team_log.SfFbInviteDetails.sharing_permission: Sharing permission. + Might be missing due to historical data gap. """ __slots__ = [ @@ -46348,8 +46667,10 @@ class SfFbUninviteDetails(bb.Struct): """ Uninvited Facebook user from shared folder. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. + :ivar team_log.SfFbUninviteDetails.target_asset_index: Target asset position + in the Assets list. + :ivar team_log.SfFbUninviteDetails.original_folder_name: Original shared + folder name. """ __slots__ = [ @@ -46481,7 +46802,8 @@ class SfInviteGroupDetails(bb.Struct): """ Invited group to shared folder. - :ivar target_asset_index: Target asset position in the Assets list. + :ivar team_log.SfInviteGroupDetails.target_asset_index: Target asset + position in the Assets list. """ __slots__ = [ @@ -46582,8 +46904,10 @@ class SfTeamGrantAccessDetails(bb.Struct): """ Granted access to shared folder. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. + :ivar team_log.SfTeamGrantAccessDetails.target_asset_index: Target asset + position in the Assets list. + :ivar team_log.SfTeamGrantAccessDetails.original_folder_name: Original + shared folder name. """ __slots__ = [ @@ -46715,12 +47039,15 @@ class SfTeamInviteChangeRoleDetails(bb.Struct): """ Changed team member's role in shared folder. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. - :ivar new_sharing_permission: New sharing permission. Might be missing due - to historical data gap. - :ivar previous_sharing_permission: Previous sharing permission. Might be - missing due to historical data gap. + :ivar team_log.SfTeamInviteChangeRoleDetails.target_asset_index: Target + asset position in the Assets list. + :ivar team_log.SfTeamInviteChangeRoleDetails.original_folder_name: Original + shared folder name. + :ivar team_log.SfTeamInviteChangeRoleDetails.new_sharing_permission: New + sharing permission. Might be missing due to historical data gap. + :ivar team_log.SfTeamInviteChangeRoleDetails.previous_sharing_permission: + Previous sharing permission. Might be missing due to historical data + gap. """ __slots__ = [ @@ -46921,10 +47248,12 @@ class SfTeamInviteDetails(bb.Struct): """ Invited team members to shared folder. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. - :ivar sharing_permission: Sharing permission. Might be missing due to - historical data gap. + :ivar team_log.SfTeamInviteDetails.target_asset_index: Target asset position + in the Assets list. + :ivar team_log.SfTeamInviteDetails.original_folder_name: Original shared + folder name. + :ivar team_log.SfTeamInviteDetails.sharing_permission: Sharing permission. + Might be missing due to historical data gap. """ __slots__ = [ @@ -47090,8 +47419,10 @@ class SfTeamJoinDetails(bb.Struct): """ Joined team member's shared folder. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. + :ivar team_log.SfTeamJoinDetails.target_asset_index: Target asset position + in the Assets list. + :ivar team_log.SfTeamJoinDetails.original_folder_name: Original shared + folder name. """ __slots__ = [ @@ -47176,11 +47507,14 @@ class SfTeamJoinFromOobLinkDetails(bb.Struct): """ Joined team member's shared folder from link. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. - :ivar token_key: Shared link token key. - :ivar sharing_permission: Sharing permission. Might be missing due to - historical data gap. + :ivar team_log.SfTeamJoinFromOobLinkDetails.target_asset_index: Target asset + position in the Assets list. + :ivar team_log.SfTeamJoinFromOobLinkDetails.original_folder_name: Original + shared folder name. + :ivar team_log.SfTeamJoinFromOobLinkDetails.token_key: Shared link token + key. + :ivar team_log.SfTeamJoinFromOobLinkDetails.sharing_permission: Sharing + permission. Might be missing due to historical data gap. """ __slots__ = [ @@ -47427,8 +47761,10 @@ class SfTeamUninviteDetails(bb.Struct): """ Unshared folder with team member. - :ivar target_asset_index: Target asset position in the Assets list. - :ivar original_folder_name: Original shared folder name. + :ivar team_log.SfTeamUninviteDetails.target_asset_index: Target asset + position in the Assets list. + :ivar team_log.SfTeamUninviteDetails.original_folder_name: Original shared + folder name. """ __slots__ = [ @@ -47560,8 +47896,9 @@ class SharedContentAddInviteesDetails(bb.Struct): """ Invited user to Dropbox and added them to shared file/folder. - :ivar shared_content_access_level: Shared content access level. - :ivar invitees: A list of invitees. + :ivar team_log.SharedContentAddInviteesDetails.shared_content_access_level: + Shared content access level. + :ivar team_log.SharedContentAddInviteesDetails.invitees: A list of invitees. """ __slots__ = [ @@ -47693,8 +48030,9 @@ class SharedContentAddLinkExpiryDetails(bb.Struct): """ Added expiration date to link for shared file/folder. - :ivar new_value: New shared content link expiration date. Might be missing - due to historical data gap. + :ivar team_log.SharedContentAddLinkExpiryDetails.new_value: New shared + content link expiration date. Might be missing due to historical data + gap. """ __slots__ = [ @@ -47867,7 +48205,8 @@ class SharedContentAddMemberDetails(bb.Struct): """ Added users and/or groups to shared file/folder. - :ivar shared_content_access_level: Shared content access level. + :ivar team_log.SharedContentAddMemberDetails.shared_content_access_level: + Shared content access level. """ __slots__ = [ @@ -47968,9 +48307,10 @@ class SharedContentChangeDownloadsPolicyDetails(bb.Struct): """ Changed whether members can download shared file/folder. - :ivar new_value: New downloads policy. - :ivar previous_value: Previous downloads policy. Might be missing due to - historical data gap. + :ivar team_log.SharedContentChangeDownloadsPolicyDetails.new_value: New + downloads policy. + :ivar team_log.SharedContentChangeDownloadsPolicyDetails.previous_value: + Previous downloads policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -47999,7 +48339,7 @@ def new_value(self): """ New downloads policy. - :rtype: DownloadPolicyType + :rtype: team_log.DownloadPolicyType """ if self._new_value_present: return self._new_value_value @@ -48022,7 +48362,7 @@ def previous_value(self): """ Previous downloads policy. Might be missing due to historical data gap. - :rtype: DownloadPolicyType + :rtype: team_log.DownloadPolicyType """ if self._previous_value_present: return self._previous_value_value @@ -48106,10 +48446,12 @@ class SharedContentChangeInviteeRoleDetails(bb.Struct): Changed access type of invitee to shared file/folder before invite was accepted. - :ivar previous_access_level: Previous access level. Might be missing due to - historical data gap. - :ivar new_access_level: New access level. - :ivar invitee: The invitee whose role was changed. + :ivar team_log.SharedContentChangeInviteeRoleDetails.previous_access_level: + Previous access level. Might be missing due to historical data gap. + :ivar team_log.SharedContentChangeInviteeRoleDetails.new_access_level: New + access level. + :ivar team_log.SharedContentChangeInviteeRoleDetails.invitee: The invitee + whose role was changed. """ __slots__ = [ @@ -48275,8 +48617,10 @@ class SharedContentChangeLinkAudienceDetails(bb.Struct): """ Changed link audience of shared file/folder. - :ivar new_value: New link audience value. - :ivar previous_value: Previous link audience value. + :ivar team_log.SharedContentChangeLinkAudienceDetails.new_value: New link + audience value. + :ivar team_log.SharedContentChangeLinkAudienceDetails.previous_value: + Previous link audience value. """ __slots__ = [ @@ -48411,10 +48755,12 @@ class SharedContentChangeLinkExpiryDetails(bb.Struct): """ Changed link expiration of shared file/folder. - :ivar new_value: New shared content link expiration date. Might be missing - due to historical data gap. - :ivar previous_value: Previous shared content link expiration date. Might be - missing due to historical data gap. + :ivar team_log.SharedContentChangeLinkExpiryDetails.new_value: New shared + content link expiration date. Might be missing due to historical data + gap. + :ivar team_log.SharedContentChangeLinkExpiryDetails.previous_value: Previous + shared content link expiration date. Might be missing due to historical + data gap. """ __slots__ = [ @@ -48622,9 +48968,10 @@ class SharedContentChangeMemberRoleDetails(bb.Struct): """ Changed access type of shared file/folder member. - :ivar previous_access_level: Previous access level. Might be missing due to - historical data gap. - :ivar new_access_level: New access level. + :ivar team_log.SharedContentChangeMemberRoleDetails.previous_access_level: + Previous access level. Might be missing due to historical data gap. + :ivar team_log.SharedContentChangeMemberRoleDetails.new_access_level: New + access level. """ __slots__ = [ @@ -48759,9 +49106,10 @@ class SharedContentChangeViewerInfoPolicyDetails(bb.Struct): """ Changed whether members can see who viewed shared file/folder. - :ivar new_value: New viewer info policy. - :ivar previous_value: Previous view info policy. Might be missing due to - historical data gap. + :ivar team_log.SharedContentChangeViewerInfoPolicyDetails.new_value: New + viewer info policy. + :ivar team_log.SharedContentChangeViewerInfoPolicyDetails.previous_value: + Previous view info policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -48896,7 +49244,8 @@ class SharedContentClaimInvitationDetails(bb.Struct): """ Acquired membership of shared file/folder by accepting invite. - :ivar shared_content_link: Shared content link. + :ivar team_log.SharedContentClaimInvitationDetails.shared_content_link: + Shared content link. """ __slots__ = [ @@ -49000,10 +49349,14 @@ class SharedContentCopyDetails(bb.Struct): """ Copied shared file/folder to own Dropbox. - :ivar shared_content_link: Shared content link. - :ivar shared_content_owner: The shared content owner. - :ivar shared_content_access_level: Shared content access level. - :ivar destination_path: The path where the member saved the content. + :ivar team_log.SharedContentCopyDetails.shared_content_link: Shared content + link. + :ivar team_log.SharedContentCopyDetails.shared_content_owner: The shared + content owner. + :ivar team_log.SharedContentCopyDetails.shared_content_access_level: Shared + content access level. + :ivar team_log.SharedContentCopyDetails.destination_path: The path where the + member saved the content. """ __slots__ = [ @@ -49069,7 +49422,7 @@ def shared_content_owner(self): """ The shared content owner. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if self._shared_content_owner_present: return self._shared_content_owner_value @@ -49200,9 +49553,12 @@ class SharedContentDownloadDetails(bb.Struct): """ Downloaded shared file/folder. - :ivar shared_content_link: Shared content link. - :ivar shared_content_owner: The shared content owner. - :ivar shared_content_access_level: Shared content access level. + :ivar team_log.SharedContentDownloadDetails.shared_content_link: Shared + content link. + :ivar team_log.SharedContentDownloadDetails.shared_content_owner: The shared + content owner. + :ivar team_log.SharedContentDownloadDetails.shared_content_access_level: + Shared content access level. """ __slots__ = [ @@ -49261,7 +49617,7 @@ def shared_content_owner(self): """ The shared content owner. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if self._shared_content_owner_present: return self._shared_content_owner_value @@ -49436,7 +49792,8 @@ class SharedContentRemoveInviteesDetails(bb.Struct): """ Removed invitee from shared file/folder before invite was accepted. - :ivar invitees: A list of invitees. + :ivar team_log.SharedContentRemoveInviteesDetails.invitees: A list of + invitees. """ __slots__ = [ @@ -49537,8 +49894,9 @@ class SharedContentRemoveLinkExpiryDetails(bb.Struct): """ Removed link expiration date of shared file/folder. - :ivar previous_value: Previous shared content link expiration date. Might be - missing due to historical data gap. + :ivar team_log.SharedContentRemoveLinkExpiryDetails.previous_value: Previous + shared content link expiration date. Might be missing due to historical + data gap. """ __slots__ = [ @@ -49711,7 +50069,8 @@ class SharedContentRemoveMemberDetails(bb.Struct): """ Removed user/group from shared file/folder. - :ivar shared_content_access_level: Shared content access level. + :ivar team_log.SharedContentRemoveMemberDetails.shared_content_access_level: + Shared content access level. """ __slots__ = [ @@ -49815,7 +50174,8 @@ class SharedContentRequestAccessDetails(bb.Struct): """ Requested access to shared file/folder. - :ivar shared_content_link: Shared content link. + :ivar team_log.SharedContentRequestAccessDetails.shared_content_link: Shared + content link. """ __slots__ = [ @@ -49987,9 +50347,12 @@ class SharedContentViewDetails(bb.Struct): """ Previewed shared file/folder. - :ivar shared_content_link: Shared content link. - :ivar shared_content_owner: The shared content owner. - :ivar shared_content_access_level: Shared content access level. + :ivar team_log.SharedContentViewDetails.shared_content_link: Shared content + link. + :ivar team_log.SharedContentViewDetails.shared_content_owner: The shared + content owner. + :ivar team_log.SharedContentViewDetails.shared_content_access_level: Shared + content access level. """ __slots__ = [ @@ -50048,7 +50411,7 @@ def shared_content_owner(self): """ The shared content owner. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if self._shared_content_owner_present: return self._shared_content_owner_value @@ -50155,9 +50518,10 @@ class SharedFolderChangeLinkPolicyDetails(bb.Struct): """ Changed who can access shared folder via link. - :ivar new_value: New shared folder link policy. - :ivar previous_value: Previous shared folder link policy. Might be missing - due to historical data gap. + :ivar team_log.SharedFolderChangeLinkPolicyDetails.new_value: New shared + folder link policy. + :ivar team_log.SharedFolderChangeLinkPolicyDetails.previous_value: Previous + shared folder link policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -50293,9 +50657,12 @@ class SharedFolderChangeMembersInheritancePolicyDetails(bb.Struct): """ Changed whether shared folder inherits members from parent folder. - :ivar new_value: New member inheritance policy. - :ivar previous_value: Previous member inheritance policy. Might be missing - due to historical data gap. + :ivar team_log.SharedFolderChangeMembersInheritancePolicyDetails.new_value: + New member inheritance policy. + :ivar + team_log.SharedFolderChangeMembersInheritancePolicyDetails.previous_value: + Previous member inheritance policy. Might be missing due to historical + data gap. """ __slots__ = [ @@ -50324,7 +50691,7 @@ def new_value(self): """ New member inheritance policy. - :rtype: SharedFolderMembersInheritancePolicy + :rtype: team_log.SharedFolderMembersInheritancePolicy """ if self._new_value_present: return self._new_value_value @@ -50348,7 +50715,7 @@ def previous_value(self): Previous member inheritance policy. Might be missing due to historical data gap. - :rtype: SharedFolderMembersInheritancePolicy + :rtype: team_log.SharedFolderMembersInheritancePolicy """ if self._previous_value_present: return self._previous_value_value @@ -50431,9 +50798,12 @@ class SharedFolderChangeMembersManagementPolicyDetails(bb.Struct): """ Changed who can add/remove members of shared folder. - :ivar new_value: New members management policy. - :ivar previous_value: Previous members management policy. Might be missing - due to historical data gap. + :ivar team_log.SharedFolderChangeMembersManagementPolicyDetails.new_value: + New members management policy. + :ivar + team_log.SharedFolderChangeMembersManagementPolicyDetails.previous_value: + Previous members management policy. Might be missing due to historical + data gap. """ __slots__ = [ @@ -50569,9 +50939,11 @@ class SharedFolderChangeMembersPolicyDetails(bb.Struct): """ Changed who can become member of shared folder. - :ivar new_value: New external invite policy. - :ivar previous_value: Previous external invite policy. Might be missing due - to historical data gap. + :ivar team_log.SharedFolderChangeMembersPolicyDetails.new_value: New + external invite policy. + :ivar team_log.SharedFolderChangeMembersPolicyDetails.previous_value: + Previous external invite policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -50707,8 +51079,8 @@ class SharedFolderCreateDetails(bb.Struct): """ Created shared folder. - :ivar target_ns_id: Target namespace ID. Might be missing due to historical - data gap. + :ivar team_log.SharedFolderCreateDetails.target_ns_id: Target namespace ID. + Might be missing due to historical data gap. """ __slots__ = [ @@ -50997,14 +51369,14 @@ class SharedFolderNestDetails(bb.Struct): """ Changed parent of shared folder. - :ivar previous_parent_ns_id: Previous parent namespace ID. Might be missing - due to historical data gap. - :ivar new_parent_ns_id: New parent namespace ID. Might be missing due to - historical data gap. - :ivar previous_ns_path: Previous namespace path. Might be missing due to - historical data gap. - :ivar new_ns_path: New namespace path. Might be missing due to historical - data gap. + :ivar team_log.SharedFolderNestDetails.previous_parent_ns_id: Previous + parent namespace ID. Might be missing due to historical data gap. + :ivar team_log.SharedFolderNestDetails.new_parent_ns_id: New parent + namespace ID. Might be missing due to historical data gap. + :ivar team_log.SharedFolderNestDetails.previous_ns_path: Previous namespace + path. Might be missing due to historical data gap. + :ivar team_log.SharedFolderNestDetails.new_ns_path: New namespace path. + Might be missing due to historical data gap. """ __slots__ = [ @@ -51211,9 +51583,10 @@ class SharedFolderTransferOwnershipDetails(bb.Struct): """ Transferred ownership of shared folder to another member. - :ivar previous_owner_email: The email address of the previous shared folder - owner. - :ivar new_owner_email: The email address of the new shared folder owner. + :ivar team_log.SharedFolderTransferOwnershipDetails.previous_owner_email: + The email address of the previous shared folder owner. + :ivar team_log.SharedFolderTransferOwnershipDetails.new_owner_email: The + email address of the new shared folder owner. """ __slots__ = [ @@ -51475,7 +51848,8 @@ class SharedLinkAddExpiryDetails(bb.Struct): """ Added shared link expiration date. - :ivar new_value: New shared link expiration date. + :ivar team_log.SharedLinkAddExpiryDetails.new_value: New shared link + expiration date. """ __slots__ = [ @@ -51576,10 +51950,10 @@ class SharedLinkChangeExpiryDetails(bb.Struct): """ Changed shared link expiration date. - :ivar new_value: New shared link expiration date. Might be missing due to - historical data gap. - :ivar previous_value: Previous shared link expiration date. Might be missing - due to historical data gap. + :ivar team_log.SharedLinkChangeExpiryDetails.new_value: New shared link + expiration date. Might be missing due to historical data gap. + :ivar team_log.SharedLinkChangeExpiryDetails.previous_value: Previous shared + link expiration date. Might be missing due to historical data gap. """ __slots__ = [ @@ -51719,9 +52093,10 @@ class SharedLinkChangeVisibilityDetails(bb.Struct): """ Changed visibility of shared link. - :ivar new_value: New shared link visibility. - :ivar previous_value: Previous shared link visibility. Might be missing due - to historical data gap. + :ivar team_log.SharedLinkChangeVisibilityDetails.new_value: New shared link + visibility. + :ivar team_log.SharedLinkChangeVisibilityDetails.previous_value: Previous + shared link visibility. Might be missing due to historical data gap. """ __slots__ = [ @@ -51750,7 +52125,7 @@ def new_value(self): """ New shared link visibility. - :rtype: SharedLinkVisibility + :rtype: team_log.SharedLinkVisibility """ if self._new_value_present: return self._new_value_value @@ -51774,7 +52149,7 @@ def previous_value(self): Previous shared link visibility. Might be missing due to historical data gap. - :rtype: SharedLinkVisibility + :rtype: team_log.SharedLinkVisibility """ if self._previous_value_present: return self._previous_value_value @@ -51857,8 +52232,8 @@ class SharedLinkCopyDetails(bb.Struct): """ Added file/folder to Dropbox from shared link. - :ivar shared_link_owner: Shared link owner details. Might be missing due to - historical data gap. + :ivar team_log.SharedLinkCopyDetails.shared_link_owner: Shared link owner + details. Might be missing due to historical data gap. """ __slots__ = [ @@ -51880,7 +52255,7 @@ def shared_link_owner(self): """ Shared link owner details. Might be missing due to historical data gap. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if self._shared_link_owner_present: return self._shared_link_owner_value @@ -51962,8 +52337,8 @@ class SharedLinkCreateDetails(bb.Struct): """ Created shared link. - :ivar shared_link_access_level: Defines who can access the shared link. - Might be missing due to historical data gap. + :ivar team_log.SharedLinkCreateDetails.shared_link_access_level: Defines who + can access the shared link. Might be missing due to historical data gap. """ __slots__ = [ @@ -51986,7 +52361,7 @@ def shared_link_access_level(self): Defines who can access the shared link. Might be missing due to historical data gap. - :rtype: SharedLinkAccessLevel + :rtype: team_log.SharedLinkAccessLevel """ if self._shared_link_access_level_present: return self._shared_link_access_level_value @@ -52068,8 +52443,8 @@ class SharedLinkDisableDetails(bb.Struct): """ Removed shared link. - :ivar shared_link_owner: Shared link owner details. Might be missing due to - historical data gap. + :ivar team_log.SharedLinkDisableDetails.shared_link_owner: Shared link owner + details. Might be missing due to historical data gap. """ __slots__ = [ @@ -52091,7 +52466,7 @@ def shared_link_owner(self): """ Shared link owner details. Might be missing due to historical data gap. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if self._shared_link_owner_present: return self._shared_link_owner_value @@ -52173,8 +52548,8 @@ class SharedLinkDownloadDetails(bb.Struct): """ Downloaded file/folder from shared link. - :ivar shared_link_owner: Shared link owner details. Might be missing due to - historical data gap. + :ivar team_log.SharedLinkDownloadDetails.shared_link_owner: Shared link + owner details. Might be missing due to historical data gap. """ __slots__ = [ @@ -52196,7 +52571,7 @@ def shared_link_owner(self): """ Shared link owner details. Might be missing due to historical data gap. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if self._shared_link_owner_present: return self._shared_link_owner_value @@ -52278,8 +52653,8 @@ class SharedLinkRemoveExpiryDetails(bb.Struct): """ Removed shared link expiration date. - :ivar previous_value: Previous shared link expiration date. Might be missing - due to historical data gap. + :ivar team_log.SharedLinkRemoveExpiryDetails.previous_value: Previous shared + link expiration date. Might be missing due to historical data gap. """ __slots__ = [ @@ -52384,10 +52759,10 @@ class SharedLinkShareDetails(bb.Struct): """ Added members as audience of shared link. - :ivar shared_link_owner: Shared link owner details. Might be missing due to - historical data gap. - :ivar external_users: Users without a Dropbox account that were added as - shared link audience. + :ivar team_log.SharedLinkShareDetails.shared_link_owner: Shared link owner + details. Might be missing due to historical data gap. + :ivar team_log.SharedLinkShareDetails.external_users: Users without a + Dropbox account that were added as shared link audience. """ __slots__ = [ @@ -52416,7 +52791,7 @@ def shared_link_owner(self): """ Shared link owner details. Might be missing due to historical data gap. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if self._shared_link_owner_present: return self._shared_link_owner_value @@ -52442,7 +52817,7 @@ def external_users(self): """ Users without a Dropbox account that were added as shared link audience. - :rtype: list of [ExternalUserLogInfo] + :rtype: list of [team_log.ExternalUserLogInfo] """ if self._external_users_present: return self._external_users_value @@ -52525,8 +52900,8 @@ class SharedLinkViewDetails(bb.Struct): """ Opened shared link. - :ivar shared_link_owner: Shared link owner details. Might be missing due to - historical data gap. + :ivar team_log.SharedLinkViewDetails.shared_link_owner: Shared link owner + details. Might be missing due to historical data gap. """ __slots__ = [ @@ -52548,7 +52923,7 @@ def shared_link_owner(self): """ Shared link owner details. Might be missing due to historical data gap. - :rtype: UserLogInfo + :rtype: team_log.UserLogInfo """ if self._shared_link_owner_present: return self._shared_link_owner_value @@ -52757,9 +53132,10 @@ class SharingChangeFolderJoinPolicyDetails(bb.Struct): """ Changed whether team members can join shared folders owned outside team. - :ivar new_value: New external join policy. - :ivar previous_value: Previous external join policy. Might be missing due to - historical data gap. + :ivar team_log.SharingChangeFolderJoinPolicyDetails.new_value: New external + join policy. + :ivar team_log.SharingChangeFolderJoinPolicyDetails.previous_value: Previous + external join policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -52788,7 +53164,7 @@ def new_value(self): """ New external join policy. - :rtype: SharingFolderJoinPolicy + :rtype: team_log.SharingFolderJoinPolicy """ if self._new_value_present: return self._new_value_value @@ -52812,7 +53188,7 @@ def previous_value(self): Previous external join policy. Might be missing due to historical data gap. - :rtype: SharingFolderJoinPolicy + :rtype: team_log.SharingFolderJoinPolicy """ if self._previous_value_present: return self._previous_value_value @@ -52896,9 +53272,11 @@ class SharingChangeLinkPolicyDetails(bb.Struct): Changed whether members can share links outside team, and if links are accessible only by team members or anyone by default. - :ivar new_value: New external link accessibility policy. - :ivar previous_value: Previous external link accessibility policy. Might be - missing due to historical data gap. + :ivar team_log.SharingChangeLinkPolicyDetails.new_value: New external link + accessibility policy. + :ivar team_log.SharingChangeLinkPolicyDetails.previous_value: Previous + external link accessibility policy. Might be missing due to historical + data gap. """ __slots__ = [ @@ -52927,7 +53305,7 @@ def new_value(self): """ New external link accessibility policy. - :rtype: SharingLinkPolicy + :rtype: team_log.SharingLinkPolicy """ if self._new_value_present: return self._new_value_value @@ -52951,7 +53329,7 @@ def previous_value(self): Previous external link accessibility policy. Might be missing due to historical data gap. - :rtype: SharingLinkPolicy + :rtype: team_log.SharingLinkPolicy """ if self._previous_value_present: return self._previous_value_value @@ -53034,9 +53412,10 @@ class SharingChangeMemberPolicyDetails(bb.Struct): """ Changed whether members can share files/folders outside team. - :ivar new_value: New external invite policy. - :ivar previous_value: Previous external invite policy. Might be missing due - to historical data gap. + :ivar team_log.SharingChangeMemberPolicyDetails.new_value: New external + invite policy. + :ivar team_log.SharingChangeMemberPolicyDetails.previous_value: Previous + external invite policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -53065,7 +53444,7 @@ def new_value(self): """ New external invite policy. - :rtype: SharingMemberPolicy + :rtype: team_log.SharingMemberPolicy """ if self._new_value_present: return self._new_value_value @@ -53089,7 +53468,7 @@ def previous_value(self): Previous external invite policy. Might be missing due to historical data gap. - :rtype: SharingMemberPolicy + :rtype: team_log.SharingMemberPolicy """ if self._previous_value_present: return self._previous_value_value @@ -53398,7 +53777,8 @@ class ShowcaseAccessGrantedDetails(bb.Struct): """ Granted access to showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseAccessGrantedDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -53499,7 +53879,7 @@ class ShowcaseAddMemberDetails(bb.Struct): """ Added member to showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseAddMemberDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -53600,7 +53980,7 @@ class ShowcaseArchivedDetails(bb.Struct): """ Archived showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseArchivedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -53701,8 +54081,10 @@ class ShowcaseChangeDownloadPolicyDetails(bb.Struct): """ Enabled/disabled downloading files from Dropbox Showcase for team. - :ivar new_value: New Dropbox Showcase download policy. - :ivar previous_value: Previous Dropbox Showcase download policy. + :ivar team_log.ShowcaseChangeDownloadPolicyDetails.new_value: New Dropbox + Showcase download policy. + :ivar team_log.ShowcaseChangeDownloadPolicyDetails.previous_value: Previous + Dropbox Showcase download policy. """ __slots__ = [ @@ -53731,7 +54113,7 @@ def new_value(self): """ New Dropbox Showcase download policy. - :rtype: ShowcaseDownloadPolicy + :rtype: team_log.ShowcaseDownloadPolicy """ if self._new_value_present: return self._new_value_value @@ -53754,7 +54136,7 @@ def previous_value(self): """ Previous Dropbox Showcase download policy. - :rtype: ShowcaseDownloadPolicy + :rtype: team_log.ShowcaseDownloadPolicy """ if self._previous_value_present: return self._previous_value_value @@ -53834,8 +54216,10 @@ class ShowcaseChangeEnabledPolicyDetails(bb.Struct): """ Enabled/disabled Dropbox Showcase for team. - :ivar new_value: New Dropbox Showcase policy. - :ivar previous_value: Previous Dropbox Showcase policy. + :ivar team_log.ShowcaseChangeEnabledPolicyDetails.new_value: New Dropbox + Showcase policy. + :ivar team_log.ShowcaseChangeEnabledPolicyDetails.previous_value: Previous + Dropbox Showcase policy. """ __slots__ = [ @@ -53864,7 +54248,7 @@ def new_value(self): """ New Dropbox Showcase policy. - :rtype: ShowcaseEnabledPolicy + :rtype: team_log.ShowcaseEnabledPolicy """ if self._new_value_present: return self._new_value_value @@ -53887,7 +54271,7 @@ def previous_value(self): """ Previous Dropbox Showcase policy. - :rtype: ShowcaseEnabledPolicy + :rtype: team_log.ShowcaseEnabledPolicy """ if self._previous_value_present: return self._previous_value_value @@ -53967,8 +54351,10 @@ class ShowcaseChangeExternalSharingPolicyDetails(bb.Struct): """ Enabled/disabled sharing Dropbox Showcase externally for team. - :ivar new_value: New Dropbox Showcase external sharing policy. - :ivar previous_value: Previous Dropbox Showcase external sharing policy. + :ivar team_log.ShowcaseChangeExternalSharingPolicyDetails.new_value: New + Dropbox Showcase external sharing policy. + :ivar team_log.ShowcaseChangeExternalSharingPolicyDetails.previous_value: + Previous Dropbox Showcase external sharing policy. """ __slots__ = [ @@ -53997,7 +54383,7 @@ def new_value(self): """ New Dropbox Showcase external sharing policy. - :rtype: ShowcaseExternalSharingPolicy + :rtype: team_log.ShowcaseExternalSharingPolicy """ if self._new_value_present: return self._new_value_value @@ -54020,7 +54406,7 @@ def previous_value(self): """ Previous Dropbox Showcase external sharing policy. - :rtype: ShowcaseExternalSharingPolicy + :rtype: team_log.ShowcaseExternalSharingPolicy """ if self._previous_value_present: return self._previous_value_value @@ -54100,7 +54486,7 @@ class ShowcaseCreatedDetails(bb.Struct): """ Created showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseCreatedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -54201,8 +54587,9 @@ class ShowcaseDeleteCommentDetails(bb.Struct): """ Deleted showcase comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. + :ivar team_log.ShowcaseDeleteCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.ShowcaseDeleteCommentDetails.comment_text: Comment text. """ __slots__ = [ @@ -54337,8 +54724,9 @@ class ShowcaseDocumentLogInfo(bb.Struct): """ Showcase document's logged information. - :ivar showcase_id: Showcase document Id. - :ivar showcase_title: Showcase document title. + :ivar team_log.ShowcaseDocumentLogInfo.showcase_id: Showcase document Id. + :ivar team_log.ShowcaseDocumentLogInfo.showcase_title: Showcase document + title. """ __slots__ = [ @@ -54473,8 +54861,9 @@ class ShowcaseEditCommentDetails(bb.Struct): """ Edited showcase comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. + :ivar team_log.ShowcaseEditCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.ShowcaseEditCommentDetails.comment_text: Comment text. """ __slots__ = [ @@ -54609,7 +54998,7 @@ class ShowcaseEditedDetails(bb.Struct): """ Edited showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseEditedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -54808,7 +55197,7 @@ class ShowcaseFileAddedDetails(bb.Struct): """ Added file to showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseFileAddedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -54909,8 +55298,10 @@ class ShowcaseFileDownloadDetails(bb.Struct): """ Downloaded file from showcase. - :ivar event_uuid: Event unique identifier. - :ivar download_type: Showcase download type. + :ivar team_log.ShowcaseFileDownloadDetails.event_uuid: Event unique + identifier. + :ivar team_log.ShowcaseFileDownloadDetails.download_type: Showcase download + type. """ __slots__ = [ @@ -55042,7 +55433,8 @@ class ShowcaseFileRemovedDetails(bb.Struct): """ Removed file from showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseFileRemovedDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -55143,7 +55535,7 @@ class ShowcaseFileViewDetails(bb.Struct): """ Viewed file in showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseFileViewDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -55244,7 +55636,8 @@ class ShowcasePermanentlyDeletedDetails(bb.Struct): """ Permanently deleted showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcasePermanentlyDeletedDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -55345,8 +55738,9 @@ class ShowcasePostCommentDetails(bb.Struct): """ Added showcase comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. + :ivar team_log.ShowcasePostCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.ShowcasePostCommentDetails.comment_text: Comment text. """ __slots__ = [ @@ -55481,7 +55875,8 @@ class ShowcaseRemoveMemberDetails(bb.Struct): """ Removed member from showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseRemoveMemberDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -55582,7 +55977,7 @@ class ShowcaseRenamedDetails(bb.Struct): """ Renamed showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseRenamedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -55683,7 +56078,8 @@ class ShowcaseRequestAccessDetails(bb.Struct): """ Requested access to showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseRequestAccessDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -55784,8 +56180,9 @@ class ShowcaseResolveCommentDetails(bb.Struct): """ Resolved showcase comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. + :ivar team_log.ShowcaseResolveCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.ShowcaseResolveCommentDetails.comment_text: Comment text. """ __slots__ = [ @@ -55920,7 +56317,7 @@ class ShowcaseRestoredDetails(bb.Struct): """ Unarchived showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseRestoredDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -56021,7 +56418,8 @@ class ShowcaseTrashedDeprecatedDetails(bb.Struct): """ Deleted showcase (old version). - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseTrashedDeprecatedDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -56122,7 +56520,7 @@ class ShowcaseTrashedDetails(bb.Struct): """ Deleted showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseTrashedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -56223,8 +56621,9 @@ class ShowcaseUnresolveCommentDetails(bb.Struct): """ Unresolved showcase comment. - :ivar event_uuid: Event unique identifier. - :ivar comment_text: Comment text. + :ivar team_log.ShowcaseUnresolveCommentDetails.event_uuid: Event unique + identifier. + :ivar team_log.ShowcaseUnresolveCommentDetails.comment_text: Comment text. """ __slots__ = [ @@ -56359,7 +56758,8 @@ class ShowcaseUntrashedDeprecatedDetails(bb.Struct): """ Restored showcase (old version). - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseUntrashedDeprecatedDetails.event_uuid: Event unique + identifier. """ __slots__ = [ @@ -56460,7 +56860,7 @@ class ShowcaseUntrashedDetails(bb.Struct): """ Restored showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseUntrashedDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -56561,7 +56961,7 @@ class ShowcaseViewDetails(bb.Struct): """ Viewed showcase. - :ivar event_uuid: Event unique identifier. + :ivar team_log.ShowcaseViewDetails.event_uuid: Event unique identifier. """ __slots__ = [ @@ -56798,8 +57198,10 @@ class SmartSyncChangePolicyDetails(bb.Struct): """ Changed default Smart Sync setting for team members. - :ivar new_value: New smart sync policy. - :ivar previous_value: Previous smart sync policy. + :ivar team_log.SmartSyncChangePolicyDetails.new_value: New smart sync + policy. + :ivar team_log.SmartSyncChangePolicyDetails.previous_value: Previous smart + sync policy. """ __slots__ = [ @@ -57005,8 +57407,10 @@ class SmartSyncNotOptOutDetails(bb.Struct): """ Opted team into Smart Sync. - :ivar previous_value: Previous Smart Sync opt out policy. - :ivar new_value: New Smart Sync opt out policy. + :ivar team_log.SmartSyncNotOptOutDetails.previous_value: Previous Smart Sync + opt out policy. + :ivar team_log.SmartSyncNotOptOutDetails.new_value: New Smart Sync opt out + policy. """ __slots__ = [ @@ -57035,7 +57439,7 @@ def previous_value(self): """ Previous Smart Sync opt out policy. - :rtype: SmartSyncOptOutPolicy + :rtype: team_log.SmartSyncOptOutPolicy """ if self._previous_value_present: return self._previous_value_value @@ -57058,7 +57462,7 @@ def new_value(self): """ New Smart Sync opt out policy. - :rtype: SmartSyncOptOutPolicy + :rtype: team_log.SmartSyncOptOutPolicy """ if self._new_value_present: return self._new_value_value @@ -57138,8 +57542,10 @@ class SmartSyncOptOutDetails(bb.Struct): """ Opted team out of Smart Sync. - :ivar previous_value: Previous Smart Sync opt out policy. - :ivar new_value: New Smart Sync opt out policy. + :ivar team_log.SmartSyncOptOutDetails.previous_value: Previous Smart Sync + opt out policy. + :ivar team_log.SmartSyncOptOutDetails.new_value: New Smart Sync opt out + policy. """ __slots__ = [ @@ -57168,7 +57574,7 @@ def previous_value(self): """ Previous Smart Sync opt out policy. - :rtype: SmartSyncOptOutPolicy + :rtype: team_log.SmartSyncOptOutPolicy """ if self._previous_value_present: return self._previous_value_value @@ -57191,7 +57597,7 @@ def new_value(self): """ New Smart Sync opt out policy. - :rtype: SmartSyncOptOutPolicy + :rtype: team_log.SmartSyncOptOutPolicy """ if self._new_value_present: return self._new_value_value @@ -57434,7 +57840,8 @@ class SsoAddCertDetails(bb.Struct): """ Added X.509 certificate for SSO. - :ivar certificate_details: SSO certificate details. + :ivar team_log.SsoAddCertDetails.certificate_details: SSO certificate + details. """ __slots__ = [ @@ -57456,7 +57863,7 @@ def certificate_details(self): """ SSO certificate details. - :rtype: Certificate + :rtype: team_log.Certificate """ if self._certificate_details_present: return self._certificate_details_value @@ -57535,7 +57942,8 @@ class SsoAddLoginUrlDetails(bb.Struct): """ Added sign-in URL for SSO. - :ivar new_value: New single sign-on login URL. + :ivar team_log.SsoAddLoginUrlDetails.new_value: New single sign-on login + URL. """ __slots__ = [ @@ -57636,8 +58044,8 @@ class SsoAddLogoutUrlDetails(bb.Struct): """ Added sign-out URL for SSO. - :ivar new_value: New single sign-on logout URL. Might be missing due to - historical data gap. + :ivar team_log.SsoAddLogoutUrlDetails.new_value: New single sign-on logout + URL. Might be missing due to historical data gap. """ __slots__ = [ @@ -57742,9 +58150,10 @@ class SsoChangeCertDetails(bb.Struct): """ Changed X.509 certificate for SSO. - :ivar previous_certificate_details: Previous SSO certificate details. Might - be missing due to historical data gap. - :ivar new_certificate_details: New SSO certificate details. + :ivar team_log.SsoChangeCertDetails.previous_certificate_details: Previous + SSO certificate details. Might be missing due to historical data gap. + :ivar team_log.SsoChangeCertDetails.new_certificate_details: New SSO + certificate details. """ __slots__ = [ @@ -57774,7 +58183,7 @@ def previous_certificate_details(self): Previous SSO certificate details. Might be missing due to historical data gap. - :rtype: Certificate + :rtype: team_log.Certificate """ if self._previous_certificate_details_present: return self._previous_certificate_details_value @@ -57800,7 +58209,7 @@ def new_certificate_details(self): """ New SSO certificate details. - :rtype: Certificate + :rtype: team_log.Certificate """ if self._new_certificate_details_present: return self._new_certificate_details_value @@ -57880,8 +58289,10 @@ class SsoChangeLoginUrlDetails(bb.Struct): """ Changed sign-in URL for SSO. - :ivar previous_value: Previous single sign-on login URL. - :ivar new_value: New single sign-on login URL. + :ivar team_log.SsoChangeLoginUrlDetails.previous_value: Previous single + sign-on login URL. + :ivar team_log.SsoChangeLoginUrlDetails.new_value: New single sign-on login + URL. """ __slots__ = [ @@ -58013,10 +58424,10 @@ class SsoChangeLogoutUrlDetails(bb.Struct): """ Changed sign-out URL for SSO. - :ivar previous_value: Previous single sign-on logout URL. Might be missing - due to historical data gap. - :ivar new_value: New single sign-on logout URL. Might be missing due to - historical data gap. + :ivar team_log.SsoChangeLogoutUrlDetails.previous_value: Previous single + sign-on logout URL. Might be missing due to historical data gap. + :ivar team_log.SsoChangeLogoutUrlDetails.new_value: New single sign-on + logout URL. Might be missing due to historical data gap. """ __slots__ = [ @@ -58156,9 +58567,9 @@ class SsoChangePolicyDetails(bb.Struct): """ Changed single sign-on setting for team. - :ivar new_value: New single sign-on policy. - :ivar previous_value: Previous single sign-on policy. Might be missing due - to historical data gap. + :ivar team_log.SsoChangePolicyDetails.new_value: New single sign-on policy. + :ivar team_log.SsoChangePolicyDetails.previous_value: Previous single + sign-on policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -58294,8 +58705,10 @@ class SsoChangeSamlIdentityModeDetails(bb.Struct): """ Changed SAML identity mode for SSO. - :ivar previous_value: Previous single sign-on identity mode. - :ivar new_value: New single sign-on identity mode. + :ivar team_log.SsoChangeSamlIdentityModeDetails.previous_value: Previous + single sign-on identity mode. + :ivar team_log.SsoChangeSamlIdentityModeDetails.new_value: New single + sign-on identity mode. """ __slots__ = [ @@ -58427,7 +58840,7 @@ class SsoErrorDetails(bb.Struct): """ Failed to sign in via SSO. - :ivar error_details: Error details. + :ivar team_log.SsoErrorDetails.error_details: Error details. """ __slots__ = [ @@ -58449,7 +58862,7 @@ def error_details(self): """ Error details. - :rtype: FailureDetailsLogInfo + :rtype: team_log.FailureDetailsLogInfo """ if self._error_details_present: return self._error_details_value @@ -58596,7 +59009,8 @@ class SsoRemoveLoginUrlDetails(bb.Struct): """ Removed sign-in URL for SSO. - :ivar previous_value: Previous single sign-on login URL. + :ivar team_log.SsoRemoveLoginUrlDetails.previous_value: Previous single + sign-on login URL. """ __slots__ = [ @@ -58697,7 +59111,8 @@ class SsoRemoveLogoutUrlDetails(bb.Struct): """ Removed sign-out URL for SSO. - :ivar previous_value: Previous single sign-on logout URL. + :ivar team_log.SsoRemoveLogoutUrlDetails.previous_value: Previous single + sign-on logout URL. """ __slots__ = [ @@ -58798,8 +59213,9 @@ class TeamActivityCreateReportDetails(bb.Struct): """ Created team activity report. - :ivar start_date: Report start date. - :ivar end_date: Report end date. + :ivar team_log.TeamActivityCreateReportDetails.start_date: Report start + date. + :ivar team_log.TeamActivityCreateReportDetails.end_date: Report end date. """ __slots__ = [ @@ -58931,29 +59347,32 @@ class TeamEvent(bb.Struct): """ An audit log event. - :ivar timestamp: The Dropbox timestamp representing when the action was - taken. - :ivar event_category: The category that this type of action belongs to. - :ivar actor: The entity who actually performed the action. Might be missing - due to historical data gap. - :ivar origin: The origin from which the actor performed the action including - information about host, ip address, location, session, etc. If the - action was performed programmatically via the API the origin represents - the API client. - :ivar involve_non_team_member: True if the action involved a non team member - either as the actor or as one of the affected users. Might be missing - due to historical data gap. - :ivar context: The user or team on whose behalf the actor performed the + :ivar team_log.TeamEvent.timestamp: The Dropbox timestamp representing when + the action was taken. + :ivar team_log.TeamEvent.event_category: The category that this type of + action belongs to. + :ivar team_log.TeamEvent.actor: The entity who actually performed the action. Might be missing due to historical data gap. - :ivar participants: Zero or more users and/or groups that are affected by - the action. Note that this list doesn't include any actors or users in - context. - :ivar assets: Zero or more content assets involved in the action. Currently - these include Dropbox files and folders but in the future we might add - other asset types such as Paper documents, folders, projects, etc. - :ivar event_type: The particular type of action taken. - :ivar details: The variable event schema applicable to this type of action, - instantiated with respect to this particular action. + :ivar team_log.TeamEvent.origin: The origin from which the actor performed + the action including information about host, ip address, location, + session, etc. If the action was performed programmatically via the API + the origin represents the API client. + :ivar team_log.TeamEvent.involve_non_team_member: True if the action + involved a non team member either as the actor or as one of the affected + users. Might be missing due to historical data gap. + :ivar team_log.TeamEvent.context: The user or team on whose behalf the actor + performed the action. Might be missing due to historical data gap. + :ivar team_log.TeamEvent.participants: Zero or more users and/or groups that + are affected by the action. Note that this list doesn't include any + actors or users in context. + :ivar team_log.TeamEvent.assets: Zero or more content assets involved in the + action. Currently these include Dropbox files and folders but in the + future we might add other asset types such as Paper documents, folders, + projects, etc. + :ivar team_log.TeamEvent.event_type: The particular type of action taken. + :ivar team_log.TeamEvent.details: The variable event schema applicable to + this type of action, instantiated with respect to this particular + action. """ __slots__ = [ @@ -59061,7 +59480,7 @@ def event_category(self): """ The category that this type of action belongs to. - :rtype: EventCategory + :rtype: team_log.EventCategory """ if self._event_category_present: return self._event_category_value @@ -59085,7 +59504,7 @@ def actor(self): The entity who actually performed the action. Might be missing due to historical data gap. - :rtype: ActorLogInfo + :rtype: team_log.ActorLogInfo """ if self._actor_present: return self._actor_value @@ -59114,7 +59533,7 @@ def origin(self): action was performed programmatically via the API the origin represents the API client. - :rtype: OriginLogInfo + :rtype: team_log.OriginLogInfo """ if self._origin_present: return self._origin_value @@ -59168,7 +59587,7 @@ def context(self): The user or team on whose behalf the actor performed the action. Might be missing due to historical data gap. - :rtype: ContextLogInfo + :rtype: team_log.ContextLogInfo """ if self._context_present: return self._context_value @@ -59195,7 +59614,7 @@ def participants(self): Zero or more users and/or groups that are affected by the action. Note that this list doesn't include any actors or users in context. - :rtype: list of [ParticipantLogInfo] + :rtype: list of [team_log.ParticipantLogInfo] """ if self._participants_present: return self._participants_value @@ -59223,7 +59642,7 @@ def assets(self): include Dropbox files and folders but in the future we might add other asset types such as Paper documents, folders, projects, etc. - :rtype: list of [AssetLogInfo] + :rtype: list of [team_log.AssetLogInfo] """ if self._assets_present: return self._assets_value @@ -59249,7 +59668,7 @@ def event_type(self): """ The particular type of action taken. - :rtype: EventType + :rtype: team_log.EventType """ if self._event_type_present: return self._event_type_value @@ -59273,7 +59692,7 @@ def details(self): The variable event schema applicable to this type of action, instantiated with respect to this particular action. - :rtype: EventDetails + :rtype: team_log.EventDetails """ if self._details_present: return self._details_value @@ -59314,9 +59733,10 @@ class TeamFolderChangeStatusDetails(bb.Struct): """ Changed archival status of team folder. - :ivar new_value: New team folder status. - :ivar previous_value: Previous team folder status. Might be missing due to - historical data gap. + :ivar team_log.TeamFolderChangeStatusDetails.new_value: New team folder + status. + :ivar team_log.TeamFolderChangeStatusDetails.previous_value: Previous team + folder status. Might be missing due to historical data gap. """ __slots__ = [ @@ -59520,7 +59940,8 @@ class TeamFolderDowngradeDetails(bb.Struct): """ Downgraded team folder to regular shared folder. - :ivar target_asset_index: Target asset position in the Assets list. + :ivar team_log.TeamFolderDowngradeDetails.target_asset_index: Target asset + position in the Assets list. """ __slots__ = [ @@ -59689,8 +60110,9 @@ class TeamFolderRenameDetails(bb.Struct): """ Renamed active/archived team folder. - :ivar previous_folder_name: Previous folder name. - :ivar new_folder_name: New folder name. + :ivar team_log.TeamFolderRenameDetails.previous_folder_name: Previous folder + name. + :ivar team_log.TeamFolderRenameDetails.new_folder_name: New folder name. """ __slots__ = [ @@ -59849,9 +60271,10 @@ class TeamMemberLogInfo(UserLogInfo): """ Team member's logged information. - :ivar team_member_id: Team member ID. Might be missing due to historical - data gap. - :ivar member_external_id: Team member external ID. + :ivar team_log.TeamMemberLogInfo.team_member_id: Team member ID. Might be + missing due to historical data gap. + :ivar team_log.TeamMemberLogInfo.member_external_id: Team member external + ID. """ __slots__ = [ @@ -59998,7 +60421,8 @@ class TeamMergeFromDetails(bb.Struct): """ Merged another team into this team. - :ivar team_name: The name of the team that was merged into this team. + :ivar team_log.TeamMergeFromDetails.team_name: The name of the team that was + merged into this team. """ __slots__ = [ @@ -60099,7 +60523,8 @@ class TeamMergeToDetails(bb.Struct): """ Merged this team into another team. - :ivar team_name: The name of the team that this team was merged into. + :ivar team_log.TeamMergeToDetails.team_name: The name of the team that this + team was merged into. """ __slots__ = [ @@ -60200,8 +60625,8 @@ class TeamName(bb.Struct): """ Team name details - :ivar team_display_name: Team's display name. - :ivar team_legal_name: Team's legal name. + :ivar team_log.TeamName.team_display_name: Team's display name. + :ivar team_log.TeamName.team_legal_name: Team's legal name. """ __slots__ = [ @@ -60354,8 +60779,10 @@ class TeamProfileChangeDefaultLanguageDetails(bb.Struct): """ Changed default language for team. - :ivar new_value: New team's default language. - :ivar previous_value: Previous team's default language. + :ivar team_log.TeamProfileChangeDefaultLanguageDetails.new_value: New team's + default language. + :ivar team_log.TeamProfileChangeDefaultLanguageDetails.previous_value: + Previous team's default language. """ __slots__ = [ @@ -60555,9 +60982,9 @@ class TeamProfileChangeNameDetails(bb.Struct): """ Changed team name. - :ivar previous_value: Previous teams name. Might be missing due to - historical data gap. - :ivar new_value: New team name. + :ivar team_log.TeamProfileChangeNameDetails.previous_value: Previous teams + name. Might be missing due to historical data gap. + :ivar team_log.TeamProfileChangeNameDetails.new_value: New team name. """ __slots__ = [ @@ -60586,7 +61013,7 @@ def previous_value(self): """ Previous teams name. Might be missing due to historical data gap. - :rtype: TeamName + :rtype: team_log.TeamName """ if self._previous_value_present: return self._previous_value_value @@ -60612,7 +61039,7 @@ def new_value(self): """ New team name. - :rtype: TeamName + :rtype: team_log.TeamName """ if self._new_value_present: return self._new_value_value @@ -60809,8 +61236,10 @@ class TeamSelectiveSyncPolicyChangedDetails(bb.Struct): """ Enabled/disabled Team Selective Sync for team. - :ivar new_value: New Team Selective Sync policy. - :ivar previous_value: Previous Team Selective Sync policy. + :ivar team_log.TeamSelectiveSyncPolicyChangedDetails.new_value: New Team + Selective Sync policy. + :ivar team_log.TeamSelectiveSyncPolicyChangedDetails.previous_value: + Previous Team Selective Sync policy. """ __slots__ = [ @@ -60839,7 +61268,7 @@ def new_value(self): """ New Team Selective Sync policy. - :rtype: TeamSelectiveSyncPolicy + :rtype: team_log.TeamSelectiveSyncPolicy """ if self._new_value_present: return self._new_value_value @@ -60862,7 +61291,7 @@ def previous_value(self): """ Previous Team Selective Sync policy. - :rtype: TeamSelectiveSyncPolicy + :rtype: team_log.TeamSelectiveSyncPolicy """ if self._previous_value_present: return self._previous_value_value @@ -60942,8 +61371,9 @@ class TeamSelectiveSyncSettingsChangedDetails(bb.Struct): """ Changed sync default. - :ivar previous_value: Previous value. - :ivar new_value: New value. + :ivar team_log.TeamSelectiveSyncSettingsChangedDetails.previous_value: + Previous value. + :ivar team_log.TeamSelectiveSyncSettingsChangedDetails.new_value: New value. """ __slots__ = [ @@ -61279,9 +61709,9 @@ class TfaChangePolicyDetails(bb.Struct): """ Changed two-step verification setting for team. - :ivar new_value: New change policy. - :ivar previous_value: Previous change policy. Might be missing due to - historical data gap. + :ivar team_log.TfaChangePolicyDetails.new_value: New change policy. + :ivar team_log.TfaChangePolicyDetails.previous_value: Previous change + policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -61416,12 +61846,14 @@ class TfaChangeStatusDetails(bb.Struct): """ Enabled/disabled/changed two-step verification setting. - :ivar new_value: The new two factor authentication configuration. - :ivar previous_value: The previous two factor authentication configuration. - Might be missing due to historical data gap. - :ivar used_rescue_code: Used two factor authentication rescue code. This - flag is relevant when the two factor authentication configuration is - disabled. + :ivar team_log.TfaChangeStatusDetails.new_value: The new two factor + authentication configuration. + :ivar team_log.TfaChangeStatusDetails.previous_value: The previous two + factor authentication configuration. Might be missing due to historical + data gap. + :ivar team_log.TfaChangeStatusDetails.used_rescue_code: Used two factor + authentication rescue code. This flag is relevant when the two factor + authentication configuration is disabled. """ __slots__ = [ @@ -61457,7 +61889,7 @@ def new_value(self): """ The new two factor authentication configuration. - :rtype: TfaConfiguration + :rtype: team_log.TfaConfiguration """ if self._new_value_present: return self._new_value_value @@ -61481,7 +61913,7 @@ def previous_value(self): The previous two factor authentication configuration. Might be missing due to historical data gap. - :rtype: TfaConfiguration + :rtype: team_log.TfaConfiguration """ if self._previous_value_present: return self._previous_value_value @@ -61973,8 +62405,8 @@ class TrustedNonTeamMemberLogInfo(UserLogInfo): """ User that is not a member of the team but considered trusted. - :ivar trusted_non_team_member_type: Indicates the type of the trusted non - team member user. + :ivar team_log.TrustedNonTeamMemberLogInfo.trusted_non_team_member_type: + Indicates the type of the trusted non team member user. """ __slots__ = [ @@ -62002,7 +62434,7 @@ def trusted_non_team_member_type(self): """ Indicates the type of the trusted non team member user. - :rtype: TrustedNonTeamMemberType + :rtype: team_log.TrustedNonTeamMemberType """ if self._trusted_non_team_member_type_present: return self._trusted_non_team_member_type_value @@ -62075,9 +62507,10 @@ class TwoAccountChangePolicyDetails(bb.Struct): Enabled/disabled option for members to link personal Dropbox account and team account to same computer. - :ivar new_value: New two account policy. - :ivar previous_value: Previous two account policy. Might be missing due to - historical data gap. + :ivar team_log.TwoAccountChangePolicyDetails.new_value: New two account + policy. + :ivar team_log.TwoAccountChangePolicyDetails.previous_value: Previous two + account policy. Might be missing due to historical data gap. """ __slots__ = [ @@ -62106,7 +62539,7 @@ def new_value(self): """ New two account policy. - :rtype: TwoAccountPolicy + :rtype: team_log.TwoAccountPolicy """ if self._new_value_present: return self._new_value_value @@ -62130,7 +62563,7 @@ def previous_value(self): Previous two account policy. Might be missing due to historical data gap. - :rtype: TwoAccountPolicy + :rtype: team_log.TwoAccountPolicy """ if self._previous_value_present: return self._previous_value_value @@ -62289,9 +62722,10 @@ class UserNameLogInfo(bb.Struct): """ User's name logged information - :ivar given_name: Given name. - :ivar surname: Surname. - :ivar locale: Locale. Might be missing due to historical data gap. + :ivar team_log.UserNameLogInfo.given_name: Given name. + :ivar team_log.UserNameLogInfo.surname: Surname. + :ivar team_log.UserNameLogInfo.locale: Locale. Might be missing due to + historical data gap. """ __slots__ = [ @@ -62438,8 +62872,10 @@ class ViewerInfoPolicyChangedDetails(bb.Struct): """ Changed team policy for viewer info. - :ivar previous_value: Previous Viewer Info policy. - :ivar new_value: New Viewer Info policy. + :ivar team_log.ViewerInfoPolicyChangedDetails.previous_value: Previous + Viewer Info policy. + :ivar team_log.ViewerInfoPolicyChangedDetails.new_value: New Viewer Info + policy. """ __slots__ = [ @@ -62468,7 +62904,7 @@ def previous_value(self): """ Previous Viewer Info policy. - :rtype: PassPolicy + :rtype: team_log.PassPolicy """ if self._previous_value_present: return self._previous_value_value @@ -62491,7 +62927,7 @@ def new_value(self): """ New Viewer Info policy. - :rtype: PassPolicy + :rtype: team_log.PassPolicy """ if self._new_value_present: return self._new_value_value @@ -62571,11 +63007,14 @@ class WebDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information on active web sessions - :ivar session_info: Web session unique id. Might be missing due to - historical data gap. - :ivar user_agent: Information on the hosting device. - :ivar os: Information on the hosting operating system. - :ivar browser: Information on the browser used for this web session. + :ivar team_log.WebDeviceSessionLogInfo.session_info: Web session unique id. + Might be missing due to historical data gap. + :ivar team_log.WebDeviceSessionLogInfo.user_agent: Information on the + hosting device. + :ivar team_log.WebDeviceSessionLogInfo.os: Information on the hosting + operating system. + :ivar team_log.WebDeviceSessionLogInfo.browser: Information on the browser + used for this web session. """ __slots__ = [ @@ -62624,7 +63063,7 @@ def session_info(self): """ Web session unique id. Might be missing due to historical data gap. - :rtype: WebSessionLogInfo + :rtype: team_log.WebSessionLogInfo """ if self._session_info_present: return self._session_info_value @@ -62758,10 +63197,11 @@ class WebSessionsChangeFixedLengthPolicyDetails(bb.Struct): """ Changed how long members can stay signed in to Dropbox.com. - :ivar new_value: New session length policy. Might be missing due to - historical data gap. - :ivar previous_value: Previous session length policy. Might be missing due - to historical data gap. + :ivar team_log.WebSessionsChangeFixedLengthPolicyDetails.new_value: New + session length policy. Might be missing due to historical data gap. + :ivar team_log.WebSessionsChangeFixedLengthPolicyDetails.previous_value: + Previous session length policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -62790,7 +63230,7 @@ def new_value(self): """ New session length policy. Might be missing due to historical data gap. - :rtype: WebSessionsFixedLengthPolicy + :rtype: team_log.WebSessionsFixedLengthPolicy """ if self._new_value_present: return self._new_value_value @@ -62817,7 +63257,7 @@ def previous_value(self): Previous session length policy. Might be missing due to historical data gap. - :rtype: WebSessionsFixedLengthPolicy + :rtype: team_log.WebSessionsFixedLengthPolicy """ if self._previous_value_present: return self._previous_value_value @@ -62900,10 +63340,11 @@ class WebSessionsChangeIdleLengthPolicyDetails(bb.Struct): """ Changed how long team members can be idle while signed in to Dropbox.com. - :ivar new_value: New idle length policy. Might be missing due to historical - data gap. - :ivar previous_value: Previous idle length policy. Might be missing due to - historical data gap. + :ivar team_log.WebSessionsChangeIdleLengthPolicyDetails.new_value: New idle + length policy. Might be missing due to historical data gap. + :ivar team_log.WebSessionsChangeIdleLengthPolicyDetails.previous_value: + Previous idle length policy. Might be missing due to historical data + gap. """ __slots__ = [ @@ -62932,7 +63373,7 @@ def new_value(self): """ New idle length policy. Might be missing due to historical data gap. - :rtype: WebSessionsIdleLengthPolicy + :rtype: team_log.WebSessionsIdleLengthPolicy """ if self._new_value_present: return self._new_value_value @@ -62959,7 +63400,7 @@ def previous_value(self): Previous idle length policy. Might be missing due to historical data gap. - :rtype: WebSessionsIdleLengthPolicy + :rtype: team_log.WebSessionsIdleLengthPolicy """ if self._previous_value_present: return self._previous_value_value @@ -63046,8 +63487,10 @@ class WebSessionsFixedLengthPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar DurationLogInfo defined: Defined fixed session length. - :ivar undefined: Undefined fixed session length. + :ivar DurationLogInfo team_log.WebSessionsFixedLengthPolicy.defined: Defined + fixed session length. + :ivar team_log.WebSessionsFixedLengthPolicy.undefined: Undefined fixed + session length. """ _catch_all = 'other' @@ -63062,8 +63505,8 @@ def defined(cls, val): Create an instance of this class set to the ``defined`` tag with value ``val``. - :param DurationLogInfo val: - :rtype: WebSessionsFixedLengthPolicy + :param team_log.DurationLogInfo val: + :rtype: team_log.WebSessionsFixedLengthPolicy """ return cls('defined', val) @@ -63097,7 +63540,7 @@ def get_defined(self): Only call this if :meth:`is_defined` is true. - :rtype: DurationLogInfo + :rtype: team_log.DurationLogInfo """ if not self.is_defined(): raise AttributeError("tag 'defined' not set") @@ -63119,8 +63562,10 @@ class WebSessionsIdleLengthPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar DurationLogInfo defined: Defined idle session length. - :ivar undefined: Undefined idle session length. + :ivar DurationLogInfo team_log.WebSessionsIdleLengthPolicy.defined: Defined + idle session length. + :ivar team_log.WebSessionsIdleLengthPolicy.undefined: Undefined idle session + length. """ _catch_all = 'other' @@ -63135,8 +63580,8 @@ def defined(cls, val): Create an instance of this class set to the ``defined`` tag with value ``val``. - :param DurationLogInfo val: - :rtype: WebSessionsIdleLengthPolicy + :param team_log.DurationLogInfo val: + :rtype: team_log.WebSessionsIdleLengthPolicy """ return cls('defined', val) @@ -63170,7 +63615,7 @@ def get_defined(self): Only call this if :meth:`is_defined` is true. - :rtype: DurationLogInfo + :rtype: team_log.DurationLogInfo """ if not self.is_defined(): raise AttributeError("tag 'defined' not set") diff --git a/dropbox/team_policies.py b/dropbox/team_policies.py index a3a196e9..fdc78004 100644 --- a/dropbox/team_policies.py +++ b/dropbox/team_policies.py @@ -18,8 +18,10 @@ class CameraUploadsPolicyState(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled: Background camera uploads are disabled. - :ivar enabled: Background camera uploads are allowed. + :ivar team_policies.CameraUploadsPolicyState.disabled: Background camera + uploads are disabled. + :ivar team_policies.CameraUploadsPolicyState.enabled: Background camera + uploads are allowed. """ _catch_all = 'other' @@ -68,9 +70,9 @@ class EmmState(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled: Emm token is disabled. - :ivar optional: Emm token is optional. - :ivar required: Emm token is required. + :ivar team_policies.EmmState.disabled: Emm token is disabled. + :ivar team_policies.EmmState.optional: Emm token is optional. + :ivar team_policies.EmmState.required: Emm token is required. """ _catch_all = 'other' @@ -129,8 +131,10 @@ class GroupCreation(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar admins_and_members: Team admins and members can create groups. - :ivar admins_only: Only team admins can create groups. + :ivar team_policies.GroupCreation.admins_and_members: Team admins and + members can create groups. + :ivar team_policies.GroupCreation.admins_only: Only team admins can create + groups. """ _catch_all = None @@ -169,8 +173,8 @@ class OfficeAddInPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled: Office Add-In is disabled. - :ivar enabled: Office Add-In is enabled. + :ivar team_policies.OfficeAddInPolicy.disabled: Office Add-In is disabled. + :ivar team_policies.OfficeAddInPolicy.enabled: Office Add-In is enabled. """ _catch_all = 'other' @@ -219,9 +223,11 @@ class PaperDeploymentPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar full: All team members have access to Paper. - :ivar partial: Only whitelisted team members can access Paper. To see which - user is whitelisted, check 'is_paper_whitelisted' on 'account/info'. + :ivar team_policies.PaperDeploymentPolicy.full: All team members have access + to Paper. + :ivar team_policies.PaperDeploymentPolicy.partial: Only whitelisted team + members can access Paper. To see which user is whitelisted, check + 'is_paper_whitelisted' on 'account/info'. """ _catch_all = 'other' @@ -270,9 +276,9 @@ class PaperEnabledPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled: Paper is disabled. - :ivar enabled: Paper is enabled. - :ivar unspecified: Unspecified policy. + :ivar team_policies.PaperEnabledPolicy.disabled: Paper is disabled. + :ivar team_policies.PaperEnabledPolicy.enabled: Paper is enabled. + :ivar team_policies.PaperEnabledPolicy.unspecified: Unspecified policy. """ _catch_all = 'other' @@ -331,12 +337,12 @@ class PasswordStrengthPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar minimal_requirements: User passwords will adhere to the minimal - password strength policy. - :ivar moderate_password: User passwords will adhere to the moderate password - strength policy. - :ivar strong_password: User passwords will adhere to the very strong - password strength policy. + :ivar team_policies.PasswordStrengthPolicy.minimal_requirements: User + passwords will adhere to the minimal password strength policy. + :ivar team_policies.PasswordStrengthPolicy.moderate_password: User passwords + will adhere to the moderate password strength policy. + :ivar team_policies.PasswordStrengthPolicy.strong_password: User passwords + will adhere to the very strong password strength policy. """ _catch_all = 'other' @@ -395,9 +401,11 @@ class RolloutMethod(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar unlink_all: Unlink all. - :ivar unlink_most_inactive: Unlink devices with the most inactivity. - :ivar add_member_to_exceptions: Add member to Exceptions. + :ivar team_policies.RolloutMethod.unlink_all: Unlink all. + :ivar team_policies.RolloutMethod.unlink_most_inactive: Unlink devices with + the most inactivity. + :ivar team_policies.RolloutMethod.add_member_to_exceptions: Add member to + Exceptions. """ _catch_all = None @@ -448,10 +456,11 @@ class SharedFolderJoinPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar from_team_only: Team members can only join folders shared by - teammates. - :ivar from_anyone: Team members can join any shared folder, including those - shared by users outside the team. + :ivar team_policies.SharedFolderJoinPolicy.from_team_only: Team members can + only join folders shared by teammates. + :ivar team_policies.SharedFolderJoinPolicy.from_anyone: Team members can + join any shared folder, including those shared by users outside the + team. """ _catch_all = 'other' @@ -502,9 +511,10 @@ class SharedFolderMemberPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar team: Only a teammate can be a member of a folder shared by a team - member. - :ivar anyone: Anyone can be a member of a folder shared by a team member. + :ivar team_policies.SharedFolderMemberPolicy.team: Only a teammate can be a + member of a folder shared by a team member. + :ivar team_policies.SharedFolderMemberPolicy.anyone: Anyone can be a member + of a folder shared by a team member. """ _catch_all = 'other' @@ -556,14 +566,15 @@ class SharedLinkCreatePolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar default_public: By default, anyone can access newly created shared - links. No login will be required to access the shared links unless - overridden. - :ivar default_team_only: By default, only members of the same team can - access newly created shared links. Login will be required to access the - shared links unless overridden. - :ivar team_only: Only members of the same team can access all shared links. - Login will be required to access all shared links. + :ivar team_policies.SharedLinkCreatePolicy.default_public: By default, + anyone can access newly created shared links. No login will be required + to access the shared links unless overridden. + :ivar team_policies.SharedLinkCreatePolicy.default_team_only: By default, + only members of the same team can access newly created shared links. + Login will be required to access the shared links unless overridden. + :ivar team_policies.SharedLinkCreatePolicy.team_only: Only members of the + same team can access all shared links. Login will be required to access + all shared links. """ _catch_all = 'other' @@ -622,8 +633,10 @@ class ShowcaseDownloadPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled: Do not allow files to be downloaded from Showcases. - :ivar enabled: Allow files to be downloaded from Showcases. + :ivar team_policies.ShowcaseDownloadPolicy.disabled: Do not allow files to + be downloaded from Showcases. + :ivar team_policies.ShowcaseDownloadPolicy.enabled: Allow files to be + downloaded from Showcases. """ _catch_all = 'other' @@ -672,8 +685,8 @@ class ShowcaseEnabledPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled: Showcase is disabled. - :ivar enabled: Showcase is enabled. + :ivar team_policies.ShowcaseEnabledPolicy.disabled: Showcase is disabled. + :ivar team_policies.ShowcaseEnabledPolicy.enabled: Showcase is enabled. """ _catch_all = 'other' @@ -722,9 +735,10 @@ class ShowcaseExternalSharingPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled: Do not allow showcases to be shared with people not on the - team. - :ivar enabled: Allow showcases to be shared with people not on the team. + :ivar team_policies.ShowcaseExternalSharingPolicy.disabled: Do not allow + showcases to be shared with people not on the team. + :ivar team_policies.ShowcaseExternalSharingPolicy.enabled: Allow showcases + to be shared with people not on the team. """ _catch_all = 'other' @@ -773,9 +787,10 @@ class SmartSyncPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar local: The specified content will be synced as local files by default. - :ivar on_demand: The specified content will be synced as on-demand files by - default. + :ivar team_policies.SmartSyncPolicy.local: The specified content will be + synced as local files by default. + :ivar team_policies.SmartSyncPolicy.on_demand: The specified content will be + synced as on-demand files by default. """ _catch_all = 'other' @@ -824,12 +839,12 @@ class SsoPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar disabled: Users will be able to sign in with their Dropbox - credentials. - :ivar optional: Users will be able to sign in with either their Dropbox or - single sign-on credentials. - :ivar required: Users will be required to sign in with their single sign-on - credentials. + :ivar team_policies.SsoPolicy.disabled: Users will be able to sign in with + their Dropbox credentials. + :ivar team_policies.SsoPolicy.optional: Users will be able to sign in with + either their Dropbox or single sign-on credentials. + :ivar team_policies.SsoPolicy.required: Users will be required to sign in + with their single sign-on credentials. """ _catch_all = 'other' @@ -886,15 +901,16 @@ class TeamMemberPolicies(bb.Struct): """ Policies governing team members. - :ivar sharing: Policies governing sharing. - :ivar emm_state: This describes the Enterprise Mobility Management (EMM) - state for this team. This information can be used to understand if an - organization is integrating with a third-party EMM vendor to further - manage and apply restrictions upon the team's Dropbox usage on mobile - devices. This is a new feature and in the future we'll be adding more - new fields and additional documentation. - :ivar office_addin: The admin policy around the Dropbox Office Add-In for - this team. + :ivar team_policies.TeamMemberPolicies.sharing: Policies governing sharing. + :ivar team_policies.TeamMemberPolicies.emm_state: This describes the + Enterprise Mobility Management (EMM) state for this team. This + information can be used to understand if an organization is integrating + with a third-party EMM vendor to further manage and apply restrictions + upon the team's Dropbox usage on mobile devices. This is a new feature + and in the future we'll be adding more new fields and additional + documentation. + :ivar team_policies.TeamMemberPolicies.office_addin: The admin policy around + the Dropbox Office Add-In for this team. """ __slots__ = [ @@ -930,7 +946,7 @@ def sharing(self): """ Policies governing sharing. - :rtype: TeamSharingPolicies + :rtype: team_policies.TeamSharingPolicies """ if self._sharing_present: return self._sharing_value @@ -958,7 +974,7 @@ def emm_state(self): new feature and in the future we'll be adding more new fields and additional documentation. - :rtype: EmmState + :rtype: team_policies.EmmState """ if self._emm_state_present: return self._emm_state_value @@ -981,7 +997,7 @@ def office_addin(self): """ The admin policy around the Dropbox Office Add-In for this team. - :rtype: OfficeAddInPolicy + :rtype: team_policies.OfficeAddInPolicy """ if self._office_addin_present: return self._office_addin_value @@ -1015,11 +1031,12 @@ class TeamSharingPolicies(bb.Struct): """ Policies governing sharing within and outside of the team. - :ivar shared_folder_member_policy: Who can join folders shared by team - members. - :ivar shared_folder_join_policy: Which shared folders team members can join. - :ivar shared_link_create_policy: Who can view shared links owned by team - members. + :ivar team_policies.TeamSharingPolicies.shared_folder_member_policy: Who can + join folders shared by team members. + :ivar team_policies.TeamSharingPolicies.shared_folder_join_policy: Which + shared folders team members can join. + :ivar team_policies.TeamSharingPolicies.shared_link_create_policy: Who can + view shared links owned by team members. """ __slots__ = [ @@ -1055,7 +1072,7 @@ def shared_folder_member_policy(self): """ Who can join folders shared by team members. - :rtype: SharedFolderMemberPolicy + :rtype: team_policies.SharedFolderMemberPolicy """ if self._shared_folder_member_policy_present: return self._shared_folder_member_policy_value @@ -1078,7 +1095,7 @@ def shared_folder_join_policy(self): """ Which shared folders team members can join. - :rtype: SharedFolderJoinPolicy + :rtype: team_policies.SharedFolderJoinPolicy """ if self._shared_folder_join_policy_present: return self._shared_folder_join_policy_value @@ -1101,7 +1118,7 @@ def shared_link_create_policy(self): """ Who can view shared links owned by team members. - :rtype: SharedLinkCreatePolicy + :rtype: team_policies.SharedLinkCreatePolicy """ if self._shared_link_create_policy_present: return self._shared_link_create_policy_value @@ -1137,8 +1154,10 @@ class TwoStepVerificationPolicy(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar require_tfa_enable: Enabled require two factor authorization. - :ivar require_tfa_disable: Disabled require two factor authorization. + :ivar team_policies.TwoStepVerificationPolicy.require_tfa_enable: Enabled + require two factor authorization. + :ivar team_policies.TwoStepVerificationPolicy.require_tfa_disable: Disabled + require two factor authorization. """ _catch_all = 'other' diff --git a/dropbox/users.py b/dropbox/users.py index 4bebb3cd..8dfd1554 100644 --- a/dropbox/users.py +++ b/dropbox/users.py @@ -34,15 +34,16 @@ class Account(bb.Struct): The amount of detail revealed about an account depends on the user being queried and the user making the query. - :ivar account_id: The user's unique Dropbox ID. - :ivar name: Details of a user's name. - :ivar email: The user's e-mail address. Do not rely on this without checking - the ``email_verified`` field. Even then, it's possible that the user has - since lost access to their e-mail. - :ivar email_verified: Whether the user has verified their e-mail address. - :ivar profile_photo_url: URL for the photo representing the user, if one is - set. - :ivar disabled: Whether the user has been disabled. + :ivar users.Account.account_id: The user's unique Dropbox ID. + :ivar users.Account.name: Details of a user's name. + :ivar users.Account.email: The user's e-mail address. Do not rely on this + without checking the ``email_verified`` field. Even then, it's possible + that the user has since lost access to their e-mail. + :ivar users.Account.email_verified: Whether the user has verified their + e-mail address. + :ivar users.Account.profile_photo_url: URL for the photo representing the + user, if one is set. + :ivar users.Account.disabled: Whether the user has been disabled. """ __slots__ = [ @@ -122,7 +123,7 @@ def name(self): """ Details of a user's name. - :rtype: Name + :rtype: users.Name """ if self._name_present: return self._name_value @@ -256,11 +257,12 @@ class BasicAccount(Account): """ Basic information about any account. - :ivar is_teammate: Whether this user is a teammate of the current user. If - this account is the current user's account, then this will be ``True``. - :ivar team_member_id: The user's unique team member id. This field will only - be present if the user is part of a team and ``is_teammate`` is - ``True``. + :ivar users.BasicAccount.is_teammate: Whether this user is a teammate of the + current user. If this account is the current user's account, then this + will be ``True``. + :ivar users.BasicAccount.team_member_id: The user's unique team member id. + This field will only be present if the user is part of a team and + ``is_teammate`` is ``True``. """ __slots__ = [ @@ -368,22 +370,23 @@ class FullAccount(Account): """ Detailed information about the current user's account. - :ivar country: The user's two-letter country code, if available. Country - codes are based on `ISO 3166-1 + :ivar users.FullAccount.country: The user's two-letter country code, if + available. Country codes are based on `ISO 3166-1 `_. - :ivar locale: The language that the user specified. Locale tags will be - `IETF language tags `_. - :ivar referral_link: The user's `referral link + :ivar users.FullAccount.locale: The language that the user specified. Locale + tags will be `IETF language tags + `_. + :ivar users.FullAccount.referral_link: The user's `referral link `_. - :ivar team: If this account is a member of a team, information about that - team. - :ivar team_member_id: This account's unique team member id. This field will - only be present if ``team`` is present. - :ivar is_paired: Whether the user has a personal and work account. If the - current account is personal, then ``team`` will always be None, but - ``is_paired`` will indicate if a work account is linked. - :ivar account_type: What type of account this user has. - :ivar root_info: The root info for this account. + :ivar users.FullAccount.team: If this account is a member of a team, + information about that team. + :ivar users.FullAccount.team_member_id: This account's unique team member + id. This field will only be present if ``team`` is present. + :ivar users.FullAccount.is_paired: Whether the user has a personal and work + account. If the current account is personal, then ``team`` will always + be None, but ``is_paired`` will indicate if a work account is linked. + :ivar users.FullAccount.account_type: What type of account this user has. + :ivar users.FullAccount.root_info: The root info for this account. """ __slots__ = [ @@ -540,7 +543,7 @@ def team(self): """ If this account is a member of a team, information about that team. - :rtype: FullTeam + :rtype: users.FullTeam """ if self._team_present: return self._team_value @@ -686,8 +689,8 @@ class Team(bb.Struct): """ Information about a team. - :ivar id: The team's unique ID. - :ivar name: The name of the team. + :ivar users.Team.id: The team's unique ID. + :ivar users.Team.name: The name of the team. """ __slots__ = [ @@ -772,9 +775,9 @@ class FullTeam(Team): """ Detailed information about a team. - :ivar sharing_policies: Team policies governing sharing. - :ivar office_addin_policy: Team policy governing the use of the Office - Add-In. + :ivar users.FullTeam.sharing_policies: Team policies governing sharing. + :ivar users.FullTeam.office_addin_policy: Team policy governing the use of + the Office Add-In. """ __slots__ = [ @@ -863,7 +866,7 @@ def __repr__(self): class GetAccountArg(bb.Struct): """ - :ivar account_id: A user's account identifier. + :ivar users.GetAccountArg.account_id: A user's account identifier. """ __slots__ = [ @@ -915,8 +918,8 @@ def __repr__(self): class GetAccountBatchArg(bb.Struct): """ - :ivar account_ids: List of user account identifiers. Should not contain any - duplicate account IDs. + :ivar users.GetAccountBatchArg.account_ids: List of user account + identifiers. Should not contain any duplicate account IDs. """ __slots__ = [ @@ -973,8 +976,9 @@ class GetAccountBatchError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar str no_account: The value is an account ID specified in - :field:`GetAccountBatchArg.account_ids` that does not exist. + :ivar str users.GetAccountBatchError.no_account: The value is an account ID + specified in :field:`GetAccountBatchArg.account_ids` that does not + exist. """ _catch_all = 'other' @@ -988,7 +992,7 @@ def no_account(cls, val): value ``val``. :param str val: - :rtype: GetAccountBatchError + :rtype: users.GetAccountBatchError """ return cls('no_account', val) @@ -1035,7 +1039,8 @@ class GetAccountError(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar no_account: The specified ``GetAccountArg.account_id`` does not exist. + :ivar users.GetAccountError.no_account: The specified + ``GetAccountArg.account_id`` does not exist. """ _catch_all = 'other' @@ -1070,7 +1075,8 @@ def __repr__(self): class IndividualSpaceAllocation(bb.Struct): """ - :ivar allocated: The total space allocated to the user's account (bytes). + :ivar users.IndividualSpaceAllocation.allocated: The total space allocated + to the user's account (bytes). """ __slots__ = [ @@ -1124,15 +1130,15 @@ class Name(bb.Struct): """ Representations for a person's name to assist with internationalization. - :ivar given_name: Also known as a first name. - :ivar surname: Also known as a last name or family name. - :ivar familiar_name: Locale-dependent name. In the US, a person's familiar - name is their ``given_name``, but elsewhere, it could be any combination - of a person's ``given_name`` and ``surname``. - :ivar display_name: A name that can be used directly to represent the name - of a user's Dropbox account. - :ivar abbreviated_name: An abbreviated form of the person's name. Their - initials in most locales. + :ivar users.Name.given_name: Also known as a first name. + :ivar users.Name.surname: Also known as a last name or family name. + :ivar users.Name.familiar_name: Locale-dependent name. In the US, a person's + familiar name is their ``given_name``, but elsewhere, it could be any + combination of a person's ``given_name`` and ``surname``. + :ivar users.Name.display_name: A name that can be used directly to represent + the name of a user's Dropbox account. + :ivar users.Name.abbreviated_name: An abbreviated form of the person's name. + Their initials in most locales. """ __slots__ = [ @@ -1318,10 +1324,10 @@ class SpaceAllocation(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar IndividualSpaceAllocation individual: The user's space allocation - applies only to their individual account. - :ivar TeamSpaceAllocation team: The user shares space with other members of - their team. + :ivar IndividualSpaceAllocation users.SpaceAllocation.individual: The user's + space allocation applies only to their individual account. + :ivar TeamSpaceAllocation users.SpaceAllocation.team: The user shares space + with other members of their team. """ _catch_all = 'other' @@ -1334,8 +1340,8 @@ def individual(cls, val): Create an instance of this class set to the ``individual`` tag with value ``val``. - :param IndividualSpaceAllocation val: - :rtype: SpaceAllocation + :param users.IndividualSpaceAllocation val: + :rtype: users.SpaceAllocation """ return cls('individual', val) @@ -1345,8 +1351,8 @@ def team(cls, val): Create an instance of this class set to the ``team`` tag with value ``val``. - :param TeamSpaceAllocation val: - :rtype: SpaceAllocation + :param users.TeamSpaceAllocation val: + :rtype: users.SpaceAllocation """ return cls('team', val) @@ -1380,7 +1386,7 @@ def get_individual(self): Only call this if :meth:`is_individual` is true. - :rtype: IndividualSpaceAllocation + :rtype: users.IndividualSpaceAllocation """ if not self.is_individual(): raise AttributeError("tag 'individual' not set") @@ -1392,7 +1398,7 @@ def get_team(self): Only call this if :meth:`is_team` is true. - :rtype: TeamSpaceAllocation + :rtype: users.TeamSpaceAllocation """ if not self.is_team(): raise AttributeError("tag 'team' not set") @@ -1410,8 +1416,8 @@ class SpaceUsage(bb.Struct): """ Information about a user's space usage and quota. - :ivar used: The user's total space usage (bytes). - :ivar allocation: The user's space allocation. + :ivar users.SpaceUsage.used: The user's total space usage (bytes). + :ivar users.SpaceUsage.allocation: The user's space allocation. """ __slots__ = [ @@ -1463,7 +1469,7 @@ def allocation(self): """ The user's space allocation. - :rtype: SpaceAllocation + :rtype: users.SpaceAllocation """ if self._allocation_present: return self._allocation_value @@ -1494,13 +1500,16 @@ def __repr__(self): class TeamSpaceAllocation(bb.Struct): """ - :ivar used: The total space currently used by the user's team (bytes). - :ivar allocated: The total space allocated to the user's team (bytes). - :ivar user_within_team_space_allocated: The total space allocated to the - user within its team allocated space (0 means that no restriction is - imposed on the user's quota within its team). - :ivar user_within_team_space_limit_type: The type of the space limit imposed - on the team member (off, alert_only, stop_sync). + :ivar users.TeamSpaceAllocation.used: The total space currently used by the + user's team (bytes). + :ivar users.TeamSpaceAllocation.allocated: The total space allocated to the + user's team (bytes). + :ivar users.TeamSpaceAllocation.user_within_team_space_allocated: The total + space allocated to the user within its team allocated space (0 means + that no restriction is imposed on the user's quota within its team). + :ivar users.TeamSpaceAllocation.user_within_team_space_limit_type: The type + of the space limit imposed on the team member (off, alert_only, + stop_sync). """ __slots__ = [ diff --git a/dropbox/users_common.py b/dropbox/users_common.py index d1362525..2228102c 100644 --- a/dropbox/users_common.py +++ b/dropbox/users_common.py @@ -24,9 +24,9 @@ class AccountType(bb.Union): return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. - :ivar basic: The basic account type. - :ivar pro: The Dropbox Pro account type. - :ivar business: The Dropbox Business account type. + :ivar users_common.AccountType.basic: The basic account type. + :ivar users_common.AccountType.pro: The Dropbox Pro account type. + :ivar users_common.AccountType.business: The Dropbox Business account type. """ _catch_all = None diff --git a/stone b/stone index 4d2348cf..0c4b720c 160000 --- a/stone +++ b/stone @@ -1 +1 @@ -Subproject commit 4d2348cff28424f4bd4229cca2365a70e1d428ec +Subproject commit 0c4b720cc9377314da9850513315d28144b3285d