From e479946537dca9f6d027d06b9501b76bec68dbea Mon Sep 17 00:00:00 2001 From: Andrey Markelov Date: Sun, 19 Jul 2026 23:31:00 -0700 Subject: [PATCH 1/3] Upgrade Stone pyproject.toml --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a0f01ed9..422757c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ license-files = ["LICENSE"] authors = [{ name = "Dropbox", email = "dev-platform@dropbox.com" }] dependencies = [ "requests>=2.16.2", - "stone>=3.5.2,<4", + "stone>=3.5.3,<4", ] classifiers = [ "Development Status :: 5 - Production/Stable", @@ -34,7 +34,7 @@ Homepage = "http://www.dropbox.com/developers" Source = "https://github.com/dropbox/dropbox-sdk-python" [project.optional-dependencies] -test = ["pytest", "mock", "pytest-mock", "coverage", "stone>=3.5.2,<4"] +test = ["pytest", "mock", "pytest-mock", "coverage", "stone>=3.5.3,<4"] docs = ["sphinx", "sphinx_rtd_theme"] dev = ["flake8", "twine", "wheel", "build"] From 7bc51e94e399f9b3cceebdfe5470b783c10aa4a3 Mon Sep 17 00:00:00 2001 From: Andrey Markelov Date: Sun, 19 Jul 2026 23:55:30 -0700 Subject: [PATCH 2/3] reformat with ruff --- .github/workflows/ci.yml | 5 +- .gitignore | 2 + docs/conf.py | 128 +- dropbox/__init__.py | 8 +- dropbox/account.py | 278 +- dropbox/account_id.py | 10 +- dropbox/async_.py | 85 +- dropbox/auth.py | 339 +- dropbox/base.py | 2038 +- dropbox/base_team.py | 870 +- dropbox/check.py | 59 +- dropbox/common.py | 170 +- dropbox/contacts.py | 54 +- dropbox/content_hash.py | 11 +- dropbox/dropbox_client.py | 479 +- dropbox/exceptions.py | 19 +- dropbox/file_properties.py | 1071 +- dropbox/file_requests.py | 709 +- dropbox/files.py | 6767 ++- dropbox/oauth.py | 282 +- dropbox/openid.py | 122 +- dropbox/paper.py | 1707 +- dropbox/riviera.py | 1498 +- dropbox/secondary_emails.py | 32 +- dropbox/seen_state.py | 60 +- dropbox/session.py | 28 +- dropbox/sharing.py | 7015 ++- dropbox/stone_base.py | 2 +- dropbox/stone_serializers.py | 2 +- dropbox/stone_validators.py | 2 +- dropbox/team.py | 8790 +-- dropbox/team_common.py | 170 +- dropbox/team_log.py | 48017 +++++++++------- dropbox/team_policies.py | 1119 +- dropbox/users.py | 795 +- dropbox/users_common.py | 24 +- .../backup-and-restore-example.py | 37 +- example/oauth/commandline-oauth-pkce.py | 10 +- example/oauth/commandline-oauth-scopes.py | 72 +- example/oauth/commandline-oauth.py | 8 +- example/updown.py | 192 +- generate_base_client.py | 107 +- pyproject.toml | 29 +- test/integration/test_dropbox.py | 146 +- test/unit/test_content_hash.py | 56 +- test/unit/test_dropbox_unit.py | 643 +- tox.ini | 17 +- 47 files changed, 47910 insertions(+), 36174 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67d09f89..03971b83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: - name: Install dependencies run: | python -m pip install -U pip - python -m pip install -U build flake8 pytest + python -m pip install -U build pytest ruff python -m pip install -r requirements.txt python -m pip install -r test/requirements.txt @@ -54,7 +54,8 @@ jobs: - name: Run linter run: | - flake8 dropbox example test + ruff check dropbox example test + ruff format --check dropbox example test - name: Run unit tests run: | diff --git a/.gitignore b/.gitignore index df052d75..b3ca9d53 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,5 @@ __pycache__/ .venv venv/ venv3/ + +dropbox/_version.py diff --git a/docs/conf.py b/docs/conf.py index cf1ce368..01fd267e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,44 +18,44 @@ # Assumes that the dropbox package to generate docs for is one-level above in # the directory hierarchy. This takes precendence over other dropbox packages # that may be in the sys.path. -sys.path.insert(0, os.path.abspath('..')) +sys.path.insert(0, os.path.abspath("..")) import dropbox # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('.')) +# sys.path.insert(0, os.path.abspath('.')) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' +# needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'sphinx.ext.autodoc', - 'sphinx.ext.mathjax', - 'sphinx_rtd_theme', + "sphinx.ext.autodoc", + "sphinx.ext.mathjax", + "sphinx_rtd_theme", ] # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # The suffix of source filenames. -source_suffix = '.rst' +source_suffix = ".rst" # The encoding of source files. -#source_encoding = 'utf-8-sig' +# source_encoding = 'utf-8-sig' # The master toctree document. -master_doc = 'index' +master_doc = "index" # General information about the project. -project = u'Dropbox for Python' -copyright = u'2015-2024, Dropbox, Inc.' +project = "Dropbox for Python" +copyright = "2015-2024, Dropbox, Inc." # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -68,131 +68,131 @@ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -#language = None +# language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: -#today = '' +# today = '' # Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' +# today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ['_build'] +exclude_patterns = ["_build"] # The reST default role (used for this markup: `text`) to use for all # documents. -#default_role = None +# default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True +# add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). -#add_module_names = True +# add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. -#show_authors = False +# show_authors = False # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = "sphinx" # A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] +# modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. -#keep_warnings = False +# keep_warnings = False # -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'sphinx_rtd_theme' +html_theme = "sphinx_rtd_theme" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -#html_theme_options = {} +# html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] +# html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # " v documentation". -#html_title = None +# html_title = None # A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None +# html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. -#html_logo = None +# html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. -#html_favicon = None +# html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ["_static"] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. -#html_extra_path = [] +# html_extra_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' +# html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. -#html_use_smartypants = True +# html_use_smartypants = True # Custom sidebar templates, maps document names to template names. -#html_sidebars = {} +# html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. -#html_additional_pages = {} +# html_additional_pages = {} # If false, no module index is generated. -#html_domain_indices = True +# html_domain_indices = True # If false, no index is generated. -#html_use_index = True +# html_use_index = True # If true, the index is split into individual pages for each letter. -#html_split_index = False +# html_split_index = False # If true, links to the reST sources are added to the pages. -#html_show_sourcelink = True +# html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True +# html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True +# html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. -#html_use_opensearch = '' +# html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None +# html_file_suffix = None # Output file base name for HTML help builder. -htmlhelp_basename = 'DropboxforPythondoc' +htmlhelp_basename = "DropboxforPythondoc" # -- Options for LaTeX output --------------------------------------------- -#latex_elements = { +# latex_elements = { # The paper size ('letterpaper' or 'a4paper'). #'papersize': 'letterpaper', @@ -201,48 +201,48 @@ # Additional stuff for the LaTeX preamble. #'preamble': '', -#} +# } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). -#latex_documents = [ +# latex_documents = [ # ('index2', 'DropboxforPython.tex', u'Dropbox for Python Documentation', # u'Ken Elkabany', 'manual'), -#] +# ] # The name of an image file (relative to this directory) to place at the top of # the title page. -#latex_logo = None +# latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. -#latex_use_parts = False +# latex_use_parts = False # If true, show page references after internal links. -#latex_show_pagerefs = False +# latex_show_pagerefs = False # If true, show URL addresses after external links. -#latex_show_urls = False +# latex_show_urls = False # Documents to append as an appendix to all manuals. -#latex_appendices = [] +# latex_appendices = [] # If false, no module index is generated. -#latex_domain_indices = True +# latex_domain_indices = True # -- Options for manual page output --------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). -#man_pages = [ +# man_pages = [ # ('index2', 'dropboxforpython', u'Dropbox for Python Documentation', # [u'Dropbox, Inc.'], 1) -#] +# ] # If true, show URL addresses after external links. -#man_show_urls = False +# man_show_urls = False # -- Options for Texinfo output ------------------------------------------- @@ -250,20 +250,20 @@ # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) -#texinfo_documents = [ +# texinfo_documents = [ # ('index2', 'DropboxforPython', u'Dropbox for Python Documentation', # u'Dropbox, Inc.', 'DropboxforPython', 'One line description of project.', # 'Miscellaneous'), -#] +# ] # Documents to append as an appendix to all manuals. -#texinfo_appendices = [] +# texinfo_appendices = [] # If false, no module index is generated. -#texinfo_domain_indices = True +# texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. -#texinfo_show_urls = 'footnote' +# texinfo_show_urls = 'footnote' # If true, do not generate a @detailmenu in the "Top" node's menu. -#texinfo_no_detailmenu = False +# texinfo_no_detailmenu = False diff --git a/dropbox/__init__.py b/dropbox/__init__.py index 13686aec..c3a358cb 100644 --- a/dropbox/__init__.py +++ b/dropbox/__init__.py @@ -1,8 +1,12 @@ from __future__ import absolute_import from dropbox.dropbox_client import ( # noqa: F401 # pylint: disable=unused-import - __version__, Dropbox, DropboxTeam, create_session + __version__, + Dropbox, + DropboxTeam, + create_session, ) from dropbox.oauth import ( # noqa: F401 # pylint: disable=unused-import - DropboxOAuth2Flow, DropboxOAuth2FlowNoRedirect + DropboxOAuth2Flow, + DropboxOAuth2FlowNoRedirect, ) diff --git a/dropbox/account.py b/dropbox/account.py index 27c5176c..f265d7fe 100644 --- a/dropbox/account.py +++ b/dropbox/account.py @@ -7,6 +7,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class AccountPhotoGetArg(bb.Struct): """ :ivar AccountPhotoGetArg.dbx_account_id: @@ -20,19 +21,21 @@ class AccountPhotoGetArg(bb.Struct): """ __slots__ = [ - '_dbx_account_id_value', - '_size_value', - '_circle_crop_value', - '_expect_account_photo_value', + "_dbx_account_id_value", + "_size_value", + "_circle_crop_value", + "_expect_account_photo_value", ] _has_required_fields = True - def __init__(self, - dbx_account_id=None, - size=None, - circle_crop=None, - expect_account_photo=None): + def __init__( + self, + dbx_account_id=None, + size=None, + circle_crop=None, + expect_account_photo=None, + ): self._dbx_account_id_value = bb.NOT_SET self._size_value = bb.NOT_SET self._circle_crop_value = bb.NOT_SET @@ -59,10 +62,14 @@ def __init__(self, expect_account_photo = bb.Attribute("expect_account_photo") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountPhotoGetArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountPhotoGetArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountPhotoGetArg_validator = bv.Struct(AccountPhotoGetArg) + class AccountPhotoGetError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -78,7 +85,7 @@ class AccountPhotoGetError(bb.Union): Account photo was expected to exist, but it's missing. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition account_photo_missing = None # Attribute is overwritten below the class definition @@ -95,7 +102,7 @@ def thumbnail_error(cls, val): :param ThumbnailError val: :rtype: AccountPhotoGetError """ - return cls('thumbnail_error', val) + return cls("thumbnail_error", val) def is_thumbnail_error(self): """ @@ -103,7 +110,7 @@ def is_thumbnail_error(self): :rtype: bool """ - return self._tag == 'thumbnail_error' + return self._tag == "thumbnail_error" def is_account_photo_missing(self): """ @@ -111,7 +118,7 @@ def is_account_photo_missing(self): :rtype: bool """ - return self._tag == 'account_photo_missing' + return self._tag == "account_photo_missing" def is_expected_account_photo_missing(self): """ @@ -119,7 +126,7 @@ def is_expected_account_photo_missing(self): :rtype: bool """ - return self._tag == 'expected_account_photo_missing' + return self._tag == "expected_account_photo_missing" def is_other(self): """ @@ -127,7 +134,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_thumbnail_error(self): """ @@ -142,10 +149,14 @@ def get_thumbnail_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountPhotoGetError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountPhotoGetError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountPhotoGetError_validator = bv.Union(AccountPhotoGetError) + class AccountPhotoGetResult(bb.Struct): """ :ivar AccountPhotoGetResult.content_type: @@ -153,13 +164,12 @@ class AccountPhotoGetResult(bb.Struct): """ __slots__ = [ - '_content_type_value', + "_content_type_value", ] _has_required_fields = True - def __init__(self, - content_type=None): + def __init__(self, content_type=None): self._content_type_value = bb.NOT_SET if content_type is not None: self.content_type = content_type @@ -168,18 +178,21 @@ def __init__(self, content_type = bb.Attribute("content_type") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountPhotoGetResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountPhotoGetResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountPhotoGetResult_validator = bv.Struct(AccountPhotoGetResult) + class DeleteProfilePhotoArg(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -187,10 +200,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteProfilePhotoArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteProfilePhotoArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteProfilePhotoArg_validator = bv.Struct(DeleteProfilePhotoArg) + class DeleteProfilePhotoError(bb.Union): """ This union is empty. The comment here is intentionally emitted to avoid @@ -201,7 +218,7 @@ class DeleteProfilePhotoError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -211,21 +228,24 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteProfilePhotoError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteProfilePhotoError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteProfilePhotoError_validator = bv.Union(DeleteProfilePhotoError) + class DeleteProfilePhotoResult(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -233,10 +253,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteProfilePhotoResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteProfilePhotoResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteProfilePhotoResult_validator = bv.Struct(DeleteProfilePhotoResult) + class PhotoSourceArg(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -248,7 +272,7 @@ class PhotoSourceArg(bb.Union): :vartype PhotoSourceArg.base64_data: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -261,7 +285,7 @@ def base64_data(cls, val): :param str val: :rtype: PhotoSourceArg """ - return cls('base64_data', val) + return cls("base64_data", val) def is_base64_data(self): """ @@ -269,7 +293,7 @@ def is_base64_data(self): :rtype: bool """ - return self._tag == 'base64_data' + return self._tag == "base64_data" def is_other(self): """ @@ -277,7 +301,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_base64_data(self): """ @@ -292,10 +316,14 @@ def get_base64_data(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PhotoSourceArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PhotoSourceArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PhotoSourceArg_validator = bv.Union(PhotoSourceArg) + class SetProfilePhotoArg(bb.Struct): """ :ivar SetProfilePhotoArg.photo: @@ -303,13 +331,12 @@ class SetProfilePhotoArg(bb.Struct): """ __slots__ = [ - '_photo_value', + "_photo_value", ] _has_required_fields = True - def __init__(self, - photo=None): + def __init__(self, photo=None): self._photo_value = bb.NOT_SET if photo is not None: self.photo = photo @@ -318,10 +345,14 @@ def __init__(self, photo = bb.Attribute("photo", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetProfilePhotoArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SetProfilePhotoArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SetProfilePhotoArg_validator = bv.Struct(SetProfilePhotoArg) + class SetProfilePhotoError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -340,7 +371,7 @@ class SetProfilePhotoError(bb.Union): Temporary infrastructure failure, please retry. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition file_type_error = None # Attribute is overwritten below the class definition @@ -360,7 +391,7 @@ def is_file_type_error(self): :rtype: bool """ - return self._tag == 'file_type_error' + return self._tag == "file_type_error" def is_file_size_error(self): """ @@ -368,7 +399,7 @@ def is_file_size_error(self): :rtype: bool """ - return self._tag == 'file_size_error' + return self._tag == "file_size_error" def is_dimension_error(self): """ @@ -376,7 +407,7 @@ def is_dimension_error(self): :rtype: bool """ - return self._tag == 'dimension_error' + return self._tag == "dimension_error" def is_thumbnail_error(self): """ @@ -384,7 +415,7 @@ def is_thumbnail_error(self): :rtype: bool """ - return self._tag == 'thumbnail_error' + return self._tag == "thumbnail_error" def is_transient_error(self): """ @@ -392,7 +423,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == 'transient_error' + return self._tag == "transient_error" def is_other(self): """ @@ -400,13 +431,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetProfilePhotoError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SetProfilePhotoError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SetProfilePhotoError_validator = bv.Union(SetProfilePhotoError) + class SetProfilePhotoResult(bb.Struct): """ :ivar SetProfilePhotoResult.profile_photo_url: @@ -414,13 +449,12 @@ class SetProfilePhotoResult(bb.Struct): """ __slots__ = [ - '_profile_photo_url_value', + "_profile_photo_url_value", ] _has_required_fields = True - def __init__(self, - profile_photo_url=None): + def __init__(self, profile_photo_url=None): self._profile_photo_url_value = bb.NOT_SET if profile_photo_url is not None: self.profile_photo_url = profile_photo_url @@ -429,10 +463,14 @@ def __init__(self, profile_photo_url = bb.Attribute("profile_photo_url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetProfilePhotoResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SetProfilePhotoResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SetProfilePhotoResult_validator = bv.Struct(SetProfilePhotoResult) + class ThumbnailError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -445,7 +483,7 @@ class ThumbnailError(bb.Union): Indicates temporary infrastructural failure. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition permanent_failure = None # Attribute is overwritten below the class definition @@ -459,7 +497,7 @@ def is_permanent_failure(self): :rtype: bool """ - return self._tag == 'permanent_failure' + return self._tag == "permanent_failure" def is_temporary_failure(self): """ @@ -467,7 +505,7 @@ def is_temporary_failure(self): :rtype: bool """ - return self._tag == 'temporary_failure' + return self._tag == "temporary_failure" def is_other(self): """ @@ -475,10 +513,13 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ThumbnailError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ThumbnailError_validator = bv.Union(ThumbnailError) @@ -486,17 +527,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccountPhotoGetArg.size.validator = bv.String() AccountPhotoGetArg.circle_crop.validator = bv.Boolean() AccountPhotoGetArg.expect_account_photo.validator = bv.Boolean() -AccountPhotoGetArg._all_field_names_ = set([ - 'dbx_account_id', - 'size', - 'circle_crop', - 'expect_account_photo', -]) +AccountPhotoGetArg._all_field_names_ = set( + [ + "dbx_account_id", + "size", + "circle_crop", + "expect_account_photo", + ] +) AccountPhotoGetArg._all_fields_ = [ - ('dbx_account_id', AccountPhotoGetArg.dbx_account_id.validator), - ('size', AccountPhotoGetArg.size.validator), - ('circle_crop', AccountPhotoGetArg.circle_crop.validator), - ('expect_account_photo', AccountPhotoGetArg.expect_account_photo.validator), + ("dbx_account_id", AccountPhotoGetArg.dbx_account_id.validator), + ("size", AccountPhotoGetArg.size.validator), + ("circle_crop", AccountPhotoGetArg.circle_crop.validator), + ("expect_account_photo", AccountPhotoGetArg.expect_account_photo.validator), ] AccountPhotoGetError._thumbnail_error_validator = ThumbnailError_validator @@ -504,29 +547,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccountPhotoGetError._expected_account_photo_missing_validator = bv.Void() AccountPhotoGetError._other_validator = bv.Void() AccountPhotoGetError._tagmap = { - 'thumbnail_error': AccountPhotoGetError._thumbnail_error_validator, - 'account_photo_missing': AccountPhotoGetError._account_photo_missing_validator, - 'expected_account_photo_missing': AccountPhotoGetError._expected_account_photo_missing_validator, - 'other': AccountPhotoGetError._other_validator, + "thumbnail_error": AccountPhotoGetError._thumbnail_error_validator, + "account_photo_missing": AccountPhotoGetError._account_photo_missing_validator, + "expected_account_photo_missing": AccountPhotoGetError._expected_account_photo_missing_validator, + "other": AccountPhotoGetError._other_validator, } -AccountPhotoGetError.account_photo_missing = AccountPhotoGetError('account_photo_missing') -AccountPhotoGetError.expected_account_photo_missing = AccountPhotoGetError('expected_account_photo_missing') -AccountPhotoGetError.other = AccountPhotoGetError('other') +AccountPhotoGetError.account_photo_missing = AccountPhotoGetError("account_photo_missing") +AccountPhotoGetError.expected_account_photo_missing = AccountPhotoGetError( + "expected_account_photo_missing" +) +AccountPhotoGetError.other = AccountPhotoGetError("other") AccountPhotoGetResult.content_type.validator = bv.String() -AccountPhotoGetResult._all_field_names_ = set(['content_type']) -AccountPhotoGetResult._all_fields_ = [('content_type', AccountPhotoGetResult.content_type.validator)] +AccountPhotoGetResult._all_field_names_ = set(["content_type"]) +AccountPhotoGetResult._all_fields_ = [ + ("content_type", AccountPhotoGetResult.content_type.validator) +] DeleteProfilePhotoArg._all_field_names_ = set([]) DeleteProfilePhotoArg._all_fields_ = [] DeleteProfilePhotoError._other_validator = bv.Void() DeleteProfilePhotoError._tagmap = { - 'other': DeleteProfilePhotoError._other_validator, + "other": DeleteProfilePhotoError._other_validator, } -DeleteProfilePhotoError.other = DeleteProfilePhotoError('other') +DeleteProfilePhotoError.other = DeleteProfilePhotoError("other") DeleteProfilePhotoResult._all_field_names_ = set([]) DeleteProfilePhotoResult._all_fields_ = [] @@ -534,15 +581,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PhotoSourceArg._base64_data_validator = bv.String() PhotoSourceArg._other_validator = bv.Void() PhotoSourceArg._tagmap = { - 'base64_data': PhotoSourceArg._base64_data_validator, - 'other': PhotoSourceArg._other_validator, + "base64_data": PhotoSourceArg._base64_data_validator, + "other": PhotoSourceArg._other_validator, } -PhotoSourceArg.other = PhotoSourceArg('other') +PhotoSourceArg.other = PhotoSourceArg("other") SetProfilePhotoArg.photo.validator = PhotoSourceArg_validator -SetProfilePhotoArg._all_field_names_ = set(['photo']) -SetProfilePhotoArg._all_fields_ = [('photo', SetProfilePhotoArg.photo.validator)] +SetProfilePhotoArg._all_field_names_ = set(["photo"]) +SetProfilePhotoArg._all_fields_ = [("photo", SetProfilePhotoArg.photo.validator)] SetProfilePhotoError._file_type_error_validator = bv.Void() SetProfilePhotoError._file_size_error_validator = bv.Void() @@ -551,75 +598,70 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SetProfilePhotoError._transient_error_validator = bv.Void() SetProfilePhotoError._other_validator = bv.Void() SetProfilePhotoError._tagmap = { - 'file_type_error': SetProfilePhotoError._file_type_error_validator, - 'file_size_error': SetProfilePhotoError._file_size_error_validator, - 'dimension_error': SetProfilePhotoError._dimension_error_validator, - 'thumbnail_error': SetProfilePhotoError._thumbnail_error_validator, - 'transient_error': SetProfilePhotoError._transient_error_validator, - 'other': SetProfilePhotoError._other_validator, + "file_type_error": SetProfilePhotoError._file_type_error_validator, + "file_size_error": SetProfilePhotoError._file_size_error_validator, + "dimension_error": SetProfilePhotoError._dimension_error_validator, + "thumbnail_error": SetProfilePhotoError._thumbnail_error_validator, + "transient_error": SetProfilePhotoError._transient_error_validator, + "other": SetProfilePhotoError._other_validator, } -SetProfilePhotoError.file_type_error = SetProfilePhotoError('file_type_error') -SetProfilePhotoError.file_size_error = SetProfilePhotoError('file_size_error') -SetProfilePhotoError.dimension_error = SetProfilePhotoError('dimension_error') -SetProfilePhotoError.thumbnail_error = SetProfilePhotoError('thumbnail_error') -SetProfilePhotoError.transient_error = SetProfilePhotoError('transient_error') -SetProfilePhotoError.other = SetProfilePhotoError('other') +SetProfilePhotoError.file_type_error = SetProfilePhotoError("file_type_error") +SetProfilePhotoError.file_size_error = SetProfilePhotoError("file_size_error") +SetProfilePhotoError.dimension_error = SetProfilePhotoError("dimension_error") +SetProfilePhotoError.thumbnail_error = SetProfilePhotoError("thumbnail_error") +SetProfilePhotoError.transient_error = SetProfilePhotoError("transient_error") +SetProfilePhotoError.other = SetProfilePhotoError("other") SetProfilePhotoResult.profile_photo_url.validator = bv.String() -SetProfilePhotoResult._all_field_names_ = set(['profile_photo_url']) -SetProfilePhotoResult._all_fields_ = [('profile_photo_url', SetProfilePhotoResult.profile_photo_url.validator)] +SetProfilePhotoResult._all_field_names_ = set(["profile_photo_url"]) +SetProfilePhotoResult._all_fields_ = [ + ("profile_photo_url", SetProfilePhotoResult.profile_photo_url.validator) +] ThumbnailError._permanent_failure_validator = bv.Void() ThumbnailError._temporary_failure_validator = bv.Void() ThumbnailError._other_validator = bv.Void() ThumbnailError._tagmap = { - 'permanent_failure': ThumbnailError._permanent_failure_validator, - 'temporary_failure': ThumbnailError._temporary_failure_validator, - 'other': ThumbnailError._other_validator, + "permanent_failure": ThumbnailError._permanent_failure_validator, + "temporary_failure": ThumbnailError._temporary_failure_validator, + "other": ThumbnailError._other_validator, } -ThumbnailError.permanent_failure = ThumbnailError('permanent_failure') -ThumbnailError.temporary_failure = ThumbnailError('temporary_failure') -ThumbnailError.other = ThumbnailError('other') +ThumbnailError.permanent_failure = ThumbnailError("permanent_failure") +ThumbnailError.temporary_failure = ThumbnailError("temporary_failure") +ThumbnailError.other = ThumbnailError("other") delete_profile_photo = bb.Route( - 'delete_profile_photo', + "delete_profile_photo", 1, False, DeleteProfilePhotoArg_validator, DeleteProfilePhotoResult_validator, DeleteProfilePhotoError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_photo = bb.Route( - 'get_photo', + "get_photo", 1, False, AccountPhotoGetArg_validator, AccountPhotoGetResult_validator, AccountPhotoGetError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'download'}, + {"auth": "user", "host": "content", "style": "download"}, ) set_profile_photo = bb.Route( - 'set_profile_photo', + "set_profile_photo", 1, False, SetProfilePhotoArg_validator, SetProfilePhotoResult_validator, SetProfilePhotoError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'delete_profile_photo': delete_profile_photo, - 'get_photo': get_photo, - 'set_profile_photo': set_profile_photo, + "delete_profile_photo": delete_profile_photo, + "get_photo": get_photo, + "set_profile_photo": set_profile_photo, } - diff --git a/dropbox/account_id.py b/dropbox/account_id.py index 10e51dd1..e86bafd2 100644 --- a/dropbox/account_id.py +++ b/dropbox/account_id.py @@ -7,6 +7,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class ContainsDbidAnnotation(bb.AnnotationType): """ Annotation type should be applied to Response object fields which contain @@ -14,11 +15,10 @@ class ContainsDbidAnnotation(bb.AnnotationType): """ __slots__ = [ - '_authorize_caller', + "_authorize_caller", ] - def __init__(self, - authorize_caller=True): + def __init__(self, authorize_caller=True): self._authorize_caller = authorize_caller @property @@ -29,6 +29,4 @@ def authorize_caller(self): return self._authorize_caller -ROUTES = { -} - +ROUTES = {} diff --git a/dropbox/async_.py b/dropbox/async_.py index f353dbd2..a58a271d 100644 --- a/dropbox/async_.py +++ b/dropbox/async_.py @@ -7,6 +7,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class LaunchResultBase(bb.Union): """ Result returned by methods that launch an asynchronous job. A method who may @@ -36,7 +37,7 @@ def async_job_id(cls, val): :param str val: :rtype: LaunchResultBase """ - return cls('async_job_id', val) + return cls("async_job_id", val) def is_async_job_id(self): """ @@ -44,7 +45,7 @@ def is_async_job_id(self): :rtype: bool """ - return self._tag == 'async_job_id' + return self._tag == "async_job_id" def get_async_job_id(self): """ @@ -60,10 +61,14 @@ def get_async_job_id(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LaunchResultBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LaunchResultBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LaunchResultBase_validator = bv.Union(LaunchResultBase) + class LaunchEmptyResult(LaunchResultBase): """ Result returned by methods that may either launch an asynchronous job or @@ -87,13 +92,17 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LaunchEmptyResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LaunchEmptyResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LaunchEmptyResult_validator = bv.Union(LaunchEmptyResult) + class PollArg(bb.Struct): """ Arguments for methods that poll the status of an asynchronous job. @@ -104,13 +113,12 @@ class PollArg(bb.Struct): """ __slots__ = [ - '_async_job_id_value', + "_async_job_id_value", ] _has_required_fields = True - def __init__(self, - async_job_id=None): + def __init__(self, async_job_id=None): self._async_job_id_value = bb.NOT_SET if async_job_id is not None: self.async_job_id = async_job_id @@ -121,8 +129,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(PollArg, self)._process_custom_annotations(annotation_type, field_path, processor) + PollArg_validator = bv.Struct(PollArg) + class PollResultBase(bb.Union): """ Result returned by methods that poll for the status of an asynchronous job. @@ -148,13 +158,17 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == 'in_progress' + return self._tag == "in_progress" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PollResultBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PollResultBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PollResultBase_validator = bv.Union(PollResultBase) + class PollEmptyResult(PollResultBase): """ Result returned by methods that poll for the status of an asynchronous job. @@ -177,13 +191,17 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PollEmptyResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PollEmptyResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PollEmptyResult_validator = bv.Union(PollEmptyResult) + class PollError(bb.Union): """ Error returned by methods for polling the status of asynchronous job. @@ -200,7 +218,7 @@ class PollError(bb.Union): This should happen very rarely. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_async_job_id = None # Attribute is overwritten below the class definition @@ -214,7 +232,7 @@ def is_invalid_async_job_id(self): :rtype: bool """ - return self._tag == 'invalid_async_job_id' + return self._tag == "invalid_async_job_id" def is_internal_error(self): """ @@ -222,7 +240,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == 'internal_error' + return self._tag == "internal_error" def is_other(self): """ @@ -230,59 +248,58 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(PollError, self)._process_custom_annotations(annotation_type, field_path, processor) + PollError_validator = bv.Union(PollError) AsyncJobId_validator = bv.String(min_length=1) LaunchResultBase._async_job_id_validator = AsyncJobId_validator LaunchResultBase._tagmap = { - 'async_job_id': LaunchResultBase._async_job_id_validator, + "async_job_id": LaunchResultBase._async_job_id_validator, } LaunchEmptyResult._complete_validator = bv.Void() LaunchEmptyResult._tagmap = { - 'complete': LaunchEmptyResult._complete_validator, + "complete": LaunchEmptyResult._complete_validator, } LaunchEmptyResult._tagmap.update(LaunchResultBase._tagmap) -LaunchEmptyResult.complete = LaunchEmptyResult('complete') +LaunchEmptyResult.complete = LaunchEmptyResult("complete") PollArg.async_job_id.validator = AsyncJobId_validator -PollArg._all_field_names_ = set(['async_job_id']) -PollArg._all_fields_ = [('async_job_id', PollArg.async_job_id.validator)] +PollArg._all_field_names_ = set(["async_job_id"]) +PollArg._all_fields_ = [("async_job_id", PollArg.async_job_id.validator)] PollResultBase._in_progress_validator = bv.Void() PollResultBase._tagmap = { - 'in_progress': PollResultBase._in_progress_validator, + "in_progress": PollResultBase._in_progress_validator, } -PollResultBase.in_progress = PollResultBase('in_progress') +PollResultBase.in_progress = PollResultBase("in_progress") PollEmptyResult._complete_validator = bv.Void() PollEmptyResult._tagmap = { - 'complete': PollEmptyResult._complete_validator, + "complete": PollEmptyResult._complete_validator, } PollEmptyResult._tagmap.update(PollResultBase._tagmap) -PollEmptyResult.complete = PollEmptyResult('complete') +PollEmptyResult.complete = PollEmptyResult("complete") PollError._invalid_async_job_id_validator = bv.Void() PollError._internal_error_validator = bv.Void() PollError._other_validator = bv.Void() PollError._tagmap = { - 'invalid_async_job_id': PollError._invalid_async_job_id_validator, - 'internal_error': PollError._internal_error_validator, - 'other': PollError._other_validator, + "invalid_async_job_id": PollError._invalid_async_job_id_validator, + "internal_error": PollError._internal_error_validator, + "other": PollError._other_validator, } -PollError.invalid_async_job_id = PollError('invalid_async_job_id') -PollError.internal_error = PollError('internal_error') -PollError.other = PollError('other') - -ROUTES = { -} +PollError.invalid_async_job_id = PollError("invalid_async_job_id") +PollError.internal_error = PollError("internal_error") +PollError.other = PollError("other") +ROUTES = {} diff --git a/dropbox/auth.py b/dropbox/auth.py index 3383f7a7..0f8d2407 100644 --- a/dropbox/auth.py +++ b/dropbox/auth.py @@ -7,6 +7,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class AccessError(bb.Union): """ Error occurred because the account doesn't have permission to access the @@ -29,7 +30,7 @@ class AccessError(bb.Union): :vartype AccessError.no_permission: NoPermissionError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition team_access_denied = None # Attribute is overwritten below the class definition @@ -44,7 +45,7 @@ def invalid_account_type(cls, val): :param InvalidAccountTypeError val: :rtype: AccessError """ - return cls('invalid_account_type', val) + return cls("invalid_account_type", val) @classmethod def paper_access_denied(cls, val): @@ -55,7 +56,7 @@ def paper_access_denied(cls, val): :param PaperAccessError val: :rtype: AccessError """ - return cls('paper_access_denied', val) + return cls("paper_access_denied", val) @classmethod def no_permission(cls, val): @@ -66,7 +67,7 @@ def no_permission(cls, val): :param NoPermissionError val: :rtype: AccessError """ - return cls('no_permission', val) + return cls("no_permission", val) def is_invalid_account_type(self): """ @@ -74,7 +75,7 @@ def is_invalid_account_type(self): :rtype: bool """ - return self._tag == 'invalid_account_type' + return self._tag == "invalid_account_type" def is_paper_access_denied(self): """ @@ -82,7 +83,7 @@ def is_paper_access_denied(self): :rtype: bool """ - return self._tag == 'paper_access_denied' + return self._tag == "paper_access_denied" def is_team_access_denied(self): """ @@ -90,7 +91,7 @@ def is_team_access_denied(self): :rtype: bool """ - return self._tag == 'team_access_denied' + return self._tag == "team_access_denied" def is_no_permission(self): """ @@ -98,7 +99,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_other(self): """ @@ -106,7 +107,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_invalid_account_type(self): """ @@ -147,8 +148,10 @@ def get_no_permission(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(AccessError, self)._process_custom_annotations(annotation_type, field_path, processor) + AccessError_validator = bv.Union(AccessError) + class AuthError(bb.Union): """ Errors occurred during authentication. @@ -176,7 +179,7 @@ class AuthError(bb.Union): The route is not available to public. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_access_token = None # Attribute is overwritten below the class definition @@ -201,7 +204,7 @@ def missing_scope(cls, val): :param TokenScopeError val: :rtype: AuthError """ - return cls('missing_scope', val) + return cls("missing_scope", val) def is_invalid_access_token(self): """ @@ -209,7 +212,7 @@ def is_invalid_access_token(self): :rtype: bool """ - return self._tag == 'invalid_access_token' + return self._tag == "invalid_access_token" def is_invalid_select_user(self): """ @@ -217,7 +220,7 @@ def is_invalid_select_user(self): :rtype: bool """ - return self._tag == 'invalid_select_user' + return self._tag == "invalid_select_user" def is_invalid_select_admin(self): """ @@ -225,7 +228,7 @@ def is_invalid_select_admin(self): :rtype: bool """ - return self._tag == 'invalid_select_admin' + return self._tag == "invalid_select_admin" def is_user_suspended(self): """ @@ -233,7 +236,7 @@ def is_user_suspended(self): :rtype: bool """ - return self._tag == 'user_suspended' + return self._tag == "user_suspended" def is_expired_access_token(self): """ @@ -241,7 +244,7 @@ def is_expired_access_token(self): :rtype: bool """ - return self._tag == 'expired_access_token' + return self._tag == "expired_access_token" def is_missing_scope(self): """ @@ -249,7 +252,7 @@ def is_missing_scope(self): :rtype: bool """ - return self._tag == 'missing_scope' + return self._tag == "missing_scope" def is_route_access_denied(self): """ @@ -257,7 +260,7 @@ def is_route_access_denied(self): :rtype: bool """ - return self._tag == 'route_access_denied' + return self._tag == "route_access_denied" def is_other(self): """ @@ -265,7 +268,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_missing_scope(self): """ @@ -282,8 +285,10 @@ def get_missing_scope(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(AuthError, self)._process_custom_annotations(annotation_type, field_path, processor) + AuthError_validator = bv.Union(AuthError) + class InvalidAccountTypeError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -297,7 +302,7 @@ class InvalidAccountTypeError(bb.Union): Current account type doesn't have permission to access this feature. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition endpoint = None # Attribute is overwritten below the class definition @@ -311,7 +316,7 @@ def is_endpoint(self): :rtype: bool """ - return self._tag == 'endpoint' + return self._tag == "endpoint" def is_feature(self): """ @@ -319,7 +324,7 @@ def is_feature(self): :rtype: bool """ - return self._tag == 'feature' + return self._tag == "feature" def is_other(self): """ @@ -327,13 +332,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InvalidAccountTypeError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InvalidAccountTypeError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + InvalidAccountTypeError_validator = bv.Union(InvalidAccountTypeError) + class NoPermissionError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -346,7 +355,7 @@ class NoPermissionError(bb.Union): :vartype NoPermissionError.unauthorized_account_id_usage: UnauthorizedAccountIdUsageError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -359,7 +368,7 @@ def unauthorized_account_id_usage(cls, val): :param UnauthorizedAccountIdUsageError val: :rtype: NoPermissionError """ - return cls('unauthorized_account_id_usage', val) + return cls("unauthorized_account_id_usage", val) def is_unauthorized_account_id_usage(self): """ @@ -367,7 +376,7 @@ def is_unauthorized_account_id_usage(self): :rtype: bool """ - return self._tag == 'unauthorized_account_id_usage' + return self._tag == "unauthorized_account_id_usage" def is_other(self): """ @@ -375,7 +384,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_unauthorized_account_id_usage(self): """ @@ -391,10 +400,14 @@ def get_unauthorized_account_id_usage(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPermissionError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoPermissionError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoPermissionError_validator = bv.Union(NoPermissionError) + class PaperAccessError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -407,7 +420,7 @@ class PaperAccessError(bb.Union): The provided user has not used Paper yet. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition paper_disabled = None # Attribute is overwritten below the class definition @@ -421,7 +434,7 @@ def is_paper_disabled(self): :rtype: bool """ - return self._tag == 'paper_disabled' + return self._tag == "paper_disabled" def is_not_paper_user(self): """ @@ -429,7 +442,7 @@ def is_not_paper_user(self): :rtype: bool """ - return self._tag == 'not_paper_user' + return self._tag == "not_paper_user" def is_other(self): """ @@ -437,13 +450,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperAccessError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperAccessError_validator = bv.Union(PaperAccessError) + class RateLimitError(bb.Struct): """ Error occurred because the app is being rate limited. @@ -456,15 +473,13 @@ class RateLimitError(bb.Struct): """ __slots__ = [ - '_reason_value', - '_retry_after_value', + "_reason_value", + "_retry_after_value", ] _has_required_fields = True - def __init__(self, - reason=None, - retry_after=None): + def __init__(self, reason=None, retry_after=None): self._reason_value = bb.NOT_SET self._retry_after_value = bb.NOT_SET if reason is not None: @@ -479,10 +494,14 @@ def __init__(self, retry_after = bb.Attribute("retry_after") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RateLimitError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RateLimitError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RateLimitError_validator = bv.Struct(RateLimitError) + class RateLimitReason(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -496,7 +515,7 @@ class RateLimitReason(bb.Union): Dropbox. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition too_many_requests = None # Attribute is overwritten below the class definition @@ -510,7 +529,7 @@ def is_too_many_requests(self): :rtype: bool """ - return self._tag == 'too_many_requests' + return self._tag == "too_many_requests" def is_too_many_write_operations(self): """ @@ -518,7 +537,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == 'too_many_write_operations' + return self._tag == "too_many_write_operations" def is_other(self): """ @@ -526,13 +545,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RateLimitReason, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RateLimitReason, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RateLimitReason_validator = bv.Union(RateLimitReason) + class TokenFromOAuth1Arg(bb.Struct): """ :ivar TokenFromOAuth1Arg.oauth1_token: @@ -542,15 +565,13 @@ class TokenFromOAuth1Arg(bb.Struct): """ __slots__ = [ - '_oauth1_token_value', - '_oauth1_token_secret_value', + "_oauth1_token_value", + "_oauth1_token_secret_value", ] _has_required_fields = True - def __init__(self, - oauth1_token=None, - oauth1_token_secret=None): + def __init__(self, oauth1_token=None, oauth1_token_secret=None): self._oauth1_token_value = bb.NOT_SET self._oauth1_token_secret_value = bb.NOT_SET if oauth1_token is not None: @@ -565,10 +586,14 @@ def __init__(self, oauth1_token_secret = bb.Attribute("oauth1_token_secret") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenFromOAuth1Arg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TokenFromOAuth1Arg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TokenFromOAuth1Arg_validator = bv.Struct(TokenFromOAuth1Arg) + class TokenFromOAuth1Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -582,7 +607,7 @@ class TokenFromOAuth1Error(bb.Union): access token. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_oauth1_token_info = None # Attribute is overwritten below the class definition @@ -596,7 +621,7 @@ def is_invalid_oauth1_token_info(self): :rtype: bool """ - return self._tag == 'invalid_oauth1_token_info' + return self._tag == "invalid_oauth1_token_info" def is_app_id_mismatch(self): """ @@ -604,7 +629,7 @@ def is_app_id_mismatch(self): :rtype: bool """ - return self._tag == 'app_id_mismatch' + return self._tag == "app_id_mismatch" def is_other(self): """ @@ -612,13 +637,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenFromOAuth1Error, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TokenFromOAuth1Error, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TokenFromOAuth1Error_validator = bv.Union(TokenFromOAuth1Error) + class TokenFromOAuth1Result(bb.Struct): """ :ivar TokenFromOAuth1Result.oauth2_token: @@ -626,13 +655,12 @@ class TokenFromOAuth1Result(bb.Struct): """ __slots__ = [ - '_oauth2_token_value', + "_oauth2_token_value", ] _has_required_fields = True - def __init__(self, - oauth2_token=None): + def __init__(self, oauth2_token=None): self._oauth2_token_value = bb.NOT_SET if oauth2_token is not None: self.oauth2_token = oauth2_token @@ -641,10 +669,14 @@ def __init__(self, oauth2_token = bb.Attribute("oauth2_token") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenFromOAuth1Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TokenFromOAuth1Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TokenFromOAuth1Result_validator = bv.Struct(TokenFromOAuth1Result) + class TokenScopeError(bb.Struct): """ :ivar TokenScopeError.required_scope: @@ -652,13 +684,12 @@ class TokenScopeError(bb.Struct): """ __slots__ = [ - '_required_scope_value', + "_required_scope_value", ] _has_required_fields = True - def __init__(self, - required_scope=None): + def __init__(self, required_scope=None): self._required_scope_value = bb.NOT_SET if required_scope is not None: self.required_scope = required_scope @@ -667,10 +698,14 @@ def __init__(self, required_scope = bb.Attribute("required_scope") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenScopeError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TokenScopeError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TokenScopeError_validator = bv.Struct(TokenScopeError) + class UnauthorizedAccountIdUsageError(bb.Struct): """ :ivar UnauthorizedAccountIdUsageError.unauthorized_account_ids: @@ -678,13 +713,12 @@ class UnauthorizedAccountIdUsageError(bb.Struct): """ __slots__ = [ - '_unauthorized_account_ids_value', + "_unauthorized_account_ids_value", ] _has_required_fields = True - def __init__(self, - unauthorized_account_ids=None): + def __init__(self, unauthorized_account_ids=None): self._unauthorized_account_ids_value = bb.NOT_SET if unauthorized_account_ids is not None: self.unauthorized_account_ids = unauthorized_account_ids @@ -693,7 +727,10 @@ def __init__(self, unauthorized_account_ids = bb.Attribute("unauthorized_account_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnauthorizedAccountIdUsageError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UnauthorizedAccountIdUsageError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UnauthorizedAccountIdUsageError_validator = bv.Struct(UnauthorizedAccountIdUsageError) @@ -703,15 +740,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccessError._no_permission_validator = NoPermissionError_validator AccessError._other_validator = bv.Void() AccessError._tagmap = { - 'invalid_account_type': AccessError._invalid_account_type_validator, - 'paper_access_denied': AccessError._paper_access_denied_validator, - 'team_access_denied': AccessError._team_access_denied_validator, - 'no_permission': AccessError._no_permission_validator, - 'other': AccessError._other_validator, + "invalid_account_type": AccessError._invalid_account_type_validator, + "paper_access_denied": AccessError._paper_access_denied_validator, + "team_access_denied": AccessError._team_access_denied_validator, + "no_permission": AccessError._no_permission_validator, + "other": AccessError._other_validator, } -AccessError.team_access_denied = AccessError('team_access_denied') -AccessError.other = AccessError('other') +AccessError.team_access_denied = AccessError("team_access_denied") +AccessError.other = AccessError("other") AuthError._invalid_access_token_validator = bv.Void() AuthError._invalid_select_user_validator = bv.Void() @@ -722,145 +759,153 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AuthError._route_access_denied_validator = bv.Void() AuthError._other_validator = bv.Void() AuthError._tagmap = { - 'invalid_access_token': AuthError._invalid_access_token_validator, - 'invalid_select_user': AuthError._invalid_select_user_validator, - 'invalid_select_admin': AuthError._invalid_select_admin_validator, - 'user_suspended': AuthError._user_suspended_validator, - 'expired_access_token': AuthError._expired_access_token_validator, - 'missing_scope': AuthError._missing_scope_validator, - 'route_access_denied': AuthError._route_access_denied_validator, - 'other': AuthError._other_validator, + "invalid_access_token": AuthError._invalid_access_token_validator, + "invalid_select_user": AuthError._invalid_select_user_validator, + "invalid_select_admin": AuthError._invalid_select_admin_validator, + "user_suspended": AuthError._user_suspended_validator, + "expired_access_token": AuthError._expired_access_token_validator, + "missing_scope": AuthError._missing_scope_validator, + "route_access_denied": AuthError._route_access_denied_validator, + "other": AuthError._other_validator, } -AuthError.invalid_access_token = AuthError('invalid_access_token') -AuthError.invalid_select_user = AuthError('invalid_select_user') -AuthError.invalid_select_admin = AuthError('invalid_select_admin') -AuthError.user_suspended = AuthError('user_suspended') -AuthError.expired_access_token = AuthError('expired_access_token') -AuthError.route_access_denied = AuthError('route_access_denied') -AuthError.other = AuthError('other') +AuthError.invalid_access_token = AuthError("invalid_access_token") +AuthError.invalid_select_user = AuthError("invalid_select_user") +AuthError.invalid_select_admin = AuthError("invalid_select_admin") +AuthError.user_suspended = AuthError("user_suspended") +AuthError.expired_access_token = AuthError("expired_access_token") +AuthError.route_access_denied = AuthError("route_access_denied") +AuthError.other = AuthError("other") InvalidAccountTypeError._endpoint_validator = bv.Void() InvalidAccountTypeError._feature_validator = bv.Void() InvalidAccountTypeError._other_validator = bv.Void() InvalidAccountTypeError._tagmap = { - 'endpoint': InvalidAccountTypeError._endpoint_validator, - 'feature': InvalidAccountTypeError._feature_validator, - 'other': InvalidAccountTypeError._other_validator, + "endpoint": InvalidAccountTypeError._endpoint_validator, + "feature": InvalidAccountTypeError._feature_validator, + "other": InvalidAccountTypeError._other_validator, } -InvalidAccountTypeError.endpoint = InvalidAccountTypeError('endpoint') -InvalidAccountTypeError.feature = InvalidAccountTypeError('feature') -InvalidAccountTypeError.other = InvalidAccountTypeError('other') +InvalidAccountTypeError.endpoint = InvalidAccountTypeError("endpoint") +InvalidAccountTypeError.feature = InvalidAccountTypeError("feature") +InvalidAccountTypeError.other = InvalidAccountTypeError("other") -NoPermissionError._unauthorized_account_id_usage_validator = UnauthorizedAccountIdUsageError_validator +NoPermissionError._unauthorized_account_id_usage_validator = ( + UnauthorizedAccountIdUsageError_validator +) NoPermissionError._other_validator = bv.Void() NoPermissionError._tagmap = { - 'unauthorized_account_id_usage': NoPermissionError._unauthorized_account_id_usage_validator, - 'other': NoPermissionError._other_validator, + "unauthorized_account_id_usage": NoPermissionError._unauthorized_account_id_usage_validator, + "other": NoPermissionError._other_validator, } -NoPermissionError.other = NoPermissionError('other') +NoPermissionError.other = NoPermissionError("other") PaperAccessError._paper_disabled_validator = bv.Void() PaperAccessError._not_paper_user_validator = bv.Void() PaperAccessError._other_validator = bv.Void() PaperAccessError._tagmap = { - 'paper_disabled': PaperAccessError._paper_disabled_validator, - 'not_paper_user': PaperAccessError._not_paper_user_validator, - 'other': PaperAccessError._other_validator, + "paper_disabled": PaperAccessError._paper_disabled_validator, + "not_paper_user": PaperAccessError._not_paper_user_validator, + "other": PaperAccessError._other_validator, } -PaperAccessError.paper_disabled = PaperAccessError('paper_disabled') -PaperAccessError.not_paper_user = PaperAccessError('not_paper_user') -PaperAccessError.other = PaperAccessError('other') +PaperAccessError.paper_disabled = PaperAccessError("paper_disabled") +PaperAccessError.not_paper_user = PaperAccessError("not_paper_user") +PaperAccessError.other = PaperAccessError("other") RateLimitError.reason.validator = RateLimitReason_validator RateLimitError.retry_after.validator = bv.UInt64() -RateLimitError._all_field_names_ = set([ - 'reason', - 'retry_after', -]) +RateLimitError._all_field_names_ = set( + [ + "reason", + "retry_after", + ] +) RateLimitError._all_fields_ = [ - ('reason', RateLimitError.reason.validator), - ('retry_after', RateLimitError.retry_after.validator), + ("reason", RateLimitError.reason.validator), + ("retry_after", RateLimitError.retry_after.validator), ] RateLimitReason._too_many_requests_validator = bv.Void() RateLimitReason._too_many_write_operations_validator = bv.Void() RateLimitReason._other_validator = bv.Void() RateLimitReason._tagmap = { - 'too_many_requests': RateLimitReason._too_many_requests_validator, - 'too_many_write_operations': RateLimitReason._too_many_write_operations_validator, - 'other': RateLimitReason._other_validator, + "too_many_requests": RateLimitReason._too_many_requests_validator, + "too_many_write_operations": RateLimitReason._too_many_write_operations_validator, + "other": RateLimitReason._other_validator, } -RateLimitReason.too_many_requests = RateLimitReason('too_many_requests') -RateLimitReason.too_many_write_operations = RateLimitReason('too_many_write_operations') -RateLimitReason.other = RateLimitReason('other') +RateLimitReason.too_many_requests = RateLimitReason("too_many_requests") +RateLimitReason.too_many_write_operations = RateLimitReason("too_many_write_operations") +RateLimitReason.other = RateLimitReason("other") TokenFromOAuth1Arg.oauth1_token.validator = bv.String(min_length=1) TokenFromOAuth1Arg.oauth1_token_secret.validator = bv.String(min_length=1) -TokenFromOAuth1Arg._all_field_names_ = set([ - 'oauth1_token', - 'oauth1_token_secret', -]) +TokenFromOAuth1Arg._all_field_names_ = set( + [ + "oauth1_token", + "oauth1_token_secret", + ] +) TokenFromOAuth1Arg._all_fields_ = [ - ('oauth1_token', TokenFromOAuth1Arg.oauth1_token.validator), - ('oauth1_token_secret', TokenFromOAuth1Arg.oauth1_token_secret.validator), + ("oauth1_token", TokenFromOAuth1Arg.oauth1_token.validator), + ("oauth1_token_secret", TokenFromOAuth1Arg.oauth1_token_secret.validator), ] TokenFromOAuth1Error._invalid_oauth1_token_info_validator = bv.Void() TokenFromOAuth1Error._app_id_mismatch_validator = bv.Void() TokenFromOAuth1Error._other_validator = bv.Void() TokenFromOAuth1Error._tagmap = { - 'invalid_oauth1_token_info': TokenFromOAuth1Error._invalid_oauth1_token_info_validator, - 'app_id_mismatch': TokenFromOAuth1Error._app_id_mismatch_validator, - 'other': TokenFromOAuth1Error._other_validator, + "invalid_oauth1_token_info": TokenFromOAuth1Error._invalid_oauth1_token_info_validator, + "app_id_mismatch": TokenFromOAuth1Error._app_id_mismatch_validator, + "other": TokenFromOAuth1Error._other_validator, } -TokenFromOAuth1Error.invalid_oauth1_token_info = TokenFromOAuth1Error('invalid_oauth1_token_info') -TokenFromOAuth1Error.app_id_mismatch = TokenFromOAuth1Error('app_id_mismatch') -TokenFromOAuth1Error.other = TokenFromOAuth1Error('other') +TokenFromOAuth1Error.invalid_oauth1_token_info = TokenFromOAuth1Error("invalid_oauth1_token_info") +TokenFromOAuth1Error.app_id_mismatch = TokenFromOAuth1Error("app_id_mismatch") +TokenFromOAuth1Error.other = TokenFromOAuth1Error("other") TokenFromOAuth1Result.oauth2_token.validator = bv.String(min_length=1) -TokenFromOAuth1Result._all_field_names_ = set(['oauth2_token']) -TokenFromOAuth1Result._all_fields_ = [('oauth2_token', TokenFromOAuth1Result.oauth2_token.validator)] +TokenFromOAuth1Result._all_field_names_ = set(["oauth2_token"]) +TokenFromOAuth1Result._all_fields_ = [ + ("oauth2_token", TokenFromOAuth1Result.oauth2_token.validator) +] TokenScopeError.required_scope.validator = bv.String() -TokenScopeError._all_field_names_ = set(['required_scope']) -TokenScopeError._all_fields_ = [('required_scope', TokenScopeError.required_scope.validator)] +TokenScopeError._all_field_names_ = set(["required_scope"]) +TokenScopeError._all_fields_ = [("required_scope", TokenScopeError.required_scope.validator)] UnauthorizedAccountIdUsageError.unauthorized_account_ids.validator = bv.List(bv.String()) -UnauthorizedAccountIdUsageError._all_field_names_ = set(['unauthorized_account_ids']) -UnauthorizedAccountIdUsageError._all_fields_ = [('unauthorized_account_ids', UnauthorizedAccountIdUsageError.unauthorized_account_ids.validator)] +UnauthorizedAccountIdUsageError._all_field_names_ = set(["unauthorized_account_ids"]) +UnauthorizedAccountIdUsageError._all_fields_ = [ + ( + "unauthorized_account_ids", + UnauthorizedAccountIdUsageError.unauthorized_account_ids.validator, + ) +] RateLimitError.retry_after.default = 1 token_from_oauth1 = bb.Route( - 'token/from_oauth1', + "token/from_oauth1", 1, True, TokenFromOAuth1Arg_validator, TokenFromOAuth1Result_validator, TokenFromOAuth1Error_validator, - {'auth': 'app', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app", "host": "api", "style": "rpc"}, ) token_revoke = bb.Route( - 'token/revoke', + "token/revoke", 1, False, bv.Void(), bv.Void(), bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'token/from_oauth1': token_from_oauth1, - 'token/revoke': token_revoke, + "token/from_oauth1": token_from_oauth1, + "token/revoke": token_revoke, } - diff --git a/dropbox/base.py b/dropbox/base.py index 9debac8f..746d95e8 100644 --- a/dropbox/base.py +++ b/dropbox/base.py @@ -55,17 +55,13 @@ def account_delete_profile_photo(self): arg = account.DeleteProfilePhotoArg() r = self.request( account.delete_profile_photo, - 'account', + "account", arg, None, ) return r - def account_get_photo(self, - dbx_account_id, - size, - circle_crop, - expect_account_photo): + def account_get_photo(self, dbx_account_id, size, circle_crop, expect_account_photo): """ This lovely endpoint gets the account photo of a given user. @@ -95,24 +91,18 @@ def account_get_photo(self, `_ context manager to ensure this. """ - arg = account.AccountPhotoGetArg(dbx_account_id, - size, - circle_crop, - expect_account_photo) + arg = account.AccountPhotoGetArg(dbx_account_id, size, circle_crop, expect_account_photo) r = self.request( account.get_photo, - 'account', + "account", arg, None, ) return r - def account_get_photo_to_file(self, - download_path, - dbx_account_id, - size, - circle_crop, - expect_account_photo): + def account_get_photo_to_file( + self, download_path, dbx_account_id, size, circle_crop, expect_account_photo + ): """ This lovely endpoint gets the account photo of a given user. @@ -136,21 +126,17 @@ def account_get_photo_to_file(self, If this raises, ApiError will contain: :class:`dropbox.account.AccountPhotoGetError` """ - arg = account.AccountPhotoGetArg(dbx_account_id, - size, - circle_crop, - expect_account_photo) + arg = account.AccountPhotoGetArg(dbx_account_id, size, circle_crop, expect_account_photo) r = self.request( account.get_photo, - 'account', + "account", arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def account_set_profile_photo(self, - photo): + def account_set_profile_photo(self, photo): """ Sets a user's profile photo. @@ -168,7 +154,7 @@ def account_set_profile_photo(self, arg = account.SetProfilePhotoArg(photo) r = self.request( account.set_profile_photo, - 'account', + "account", arg, None, ) @@ -177,9 +163,7 @@ def account_set_profile_photo(self, # ------------------------------------------ # Routes in auth namespace - def auth_token_from_oauth1(self, - oauth1_token, - oauth1_token_secret): + def auth_token_from_oauth1(self, oauth1_token, oauth1_token_secret): """ Creates an OAuth 2.0 access token from the supplied OAuth 1.0 access token. @@ -196,14 +180,13 @@ def auth_token_from_oauth1(self, :class:`dropbox.auth.TokenFromOAuth1Error` """ warnings.warn( - 'token/from_oauth1 is deprecated.', + "token/from_oauth1 is deprecated.", DeprecationWarning, ) - arg = auth.TokenFromOAuth1Arg(oauth1_token, - oauth1_token_secret) + arg = auth.TokenFromOAuth1Arg(oauth1_token, oauth1_token_secret) r = self.request( auth.token_from_oauth1, - 'auth', + "auth", arg, None, ) @@ -221,7 +204,7 @@ def auth_token_revoke(self): arg = None r = self.request( auth.token_revoke, - 'auth', + "auth", arg, None, ) @@ -230,8 +213,7 @@ def auth_token_revoke(self): # ------------------------------------------ # Routes in check namespace - def check_app(self, - query=''): + def check_app(self, query=""): """ This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied string, to allow you to test @@ -251,14 +233,13 @@ def check_app(self, arg = check.EchoArg(query) r = self.request( check.app, - 'check', + "check", arg, None, ) return r - def check_user(self, - query=''): + def check_user(self, query=""): """ This endpoint performs User Authentication, validating the supplied access token, and returns the supplied string, to allow you to test your @@ -281,7 +262,7 @@ def check_user(self, arg = check.EchoArg(query) r = self.request( check.user, - 'check', + "check", arg, None, ) @@ -304,14 +285,13 @@ def contacts_delete_manual_contacts(self): arg = None r = self.request( contacts.delete_manual_contacts, - 'contacts', + "contacts", arg, None, ) return None - def contacts_delete_manual_contacts_batch(self, - email_addresses): + def contacts_delete_manual_contacts_batch(self, email_addresses): """ Removes manually added contacts from the given list. @@ -329,7 +309,7 @@ def contacts_delete_manual_contacts_batch(self, arg = contacts.DeleteManualContactsArg(email_addresses) r = self.request( contacts.delete_manual_contacts_batch, - 'contacts', + "contacts", arg, None, ) @@ -338,9 +318,7 @@ def contacts_delete_manual_contacts_batch(self, # ------------------------------------------ # Routes in file_properties namespace - def file_properties_properties_add(self, - path, - property_groups): + def file_properties_properties_add(self, path, property_groups): """ Add property groups to a Dropbox file. See :meth:`file_properties_templates_add_for_user` or @@ -361,19 +339,16 @@ def file_properties_properties_add(self, If this raises, ApiError will contain: :class:`dropbox.file_properties.AddPropertiesError` """ - arg = file_properties.AddPropertiesArg(path, - property_groups) + arg = file_properties.AddPropertiesArg(path, property_groups) r = self.request( file_properties.properties_add, - 'file_properties', + "file_properties", arg, None, ) return None - def file_properties_properties_overwrite(self, - path, - property_groups): + def file_properties_properties_overwrite(self, path, property_groups): """ Overwrite property groups associated with a file. This endpoint should be used instead of :meth:`file_properties_properties_update` when @@ -396,19 +371,16 @@ def file_properties_properties_overwrite(self, If this raises, ApiError will contain: :class:`dropbox.file_properties.InvalidPropertyGroupError` """ - arg = file_properties.OverwritePropertyGroupArg(path, - property_groups) + arg = file_properties.OverwritePropertyGroupArg(path, property_groups) r = self.request( file_properties.properties_overwrite, - 'file_properties', + "file_properties", arg, None, ) return None - def file_properties_properties_remove(self, - path, - property_template_ids): + def file_properties_properties_remove(self, path, property_template_ids): """ Permanently removes the specified property group from the file. To remove specific property field key value pairs, see @@ -433,19 +405,18 @@ def file_properties_properties_remove(self, If this raises, ApiError will contain: :class:`dropbox.file_properties.RemovePropertiesError` """ - arg = file_properties.RemovePropertiesArg(path, - property_template_ids) + arg = file_properties.RemovePropertiesArg(path, property_template_ids) r = self.request( file_properties.properties_remove, - 'file_properties', + "file_properties", arg, None, ) return None - def file_properties_properties_search(self, - queries, - template_filter=file_properties.TemplateFilter.filter_none): + def file_properties_properties_search( + self, queries, template_filter=file_properties.TemplateFilter.filter_none + ): """ Search across property templates for particular property field values. @@ -463,18 +434,16 @@ def file_properties_properties_search(self, If this raises, ApiError will contain: :class:`dropbox.file_properties.PropertiesSearchError` """ - arg = file_properties.PropertiesSearchArg(queries, - template_filter) + arg = file_properties.PropertiesSearchArg(queries, template_filter) r = self.request( file_properties.properties_search, - 'file_properties', + "file_properties", arg, None, ) return r - def file_properties_properties_search_continue(self, - cursor): + def file_properties_properties_search_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`file_properties_properties_search`, use this to paginate through @@ -496,15 +465,13 @@ def file_properties_properties_search_continue(self, arg = file_properties.PropertiesSearchContinueArg(cursor) r = self.request( file_properties.properties_search_continue, - 'file_properties', + "file_properties", arg, None, ) return r - def file_properties_properties_update(self, - path, - update_property_groups): + def file_properties_properties_update(self, path, update_property_groups): """ Add, update or remove properties associated with the supplied file and templates. This endpoint should be used instead of @@ -528,20 +495,16 @@ def file_properties_properties_update(self, If this raises, ApiError will contain: :class:`dropbox.file_properties.UpdatePropertiesError` """ - arg = file_properties.UpdatePropertiesArg(path, - update_property_groups) + arg = file_properties.UpdatePropertiesArg(path, update_property_groups) r = self.request( file_properties.properties_update, - 'file_properties', + "file_properties", arg, None, ) return None - def file_properties_templates_add_for_user(self, - name, - description, - fields): + def file_properties_templates_add_for_user(self, name, description, fields): """ Add a template associated with a user. See :meth:`file_properties_properties_add` to add properties to a file. This @@ -556,19 +519,16 @@ def file_properties_templates_add_for_user(self, If this raises, ApiError will contain: :class:`dropbox.file_properties.ModifyTemplateError` """ - arg = file_properties.AddTemplateArg(name, - description, - fields) + arg = file_properties.AddTemplateArg(name, description, fields) r = self.request( file_properties.templates_add_for_user, - 'file_properties', + "file_properties", arg, None, ) return r - def file_properties_templates_get_for_user(self, - template_id): + def file_properties_templates_get_for_user(self, template_id): """ Get the schema for a specified template. This endpoint can't be called on a team member or admin's behalf. @@ -589,7 +549,7 @@ def file_properties_templates_get_for_user(self, arg = file_properties.GetTemplateArg(template_id) r = self.request( file_properties.templates_get_for_user, - 'file_properties', + "file_properties", arg, None, ) @@ -613,14 +573,13 @@ def file_properties_templates_list_for_user(self): arg = None r = self.request( file_properties.templates_list_for_user, - 'file_properties', + "file_properties", arg, None, ) return r - def file_properties_templates_remove_for_user(self, - template_id): + def file_properties_templates_remove_for_user(self, template_id): """ Permanently removes the specified template created from :meth:`file_properties_templates_add_for_user`. All properties @@ -643,17 +602,15 @@ def file_properties_templates_remove_for_user(self, arg = file_properties.RemoveTemplateArg(template_id) r = self.request( file_properties.templates_remove_for_user, - 'file_properties', + "file_properties", arg, None, ) return None - def file_properties_templates_update_for_user(self, - template_id, - name=None, - description=None, - add_fields=None): + def file_properties_templates_update_for_user( + self, template_id, name=None, description=None, add_fields=None + ): """ Update a template associated with a user. This route can update the template name, the template description and add optional properties to @@ -682,13 +639,10 @@ def file_properties_templates_update_for_user(self, If this raises, ApiError will contain: :class:`dropbox.file_properties.ModifyTemplateError` """ - arg = file_properties.UpdateTemplateArg(template_id, - name, - description, - add_fields) + arg = file_properties.UpdateTemplateArg(template_id, name, description, add_fields) r = self.request( file_properties.templates_update_for_user, - 'file_properties', + "file_properties", arg, None, ) @@ -710,19 +664,21 @@ def file_requests_count(self): arg = None r = self.request( file_requests.count, - 'file_requests', + "file_requests", arg, None, ) return r - def file_requests_create(self, - title, - destination, - deadline=None, - open=True, - description=None, - video_project_id=None): + def file_requests_create( + self, + title, + destination, + deadline=None, + open=True, + description=None, + video_project_id=None, + ): """ Creates a file request for this user. @@ -753,22 +709,18 @@ def file_requests_create(self, If this raises, ApiError will contain: :class:`dropbox.file_requests.CreateFileRequestError` """ - arg = file_requests.CreateFileRequestArgs(title, - destination, - deadline, - open, - description, - video_project_id) + arg = file_requests.CreateFileRequestArgs( + title, destination, deadline, open, description, video_project_id + ) r = self.request( file_requests.create, - 'file_requests', + "file_requests", arg, None, ) return r - def file_requests_delete(self, - ids): + def file_requests_delete(self, ids): """ Delete a batch of closed file requests. @@ -786,7 +738,7 @@ def file_requests_delete(self, arg = file_requests.DeleteFileRequestArgs(ids) r = self.request( file_requests.delete, - 'file_requests', + "file_requests", arg, None, ) @@ -804,14 +756,13 @@ def file_requests_delete_all_closed(self): arg = None r = self.request( file_requests.delete_all_closed, - 'file_requests', + "file_requests", arg, None, ) return r - def file_requests_get(self, - id): + def file_requests_get(self, id): """ Returns the specified file request. @@ -825,7 +776,7 @@ def file_requests_get(self, arg = file_requests.GetFileRequestArgs(id) r = self.request( file_requests.get, - 'file_requests', + "file_requests", arg, None, ) @@ -845,14 +796,13 @@ def file_requests_list(self): arg = None r = self.request( file_requests.list, - 'file_requests', + "file_requests", arg, None, ) return r - def file_requests_list_v2(self, - limit=1000): + def file_requests_list_v2(self, limit=1000): """ Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return file requests with @@ -869,14 +819,13 @@ def file_requests_list_v2(self, arg = file_requests.ListFileRequestsArg(limit) r = self.request( file_requests.list_v2, - 'file_requests', + "file_requests", arg, None, ) return r - def file_requests_list_continue(self, - cursor): + def file_requests_list_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`file_requests_list_v2`, use this to paginate through all file requests. The cursor must come from a @@ -898,19 +847,21 @@ def file_requests_list_continue(self, arg = file_requests.ListFileRequestsContinueArg(cursor) r = self.request( file_requests.list_continue, - 'file_requests', + "file_requests", arg, None, ) return r - def file_requests_update(self, - id, - title=None, - destination=None, - deadline=file_requests.UpdateFileRequestDeadline.no_update, - open=None, - description=None): + def file_requests_update( + self, + id, + title=None, + destination=None, + deadline=file_requests.UpdateFileRequestDeadline.no_update, + open=None, + description=None, + ): """ Update a file request. @@ -934,15 +885,12 @@ def file_requests_update(self, :type description: Nullable[str] :rtype: :class:`dropbox.file_requests.FileRequest` """ - arg = file_requests.UpdateFileRequestArgs(id, - title, - destination, - deadline, - open, - description) + arg = file_requests.UpdateFileRequestArgs( + id, title, destination, deadline, open, description + ) r = self.request( file_requests.update, - 'file_requests', + "file_requests", arg, None, ) @@ -951,13 +899,15 @@ def file_requests_update(self, # ------------------------------------------ # Routes in files namespace - def files_alpha_get_metadata(self, - path, - include_media_info=False, - include_deleted=False, - include_has_explicit_shared_members=False, - include_property_groups=None, - include_property_templates=None): + def files_alpha_get_metadata( + self, + path, + include_media_info=False, + include_deleted=False, + include_has_explicit_shared_members=False, + include_property_groups=None, + include_property_templates=None, + ): """ Returns the metadata for a file or folder. This is an alpha endpoint compatible with the properties API. Note: Metadata for the root folder @@ -977,33 +927,37 @@ def files_alpha_get_metadata(self, :class:`dropbox.files.AlphaGetMetadataError` """ warnings.warn( - 'alpha/get_metadata is deprecated.', + "alpha/get_metadata is deprecated.", DeprecationWarning, ) - arg = files.AlphaGetMetadataArg(path, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_property_groups, - include_property_templates) + arg = files.AlphaGetMetadataArg( + path, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_property_groups, + include_property_templates, + ) r = self.request( files.alpha_get_metadata, - 'files', + "files", arg, None, ) return r - def files_alpha_upload(self, - f, - path, - mode=files.WriteMode.add, - autorename=False, - client_modified=None, - mute=False, - property_groups=None, - strict_conflict=False, - content_hash=None): + def files_alpha_upload( + self, + f, + path, + mode=files.WriteMode.add, + autorename=False, + client_modified=None, + mute=False, + property_groups=None, + strict_conflict=False, + content_hash=None, + ): """ Create a new file with the contents provided in the request. Note that the behavior of this alpha endpoint is unstable and subject to change. @@ -1026,31 +980,35 @@ def files_alpha_upload(self, :class:`dropbox.files.UploadError` """ warnings.warn( - 'alpha/upload is deprecated.', + "alpha/upload is deprecated.", DeprecationWarning, ) - arg = files.UploadArg(path, - mode, - autorename, - client_modified, - mute, - property_groups, - strict_conflict, - content_hash) + arg = files.UploadArg( + path, + mode, + autorename, + client_modified, + mute, + property_groups, + strict_conflict, + content_hash, + ) r = self.request( files.alpha_upload, - 'files', + "files", arg, f, ) return r - def files_copy(self, - from_path, - to_path, - allow_shared_folder=False, - autorename=False, - allow_ownership_transfer=False): + def files_copy( + self, + from_path, + to_path, + allow_shared_folder=False, + autorename=False, + allow_ownership_transfer=False, + ): """ Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents will be copied. @@ -1075,28 +1033,32 @@ def files_copy(self, :class:`dropbox.files.RelocationError` """ warnings.warn( - 'copy is deprecated.', + "copy is deprecated.", DeprecationWarning, ) - arg = files.RelocationArg(from_path, - to_path, - allow_shared_folder, - autorename, - allow_ownership_transfer) + arg = files.RelocationArg( + from_path, + to_path, + allow_shared_folder, + autorename, + allow_ownership_transfer, + ) r = self.request( files.copy, - 'files', + "files", arg, None, ) return r - def files_copy_v2(self, - from_path, - to_path, - allow_shared_folder=False, - autorename=False, - allow_ownership_transfer=False): + def files_copy_v2( + self, + from_path, + to_path, + allow_shared_folder=False, + autorename=False, + allow_ownership_transfer=False, + ): """ Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents will be copied. @@ -1120,24 +1082,28 @@ def files_copy_v2(self, If this raises, ApiError will contain: :class:`dropbox.files.RelocationError` """ - arg = files.RelocationArg(from_path, - to_path, - allow_shared_folder, - autorename, - allow_ownership_transfer) + arg = files.RelocationArg( + from_path, + to_path, + allow_shared_folder, + autorename, + allow_ownership_transfer, + ) r = self.request( files.copy_v2, - 'files', + "files", arg, None, ) return r - def files_copy_batch(self, - entries, - autorename=False, - allow_shared_folder=False, - allow_ownership_transfer=False): + def files_copy_batch( + self, + entries, + autorename=False, + allow_shared_folder=False, + allow_ownership_transfer=False, + ): """ Copy multiple files or folders to different locations at once in the user's Dropbox. This route will return job ID immediately and do the @@ -1157,24 +1123,21 @@ def files_copy_batch(self, :rtype: :class:`dropbox.files.RelocationBatchLaunch` """ warnings.warn( - 'copy_batch is deprecated.', + "copy_batch is deprecated.", DeprecationWarning, ) - arg = files.RelocationBatchArg(entries, - autorename, - allow_shared_folder, - allow_ownership_transfer) + arg = files.RelocationBatchArg( + entries, autorename, allow_shared_folder, allow_ownership_transfer + ) r = self.request( files.copy_batch, - 'files', + "files", arg, None, ) return r - def files_copy_batch_v2(self, - entries, - autorename=False): + def files_copy_batch_v2(self, entries, autorename=False): """ Copy multiple files or folders to different locations at once in the user's Dropbox. This route will replace :meth:`files_copy_batch`. The @@ -1195,18 +1158,16 @@ def files_copy_batch_v2(self, :type autorename: bool :rtype: :class:`dropbox.files.RelocationBatchV2Launch` """ - arg = files.RelocationBatchArgBase(entries, - autorename) + arg = files.RelocationBatchArgBase(entries, autorename) r = self.request( files.copy_batch_v2, - 'files', + "files", arg, None, ) return r - def files_copy_batch_check(self, - async_job_id): + def files_copy_batch_check(self, async_job_id): """ Returns the status of an asynchronous job for :meth:`files_copy_batch`. If success, it returns list of results for each entry. @@ -1224,20 +1185,19 @@ def files_copy_batch_check(self, :class:`dropbox.async_.PollError` """ warnings.warn( - 'copy_batch/check is deprecated.', + "copy_batch/check is deprecated.", DeprecationWarning, ) arg = async_.PollArg(async_job_id) r = self.request( files.copy_batch_check, - 'files', + "files", arg, None, ) return r - def files_copy_batch_check_v2(self, - async_job_id): + def files_copy_batch_check_v2(self, async_job_id): """ Returns the status of an asynchronous job for :meth:`files_copy_batch_v2`. It returns list of results for each entry. @@ -1257,14 +1217,13 @@ def files_copy_batch_check_v2(self, arg = async_.PollArg(async_job_id) r = self.request( files.copy_batch_check_v2, - 'files', + "files", arg, None, ) return r - def files_copy_reference_get(self, - path): + def files_copy_reference_get(self, path): """ Get a copy reference to a file or folder. This reference string can be used to save that file or folder to another user's Dropbox by passing it @@ -1285,15 +1244,13 @@ def files_copy_reference_get(self, arg = files.GetCopyReferenceArg(path) r = self.request( files.copy_reference_get, - 'files', + "files", arg, None, ) return r - def files_copy_reference_save(self, - copy_reference, - path): + def files_copy_reference_save(self, copy_reference, path): """ Save a copy reference returned by :meth:`files_copy_reference_get` to the user's Dropbox. @@ -1312,19 +1269,16 @@ def files_copy_reference_save(self, If this raises, ApiError will contain: :class:`dropbox.files.SaveCopyReferenceError` """ - arg = files.SaveCopyReferenceArg(copy_reference, - path) + arg = files.SaveCopyReferenceArg(copy_reference, path) r = self.request( files.copy_reference_save, - 'files', + "files", arg, None, ) return r - def files_create_folder(self, - path, - autorename=False): + def files_create_folder(self, path, autorename=False): """ Create a folder at a given path. @@ -1343,22 +1297,19 @@ def files_create_folder(self, :class:`dropbox.files.CreateFolderError` """ warnings.warn( - 'create_folder is deprecated.', + "create_folder is deprecated.", DeprecationWarning, ) - arg = files.CreateFolderArg(path, - autorename) + arg = files.CreateFolderArg(path, autorename) r = self.request( files.create_folder, - 'files', + "files", arg, None, ) return r - def files_create_folder_v2(self, - path, - autorename=False): + def files_create_folder_v2(self, path, autorename=False): """ Create a folder at a given path. @@ -1376,20 +1327,16 @@ def files_create_folder_v2(self, If this raises, ApiError will contain: :class:`dropbox.files.CreateFolderError` """ - arg = files.CreateFolderArg(path, - autorename) + arg = files.CreateFolderArg(path, autorename) r = self.request( files.create_folder_v2, - 'files', + "files", arg, None, ) return r - def files_create_folder_batch(self, - paths, - autorename=False, - force_async=False): + def files_create_folder_batch(self, paths, autorename=False, force_async=False): """ Create multiple folders at once. This route is asynchronous for large batches, which returns a job ID immediately and runs the create folder @@ -1412,19 +1359,16 @@ def files_create_folder_batch(self, :type force_async: bool :rtype: :class:`dropbox.files.CreateFolderBatchLaunch` """ - arg = files.CreateFolderBatchArg(paths, - autorename, - force_async) + arg = files.CreateFolderBatchArg(paths, autorename, force_async) r = self.request( files.create_folder_batch, - 'files', + "files", arg, None, ) return r - def files_create_folder_batch_check(self, - async_job_id): + def files_create_folder_batch_check(self, async_job_id): """ Returns the status of an asynchronous job for :meth:`files_create_folder_batch`. If success, it returns list of result @@ -1445,15 +1389,13 @@ def files_create_folder_batch_check(self, arg = async_.PollArg(async_job_id) r = self.request( files.create_folder_batch_check, - 'files', + "files", arg, None, ) return r - def files_delete(self, - path, - parent_rev=None): + def files_delete(self, path, parent_rev=None): """ Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted too. A successful response indicates that @@ -1476,22 +1418,19 @@ def files_delete(self, :class:`dropbox.files.DeleteError` """ warnings.warn( - 'delete is deprecated.', + "delete is deprecated.", DeprecationWarning, ) - arg = files.DeleteArg(path, - parent_rev) + arg = files.DeleteArg(path, parent_rev) r = self.request( files.delete, - 'files', + "files", arg, None, ) return r - def files_delete_v2(self, - path, - parent_rev=None): + def files_delete_v2(self, path, parent_rev=None): """ Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted too. A successful response indicates that @@ -1513,18 +1452,16 @@ def files_delete_v2(self, If this raises, ApiError will contain: :class:`dropbox.files.DeleteError` """ - arg = files.DeleteArg(path, - parent_rev) + arg = files.DeleteArg(path, parent_rev) r = self.request( files.delete_v2, - 'files', + "files", arg, None, ) return r - def files_delete_batch(self, - entries): + def files_delete_batch(self, entries): """ Delete multiple files/folders at once. This route is asynchronous, which returns a job ID immediately and runs the delete batch asynchronously. @@ -1539,14 +1476,13 @@ def files_delete_batch(self, arg = files.DeleteBatchArg(entries) r = self.request( files.delete_batch, - 'files', + "files", arg, None, ) return r - def files_delete_batch_check(self, - async_job_id): + def files_delete_batch_check(self, async_job_id): """ Returns the status of an asynchronous job for :meth:`files_delete_batch`. If success, it returns list of result for @@ -1567,15 +1503,13 @@ def files_delete_batch_check(self, arg = async_.PollArg(async_job_id) r = self.request( files.delete_batch_check, - 'files', + "files", arg, None, ) return r - def files_download(self, - path, - rev=None): + def files_download(self, path, rev=None): """ Download a file from a user's Dropbox. @@ -1600,20 +1534,16 @@ def files_download(self, `_ context manager to ensure this. """ - arg = files.DownloadArg(path, - rev) + arg = files.DownloadArg(path, rev) r = self.request( files.download, - 'files', + "files", arg, None, ) return r - def files_download_to_file(self, - download_path, - path, - rev=None): + def files_download_to_file(self, download_path, path, rev=None): """ Download a file from a user's Dropbox. @@ -1632,19 +1562,17 @@ def files_download_to_file(self, If this raises, ApiError will contain: :class:`dropbox.files.DownloadError` """ - arg = files.DownloadArg(path, - rev) + arg = files.DownloadArg(path, rev) r = self.request( files.download, - 'files', + "files", arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_download_zip(self, - path): + def files_download_zip(self, path): """ Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single file within must be less @@ -1674,15 +1602,13 @@ def files_download_zip(self, arg = files.DownloadZipArg(path) r = self.request( files.download_zip, - 'files', + "files", arg, None, ) return r - def files_download_zip_to_file(self, - download_path, - path): + def files_download_zip_to_file(self, download_path, path): """ Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single file within must be less @@ -1706,16 +1632,14 @@ def files_download_zip_to_file(self, arg = files.DownloadZipArg(path) r = self.request( files.download_zip, - 'files', + "files", arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_export(self, - path, - export_format=None): + def files_export(self, path, export_format=None): """ Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly and whose @@ -1745,20 +1669,16 @@ def files_export(self, `_ context manager to ensure this. """ - arg = files.ExportArg(path, - export_format) + arg = files.ExportArg(path, export_format) r = self.request( files.export, - 'files', + "files", arg, None, ) return r - def files_export_to_file(self, - download_path, - path, - export_format=None): + def files_export_to_file(self, download_path, path, export_format=None): """ Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly and whose @@ -1782,19 +1702,17 @@ def files_export_to_file(self, If this raises, ApiError will contain: :class:`dropbox.files.ExportError` """ - arg = files.ExportArg(path, - export_format) + arg = files.ExportArg(path, export_format) r = self.request( files.export, - 'files', + "files", arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_get_file_lock_batch(self, - entries): + def files_get_file_lock_batch(self, entries): """ Return the lock metadata for the given list of paths. @@ -1814,18 +1732,20 @@ def files_get_file_lock_batch(self, arg = files.LockFileBatchArg(entries) r = self.request( files.get_file_lock_batch, - 'files', + "files", arg, None, ) return r - def files_get_metadata(self, - path, - include_media_info=False, - include_deleted=False, - include_has_explicit_shared_members=False, - include_property_groups=None): + def files_get_metadata( + self, + path, + include_media_info=False, + include_deleted=False, + include_has_explicit_shared_members=False, + include_property_groups=None, + ): """ Returns the metadata for a file or folder. Note: Metadata for the root folder is unsupported. @@ -1856,22 +1776,22 @@ def files_get_metadata(self, If this raises, ApiError will contain: :class:`dropbox.files.GetMetadataError` """ - arg = files.GetMetadataArg(path, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_property_groups) + arg = files.GetMetadataArg( + path, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_property_groups, + ) r = self.request( files.get_metadata, - 'files', + "files", arg, None, ) return r - def files_get_preview(self, - path, - rev=None): + def files_get_preview(self, path, rev=None): """ Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, .docm, .docx, .eps, @@ -1900,20 +1820,16 @@ def files_get_preview(self, `_ context manager to ensure this. """ - arg = files.PreviewArg(path, - rev) + arg = files.PreviewArg(path, rev) r = self.request( files.get_preview, - 'files', + "files", arg, None, ) return r - def files_get_preview_to_file(self, - download_path, - path, - rev=None): + def files_get_preview_to_file(self, download_path, path, rev=None): """ Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, .docm, .docx, .eps, @@ -1936,19 +1852,17 @@ def files_get_preview_to_file(self, If this raises, ApiError will contain: :class:`dropbox.files.PreviewError` """ - arg = files.PreviewArg(path, - rev) + arg = files.PreviewArg(path, rev) r = self.request( files.get_preview, - 'files', + "files", arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_get_temporary_link(self, - path): + def files_get_temporary_link(self, path): """ Get a temporary link to stream content of a file. This link will expire in four hours and afterwards you will get 410 Gone. This URL should not @@ -1969,15 +1883,13 @@ def files_get_temporary_link(self, arg = files.GetTemporaryLinkArg(path) r = self.request( files.get_temporary_link, - 'files', + "files", arg, None, ) return r - def files_get_temporary_upload_link(self, - commit_info, - duration=14400.0): + def files_get_temporary_upload_link(self, commit_info, duration=14400.0): """ Get a one-time use temporary upload link to upload a file to a Dropbox location. This endpoint acts as a delayed upload(). The returned @@ -2022,23 +1934,24 @@ def files_get_temporary_upload_link(self, :type duration: float :rtype: :class:`dropbox.files.GetTemporaryUploadLinkResult` """ - arg = files.GetTemporaryUploadLinkArg(commit_info, - duration) + arg = files.GetTemporaryUploadLinkArg(commit_info, duration) r = self.request( files.get_temporary_upload_link, - 'files', + "files", arg, None, ) return r - def files_get_thumbnail(self, - path, - format=files.ThumbnailFormat.jpeg, - size=files.ThumbnailSize.w64h64, - mode=files.ThumbnailMode.strict, - quality=files.ThumbnailQuality.quality_80, - exclude_media_info=None): + def files_get_thumbnail( + self, + path, + format=files.ThumbnailFormat.jpeg, + size=files.ThumbnailSize.w64h64, + mode=files.ThumbnailMode.strict, + quality=files.ThumbnailQuality.quality_80, + exclude_media_info=None, + ): """ Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm @@ -2081,28 +1994,25 @@ def files_get_thumbnail(self, `_ context manager to ensure this. """ - arg = files.ThumbnailArg(path, - format, - size, - mode, - quality, - exclude_media_info) + arg = files.ThumbnailArg(path, format, size, mode, quality, exclude_media_info) r = self.request( files.get_thumbnail, - 'files', + "files", arg, None, ) return r - def files_get_thumbnail_to_file(self, - download_path, - path, - format=files.ThumbnailFormat.jpeg, - size=files.ThumbnailSize.w64h64, - mode=files.ThumbnailMode.strict, - quality=files.ThumbnailQuality.quality_80, - exclude_media_info=None): + def files_get_thumbnail_to_file( + self, + download_path, + path, + format=files.ThumbnailFormat.jpeg, + size=files.ThumbnailSize.w64h64, + mode=files.ThumbnailMode.strict, + quality=files.ThumbnailQuality.quality_80, + exclude_media_info=None, + ): """ Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm @@ -2139,28 +2049,25 @@ def files_get_thumbnail_to_file(self, If this raises, ApiError will contain: :class:`dropbox.files.ThumbnailError` """ - arg = files.ThumbnailArg(path, - format, - size, - mode, - quality, - exclude_media_info) + arg = files.ThumbnailArg(path, format, size, mode, quality, exclude_media_info) r = self.request( files.get_thumbnail, - 'files', + "files", arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_get_thumbnail_v2(self, - resource, - format=files.ThumbnailFormat.jpeg, - size=files.ThumbnailSize.w64h64, - mode=files.ThumbnailMode.strict, - quality=files.ThumbnailQuality.quality_80, - exclude_media_info=None): + def files_get_thumbnail_v2( + self, + resource, + format=files.ThumbnailFormat.jpeg, + size=files.ThumbnailSize.w64h64, + mode=files.ThumbnailMode.strict, + quality=files.ThumbnailQuality.quality_80, + exclude_media_info=None, + ): """ Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm @@ -2205,28 +2112,25 @@ def files_get_thumbnail_v2(self, `_ context manager to ensure this. """ - arg = files.ThumbnailV2Arg(resource, - format, - size, - mode, - quality, - exclude_media_info) + arg = files.ThumbnailV2Arg(resource, format, size, mode, quality, exclude_media_info) r = self.request( files.get_thumbnail_v2, - 'files', + "files", arg, None, ) return r - def files_get_thumbnail_to_file_v2(self, - download_path, - resource, - format=files.ThumbnailFormat.jpeg, - size=files.ThumbnailSize.w64h64, - mode=files.ThumbnailMode.strict, - quality=files.ThumbnailQuality.quality_80, - exclude_media_info=None): + def files_get_thumbnail_to_file_v2( + self, + download_path, + resource, + format=files.ThumbnailFormat.jpeg, + size=files.ThumbnailSize.w64h64, + mode=files.ThumbnailMode.strict, + quality=files.ThumbnailQuality.quality_80, + exclude_media_info=None, + ): """ Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm @@ -2265,23 +2169,17 @@ def files_get_thumbnail_to_file_v2(self, If this raises, ApiError will contain: :class:`dropbox.files.ThumbnailV2Error` """ - arg = files.ThumbnailV2Arg(resource, - format, - size, - mode, - quality, - exclude_media_info) + arg = files.ThumbnailV2Arg(resource, format, size, mode, quality, exclude_media_info) r = self.request( files.get_thumbnail_v2, - 'files', + "files", arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def files_get_thumbnail_batch(self, - entries): + def files_get_thumbnail_batch(self, entries): """ Get thumbnails for a list of images. We allow up to 25 thumbnails in a single batch. This method currently supports files with the following @@ -2303,24 +2201,26 @@ def files_get_thumbnail_batch(self, arg = files.GetThumbnailBatchArg(entries) r = self.request( files.get_thumbnail_batch, - 'files', + "files", arg, None, ) return r - def files_list_folder(self, - path, - recursive=False, - include_media_info=False, - include_deleted=False, - include_has_explicit_shared_members=False, - include_mounted_folders=True, - limit=None, - shared_link=None, - include_property_groups=None, - include_non_downloadable_files=True, - include_restorable_info=False): + def files_list_folder( + self, + path, + recursive=False, + include_media_info=False, + include_deleted=False, + include_has_explicit_shared_members=False, + include_mounted_folders=True, + limit=None, + shared_link=None, + include_property_groups=None, + include_non_downloadable_files=True, + include_restorable_info=False, + ): """ Starts returning the contents of a folder. If the result's ``ListFolderResult.has_more`` field is true, call @@ -2400,27 +2300,28 @@ def files_list_folder(self, If this raises, ApiError will contain: :class:`dropbox.files.ListFolderError` """ - arg = files.ListFolderArg(path, - recursive, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_mounted_folders, - limit, - shared_link, - include_property_groups, - include_non_downloadable_files, - include_restorable_info) + arg = files.ListFolderArg( + path, + recursive, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_mounted_folders, + limit, + shared_link, + include_property_groups, + include_non_downloadable_files, + include_restorable_info, + ) r = self.request( files.list_folder, - 'files', + "files", arg, None, ) return r - def files_list_folder_continue(self, - cursor): + def files_list_folder_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`files_list_folder`, use this to paginate through all files and retrieve updates to the folder, @@ -2441,24 +2342,26 @@ def files_list_folder_continue(self, arg = files.ListFolderContinueArg(cursor) r = self.request( files.list_folder_continue, - 'files', + "files", arg, None, ) return r - def files_list_folder_get_latest_cursor(self, - path, - recursive=False, - include_media_info=False, - include_deleted=False, - include_has_explicit_shared_members=False, - include_mounted_folders=True, - limit=None, - shared_link=None, - include_property_groups=None, - include_non_downloadable_files=True, - include_restorable_info=False): + def files_list_folder_get_latest_cursor( + self, + path, + recursive=False, + include_media_info=False, + include_deleted=False, + include_has_explicit_shared_members=False, + include_mounted_folders=True, + limit=None, + shared_link=None, + include_property_groups=None, + include_non_downloadable_files=True, + include_restorable_info=False, + ): """ A way to quickly get a cursor for the folder's state. Unlike :meth:`files_list_folder`, :meth:`files_list_folder_get_latest_cursor` @@ -2520,28 +2423,28 @@ def files_list_folder_get_latest_cursor(self, If this raises, ApiError will contain: :class:`dropbox.files.ListFolderError` """ - arg = files.ListFolderArg(path, - recursive, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_mounted_folders, - limit, - shared_link, - include_property_groups, - include_non_downloadable_files, - include_restorable_info) + arg = files.ListFolderArg( + path, + recursive, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_mounted_folders, + limit, + shared_link, + include_property_groups, + include_non_downloadable_files, + include_restorable_info, + ) r = self.request( files.list_folder_get_latest_cursor, - 'files', + "files", arg, None, ) return r - def files_list_folder_longpoll(self, - cursor, - timeout=30): + def files_list_folder_longpoll(self, cursor, timeout=30): """ A longpoll endpoint to wait for changes on an account. In conjunction with :meth:`files_list_folder_continue`, this call gives you a @@ -2568,22 +2471,23 @@ def files_list_folder_longpoll(self, If this raises, ApiError will contain: :class:`dropbox.files.ListFolderLongpollError` """ - arg = files.ListFolderLongpollArg(cursor, - timeout) + arg = files.ListFolderLongpollArg(cursor, timeout) r = self.request( files.list_folder_longpoll, - 'files', + "files", arg, None, ) return r - def files_list_revisions(self, - path, - mode=files.ListRevisionsMode.path, - limit=10, - before_rev=None, - include_restorable_info=False): + def files_list_revisions( + self, + path, + mode=files.ListRevisionsMode.path, + limit=10, + before_rev=None, + include_restorable_info=False, + ): """ Returns revisions for files based on a file path or a file id. The file path or file id is identified from the latest file entry at the given @@ -2619,21 +2523,16 @@ def files_list_revisions(self, If this raises, ApiError will contain: :class:`dropbox.files.ListRevisionsError` """ - arg = files.ListRevisionsArg(path, - mode, - limit, - before_rev, - include_restorable_info) + arg = files.ListRevisionsArg(path, mode, limit, before_rev, include_restorable_info) r = self.request( files.list_revisions, - 'files', + "files", arg, None, ) return r - def files_lock_file_batch(self, - entries): + def files_lock_file_batch(self, entries): """ Lock the files at the given paths. A locked file will be writable only by the lock holder. A successful response indicates that the file has @@ -2656,18 +2555,20 @@ def files_lock_file_batch(self, arg = files.LockFileBatchArg(entries) r = self.request( files.lock_file_batch, - 'files', + "files", arg, None, ) return r - def files_move(self, - from_path, - to_path, - allow_shared_folder=False, - autorename=False, - allow_ownership_transfer=False): + def files_move( + self, + from_path, + to_path, + allow_shared_folder=False, + autorename=False, + allow_ownership_transfer=False, + ): """ Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents will be moved. @@ -2692,28 +2593,32 @@ def files_move(self, :class:`dropbox.files.RelocationError` """ warnings.warn( - 'move is deprecated.', + "move is deprecated.", DeprecationWarning, ) - arg = files.RelocationArg(from_path, - to_path, - allow_shared_folder, - autorename, - allow_ownership_transfer) + arg = files.RelocationArg( + from_path, + to_path, + allow_shared_folder, + autorename, + allow_ownership_transfer, + ) r = self.request( files.move, - 'files', + "files", arg, None, ) return r - def files_move_v2(self, - from_path, - to_path, - allow_shared_folder=False, - autorename=False, - allow_ownership_transfer=False): + def files_move_v2( + self, + from_path, + to_path, + allow_shared_folder=False, + autorename=False, + allow_ownership_transfer=False, + ): """ Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents will be moved. Note that we @@ -2738,24 +2643,28 @@ def files_move_v2(self, If this raises, ApiError will contain: :class:`dropbox.files.RelocationError` """ - arg = files.RelocationArg(from_path, - to_path, - allow_shared_folder, - autorename, - allow_ownership_transfer) + arg = files.RelocationArg( + from_path, + to_path, + allow_shared_folder, + autorename, + allow_ownership_transfer, + ) r = self.request( files.move_v2, - 'files', + "files", arg, None, ) return r - def files_move_batch(self, - entries, - autorename=False, - allow_shared_folder=False, - allow_ownership_transfer=False): + def files_move_batch( + self, + entries, + autorename=False, + allow_shared_folder=False, + allow_ownership_transfer=False, + ): """ Move multiple files or folders to different locations at once in the user's Dropbox. This route will return job ID immediately and do the @@ -2775,25 +2684,21 @@ def files_move_batch(self, :rtype: :class:`dropbox.files.RelocationBatchLaunch` """ warnings.warn( - 'move_batch is deprecated.', + "move_batch is deprecated.", DeprecationWarning, ) - arg = files.RelocationBatchArg(entries, - autorename, - allow_shared_folder, - allow_ownership_transfer) + arg = files.RelocationBatchArg( + entries, autorename, allow_shared_folder, allow_ownership_transfer + ) r = self.request( files.move_batch, - 'files', + "files", arg, None, ) return r - def files_move_batch_v2(self, - entries, - autorename=False, - allow_ownership_transfer=False): + def files_move_batch_v2(self, entries, autorename=False, allow_ownership_transfer=False): """ Move multiple files or folders to different locations at once in the user's Dropbox. Note that we do not currently support case-only @@ -2813,19 +2718,16 @@ def files_move_batch_v2(self, :type allow_ownership_transfer: bool :rtype: :class:`dropbox.files.RelocationBatchV2Launch` """ - arg = files.MoveBatchArg(entries, - autorename, - allow_ownership_transfer) + arg = files.MoveBatchArg(entries, autorename, allow_ownership_transfer) r = self.request( files.move_batch_v2, - 'files', + "files", arg, None, ) return r - def files_move_batch_check(self, - async_job_id): + def files_move_batch_check(self, async_job_id): """ Returns the status of an asynchronous job for :meth:`files_move_batch`. If success, it returns list of results for each entry. @@ -2843,20 +2745,19 @@ def files_move_batch_check(self, :class:`dropbox.async_.PollError` """ warnings.warn( - 'move_batch/check is deprecated.', + "move_batch/check is deprecated.", DeprecationWarning, ) arg = async_.PollArg(async_job_id) r = self.request( files.move_batch_check, - 'files', + "files", arg, None, ) return r - def files_move_batch_check_v2(self, - async_job_id): + def files_move_batch_check_v2(self, async_job_id): """ Returns the status of an asynchronous job for :meth:`files_move_batch_v2`. It returns list of results for each entry. @@ -2876,16 +2777,13 @@ def files_move_batch_check_v2(self, arg = async_.PollArg(async_job_id) r = self.request( files.move_batch_check_v2, - 'files', + "files", arg, None, ) return r - def files_paper_create(self, - f, - path, - import_format): + def files_paper_create(self, f, path, import_format): """ Creates a new Paper doc with the provided content. @@ -2905,22 +2803,16 @@ def files_paper_create(self, If this raises, ApiError will contain: :class:`dropbox.files.PaperCreateError` """ - arg = files.PaperCreateArg(path, - import_format) + arg = files.PaperCreateArg(path, import_format) r = self.request( files.paper_create, - 'files', + "files", arg, f, ) return r - def files_paper_update(self, - f, - path, - import_format, - doc_update_policy, - paper_revision=None): + def files_paper_update(self, f, path, import_format, doc_update_policy, paper_revision=None): """ Updates an existing Paper doc with the provided content. @@ -2946,21 +2838,16 @@ def files_paper_update(self, If this raises, ApiError will contain: :class:`dropbox.files.PaperUpdateError` """ - arg = files.PaperUpdateArg(path, - import_format, - doc_update_policy, - paper_revision) + arg = files.PaperUpdateArg(path, import_format, doc_update_policy, paper_revision) r = self.request( files.paper_update, - 'files', + "files", arg, f, ) return r - def files_permanently_delete(self, - path, - parent_rev=None): + def files_permanently_delete(self, path, parent_rev=None): """ Permanently delete the file or folder at a given path (see https://www.dropbox.com/en/help/40). If the given file or folder is not @@ -2982,19 +2869,16 @@ def files_permanently_delete(self, If this raises, ApiError will contain: :class:`dropbox.files.DeleteError` """ - arg = files.DeleteArg(path, - parent_rev) + arg = files.DeleteArg(path, parent_rev) r = self.request( files.permanently_delete, - 'files', + "files", arg, None, ) return None - def files_properties_add(self, - path, - property_groups): + def files_properties_add(self, path, property_groups): """ Add property groups to a Dropbox file. See templates/add_for_user or templates/add_for_team to create new templates. @@ -3015,22 +2899,19 @@ def files_properties_add(self, :class:`dropbox.file_properties.AddPropertiesError` """ warnings.warn( - 'properties/add is deprecated.', + "properties/add is deprecated.", DeprecationWarning, ) - arg = file_properties.AddPropertiesArg(path, - property_groups) + arg = file_properties.AddPropertiesArg(path, property_groups) r = self.request( files.properties_add, - 'files', + "files", arg, None, ) return None - def files_properties_overwrite(self, - path, - property_groups): + def files_properties_overwrite(self, path, property_groups): """ Overwrite property groups associated with a file. This endpoint should be used instead of properties/update when property groups are being @@ -3051,22 +2932,19 @@ def files_properties_overwrite(self, :class:`dropbox.file_properties.InvalidPropertyGroupError` """ warnings.warn( - 'properties/overwrite is deprecated.', + "properties/overwrite is deprecated.", DeprecationWarning, ) - arg = file_properties.OverwritePropertyGroupArg(path, - property_groups) + arg = file_properties.OverwritePropertyGroupArg(path, property_groups) r = self.request( files.properties_overwrite, - 'files', + "files", arg, None, ) return None - def files_properties_update(self, - path, - update_property_groups): + def files_properties_update(self, path, update_property_groups): """ Add, update or remove properties associated with the supplied file and templates. This endpoint should be used instead of properties/overwrite @@ -3088,22 +2966,19 @@ def files_properties_update(self, :class:`dropbox.file_properties.UpdatePropertiesError` """ warnings.warn( - 'properties/update is deprecated.', + "properties/update is deprecated.", DeprecationWarning, ) - arg = file_properties.UpdatePropertiesArg(path, - update_property_groups) + arg = file_properties.UpdatePropertiesArg(path, update_property_groups) r = self.request( files.properties_update, - 'files', + "files", arg, None, ) return None - def files_restore(self, - path, - rev): + def files_restore(self, path, rev): """ Restore a specific revision of a file to the given path. @@ -3120,19 +2995,16 @@ def files_restore(self, If this raises, ApiError will contain: :class:`dropbox.files.RestoreError` """ - arg = files.RestoreArg(path, - rev) + arg = files.RestoreArg(path, rev) r = self.request( files.restore, - 'files', + "files", arg, None, ) return r - def files_save_url(self, - path, - url): + def files_save_url(self, path, url): """ Save the data from a specified URL into a file in user's Dropbox. Note that the transfer from the URL must complete within 15 minutes, or the @@ -3151,18 +3023,16 @@ def files_save_url(self, If this raises, ApiError will contain: :class:`dropbox.files.SaveUrlError` """ - arg = files.SaveUrlArg(path, - url) + arg = files.SaveUrlArg(path, url) r = self.request( files.save_url, - 'files', + "files", arg, None, ) return r - def files_save_url_check_job_status(self, - async_job_id): + def files_save_url_check_job_status(self, async_job_id): """ Check the status of a :meth:`files_save_url` job. @@ -3181,18 +3051,13 @@ def files_save_url_check_job_status(self, arg = async_.PollArg(async_job_id) r = self.request( files.save_url_check_job_status, - 'files', + "files", arg, None, ) return r - def files_search(self, - path, - query, - start=0, - max_results=100, - mode=files.SearchMode.filename): + def files_search(self, path, query, start=0, max_results=100, mode=files.SearchMode.filename): """ Searches for files and folders. Note: Recent changes will be reflected in search results within a few seconds and older revisions of existing @@ -3226,27 +3091,21 @@ def files_search(self, :class:`dropbox.files.SearchError` """ warnings.warn( - 'search is deprecated.', + "search is deprecated.", DeprecationWarning, ) - arg = files.SearchArg(path, - query, - start, - max_results, - mode) + arg = files.SearchArg(path, query, start, max_results, mode) r = self.request( files.search, - 'files', + "files", arg, None, ) return r - def files_search_v2(self, - query, - options=None, - match_field_options=None, - include_highlights=None): + def files_search_v2( + self, query, options=None, match_field_options=None, include_highlights=None + ): """ Searches for files and folders. Note: :meth:`files_search_v2` along with :meth:`files_search_continue_v2` can only be used to retrieve a maximum @@ -3273,20 +3132,16 @@ def files_search_v2(self, If this raises, ApiError will contain: :class:`dropbox.files.SearchError` """ - arg = files.SearchV2Arg(query, - options, - match_field_options, - include_highlights) + arg = files.SearchV2Arg(query, options, match_field_options, include_highlights) r = self.request( files.search_v2, - 'files', + "files", arg, None, ) return r - def files_search_continue_v2(self, - cursor): + def files_search_continue_v2(self, cursor): """ Fetches the next page of search results returned from :meth:`files_search_v2`. Note: :meth:`files_search_v2` along with @@ -3310,15 +3165,13 @@ def files_search_continue_v2(self, arg = files.SearchV2ContinueArg(cursor) r = self.request( files.search_continue_v2, - 'files', + "files", arg, None, ) return r - def files_tags_add(self, - path, - tag_text): + def files_tags_add(self, path, tag_text): """ Add a tag to an item. A tag is a string. The strings are automatically converted to lowercase letters. No more than 20 tags can be added to a @@ -3338,18 +3191,16 @@ def files_tags_add(self, If this raises, ApiError will contain: :class:`dropbox.files.AddTagError` """ - arg = files.AddTagArg(path, - tag_text) + arg = files.AddTagArg(path, tag_text) r = self.request( files.tags_add, - 'files', + "files", arg, None, ) return None - def files_tags_get(self, - paths): + def files_tags_get(self, paths): """ Get list of tags assigned to items. @@ -3367,15 +3218,13 @@ def files_tags_get(self, arg = files.GetTagsArg(paths) r = self.request( files.tags_get, - 'files', + "files", arg, None, ) return r - def files_tags_remove(self, - path, - tag_text): + def files_tags_remove(self, path, tag_text): """ Remove a tag from an item. @@ -3393,18 +3242,16 @@ def files_tags_remove(self, If this raises, ApiError will contain: :class:`dropbox.files.RemoveTagError` """ - arg = files.RemoveTagArg(path, - tag_text) + arg = files.RemoveTagArg(path, tag_text) r = self.request( files.tags_remove, - 'files', + "files", arg, None, ) return None - def files_unlock_file_batch(self, - entries): + def files_unlock_file_batch(self, entries): """ Unlock the files at the given paths. A locked file can only be unlocked by the lock holder or, if a business account, a team admin. A successful @@ -3427,22 +3274,24 @@ def files_unlock_file_batch(self, arg = files.UnlockFileBatchArg(entries) r = self.request( files.unlock_file_batch, - 'files', + "files", arg, None, ) return r - def files_upload(self, - f, - path, - mode=files.WriteMode.add, - autorename=False, - client_modified=None, - mute=False, - property_groups=None, - strict_conflict=False, - content_hash=None): + def files_upload( + self, + f, + path, + mode=files.WriteMode.add, + autorename=False, + client_modified=None, + mute=False, + property_groups=None, + strict_conflict=False, + content_hash=None, + ): """ Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MiB. Instead, create an upload @@ -3467,26 +3316,25 @@ def files_upload(self, If this raises, ApiError will contain: :class:`dropbox.files.UploadError` """ - arg = files.UploadArg(path, - mode, - autorename, - client_modified, - mute, - property_groups, - strict_conflict, - content_hash) + arg = files.UploadArg( + path, + mode, + autorename, + client_modified, + mute, + property_groups, + strict_conflict, + content_hash, + ) r = self.request( files.upload, - 'files', + "files", arg, f, ) return r - def files_upload_session_append(self, - f, - session_id, - offset): + def files_upload_session_append(self, f, session_id, offset): """ Append more data to an upload session. A single request should not upload more than 150 MiB. The maximum size of a file one can upload to @@ -3514,24 +3362,19 @@ def files_upload_session_append(self, :class:`dropbox.files.UploadSessionAppendError` """ warnings.warn( - 'upload_session/append is deprecated.', + "upload_session/append is deprecated.", DeprecationWarning, ) - arg = files.UploadSessionCursor(session_id, - offset) + arg = files.UploadSessionCursor(session_id, offset) r = self.request( files.upload_session_append, - 'files', + "files", arg, f, ) return None - def files_upload_session_append_v2(self, - f, - cursor, - close=False, - content_hash=None): + def files_upload_session_append_v2(self, f, cursor, close=False, content_hash=None): """ Append more data to an upload session. When the parameter close is set, this call will close the session. A single request should not upload @@ -3564,21 +3407,16 @@ def files_upload_session_append_v2(self, If this raises, ApiError will contain: :class:`dropbox.files.UploadSessionAppendError` """ - arg = files.UploadSessionAppendArg(cursor, - close, - content_hash) + arg = files.UploadSessionAppendArg(cursor, close, content_hash) r = self.request( files.upload_session_append_v2, - 'files', + "files", arg, f, ) return None - def files_upload_session_append_batch(self, - f, - entries, - content_hash=None): + def files_upload_session_append_batch(self, f, entries, content_hash=None): """ Append more data to multiple upload sessions. Each piece of file content to append to each upload session should be concatenated in the request @@ -3610,21 +3448,16 @@ def files_upload_session_append_batch(self, If this raises, ApiError will contain: :class:`dropbox.files.UploadSessionAppendBatchError` """ - arg = files.UploadSessionAppendBatchArg(entries, - content_hash) + arg = files.UploadSessionAppendBatchArg(entries, content_hash) r = self.request( files.upload_session_append_batch, - 'files', + "files", arg, f, ) return r - def files_upload_session_finish(self, - f, - cursor, - commit, - content_hash=None): + def files_upload_session_finish(self, f, cursor, commit, content_hash=None): """ Finish an upload session and save the uploaded data to the given file path. A single request should not upload more than 150 MiB. The maximum @@ -3655,19 +3488,16 @@ def files_upload_session_finish(self, If this raises, ApiError will contain: :class:`dropbox.files.UploadSessionFinishError` """ - arg = files.UploadSessionFinishArg(cursor, - commit, - content_hash) + arg = files.UploadSessionFinishArg(cursor, commit, content_hash) r = self.request( files.upload_session_finish, - 'files', + "files", arg, f, ) return r - def files_upload_session_finish_batch(self, - entries): + def files_upload_session_finish_batch(self, entries): """ This route helps you commit many files at once into a user's Dropbox. Use :meth:`files_upload_session_start` and @@ -3699,20 +3529,19 @@ def files_upload_session_finish_batch(self, :rtype: :class:`dropbox.files.UploadSessionFinishBatchLaunch` """ warnings.warn( - 'upload_session/finish_batch is deprecated.', + "upload_session/finish_batch is deprecated.", DeprecationWarning, ) arg = files.UploadSessionFinishBatchArg(entries) r = self.request( files.upload_session_finish_batch, - 'files', + "files", arg, None, ) return r - def files_upload_session_finish_batch_v2(self, - entries): + def files_upload_session_finish_batch_v2(self, entries): """ This route helps you commit many files at once into a user's Dropbox. Use :meth:`files_upload_session_start` and @@ -3742,14 +3571,13 @@ def files_upload_session_finish_batch_v2(self, arg = files.UploadSessionFinishBatchArg(entries) r = self.request( files.upload_session_finish_batch_v2, - 'files', + "files", arg, None, ) return r - def files_upload_session_finish_batch_check(self, - async_job_id): + def files_upload_session_finish_batch_check(self, async_job_id): """ Returns the status of an asynchronous job for :meth:`files_upload_session_finish_batch`. If success, it returns list @@ -3770,17 +3598,13 @@ def files_upload_session_finish_batch_check(self, arg = async_.PollArg(async_job_id) r = self.request( files.upload_session_finish_batch_check, - 'files', + "files", arg, None, ) return r - def files_upload_session_start(self, - f, - close=False, - session_type=None, - content_hash=None): + def files_upload_session_start(self, f, close=False, session_type=None, content_hash=None): """ Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is greater than 150 @@ -3846,20 +3670,16 @@ def files_upload_session_start(self, If this raises, ApiError will contain: :class:`dropbox.files.UploadSessionStartError` """ - arg = files.UploadSessionStartArg(close, - session_type, - content_hash) + arg = files.UploadSessionStartArg(close, session_type, content_hash) r = self.request( files.upload_session_start, - 'files', + "files", arg, f, ) return r - def files_upload_session_start_batch(self, - num_sessions, - session_type=None): + def files_upload_session_start_batch(self, num_sessions, session_type=None): """ Start a batch of upload sessions. See :meth:`files_upload_session_start`. Calls to this endpoint will count as @@ -3878,11 +3698,10 @@ def files_upload_session_start_batch(self, :type num_sessions: int :rtype: :class:`dropbox.files.UploadSessionStartBatchResult` """ - arg = files.UploadSessionStartBatchArg(num_sessions, - session_type) + arg = files.UploadSessionStartBatchArg(num_sessions, session_type) r = self.request( files.upload_session_start_batch, - 'files', + "files", arg, None, ) @@ -3909,7 +3728,7 @@ def openid_userinfo(self): arg = openid.UserInfoArgs() r = self.request( openid.userinfo, - 'openid', + "openid", arg, None, ) @@ -3918,8 +3737,7 @@ def openid_userinfo(self): # ------------------------------------------ # Routes in paper namespace - def paper_docs_archive(self, - doc_id): + def paper_docs_archive(self, doc_id): """ Marks the given Paper doc as archived. This action can be performed or undone by anyone with edit permissions to the doc. Note that this @@ -3943,22 +3761,19 @@ def paper_docs_archive(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/archive is deprecated.', + "docs/archive is deprecated.", DeprecationWarning, ) arg = paper.RefPaperDoc(doc_id) r = self.request( paper.docs_archive, - 'paper', + "paper", arg, None, ) return None - def paper_docs_create(self, - f, - import_format, - parent_folder_id=None): + def paper_docs_create(self, f, import_format, parent_folder_id=None): """ Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for content created by users on the older @@ -3986,23 +3801,19 @@ def paper_docs_create(self, :class:`dropbox.paper.PaperDocCreateError` """ warnings.warn( - 'docs/create is deprecated.', + "docs/create is deprecated.", DeprecationWarning, ) - arg = paper.PaperDocCreateArgs(import_format, - parent_folder_id) + arg = paper.PaperDocCreateArgs(import_format, parent_folder_id) r = self.request( paper.docs_create, - 'paper', + "paper", arg, f, ) return r - def paper_docs_download(self, - doc_id, - export_format, - include_comments=False): + def paper_docs_download(self, doc_id, export_format, include_comments=False): """ Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to work for content created by users on the @@ -4037,25 +3848,21 @@ def paper_docs_download(self, context manager to ensure this. """ warnings.warn( - 'docs/download is deprecated.', + "docs/download is deprecated.", DeprecationWarning, ) - arg = paper.PaperDocExport(doc_id, - export_format, - include_comments) + arg = paper.PaperDocExport(doc_id, export_format, include_comments) r = self.request( paper.docs_download, - 'paper', + "paper", arg, None, ) return r - def paper_docs_download_to_file(self, - download_path, - doc_id, - export_format, - include_comments=False): + def paper_docs_download_to_file( + self, download_path, doc_id, export_format, include_comments=False + ): """ Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to work for content created by users on the @@ -4084,24 +3891,20 @@ def paper_docs_download_to_file(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/download is deprecated.', + "docs/download is deprecated.", DeprecationWarning, ) - arg = paper.PaperDocExport(doc_id, - export_format, - include_comments) + arg = paper.PaperDocExport(doc_id, export_format, include_comments) r = self.request( paper.docs_download, - 'paper', + "paper", arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def paper_docs_folder_users_list(self, - doc_id, - limit=1000): + def paper_docs_folder_users_list(self, doc_id, limit=1000): """ Lists the users who are explicitly invited to the Paper folder in which the Paper doc is contained. For private folders all users (including @@ -4129,22 +3932,19 @@ def paper_docs_folder_users_list(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/folder_users/list is deprecated.', + "docs/folder_users/list is deprecated.", DeprecationWarning, ) - arg = paper.ListUsersOnFolderArgs(doc_id, - limit) + arg = paper.ListUsersOnFolderArgs(doc_id, limit) r = self.request( paper.docs_folder_users_list, - 'paper', + "paper", arg, None, ) return r - def paper_docs_folder_users_list_continue(self, - doc_id, - cursor): + def paper_docs_folder_users_list_continue(self, doc_id, cursor): """ Once a cursor has been retrieved from :meth:`paper_docs_folder_users_list`, use this to paginate through all @@ -4171,21 +3971,19 @@ def paper_docs_folder_users_list_continue(self, :class:`dropbox.paper.ListUsersCursorError` """ warnings.warn( - 'docs/folder_users/list/continue is deprecated.', + "docs/folder_users/list/continue is deprecated.", DeprecationWarning, ) - arg = paper.ListUsersOnFolderContinueArgs(doc_id, - cursor) + arg = paper.ListUsersOnFolderContinueArgs(doc_id, cursor) r = self.request( paper.docs_folder_users_list_continue, - 'paper', + "paper", arg, None, ) return r - def paper_docs_get_folder_info(self, - doc_id): + def paper_docs_get_folder_info(self, doc_id): """ Retrieves folder information for the given Paper doc. This includes: - folder sharing policy; permissions for subfolders are set by the @@ -4213,21 +4011,19 @@ def paper_docs_get_folder_info(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/get_folder_info is deprecated.', + "docs/get_folder_info is deprecated.", DeprecationWarning, ) arg = paper.RefPaperDoc(doc_id) r = self.request( paper.docs_get_folder_info, - 'paper', + "paper", arg, None, ) return r - def paper_docs_get_metadata(self, - doc_id=None, - file_id=None): + def paper_docs_get_metadata(self, doc_id=None, file_id=None): """ Returns metadata for a Paper doc or Cloud Doc. @@ -4244,22 +4040,23 @@ def paper_docs_get_metadata(self, If this raises, ApiError will contain: :class:`dropbox.paper.DocLookupError` """ - arg = paper.GetDocMetadataArg(doc_id, - file_id) + arg = paper.GetDocMetadataArg(doc_id, file_id) r = self.request( paper.docs_get_metadata, - 'paper', + "paper", arg, None, ) return r - def paper_docs_list(self, - filter_by=paper.ListPaperDocsFilterBy.docs_accessed, - sort_by=paper.ListPaperDocsSortBy.accessed, - sort_order=paper.ListPaperDocsSortOrder.ascending, - limit=1000, - stop_at_date=None): + def paper_docs_list( + self, + filter_by=paper.ListPaperDocsFilterBy.docs_accessed, + sort_by=paper.ListPaperDocsSortBy.accessed, + sort_order=paper.ListPaperDocsSortOrder.ascending, + limit=1000, + stop_at_date=None, + ): """ Return the list of all Paper docs according to the argument specifications. To iterate over through the full pagination, pass the @@ -4293,24 +4090,19 @@ def paper_docs_list(self, :rtype: :class:`dropbox.paper.ListPaperDocsResponse` """ warnings.warn( - 'docs/list is deprecated.', + "docs/list is deprecated.", DeprecationWarning, ) - arg = paper.ListPaperDocsArgs(filter_by, - sort_by, - sort_order, - limit, - stop_at_date) + arg = paper.ListPaperDocsArgs(filter_by, sort_by, sort_order, limit, stop_at_date) r = self.request( paper.docs_list, - 'paper', + "paper", arg, None, ) return r - def paper_docs_list_continue(self, - cursor): + def paper_docs_list_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`paper_docs_list`, use this to paginate through all Paper doc. Note that this endpoint will continue @@ -4335,20 +4127,19 @@ def paper_docs_list_continue(self, :class:`dropbox.paper.ListDocsCursorError` """ warnings.warn( - 'docs/list/continue is deprecated.', + "docs/list/continue is deprecated.", DeprecationWarning, ) arg = paper.ListPaperDocsContinueArgs(cursor) r = self.request( paper.docs_list_continue, - 'paper', + "paper", arg, None, ) return r - def paper_docs_permanently_delete(self, - doc_id): + def paper_docs_permanently_delete(self, doc_id): """ Permanently deletes the given Paper doc. This operation is final as the doc cannot be recovered. This action can be performed only by the doc @@ -4372,20 +4163,19 @@ def paper_docs_permanently_delete(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/permanently_delete is deprecated.', + "docs/permanently_delete is deprecated.", DeprecationWarning, ) arg = paper.RefPaperDoc(doc_id) r = self.request( paper.docs_permanently_delete, - 'paper', + "paper", arg, None, ) return None - def paper_docs_sharing_policy_get(self, - doc_id): + def paper_docs_sharing_policy_get(self, doc_id): """ Gets the default sharing policy for the given Paper doc. Note that this endpoint will continue to work for content created by users on the older @@ -4408,21 +4198,19 @@ def paper_docs_sharing_policy_get(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/sharing_policy/get is deprecated.', + "docs/sharing_policy/get is deprecated.", DeprecationWarning, ) arg = paper.RefPaperDoc(doc_id) r = self.request( paper.docs_sharing_policy_get, - 'paper', + "paper", arg, None, ) return r - def paper_docs_sharing_policy_set(self, - doc_id, - sharing_policy): + def paper_docs_sharing_policy_set(self, doc_id, sharing_policy): """ Sets the default sharing policy for the given Paper doc. The default 'team_sharing_policy' can be changed only by teams, omit this field for @@ -4449,25 +4237,19 @@ def paper_docs_sharing_policy_set(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/sharing_policy/set is deprecated.', + "docs/sharing_policy/set is deprecated.", DeprecationWarning, ) - arg = paper.PaperDocSharingPolicy(doc_id, - sharing_policy) + arg = paper.PaperDocSharingPolicy(doc_id, sharing_policy) r = self.request( paper.docs_sharing_policy_set, - 'paper', + "paper", arg, None, ) return None - def paper_docs_update(self, - f, - doc_id, - doc_update_policy, - revision, - import_format): + def paper_docs_update(self, f, doc_id, doc_update_policy, revision, import_format): """ Updates an existing Paper doc with the provided content. Note that this endpoint will continue to work for content created by users on the older @@ -4497,26 +4279,19 @@ def paper_docs_update(self, :class:`dropbox.paper.PaperDocUpdateError` """ warnings.warn( - 'docs/update is deprecated.', + "docs/update is deprecated.", DeprecationWarning, ) - arg = paper.PaperDocUpdateArgs(doc_id, - doc_update_policy, - revision, - import_format) + arg = paper.PaperDocUpdateArgs(doc_id, doc_update_policy, revision, import_format) r = self.request( paper.docs_update, - 'paper', + "paper", arg, f, ) return r - def paper_docs_users_add(self, - doc_id, - members, - custom_message=None, - quiet=False): + def paper_docs_users_add(self, doc_id, members, custom_message=None, quiet=False): """ Allows an owner or editor to add users to a Paper doc or change their permissions using their email address or Dropbox account ID. The doc @@ -4548,25 +4323,21 @@ def paper_docs_users_add(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/users/add is deprecated.', + "docs/users/add is deprecated.", DeprecationWarning, ) - arg = paper.AddPaperDocUser(doc_id, - members, - custom_message, - quiet) + arg = paper.AddPaperDocUser(doc_id, members, custom_message, quiet) r = self.request( paper.docs_users_add, - 'paper', + "paper", arg, None, ) return r - def paper_docs_users_list(self, - doc_id, - limit=1000, - filter_by=paper.UserOnPaperDocFilter.shared): + def paper_docs_users_list( + self, doc_id, limit=1000, filter_by=paper.UserOnPaperDocFilter.shared + ): """ Lists all users who visited the Paper doc or users with explicit access. This call excludes users who have been removed. The list is sorted by @@ -4597,23 +4368,19 @@ def paper_docs_users_list(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/users/list is deprecated.', + "docs/users/list is deprecated.", DeprecationWarning, ) - arg = paper.ListUsersOnPaperDocArgs(doc_id, - limit, - filter_by) + arg = paper.ListUsersOnPaperDocArgs(doc_id, limit, filter_by) r = self.request( paper.docs_users_list, - 'paper', + "paper", arg, None, ) return r - def paper_docs_users_list_continue(self, - doc_id, - cursor): + def paper_docs_users_list_continue(self, doc_id, cursor): """ Once a cursor has been retrieved from :meth:`paper_docs_users_list`, use this to paginate through all users on the Paper doc. Note that this @@ -4638,22 +4405,19 @@ def paper_docs_users_list_continue(self, :class:`dropbox.paper.ListUsersCursorError` """ warnings.warn( - 'docs/users/list/continue is deprecated.', + "docs/users/list/continue is deprecated.", DeprecationWarning, ) - arg = paper.ListUsersOnPaperDocContinueArgs(doc_id, - cursor) + arg = paper.ListUsersOnPaperDocContinueArgs(doc_id, cursor) r = self.request( paper.docs_users_list_continue, - 'paper', + "paper", arg, None, ) return r - def paper_docs_users_remove(self, - doc_id, - member): + def paper_docs_users_remove(self, doc_id, member): """ Allows an owner or editor to remove users from a Paper doc using their email address or Dropbox account ID. The doc owner cannot be removed. @@ -4678,23 +4442,19 @@ def paper_docs_users_remove(self, :class:`dropbox.paper.DocLookupError` """ warnings.warn( - 'docs/users/remove is deprecated.', + "docs/users/remove is deprecated.", DeprecationWarning, ) - arg = paper.RemovePaperDocUser(doc_id, - member) + arg = paper.RemovePaperDocUser(doc_id, member) r = self.request( paper.docs_users_remove, - 'paper', + "paper", arg, None, ) return None - def paper_folders_create(self, - name, - parent_folder_id=None, - is_team_folder=None): + def paper_folders_create(self, name, parent_folder_id=None, is_team_folder=None): """ Create a new Paper folder with the provided info. Note that this endpoint will continue to work for content created by users on the older @@ -4728,15 +4488,13 @@ def paper_folders_create(self, :class:`dropbox.paper.PaperFolderCreateError` """ warnings.warn( - 'folders/create is deprecated.', + "folders/create is deprecated.", DeprecationWarning, ) - arg = paper.PaperFolderCreateArg(name, - parent_folder_id, - is_team_folder) + arg = paper.PaperFolderCreateArg(name, parent_folder_id, is_team_folder) r = self.request( paper.folders_create, - 'paper', + "paper", arg, None, ) @@ -4745,10 +4503,7 @@ def paper_folders_create(self, # ------------------------------------------ # Routes in riviera namespace - def riviera_get_markdown_async(self, - file_id_or_url=None, - enable_ocr=False, - embed_images=False): + def riviera_get_markdown_async(self, file_id_or_url=None, enable_ocr=False, embed_images=False): """ Asynchronous document-to-markdown conversion for supported file formats. @@ -4781,19 +4536,16 @@ def riviera_get_markdown_async(self, :type embed_images: bool :rtype: :class:`dropbox.async_.LaunchResultBase` """ - arg = riviera.GetMarkdownArgs(file_id_or_url, - enable_ocr, - embed_images) + arg = riviera.GetMarkdownArgs(file_id_or_url, enable_ocr, embed_images) r = self.request( riviera.get_markdown_async, - 'riviera', + "riviera", arg, None, ) return r - def riviera_get_markdown_async_check(self, - async_job_id): + def riviera_get_markdown_async_check(self, async_job_id): """ Returns the status or result of specified get_markdown_async task. @@ -4812,14 +4564,13 @@ def riviera_get_markdown_async_check(self, arg = async_.PollArg(async_job_id) r = self.request( riviera.get_markdown_async_check, - 'riviera', + "riviera", arg, None, ) return r - def riviera_get_metadata_async(self, - file_id_or_url=None): + def riviera_get_metadata_async(self, file_id_or_url=None): """ Asynchronous file metadata extraction for supported file formats. @@ -4852,14 +4603,13 @@ def riviera_get_metadata_async(self, arg = riviera.GetMetadataArgs(file_id_or_url) r = self.request( riviera.get_metadata_async, - 'riviera', + "riviera", arg, None, ) return r - def riviera_get_metadata_async_check(self, - async_job_id): + def riviera_get_metadata_async_check(self, async_job_id): """ Returns the status or result of specified get_metadata_async task. @@ -4878,17 +4628,19 @@ def riviera_get_metadata_async_check(self, arg = async_.PollArg(async_job_id) r = self.request( riviera.get_metadata_async_check, - 'riviera', + "riviera", arg, None, ) return r - def riviera_get_transcript_async(self, - file_id_or_url=None, - timestamp_level=riviera.TimestampLevel.unknown, - included_special_words='', - audio_language=''): + def riviera_get_transcript_async( + self, + file_id_or_url=None, + timestamp_level=riviera.TimestampLevel.unknown, + included_special_words="", + audio_language="", + ): """ Asynchronous transcript generation for audio and video files. @@ -4932,20 +4684,18 @@ def riviera_get_transcript_async(self, :type audio_language: str :rtype: :class:`dropbox.async_.LaunchResultBase` """ - arg = riviera.GetTranscriptArgs(file_id_or_url, - timestamp_level, - included_special_words, - audio_language) + arg = riviera.GetTranscriptArgs( + file_id_or_url, timestamp_level, included_special_words, audio_language + ) r = self.request( riviera.get_transcript_async, - 'riviera', + "riviera", arg, None, ) return r - def riviera_get_transcript_async_check(self, - async_job_id): + def riviera_get_transcript_async_check(self, async_job_id): """ Returns the status or result of specified get_transcript_async task. @@ -4964,7 +4714,7 @@ def riviera_get_transcript_async_check(self, arg = async_.PollArg(async_job_id) r = self.request( riviera.get_transcript_async_check, - 'riviera', + "riviera", arg, None, ) @@ -4973,14 +4723,16 @@ def riviera_get_transcript_async_check(self, # ------------------------------------------ # Routes in sharing namespace - def sharing_add_file_member(self, - file, - members, - custom_message=None, - quiet=False, - access_level=None, - add_message_as_comment=False, - fp_sealed_result=None): + def sharing_add_file_member( + self, + file, + members, + custom_message=None, + quiet=False, + access_level=None, + add_message_as_comment=False, + fp_sealed_result=None, + ): """ Adds specified members to a file. @@ -5014,27 +4766,31 @@ def sharing_add_file_member(self, If this raises, ApiError will contain: :class:`dropbox.sharing.AddFileMemberError` """ - arg = sharing.AddFileMemberArgs(file, - members, - custom_message, - quiet, - access_level, - add_message_as_comment, - fp_sealed_result) + arg = sharing.AddFileMemberArgs( + file, + members, + custom_message, + quiet, + access_level, + add_message_as_comment, + fp_sealed_result, + ) r = self.request( sharing.add_file_member, - 'sharing', + "sharing", arg, None, ) return r - def sharing_add_folder_member(self, - shared_folder_id, - members, - quiet=False, - custom_message=None, - fp_sealed_result=None): + def sharing_add_folder_member( + self, + shared_folder_id, + members, + quiet=False, + custom_message=None, + fp_sealed_result=None, + ): """ Allows an owner or editor (if the ACL update policy allows) of a shared folder to add another member. For the new member to get access to all @@ -5064,21 +4820,18 @@ def sharing_add_folder_member(self, If this raises, ApiError will contain: :class:`dropbox.sharing.AddFolderMemberError` """ - arg = sharing.AddFolderMemberArg(shared_folder_id, - members, - quiet, - custom_message, - fp_sealed_result) + arg = sharing.AddFolderMemberArg( + shared_folder_id, members, quiet, custom_message, fp_sealed_result + ) r = self.request( sharing.add_folder_member, - 'sharing', + "sharing", arg, None, ) return None - def sharing_check_job_status(self, - async_job_id): + def sharing_check_job_status(self, async_job_id): """ Returns the status of an asynchronous job. @@ -5097,14 +4850,13 @@ def sharing_check_job_status(self, arg = async_.PollArg(async_job_id) r = self.request( sharing.check_job_status, - 'sharing', + "sharing", arg, None, ) return r - def sharing_check_remove_member_job_status(self, - async_job_id): + def sharing_check_remove_member_job_status(self, async_job_id): """ Returns the status of an asynchronous job for sharing a folder. @@ -5123,14 +4875,13 @@ def sharing_check_remove_member_job_status(self, arg = async_.PollArg(async_job_id) r = self.request( sharing.check_remove_member_job_status, - 'sharing', + "sharing", arg, None, ) return r - def sharing_check_share_job_status(self, - async_job_id): + def sharing_check_share_job_status(self, async_job_id): """ Returns the status of an asynchronous job for sharing a folder. @@ -5149,16 +4900,13 @@ def sharing_check_share_job_status(self, arg = async_.PollArg(async_job_id) r = self.request( sharing.check_share_job_status, - 'sharing', + "sharing", arg, None, ) return r - def sharing_create_shared_link(self, - path, - short_url=False, - pending_upload=None): + def sharing_create_shared_link(self, path, short_url=False, pending_upload=None): """ Create a shared link. If a shared link already exists for the given path, that link is returned. Previously, it was technically possible to @@ -5187,23 +4935,19 @@ def sharing_create_shared_link(self, :class:`dropbox.sharing.CreateSharedLinkError` """ warnings.warn( - 'create_shared_link is deprecated.', + "create_shared_link is deprecated.", DeprecationWarning, ) - arg = sharing.CreateSharedLinkArg(path, - short_url, - pending_upload) + arg = sharing.CreateSharedLinkArg(path, short_url, pending_upload) r = self.request( sharing.create_shared_link, - 'sharing', + "sharing", arg, None, ) return r - def sharing_create_shared_link_with_settings(self, - path, - settings=None): + def sharing_create_shared_link_with_settings(self, path, settings=None): """ Create a shared link with custom settings. If no settings are given then the default visibility is RequestedVisibility.public (The resolved @@ -5224,19 +4968,16 @@ def sharing_create_shared_link_with_settings(self, If this raises, ApiError will contain: :class:`dropbox.sharing.CreateSharedLinkWithSettingsError` """ - arg = sharing.CreateSharedLinkWithSettingsArg(path, - settings) + arg = sharing.CreateSharedLinkWithSettingsArg(path, settings) r = self.request( sharing.create_shared_link_with_settings, - 'sharing', + "sharing", arg, None, ) return r - def sharing_get_file_metadata(self, - file, - actions=None): + def sharing_get_file_metadata(self, file, actions=None): """ Returns shared file metadata. @@ -5256,19 +4997,16 @@ def sharing_get_file_metadata(self, If this raises, ApiError will contain: :class:`dropbox.sharing.GetFileMetadataError` """ - arg = sharing.GetFileMetadataArg(file, - actions) + arg = sharing.GetFileMetadataArg(file, actions) r = self.request( sharing.get_file_metadata, - 'sharing', + "sharing", arg, None, ) return r - def sharing_get_file_metadata_batch(self, - files, - actions=None): + def sharing_get_file_metadata_batch(self, files, actions=None): """ Returns shared file metadata. @@ -5288,19 +5026,16 @@ def sharing_get_file_metadata_batch(self, If this raises, ApiError will contain: :class:`dropbox.sharing.SharingUserError` """ - arg = sharing.GetFileMetadataBatchArg(files, - actions) + arg = sharing.GetFileMetadataBatchArg(files, actions) r = self.request( sharing.get_file_metadata_batch, - 'sharing', + "sharing", arg, None, ) return r - def sharing_get_folder_metadata(self, - shared_folder_id, - actions=None): + def sharing_get_folder_metadata(self, shared_folder_id, actions=None): """ Returns shared folder metadata by its folder ID. @@ -5320,20 +5055,16 @@ def sharing_get_folder_metadata(self, If this raises, ApiError will contain: :class:`dropbox.sharing.SharedFolderAccessError` """ - arg = sharing.GetMetadataArgs(shared_folder_id, - actions) + arg = sharing.GetMetadataArgs(shared_folder_id, actions) r = self.request( sharing.get_folder_metadata, - 'sharing', + "sharing", arg, None, ) return r - def sharing_get_shared_link_file(self, - url, - path=None, - link_password=None): + def sharing_get_shared_link_file(self, url, path=None, link_password=None): """ Download the shared link's file from a user's Dropbox. This is a download-style endpoint that returns the file content. @@ -5363,22 +5094,18 @@ def sharing_get_shared_link_file(self, `_ context manager to ensure this. """ - arg = sharing.GetSharedLinkMetadataArg(url, - path, - link_password) + arg = sharing.GetSharedLinkMetadataArg(url, path, link_password) r = self.request( sharing.get_shared_link_file, - 'sharing', + "sharing", arg, None, ) return r - def sharing_get_shared_link_file_to_file(self, - download_path, - url, - path=None, - link_password=None): + def sharing_get_shared_link_file_to_file( + self, download_path, url, path=None, link_password=None + ): """ Download the shared link's file from a user's Dropbox. This is a download-style endpoint that returns the file content. @@ -5402,22 +5129,17 @@ def sharing_get_shared_link_file_to_file(self, If this raises, ApiError will contain: :class:`dropbox.sharing.GetSharedLinkFileError` """ - arg = sharing.GetSharedLinkMetadataArg(url, - path, - link_password) + arg = sharing.GetSharedLinkMetadataArg(url, path, link_password) r = self.request( sharing.get_shared_link_file, - 'sharing', + "sharing", arg, None, ) self._save_body_to_file(download_path, r[1]) return r[0] - def sharing_get_shared_link_metadata(self, - url, - path=None, - link_password=None): + def sharing_get_shared_link_metadata(self, url, path=None, link_password=None): """ Get the shared link's metadata. @@ -5435,19 +5157,16 @@ def sharing_get_shared_link_metadata(self, :type link_password: Nullable[str] :rtype: :class:`dropbox.sharing.SharedLinkMetadata` """ - arg = sharing.GetSharedLinkMetadataArg(url, - path, - link_password) + arg = sharing.GetSharedLinkMetadataArg(url, path, link_password) r = self.request( sharing.get_shared_link_metadata, - 'sharing', + "sharing", arg, None, ) return r - def sharing_get_shared_links(self, - path=None): + def sharing_get_shared_links(self, path=None): """ DEPRECATED: Use list_shared_links instead. This endpoint will be retired in October 2026. Returns a list of :class:`dropbox.sharing.LinkMetadata` @@ -5469,23 +5188,19 @@ def sharing_get_shared_links(self, :class:`dropbox.sharing.GetSharedLinksError` """ warnings.warn( - 'get_shared_links is deprecated.', + "get_shared_links is deprecated.", DeprecationWarning, ) arg = sharing.GetSharedLinksArg(path) r = self.request( sharing.get_shared_links, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_file_members(self, - file, - actions=None, - include_inherited=True, - limit=100): + def sharing_list_file_members(self, file, actions=None, include_inherited=True, limit=100): """ Use to obtain the members who have been invited to a file, both inherited and uninherited members. @@ -5509,21 +5224,16 @@ def sharing_list_file_members(self, If this raises, ApiError will contain: :class:`dropbox.sharing.ListFileMembersError` """ - arg = sharing.ListFileMembersArg(file, - actions, - include_inherited, - limit) + arg = sharing.ListFileMembersArg(file, actions, include_inherited, limit) r = self.request( sharing.list_file_members, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_file_members_batch(self, - files, - limit=1000): + def sharing_list_file_members_batch(self, files, limit=1000): """ Get members of multiple files at once. The arguments to this route are more limited, and the limit on query result size per file is more @@ -5545,18 +5255,16 @@ def sharing_list_file_members_batch(self, If this raises, ApiError will contain: :class:`dropbox.sharing.SharingUserError` """ - arg = sharing.ListFileMembersBatchArg(files, - limit) + arg = sharing.ListFileMembersBatchArg(files, limit) r = self.request( sharing.list_file_members_batch, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_file_members_continue(self, - cursor): + def sharing_list_file_members_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`sharing_list_file_members` or :meth:`sharing_list_file_members_batch`, use this to paginate through @@ -5579,17 +5287,13 @@ def sharing_list_file_members_continue(self, arg = sharing.ListFileMembersContinueArg(cursor) r = self.request( sharing.list_file_members_continue, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_folder_members(self, - shared_folder_id, - actions=None, - limit=1000, - path=None): + def sharing_list_folder_members(self, shared_folder_id, actions=None, limit=1000, path=None): """ Returns shared folder membership by its folder ID. @@ -5610,20 +5314,16 @@ def sharing_list_folder_members(self, If this raises, ApiError will contain: :class:`dropbox.sharing.SharedFolderAccessError` """ - arg = sharing.ListFolderMembersArgs(shared_folder_id, - actions, - limit, - path) + arg = sharing.ListFolderMembersArgs(shared_folder_id, actions, limit, path) r = self.request( sharing.list_folder_members, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_folder_members_continue(self, - cursor): + def sharing_list_folder_members_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`sharing_list_folder_members`, use this to paginate through all @@ -5645,15 +5345,13 @@ def sharing_list_folder_members_continue(self, arg = sharing.ListFolderMembersContinueArg(cursor) r = self.request( sharing.list_folder_members_continue, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_folders(self, - limit=1000, - actions=None): + def sharing_list_folders(self, limit=1000, actions=None): """ Return the list of all shared folders the current user has access to. @@ -5669,18 +5367,16 @@ def sharing_list_folders(self, :type actions: Nullable[List[:class:`dropbox.sharing.FolderAction`]] :rtype: :class:`dropbox.sharing.ListFoldersResult` """ - arg = sharing.ListFoldersArgs(limit, - actions) + arg = sharing.ListFoldersArgs(limit, actions) r = self.request( sharing.list_folders, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_folders_continue(self, - cursor): + def sharing_list_folders_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`sharing_list_folders`, use this to paginate through all shared folders. The cursor must come from a @@ -5702,15 +5398,13 @@ def sharing_list_folders_continue(self, arg = sharing.ListFoldersContinueArg(cursor) r = self.request( sharing.list_folders_continue, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_mountable_folders(self, - limit=1000, - actions=None): + def sharing_list_mountable_folders(self, limit=1000, actions=None): """ Return the list of all shared folders the current user can mount or unmount. @@ -5727,18 +5421,16 @@ def sharing_list_mountable_folders(self, :type actions: Nullable[List[:class:`dropbox.sharing.FolderAction`]] :rtype: :class:`dropbox.sharing.ListFoldersResult` """ - arg = sharing.ListFoldersArgs(limit, - actions) + arg = sharing.ListFoldersArgs(limit, actions) r = self.request( sharing.list_mountable_folders, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_mountable_folders_continue(self, - cursor): + def sharing_list_mountable_folders_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`sharing_list_mountable_folders`, use this to paginate through all @@ -5761,15 +5453,13 @@ def sharing_list_mountable_folders_continue(self, arg = sharing.ListFoldersContinueArg(cursor) r = self.request( sharing.list_mountable_folders_continue, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_received_files(self, - limit=100, - actions=None): + def sharing_list_received_files(self, limit=100, actions=None): """ Returns a list of all files shared with current user. @@ -5790,18 +5480,16 @@ def sharing_list_received_files(self, If this raises, ApiError will contain: :class:`dropbox.sharing.SharingUserError` """ - arg = sharing.ListFilesArg(limit, - actions) + arg = sharing.ListFilesArg(limit, actions) r = self.request( sharing.list_received_files, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_received_files_continue(self, - cursor): + def sharing_list_received_files_continue(self, cursor): """ Get more results with a cursor from :meth:`sharing_list_received_files`. @@ -5819,16 +5507,13 @@ def sharing_list_received_files_continue(self, arg = sharing.ListFilesContinueArg(cursor) r = self.request( sharing.list_received_files_continue, - 'sharing', + "sharing", arg, None, ) return r - def sharing_list_shared_links(self, - path=None, - cursor=None, - direct_only=None): + def sharing_list_shared_links(self, path=None, cursor=None, direct_only=None): """ List shared links of this user. If no path is given, returns a list of all shared links for the current user. For members of business teams @@ -5855,21 +5540,16 @@ def sharing_list_shared_links(self, If this raises, ApiError will contain: :class:`dropbox.sharing.ListSharedLinksError` """ - arg = sharing.ListSharedLinksArg(path, - cursor, - direct_only) + arg = sharing.ListSharedLinksArg(path, cursor, direct_only) r = self.request( sharing.list_shared_links, - 'sharing', + "sharing", arg, None, ) return r - def sharing_modify_shared_link_settings(self, - url, - settings, - remove_expiration=False): + def sharing_modify_shared_link_settings(self, url, settings, remove_expiration=False): """ Modify the shared link's settings. If the requested visibility conflict with the shared links policy of the team or the shared folder (in case @@ -5895,19 +5575,16 @@ def sharing_modify_shared_link_settings(self, If this raises, ApiError will contain: :class:`dropbox.sharing.ModifySharedLinkSettingsError` """ - arg = sharing.ModifySharedLinkSettingsArgs(url, - settings, - remove_expiration) + arg = sharing.ModifySharedLinkSettingsArgs(url, settings, remove_expiration) r = self.request( sharing.modify_shared_link_settings, - 'sharing', + "sharing", arg, None, ) return r - def sharing_mount_folder(self, - shared_folder_id): + def sharing_mount_folder(self, shared_folder_id): """ The current user mounts the designated folder. Mount a shared folder for a user after they have been added as a member. Once mounted, the shared @@ -5927,14 +5604,13 @@ def sharing_mount_folder(self, arg = sharing.MountFolderArg(shared_folder_id) r = self.request( sharing.mount_folder, - 'sharing', + "sharing", arg, None, ) return r - def sharing_relinquish_access(self, - file_id): + def sharing_relinquish_access(self, file_id): """ Removes all self-removable access from a file or folder for the current user. Best-effort and idempotent: attempts to drop link-visitor @@ -5954,14 +5630,13 @@ def sharing_relinquish_access(self, arg = sharing.RelinquishAccessArg(file_id) r = self.request( sharing.relinquish_access, - 'sharing', + "sharing", arg, None, ) return r - def sharing_relinquish_file_membership(self, - file): + def sharing_relinquish_file_membership(self, file): """ The current user relinquishes their membership in the designated file. @@ -5979,15 +5654,13 @@ def sharing_relinquish_file_membership(self, arg = sharing.RelinquishFileMembershipArg(file) r = self.request( sharing.relinquish_file_membership, - 'sharing', + "sharing", arg, None, ) return None - def sharing_relinquish_folder_membership(self, - shared_folder_id, - leave_a_copy=False): + def sharing_relinquish_folder_membership(self, shared_folder_id, leave_a_copy=False): """ The current user relinquishes their membership in the designated shared folder and will no longer have access to the folder. A folder owner @@ -6010,19 +5683,16 @@ def sharing_relinquish_folder_membership(self, If this raises, ApiError will contain: :class:`dropbox.sharing.RelinquishFolderMembershipError` """ - arg = sharing.RelinquishFolderMembershipArg(shared_folder_id, - leave_a_copy) + arg = sharing.RelinquishFolderMembershipArg(shared_folder_id, leave_a_copy) r = self.request( sharing.relinquish_folder_membership, - 'sharing', + "sharing", arg, None, ) return r - def sharing_remove_file_member(self, - file, - member): + def sharing_remove_file_member(self, file, member): """ Identical to remove_file_member_2 but with less information returned. @@ -6043,22 +5713,19 @@ def sharing_remove_file_member(self, :class:`dropbox.sharing.RemoveFileMemberError` """ warnings.warn( - 'remove_file_member is deprecated.', + "remove_file_member is deprecated.", DeprecationWarning, ) - arg = sharing.RemoveFileMemberArg(file, - member) + arg = sharing.RemoveFileMemberArg(file, member) r = self.request( sharing.remove_file_member, - 'sharing', + "sharing", arg, None, ) return r - def sharing_remove_file_member_2(self, - file, - member): + def sharing_remove_file_member_2(self, file, member): """ Removes a specified member from the file. @@ -6078,20 +5745,16 @@ def sharing_remove_file_member_2(self, If this raises, ApiError will contain: :class:`dropbox.sharing.RemoveFileMemberError` """ - arg = sharing.RemoveFileMemberArg(file, - member) + arg = sharing.RemoveFileMemberArg(file, member) r = self.request( sharing.remove_file_member_2, - 'sharing', + "sharing", arg, None, ) return r - def sharing_remove_folder_member(self, - shared_folder_id, - member, - leave_a_copy): + def sharing_remove_folder_member(self, shared_folder_id, member, leave_a_copy): """ Allows an owner or editor (if the ACL update policy allows) of a shared folder to remove another member. @@ -6115,19 +5778,16 @@ def sharing_remove_folder_member(self, If this raises, ApiError will contain: :class:`dropbox.sharing.RemoveFolderMemberError` """ - arg = sharing.RemoveFolderMemberArg(shared_folder_id, - member, - leave_a_copy) + arg = sharing.RemoveFolderMemberArg(shared_folder_id, member, leave_a_copy) r = self.request( sharing.remove_folder_member, - 'sharing', + "sharing", arg, None, ) return r - def sharing_revoke_shared_link(self, - url): + def sharing_revoke_shared_link(self, url): """ Revoke a shared link. Note that even after revoking a shared link to a file, the file may be accessible if there are shared links leading to @@ -6149,15 +5809,15 @@ def sharing_revoke_shared_link(self, arg = sharing.RevokeSharedLinkArg(url) r = self.request( sharing.revoke_shared_link, - 'sharing', + "sharing", arg, None, ) return None - def sharing_set_access_inheritance(self, - shared_folder_id, - access_inheritance=sharing.AccessInheritance.inherit): + def sharing_set_access_inheritance( + self, shared_folder_id, access_inheritance=sharing.AccessInheritance.inherit + ): """ Change the inheritance policy of an existing Shared Folder. Only permitted for shared folders in a shared team root. If a @@ -6179,26 +5839,27 @@ def sharing_set_access_inheritance(self, If this raises, ApiError will contain: :class:`dropbox.sharing.SetAccessInheritanceError` """ - arg = sharing.SetAccessInheritanceArg(shared_folder_id, - access_inheritance) + arg = sharing.SetAccessInheritanceArg(shared_folder_id, access_inheritance) r = self.request( sharing.set_access_inheritance, - 'sharing', + "sharing", arg, None, ) return r - def sharing_share_folder(self, - path, - acl_update_policy=None, - force_async=False, - member_policy=None, - shared_link_policy=None, - viewer_info_policy=None, - access_inheritance=sharing.AccessInheritance.inherit, - actions=None, - link_settings=None): + def sharing_share_folder( + self, + path, + acl_update_policy=None, + force_async=False, + member_policy=None, + shared_link_policy=None, + viewer_info_policy=None, + access_inheritance=sharing.AccessInheritance.inherit, + actions=None, + link_settings=None, + ): """ Share a folder with collaborators. Most sharing will be completed synchronously. Large folders will be completed asynchronously. To make @@ -6223,26 +5884,26 @@ def sharing_share_folder(self, If this raises, ApiError will contain: :class:`dropbox.sharing.ShareFolderError` """ - arg = sharing.ShareFolderArg(path, - acl_update_policy, - force_async, - member_policy, - shared_link_policy, - viewer_info_policy, - access_inheritance, - actions, - link_settings) + arg = sharing.ShareFolderArg( + path, + acl_update_policy, + force_async, + member_policy, + shared_link_policy, + viewer_info_policy, + access_inheritance, + actions, + link_settings, + ) r = self.request( sharing.share_folder, - 'sharing', + "sharing", arg, None, ) return r - def sharing_transfer_folder(self, - shared_folder_id, - to_dropbox_id): + def sharing_transfer_folder(self, shared_folder_id, to_dropbox_id): """ Transfer ownership of a shared folder to a member of the shared folder. User must have ``AccessLevel.owner`` access to the shared folder to @@ -6262,18 +5923,16 @@ def sharing_transfer_folder(self, If this raises, ApiError will contain: :class:`dropbox.sharing.TransferFolderError` """ - arg = sharing.TransferFolderArg(shared_folder_id, - to_dropbox_id) + arg = sharing.TransferFolderArg(shared_folder_id, to_dropbox_id) r = self.request( sharing.transfer_folder, - 'sharing', + "sharing", arg, None, ) return None - def sharing_unmount_folder(self, - shared_folder_id): + def sharing_unmount_folder(self, shared_folder_id): """ The current user unmounts the designated folder. They can re-mount the folder at a later time using :meth:`sharing_mount_folder`. @@ -6292,14 +5951,13 @@ def sharing_unmount_folder(self, arg = sharing.UnmountFolderArg(shared_folder_id) r = self.request( sharing.unmount_folder, - 'sharing', + "sharing", arg, None, ) return None - def sharing_unshare_file(self, - file): + def sharing_unshare_file(self, file): """ Remove all members from this file. Does not remove inherited members. @@ -6317,15 +5975,13 @@ def sharing_unshare_file(self, arg = sharing.UnshareFileArg(file) r = self.request( sharing.unshare_file, - 'sharing', + "sharing", arg, None, ) return None - def sharing_unshare_folder(self, - shared_folder_id, - leave_a_copy=False): + def sharing_unshare_folder(self, shared_folder_id, leave_a_copy=False): """ Allows a shared folder owner to unshare the folder. Unshare will not work in following cases: The shared folder contains shared folders OR @@ -6349,20 +6005,16 @@ def sharing_unshare_folder(self, If this raises, ApiError will contain: :class:`dropbox.sharing.UnshareFolderError` """ - arg = sharing.UnshareFolderArg(shared_folder_id, - leave_a_copy) + arg = sharing.UnshareFolderArg(shared_folder_id, leave_a_copy) r = self.request( sharing.unshare_folder, - 'sharing', + "sharing", arg, None, ) return r - def sharing_update_file_member(self, - file, - member, - access_level): + def sharing_update_file_member(self, file, member, access_level): """ Changes a member's access on a shared file. @@ -6381,22 +6033,18 @@ def sharing_update_file_member(self, If this raises, ApiError will contain: :class:`dropbox.sharing.FileMemberActionError` """ - arg = sharing.UpdateFileMemberArgs(file, - member, - access_level) + arg = sharing.UpdateFileMemberArgs(file, member, access_level) r = self.request( sharing.update_file_member, - 'sharing', + "sharing", arg, None, ) return r - def sharing_update_file_policy(self, - file, - actions=None, - link_settings=None, - viewer_info_policy=None): + def sharing_update_file_policy( + self, file, actions=None, link_settings=None, viewer_info_policy=None + ): """ Update the viewer info policy of a file. @@ -6422,22 +6070,16 @@ def sharing_update_file_policy(self, If this raises, ApiError will contain: :class:`dropbox.sharing.UpdateFilePolicyError` """ - arg = sharing.UpdateFilePolicyArg(file, - actions, - link_settings, - viewer_info_policy) + arg = sharing.UpdateFilePolicyArg(file, actions, link_settings, viewer_info_policy) r = self.request( sharing.update_file_policy, - 'sharing', + "sharing", arg, None, ) return r - def sharing_update_folder_member(self, - shared_folder_id, - member, - access_level): + def sharing_update_folder_member(self, shared_folder_id, member, access_level): """ Allows an owner or editor of a shared folder to update another member's permissions. @@ -6459,25 +6101,25 @@ def sharing_update_folder_member(self, If this raises, ApiError will contain: :class:`dropbox.sharing.UpdateFolderMemberError` """ - arg = sharing.UpdateFolderMemberArg(shared_folder_id, - member, - access_level) + arg = sharing.UpdateFolderMemberArg(shared_folder_id, member, access_level) r = self.request( sharing.update_folder_member, - 'sharing', + "sharing", arg, None, ) return r - def sharing_update_folder_policy(self, - shared_folder_id, - member_policy=None, - acl_update_policy=None, - viewer_info_policy=None, - shared_link_policy=None, - link_settings=None, - actions=None): + def sharing_update_folder_policy( + self, + shared_folder_id, + member_policy=None, + acl_update_policy=None, + viewer_info_policy=None, + shared_link_policy=None, + link_settings=None, + actions=None, + ): """ Update the sharing policies for a shared folder. User must have ``AccessLevel.owner`` access to the shared folder to update its @@ -6514,16 +6156,18 @@ def sharing_update_folder_policy(self, If this raises, ApiError will contain: :class:`dropbox.sharing.UpdateFolderPolicyError` """ - arg = sharing.UpdateFolderPolicyArg(shared_folder_id, - member_policy, - acl_update_policy, - viewer_info_policy, - shared_link_policy, - link_settings, - actions) + arg = sharing.UpdateFolderPolicyArg( + shared_folder_id, + member_policy, + acl_update_policy, + viewer_info_policy, + shared_link_policy, + link_settings, + actions, + ) r = self.request( sharing.update_folder_policy, - 'sharing', + "sharing", arg, None, ) @@ -6538,8 +6182,7 @@ def sharing_update_folder_policy(self, # ------------------------------------------ # Routes in users namespace - def users_features_get_values(self, - features): + def users_features_get_values(self, features): """ Get a list of feature values that may be configured for the current account. @@ -6560,14 +6203,13 @@ def users_features_get_values(self, arg = users.UserFeaturesGetValuesBatchArg(features) r = self.request( users.features_get_values, - 'users', + "users", arg, None, ) return r - def users_get_account(self, - account_id): + def users_get_account(self, account_id): """ Get information about a user's account. @@ -6585,14 +6227,13 @@ def users_get_account(self, arg = users.GetAccountArg(account_id) r = self.request( users.get_account, - 'users', + "users", arg, None, ) return r - def users_get_account_batch(self, - account_ids): + def users_get_account_batch(self, account_ids): """ Get information about multiple user accounts. At most 300 accounts may be queried per request. @@ -6612,7 +6253,7 @@ def users_get_account_batch(self, arg = users.GetAccountBatchArg(account_ids) r = self.request( users.get_account_batch, - 'users', + "users", arg, None, ) @@ -6630,7 +6271,7 @@ def users_get_current_account(self): arg = None r = self.request( users.get_current_account, - 'users', + "users", arg, None, ) @@ -6648,9 +6289,8 @@ def users_get_space_usage(self): arg = None r = self.request( users.get_space_usage, - 'users', + "users", arg, None, ) return r - diff --git a/dropbox/base_team.py b/dropbox/base_team.py index bd8beb07..c82013e5 100644 --- a/dropbox/base_team.py +++ b/dropbox/base_team.py @@ -51,10 +51,7 @@ def request(self, route, namespace, request_arg, request_binary, timeout=None): # ------------------------------------------ # Routes in file_properties namespace - def file_properties_templates_add_for_team(self, - name, - description, - fields): + def file_properties_templates_add_for_team(self, name, description, fields): """ Add a template associated with a team. See :meth:`file_properties_properties_add` to add properties to a file or @@ -69,19 +66,16 @@ def file_properties_templates_add_for_team(self, If this raises, ApiError will contain: :class:`dropbox.file_properties.ModifyTemplateError` """ - arg = file_properties.AddTemplateArg(name, - description, - fields) + arg = file_properties.AddTemplateArg(name, description, fields) r = self.request( file_properties.templates_add_for_team, - 'file_properties', + "file_properties", arg, None, ) return r - def file_properties_templates_get_for_team(self, - template_id): + def file_properties_templates_get_for_team(self, template_id): """ Get the schema for a specified template. @@ -101,7 +95,7 @@ def file_properties_templates_get_for_team(self, arg = file_properties.GetTemplateArg(template_id) r = self.request( file_properties.templates_get_for_team, - 'file_properties', + "file_properties", arg, None, ) @@ -124,14 +118,13 @@ def file_properties_templates_list_for_team(self): arg = None r = self.request( file_properties.templates_list_for_team, - 'file_properties', + "file_properties", arg, None, ) return r - def file_properties_templates_remove_for_team(self, - template_id): + def file_properties_templates_remove_for_team(self, template_id): """ Permanently removes the specified template created from :meth:`file_properties_templates_add_for_user`. All properties @@ -154,17 +147,15 @@ def file_properties_templates_remove_for_team(self, arg = file_properties.RemoveTemplateArg(template_id) r = self.request( file_properties.templates_remove_for_team, - 'file_properties', + "file_properties", arg, None, ) return None - def file_properties_templates_update_for_team(self, - template_id, - name=None, - description=None, - add_fields=None): + def file_properties_templates_update_for_team( + self, template_id, name=None, description=None, add_fields=None + ): """ Update a template associated with a team. This route can update the template name, the template description and add optional properties to @@ -192,13 +183,10 @@ def file_properties_templates_update_for_team(self, If this raises, ApiError will contain: :class:`dropbox.file_properties.ModifyTemplateError` """ - arg = file_properties.UpdateTemplateArg(template_id, - name, - description, - add_fields) + arg = file_properties.UpdateTemplateArg(template_id, name, description, add_fields) r = self.request( file_properties.templates_update_for_team, - 'file_properties', + "file_properties", arg, None, ) @@ -225,11 +213,13 @@ def file_properties_templates_update_for_team(self, # ------------------------------------------ # Routes in team namespace - def team_devices_list_member_devices(self, - team_member_id, - include_web_sessions=True, - include_desktop_clients=True, - include_mobile_clients=True): + def team_devices_list_member_devices( + self, + team_member_id, + include_web_sessions=True, + include_desktop_clients=True, + include_mobile_clients=True, + ): """ List all device sessions of a team's member. @@ -253,23 +243,27 @@ def team_devices_list_member_devices(self, If this raises, ApiError will contain: :class:`dropbox.team.ListMemberDevicesError` """ - arg = team.ListMemberDevicesArg(team_member_id, - include_web_sessions, - include_desktop_clients, - include_mobile_clients) + arg = team.ListMemberDevicesArg( + team_member_id, + include_web_sessions, + include_desktop_clients, + include_mobile_clients, + ) r = self.request( team.devices_list_member_devices, - 'team', + "team", arg, None, ) return r - def team_devices_list_members_devices(self, - cursor=None, - include_web_sessions=True, - include_desktop_clients=True, - include_mobile_clients=True): + def team_devices_list_members_devices( + self, + cursor=None, + include_web_sessions=True, + include_desktop_clients=True, + include_mobile_clients=True, + ): """ List all device sessions of a team. Permission : Team member file access. @@ -298,23 +292,27 @@ def team_devices_list_members_devices(self, If this raises, ApiError will contain: :class:`dropbox.team.ListMembersDevicesError` """ - arg = team.ListMembersDevicesArg(cursor, - include_web_sessions, - include_desktop_clients, - include_mobile_clients) + arg = team.ListMembersDevicesArg( + cursor, + include_web_sessions, + include_desktop_clients, + include_mobile_clients, + ) r = self.request( team.devices_list_members_devices, - 'team', + "team", arg, None, ) return r - def team_devices_list_team_devices(self, - cursor=None, - include_web_sessions=True, - include_desktop_clients=True, - include_mobile_clients=True): + def team_devices_list_team_devices( + self, + cursor=None, + include_web_sessions=True, + include_desktop_clients=True, + include_mobile_clients=True, + ): """ List all device sessions of a team. Permission : Team member file access. @@ -344,23 +342,24 @@ def team_devices_list_team_devices(self, :class:`dropbox.team.ListTeamDevicesError` """ warnings.warn( - 'devices/list_team_devices is deprecated.', + "devices/list_team_devices is deprecated.", DeprecationWarning, ) - arg = team.ListTeamDevicesArg(cursor, - include_web_sessions, - include_desktop_clients, - include_mobile_clients) + arg = team.ListTeamDevicesArg( + cursor, + include_web_sessions, + include_desktop_clients, + include_mobile_clients, + ) r = self.request( team.devices_list_team_devices, - 'team', + "team", arg, None, ) return r - def team_devices_revoke_device_session(self, - arg): + def team_devices_revoke_device_session(self, arg): """ Revoke a device session of a team's member. @@ -376,14 +375,13 @@ def team_devices_revoke_device_session(self, """ r = self.request( team.devices_revoke_device_session, - 'team', + "team", arg, None, ) return None - def team_devices_revoke_device_session_batch(self, - revoke_devices): + def team_devices_revoke_device_session_batch(self, revoke_devices): """ Revoke a list of device sessions of team members. @@ -400,14 +398,13 @@ def team_devices_revoke_device_session_batch(self, arg = team.RevokeDeviceSessionBatchArg(revoke_devices) r = self.request( team.devices_revoke_device_session_batch, - 'team', + "team", arg, None, ) return r - def team_features_get_values(self, - features): + def team_features_get_values(self, features): """ Get the values for one or more features. This route allows you to check your account's capability for what feature you can access or what value @@ -429,7 +426,7 @@ def team_features_get_values(self, arg = team.FeaturesGetValuesBatchArg(features) r = self.request( team.features_get_values, - 'team', + "team", arg, None, ) @@ -447,17 +444,19 @@ def team_get_info(self): arg = None r = self.request( team.get_info, - 'team', + "team", arg, None, ) return r - def team_groups_create(self, - group_name, - add_creator_as_owner=False, - group_external_id=None, - group_management_type=None): + def team_groups_create( + self, + group_name, + add_creator_as_owner=False, + group_external_id=None, + group_management_type=None, + ): """ Creates a new, empty group, with a requested name. Permission : Team member management. @@ -481,20 +480,18 @@ def team_groups_create(self, If this raises, ApiError will contain: :class:`dropbox.team.GroupCreateError` """ - arg = team.GroupCreateArg(group_name, - add_creator_as_owner, - group_external_id, - group_management_type) + arg = team.GroupCreateArg( + group_name, add_creator_as_owner, group_external_id, group_management_type + ) r = self.request( team.groups_create, - 'team', + "team", arg, None, ) return r - def team_groups_delete(self, - arg): + def team_groups_delete(self, arg): """ Deletes a group. The group is deleted immediately. However the revoking of group-owned resources may take additional time. Use the @@ -515,14 +512,13 @@ def team_groups_delete(self, """ r = self.request( team.groups_delete, - 'team', + "team", arg, None, ) return r - def team_groups_get_info(self, - arg): + def team_groups_get_info(self, arg): """ Retrieves information about one or more groups. Note that the optional field ``GroupFullInfo.members`` is not returned for system-managed @@ -542,14 +538,13 @@ def team_groups_get_info(self, """ r = self.request( team.groups_get_info, - 'team', + "team", arg, None, ) return r - def team_groups_job_status_get(self, - async_job_id): + def team_groups_job_status_get(self, async_job_id): """ Once an async_job_id is returned from :meth:`team_groups_delete`, :meth:`team_groups_members_add` , or :meth:`team_groups_members_remove` @@ -571,14 +566,13 @@ def team_groups_job_status_get(self, arg = async_.PollArg(async_job_id) r = self.request( team.groups_job_status_get, - 'team', + "team", arg, None, ) return r - def team_groups_list(self, - limit=1000): + def team_groups_list(self, limit=1000): """ Lists groups on a team. Permission : Team Information. @@ -592,14 +586,13 @@ def team_groups_list(self, arg = team.GroupsListArg(limit) r = self.request( team.groups_list, - 'team', + "team", arg, None, ) return r - def team_groups_list_continue(self, - cursor): + def team_groups_list_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`team_groups_list`, use this to paginate through all groups. Permission : Team Information. @@ -618,16 +611,13 @@ def team_groups_list_continue(self, arg = team.GroupsListContinueArg(cursor) r = self.request( team.groups_list_continue, - 'team', + "team", arg, None, ) return r - def team_groups_members_add(self, - group, - members, - return_members=True): + def team_groups_members_add(self, group, members, return_members=True): """ Adds members to a group. The members are added immediately. However the granting of group-owned resources may take additional time. Use the @@ -647,20 +637,16 @@ def team_groups_members_add(self, If this raises, ApiError will contain: :class:`dropbox.team.GroupMembersAddError` """ - arg = team.GroupMembersAddArg(group, - members, - return_members) + arg = team.GroupMembersAddArg(group, members, return_members) r = self.request( team.groups_members_add, - 'team', + "team", arg, None, ) return r - def team_groups_members_list(self, - group, - limit=1000): + def team_groups_members_list(self, group, limit=1000): """ Lists members of a group. Permission : Team Information. @@ -677,18 +663,16 @@ def team_groups_members_list(self, If this raises, ApiError will contain: :class:`dropbox.team.GroupSelectorError` """ - arg = team.GroupsMembersListArg(group, - limit) + arg = team.GroupsMembersListArg(group, limit) r = self.request( team.groups_members_list, - 'team', + "team", arg, None, ) return r - def team_groups_members_list_continue(self, - cursor): + def team_groups_members_list_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`team_groups_members_list`, use this to paginate through all members of the group. Permission : Team @@ -708,16 +692,13 @@ def team_groups_members_list_continue(self, arg = team.GroupsMembersListContinueArg(cursor) r = self.request( team.groups_members_list_continue, - 'team', + "team", arg, None, ) return r - def team_groups_members_remove(self, - group, - users, - return_members=True): + def team_groups_members_remove(self, group, users, return_members=True): """ Removes members from a group. The members are removed immediately. However the revoking of group-owned resources may take additional time. @@ -739,22 +720,16 @@ def team_groups_members_remove(self, If this raises, ApiError will contain: :class:`dropbox.team.GroupMembersRemoveError` """ - arg = team.GroupMembersRemoveArg(group, - users, - return_members) + arg = team.GroupMembersRemoveArg(group, users, return_members) r = self.request( team.groups_members_remove, - 'team', + "team", arg, None, ) return r - def team_groups_members_set_access_type(self, - group, - user, - access_type, - return_members=True): + def team_groups_members_set_access_type(self, group, user, access_type, return_members=True): """ Sets a member's access type in a group. Permission : Team member management. @@ -775,24 +750,23 @@ def team_groups_members_set_access_type(self, If this raises, ApiError will contain: :class:`dropbox.team.GroupMemberSetAccessTypeError` """ - arg = team.GroupMembersSetAccessTypeArg(group, - user, - access_type, - return_members) + arg = team.GroupMembersSetAccessTypeArg(group, user, access_type, return_members) r = self.request( team.groups_members_set_access_type, - 'team', + "team", arg, None, ) return r - def team_groups_update(self, - group, - return_members=True, - new_group_name=None, - new_group_external_id=None, - new_group_management_type=None): + def team_groups_update( + self, + group, + return_members=True, + new_group_name=None, + new_group_external_id=None, + new_group_management_type=None, + ): """ Updates a group's name and/or external ID. Permission : Team member management. @@ -819,25 +793,24 @@ def team_groups_update(self, If this raises, ApiError will contain: :class:`dropbox.team.GroupUpdateError` """ - arg = team.GroupUpdateArgs(group, - return_members, - new_group_name, - new_group_external_id, - new_group_management_type) + arg = team.GroupUpdateArgs( + group, + return_members, + new_group_name, + new_group_external_id, + new_group_management_type, + ) r = self.request( team.groups_update, - 'team', + "team", arg, None, ) return r - def team_legal_holds_create_policy(self, - name, - members, - description=None, - start_date=None, - end_date=None): + def team_legal_holds_create_policy( + self, name, members, description=None, start_date=None, end_date=None + ): """ Creates new legal hold policy. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -861,21 +834,16 @@ def team_legal_holds_create_policy(self, If this raises, ApiError will contain: :class:`dropbox.team.LegalHoldsPolicyCreateError` """ - arg = team.LegalHoldsPolicyCreateArg(name, - members, - description, - start_date, - end_date) + arg = team.LegalHoldsPolicyCreateArg(name, members, description, start_date, end_date) r = self.request( team.legal_holds_create_policy, - 'team', + "team", arg, None, ) return r - def team_legal_holds_get_policy(self, - id): + def team_legal_holds_get_policy(self, id): """ Gets a legal hold by Id. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -894,14 +862,13 @@ def team_legal_holds_get_policy(self, arg = team.LegalHoldsGetPolicyArg(id) r = self.request( team.legal_holds_get_policy, - 'team', + "team", arg, None, ) return r - def team_legal_holds_list_held_revisions(self, - id): + def team_legal_holds_list_held_revisions(self, id): """ List the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member @@ -921,15 +888,13 @@ def team_legal_holds_list_held_revisions(self, arg = team.LegalHoldsListHeldRevisionsArg(id) r = self.request( team.legal_holds_list_held_revisions, - 'team', + "team", arg, None, ) return r - def team_legal_holds_list_held_revisions_continue(self, - id, - cursor=None): + def team_legal_holds_list_held_revisions_continue(self, id, cursor=None): """ Continue listing the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : @@ -950,18 +915,16 @@ def team_legal_holds_list_held_revisions_continue(self, If this raises, ApiError will contain: :class:`dropbox.team.LegalHoldsListHeldRevisionsError` """ - arg = team.LegalHoldsListHeldRevisionsContinueArg(id, - cursor) + arg = team.LegalHoldsListHeldRevisionsContinueArg(id, cursor) r = self.request( team.legal_holds_list_held_revisions_continue, - 'team', + "team", arg, None, ) return r - def team_legal_holds_list_policies(self, - include_released=False): + def team_legal_holds_list_policies(self, include_released=False): """ Lists legal holds on a team. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -980,14 +943,13 @@ def team_legal_holds_list_policies(self, arg = team.LegalHoldsListPoliciesArg(include_released) r = self.request( team.legal_holds_list_policies, - 'team', + "team", arg, None, ) return r - def team_legal_holds_release_policy(self, - id): + def team_legal_holds_release_policy(self, id): """ Releases a legal hold by Id. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -1006,17 +968,13 @@ def team_legal_holds_release_policy(self, arg = team.LegalHoldsPolicyReleaseArg(id) r = self.request( team.legal_holds_release_policy, - 'team', + "team", arg, None, ) return None - def team_legal_holds_update_policy(self, - id, - name=None, - description=None, - members=None): + def team_legal_holds_update_policy(self, id, name=None, description=None, members=None): """ Updates a legal hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member file access. @@ -1038,20 +996,16 @@ def team_legal_holds_update_policy(self, If this raises, ApiError will contain: :class:`dropbox.team.LegalHoldsPolicyUpdateError` """ - arg = team.LegalHoldsPolicyUpdateArg(id, - name, - description, - members) + arg = team.LegalHoldsPolicyUpdateArg(id, name, description, members) r = self.request( team.legal_holds_update_policy, - 'team', + "team", arg, None, ) return r - def team_linked_apps_list_member_linked_apps(self, - team_member_id): + def team_linked_apps_list_member_linked_apps(self, team_member_id): """ List all linked applications of the team member. Note, this endpoint does not list any team-linked applications. @@ -1070,14 +1024,13 @@ def team_linked_apps_list_member_linked_apps(self, arg = team.ListMemberAppsArg(team_member_id) r = self.request( team.linked_apps_list_member_linked_apps, - 'team', + "team", arg, None, ) return r - def team_linked_apps_list_members_linked_apps(self, - cursor=None): + def team_linked_apps_list_members_linked_apps(self, cursor=None): """ List all applications linked to the team members' accounts. Note, this endpoint does not list any team-linked applications. @@ -1100,14 +1053,13 @@ def team_linked_apps_list_members_linked_apps(self, arg = team.ListMembersAppsArg(cursor) r = self.request( team.linked_apps_list_members_linked_apps, - 'team', + "team", arg, None, ) return r - def team_linked_apps_list_team_linked_apps(self, - cursor=None): + def team_linked_apps_list_team_linked_apps(self, cursor=None): """ List all applications linked to the team members' accounts. Note, this endpoint doesn't list any team-linked applications. @@ -1128,22 +1080,19 @@ def team_linked_apps_list_team_linked_apps(self, :class:`dropbox.team.ListTeamAppsError` """ warnings.warn( - 'linked_apps/list_team_linked_apps is deprecated.', + "linked_apps/list_team_linked_apps is deprecated.", DeprecationWarning, ) arg = team.ListTeamAppsArg(cursor) r = self.request( team.linked_apps_list_team_linked_apps, - 'team', + "team", arg, None, ) return r - def team_linked_apps_revoke_linked_app(self, - app_id, - team_member_id, - keep_app_folder=True): + def team_linked_apps_revoke_linked_app(self, app_id, team_member_id, keep_app_folder=True): """ Revoke a linked application of the team member. @@ -1164,19 +1113,16 @@ def team_linked_apps_revoke_linked_app(self, If this raises, ApiError will contain: :class:`dropbox.team.RevokeLinkedAppError` """ - arg = team.RevokeLinkedApiAppArg(app_id, - team_member_id, - keep_app_folder) + arg = team.RevokeLinkedApiAppArg(app_id, team_member_id, keep_app_folder) r = self.request( team.linked_apps_revoke_linked_app, - 'team', + "team", arg, None, ) return None - def team_linked_apps_revoke_linked_app_batch(self, - revoke_linked_app): + def team_linked_apps_revoke_linked_app_batch(self, revoke_linked_app): """ Revoke a list of linked applications of the team members. @@ -1193,14 +1139,13 @@ def team_linked_apps_revoke_linked_app_batch(self, arg = team.RevokeLinkedApiAppBatchArg(revoke_linked_app) r = self.request( team.linked_apps_revoke_linked_app_batch, - 'team', + "team", arg, None, ) return r - def team_member_space_limits_excluded_users_add(self, - users=None): + def team_member_space_limits_excluded_users_add(self, users=None): """ Add users to member space limits excluded users list. @@ -1218,14 +1163,13 @@ def team_member_space_limits_excluded_users_add(self, arg = team.ExcludedUsersUpdateArg(users) r = self.request( team.member_space_limits_excluded_users_add, - 'team', + "team", arg, None, ) return r - def team_member_space_limits_excluded_users_list(self, - limit=1000): + def team_member_space_limits_excluded_users_list(self, limit=1000): """ List member space limits excluded users. @@ -1243,14 +1187,13 @@ def team_member_space_limits_excluded_users_list(self, arg = team.ExcludedUsersListArg(limit) r = self.request( team.member_space_limits_excluded_users_list, - 'team', + "team", arg, None, ) return r - def team_member_space_limits_excluded_users_list_continue(self, - cursor): + def team_member_space_limits_excluded_users_list_continue(self, cursor): """ Continue listing member space limits excluded users. @@ -1268,14 +1211,13 @@ def team_member_space_limits_excluded_users_list_continue(self, arg = team.ExcludedUsersListContinueArg(cursor) r = self.request( team.member_space_limits_excluded_users_list_continue, - 'team', + "team", arg, None, ) return r - def team_member_space_limits_excluded_users_remove(self, - users=None): + def team_member_space_limits_excluded_users_remove(self, users=None): """ Remove users from member space limits excluded users list. @@ -1293,14 +1235,13 @@ def team_member_space_limits_excluded_users_remove(self, arg = team.ExcludedUsersUpdateArg(users) r = self.request( team.member_space_limits_excluded_users_remove, - 'team', + "team", arg, None, ) return r - def team_member_space_limits_get_custom_quota(self, - users): + def team_member_space_limits_get_custom_quota(self, users): """ Get users custom quota. A maximum of 1000 members can be specified in a single call. Note: to apply a custom space limit, a team admin needs to @@ -1321,14 +1262,13 @@ def team_member_space_limits_get_custom_quota(self, arg = team.CustomQuotaUsersArg(users) r = self.request( team.member_space_limits_get_custom_quota, - 'team', + "team", arg, None, ) return r - def team_member_space_limits_remove_custom_quota(self, - users): + def team_member_space_limits_remove_custom_quota(self, users): """ Remove users custom quota. A maximum of 1000 members can be specified in a single call. Note: to apply a custom space limit, a team admin needs @@ -1350,14 +1290,13 @@ def team_member_space_limits_remove_custom_quota(self, arg = team.CustomQuotaUsersArg(users) r = self.request( team.member_space_limits_remove_custom_quota, - 'team', + "team", arg, None, ) return r - def team_member_space_limits_set_custom_quota(self, - users_and_quotas): + def team_member_space_limits_set_custom_quota(self, users_and_quotas): """ Set users custom quota. Custom quota has to be at least 2GB. A maximum of 1000 members can be specified in a single call. Note: to apply a @@ -1379,15 +1318,13 @@ def team_member_space_limits_set_custom_quota(self, arg = team.SetCustomQuotaArg(users_and_quotas) r = self.request( team.member_space_limits_set_custom_quota, - 'team', + "team", arg, None, ) return r - def team_members_add(self, - new_members, - force_async=False): + def team_members_add(self, new_members, force_async=False): """ Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single call. If no Dropbox account @@ -1408,19 +1345,16 @@ def team_members_add(self, :type new_members: List[:class:`dropbox.team.MemberAddArg`] :rtype: :class:`dropbox.team.MembersAddLaunch` """ - arg = team.MembersAddArg(new_members, - force_async) + arg = team.MembersAddArg(new_members, force_async) r = self.request( team.members_add, - 'team', + "team", arg, None, ) return r - def team_members_add_v2(self, - new_members, - force_async=False): + def team_members_add_v2(self, new_members, force_async=False): """ Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single call. If no Dropbox account @@ -1438,18 +1372,16 @@ def team_members_add_v2(self, :type new_members: List[:class:`dropbox.team.MemberAddV2Arg`] :rtype: :class:`dropbox.team.MembersAddLaunchV2Result` """ - arg = team.MembersAddV2Arg(new_members, - force_async) + arg = team.MembersAddV2Arg(new_members, force_async) r = self.request( team.members_add_v2, - 'team', + "team", arg, None, ) return r - def team_members_add_job_status_get(self, - async_job_id): + def team_members_add_job_status_get(self, async_job_id): """ Once an async_job_id is returned from :meth:`team_members_add` , use this to poll the status of the asynchronous request. Permission : Team @@ -1470,14 +1402,13 @@ def team_members_add_job_status_get(self, arg = async_.PollArg(async_job_id) r = self.request( team.members_add_job_status_get, - 'team', + "team", arg, None, ) return r - def team_members_add_job_status_get_v2(self, - async_job_id): + def team_members_add_job_status_get_v2(self, async_job_id): """ Once an async_job_id is returned from :meth:`team_members_add_v2` , use this to poll the status of the asynchronous request. Permission : Team @@ -1498,14 +1429,13 @@ def team_members_add_job_status_get_v2(self, arg = async_.PollArg(async_job_id) r = self.request( team.members_add_job_status_get_v2, - 'team', + "team", arg, None, ) return r - def team_members_delete_former_member_files(self, - user): + def team_members_delete_former_member_files(self, user): """ Permanently delete the files of a user who has been removed from the team. After permanent deletion, those files will not be available to be @@ -1527,14 +1457,13 @@ def team_members_delete_former_member_files(self, arg = team.MembersFormerMemberArg(user) r = self.request( team.members_delete_former_member_files, - 'team', + "team", arg, None, ) return None - def team_members_delete_profile_photo(self, - user): + def team_members_delete_profile_photo(self, user): """ Deletes a team member's profile photo. Permission : Team member management. @@ -1553,14 +1482,13 @@ def team_members_delete_profile_photo(self, arg = team.MembersDeleteProfilePhotoArg(user) r = self.request( team.members_delete_profile_photo, - 'team', + "team", arg, None, ) return r - def team_members_delete_profile_photo_v2(self, - user): + def team_members_delete_profile_photo_v2(self, user): """ Deletes a team member's profile photo. Permission : Team member management. @@ -1579,7 +1507,7 @@ def team_members_delete_profile_photo_v2(self, arg = team.MembersDeleteProfilePhotoArg(user) r = self.request( team.members_delete_profile_photo_v2, - 'team', + "team", arg, None, ) @@ -1599,14 +1527,13 @@ def team_members_get_available_team_member_roles(self): arg = None r = self.request( team.members_get_available_team_member_roles, - 'team', + "team", arg, None, ) return r - def team_members_get_info(self, - members): + def team_members_get_info(self, members): """ Returns information about multiple team members. Permission : Team information This endpoint will return @@ -1627,14 +1554,13 @@ def team_members_get_info(self, arg = team.MembersGetInfoArgs(members) r = self.request( team.members_get_info, - 'team', + "team", arg, None, ) return r - def team_members_get_info_v2(self, - members): + def team_members_get_info_v2(self, members): """ Returns information about multiple team members. Permission : Team information This endpoint will return @@ -1655,15 +1581,13 @@ def team_members_get_info_v2(self, arg = team.MembersGetInfoV2Arg(members) r = self.request( team.members_get_info_v2, - 'team', + "team", arg, None, ) return r - def team_members_list(self, - limit=1000, - include_removed=False): + def team_members_list(self, limit=1000, include_removed=False): """ Lists members of a team. Permission : Team information. @@ -1680,19 +1604,16 @@ def team_members_list(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersListError` """ - arg = team.MembersListArg(limit, - include_removed) + arg = team.MembersListArg(limit, include_removed) r = self.request( team.members_list, - 'team', + "team", arg, None, ) return r - def team_members_list_v2(self, - limit=1000, - include_removed=False): + def team_members_list_v2(self, limit=1000, include_removed=False): """ Lists members of a team. Permission : Team information. @@ -1709,18 +1630,16 @@ def team_members_list_v2(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersListError` """ - arg = team.MembersListArg(limit, - include_removed) + arg = team.MembersListArg(limit, include_removed) r = self.request( team.members_list_v2, - 'team', + "team", arg, None, ) return r - def team_members_list_continue(self, - cursor): + def team_members_list_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`team_members_list`, use this to paginate through all team members. Permission : Team @@ -1740,14 +1659,13 @@ def team_members_list_continue(self, arg = team.MembersListContinueArg(cursor) r = self.request( team.members_list_continue, - 'team', + "team", arg, None, ) return r - def team_members_list_continue_v2(self, - cursor): + def team_members_list_continue_v2(self, cursor): """ Once a cursor has been retrieved from :meth:`team_members_list_v2`, use this to paginate through all team members. Permission : Team @@ -1767,16 +1685,13 @@ def team_members_list_continue_v2(self, arg = team.MembersListContinueArg(cursor) r = self.request( team.members_list_continue_v2, - 'team', + "team", arg, None, ) return r - def team_members_move_former_member_files(self, - user, - transfer_dest_id, - transfer_admin_id): + def team_members_move_former_member_files(self, user, transfer_dest_id, transfer_admin_id): """ Moves removed member's files to a different member. This endpoint initiates an asynchronous job. To obtain the final result of the job, @@ -1799,19 +1714,16 @@ def team_members_move_former_member_files(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersTransferFormerMembersFilesError` """ - arg = team.MembersDataTransferArg(user, - transfer_dest_id, - transfer_admin_id) + arg = team.MembersDataTransferArg(user, transfer_dest_id, transfer_admin_id) r = self.request( team.members_move_former_member_files, - 'team', + "team", arg, None, ) return r - def team_members_move_former_member_files_job_status_check(self, - async_job_id): + def team_members_move_former_member_files_job_status_check(self, async_job_id): """ Once an async_job_id is returned from :meth:`team_members_move_former_member_files` , use this to poll the @@ -1832,14 +1744,13 @@ def team_members_move_former_member_files_job_status_check(self, arg = async_.PollArg(async_job_id) r = self.request( team.members_move_former_member_files_job_status_check, - 'team', + "team", arg, None, ) return r - def team_members_recover(self, - user): + def team_members_recover(self, user): """ Recover a deleted member. Permission : Team member management Exactly one of team_member_id, email, or external_id must be provided to @@ -1859,20 +1770,22 @@ def team_members_recover(self, arg = team.MembersRecoverArg(user) r = self.request( team.members_recover, - 'team', + "team", arg, None, ) return None - def team_members_remove(self, - user, - wipe_data=True, - transfer_dest_id=None, - transfer_admin_id=None, - keep_account=False, - retain_team_shares=False, - permanently_delete_files=False): + def team_members_remove( + self, + user, + wipe_data=True, + transfer_dest_id=None, + transfer_admin_id=None, + keep_account=False, + retain_team_shares=False, + permanently_delete_files=False, + ): """ Removes a member from a team. Permission : Team member management Exactly one of team_member_id, email, or external_id must be provided to @@ -1924,23 +1837,24 @@ def team_members_remove(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersRemoveError` """ - arg = team.MembersRemoveArg(user, - wipe_data, - transfer_dest_id, - transfer_admin_id, - keep_account, - retain_team_shares, - permanently_delete_files) + arg = team.MembersRemoveArg( + user, + wipe_data, + transfer_dest_id, + transfer_admin_id, + keep_account, + retain_team_shares, + permanently_delete_files, + ) r = self.request( team.members_remove, - 'team', + "team", arg, None, ) return r - def team_members_remove_job_status_get(self, - async_job_id): + def team_members_remove_job_status_get(self, async_job_id): """ Once an async_job_id is returned from :meth:`team_members_remove` , use this to poll the status of the asynchronous request. Permission : Team @@ -1961,14 +1875,13 @@ def team_members_remove_job_status_get(self, arg = async_.PollArg(async_job_id) r = self.request( team.members_remove_job_status_get, - 'team', + "team", arg, None, ) return r - def team_members_secondary_emails_add(self, - new_secondary_emails): + def team_members_secondary_emails_add(self, new_secondary_emails): """ Add secondary emails to users. Permission : Team member management. Emails that are on verified domains will be verified automatically. For @@ -1989,14 +1902,13 @@ def team_members_secondary_emails_add(self, arg = team.AddSecondaryEmailsArg(new_secondary_emails) r = self.request( team.members_secondary_emails_add, - 'team', + "team", arg, None, ) return r - def team_members_secondary_emails_delete(self, - emails_to_delete): + def team_members_secondary_emails_delete(self, emails_to_delete): """ Delete secondary emails from users Permission : Team member management. Users will be notified of deletions of verified secondary emails at both @@ -2013,14 +1925,13 @@ def team_members_secondary_emails_delete(self, arg = team.DeleteSecondaryEmailsArg(emails_to_delete) r = self.request( team.members_secondary_emails_delete, - 'team', + "team", arg, None, ) return r - def team_members_secondary_emails_resend_verification_emails(self, - emails_to_resend): + def team_members_secondary_emails_resend_verification_emails(self, emails_to_resend): """ Resend secondary email verification emails. Permission : Team member management. @@ -2036,14 +1947,13 @@ def team_members_secondary_emails_resend_verification_emails(self, arg = team.ResendVerificationEmailArg(emails_to_resend) r = self.request( team.members_secondary_emails_resend_verification_emails, - 'team', + "team", arg, None, ) return r - def team_members_send_welcome_email(self, - arg): + def team_members_send_welcome_email(self, arg): """ Sends welcome email to pending team member. Permission : Team member management Exactly one of team_member_id, email, or external_id must be @@ -2064,15 +1974,13 @@ def team_members_send_welcome_email(self, """ r = self.request( team.members_send_welcome_email, - 'team', + "team", arg, None, ) return None - def team_members_set_admin_permissions(self, - user, - new_role): + def team_members_set_admin_permissions(self, user, new_role): """ Updates a team member's permissions. Permission : Team member management. @@ -2090,19 +1998,16 @@ def team_members_set_admin_permissions(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersSetPermissionsError` """ - arg = team.MembersSetPermissionsArg(user, - new_role) + arg = team.MembersSetPermissionsArg(user, new_role) r = self.request( team.members_set_admin_permissions, - 'team', + "team", arg, None, ) return r - def team_members_set_admin_permissions_v2(self, - user, - new_roles=None): + def team_members_set_admin_permissions_v2(self, user, new_roles=None): """ Updates a team member's permissions. Permission : Team member management. @@ -2121,24 +2026,25 @@ def team_members_set_admin_permissions_v2(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersSetPermissions2Error` """ - arg = team.MembersSetPermissions2Arg(user, - new_roles) + arg = team.MembersSetPermissions2Arg(user, new_roles) r = self.request( team.members_set_admin_permissions_v2, - 'team', + "team", arg, None, ) return r - def team_members_set_profile(self, - user, - new_email=None, - new_external_id=None, - new_given_name=None, - new_surname=None, - new_persistent_id=None, - new_is_directory_restricted=None): + def team_members_set_profile( + self, + user, + new_email=None, + new_external_id=None, + new_given_name=None, + new_surname=None, + new_persistent_id=None, + new_is_directory_restricted=None, + ): """ Updates a team member's profile. Permission : Team member management. @@ -2167,29 +2073,33 @@ def team_members_set_profile(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersSetProfileError` """ - arg = team.MembersSetProfileArg(user, - new_email, - new_external_id, - new_given_name, - new_surname, - new_persistent_id, - new_is_directory_restricted) + arg = team.MembersSetProfileArg( + user, + new_email, + new_external_id, + new_given_name, + new_surname, + new_persistent_id, + new_is_directory_restricted, + ) r = self.request( team.members_set_profile, - 'team', + "team", arg, None, ) return r - def team_members_set_profile_v2(self, - user, - new_email=None, - new_external_id=None, - new_given_name=None, - new_surname=None, - new_persistent_id=None, - new_is_directory_restricted=None): + def team_members_set_profile_v2( + self, + user, + new_email=None, + new_external_id=None, + new_given_name=None, + new_surname=None, + new_persistent_id=None, + new_is_directory_restricted=None, + ): """ Updates a team member's profile. Permission : Team member management. @@ -2218,24 +2128,24 @@ def team_members_set_profile_v2(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersSetProfileError` """ - arg = team.MembersSetProfileArg(user, - new_email, - new_external_id, - new_given_name, - new_surname, - new_persistent_id, - new_is_directory_restricted) + arg = team.MembersSetProfileArg( + user, + new_email, + new_external_id, + new_given_name, + new_surname, + new_persistent_id, + new_is_directory_restricted, + ) r = self.request( team.members_set_profile_v2, - 'team', + "team", arg, None, ) return r - def team_members_set_profile_photo(self, - user, - photo): + def team_members_set_profile_photo(self, user, photo): """ Updates a team member's profile photo. Permission : Team member management. @@ -2253,19 +2163,16 @@ def team_members_set_profile_photo(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersSetProfilePhotoError` """ - arg = team.MembersSetProfilePhotoArg(user, - photo) + arg = team.MembersSetProfilePhotoArg(user, photo) r = self.request( team.members_set_profile_photo, - 'team', + "team", arg, None, ) return r - def team_members_set_profile_photo_v2(self, - user, - photo): + def team_members_set_profile_photo_v2(self, user, photo): """ Updates a team member's profile photo. Permission : Team member management. @@ -2283,19 +2190,16 @@ def team_members_set_profile_photo_v2(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersSetProfilePhotoError` """ - arg = team.MembersSetProfilePhotoArg(user, - photo) + arg = team.MembersSetProfilePhotoArg(user, photo) r = self.request( team.members_set_profile_photo_v2, - 'team', + "team", arg, None, ) return r - def team_members_suspend(self, - user, - wipe_data=True): + def team_members_suspend(self, user, wipe_data=True): """ Suspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or external_id must be provided to @@ -2313,18 +2217,16 @@ def team_members_suspend(self, If this raises, ApiError will contain: :class:`dropbox.team.MembersSuspendError` """ - arg = team.MembersDeactivateArg(user, - wipe_data) + arg = team.MembersDeactivateArg(user, wipe_data) r = self.request( team.members_suspend, - 'team', + "team", arg, None, ) return None - def team_members_unsuspend(self, - user): + def team_members_unsuspend(self, user): """ Unsuspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or external_id must be provided to @@ -2344,14 +2246,13 @@ def team_members_unsuspend(self, arg = team.MembersUnsuspendArg(user) r = self.request( team.members_unsuspend, - 'team', + "team", arg, None, ) return None - def team_namespaces_list(self, - limit=1000): + def team_namespaces_list(self, limit=1000): """ Returns a list of all team-accessible namespaces. This list includes team folders, shared folders containing team members, team members' home @@ -2375,14 +2276,13 @@ def team_namespaces_list(self, arg = team.TeamNamespacesListArg(limit) r = self.request( team.namespaces_list, - 'team', + "team", arg, None, ) return r - def team_namespaces_list_continue(self, - cursor): + def team_namespaces_list_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`team_namespaces_list`, use this to paginate through all team-accessible namespaces. Duplicates may @@ -2403,16 +2303,13 @@ def team_namespaces_list_continue(self, arg = team.TeamNamespacesListContinueArg(cursor) r = self.request( team.namespaces_list_continue, - 'team', + "team", arg, None, ) return r - def team_properties_template_add(self, - name, - description, - fields): + def team_properties_template_add(self, name, description, fields): """ Permission : Team member file access. @@ -2426,22 +2323,19 @@ def team_properties_template_add(self, :class:`dropbox.file_properties.ModifyTemplateError` """ warnings.warn( - 'properties/template/add is deprecated.', + "properties/template/add is deprecated.", DeprecationWarning, ) - arg = file_properties.AddTemplateArg(name, - description, - fields) + arg = file_properties.AddTemplateArg(name, description, fields) r = self.request( team.properties_template_add, - 'team', + "team", arg, None, ) return r - def team_properties_template_get(self, - template_id): + def team_properties_template_get(self, template_id): """ Permission : Team member file access. The scope for the route is files.team_metadata.write. @@ -2460,21 +2354,19 @@ def team_properties_template_get(self, :class:`dropbox.file_properties.TemplateError` """ warnings.warn( - 'properties/template/get is deprecated.', + "properties/template/get is deprecated.", DeprecationWarning, ) arg = file_properties.GetTemplateArg(template_id) r = self.request( team.properties_template_get, - 'team', + "team", arg, None, ) return r - def team_reports_get_activity(self, - start_date=None, - end_date=None): + def team_reports_get_activity(self, start_date=None, end_date=None): """ Retrieves reporting data about a team's user activity. Deprecated: Will be removed on July 1st 2021. @@ -2494,22 +2386,19 @@ def team_reports_get_activity(self, :class:`dropbox.team.DateRangeError` """ warnings.warn( - 'reports/get_activity is deprecated.', + "reports/get_activity is deprecated.", DeprecationWarning, ) - arg = team.DateRange(start_date, - end_date) + arg = team.DateRange(start_date, end_date) r = self.request( team.reports_get_activity, - 'team', + "team", arg, None, ) return r - def team_reports_get_devices(self, - start_date=None, - end_date=None): + def team_reports_get_devices(self, start_date=None, end_date=None): """ Retrieves reporting data about a team's linked devices. Deprecated: Will be removed on July 1st 2021. @@ -2529,22 +2418,19 @@ def team_reports_get_devices(self, :class:`dropbox.team.DateRangeError` """ warnings.warn( - 'reports/get_devices is deprecated.', + "reports/get_devices is deprecated.", DeprecationWarning, ) - arg = team.DateRange(start_date, - end_date) + arg = team.DateRange(start_date, end_date) r = self.request( team.reports_get_devices, - 'team', + "team", arg, None, ) return r - def team_reports_get_membership(self, - start_date=None, - end_date=None): + def team_reports_get_membership(self, start_date=None, end_date=None): """ Retrieves reporting data about a team's membership. Deprecated: Will be removed on July 1st 2021. @@ -2564,22 +2450,19 @@ def team_reports_get_membership(self, :class:`dropbox.team.DateRangeError` """ warnings.warn( - 'reports/get_membership is deprecated.', + "reports/get_membership is deprecated.", DeprecationWarning, ) - arg = team.DateRange(start_date, - end_date) + arg = team.DateRange(start_date, end_date) r = self.request( team.reports_get_membership, - 'team', + "team", arg, None, ) return r - def team_reports_get_storage(self, - start_date=None, - end_date=None): + def team_reports_get_storage(self, start_date=None, end_date=None): """ Retrieves reporting data about a team's storage usage. Deprecated: Will be removed on July 1st 2021. @@ -2599,22 +2482,19 @@ def team_reports_get_storage(self, :class:`dropbox.team.DateRangeError` """ warnings.warn( - 'reports/get_storage is deprecated.', + "reports/get_storage is deprecated.", DeprecationWarning, ) - arg = team.DateRange(start_date, - end_date) + arg = team.DateRange(start_date, end_date) r = self.request( team.reports_get_storage, - 'team', + "team", arg, None, ) return r - def team_sharing_allowlist_add(self, - domains=None, - emails=None): + def team_sharing_allowlist_add(self, domains=None, emails=None): """ Endpoint adds Approve List entries. Changes are effective immediately. Changes are committed in transaction. In case of single validation error @@ -2637,18 +2517,16 @@ def team_sharing_allowlist_add(self, If this raises, ApiError will contain: :class:`dropbox.team.SharingAllowlistAddError` """ - arg = team.SharingAllowlistAddArgs(domains, - emails) + arg = team.SharingAllowlistAddArgs(domains, emails) r = self.request( team.sharing_allowlist_add, - 'team', + "team", arg, None, ) return r - def team_sharing_allowlist_list(self, - limit=1000): + def team_sharing_allowlist_list(self, limit=1000): """ Lists Approve List entries for given team, from newest to oldest, returning up to `limit` entries at a time. If there are more than @@ -2666,14 +2544,13 @@ def team_sharing_allowlist_list(self, arg = team.SharingAllowlistListArg(limit) r = self.request( team.sharing_allowlist_list, - 'team', + "team", arg, None, ) return r - def team_sharing_allowlist_list_continue(self, - cursor): + def team_sharing_allowlist_list_continue(self, cursor): """ Lists entries associated with given team, starting from a the cursor. See :meth:`team_sharing_allowlist_list`. @@ -2694,15 +2571,13 @@ def team_sharing_allowlist_list_continue(self, arg = team.SharingAllowlistListContinueArg(cursor) r = self.request( team.sharing_allowlist_list_continue, - 'team', + "team", arg, None, ) return r - def team_sharing_allowlist_remove(self, - domains=None, - emails=None): + def team_sharing_allowlist_remove(self, domains=None, emails=None): """ Endpoint removes Approve List entries. Changes are effective immediately. Changes are committed in transaction. In case of single @@ -2725,18 +2600,16 @@ def team_sharing_allowlist_remove(self, If this raises, ApiError will contain: :class:`dropbox.team.SharingAllowlistRemoveError` """ - arg = team.SharingAllowlistRemoveArgs(domains, - emails) + arg = team.SharingAllowlistRemoveArgs(domains, emails) r = self.request( team.sharing_allowlist_remove, - 'team', + "team", arg, None, ) return r - def team_team_folder_activate(self, - team_folder_id): + def team_team_folder_activate(self, team_folder_id): """ Sets an archived team folder's status to active. Permission : Team member file access. @@ -2751,15 +2624,13 @@ def team_team_folder_activate(self, arg = team.TeamFolderIdArg(team_folder_id) r = self.request( team.team_folder_activate, - 'team', + "team", arg, None, ) return r - def team_team_folder_archive(self, - team_folder_id, - force_async_off=False): + def team_team_folder_archive(self, team_folder_id, force_async_off=False): """ Sets an active team folder's status to archived and removes all folder and file members. This endpoint cannot be used for teams that have a @@ -2776,18 +2647,16 @@ def team_team_folder_archive(self, :type force_async_off: bool :rtype: :class:`dropbox.team.TeamFolderArchiveLaunch` """ - arg = team.TeamFolderArchiveArg(team_folder_id, - force_async_off) + arg = team.TeamFolderArchiveArg(team_folder_id, force_async_off) r = self.request( team.team_folder_archive, - 'team', + "team", arg, None, ) return r - def team_team_folder_archive_check(self, - async_job_id): + def team_team_folder_archive_check(self, async_job_id): """ Returns the status of an asynchronous job for archiving a team folder. The job may show '.tag' as complete, but the team folder could still be @@ -2811,15 +2680,13 @@ def team_team_folder_archive_check(self, arg = async_.PollArg(async_job_id) r = self.request( team.team_folder_archive_check, - 'team', + "team", arg, None, ) return r - def team_team_folder_create(self, - name, - sync_setting=None): + def team_team_folder_create(self, name, sync_setting=None): """ Creates a new, active, team folder with no members. This endpoint can only be used for teams that do not already have a shared team space. @@ -2839,18 +2706,16 @@ def team_team_folder_create(self, If this raises, ApiError will contain: :class:`dropbox.team.TeamFolderCreateError` """ - arg = team.TeamFolderCreateArg(name, - sync_setting) + arg = team.TeamFolderCreateArg(name, sync_setting) r = self.request( team.team_folder_create, - 'team', + "team", arg, None, ) return r - def team_team_folder_get_info(self, - team_folder_ids): + def team_team_folder_get_info(self, team_folder_ids): """ Retrieves metadata for team folders. Permission : Team member file access. @@ -2865,14 +2730,13 @@ def team_team_folder_get_info(self, arg = team.TeamFolderIdListArg(team_folder_ids) r = self.request( team.team_folder_get_info, - 'team', + "team", arg, None, ) return r - def team_team_folder_list(self, - limit=1000): + def team_team_folder_list(self, limit=1000): """ Lists all team folders. Permission : Team member file access. @@ -2890,14 +2754,13 @@ def team_team_folder_list(self, arg = team.TeamFolderListArg(limit) r = self.request( team.team_folder_list, - 'team', + "team", arg, None, ) return r - def team_team_folder_list_continue(self, - cursor): + def team_team_folder_list_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`team_team_folder_list`, use this to paginate through all team folders. Permission : Team member file @@ -2918,14 +2781,13 @@ def team_team_folder_list_continue(self, arg = team.TeamFolderListContinueArg(cursor) r = self.request( team.team_folder_list_continue, - 'team', + "team", arg, None, ) return r - def team_team_folder_permanently_delete(self, - team_folder_id): + def team_team_folder_permanently_delete(self, team_folder_id): """ Permanently deletes an archived team folder. This endpoint cannot be used for teams that have a shared team space. Permission : Team member @@ -2941,15 +2803,13 @@ def team_team_folder_permanently_delete(self, arg = team.TeamFolderIdArg(team_folder_id) r = self.request( team.team_folder_permanently_delete, - 'team', + "team", arg, None, ) return None - def team_team_folder_rename(self, - team_folder_id, - name): + def team_team_folder_rename(self, team_folder_id, name): """ Changes an active team folder's name. Permission : Team member file access. @@ -2965,18 +2825,16 @@ def team_team_folder_rename(self, If this raises, ApiError will contain: :class:`dropbox.team.TeamFolderRenameError` """ - arg = team.TeamFolderRenameArg(team_folder_id, - name) + arg = team.TeamFolderRenameArg(team_folder_id, name) r = self.request( team.team_folder_rename, - 'team', + "team", arg, None, ) return r - def team_team_folder_restore(self, - team_folder_id): + def team_team_folder_restore(self, team_folder_id): """ Sets an inactive team folder's status to active. Permission: Team member file access. @@ -2991,16 +2849,15 @@ def team_team_folder_restore(self, arg = team.TeamFolderIdArg(team_folder_id) r = self.request( team.team_folder_restore, - 'team', + "team", arg, None, ) return r - def team_team_folder_update_sync_settings(self, - team_folder_id, - sync_setting=None, - content_sync_settings=None): + def team_team_folder_update_sync_settings( + self, team_folder_id, sync_setting=None, content_sync_settings=None + ): """ Updates the sync settings on a team folder or its contents. Use of this endpoint requires that the team has team selective sync enabled. @@ -3020,12 +2877,12 @@ def team_team_folder_update_sync_settings(self, If this raises, ApiError will contain: :class:`dropbox.team.TeamFolderUpdateSyncSettingsError` """ - arg = team.TeamFolderUpdateSyncSettingsArg(team_folder_id, - sync_setting, - content_sync_settings) + arg = team.TeamFolderUpdateSyncSettingsArg( + team_folder_id, sync_setting, content_sync_settings + ) r = self.request( team.team_folder_update_sync_settings, - 'team', + "team", arg, None, ) @@ -3048,7 +2905,7 @@ def team_token_get_authenticated_admin(self): arg = None r = self.request( team.token_get_authenticated_admin, - 'team', + "team", arg, None, ) @@ -3057,12 +2914,9 @@ def team_token_get_authenticated_admin(self): # ------------------------------------------ # Routes in team_log namespace - def team_log_get_events(self, - limit=1000, - account_id=None, - time=None, - category=None, - event_type=None): + def team_log_get_events( + self, limit=1000, account_id=None, time=None, category=None, event_type=None + ): """ Retrieves team events. If the result's ``GetTeamEventsResult.has_more`` field is ``True``, call :meth:`team_log_get_events_continue` with the @@ -3102,21 +2956,16 @@ def team_log_get_events(self, If this raises, ApiError will contain: :class:`dropbox.team_log.GetTeamEventsError` """ - arg = team_log.GetTeamEventsArg(limit, - account_id, - time, - category, - event_type) + arg = team_log.GetTeamEventsArg(limit, account_id, time, category, event_type) r = self.request( team_log.get_events, - 'team_log', + "team_log", arg, None, ) return r - def team_log_get_events_continue(self, - cursor): + def team_log_get_events_continue(self, cursor): """ Once a cursor has been retrieved from :meth:`team_log_get_events`, use this to paginate through all events. Permission : Team Auditing. @@ -3135,7 +2984,7 @@ def team_log_get_events_continue(self, arg = team_log.GetTeamEventsContinueArg(cursor) r = self.request( team_log.get_events_continue, - 'team_log', + "team_log", arg, None, ) @@ -3143,4 +2992,3 @@ def team_log_get_events_continue(self, # ------------------------------------------ # Routes in users namespace - diff --git a/dropbox/check.py b/dropbox/check.py index 23248b6a..e9f2491b 100644 --- a/dropbox/check.py +++ b/dropbox/check.py @@ -7,6 +7,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class EchoArg(bb.Struct): """ Contains the arguments to be sent to the Dropbox servers. @@ -16,13 +17,12 @@ class EchoArg(bb.Struct): """ __slots__ = [ - '_query_value', + "_query_value", ] _has_required_fields = False - def __init__(self, - query=None): + def __init__(self, query=None): self._query_value = bb.NOT_SET if query is not None: self.query = query @@ -33,8 +33,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(EchoArg, self)._process_custom_annotations(annotation_type, field_path, processor) + EchoArg_validator = bv.Struct(EchoArg) + class EchoError(bb.Union): """ EchoError contains the error returned from the Dropbox servers. @@ -47,7 +49,7 @@ class EchoError(bb.Union): The request was successful. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition user_requested = None # Attribute is overwritten below the class definition @@ -59,7 +61,7 @@ def is_user_requested(self): :rtype: bool """ - return self._tag == 'user_requested' + return self._tag == "user_requested" def is_other(self): """ @@ -67,13 +69,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(EchoError, self)._process_custom_annotations(annotation_type, field_path, processor) + EchoError_validator = bv.Union(EchoError) + class EchoResult(bb.Struct): """ EchoResult contains the result returned from the Dropbox servers. @@ -83,13 +87,12 @@ class EchoResult(bb.Struct): """ __slots__ = [ - '_result_value', + "_result_value", ] _has_required_fields = False - def __init__(self, - result=None): + def __init__(self, result=None): self._result_value = bb.NOT_SET if result is not None: self.result = result @@ -100,53 +103,49 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(EchoResult, self)._process_custom_annotations(annotation_type, field_path, processor) + EchoResult_validator = bv.Struct(EchoResult) EchoArg.query.validator = bv.String(max_length=500) -EchoArg._all_field_names_ = set(['query']) -EchoArg._all_fields_ = [('query', EchoArg.query.validator)] +EchoArg._all_field_names_ = set(["query"]) +EchoArg._all_fields_ = [("query", EchoArg.query.validator)] EchoError._user_requested_validator = bv.Void() EchoError._other_validator = bv.Void() EchoError._tagmap = { - 'user_requested': EchoError._user_requested_validator, - 'other': EchoError._other_validator, + "user_requested": EchoError._user_requested_validator, + "other": EchoError._other_validator, } -EchoError.user_requested = EchoError('user_requested') -EchoError.other = EchoError('other') +EchoError.user_requested = EchoError("user_requested") +EchoError.other = EchoError("other") EchoResult.result.validator = bv.String() -EchoResult._all_field_names_ = set(['result']) -EchoResult._all_fields_ = [('result', EchoResult.result.validator)] +EchoResult._all_field_names_ = set(["result"]) +EchoResult._all_fields_ = [("result", EchoResult.result.validator)] -EchoArg.query.default = '' -EchoResult.result.default = '' +EchoArg.query.default = "" +EchoResult.result.default = "" app = bb.Route( - 'app', + "app", 1, False, EchoArg_validator, EchoResult_validator, EchoError_validator, - {'auth': 'app', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app", "host": "api", "style": "rpc"}, ) user = bb.Route( - 'user', + "user", 1, False, EchoArg_validator, EchoResult_validator, EchoError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'app': app, - 'user': user, + "app": app, + "user": user, } - diff --git a/dropbox/common.py b/dropbox/common.py index 5ae40170..5e06e4ae 100644 --- a/dropbox/common.py +++ b/dropbox/common.py @@ -7,18 +7,16 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv -class DropboxDuration(bb.Struct): +class DropboxDuration(bb.Struct): __slots__ = [ - '_seconds_value', - '_nanos_value', + "_seconds_value", + "_nanos_value", ] _has_required_fields = True - def __init__(self, - seconds=None, - nanos=None): + def __init__(self, seconds=None, nanos=None): self._seconds_value = bb.NOT_SET self._nanos_value = bb.NOT_SET if seconds is not None: @@ -33,10 +31,14 @@ def __init__(self, nanos = bb.Attribute("nanos") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxDuration, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DropboxDuration, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DropboxDuration_validator = bv.Struct(DropboxDuration) + class PathRoot(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -58,7 +60,7 @@ class PathRoot(bb.Union): :vartype PathRoot.namespace_id: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition home = None # Attribute is overwritten below the class definition @@ -73,7 +75,7 @@ def root(cls, val): :param str val: :rtype: PathRoot """ - return cls('root', val) + return cls("root", val) @classmethod def namespace_id(cls, val): @@ -84,7 +86,7 @@ def namespace_id(cls, val): :param str val: :rtype: PathRoot """ - return cls('namespace_id', val) + return cls("namespace_id", val) def is_home(self): """ @@ -92,7 +94,7 @@ def is_home(self): :rtype: bool """ - return self._tag == 'home' + return self._tag == "home" def is_root(self): """ @@ -100,7 +102,7 @@ def is_root(self): :rtype: bool """ - return self._tag == 'root' + return self._tag == "root" def is_namespace_id(self): """ @@ -108,7 +110,7 @@ def is_namespace_id(self): :rtype: bool """ - return self._tag == 'namespace_id' + return self._tag == "namespace_id" def is_other(self): """ @@ -116,7 +118,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_root(self): """ @@ -149,8 +151,10 @@ def get_namespace_id(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(PathRoot, self)._process_custom_annotations(annotation_type, field_path, processor) + PathRoot_validator = bv.Union(PathRoot) + class PathRootError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -166,7 +170,7 @@ class PathRootError(bb.Union): Dropbox-API-Path-Root header. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_permission = None # Attribute is overwritten below the class definition @@ -181,7 +185,7 @@ def invalid_root(cls, val): :param RootInfo val: :rtype: PathRootError """ - return cls('invalid_root', val) + return cls("invalid_root", val) def is_invalid_root(self): """ @@ -189,7 +193,7 @@ def is_invalid_root(self): :rtype: bool """ - return self._tag == 'invalid_root' + return self._tag == "invalid_root" def is_no_permission(self): """ @@ -197,7 +201,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_other(self): """ @@ -205,7 +209,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_invalid_root(self): """ @@ -221,10 +225,14 @@ def get_invalid_root(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PathRootError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PathRootError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PathRootError_validator = bv.Union(PathRootError) + class RootInfo(bb.Struct): """ Information about current user's root. @@ -240,15 +248,13 @@ class RootInfo(bb.Struct): """ __slots__ = [ - '_root_namespace_id_value', - '_home_namespace_id_value', + "_root_namespace_id_value", + "_home_namespace_id_value", ] _has_required_fields = True - def __init__(self, - root_namespace_id=None, - home_namespace_id=None): + def __init__(self, root_namespace_id=None, home_namespace_id=None): self._root_namespace_id_value = bb.NOT_SET self._home_namespace_id_value = bb.NOT_SET if root_namespace_id is not None: @@ -265,8 +271,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(RootInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + RootInfo_validator = bv.StructTree(RootInfo) + class TeamRootInfo(RootInfo): """ Root info when user is member of a team with a separate root namespace ID. @@ -276,17 +284,13 @@ class TeamRootInfo(RootInfo): """ __slots__ = [ - '_home_path_value', + "_home_path_value", ] _has_required_fields = True - def __init__(self, - root_namespace_id=None, - home_namespace_id=None, - home_path=None): - super(TeamRootInfo, self).__init__(root_namespace_id, - home_namespace_id) + def __init__(self, root_namespace_id=None, home_namespace_id=None, home_path=None): + super(TeamRootInfo, self).__init__(root_namespace_id, home_namespace_id) self._home_path_value = bb.NOT_SET if home_path is not None: self.home_path = home_path @@ -295,10 +299,14 @@ def __init__(self, home_path = bb.Attribute("home_path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamRootInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamRootInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamRootInfo_validator = bv.Struct(TeamRootInfo) + class UserRootInfo(RootInfo): """ Root info when user is not member of a team or the user is a member of a @@ -309,17 +317,13 @@ class UserRootInfo(RootInfo): """ __slots__ = [ - '_home_path_value', + "_home_path_value", ] _has_required_fields = True - def __init__(self, - root_namespace_id=None, - home_namespace_id=None, - home_path=None): - super(UserRootInfo, self).__init__(root_namespace_id, - home_namespace_id) + def __init__(self, root_namespace_id=None, home_namespace_id=None, home_path=None): + super(UserRootInfo, self).__init__(root_namespace_id, home_namespace_id) self._home_path_value = bb.NOT_SET if home_path is not None: self.home_path = home_path @@ -328,30 +332,38 @@ def __init__(self, home_path = bb.Attribute("home_path", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserRootInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserRootInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserRootInfo_validator = bv.Struct(UserRootInfo) -Date_validator = bv.Timestamp('%Y-%m-%d') +Date_validator = bv.Timestamp("%Y-%m-%d") DisplayName_validator = bv.String(pattern='[^/:?*<>"|]*') DisplayNameLegacy_validator = bv.String() -DropboxTimestamp_validator = bv.Timestamp('%Y-%m-%dT%H:%M:%SZ') -EmailAddress_validator = bv.String(max_length=255, pattern="^['#&A-Za-z0-9._%+-]+@[A-Za-z0-9-][A-Za-z0-9.-]*\\.[A-Za-z]{2,15}$") +DropboxTimestamp_validator = bv.Timestamp("%Y-%m-%dT%H:%M:%SZ") +EmailAddress_validator = bv.String( + max_length=255, + pattern="^['#&A-Za-z0-9._%+-]+@[A-Za-z0-9-][A-Za-z0-9.-]*\\.[A-Za-z]{2,15}$", +) LanguageCode_validator = bv.String(min_length=2) NamePart_validator = bv.String(min_length=1, max_length=50, pattern='[^/:?*<>"|]*') -NamespaceId_validator = bv.String(pattern='[-_0-9a-zA-Z:]+') +NamespaceId_validator = bv.String(pattern="[-_0-9a-zA-Z:]+") OptionalNamePart_validator = bv.String(max_length=50, pattern='[^/:?*<>"|]*') SessionId_validator = bv.String() SharedFolderId_validator = NamespaceId_validator DropboxDuration.seconds.validator = bv.Int64() DropboxDuration.nanos.validator = bv.Int32() -DropboxDuration._all_field_names_ = set([ - 'seconds', - 'nanos', -]) +DropboxDuration._all_field_names_ = set( + [ + "seconds", + "nanos", + ] +) DropboxDuration._all_fields_ = [ - ('seconds', DropboxDuration.seconds.validator), - ('nanos', DropboxDuration.nanos.validator), + ("seconds", DropboxDuration.seconds.validator), + ("nanos", DropboxDuration.nanos.validator), ] PathRoot._home_validator = bv.Void() @@ -359,62 +371,62 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PathRoot._namespace_id_validator = NamespaceId_validator PathRoot._other_validator = bv.Void() PathRoot._tagmap = { - 'home': PathRoot._home_validator, - 'root': PathRoot._root_validator, - 'namespace_id': PathRoot._namespace_id_validator, - 'other': PathRoot._other_validator, + "home": PathRoot._home_validator, + "root": PathRoot._root_validator, + "namespace_id": PathRoot._namespace_id_validator, + "other": PathRoot._other_validator, } -PathRoot.home = PathRoot('home') -PathRoot.other = PathRoot('other') +PathRoot.home = PathRoot("home") +PathRoot.other = PathRoot("other") PathRootError._invalid_root_validator = RootInfo_validator PathRootError._no_permission_validator = bv.Void() PathRootError._other_validator = bv.Void() PathRootError._tagmap = { - 'invalid_root': PathRootError._invalid_root_validator, - 'no_permission': PathRootError._no_permission_validator, - 'other': PathRootError._other_validator, + "invalid_root": PathRootError._invalid_root_validator, + "no_permission": PathRootError._no_permission_validator, + "other": PathRootError._other_validator, } -PathRootError.no_permission = PathRootError('no_permission') -PathRootError.other = PathRootError('other') +PathRootError.no_permission = PathRootError("no_permission") +PathRootError.other = PathRootError("other") RootInfo.root_namespace_id.validator = NamespaceId_validator RootInfo.home_namespace_id.validator = NamespaceId_validator -RootInfo._field_names_ = set([ - 'root_namespace_id', - 'home_namespace_id', -]) +RootInfo._field_names_ = set( + [ + "root_namespace_id", + "home_namespace_id", + ] +) RootInfo._all_field_names_ = RootInfo._field_names_ RootInfo._fields_ = [ - ('root_namespace_id', RootInfo.root_namespace_id.validator), - ('home_namespace_id', RootInfo.home_namespace_id.validator), + ("root_namespace_id", RootInfo.root_namespace_id.validator), + ("home_namespace_id", RootInfo.home_namespace_id.validator), ] RootInfo._all_fields_ = RootInfo._fields_ RootInfo._tag_to_subtype_ = { - ('team',): TeamRootInfo_validator, - ('user',): UserRootInfo_validator, + ("team",): TeamRootInfo_validator, + ("user",): UserRootInfo_validator, } RootInfo._pytype_to_tag_and_subtype_ = { - TeamRootInfo: (('team',), TeamRootInfo_validator), - UserRootInfo: (('user',), UserRootInfo_validator), + TeamRootInfo: (("team",), TeamRootInfo_validator), + UserRootInfo: (("user",), UserRootInfo_validator), } RootInfo._is_catch_all_ = True TeamRootInfo.home_path.validator = bv.String() -TeamRootInfo._field_names_ = set(['home_path']) +TeamRootInfo._field_names_ = set(["home_path"]) TeamRootInfo._all_field_names_ = RootInfo._all_field_names_.union(TeamRootInfo._field_names_) -TeamRootInfo._fields_ = [('home_path', TeamRootInfo.home_path.validator)] +TeamRootInfo._fields_ = [("home_path", TeamRootInfo.home_path.validator)] TeamRootInfo._all_fields_ = RootInfo._all_fields_ + TeamRootInfo._fields_ UserRootInfo.home_path.validator = bv.Nullable(bv.String()) -UserRootInfo._field_names_ = set(['home_path']) +UserRootInfo._field_names_ = set(["home_path"]) UserRootInfo._all_field_names_ = RootInfo._all_field_names_.union(UserRootInfo._field_names_) -UserRootInfo._fields_ = [('home_path', UserRootInfo.home_path.validator)] +UserRootInfo._fields_ = [("home_path", UserRootInfo.home_path.validator)] UserRootInfo._all_fields_ = RootInfo._all_fields_ + UserRootInfo._fields_ -ROUTES = { -} - +ROUTES = {} diff --git a/dropbox/contacts.py b/dropbox/contacts.py index abcd8254..f493b616 100644 --- a/dropbox/contacts.py +++ b/dropbox/contacts.py @@ -9,6 +9,7 @@ from dropbox import common + class DeleteManualContactsArg(bb.Struct): """ :ivar DeleteManualContactsArg.email_addresses: @@ -16,13 +17,12 @@ class DeleteManualContactsArg(bb.Struct): """ __slots__ = [ - '_email_addresses_value', + "_email_addresses_value", ] _has_required_fields = True - def __init__(self, - email_addresses=None): + def __init__(self, email_addresses=None): self._email_addresses_value = bb.NOT_SET if email_addresses is not None: self.email_addresses = email_addresses @@ -31,10 +31,14 @@ def __init__(self, email_addresses = bb.Attribute("email_addresses") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteManualContactsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteManualContactsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteManualContactsArg_validator = bv.Struct(DeleteManualContactsArg) + class DeleteManualContactsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -47,7 +51,7 @@ class DeleteManualContactsError(bb.Union): :vartype DeleteManualContactsError.contacts_not_found: list of [str] """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -60,7 +64,7 @@ def contacts_not_found(cls, val): :param list of [str] val: :rtype: DeleteManualContactsError """ - return cls('contacts_not_found', val) + return cls("contacts_not_found", val) def is_contacts_not_found(self): """ @@ -68,7 +72,7 @@ def is_contacts_not_found(self): :rtype: bool """ - return self._tag == 'contacts_not_found' + return self._tag == "contacts_not_found" def is_other(self): """ @@ -76,7 +80,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_contacts_not_found(self): """ @@ -92,48 +96,48 @@ def get_contacts_not_found(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteManualContactsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteManualContactsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteManualContactsError_validator = bv.Union(DeleteManualContactsError) DeleteManualContactsArg.email_addresses.validator = bv.List(common.EmailAddress_validator) -DeleteManualContactsArg._all_field_names_ = set(['email_addresses']) -DeleteManualContactsArg._all_fields_ = [('email_addresses', DeleteManualContactsArg.email_addresses.validator)] +DeleteManualContactsArg._all_field_names_ = set(["email_addresses"]) +DeleteManualContactsArg._all_fields_ = [ + ("email_addresses", DeleteManualContactsArg.email_addresses.validator) +] DeleteManualContactsError._contacts_not_found_validator = bv.List(common.EmailAddress_validator) DeleteManualContactsError._other_validator = bv.Void() DeleteManualContactsError._tagmap = { - 'contacts_not_found': DeleteManualContactsError._contacts_not_found_validator, - 'other': DeleteManualContactsError._other_validator, + "contacts_not_found": DeleteManualContactsError._contacts_not_found_validator, + "other": DeleteManualContactsError._other_validator, } -DeleteManualContactsError.other = DeleteManualContactsError('other') +DeleteManualContactsError.other = DeleteManualContactsError("other") delete_manual_contacts = bb.Route( - 'delete_manual_contacts', + "delete_manual_contacts", 1, False, bv.Void(), bv.Void(), bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) delete_manual_contacts_batch = bb.Route( - 'delete_manual_contacts_batch', + "delete_manual_contacts_batch", 1, False, DeleteManualContactsArg_validator, bv.Void(), DeleteManualContactsError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'delete_manual_contacts': delete_manual_contacts, - 'delete_manual_contacts_batch': delete_manual_contacts_batch, + "delete_manual_contacts": delete_manual_contacts, + "delete_manual_contacts_batch": delete_manual_contacts_batch, } - diff --git a/dropbox/content_hash.py b/dropbox/content_hash.py index aee410cd..64078b0a 100644 --- a/dropbox/content_hash.py +++ b/dropbox/content_hash.py @@ -43,11 +43,9 @@ def __init__(self): def update(self, new_data): if self._overall_hasher is None: - raise AssertionError( - "can't use this object anymore; you already called digest()") + raise AssertionError("can't use this object anymore; you already called digest()") - assert isinstance(new_data, bytes), ( - "Expecting a byte string, got {!r}".format(new_data)) + assert isinstance(new_data, bytes), "Expecting a byte string, got {!r}".format(new_data) new_data_pos = 0 while new_data_pos < len(new_data): @@ -57,7 +55,7 @@ def update(self, new_data): self._block_pos = 0 space_in_block = self.BLOCK_SIZE - self._block_pos - part = new_data[new_data_pos:(new_data_pos + space_in_block)] + part = new_data[new_data_pos : (new_data_pos + space_in_block)] self._block_hasher.update(part) self._block_pos += len(part) @@ -66,7 +64,8 @@ def update(self, new_data): def _finish(self): if self._overall_hasher is None: raise AssertionError( - "can't use this object anymore; you already called digest() or hexdigest()") + "can't use this object anymore; you already called digest() or hexdigest()" + ) if self._block_pos > 0: self._overall_hasher.update(self._block_hasher.digest()) diff --git a/dropbox/dropbox_client.py b/dropbox/dropbox_client.py index e818390c..f1adb837 100644 --- a/dropbox/dropbox_client.py +++ b/dropbox/dropbox_client.py @@ -1,13 +1,9 @@ __all__ = [ - 'Dropbox', - 'DropboxTeam', - 'create_session', + "Dropbox", + "DropboxTeam", + "create_session", ] -# This should always be 0.0.0 in main. Only update this after tagging -# before release. -__version__ = '0.0.0' - import base64 import contextlib import copy @@ -15,23 +11,21 @@ import logging import random import time +from datetime import datetime, timedelta import requests +from dropbox._version import __version__ +from stone.backends.python_rsrc import stone_serializers -from datetime import datetime, timedelta +from dropbox import files from dropbox.auth import ( AuthError_validator, RateLimitError_validator, ) -from dropbox import files -from dropbox.content_hash import content_hash as _content_hash -from dropbox.common import ( - PathRoot, - PathRoot_validator, - PathRootError_validator -) from dropbox.base import DropboxBase from dropbox.base_team import DropboxTeamBase +from dropbox.common import PathRoot, PathRoot_validator, PathRootError_validator +from dropbox.content_hash import content_hash as _content_hash from dropbox.exceptions import ( ApiError, AuthError, @@ -49,22 +43,22 @@ HOST_CONTENT, HOST_NOTIFY, pinned_session, - DEFAULT_TIMEOUT + DEFAULT_TIMEOUT, ) -from stone.backends.python_rsrc import stone_serializers -PATH_ROOT_HEADER = 'Dropbox-API-Path-Root' +PATH_ROOT_HEADER = "Dropbox-API-Path-Root" HTTP_STATUS_INVALID_PATH_ROOT = 422 TOKEN_EXPIRATION_BUFFER = 300 -SELECT_ADMIN_HEADER = 'Dropbox-API-Select-Admin' +SELECT_ADMIN_HEADER = "Dropbox-API-Select-Admin" -SELECT_USER_HEADER = 'Dropbox-API-Select-User' +SELECT_USER_HEADER = "Dropbox-API-Select-User" + +USER_AUTH = "user" +TEAM_AUTH = "team" +APP_AUTH = "app" +NO_AUTH = "noauth" -USER_AUTH = 'user' -TEAM_AUTH = 'team' -APP_AUTH = 'app' -NO_AUTH = 'noauth' class RouteResult(object): """The successful result of a call to a route.""" @@ -76,15 +70,15 @@ def __init__(self, obj_result, http_resp=None): :param requests.models.Response http_resp: A raw HTTP response. It will be used to stream the binary-body payload of the response. """ - assert isinstance(obj_result, str), \ - 'obj_result: expected string, got %r' % type(obj_result) + assert isinstance(obj_result, str), "obj_result: expected string, got %r" % type(obj_result) if http_resp is not None: - assert isinstance(http_resp, requests.models.Response), \ - 'http_resp: expected requests.models.Response, got %r' % \ - type(http_resp) + assert isinstance(http_resp, requests.models.Response), ( + "http_resp: expected requests.models.Response, got %r" % type(http_resp) + ) self.obj_result = obj_result self.http_resp = http_resp + class RouteErrorResult(object): """The error result of a call to a route.""" @@ -98,6 +92,7 @@ def __init__(self, request_id, obj_result): self.request_id = request_id self.obj_result = obj_result + def create_session(max_connections=8, proxies=None, ca_certs=None): """ Creates a session object that can be used by multiple :class:`Dropbox` and @@ -118,43 +113,46 @@ def create_session(max_connections=8, proxies=None, ca_certs=None): session.proxies = proxies return session + class _DropboxTransport(object): """ Responsible for implementing the wire protocol for making requests to the Dropbox API. """ - _API_VERSION = '2' + _API_VERSION = "2" # Download style means that the route argument goes in a Dropbox-API-Arg # header, and the result comes back in a Dropbox-API-Result header. The # HTTP response body contains a binary payload. - _ROUTE_STYLE_DOWNLOAD = 'download' + _ROUTE_STYLE_DOWNLOAD = "download" # Upload style means that the route argument goes in a Dropbox-API-Arg # header. The HTTP request body contains a binary payload. The result # comes back in a Dropbox-API-Result header. - _ROUTE_STYLE_UPLOAD = 'upload' + _ROUTE_STYLE_UPLOAD = "upload" # RPC style means that the argument and result of a route are contained in # the HTTP body. - _ROUTE_STYLE_RPC = 'rpc' - - def __init__(self, - oauth2_access_token=None, - max_retries_on_error=4, - max_retries_on_rate_limit=None, - user_agent=None, - session=None, - headers=None, - timeout=DEFAULT_TIMEOUT, - oauth2_refresh_token=None, - oauth2_access_token_expiration=None, - app_key=None, - app_secret=None, - scope=None, - ca_certs=None, - auto_content_hash=True): + _ROUTE_STYLE_RPC = "rpc" + + def __init__( + self, + oauth2_access_token=None, + max_retries_on_error=4, + max_retries_on_rate_limit=None, + user_agent=None, + session=None, + headers=None, + timeout=DEFAULT_TIMEOUT, + oauth2_refresh_token=None, + oauth2_access_token_expiration=None, + app_key=None, + app_secret=None, + scope=None, + ca_certs=None, + auto_content_hash=True, + ): """ :param str oauth2_access_token: OAuth2 access token for making client requests. @@ -191,11 +189,11 @@ def __init__(self, if not (oauth2_access_token or oauth2_refresh_token or (app_key and app_secret)): raise BadInputException( - 'OAuth2 access token or refresh token or app key/secret must be set' + "OAuth2 access token or refresh token or app key/secret must be set" ) if headers is not None and not isinstance(headers, dict): - raise BadInputException('Expected dict, got {}'.format(headers)) + raise BadInputException("Expected dict, got {}".format(headers)) if oauth2_refresh_token and not app_key: raise BadInputException("app_key is required to refresh tokens") @@ -216,44 +214,48 @@ def __init__(self, self._max_retries_on_rate_limit = max_retries_on_rate_limit if session: if not isinstance(session, requests.sessions.Session): - raise BadInputException('Expected requests.sessions.Session, got {}' - .format(session)) + raise BadInputException( + "Expected requests.sessions.Session, got {}".format(session) + ) self._session = session else: self._session = create_session(ca_certs=ca_certs) self._headers = headers - base_user_agent = 'OfficialDropboxPythonSDKv2/' + __version__ + base_user_agent = "OfficialDropboxPythonSDKv2/" + __version__ if user_agent: self._raw_user_agent = user_agent - self._user_agent = '{}/{}'.format(user_agent, base_user_agent) + self._user_agent = "{}/{}".format(user_agent, base_user_agent) else: self._raw_user_agent = None self._user_agent = base_user_agent - self._logger = logging.getLogger('dropbox') + self._logger = logging.getLogger("dropbox") - self._host_map = {HOST_API: API_HOST, - HOST_CONTENT: API_CONTENT_HOST, - HOST_NOTIFY: API_NOTIFICATION_HOST} + self._host_map = { + HOST_API: API_HOST, + HOST_CONTENT: API_CONTENT_HOST, + HOST_NOTIFY: API_NOTIFICATION_HOST, + } self._timeout = timeout def clone( - self, - oauth2_access_token=None, - max_retries_on_error=None, - max_retries_on_rate_limit=None, - user_agent=None, - session=None, - headers=None, - timeout=None, - oauth2_refresh_token=None, - oauth2_access_token_expiration=None, - app_key=None, - app_secret=None, - scope=None, - auto_content_hash=None): + self, + oauth2_access_token=None, + max_retries_on_error=None, + max_retries_on_rate_limit=None, + user_agent=None, + session=None, + headers=None, + timeout=None, + oauth2_refresh_token=None, + oauth2_access_token_expiration=None, + app_key=None, + app_secret=None, + scope=None, + auto_content_hash=None, + ): """ Creates a new copy of the Dropbox client with the same defaults unless modified by arguments to clone() @@ -277,17 +279,12 @@ def clone( app_key or self._app_key, app_secret or self._app_secret, scope or self._scope, - auto_content_hash=(self._auto_content_hash - if auto_content_hash is None - else auto_content_hash), + auto_content_hash=( + self._auto_content_hash if auto_content_hash is None else auto_content_hash + ), ) - def request(self, - route, - namespace, - request_arg, - request_binary, - timeout=None): + def request(self, route, namespace, request_arg, request_binary, timeout=None): """ Makes a request to the Dropbox API and in the process validates that the route argument and result are the expected data types. The @@ -312,20 +309,18 @@ def request(self, self.check_and_refresh_access_token() - host = route.attrs['host'] or 'api' - auth_type = route.attrs['auth'] - route_name = namespace + '/' + route.name + host = route.attrs["host"] or "api" + auth_type = route.attrs["auth"] + route_name = namespace + "/" + route.name if route.version > 1: - route_name += '_v{}'.format(route.version) - route_style = route.attrs['style'] or 'rpc' + route_name += "_v{}".format(route.version) + route_style = route.attrs["style"] or "rpc" request_arg = self._maybe_add_content_hash(request_arg, request_binary) - serialized_arg = stone_serializers.json_encode(route.arg_type, - request_arg) + serialized_arg = stone_serializers.json_encode(route.arg_type, request_arg) - if (timeout is None and - route == files.list_folder_longpoll): + if timeout is None and route == files.list_folder_longpoll: # The client normally sends a timeout value to the # longpoll route. The server will respond after # + random(0, 90) seconds. We increase the @@ -335,35 +330,41 @@ def request(self, # NB: This is done here because base.py is auto-generated timeout = request_arg.timeout + 90 - res = self.request_json_string_with_retry(host, - route_name, - route_style, - serialized_arg, - auth_type, - request_binary, - timeout=timeout) + res = self.request_json_string_with_retry( + host, + route_name, + route_style, + serialized_arg, + auth_type, + request_binary, + timeout=timeout, + ) decoded_obj_result = json.loads(res.obj_result) if isinstance(res, RouteResult): returned_data_type = route.result_type obj = decoded_obj_result elif isinstance(res, RouteErrorResult): returned_data_type = route.error_type - obj = decoded_obj_result['error'] - user_message = decoded_obj_result.get('user_message') - user_message_text = user_message and user_message.get('text') - user_message_locale = user_message and user_message.get('locale') + obj = decoded_obj_result["error"] + user_message = decoded_obj_result.get("user_message") + user_message_text = user_message and user_message.get("text") + user_message_locale = user_message and user_message.get("locale") else: - raise AssertionError('Expected RouteResult or RouteErrorResult, ' - 'but res is %s' % type(res)) + raise AssertionError( + "Expected RouteResult or RouteErrorResult, but res is %s" % type(res) + ) deserialized_result = stone_serializers.json_compat_obj_decode( - returned_data_type, obj, strict=False) + returned_data_type, obj, strict=False + ) if isinstance(res, RouteErrorResult): - raise ApiError(res.request_id, - deserialized_result, - user_message_text, - user_message_locale) + raise ApiError( + res.request_id, + deserialized_result, + user_message_text, + user_message_locale, + ) elif route_style == self._ROUTE_STYLE_DOWNLOAD: return (deserialized_result, res.http_resp) else: @@ -376,8 +377,9 @@ def _maybe_add_content_hash(self, request_arg, request_binary): return request_arg if not isinstance(request_binary, bytes): return request_arg - if request_arg is None or \ - 'content_hash' not in getattr(request_arg, '_all_field_names_', ()): + if request_arg is None or "content_hash" not in getattr( + request_arg, "_all_field_names_", () + ): return request_arg if request_arg.content_hash is not None: return request_arg @@ -392,10 +394,11 @@ def check_and_refresh_access_token(self): :return: """ can_refresh = self._oauth2_refresh_token and self._app_key - needs_refresh = self._oauth2_refresh_token and \ - (not self._oauth2_access_token_expiration or - (datetime.utcnow() + timedelta(seconds=TOKEN_EXPIRATION_BUFFER)) >= - self._oauth2_access_token_expiration) + needs_refresh = self._oauth2_refresh_token and ( + not self._oauth2_access_token_expiration + or (datetime.utcnow() + timedelta(seconds=TOKEN_EXPIRATION_BUFFER)) + >= self._oauth2_access_token_expiration + ) needs_token = not self._oauth2_access_token if (needs_refresh or needs_token) and can_refresh: self.refresh_access_token(scope=self._scope) @@ -412,21 +415,24 @@ def refresh_access_token(self, host=API_HOST, scope=None): raise BadInputException("Scope list must be of type list") if not (self._oauth2_refresh_token and self._app_key): - self._logger.warning('Unable to refresh access token without \ - refresh token and app key') + self._logger.warning( + "Unable to refresh access token without \ + refresh token and app key" + ) return - self._logger.info('Refreshing access token.') + self._logger.info("Refreshing access token.") url = "https://{}/oauth2/token".format(host) - body = {'grant_type': 'refresh_token', - 'refresh_token': self._oauth2_refresh_token, - 'client_id': self._app_key, - } + body = { + "grant_type": "refresh_token", + "refresh_token": self._oauth2_refresh_token, + "client_id": self._app_key, + } if self._app_secret: - body['client_secret'] = self._app_secret + body["client_secret"] = self._app_secret if scope: scope = " ".join(scope) - body['scope'] = scope + body["scope"] = scope timeout = DEFAULT_TIMEOUT if self._timeout: @@ -444,26 +450,31 @@ def refresh_access_token(self, host=API_HOST, scope=None): # Use exponential backoff, matching request_json_string_with_retry. backoff = 2**attempt * random.random() self._logger.info( - 'HttpError status_code=%s while refreshing access token: ' - 'Retrying in %.1f seconds', - e.status_code, backoff) + "HttpError status_code=%s while refreshing access token: " + "Retrying in %.1f seconds", + e.status_code, + backoff, + ) time.sleep(backoff) else: raise token_content = res.json() self._oauth2_access_token = token_content["access_token"] - self._oauth2_access_token_expiration = datetime.utcnow() + \ - timedelta(seconds=int(token_content["expires_in"])) - - def request_json_object(self, - host, - route_name, - route_style, - request_arg, - auth_type, - request_binary, - timeout=None): + self._oauth2_access_token_expiration = datetime.utcnow() + timedelta( + seconds=int(token_content["expires_in"]) + ) + + def request_json_object( + self, + host, + route_name, + route_style, + request_arg, + auth_type, + request_binary, + timeout=None, + ): """ Makes a request to the Dropbox API, taking a JSON-serializable Python object as an argument, and returning one as a response. @@ -484,13 +495,15 @@ def request_json_object(self, :return: The route's result as a JSON-serializable Python object. """ serialized_arg = json.dumps(request_arg) - res = self.request_json_string_with_retry(host, - route_name, - route_style, - serialized_arg, - auth_type, - request_binary, - timeout=timeout) + res = self.request_json_string_with_retry( + host, + route_name, + route_style, + serialized_arg, + auth_type, + request_binary, + timeout=timeout, + ) # This can throw a ValueError if the result is not deserializable, # but that would be completely unexpected. deserialized_result = json.loads(res.obj_result) @@ -499,14 +512,16 @@ def request_json_object(self, else: return deserialized_result - def request_json_string_with_retry(self, - host, - route_name, - route_style, - request_json_arg, - auth_type, - request_binary, - timeout=None): + def request_json_string_with_retry( + self, + host, + route_name, + route_style, + request_json_arg, + auth_type, + request_binary, + timeout=None, + ): """ See :meth:`request_json_object` for description of parameters. @@ -517,23 +532,26 @@ def request_json_string_with_retry(self, rate_limit_errors = 0 has_refreshed = False while True: - self._logger.info('Request to %s', route_name) + self._logger.info("Request to %s", route_name) try: - return self.request_json_string(host, - route_name, - route_style, - request_json_arg, - auth_type, - request_binary, - timeout=timeout) + return self.request_json_string( + host, + route_name, + route_style, + request_json_arg, + auth_type, + request_binary, + timeout=timeout, + ) except AuthError as e: if e.error and e.error.is_expired_access_token(): if has_refreshed: raise else: self._logger.info( - 'ExpiredCredentials status_code=%s: Refreshing and Retrying', - e.status_code) + "ExpiredCredentials status_code=%s: Refreshing and Retrying", + e.status_code, + ) self.refresh_access_token() has_refreshed = True else: @@ -544,70 +562,75 @@ def request_json_string_with_retry(self, # Use exponential backoff backoff = 2**attempt * random.random() self._logger.info( - 'HttpError status_code=%s: Retrying in %.1f seconds', - e.status_code, backoff) + "HttpError status_code=%s: Retrying in %.1f seconds", + e.status_code, + backoff, + ) time.sleep(backoff) else: raise except RateLimitError as e: rate_limit_errors += 1 - if (self._max_retries_on_rate_limit is None or - self._max_retries_on_rate_limit >= rate_limit_errors): + if ( + self._max_retries_on_rate_limit is None + or self._max_retries_on_rate_limit >= rate_limit_errors + ): # Set default backoff to 5 seconds. backoff = e.backoff if e.backoff is not None else 5.0 - self._logger.info( - 'Ratelimit: Retrying in %.1f seconds.', backoff) + self._logger.info("Ratelimit: Retrying in %.1f seconds.", backoff) time.sleep(backoff) else: raise - def request_json_string(self, - host, - func_name, - route_style, - request_json_arg, - auth_type, - request_binary, - timeout=None): + def request_json_string( + self, + host, + func_name, + route_style, + request_json_arg, + auth_type, + request_binary, + timeout=None, + ): """ See :meth:`request_json_string_with_retry` for description of parameters. """ if host not in self._host_map: - raise ValueError('Unknown value for host: %r' % host) + raise ValueError("Unknown value for host: %r" % host) if not isinstance(request_binary, (bytes, type(None))): # Disallow streams and file-like objects even though the underlying # requests library supports them. This is to prevent incorrect # behavior when a non-rewindable stream is read from, but the # request fails and needs to be re-tried at a later time. - raise TypeError('expected request_binary as binary type, got %s' % - type(request_binary)) + raise TypeError("expected request_binary as binary type, got %s" % type(request_binary)) # Fully qualified hostname fq_hostname = self._host_map[host] url = self._get_route_url(fq_hostname, func_name) - headers = {'User-Agent': self._user_agent} - auth_types = auth_type.replace(' ', '').split(',') + headers = {"User-Agent": self._user_agent} + auth_types = auth_type.replace(" ", "").split(",") if (USER_AUTH in auth_types or TEAM_AUTH in auth_types) and self._oauth2_access_token: - headers['Authorization'] = 'Bearer %s' % self._oauth2_access_token + headers["Authorization"] = "Bearer %s" % self._oauth2_access_token if self._headers: headers.update(self._headers) elif APP_AUTH in auth_types: if self._app_key is None or self._app_secret is None: raise BadInputException( - 'Client id and client secret are required for routes with app auth') + "Client id and client secret are required for routes with app auth" + ) auth_header = base64.b64encode( "{}:{}".format(self._app_key, self._app_secret).encode("utf-8") ) - headers['Authorization'] = 'Basic {}'.format(auth_header.decode("utf-8")) + headers["Authorization"] = "Basic {}".format(auth_header.decode("utf-8")) if self._headers: headers.update(self._headers) elif auth_type == NO_AUTH: pass else: - raise BadInputException('Unhandled auth type: {}'.format(auth_type)) + raise BadInputException("Unhandled auth type: {}".format(auth_type)) # The contents of the body of the HTTP request body = None @@ -617,40 +640,42 @@ def request_json_string(self, stream = False if route_style == self._ROUTE_STYLE_RPC: - headers['Content-Type'] = 'application/json' + headers["Content-Type"] = "application/json" body = request_json_arg elif route_style == self._ROUTE_STYLE_DOWNLOAD: - headers['Dropbox-API-Arg'] = request_json_arg + headers["Dropbox-API-Arg"] = request_json_arg stream = True elif route_style == self._ROUTE_STYLE_UPLOAD: - headers['Content-Type'] = 'application/octet-stream' - headers['Dropbox-API-Arg'] = request_json_arg + headers["Content-Type"] = "application/octet-stream" + headers["Dropbox-API-Arg"] = request_json_arg body = request_binary else: - raise ValueError('Unknown operation style: %r' % route_style) + raise ValueError("Unknown operation style: %r" % route_style) if timeout is None: timeout = self._timeout - r = self._session.post(url, - headers=headers, - data=body, - stream=stream, - timeout=timeout, - ) + r = self._session.post( + url, + headers=headers, + data=body, + stream=stream, + timeout=timeout, + ) self.raise_dropbox_error_for_resp(r) - request_id = r.headers.get('x-dropbox-request-id') + request_id = r.headers.get("x-dropbox-request-id") if r.status_code in (403, 404, 409): - raw_resp = r.content.decode('utf-8') + raw_resp = r.content.decode("utf-8") return RouteErrorResult(request_id, raw_resp) if route_style == self._ROUTE_STYLE_DOWNLOAD: - raw_resp = r.headers['dropbox-api-result'] + raw_resp = r.headers["dropbox-api-result"] else: - assert r.headers.get('content-type') == 'application/json', ( - 'Expected content-type to be application/json, got %r' % - r.headers.get('content-type')) - raw_resp = r.content.decode('utf-8') + assert r.headers.get("content-type") == "application/json", ( + "Expected content-type to be application/json, got %r" + % r.headers.get("content-type") + ) + raw_resp = r.content.decode("utf-8") if route_style == self._ROUTE_STYLE_DOWNLOAD: return RouteResult(raw_resp, r) else: @@ -661,38 +686,41 @@ def raise_dropbox_error_for_resp(self, res): :param res: Response of an api request. """ - request_id = res.headers.get('x-dropbox-request-id') + request_id = res.headers.get("x-dropbox-request-id") if res.status_code >= 500: raise InternalServerError(request_id, res.status_code, res.text) elif res.status_code == 400: try: - if res.json().get('error') == 'invalid_grant': + if res.json().get("error") == "invalid_grant": err = stone_serializers.json_compat_obj_decode( - AuthError_validator, 'invalid_access_token') + AuthError_validator, "invalid_access_token" + ) raise AuthError(request_id, err) else: raise BadInputError(request_id, res.text) except (ValueError, AttributeError): raise BadInputError(request_id, res.text) elif res.status_code == 401: - assert res.headers.get('content-type') == 'application/json', ( - 'Expected content-type to be application/json, got %r' % - res.headers.get('content-type')) - err = stone_serializers.json_compat_obj_decode( - AuthError_validator, res.json()['error']) + assert res.headers.get("content-type") == "application/json", ( + "Expected content-type to be application/json, got %r" + % res.headers.get("content-type") + ) + err = stone_serializers.json_compat_obj_decode(AuthError_validator, res.json()["error"]) raise AuthError(request_id, err) elif res.status_code == HTTP_STATUS_INVALID_PATH_ROOT: err = stone_serializers.json_compat_obj_decode( - PathRootError_validator, res.json()['error']) + PathRootError_validator, res.json()["error"] + ) raise PathRootError(request_id, err) elif res.status_code == 429: err = None - if res.headers.get('content-type') == 'application/json': + if res.headers.get("content-type") == "application/json": err = stone_serializers.json_compat_obj_decode( - RateLimitError_validator, res.json()['error']) + RateLimitError_validator, res.json()["error"] + ) retry_after = err.retry_after else: - retry_after_str = res.headers.get('retry-after') + retry_after_str = res.headers.get("retry-after") if retry_after_str is not None: retry_after = int(retry_after_str) else: @@ -711,7 +739,7 @@ def _get_route_url(self, hostname, route_name): :param str route_name: Name of the route. :rtype: str """ - return 'https://{hostname}/{version}/{route_name}'.format( + return "https://{hostname}/{version}/{route_name}".format( hostname=hostname, version=Dropbox._API_VERSION, route_name=route_name, @@ -726,7 +754,7 @@ def _save_body_to_file(self, download_path, http_resp, chunksize=2**16): :type http_resp: :class:`requests.models.Response` :rtype: None """ - with open(download_path, 'wb') as f: + with open(download_path, "wb") as f: with contextlib.closing(http_resp): for c in http_resp.iter_content(chunksize): f.write(c) @@ -750,9 +778,7 @@ def with_path_root(self, path_root): new_headers = self._headers.copy() if self._headers else {} new_headers[PATH_ROOT_HEADER] = stone_serializers.json_encode(PathRoot_validator, path_root) - return self.clone( - headers=new_headers - ) + return self.clone(headers=new_headers) def close(self): """ @@ -773,14 +799,17 @@ class Dropbox(_DropboxTransport, DropboxBase): token. Methods of this class are meant to act on the corresponding user's Dropbox. """ + pass + class DropboxTeam(_DropboxTransport, DropboxTeamBase): """ Use this class to make requests to the Dropbox API using a team's access token. Methods of this class are meant to act on the team, but there is also an :meth:`as_user` method for assuming a team member's identity. """ + def as_admin(self, team_member_id): """ Allows a team credential to assume the identity of an administrator on the team @@ -791,8 +820,7 @@ def as_admin(self, team_member_id): of this admin of the team. :rtype: Dropbox """ - return self._get_dropbox_client_with_select_header(SELECT_ADMIN_HEADER, - team_member_id) + return self._get_dropbox_client_with_select_header(SELECT_ADMIN_HEADER, team_member_id) def as_user(self, team_member_id): """ @@ -804,8 +832,7 @@ def as_user(self, team_member_id): of this member of the team. :rtype: Dropbox """ - return self._get_dropbox_client_with_select_header(SELECT_USER_HEADER, - team_member_id) + return self._get_dropbox_client_with_select_header(SELECT_USER_HEADER, team_member_id) def _get_dropbox_client_with_select_header(self, select_header_name, team_member_id): """ @@ -836,6 +863,7 @@ def _get_dropbox_client_with_select_header(self, select_header_name, team_member auto_content_hash=self._auto_content_hash, ) + class BadInputException(Exception): """ Thrown if incorrect types/values are used @@ -843,4 +871,5 @@ class BadInputException(Exception): This should only ever be thrown during testing, app should have validation of input prior to reaching this point """ + pass diff --git a/dropbox/exceptions.py b/dropbox/exceptions.py index 12ac0458..389c1cc6 100644 --- a/dropbox/exceptions.py +++ b/dropbox/exceptions.py @@ -30,7 +30,7 @@ def __init__(self, request_id, error, user_message_text, user_message_locale): self.user_message_locale = user_message_locale def __repr__(self): - return 'ApiError({!r}, {})'.format(self.request_id, self.error) + return "ApiError({!r}, {})".format(self.request_id, self.error) class HttpError(DropboxException): @@ -42,8 +42,7 @@ def __init__(self, request_id, status_code, body): self.body = body def __repr__(self): - return 'HttpError({!r}, {}, {!r})'.format(self.request_id, - self.status_code, self.body) + return "HttpError({!r}, {}, {!r})".format(self.request_id, self.status_code, self.body) class PathRootError(HttpError): @@ -54,7 +53,7 @@ def __init__(self, request_id, error=None): self.error = error def __repr__(self): - return 'PathRootError({!r}, {!r})'.format(self.request_id, self.error) + return "PathRootError({!r}, {!r})".format(self.request_id, self.error) class BadInputError(HttpError): @@ -65,7 +64,7 @@ def __init__(self, request_id, message): self.message = message def __repr__(self): - return 'BadInputError({!r}, {!r})'.format(self.request_id, self.message) + return "BadInputError({!r}, {!r})".format(self.request_id, self.message) class AuthError(HttpError): @@ -76,7 +75,7 @@ def __init__(self, request_id, error): self.error = error def __repr__(self): - return 'AuthError({!r}, {!r})'.format(self.request_id, self.error) + return "AuthError({!r}, {!r})".format(self.request_id, self.error) class RateLimitError(HttpError): @@ -88,13 +87,13 @@ def __init__(self, request_id, error=None, backoff=None): self.backoff = backoff def __repr__(self): - return 'RateLimitError({!r}, {!r}, {!r})'.format( - self.request_id, self.error, self.backoff) + return "RateLimitError({!r}, {!r}, {!r})".format(self.request_id, self.error, self.backoff) class InternalServerError(HttpError): """Errors due to a problem on Dropbox.""" def __repr__(self): - return 'InternalServerError({!r}, {}, {!r})'.format( - self.request_id, self.status_code, self.body) + return "InternalServerError({!r}, {}, {!r})".format( + self.request_id, self.status_code, self.body + ) diff --git a/dropbox/file_properties.py b/dropbox/file_properties.py index 4bae5bd0..9ce245ca 100644 --- a/dropbox/file_properties.py +++ b/dropbox/file_properties.py @@ -27,6 +27,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class AddPropertiesArg(bb.Struct): """ :ivar AddPropertiesArg.path: @@ -37,15 +38,13 @@ class AddPropertiesArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_property_groups_value', + "_path_value", + "_property_groups_value", ] _has_required_fields = True - def __init__(self, - path=None, - property_groups=None): + def __init__(self, path=None, property_groups=None): self._path_value = bb.NOT_SET self._property_groups_value = bb.NOT_SET if path is not None: @@ -60,10 +59,14 @@ def __init__(self, property_groups = bb.Attribute("property_groups") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPropertiesArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddPropertiesArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddPropertiesArg_validator = bv.Struct(AddPropertiesArg) + class TemplateError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -77,7 +80,7 @@ class TemplateError(bb.Union): You do not have permission to modify this template. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition restricted_content = None # Attribute is overwritten below the class definition @@ -92,7 +95,7 @@ def template_not_found(cls, val): :param str val: :rtype: TemplateError """ - return cls('template_not_found', val) + return cls("template_not_found", val) def is_template_not_found(self): """ @@ -100,7 +103,7 @@ def is_template_not_found(self): :rtype: bool """ - return self._tag == 'template_not_found' + return self._tag == "template_not_found" def is_restricted_content(self): """ @@ -108,7 +111,7 @@ def is_restricted_content(self): :rtype: bool """ - return self._tag == 'restricted_content' + return self._tag == "restricted_content" def is_other(self): """ @@ -116,7 +119,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_template_not_found(self): """ @@ -131,10 +134,14 @@ def get_template_not_found(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TemplateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TemplateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TemplateError_validator = bv.Union(TemplateError) + class PropertiesError(TemplateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -158,7 +165,7 @@ def path(cls, val): :param LookupError val: :rtype: PropertiesError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -166,7 +173,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_unsupported_folder(self): """ @@ -174,7 +181,7 @@ def is_unsupported_folder(self): :rtype: bool """ - return self._tag == 'unsupported_folder' + return self._tag == "unsupported_folder" def get_path(self): """ @@ -187,10 +194,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertiesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertiesError_validator = bv.Union(PropertiesError) + class InvalidPropertyGroupError(PropertiesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -220,7 +231,7 @@ def is_property_field_too_large(self): :rtype: bool """ - return self._tag == 'property_field_too_large' + return self._tag == "property_field_too_large" def is_does_not_fit_template(self): """ @@ -228,7 +239,7 @@ def is_does_not_fit_template(self): :rtype: bool """ - return self._tag == 'does_not_fit_template' + return self._tag == "does_not_fit_template" def is_duplicate_property_groups(self): """ @@ -236,13 +247,17 @@ def is_duplicate_property_groups(self): :rtype: bool """ - return self._tag == 'duplicate_property_groups' + return self._tag == "duplicate_property_groups" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InvalidPropertyGroupError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InvalidPropertyGroupError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + InvalidPropertyGroupError_validator = bv.Union(InvalidPropertyGroupError) + class AddPropertiesError(InvalidPropertyGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -262,13 +277,17 @@ def is_property_group_already_exists(self): :rtype: bool """ - return self._tag == 'property_group_already_exists' + return self._tag == "property_group_already_exists" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddPropertiesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddPropertiesError_validator = bv.Union(AddPropertiesError) + class PropertyGroupTemplate(bb.Struct): """ Defines how a property group may be structured. @@ -284,17 +303,14 @@ class PropertyGroupTemplate(bb.Struct): """ __slots__ = [ - '_name_value', - '_description_value', - '_fields_value', + "_name_value", + "_description_value", + "_fields_value", ] _has_required_fields = True - def __init__(self, - name=None, - description=None, - fields=None): + def __init__(self, name=None, description=None, fields=None): self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET self._fields_value = bb.NOT_SET @@ -315,30 +331,31 @@ def __init__(self, fields = bb.Attribute("fields") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyGroupTemplate, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertyGroupTemplate, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertyGroupTemplate_validator = bv.Struct(PropertyGroupTemplate) -class AddTemplateArg(PropertyGroupTemplate): - __slots__ = [ - ] +class AddTemplateArg(PropertyGroupTemplate): + __slots__ = [] _has_required_fields = True - def __init__(self, - name=None, - description=None, - fields=None): - super(AddTemplateArg, self).__init__(name, - description, - fields) + def __init__(self, name=None, description=None, fields=None): + super(AddTemplateArg, self).__init__(name, description, fields) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddTemplateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddTemplateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddTemplateArg_validator = bv.Struct(AddTemplateArg) + class AddTemplateResult(bb.Struct): """ :ivar AddTemplateResult.template_id: @@ -349,13 +366,12 @@ class AddTemplateResult(bb.Struct): """ __slots__ = [ - '_template_id_value', + "_template_id_value", ] _has_required_fields = True - def __init__(self, - template_id=None): + def __init__(self, template_id=None): self._template_id_value = bb.NOT_SET if template_id is not None: self.template_id = template_id @@ -364,10 +380,14 @@ def __init__(self, template_id = bb.Attribute("template_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddTemplateResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddTemplateResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddTemplateResult_validator = bv.Struct(AddTemplateResult) + class GetTemplateArg(bb.Struct): """ :ivar GetTemplateArg.template_id: @@ -378,13 +398,12 @@ class GetTemplateArg(bb.Struct): """ __slots__ = [ - '_template_id_value', + "_template_id_value", ] _has_required_fields = True - def __init__(self, - template_id=None): + def __init__(self, template_id=None): self._template_id_value = bb.NOT_SET if template_id is not None: self.template_id = template_id @@ -393,30 +412,31 @@ def __init__(self, template_id = bb.Attribute("template_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemplateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTemplateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTemplateArg_validator = bv.Struct(GetTemplateArg) -class GetTemplateResult(PropertyGroupTemplate): - __slots__ = [ - ] +class GetTemplateResult(PropertyGroupTemplate): + __slots__ = [] _has_required_fields = True - def __init__(self, - name=None, - description=None, - fields=None): - super(GetTemplateResult, self).__init__(name, - description, - fields) + def __init__(self, name=None, description=None, fields=None): + super(GetTemplateResult, self).__init__(name, description, fields) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemplateResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTemplateResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTemplateResult_validator = bv.Struct(GetTemplateResult) + class ListTemplateResult(bb.Struct): """ :ivar ListTemplateResult.template_ids: @@ -427,13 +447,12 @@ class ListTemplateResult(bb.Struct): """ __slots__ = [ - '_template_ids_value', + "_template_ids_value", ] _has_required_fields = True - def __init__(self, - template_ids=None): + def __init__(self, template_ids=None): self._template_ids_value = bb.NOT_SET if template_ids is not None: self.template_ids = template_ids @@ -442,10 +461,14 @@ def __init__(self, template_ids = bb.Attribute("template_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTemplateResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListTemplateResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListTemplateResult_validator = bv.Struct(ListTemplateResult) + class LogicalOperator(bb.Union): """ Logical operator to join search queries together. @@ -458,7 +481,7 @@ class LogicalOperator(bb.Union): Append a query with an "or" operator. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition or_operator = None # Attribute is overwritten below the class definition @@ -470,7 +493,7 @@ def is_or_operator(self): :rtype: bool """ - return self._tag == 'or_operator' + return self._tag == "or_operator" def is_other(self): """ @@ -478,13 +501,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LogicalOperator, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LogicalOperator, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LogicalOperator_validator = bv.Union(LogicalOperator) + class LookUpPropertiesError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -495,7 +522,7 @@ class LookUpPropertiesError(bb.Union): No property group was found. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition property_group_not_found = None # Attribute is overwritten below the class definition @@ -507,7 +534,7 @@ def is_property_group_not_found(self): :rtype: bool """ - return self._tag == 'property_group_not_found' + return self._tag == "property_group_not_found" def is_other(self): """ @@ -515,13 +542,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LookUpPropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LookUpPropertiesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LookUpPropertiesError_validator = bv.Union(LookUpPropertiesError) + class LookupError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -541,7 +572,7 @@ class LookupError(bb.Union): example, we might restrict a file due to legal requirements. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -562,7 +593,7 @@ def malformed_path(cls, val): :param str val: :rtype: LookupError """ - return cls('malformed_path', val) + return cls("malformed_path", val) def is_malformed_path(self): """ @@ -570,7 +601,7 @@ def is_malformed_path(self): :rtype: bool """ - return self._tag == 'malformed_path' + return self._tag == "malformed_path" def is_not_found(self): """ @@ -578,7 +609,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_not_file(self): """ @@ -586,7 +617,7 @@ def is_not_file(self): :rtype: bool """ - return self._tag == 'not_file' + return self._tag == "not_file" def is_not_folder(self): """ @@ -594,7 +625,7 @@ def is_not_folder(self): :rtype: bool """ - return self._tag == 'not_folder' + return self._tag == "not_folder" def is_restricted_content(self): """ @@ -602,7 +633,7 @@ def is_restricted_content(self): :rtype: bool """ - return self._tag == 'restricted_content' + return self._tag == "restricted_content" def is_other(self): """ @@ -610,7 +641,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_malformed_path(self): """ @@ -625,8 +656,10 @@ def get_malformed_path(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(LookupError, self)._process_custom_annotations(annotation_type, field_path, processor) + LookupError_validator = bv.Union(LookupError) + class ModifyTemplateError(TemplateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -660,7 +693,7 @@ def is_conflicting_property_names(self): :rtype: bool """ - return self._tag == 'conflicting_property_names' + return self._tag == "conflicting_property_names" def is_too_many_properties(self): """ @@ -668,7 +701,7 @@ def is_too_many_properties(self): :rtype: bool """ - return self._tag == 'too_many_properties' + return self._tag == "too_many_properties" def is_too_many_templates(self): """ @@ -676,7 +709,7 @@ def is_too_many_templates(self): :rtype: bool """ - return self._tag == 'too_many_templates' + return self._tag == "too_many_templates" def is_template_attribute_too_large(self): """ @@ -684,13 +717,17 @@ def is_template_attribute_too_large(self): :rtype: bool """ - return self._tag == 'template_attribute_too_large' + return self._tag == "template_attribute_too_large" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ModifyTemplateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ModifyTemplateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ModifyTemplateError_validator = bv.Union(ModifyTemplateError) + class OverwritePropertyGroupArg(bb.Struct): """ :ivar OverwritePropertyGroupArg.path: @@ -701,15 +738,13 @@ class OverwritePropertyGroupArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_property_groups_value', + "_path_value", + "_property_groups_value", ] _has_required_fields = True - def __init__(self, - path=None, - property_groups=None): + def __init__(self, path=None, property_groups=None): self._path_value = bb.NOT_SET self._property_groups_value = bb.NOT_SET if path is not None: @@ -724,10 +759,14 @@ def __init__(self, property_groups = bb.Attribute("property_groups") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OverwritePropertyGroupArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OverwritePropertyGroupArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OverwritePropertyGroupArg_validator = bv.Struct(OverwritePropertyGroupArg) + class PropertiesSearchArg(bb.Struct): """ :ivar PropertiesSearchArg.queries: @@ -738,15 +777,13 @@ class PropertiesSearchArg(bb.Struct): """ __slots__ = [ - '_queries_value', - '_template_filter_value', + "_queries_value", + "_template_filter_value", ] _has_required_fields = True - def __init__(self, - queries=None, - template_filter=None): + def __init__(self, queries=None, template_filter=None): self._queries_value = bb.NOT_SET self._template_filter_value = bb.NOT_SET if queries is not None: @@ -761,10 +798,14 @@ def __init__(self, template_filter = bb.Attribute("template_filter", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertiesSearchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertiesSearchArg_validator = bv.Struct(PropertiesSearchArg) + class PropertiesSearchContinueArg(bb.Struct): """ :ivar PropertiesSearchContinueArg.cursor: @@ -775,13 +816,12 @@ class PropertiesSearchContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -790,10 +830,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertiesSearchContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertiesSearchContinueArg_validator = bv.Struct(PropertiesSearchContinueArg) + class PropertiesSearchContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -806,7 +850,7 @@ class PropertiesSearchContinueError(bb.Union): to obtain a new cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -818,7 +862,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -826,13 +870,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertiesSearchContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertiesSearchContinueError_validator = bv.Union(PropertiesSearchContinueError) + class PropertiesSearchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -840,7 +888,7 @@ class PropertiesSearchError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -853,7 +901,7 @@ def property_group_lookup(cls, val): :param LookUpPropertiesError val: :rtype: PropertiesSearchError """ - return cls('property_group_lookup', val) + return cls("property_group_lookup", val) def is_property_group_lookup(self): """ @@ -861,7 +909,7 @@ def is_property_group_lookup(self): :rtype: bool """ - return self._tag == 'property_group_lookup' + return self._tag == "property_group_lookup" def is_other(self): """ @@ -869,7 +917,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_property_group_lookup(self): """ @@ -882,10 +930,14 @@ def get_property_group_lookup(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertiesSearchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertiesSearchError_validator = bv.Union(PropertiesSearchError) + class PropertiesSearchMatch(bb.Struct): """ :ivar PropertiesSearchMatch.id: @@ -899,19 +951,15 @@ class PropertiesSearchMatch(bb.Struct): """ __slots__ = [ - '_id_value', - '_path_value', - '_is_deleted_value', - '_property_groups_value', + "_id_value", + "_path_value", + "_is_deleted_value", + "_property_groups_value", ] _has_required_fields = True - def __init__(self, - id=None, - path=None, - is_deleted=None, - property_groups=None): + def __init__(self, id=None, path=None, is_deleted=None, property_groups=None): self._id_value = bb.NOT_SET self._path_value = bb.NOT_SET self._is_deleted_value = bb.NOT_SET @@ -938,10 +986,14 @@ def __init__(self, property_groups = bb.Attribute("property_groups") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchMatch, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertiesSearchMatch, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertiesSearchMatch_validator = bv.Struct(PropertiesSearchMatch) + class PropertiesSearchMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -953,7 +1005,7 @@ class PropertiesSearchMode(bb.Union): :vartype PropertiesSearchMode.field_name: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -966,7 +1018,7 @@ def field_name(cls, val): :param str val: :rtype: PropertiesSearchMode """ - return cls('field_name', val) + return cls("field_name", val) def is_field_name(self): """ @@ -974,7 +1026,7 @@ def is_field_name(self): :rtype: bool """ - return self._tag == 'field_name' + return self._tag == "field_name" def is_other(self): """ @@ -982,7 +1034,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_field_name(self): """ @@ -997,10 +1049,14 @@ def get_field_name(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchMode, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertiesSearchMode, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertiesSearchMode_validator = bv.Union(PropertiesSearchMode) + class PropertiesSearchQuery(bb.Struct): """ :ivar PropertiesSearchQuery.query: @@ -1012,17 +1068,14 @@ class PropertiesSearchQuery(bb.Struct): """ __slots__ = [ - '_query_value', - '_mode_value', - '_logical_operator_value', + "_query_value", + "_mode_value", + "_logical_operator_value", ] _has_required_fields = True - def __init__(self, - query=None, - mode=None, - logical_operator=None): + def __init__(self, query=None, mode=None, logical_operator=None): self._query_value = bb.NOT_SET self._mode_value = bb.NOT_SET self._logical_operator_value = bb.NOT_SET @@ -1043,10 +1096,14 @@ def __init__(self, logical_operator = bb.Attribute("logical_operator", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchQuery, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertiesSearchQuery, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertiesSearchQuery_validator = bv.Struct(PropertiesSearchQuery) + class PropertiesSearchResult(bb.Struct): """ :ivar PropertiesSearchResult.matches: @@ -1059,15 +1116,13 @@ class PropertiesSearchResult(bb.Struct): """ __slots__ = [ - '_matches_value', - '_cursor_value', + "_matches_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - matches=None, - cursor=None): + def __init__(self, matches=None, cursor=None): self._matches_value = bb.NOT_SET self._cursor_value = bb.NOT_SET if matches is not None: @@ -1082,10 +1137,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertiesSearchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertiesSearchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertiesSearchResult_validator = bv.Struct(PropertiesSearchResult) + class PropertyField(bb.Struct): """ Raw key/value data to be associated with a Dropbox file. Property fields are @@ -1100,15 +1159,13 @@ class PropertyField(bb.Struct): """ __slots__ = [ - '_name_value', - '_value_value', + "_name_value", + "_value_value", ] _has_required_fields = True - def __init__(self, - name=None, - value=None): + def __init__(self, name=None, value=None): self._name_value = bb.NOT_SET self._value_value = bb.NOT_SET if name is not None: @@ -1123,10 +1180,14 @@ def __init__(self, value = bb.Attribute("value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyField, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertyField, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertyField_validator = bv.Struct(PropertyField) + class PropertyFieldTemplate(bb.Struct): """ Defines how a single property field may be structured. Used exclusively by @@ -1141,17 +1202,14 @@ class PropertyFieldTemplate(bb.Struct): """ __slots__ = [ - '_name_value', - '_description_value', - '_type_value', + "_name_value", + "_description_value", + "_type_value", ] _has_required_fields = True - def __init__(self, - name=None, - description=None, - type=None): + def __init__(self, name=None, description=None, type=None): self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET self._type_value = bb.NOT_SET @@ -1172,10 +1230,14 @@ def __init__(self, type = bb.Attribute("type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyFieldTemplate, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertyFieldTemplate, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertyFieldTemplate_validator = bv.Struct(PropertyFieldTemplate) + class PropertyGroup(bb.Struct): """ A subset of the property fields described by the corresponding @@ -1191,15 +1253,13 @@ class PropertyGroup(bb.Struct): """ __slots__ = [ - '_template_id_value', - '_fields_value', + "_template_id_value", + "_fields_value", ] _has_required_fields = True - def __init__(self, - template_id=None, - fields=None): + def __init__(self, template_id=None, fields=None): self._template_id_value = bb.NOT_SET self._fields_value = bb.NOT_SET if template_id is not None: @@ -1214,10 +1274,14 @@ def __init__(self, fields = bb.Attribute("fields") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyGroup, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertyGroup, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertyGroup_validator = bv.Struct(PropertyGroup) + class PropertyGroupUpdate(bb.Struct): """ Property routes @@ -1233,17 +1297,14 @@ class PropertyGroupUpdate(bb.Struct): """ __slots__ = [ - '_template_id_value', - '_add_or_update_fields_value', - '_remove_fields_value', + "_template_id_value", + "_add_or_update_fields_value", + "_remove_fields_value", ] _has_required_fields = True - def __init__(self, - template_id=None, - add_or_update_fields=None, - remove_fields=None): + def __init__(self, template_id=None, add_or_update_fields=None, remove_fields=None): self._template_id_value = bb.NOT_SET self._add_or_update_fields_value = bb.NOT_SET self._remove_fields_value = bb.NOT_SET @@ -1264,10 +1325,14 @@ def __init__(self, remove_fields = bb.Attribute("remove_fields", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyGroupUpdate, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertyGroupUpdate, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertyGroupUpdate_validator = bv.Struct(PropertyGroupUpdate) + class PropertyType(bb.Union): """ Data type of the given property field added. @@ -1281,7 +1346,7 @@ class PropertyType(bb.Union): supported. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition string = None # Attribute is overwritten below the class definition @@ -1293,7 +1358,7 @@ def is_string(self): :rtype: bool """ - return self._tag == 'string' + return self._tag == "string" def is_other(self): """ @@ -1301,13 +1366,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PropertyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PropertyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PropertyType_validator = bv.Union(PropertyType) + class RemovePropertiesArg(bb.Struct): """ :ivar RemovePropertiesArg.path: @@ -1320,15 +1389,13 @@ class RemovePropertiesArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_property_template_ids_value', + "_path_value", + "_property_template_ids_value", ] _has_required_fields = True - def __init__(self, - path=None, - property_template_ids=None): + def __init__(self, path=None, property_template_ids=None): self._path_value = bb.NOT_SET self._property_template_ids_value = bb.NOT_SET if path is not None: @@ -1343,10 +1410,14 @@ def __init__(self, property_template_ids = bb.Attribute("property_template_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemovePropertiesArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemovePropertiesArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemovePropertiesArg_validator = bv.Struct(RemovePropertiesArg) + class RemovePropertiesError(PropertiesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1363,7 +1434,7 @@ def property_group_lookup(cls, val): :param LookUpPropertiesError val: :rtype: RemovePropertiesError """ - return cls('property_group_lookup', val) + return cls("property_group_lookup", val) def is_property_group_lookup(self): """ @@ -1371,7 +1442,7 @@ def is_property_group_lookup(self): :rtype: bool """ - return self._tag == 'property_group_lookup' + return self._tag == "property_group_lookup" def get_property_group_lookup(self): """ @@ -1384,10 +1455,14 @@ def get_property_group_lookup(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemovePropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemovePropertiesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemovePropertiesError_validator = bv.Union(RemovePropertiesError) + class RemoveTemplateArg(bb.Struct): """ :ivar RemoveTemplateArg.template_id: @@ -1398,13 +1473,12 @@ class RemoveTemplateArg(bb.Struct): """ __slots__ = [ - '_template_id_value', + "_template_id_value", ] _has_required_fields = True - def __init__(self, - template_id=None): + def __init__(self, template_id=None): self._template_id_value = bb.NOT_SET if template_id is not None: self.template_id = template_id @@ -1413,10 +1487,14 @@ def __init__(self, template_id = bb.Attribute("template_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveTemplateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemoveTemplateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemoveTemplateArg_validator = bv.Struct(RemoveTemplateArg) + class TemplateFilterBase(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1429,7 +1507,7 @@ class TemplateFilterBase(bb.Union): :vartype TemplateFilterBase.filter_some: list of [str] """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -1442,7 +1520,7 @@ def filter_some(cls, val): :param list of [str] val: :rtype: TemplateFilterBase """ - return cls('filter_some', val) + return cls("filter_some", val) def is_filter_some(self): """ @@ -1450,7 +1528,7 @@ def is_filter_some(self): :rtype: bool """ - return self._tag == 'filter_some' + return self._tag == "filter_some" def is_other(self): """ @@ -1458,7 +1536,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_filter_some(self): """ @@ -1474,10 +1552,14 @@ def get_filter_some(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TemplateFilterBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TemplateFilterBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TemplateFilterBase_validator = bv.Union(TemplateFilterBase) + class TemplateFilter(TemplateFilterBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1498,13 +1580,17 @@ def is_filter_none(self): :rtype: bool """ - return self._tag == 'filter_none' + return self._tag == "filter_none" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TemplateFilter, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TemplateFilter, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TemplateFilter_validator = bv.Union(TemplateFilter) + class TemplateOwnerType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1517,7 +1603,7 @@ class TemplateOwnerType(bb.Union): Template will be associated with a team. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition user = None # Attribute is overwritten below the class definition @@ -1531,7 +1617,7 @@ def is_user(self): :rtype: bool """ - return self._tag == 'user' + return self._tag == "user" def is_team(self): """ @@ -1539,7 +1625,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_other(self): """ @@ -1547,13 +1633,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TemplateOwnerType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TemplateOwnerType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TemplateOwnerType_validator = bv.Union(TemplateOwnerType) + class UpdatePropertiesArg(bb.Struct): """ :ivar UpdatePropertiesArg.path: @@ -1563,15 +1653,13 @@ class UpdatePropertiesArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_update_property_groups_value', + "_path_value", + "_update_property_groups_value", ] _has_required_fields = True - def __init__(self, - path=None, - update_property_groups=None): + def __init__(self, path=None, update_property_groups=None): self._path_value = bb.NOT_SET self._update_property_groups_value = bb.NOT_SET if path is not None: @@ -1586,10 +1674,14 @@ def __init__(self, update_property_groups = bb.Attribute("update_property_groups") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdatePropertiesArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdatePropertiesArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdatePropertiesArg_validator = bv.Struct(UpdatePropertiesArg) + class UpdatePropertiesError(InvalidPropertyGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1606,7 +1698,7 @@ def property_group_lookup(cls, val): :param LookUpPropertiesError val: :rtype: UpdatePropertiesError """ - return cls('property_group_lookup', val) + return cls("property_group_lookup", val) def is_property_group_lookup(self): """ @@ -1614,7 +1706,7 @@ def is_property_group_lookup(self): :rtype: bool """ - return self._tag == 'property_group_lookup' + return self._tag == "property_group_lookup" def get_property_group_lookup(self): """ @@ -1627,10 +1719,14 @@ def get_property_group_lookup(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdatePropertiesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdatePropertiesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdatePropertiesError_validator = bv.Union(UpdatePropertiesError) + class UpdateTemplateArg(bb.Struct): """ :ivar UpdateTemplateArg.template_id: @@ -1649,19 +1745,15 @@ class UpdateTemplateArg(bb.Struct): """ __slots__ = [ - '_template_id_value', - '_name_value', - '_description_value', - '_add_fields_value', + "_template_id_value", + "_name_value", + "_description_value", + "_add_fields_value", ] _has_required_fields = True - def __init__(self, - template_id=None, - name=None, - description=None, - add_fields=None): + def __init__(self, template_id=None, name=None, description=None, add_fields=None): self._template_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET @@ -1688,10 +1780,14 @@ def __init__(self, add_fields = bb.Attribute("add_fields", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateTemplateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateTemplateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateTemplateArg_validator = bv.Struct(UpdateTemplateArg) + class UpdateTemplateResult(bb.Struct): """ :ivar UpdateTemplateResult.template_id: @@ -1702,13 +1798,12 @@ class UpdateTemplateResult(bb.Struct): """ __slots__ = [ - '_template_id_value', + "_template_id_value", ] _has_required_fields = True - def __init__(self, - template_id=None): + def __init__(self, template_id=None): self._template_id_value = bb.NOT_SET if template_id is not None: self.template_id = template_id @@ -1717,120 +1812,133 @@ def __init__(self, template_id = bb.Attribute("template_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateTemplateResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateTemplateResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateTemplateResult_validator = bv.Struct(UpdateTemplateResult) Id_validator = bv.String(min_length=1) -PathOrId_validator = bv.String(pattern='/(.|[\\r\\n])*|id:.*|(ns:[0-9]+(/.*)?)') +PathOrId_validator = bv.String(pattern="/(.|[\\r\\n])*|id:.*|(ns:[0-9]+(/.*)?)") PropertiesSearchCursor_validator = bv.String(min_length=1) -TemplateId_validator = bv.String(min_length=1, pattern='(/|ptid:).*') +TemplateId_validator = bv.String(min_length=1, pattern="(/|ptid:).*") AddPropertiesArg.path.validator = PathOrId_validator AddPropertiesArg.property_groups.validator = bv.List(PropertyGroup_validator) -AddPropertiesArg._all_field_names_ = set([ - 'path', - 'property_groups', -]) +AddPropertiesArg._all_field_names_ = set( + [ + "path", + "property_groups", + ] +) AddPropertiesArg._all_fields_ = [ - ('path', AddPropertiesArg.path.validator), - ('property_groups', AddPropertiesArg.property_groups.validator), + ("path", AddPropertiesArg.path.validator), + ("property_groups", AddPropertiesArg.property_groups.validator), ] TemplateError._template_not_found_validator = TemplateId_validator TemplateError._restricted_content_validator = bv.Void() TemplateError._other_validator = bv.Void() TemplateError._tagmap = { - 'template_not_found': TemplateError._template_not_found_validator, - 'restricted_content': TemplateError._restricted_content_validator, - 'other': TemplateError._other_validator, + "template_not_found": TemplateError._template_not_found_validator, + "restricted_content": TemplateError._restricted_content_validator, + "other": TemplateError._other_validator, } -TemplateError.restricted_content = TemplateError('restricted_content') -TemplateError.other = TemplateError('other') +TemplateError.restricted_content = TemplateError("restricted_content") +TemplateError.other = TemplateError("other") PropertiesError._path_validator = LookupError_validator PropertiesError._unsupported_folder_validator = bv.Void() PropertiesError._tagmap = { - 'path': PropertiesError._path_validator, - 'unsupported_folder': PropertiesError._unsupported_folder_validator, + "path": PropertiesError._path_validator, + "unsupported_folder": PropertiesError._unsupported_folder_validator, } PropertiesError._tagmap.update(TemplateError._tagmap) -PropertiesError.unsupported_folder = PropertiesError('unsupported_folder') +PropertiesError.unsupported_folder = PropertiesError("unsupported_folder") InvalidPropertyGroupError._property_field_too_large_validator = bv.Void() InvalidPropertyGroupError._does_not_fit_template_validator = bv.Void() InvalidPropertyGroupError._duplicate_property_groups_validator = bv.Void() InvalidPropertyGroupError._tagmap = { - 'property_field_too_large': InvalidPropertyGroupError._property_field_too_large_validator, - 'does_not_fit_template': InvalidPropertyGroupError._does_not_fit_template_validator, - 'duplicate_property_groups': InvalidPropertyGroupError._duplicate_property_groups_validator, + "property_field_too_large": InvalidPropertyGroupError._property_field_too_large_validator, + "does_not_fit_template": InvalidPropertyGroupError._does_not_fit_template_validator, + "duplicate_property_groups": InvalidPropertyGroupError._duplicate_property_groups_validator, } InvalidPropertyGroupError._tagmap.update(PropertiesError._tagmap) -InvalidPropertyGroupError.property_field_too_large = InvalidPropertyGroupError('property_field_too_large') -InvalidPropertyGroupError.does_not_fit_template = InvalidPropertyGroupError('does_not_fit_template') -InvalidPropertyGroupError.duplicate_property_groups = InvalidPropertyGroupError('duplicate_property_groups') +InvalidPropertyGroupError.property_field_too_large = InvalidPropertyGroupError( + "property_field_too_large" +) +InvalidPropertyGroupError.does_not_fit_template = InvalidPropertyGroupError("does_not_fit_template") +InvalidPropertyGroupError.duplicate_property_groups = InvalidPropertyGroupError( + "duplicate_property_groups" +) AddPropertiesError._property_group_already_exists_validator = bv.Void() AddPropertiesError._tagmap = { - 'property_group_already_exists': AddPropertiesError._property_group_already_exists_validator, + "property_group_already_exists": AddPropertiesError._property_group_already_exists_validator, } AddPropertiesError._tagmap.update(InvalidPropertyGroupError._tagmap) -AddPropertiesError.property_group_already_exists = AddPropertiesError('property_group_already_exists') +AddPropertiesError.property_group_already_exists = AddPropertiesError( + "property_group_already_exists" +) PropertyGroupTemplate.name.validator = bv.String() PropertyGroupTemplate.description.validator = bv.String() PropertyGroupTemplate.fields.validator = bv.List(PropertyFieldTemplate_validator) -PropertyGroupTemplate._all_field_names_ = set([ - 'name', - 'description', - 'fields', -]) +PropertyGroupTemplate._all_field_names_ = set( + [ + "name", + "description", + "fields", + ] +) PropertyGroupTemplate._all_fields_ = [ - ('name', PropertyGroupTemplate.name.validator), - ('description', PropertyGroupTemplate.description.validator), - ('fields', PropertyGroupTemplate.fields.validator), + ("name", PropertyGroupTemplate.name.validator), + ("description", PropertyGroupTemplate.description.validator), + ("fields", PropertyGroupTemplate.fields.validator), ] AddTemplateArg._all_field_names_ = PropertyGroupTemplate._all_field_names_.union(set([])) AddTemplateArg._all_fields_ = PropertyGroupTemplate._all_fields_ + [] AddTemplateResult.template_id.validator = TemplateId_validator -AddTemplateResult._all_field_names_ = set(['template_id']) -AddTemplateResult._all_fields_ = [('template_id', AddTemplateResult.template_id.validator)] +AddTemplateResult._all_field_names_ = set(["template_id"]) +AddTemplateResult._all_fields_ = [("template_id", AddTemplateResult.template_id.validator)] GetTemplateArg.template_id.validator = TemplateId_validator -GetTemplateArg._all_field_names_ = set(['template_id']) -GetTemplateArg._all_fields_ = [('template_id', GetTemplateArg.template_id.validator)] +GetTemplateArg._all_field_names_ = set(["template_id"]) +GetTemplateArg._all_fields_ = [("template_id", GetTemplateArg.template_id.validator)] GetTemplateResult._all_field_names_ = PropertyGroupTemplate._all_field_names_.union(set([])) GetTemplateResult._all_fields_ = PropertyGroupTemplate._all_fields_ + [] ListTemplateResult.template_ids.validator = bv.List(TemplateId_validator) -ListTemplateResult._all_field_names_ = set(['template_ids']) -ListTemplateResult._all_fields_ = [('template_ids', ListTemplateResult.template_ids.validator)] +ListTemplateResult._all_field_names_ = set(["template_ids"]) +ListTemplateResult._all_fields_ = [("template_ids", ListTemplateResult.template_ids.validator)] LogicalOperator._or_operator_validator = bv.Void() LogicalOperator._other_validator = bv.Void() LogicalOperator._tagmap = { - 'or_operator': LogicalOperator._or_operator_validator, - 'other': LogicalOperator._other_validator, + "or_operator": LogicalOperator._or_operator_validator, + "other": LogicalOperator._other_validator, } -LogicalOperator.or_operator = LogicalOperator('or_operator') -LogicalOperator.other = LogicalOperator('other') +LogicalOperator.or_operator = LogicalOperator("or_operator") +LogicalOperator.other = LogicalOperator("other") LookUpPropertiesError._property_group_not_found_validator = bv.Void() LookUpPropertiesError._other_validator = bv.Void() LookUpPropertiesError._tagmap = { - 'property_group_not_found': LookUpPropertiesError._property_group_not_found_validator, - 'other': LookUpPropertiesError._other_validator, + "property_group_not_found": LookUpPropertiesError._property_group_not_found_validator, + "other": LookUpPropertiesError._other_validator, } -LookUpPropertiesError.property_group_not_found = LookUpPropertiesError('property_group_not_found') -LookUpPropertiesError.other = LookUpPropertiesError('other') +LookUpPropertiesError.property_group_not_found = LookUpPropertiesError("property_group_not_found") +LookUpPropertiesError.other = LookUpPropertiesError("other") LookupError._malformed_path_validator = bv.String() LookupError._not_found_validator = bv.Void() @@ -1839,258 +1947,284 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LookupError._restricted_content_validator = bv.Void() LookupError._other_validator = bv.Void() LookupError._tagmap = { - 'malformed_path': LookupError._malformed_path_validator, - 'not_found': LookupError._not_found_validator, - 'not_file': LookupError._not_file_validator, - 'not_folder': LookupError._not_folder_validator, - 'restricted_content': LookupError._restricted_content_validator, - 'other': LookupError._other_validator, + "malformed_path": LookupError._malformed_path_validator, + "not_found": LookupError._not_found_validator, + "not_file": LookupError._not_file_validator, + "not_folder": LookupError._not_folder_validator, + "restricted_content": LookupError._restricted_content_validator, + "other": LookupError._other_validator, } -LookupError.not_found = LookupError('not_found') -LookupError.not_file = LookupError('not_file') -LookupError.not_folder = LookupError('not_folder') -LookupError.restricted_content = LookupError('restricted_content') -LookupError.other = LookupError('other') +LookupError.not_found = LookupError("not_found") +LookupError.not_file = LookupError("not_file") +LookupError.not_folder = LookupError("not_folder") +LookupError.restricted_content = LookupError("restricted_content") +LookupError.other = LookupError("other") ModifyTemplateError._conflicting_property_names_validator = bv.Void() ModifyTemplateError._too_many_properties_validator = bv.Void() ModifyTemplateError._too_many_templates_validator = bv.Void() ModifyTemplateError._template_attribute_too_large_validator = bv.Void() ModifyTemplateError._tagmap = { - 'conflicting_property_names': ModifyTemplateError._conflicting_property_names_validator, - 'too_many_properties': ModifyTemplateError._too_many_properties_validator, - 'too_many_templates': ModifyTemplateError._too_many_templates_validator, - 'template_attribute_too_large': ModifyTemplateError._template_attribute_too_large_validator, + "conflicting_property_names": ModifyTemplateError._conflicting_property_names_validator, + "too_many_properties": ModifyTemplateError._too_many_properties_validator, + "too_many_templates": ModifyTemplateError._too_many_templates_validator, + "template_attribute_too_large": ModifyTemplateError._template_attribute_too_large_validator, } ModifyTemplateError._tagmap.update(TemplateError._tagmap) -ModifyTemplateError.conflicting_property_names = ModifyTemplateError('conflicting_property_names') -ModifyTemplateError.too_many_properties = ModifyTemplateError('too_many_properties') -ModifyTemplateError.too_many_templates = ModifyTemplateError('too_many_templates') -ModifyTemplateError.template_attribute_too_large = ModifyTemplateError('template_attribute_too_large') +ModifyTemplateError.conflicting_property_names = ModifyTemplateError("conflicting_property_names") +ModifyTemplateError.too_many_properties = ModifyTemplateError("too_many_properties") +ModifyTemplateError.too_many_templates = ModifyTemplateError("too_many_templates") +ModifyTemplateError.template_attribute_too_large = ModifyTemplateError( + "template_attribute_too_large" +) OverwritePropertyGroupArg.path.validator = PathOrId_validator OverwritePropertyGroupArg.property_groups.validator = bv.List(PropertyGroup_validator, min_items=1) -OverwritePropertyGroupArg._all_field_names_ = set([ - 'path', - 'property_groups', -]) +OverwritePropertyGroupArg._all_field_names_ = set( + [ + "path", + "property_groups", + ] +) OverwritePropertyGroupArg._all_fields_ = [ - ('path', OverwritePropertyGroupArg.path.validator), - ('property_groups', OverwritePropertyGroupArg.property_groups.validator), + ("path", OverwritePropertyGroupArg.path.validator), + ("property_groups", OverwritePropertyGroupArg.property_groups.validator), ] PropertiesSearchArg.queries.validator = bv.List(PropertiesSearchQuery_validator, min_items=1) PropertiesSearchArg.template_filter.validator = TemplateFilter_validator -PropertiesSearchArg._all_field_names_ = set([ - 'queries', - 'template_filter', -]) +PropertiesSearchArg._all_field_names_ = set( + [ + "queries", + "template_filter", + ] +) PropertiesSearchArg._all_fields_ = [ - ('queries', PropertiesSearchArg.queries.validator), - ('template_filter', PropertiesSearchArg.template_filter.validator), + ("queries", PropertiesSearchArg.queries.validator), + ("template_filter", PropertiesSearchArg.template_filter.validator), ] PropertiesSearchContinueArg.cursor.validator = PropertiesSearchCursor_validator -PropertiesSearchContinueArg._all_field_names_ = set(['cursor']) -PropertiesSearchContinueArg._all_fields_ = [('cursor', PropertiesSearchContinueArg.cursor.validator)] +PropertiesSearchContinueArg._all_field_names_ = set(["cursor"]) +PropertiesSearchContinueArg._all_fields_ = [ + ("cursor", PropertiesSearchContinueArg.cursor.validator) +] PropertiesSearchContinueError._reset_validator = bv.Void() PropertiesSearchContinueError._other_validator = bv.Void() PropertiesSearchContinueError._tagmap = { - 'reset': PropertiesSearchContinueError._reset_validator, - 'other': PropertiesSearchContinueError._other_validator, + "reset": PropertiesSearchContinueError._reset_validator, + "other": PropertiesSearchContinueError._other_validator, } -PropertiesSearchContinueError.reset = PropertiesSearchContinueError('reset') -PropertiesSearchContinueError.other = PropertiesSearchContinueError('other') +PropertiesSearchContinueError.reset = PropertiesSearchContinueError("reset") +PropertiesSearchContinueError.other = PropertiesSearchContinueError("other") PropertiesSearchError._property_group_lookup_validator = LookUpPropertiesError_validator PropertiesSearchError._other_validator = bv.Void() PropertiesSearchError._tagmap = { - 'property_group_lookup': PropertiesSearchError._property_group_lookup_validator, - 'other': PropertiesSearchError._other_validator, + "property_group_lookup": PropertiesSearchError._property_group_lookup_validator, + "other": PropertiesSearchError._other_validator, } -PropertiesSearchError.other = PropertiesSearchError('other') +PropertiesSearchError.other = PropertiesSearchError("other") PropertiesSearchMatch.id.validator = Id_validator PropertiesSearchMatch.path.validator = bv.String() PropertiesSearchMatch.is_deleted.validator = bv.Boolean() PropertiesSearchMatch.property_groups.validator = bv.List(PropertyGroup_validator) -PropertiesSearchMatch._all_field_names_ = set([ - 'id', - 'path', - 'is_deleted', - 'property_groups', -]) +PropertiesSearchMatch._all_field_names_ = set( + [ + "id", + "path", + "is_deleted", + "property_groups", + ] +) PropertiesSearchMatch._all_fields_ = [ - ('id', PropertiesSearchMatch.id.validator), - ('path', PropertiesSearchMatch.path.validator), - ('is_deleted', PropertiesSearchMatch.is_deleted.validator), - ('property_groups', PropertiesSearchMatch.property_groups.validator), + ("id", PropertiesSearchMatch.id.validator), + ("path", PropertiesSearchMatch.path.validator), + ("is_deleted", PropertiesSearchMatch.is_deleted.validator), + ("property_groups", PropertiesSearchMatch.property_groups.validator), ] PropertiesSearchMode._field_name_validator = bv.String() PropertiesSearchMode._other_validator = bv.Void() PropertiesSearchMode._tagmap = { - 'field_name': PropertiesSearchMode._field_name_validator, - 'other': PropertiesSearchMode._other_validator, + "field_name": PropertiesSearchMode._field_name_validator, + "other": PropertiesSearchMode._other_validator, } -PropertiesSearchMode.other = PropertiesSearchMode('other') +PropertiesSearchMode.other = PropertiesSearchMode("other") PropertiesSearchQuery.query.validator = bv.String() PropertiesSearchQuery.mode.validator = PropertiesSearchMode_validator PropertiesSearchQuery.logical_operator.validator = LogicalOperator_validator -PropertiesSearchQuery._all_field_names_ = set([ - 'query', - 'mode', - 'logical_operator', -]) +PropertiesSearchQuery._all_field_names_ = set( + [ + "query", + "mode", + "logical_operator", + ] +) PropertiesSearchQuery._all_fields_ = [ - ('query', PropertiesSearchQuery.query.validator), - ('mode', PropertiesSearchQuery.mode.validator), - ('logical_operator', PropertiesSearchQuery.logical_operator.validator), + ("query", PropertiesSearchQuery.query.validator), + ("mode", PropertiesSearchQuery.mode.validator), + ("logical_operator", PropertiesSearchQuery.logical_operator.validator), ] PropertiesSearchResult.matches.validator = bv.List(PropertiesSearchMatch_validator) PropertiesSearchResult.cursor.validator = bv.Nullable(PropertiesSearchCursor_validator) -PropertiesSearchResult._all_field_names_ = set([ - 'matches', - 'cursor', -]) +PropertiesSearchResult._all_field_names_ = set( + [ + "matches", + "cursor", + ] +) PropertiesSearchResult._all_fields_ = [ - ('matches', PropertiesSearchResult.matches.validator), - ('cursor', PropertiesSearchResult.cursor.validator), + ("matches", PropertiesSearchResult.matches.validator), + ("cursor", PropertiesSearchResult.cursor.validator), ] PropertyField.name.validator = bv.String() PropertyField.value.validator = bv.String() -PropertyField._all_field_names_ = set([ - 'name', - 'value', -]) +PropertyField._all_field_names_ = set( + [ + "name", + "value", + ] +) PropertyField._all_fields_ = [ - ('name', PropertyField.name.validator), - ('value', PropertyField.value.validator), + ("name", PropertyField.name.validator), + ("value", PropertyField.value.validator), ] PropertyFieldTemplate.name.validator = bv.String() PropertyFieldTemplate.description.validator = bv.String() PropertyFieldTemplate.type.validator = PropertyType_validator -PropertyFieldTemplate._all_field_names_ = set([ - 'name', - 'description', - 'type', -]) +PropertyFieldTemplate._all_field_names_ = set( + [ + "name", + "description", + "type", + ] +) PropertyFieldTemplate._all_fields_ = [ - ('name', PropertyFieldTemplate.name.validator), - ('description', PropertyFieldTemplate.description.validator), - ('type', PropertyFieldTemplate.type.validator), + ("name", PropertyFieldTemplate.name.validator), + ("description", PropertyFieldTemplate.description.validator), + ("type", PropertyFieldTemplate.type.validator), ] PropertyGroup.template_id.validator = TemplateId_validator PropertyGroup.fields.validator = bv.List(PropertyField_validator) -PropertyGroup._all_field_names_ = set([ - 'template_id', - 'fields', -]) +PropertyGroup._all_field_names_ = set( + [ + "template_id", + "fields", + ] +) PropertyGroup._all_fields_ = [ - ('template_id', PropertyGroup.template_id.validator), - ('fields', PropertyGroup.fields.validator), + ("template_id", PropertyGroup.template_id.validator), + ("fields", PropertyGroup.fields.validator), ] PropertyGroupUpdate.template_id.validator = TemplateId_validator PropertyGroupUpdate.add_or_update_fields.validator = bv.Nullable(bv.List(PropertyField_validator)) PropertyGroupUpdate.remove_fields.validator = bv.Nullable(bv.List(bv.String())) -PropertyGroupUpdate._all_field_names_ = set([ - 'template_id', - 'add_or_update_fields', - 'remove_fields', -]) +PropertyGroupUpdate._all_field_names_ = set( + [ + "template_id", + "add_or_update_fields", + "remove_fields", + ] +) PropertyGroupUpdate._all_fields_ = [ - ('template_id', PropertyGroupUpdate.template_id.validator), - ('add_or_update_fields', PropertyGroupUpdate.add_or_update_fields.validator), - ('remove_fields', PropertyGroupUpdate.remove_fields.validator), + ("template_id", PropertyGroupUpdate.template_id.validator), + ("add_or_update_fields", PropertyGroupUpdate.add_or_update_fields.validator), + ("remove_fields", PropertyGroupUpdate.remove_fields.validator), ] PropertyType._string_validator = bv.Void() PropertyType._other_validator = bv.Void() PropertyType._tagmap = { - 'string': PropertyType._string_validator, - 'other': PropertyType._other_validator, + "string": PropertyType._string_validator, + "other": PropertyType._other_validator, } -PropertyType.string = PropertyType('string') -PropertyType.other = PropertyType('other') +PropertyType.string = PropertyType("string") +PropertyType.other = PropertyType("other") RemovePropertiesArg.path.validator = PathOrId_validator RemovePropertiesArg.property_template_ids.validator = bv.List(TemplateId_validator) -RemovePropertiesArg._all_field_names_ = set([ - 'path', - 'property_template_ids', -]) +RemovePropertiesArg._all_field_names_ = set( + [ + "path", + "property_template_ids", + ] +) RemovePropertiesArg._all_fields_ = [ - ('path', RemovePropertiesArg.path.validator), - ('property_template_ids', RemovePropertiesArg.property_template_ids.validator), + ("path", RemovePropertiesArg.path.validator), + ("property_template_ids", RemovePropertiesArg.property_template_ids.validator), ] RemovePropertiesError._property_group_lookup_validator = LookUpPropertiesError_validator RemovePropertiesError._tagmap = { - 'property_group_lookup': RemovePropertiesError._property_group_lookup_validator, + "property_group_lookup": RemovePropertiesError._property_group_lookup_validator, } RemovePropertiesError._tagmap.update(PropertiesError._tagmap) RemoveTemplateArg.template_id.validator = TemplateId_validator -RemoveTemplateArg._all_field_names_ = set(['template_id']) -RemoveTemplateArg._all_fields_ = [('template_id', RemoveTemplateArg.template_id.validator)] +RemoveTemplateArg._all_field_names_ = set(["template_id"]) +RemoveTemplateArg._all_fields_ = [("template_id", RemoveTemplateArg.template_id.validator)] TemplateFilterBase._filter_some_validator = bv.List(TemplateId_validator, min_items=1) TemplateFilterBase._other_validator = bv.Void() TemplateFilterBase._tagmap = { - 'filter_some': TemplateFilterBase._filter_some_validator, - 'other': TemplateFilterBase._other_validator, + "filter_some": TemplateFilterBase._filter_some_validator, + "other": TemplateFilterBase._other_validator, } -TemplateFilterBase.other = TemplateFilterBase('other') +TemplateFilterBase.other = TemplateFilterBase("other") TemplateFilter._filter_none_validator = bv.Void() TemplateFilter._tagmap = { - 'filter_none': TemplateFilter._filter_none_validator, + "filter_none": TemplateFilter._filter_none_validator, } TemplateFilter._tagmap.update(TemplateFilterBase._tagmap) -TemplateFilter.filter_none = TemplateFilter('filter_none') +TemplateFilter.filter_none = TemplateFilter("filter_none") TemplateOwnerType._user_validator = bv.Void() TemplateOwnerType._team_validator = bv.Void() TemplateOwnerType._other_validator = bv.Void() TemplateOwnerType._tagmap = { - 'user': TemplateOwnerType._user_validator, - 'team': TemplateOwnerType._team_validator, - 'other': TemplateOwnerType._other_validator, + "user": TemplateOwnerType._user_validator, + "team": TemplateOwnerType._team_validator, + "other": TemplateOwnerType._other_validator, } -TemplateOwnerType.user = TemplateOwnerType('user') -TemplateOwnerType.team = TemplateOwnerType('team') -TemplateOwnerType.other = TemplateOwnerType('other') +TemplateOwnerType.user = TemplateOwnerType("user") +TemplateOwnerType.team = TemplateOwnerType("team") +TemplateOwnerType.other = TemplateOwnerType("other") UpdatePropertiesArg.path.validator = PathOrId_validator UpdatePropertiesArg.update_property_groups.validator = bv.List(PropertyGroupUpdate_validator) -UpdatePropertiesArg._all_field_names_ = set([ - 'path', - 'update_property_groups', -]) +UpdatePropertiesArg._all_field_names_ = set( + [ + "path", + "update_property_groups", + ] +) UpdatePropertiesArg._all_fields_ = [ - ('path', UpdatePropertiesArg.path.validator), - ('update_property_groups', UpdatePropertiesArg.update_property_groups.validator), + ("path", UpdatePropertiesArg.path.validator), + ("update_property_groups", UpdatePropertiesArg.update_property_groups.validator), ] UpdatePropertiesError._property_group_lookup_validator = LookUpPropertiesError_validator UpdatePropertiesError._tagmap = { - 'property_group_lookup': UpdatePropertiesError._property_group_lookup_validator, + "property_group_lookup": UpdatePropertiesError._property_group_lookup_validator, } UpdatePropertiesError._tagmap.update(InvalidPropertyGroupError._tagmap) @@ -2098,218 +2232,187 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateTemplateArg.name.validator = bv.Nullable(bv.String()) UpdateTemplateArg.description.validator = bv.Nullable(bv.String()) UpdateTemplateArg.add_fields.validator = bv.Nullable(bv.List(PropertyFieldTemplate_validator)) -UpdateTemplateArg._all_field_names_ = set([ - 'template_id', - 'name', - 'description', - 'add_fields', -]) +UpdateTemplateArg._all_field_names_ = set( + [ + "template_id", + "name", + "description", + "add_fields", + ] +) UpdateTemplateArg._all_fields_ = [ - ('template_id', UpdateTemplateArg.template_id.validator), - ('name', UpdateTemplateArg.name.validator), - ('description', UpdateTemplateArg.description.validator), - ('add_fields', UpdateTemplateArg.add_fields.validator), + ("template_id", UpdateTemplateArg.template_id.validator), + ("name", UpdateTemplateArg.name.validator), + ("description", UpdateTemplateArg.description.validator), + ("add_fields", UpdateTemplateArg.add_fields.validator), ] UpdateTemplateResult.template_id.validator = TemplateId_validator -UpdateTemplateResult._all_field_names_ = set(['template_id']) -UpdateTemplateResult._all_fields_ = [('template_id', UpdateTemplateResult.template_id.validator)] +UpdateTemplateResult._all_field_names_ = set(["template_id"]) +UpdateTemplateResult._all_fields_ = [("template_id", UpdateTemplateResult.template_id.validator)] PropertiesSearchArg.template_filter.default = TemplateFilter.filter_none PropertiesSearchQuery.logical_operator.default = LogicalOperator.or_operator properties_add = bb.Route( - 'properties/add', + "properties/add", 1, False, AddPropertiesArg_validator, bv.Void(), AddPropertiesError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) properties_overwrite = bb.Route( - 'properties/overwrite', + "properties/overwrite", 1, False, OverwritePropertyGroupArg_validator, bv.Void(), InvalidPropertyGroupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) properties_remove = bb.Route( - 'properties/remove', + "properties/remove", 1, False, RemovePropertiesArg_validator, bv.Void(), RemovePropertiesError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) properties_search = bb.Route( - 'properties/search', + "properties/search", 1, False, PropertiesSearchArg_validator, PropertiesSearchResult_validator, PropertiesSearchError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) properties_search_continue = bb.Route( - 'properties/search/continue', + "properties/search/continue", 1, False, PropertiesSearchContinueArg_validator, PropertiesSearchResult_validator, PropertiesSearchContinueError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) properties_update = bb.Route( - 'properties/update', + "properties/update", 1, False, UpdatePropertiesArg_validator, bv.Void(), UpdatePropertiesError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) templates_add_for_team = bb.Route( - 'templates/add_for_team', + "templates/add_for_team", 1, False, AddTemplateArg_validator, AddTemplateResult_validator, ModifyTemplateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) templates_add_for_user = bb.Route( - 'templates/add_for_user', + "templates/add_for_user", 1, False, AddTemplateArg_validator, AddTemplateResult_validator, ModifyTemplateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) templates_get_for_team = bb.Route( - 'templates/get_for_team', + "templates/get_for_team", 1, False, GetTemplateArg_validator, GetTemplateResult_validator, TemplateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) templates_get_for_user = bb.Route( - 'templates/get_for_user', + "templates/get_for_user", 1, False, GetTemplateArg_validator, GetTemplateResult_validator, TemplateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) templates_list_for_team = bb.Route( - 'templates/list_for_team', + "templates/list_for_team", 1, False, bv.Void(), ListTemplateResult_validator, TemplateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) templates_list_for_user = bb.Route( - 'templates/list_for_user', + "templates/list_for_user", 1, False, bv.Void(), ListTemplateResult_validator, TemplateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) templates_remove_for_team = bb.Route( - 'templates/remove_for_team', + "templates/remove_for_team", 1, False, RemoveTemplateArg_validator, bv.Void(), TemplateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) templates_remove_for_user = bb.Route( - 'templates/remove_for_user', + "templates/remove_for_user", 1, False, RemoveTemplateArg_validator, bv.Void(), TemplateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) templates_update_for_team = bb.Route( - 'templates/update_for_team', + "templates/update_for_team", 1, False, UpdateTemplateArg_validator, UpdateTemplateResult_validator, ModifyTemplateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) templates_update_for_user = bb.Route( - 'templates/update_for_user', + "templates/update_for_user", 1, False, UpdateTemplateArg_validator, UpdateTemplateResult_validator, ModifyTemplateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'properties/add': properties_add, - 'properties/overwrite': properties_overwrite, - 'properties/remove': properties_remove, - 'properties/search': properties_search, - 'properties/search/continue': properties_search_continue, - 'properties/update': properties_update, - 'templates/add_for_team': templates_add_for_team, - 'templates/add_for_user': templates_add_for_user, - 'templates/get_for_team': templates_get_for_team, - 'templates/get_for_user': templates_get_for_user, - 'templates/list_for_team': templates_list_for_team, - 'templates/list_for_user': templates_list_for_user, - 'templates/remove_for_team': templates_remove_for_team, - 'templates/remove_for_user': templates_remove_for_user, - 'templates/update_for_team': templates_update_for_team, - 'templates/update_for_user': templates_update_for_user, + "properties/add": properties_add, + "properties/overwrite": properties_overwrite, + "properties/remove": properties_remove, + "properties/search": properties_search, + "properties/search/continue": properties_search_continue, + "properties/update": properties_update, + "templates/add_for_team": templates_add_for_team, + "templates/add_for_user": templates_add_for_user, + "templates/get_for_team": templates_get_for_team, + "templates/get_for_user": templates_get_for_user, + "templates/list_for_team": templates_list_for_team, + "templates/list_for_user": templates_list_for_user, + "templates/remove_for_team": templates_remove_for_team, + "templates/remove_for_user": templates_remove_for_user, + "templates/update_for_team": templates_update_for_team, + "templates/update_for_user": templates_update_for_user, } - diff --git a/dropbox/file_requests.py b/dropbox/file_requests.py index 54e67fa2..6526aefc 100644 --- a/dropbox/file_requests.py +++ b/dropbox/file_requests.py @@ -14,6 +14,7 @@ from dropbox import common from dropbox import files + class GeneralFileRequestsError(bb.Union): """ There is an error accessing the file requests functionality. @@ -26,7 +27,7 @@ class GeneralFileRequestsError(bb.Union): This user's Dropbox Business team doesn't allow file requests. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled_for_team = None # Attribute is overwritten below the class definition @@ -38,7 +39,7 @@ def is_disabled_for_team(self): :rtype: bool """ - return self._tag == 'disabled_for_team' + return self._tag == "disabled_for_team" def is_other(self): """ @@ -46,13 +47,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GeneralFileRequestsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GeneralFileRequestsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GeneralFileRequestsError_validator = bv.Union(GeneralFileRequestsError) + class CountFileRequestsError(GeneralFileRequestsError): """ There was an error counting the file requests. @@ -63,10 +68,14 @@ class CountFileRequestsError(GeneralFileRequestsError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CountFileRequestsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CountFileRequestsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CountFileRequestsError_validator = bv.Union(CountFileRequestsError) + class CountFileRequestsResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.file_requests_count`. @@ -76,13 +85,12 @@ class CountFileRequestsResult(bb.Struct): """ __slots__ = [ - '_file_request_count_value', + "_file_request_count_value", ] _has_required_fields = True - def __init__(self, - file_request_count=None): + def __init__(self, file_request_count=None): self._file_request_count_value = bb.NOT_SET if file_request_count is not None: self.file_request_count = file_request_count @@ -91,10 +99,14 @@ def __init__(self, file_request_count = bb.Attribute("file_request_count") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CountFileRequestsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CountFileRequestsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CountFileRequestsResult_validator = bv.Struct(CountFileRequestsResult) + class CreateFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_create`. @@ -119,23 +131,25 @@ class CreateFileRequestArgs(bb.Struct): """ __slots__ = [ - '_title_value', - '_destination_value', - '_deadline_value', - '_open_value', - '_description_value', - '_video_project_id_value', + "_title_value", + "_destination_value", + "_deadline_value", + "_open_value", + "_description_value", + "_video_project_id_value", ] _has_required_fields = True - def __init__(self, - title=None, - destination=None, - deadline=None, - open=None, - description=None, - video_project_id=None): + def __init__( + self, + title=None, + destination=None, + deadline=None, + open=None, + description=None, + video_project_id=None, + ): self._title_value = bb.NOT_SET self._destination_value = bb.NOT_SET self._deadline_value = bb.NOT_SET @@ -174,10 +188,14 @@ def __init__(self, video_project_id = bb.Attribute("video_project_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFileRequestArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFileRequestArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFileRequestArgs_validator = bv.Struct(CreateFileRequestArgs) + class FileRequestError(GeneralFileRequestsError): """ There is an error with the file request. @@ -227,7 +245,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_not_a_folder(self): """ @@ -235,7 +253,7 @@ def is_not_a_folder(self): :rtype: bool """ - return self._tag == 'not_a_folder' + return self._tag == "not_a_folder" def is_app_lacks_access(self): """ @@ -243,7 +261,7 @@ def is_app_lacks_access(self): :rtype: bool """ - return self._tag == 'app_lacks_access' + return self._tag == "app_lacks_access" def is_no_permission(self): """ @@ -251,7 +269,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_email_unverified(self): """ @@ -259,7 +277,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == 'email_unverified' + return self._tag == "email_unverified" def is_validation_error(self): """ @@ -267,7 +285,7 @@ def is_validation_error(self): :rtype: bool """ - return self._tag == 'validation_error' + return self._tag == "validation_error" def is_no_write_permission(self): """ @@ -275,13 +293,17 @@ def is_no_write_permission(self): :rtype: bool """ - return self._tag == 'no_write_permission' + return self._tag == "no_write_permission" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestError_validator = bv.Union(FileRequestError) + class CreateFileRequestError(FileRequestError): """ There was an error creating the file request. @@ -308,7 +330,7 @@ def is_invalid_location(self): :rtype: bool """ - return self._tag == 'invalid_location' + return self._tag == "invalid_location" def is_rate_limit(self): """ @@ -316,13 +338,17 @@ def is_rate_limit(self): :rtype: bool """ - return self._tag == 'rate_limit' + return self._tag == "rate_limit" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFileRequestError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFileRequestError_validator = bv.Union(CreateFileRequestError) + class DeleteAllClosedFileRequestsError(FileRequestError): """ There was an error deleting all closed file requests. @@ -333,10 +359,14 @@ class DeleteAllClosedFileRequestsError(FileRequestError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteAllClosedFileRequestsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteAllClosedFileRequestsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteAllClosedFileRequestsError_validator = bv.Union(DeleteAllClosedFileRequestsError) + class DeleteAllClosedFileRequestsResult(bb.Struct): """ Result for @@ -347,13 +377,12 @@ class DeleteAllClosedFileRequestsResult(bb.Struct): """ __slots__ = [ - '_file_requests_value', + "_file_requests_value", ] _has_required_fields = True - def __init__(self, - file_requests=None): + def __init__(self, file_requests=None): self._file_requests_value = bb.NOT_SET if file_requests is not None: self.file_requests = file_requests @@ -362,10 +391,14 @@ def __init__(self, file_requests = bb.Attribute("file_requests") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteAllClosedFileRequestsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteAllClosedFileRequestsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteAllClosedFileRequestsResult_validator = bv.Struct(DeleteAllClosedFileRequestsResult) + class DeleteFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_delete`. @@ -375,13 +408,12 @@ class DeleteFileRequestArgs(bb.Struct): """ __slots__ = [ - '_ids_value', + "_ids_value", ] _has_required_fields = True - def __init__(self, - ids=None): + def __init__(self, ids=None): self._ids_value = bb.NOT_SET if ids is not None: self.ids = ids @@ -390,10 +422,14 @@ def __init__(self, ids = bb.Attribute("ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteFileRequestArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteFileRequestArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteFileRequestArgs_validator = bv.Struct(DeleteFileRequestArgs) + class DeleteFileRequestError(FileRequestError): """ There was an error deleting these file requests. @@ -415,13 +451,17 @@ def is_file_request_open(self): :rtype: bool """ - return self._tag == 'file_request_open' + return self._tag == "file_request_open" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteFileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteFileRequestError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteFileRequestError_validator = bv.Union(DeleteFileRequestError) + class DeleteFileRequestsResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.file_requests_delete`. @@ -431,13 +471,12 @@ class DeleteFileRequestsResult(bb.Struct): """ __slots__ = [ - '_file_requests_value', + "_file_requests_value", ] _has_required_fields = True - def __init__(self, - file_requests=None): + def __init__(self, file_requests=None): self._file_requests_value = bb.NOT_SET if file_requests is not None: self.file_requests = file_requests @@ -446,10 +485,14 @@ def __init__(self, file_requests = bb.Attribute("file_requests") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteFileRequestsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteFileRequestsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteFileRequestsResult_validator = bv.Struct(DeleteFileRequestsResult) + class FileRequest(bb.Struct): """ A `file request `_ for receiving files @@ -482,31 +525,33 @@ class FileRequest(bb.Struct): """ __slots__ = [ - '_id_value', - '_url_value', - '_title_value', - '_destination_value', - '_created_value', - '_deadline_value', - '_is_open_value', - '_file_count_value', - '_description_value', - '_video_project_id_value', + "_id_value", + "_url_value", + "_title_value", + "_destination_value", + "_created_value", + "_deadline_value", + "_is_open_value", + "_file_count_value", + "_description_value", + "_video_project_id_value", ] _has_required_fields = True - def __init__(self, - id=None, - url=None, - title=None, - created=None, - is_open=None, - file_count=None, - destination=None, - deadline=None, - description=None, - video_project_id=None): + def __init__( + self, + id=None, + url=None, + title=None, + created=None, + is_open=None, + file_count=None, + destination=None, + deadline=None, + description=None, + video_project_id=None, + ): self._id_value = bb.NOT_SET self._url_value = bb.NOT_SET self._title_value = bb.NOT_SET @@ -571,8 +616,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileRequest, self)._process_custom_annotations(annotation_type, field_path, processor) + FileRequest_validator = bv.Struct(FileRequest) + class FileRequestDeadline(bb.Struct): """ :ivar FileRequestDeadline.deadline: @@ -583,15 +630,13 @@ class FileRequestDeadline(bb.Struct): """ __slots__ = [ - '_deadline_value', - '_allow_late_uploads_value', + "_deadline_value", + "_allow_late_uploads_value", ] _has_required_fields = True - def __init__(self, - deadline=None, - allow_late_uploads=None): + def __init__(self, deadline=None, allow_late_uploads=None): self._deadline_value = bb.NOT_SET self._allow_late_uploads_value = bb.NOT_SET if deadline is not None: @@ -606,10 +651,14 @@ def __init__(self, allow_late_uploads = bb.Attribute("allow_late_uploads", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDeadline, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestDeadline, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestDeadline_validator = bv.Struct(FileRequestDeadline) + class GetFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_get`. @@ -619,13 +668,12 @@ class GetFileRequestArgs(bb.Struct): """ __slots__ = [ - '_id_value', + "_id_value", ] _has_required_fields = True - def __init__(self, - id=None): + def __init__(self, id=None): self._id_value = bb.NOT_SET if id is not None: self.id = id @@ -634,10 +682,14 @@ def __init__(self, id = bb.Attribute("id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileRequestArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetFileRequestArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetFileRequestArgs_validator = bv.Struct(GetFileRequestArgs) + class GetFileRequestError(FileRequestError): """ There was an error retrieving the specified file request. @@ -648,10 +700,14 @@ class GetFileRequestError(FileRequestError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetFileRequestError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetFileRequestError_validator = bv.Union(GetFileRequestError) + class GracePeriod(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -659,7 +715,7 @@ class GracePeriod(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition one_day = None # Attribute is overwritten below the class definition @@ -679,7 +735,7 @@ def is_one_day(self): :rtype: bool """ - return self._tag == 'one_day' + return self._tag == "one_day" def is_two_days(self): """ @@ -687,7 +743,7 @@ def is_two_days(self): :rtype: bool """ - return self._tag == 'two_days' + return self._tag == "two_days" def is_seven_days(self): """ @@ -695,7 +751,7 @@ def is_seven_days(self): :rtype: bool """ - return self._tag == 'seven_days' + return self._tag == "seven_days" def is_thirty_days(self): """ @@ -703,7 +759,7 @@ def is_thirty_days(self): :rtype: bool """ - return self._tag == 'thirty_days' + return self._tag == "thirty_days" def is_always(self): """ @@ -711,7 +767,7 @@ def is_always(self): :rtype: bool """ - return self._tag == 'always' + return self._tag == "always" def is_other(self): """ @@ -719,13 +775,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(GracePeriod, self)._process_custom_annotations(annotation_type, field_path, processor) + GracePeriod_validator = bv.Union(GracePeriod) + class ListFileRequestsArg(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_list`. @@ -735,13 +793,12 @@ class ListFileRequestsArg(bb.Struct): """ __slots__ = [ - '_limit_value', + "_limit_value", ] _has_required_fields = False - def __init__(self, - limit=None): + def __init__(self, limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -750,10 +807,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileRequestsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileRequestsArg_validator = bv.Struct(ListFileRequestsArg) + class ListFileRequestsContinueArg(bb.Struct): """ :ivar ListFileRequestsContinueArg.cursor: @@ -762,13 +823,12 @@ class ListFileRequestsContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -777,10 +837,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileRequestsContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileRequestsContinueArg_validator = bv.Struct(ListFileRequestsContinueArg) + class ListFileRequestsContinueError(GeneralFileRequestsError): """ There was an error retrieving the file requests. @@ -802,13 +866,17 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileRequestsContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileRequestsContinueError_validator = bv.Union(ListFileRequestsContinueError) + class ListFileRequestsError(GeneralFileRequestsError): """ There was an error retrieving the file requests. @@ -819,10 +887,14 @@ class ListFileRequestsError(GeneralFileRequestsError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileRequestsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileRequestsError_validator = bv.Union(ListFileRequestsError) + class ListFileRequestsResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.file_requests_list`. @@ -833,13 +905,12 @@ class ListFileRequestsResult(bb.Struct): """ __slots__ = [ - '_file_requests_value', + "_file_requests_value", ] _has_required_fields = True - def __init__(self, - file_requests=None): + def __init__(self, file_requests=None): self._file_requests_value = bb.NOT_SET if file_requests is not None: self.file_requests = file_requests @@ -848,10 +919,14 @@ def __init__(self, file_requests = bb.Attribute("file_requests") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileRequestsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileRequestsResult_validator = bv.Struct(ListFileRequestsResult) + class ListFileRequestsV2Result(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.file_requests_list` and @@ -871,17 +946,14 @@ class ListFileRequestsV2Result(bb.Struct): """ __slots__ = [ - '_file_requests_value', - '_cursor_value', - '_has_more_value', + "_file_requests_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - file_requests=None, - cursor=None, - has_more=None): + def __init__(self, file_requests=None, cursor=None, has_more=None): self._file_requests_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -902,10 +974,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileRequestsV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileRequestsV2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileRequestsV2Result_validator = bv.Struct(ListFileRequestsV2Result) + class UpdateFileRequestArgs(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.file_requests_update`. @@ -928,23 +1004,25 @@ class UpdateFileRequestArgs(bb.Struct): """ __slots__ = [ - '_id_value', - '_title_value', - '_destination_value', - '_deadline_value', - '_open_value', - '_description_value', + "_id_value", + "_title_value", + "_destination_value", + "_deadline_value", + "_open_value", + "_description_value", ] _has_required_fields = True - def __init__(self, - id=None, - title=None, - destination=None, - deadline=None, - open=None, - description=None): + def __init__( + self, + id=None, + title=None, + destination=None, + deadline=None, + open=None, + description=None, + ): self._id_value = bb.NOT_SET self._title_value = bb.NOT_SET self._destination_value = bb.NOT_SET @@ -983,10 +1061,14 @@ def __init__(self, description = bb.Attribute("description", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFileRequestArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFileRequestArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFileRequestArgs_validator = bv.Struct(UpdateFileRequestArgs) + class UpdateFileRequestDeadline(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1000,7 +1082,7 @@ class UpdateFileRequestDeadline(bb.Union): :vartype UpdateFileRequestDeadline.update: Optional[FileRequestDeadline] """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_update = None # Attribute is overwritten below the class definition @@ -1015,7 +1097,7 @@ def update(cls, val): :param FileRequestDeadline val: :rtype: UpdateFileRequestDeadline """ - return cls('update', val) + return cls("update", val) def is_no_update(self): """ @@ -1023,7 +1105,7 @@ def is_no_update(self): :rtype: bool """ - return self._tag == 'no_update' + return self._tag == "no_update" def is_update(self): """ @@ -1031,7 +1113,7 @@ def is_update(self): :rtype: bool """ - return self._tag == 'update' + return self._tag == "update" def is_other(self): """ @@ -1039,7 +1121,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_update(self): """ @@ -1054,10 +1136,14 @@ def get_update(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFileRequestDeadline, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFileRequestDeadline, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFileRequestDeadline_validator = bv.Union(UpdateFileRequestDeadline) + class UpdateFileRequestError(FileRequestError): """ There is an error updating the file request. @@ -1068,29 +1154,33 @@ class UpdateFileRequestError(FileRequestError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFileRequestError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFileRequestError_validator = bv.Union(UpdateFileRequestError) -FileRequestId_validator = bv.String(min_length=1, pattern='[-_0-9a-zA-Z]+') +FileRequestId_validator = bv.String(min_length=1, pattern="[-_0-9a-zA-Z]+") FileRequestValidationError_validator = bv.Nullable(bv.String()) GeneralFileRequestsError._disabled_for_team_validator = bv.Void() GeneralFileRequestsError._other_validator = bv.Void() GeneralFileRequestsError._tagmap = { - 'disabled_for_team': GeneralFileRequestsError._disabled_for_team_validator, - 'other': GeneralFileRequestsError._other_validator, + "disabled_for_team": GeneralFileRequestsError._disabled_for_team_validator, + "other": GeneralFileRequestsError._other_validator, } -GeneralFileRequestsError.disabled_for_team = GeneralFileRequestsError('disabled_for_team') -GeneralFileRequestsError.other = GeneralFileRequestsError('other') +GeneralFileRequestsError.disabled_for_team = GeneralFileRequestsError("disabled_for_team") +GeneralFileRequestsError.other = GeneralFileRequestsError("other") -CountFileRequestsError._tagmap = { -} +CountFileRequestsError._tagmap = {} CountFileRequestsError._tagmap.update(GeneralFileRequestsError._tagmap) CountFileRequestsResult.file_request_count.validator = bv.UInt64() -CountFileRequestsResult._all_field_names_ = set(['file_request_count']) -CountFileRequestsResult._all_fields_ = [('file_request_count', CountFileRequestsResult.file_request_count.validator)] +CountFileRequestsResult._all_field_names_ = set(["file_request_count"]) +CountFileRequestsResult._all_fields_ = [ + ("file_request_count", CountFileRequestsResult.file_request_count.validator) +] CreateFileRequestArgs.title.validator = bv.String(min_length=1) CreateFileRequestArgs.destination.validator = files.Path_validator @@ -1098,21 +1188,23 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CreateFileRequestArgs.open.validator = bv.Boolean() CreateFileRequestArgs.description.validator = bv.Nullable(bv.String()) CreateFileRequestArgs.video_project_id.validator = bv.Nullable(bv.String()) -CreateFileRequestArgs._all_field_names_ = set([ - 'title', - 'destination', - 'deadline', - 'open', - 'description', - 'video_project_id', -]) +CreateFileRequestArgs._all_field_names_ = set( + [ + "title", + "destination", + "deadline", + "open", + "description", + "video_project_id", + ] +) CreateFileRequestArgs._all_fields_ = [ - ('title', CreateFileRequestArgs.title.validator), - ('destination', CreateFileRequestArgs.destination.validator), - ('deadline', CreateFileRequestArgs.deadline.validator), - ('open', CreateFileRequestArgs.open.validator), - ('description', CreateFileRequestArgs.description.validator), - ('video_project_id', CreateFileRequestArgs.video_project_id.validator), + ("title", CreateFileRequestArgs.title.validator), + ("destination", CreateFileRequestArgs.destination.validator), + ("deadline", CreateFileRequestArgs.deadline.validator), + ("open", CreateFileRequestArgs.open.validator), + ("description", CreateFileRequestArgs.description.validator), + ("video_project_id", CreateFileRequestArgs.video_project_id.validator), ] FileRequestError._not_found_validator = bv.Void() @@ -1123,58 +1215,61 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileRequestError._validation_error_validator = bv.Void() FileRequestError._no_write_permission_validator = bv.Void() FileRequestError._tagmap = { - 'not_found': FileRequestError._not_found_validator, - 'not_a_folder': FileRequestError._not_a_folder_validator, - 'app_lacks_access': FileRequestError._app_lacks_access_validator, - 'no_permission': FileRequestError._no_permission_validator, - 'email_unverified': FileRequestError._email_unverified_validator, - 'validation_error': FileRequestError._validation_error_validator, - 'no_write_permission': FileRequestError._no_write_permission_validator, + "not_found": FileRequestError._not_found_validator, + "not_a_folder": FileRequestError._not_a_folder_validator, + "app_lacks_access": FileRequestError._app_lacks_access_validator, + "no_permission": FileRequestError._no_permission_validator, + "email_unverified": FileRequestError._email_unverified_validator, + "validation_error": FileRequestError._validation_error_validator, + "no_write_permission": FileRequestError._no_write_permission_validator, } FileRequestError._tagmap.update(GeneralFileRequestsError._tagmap) -FileRequestError.not_found = FileRequestError('not_found') -FileRequestError.not_a_folder = FileRequestError('not_a_folder') -FileRequestError.app_lacks_access = FileRequestError('app_lacks_access') -FileRequestError.no_permission = FileRequestError('no_permission') -FileRequestError.email_unverified = FileRequestError('email_unverified') -FileRequestError.validation_error = FileRequestError('validation_error') -FileRequestError.no_write_permission = FileRequestError('no_write_permission') +FileRequestError.not_found = FileRequestError("not_found") +FileRequestError.not_a_folder = FileRequestError("not_a_folder") +FileRequestError.app_lacks_access = FileRequestError("app_lacks_access") +FileRequestError.no_permission = FileRequestError("no_permission") +FileRequestError.email_unverified = FileRequestError("email_unverified") +FileRequestError.validation_error = FileRequestError("validation_error") +FileRequestError.no_write_permission = FileRequestError("no_write_permission") CreateFileRequestError._invalid_location_validator = bv.Void() CreateFileRequestError._rate_limit_validator = bv.Void() CreateFileRequestError._tagmap = { - 'invalid_location': CreateFileRequestError._invalid_location_validator, - 'rate_limit': CreateFileRequestError._rate_limit_validator, + "invalid_location": CreateFileRequestError._invalid_location_validator, + "rate_limit": CreateFileRequestError._rate_limit_validator, } CreateFileRequestError._tagmap.update(FileRequestError._tagmap) -CreateFileRequestError.invalid_location = CreateFileRequestError('invalid_location') -CreateFileRequestError.rate_limit = CreateFileRequestError('rate_limit') +CreateFileRequestError.invalid_location = CreateFileRequestError("invalid_location") +CreateFileRequestError.rate_limit = CreateFileRequestError("rate_limit") -DeleteAllClosedFileRequestsError._tagmap = { -} +DeleteAllClosedFileRequestsError._tagmap = {} DeleteAllClosedFileRequestsError._tagmap.update(FileRequestError._tagmap) DeleteAllClosedFileRequestsResult.file_requests.validator = bv.List(FileRequest_validator) -DeleteAllClosedFileRequestsResult._all_field_names_ = set(['file_requests']) -DeleteAllClosedFileRequestsResult._all_fields_ = [('file_requests', DeleteAllClosedFileRequestsResult.file_requests.validator)] +DeleteAllClosedFileRequestsResult._all_field_names_ = set(["file_requests"]) +DeleteAllClosedFileRequestsResult._all_fields_ = [ + ("file_requests", DeleteAllClosedFileRequestsResult.file_requests.validator) +] DeleteFileRequestArgs.ids.validator = bv.List(FileRequestId_validator) -DeleteFileRequestArgs._all_field_names_ = set(['ids']) -DeleteFileRequestArgs._all_fields_ = [('ids', DeleteFileRequestArgs.ids.validator)] +DeleteFileRequestArgs._all_field_names_ = set(["ids"]) +DeleteFileRequestArgs._all_fields_ = [("ids", DeleteFileRequestArgs.ids.validator)] DeleteFileRequestError._file_request_open_validator = bv.Void() DeleteFileRequestError._tagmap = { - 'file_request_open': DeleteFileRequestError._file_request_open_validator, + "file_request_open": DeleteFileRequestError._file_request_open_validator, } DeleteFileRequestError._tagmap.update(FileRequestError._tagmap) -DeleteFileRequestError.file_request_open = DeleteFileRequestError('file_request_open') +DeleteFileRequestError.file_request_open = DeleteFileRequestError("file_request_open") DeleteFileRequestsResult.file_requests.validator = bv.List(FileRequest_validator) -DeleteFileRequestsResult._all_field_names_ = set(['file_requests']) -DeleteFileRequestsResult._all_fields_ = [('file_requests', DeleteFileRequestsResult.file_requests.validator)] +DeleteFileRequestsResult._all_field_names_ = set(["file_requests"]) +DeleteFileRequestsResult._all_fields_ = [ + ("file_requests", DeleteFileRequestsResult.file_requests.validator) +] FileRequest.id.validator = FileRequestId_validator FileRequest.url.validator = bv.String(min_length=1) @@ -1186,48 +1281,51 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileRequest.file_count.validator = bv.Int64() FileRequest.description.validator = bv.Nullable(bv.String()) FileRequest.video_project_id.validator = bv.Nullable(bv.String()) -FileRequest._all_field_names_ = set([ - 'id', - 'url', - 'title', - 'destination', - 'created', - 'deadline', - 'is_open', - 'file_count', - 'description', - 'video_project_id', -]) +FileRequest._all_field_names_ = set( + [ + "id", + "url", + "title", + "destination", + "created", + "deadline", + "is_open", + "file_count", + "description", + "video_project_id", + ] +) FileRequest._all_fields_ = [ - ('id', FileRequest.id.validator), - ('url', FileRequest.url.validator), - ('title', FileRequest.title.validator), - ('destination', FileRequest.destination.validator), - ('created', FileRequest.created.validator), - ('deadline', FileRequest.deadline.validator), - ('is_open', FileRequest.is_open.validator), - ('file_count', FileRequest.file_count.validator), - ('description', FileRequest.description.validator), - ('video_project_id', FileRequest.video_project_id.validator), + ("id", FileRequest.id.validator), + ("url", FileRequest.url.validator), + ("title", FileRequest.title.validator), + ("destination", FileRequest.destination.validator), + ("created", FileRequest.created.validator), + ("deadline", FileRequest.deadline.validator), + ("is_open", FileRequest.is_open.validator), + ("file_count", FileRequest.file_count.validator), + ("description", FileRequest.description.validator), + ("video_project_id", FileRequest.video_project_id.validator), ] FileRequestDeadline.deadline.validator = common.DropboxTimestamp_validator FileRequestDeadline.allow_late_uploads.validator = bv.Nullable(GracePeriod_validator) -FileRequestDeadline._all_field_names_ = set([ - 'deadline', - 'allow_late_uploads', -]) +FileRequestDeadline._all_field_names_ = set( + [ + "deadline", + "allow_late_uploads", + ] +) FileRequestDeadline._all_fields_ = [ - ('deadline', FileRequestDeadline.deadline.validator), - ('allow_late_uploads', FileRequestDeadline.allow_late_uploads.validator), + ("deadline", FileRequestDeadline.deadline.validator), + ("allow_late_uploads", FileRequestDeadline.allow_late_uploads.validator), ] GetFileRequestArgs.id.validator = FileRequestId_validator -GetFileRequestArgs._all_field_names_ = set(['id']) -GetFileRequestArgs._all_fields_ = [('id', GetFileRequestArgs.id.validator)] +GetFileRequestArgs._all_field_names_ = set(["id"]) +GetFileRequestArgs._all_fields_ = [("id", GetFileRequestArgs.id.validator)] -GetFileRequestError._tagmap = { -} +GetFileRequestError._tagmap = {} GetFileRequestError._tagmap.update(FileRequestError._tagmap) GracePeriod._one_day_validator = bv.Void() @@ -1237,57 +1335,62 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GracePeriod._always_validator = bv.Void() GracePeriod._other_validator = bv.Void() GracePeriod._tagmap = { - 'one_day': GracePeriod._one_day_validator, - 'two_days': GracePeriod._two_days_validator, - 'seven_days': GracePeriod._seven_days_validator, - 'thirty_days': GracePeriod._thirty_days_validator, - 'always': GracePeriod._always_validator, - 'other': GracePeriod._other_validator, + "one_day": GracePeriod._one_day_validator, + "two_days": GracePeriod._two_days_validator, + "seven_days": GracePeriod._seven_days_validator, + "thirty_days": GracePeriod._thirty_days_validator, + "always": GracePeriod._always_validator, + "other": GracePeriod._other_validator, } -GracePeriod.one_day = GracePeriod('one_day') -GracePeriod.two_days = GracePeriod('two_days') -GracePeriod.seven_days = GracePeriod('seven_days') -GracePeriod.thirty_days = GracePeriod('thirty_days') -GracePeriod.always = GracePeriod('always') -GracePeriod.other = GracePeriod('other') +GracePeriod.one_day = GracePeriod("one_day") +GracePeriod.two_days = GracePeriod("two_days") +GracePeriod.seven_days = GracePeriod("seven_days") +GracePeriod.thirty_days = GracePeriod("thirty_days") +GracePeriod.always = GracePeriod("always") +GracePeriod.other = GracePeriod("other") ListFileRequestsArg.limit.validator = bv.UInt64() -ListFileRequestsArg._all_field_names_ = set(['limit']) -ListFileRequestsArg._all_fields_ = [('limit', ListFileRequestsArg.limit.validator)] +ListFileRequestsArg._all_field_names_ = set(["limit"]) +ListFileRequestsArg._all_fields_ = [("limit", ListFileRequestsArg.limit.validator)] ListFileRequestsContinueArg.cursor.validator = bv.String() -ListFileRequestsContinueArg._all_field_names_ = set(['cursor']) -ListFileRequestsContinueArg._all_fields_ = [('cursor', ListFileRequestsContinueArg.cursor.validator)] +ListFileRequestsContinueArg._all_field_names_ = set(["cursor"]) +ListFileRequestsContinueArg._all_fields_ = [ + ("cursor", ListFileRequestsContinueArg.cursor.validator) +] ListFileRequestsContinueError._invalid_cursor_validator = bv.Void() ListFileRequestsContinueError._tagmap = { - 'invalid_cursor': ListFileRequestsContinueError._invalid_cursor_validator, + "invalid_cursor": ListFileRequestsContinueError._invalid_cursor_validator, } ListFileRequestsContinueError._tagmap.update(GeneralFileRequestsError._tagmap) -ListFileRequestsContinueError.invalid_cursor = ListFileRequestsContinueError('invalid_cursor') +ListFileRequestsContinueError.invalid_cursor = ListFileRequestsContinueError("invalid_cursor") -ListFileRequestsError._tagmap = { -} +ListFileRequestsError._tagmap = {} ListFileRequestsError._tagmap.update(GeneralFileRequestsError._tagmap) ListFileRequestsResult.file_requests.validator = bv.List(FileRequest_validator) -ListFileRequestsResult._all_field_names_ = set(['file_requests']) -ListFileRequestsResult._all_fields_ = [('file_requests', ListFileRequestsResult.file_requests.validator)] +ListFileRequestsResult._all_field_names_ = set(["file_requests"]) +ListFileRequestsResult._all_fields_ = [ + ("file_requests", ListFileRequestsResult.file_requests.validator) +] ListFileRequestsV2Result.file_requests.validator = bv.List(FileRequest_validator) ListFileRequestsV2Result.cursor.validator = bv.String() ListFileRequestsV2Result.has_more.validator = bv.Boolean() -ListFileRequestsV2Result._all_field_names_ = set([ - 'file_requests', - 'cursor', - 'has_more', -]) +ListFileRequestsV2Result._all_field_names_ = set( + [ + "file_requests", + "cursor", + "has_more", + ] +) ListFileRequestsV2Result._all_fields_ = [ - ('file_requests', ListFileRequestsV2Result.file_requests.validator), - ('cursor', ListFileRequestsV2Result.cursor.validator), - ('has_more', ListFileRequestsV2Result.has_more.validator), + ("file_requests", ListFileRequestsV2Result.file_requests.validator), + ("cursor", ListFileRequestsV2Result.cursor.validator), + ("has_more", ListFileRequestsV2Result.has_more.validator), ] UpdateFileRequestArgs.id.validator = FileRequestId_validator @@ -1296,151 +1399,133 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFileRequestArgs.deadline.validator = UpdateFileRequestDeadline_validator UpdateFileRequestArgs.open.validator = bv.Nullable(bv.Boolean()) UpdateFileRequestArgs.description.validator = bv.Nullable(bv.String()) -UpdateFileRequestArgs._all_field_names_ = set([ - 'id', - 'title', - 'destination', - 'deadline', - 'open', - 'description', -]) +UpdateFileRequestArgs._all_field_names_ = set( + [ + "id", + "title", + "destination", + "deadline", + "open", + "description", + ] +) UpdateFileRequestArgs._all_fields_ = [ - ('id', UpdateFileRequestArgs.id.validator), - ('title', UpdateFileRequestArgs.title.validator), - ('destination', UpdateFileRequestArgs.destination.validator), - ('deadline', UpdateFileRequestArgs.deadline.validator), - ('open', UpdateFileRequestArgs.open.validator), - ('description', UpdateFileRequestArgs.description.validator), + ("id", UpdateFileRequestArgs.id.validator), + ("title", UpdateFileRequestArgs.title.validator), + ("destination", UpdateFileRequestArgs.destination.validator), + ("deadline", UpdateFileRequestArgs.deadline.validator), + ("open", UpdateFileRequestArgs.open.validator), + ("description", UpdateFileRequestArgs.description.validator), ] UpdateFileRequestDeadline._no_update_validator = bv.Void() UpdateFileRequestDeadline._update_validator = bv.Nullable(FileRequestDeadline_validator) UpdateFileRequestDeadline._other_validator = bv.Void() UpdateFileRequestDeadline._tagmap = { - 'no_update': UpdateFileRequestDeadline._no_update_validator, - 'update': UpdateFileRequestDeadline._update_validator, - 'other': UpdateFileRequestDeadline._other_validator, + "no_update": UpdateFileRequestDeadline._no_update_validator, + "update": UpdateFileRequestDeadline._update_validator, + "other": UpdateFileRequestDeadline._other_validator, } -UpdateFileRequestDeadline.no_update = UpdateFileRequestDeadline('no_update') -UpdateFileRequestDeadline.other = UpdateFileRequestDeadline('other') +UpdateFileRequestDeadline.no_update = UpdateFileRequestDeadline("no_update") +UpdateFileRequestDeadline.other = UpdateFileRequestDeadline("other") -UpdateFileRequestError._tagmap = { -} +UpdateFileRequestError._tagmap = {} UpdateFileRequestError._tagmap.update(FileRequestError._tagmap) CreateFileRequestArgs.open.default = True ListFileRequestsArg.limit.default = 1000 UpdateFileRequestArgs.deadline.default = UpdateFileRequestDeadline.no_update count = bb.Route( - 'count', + "count", 1, False, bv.Void(), CountFileRequestsResult_validator, CountFileRequestsError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) create = bb.Route( - 'create', + "create", 1, False, CreateFileRequestArgs_validator, FileRequest_validator, CreateFileRequestError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) delete = bb.Route( - 'delete', + "delete", 1, False, DeleteFileRequestArgs_validator, DeleteFileRequestsResult_validator, DeleteFileRequestError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) delete_all_closed = bb.Route( - 'delete_all_closed', + "delete_all_closed", 1, False, bv.Void(), DeleteAllClosedFileRequestsResult_validator, DeleteAllClosedFileRequestsError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get = bb.Route( - 'get', + "get", 1, False, GetFileRequestArgs_validator, FileRequest_validator, GetFileRequestError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list = bb.Route( - 'list', + "list", 1, False, bv.Void(), ListFileRequestsResult_validator, ListFileRequestsError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_v2 = bb.Route( - 'list', + "list", 2, False, ListFileRequestsArg_validator, ListFileRequestsV2Result_validator, ListFileRequestsError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_continue = bb.Route( - 'list/continue', + "list/continue", 1, False, ListFileRequestsContinueArg_validator, ListFileRequestsV2Result_validator, ListFileRequestsContinueError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) update = bb.Route( - 'update', + "update", 1, False, UpdateFileRequestArgs_validator, FileRequest_validator, UpdateFileRequestError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'count': count, - 'create': create, - 'delete': delete, - 'delete_all_closed': delete_all_closed, - 'get': get, - 'list': list, - 'list:2': list_v2, - 'list/continue': list_continue, - 'update': update, + "count": count, + "create": create, + "delete": delete, + "delete_all_closed": delete_all_closed, + "get": get, + "list": list, + "list:2": list_v2, + "list/continue": list_continue, + "update": update, } - diff --git a/dropbox/files.py b/dropbox/files.py index 21bb5659..d0afc92b 100644 --- a/dropbox/files.py +++ b/dropbox/files.py @@ -16,6 +16,7 @@ from dropbox import file_properties from dropbox import users_common + class AddTagArg(bb.Struct): """ :ivar AddTagArg.path: @@ -26,15 +27,13 @@ class AddTagArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_tag_text_value', + "_path_value", + "_tag_text_value", ] _has_required_fields = True - def __init__(self, - path=None, - tag_text=None): + def __init__(self, path=None, tag_text=None): self._path_value = bb.NOT_SET self._tag_text_value = bb.NOT_SET if path is not None: @@ -51,8 +50,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(AddTagArg, self)._process_custom_annotations(annotation_type, field_path, processor) + AddTagArg_validator = bv.Struct(AddTagArg) + class BaseTagError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -60,7 +61,7 @@ class BaseTagError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -73,7 +74,7 @@ def path(cls, val): :param LookupError val: :rtype: BaseTagError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -81,7 +82,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_other(self): """ @@ -89,7 +90,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -102,10 +103,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BaseTagError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BaseTagError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BaseTagError_validator = bv.Union(BaseTagError) + class AddTagError(BaseTagError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -125,13 +130,15 @@ def is_too_many_tags(self): :rtype: bool """ - return self._tag == 'too_many_tags' + return self._tag == "too_many_tags" def _process_custom_annotations(self, annotation_type, field_path, processor): super(AddTagError, self)._process_custom_annotations(annotation_type, field_path, processor) + AddTagError_validator = bv.Union(AddTagError) + class GetMetadataArg(bb.Struct): """ :ivar GetMetadataArg.path: @@ -151,21 +158,23 @@ class GetMetadataArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_include_media_info_value', - '_include_deleted_value', - '_include_has_explicit_shared_members_value', - '_include_property_groups_value', + "_path_value", + "_include_media_info_value", + "_include_deleted_value", + "_include_has_explicit_shared_members_value", + "_include_property_groups_value", ] _has_required_fields = True - def __init__(self, - path=None, - include_media_info=None, - include_deleted=None, - include_has_explicit_shared_members=None, - include_property_groups=None): + def __init__( + self, + path=None, + include_media_info=None, + include_deleted=None, + include_has_explicit_shared_members=None, + include_property_groups=None, + ): self._path_value = bb.NOT_SET self._include_media_info_value = bb.NOT_SET self._include_deleted_value = bb.NOT_SET @@ -195,13 +204,19 @@ def __init__(self, include_has_explicit_shared_members = bb.Attribute("include_has_explicit_shared_members") # Instance attribute type: file_properties.TemplateFilterBase (validator is set below) - include_property_groups = bb.Attribute("include_property_groups", nullable=True, user_defined=True) + include_property_groups = bb.Attribute( + "include_property_groups", nullable=True, user_defined=True + ) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMetadataArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMetadataArg_validator = bv.Struct(GetMetadataArg) + class AlphaGetMetadataArg(GetMetadataArg): """ :ivar AlphaGetMetadataArg.include_property_templates: @@ -211,23 +226,27 @@ class AlphaGetMetadataArg(GetMetadataArg): """ __slots__ = [ - '_include_property_templates_value', + "_include_property_templates_value", ] _has_required_fields = True - def __init__(self, - path=None, - include_media_info=None, - include_deleted=None, - include_has_explicit_shared_members=None, - include_property_groups=None, - include_property_templates=None): - super(AlphaGetMetadataArg, self).__init__(path, - include_media_info, - include_deleted, - include_has_explicit_shared_members, - include_property_groups) + def __init__( + self, + path=None, + include_media_info=None, + include_deleted=None, + include_has_explicit_shared_members=None, + include_property_groups=None, + include_property_templates=None, + ): + super(AlphaGetMetadataArg, self).__init__( + path, + include_media_info, + include_deleted, + include_has_explicit_shared_members, + include_property_groups, + ) self._include_property_templates_value = bb.NOT_SET if include_property_templates is not None: self.include_property_templates = include_property_templates @@ -236,10 +255,14 @@ def __init__(self, include_property_templates = bb.Attribute("include_property_templates", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AlphaGetMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AlphaGetMetadataArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AlphaGetMetadataArg_validator = bv.Struct(AlphaGetMetadataArg) + class GetMetadataError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -258,7 +281,7 @@ def path(cls, val): :param LookupError val: :rtype: GetMetadataError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -266,7 +289,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def get_path(self): """ @@ -279,10 +302,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMetadataError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMetadataError_validator = bv.Union(GetMetadataError) + class AlphaGetMetadataError(GetMetadataError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -299,7 +326,7 @@ def properties_error(cls, val): :param file_properties.LookUpPropertiesError val: :rtype: AlphaGetMetadataError """ - return cls('properties_error', val) + return cls("properties_error", val) def is_properties_error(self): """ @@ -307,7 +334,7 @@ def is_properties_error(self): :rtype: bool """ - return self._tag == 'properties_error' + return self._tag == "properties_error" def get_properties_error(self): """ @@ -320,10 +347,14 @@ def get_properties_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AlphaGetMetadataError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AlphaGetMetadataError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AlphaGetMetadataError_validator = bv.Union(AlphaGetMetadataError) + class CommitInfo(bb.Struct): """ :ivar CommitInfo.path: @@ -356,25 +387,27 @@ class CommitInfo(bb.Struct): """ __slots__ = [ - '_path_value', - '_mode_value', - '_autorename_value', - '_client_modified_value', - '_mute_value', - '_property_groups_value', - '_strict_conflict_value', + "_path_value", + "_mode_value", + "_autorename_value", + "_client_modified_value", + "_mute_value", + "_property_groups_value", + "_strict_conflict_value", ] _has_required_fields = True - def __init__(self, - path=None, - mode=None, - autorename=None, - client_modified=None, - mute=None, - property_groups=None, - strict_conflict=None): + def __init__( + self, + path=None, + mode=None, + autorename=None, + client_modified=None, + mute=None, + property_groups=None, + strict_conflict=None, + ): self._path_value = bb.NOT_SET self._mode_value = bb.NOT_SET self._autorename_value = bb.NOT_SET @@ -421,8 +454,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(CommitInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + CommitInfo_validator = bv.Struct(CommitInfo) + class ContentSyncSetting(bb.Struct): """ :ivar ContentSyncSetting.id: @@ -432,15 +467,13 @@ class ContentSyncSetting(bb.Struct): """ __slots__ = [ - '_id_value', - '_sync_setting_value', + "_id_value", + "_sync_setting_value", ] _has_required_fields = True - def __init__(self, - id=None, - sync_setting=None): + def __init__(self, id=None, sync_setting=None): self._id_value = bb.NOT_SET self._sync_setting_value = bb.NOT_SET if id is not None: @@ -455,10 +488,14 @@ def __init__(self, sync_setting = bb.Attribute("sync_setting", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentSyncSetting, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContentSyncSetting, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ContentSyncSetting_validator = bv.Struct(ContentSyncSetting) + class ContentSyncSettingArg(bb.Struct): """ :ivar ContentSyncSettingArg.id: @@ -468,15 +505,13 @@ class ContentSyncSettingArg(bb.Struct): """ __slots__ = [ - '_id_value', - '_sync_setting_value', + "_id_value", + "_sync_setting_value", ] _has_required_fields = True - def __init__(self, - id=None, - sync_setting=None): + def __init__(self, id=None, sync_setting=None): self._id_value = bb.NOT_SET self._sync_setting_value = bb.NOT_SET if id is not None: @@ -491,10 +526,14 @@ def __init__(self, sync_setting = bb.Attribute("sync_setting", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentSyncSettingArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContentSyncSettingArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ContentSyncSettingArg_validator = bv.Struct(ContentSyncSettingArg) + class CreateFolderArg(bb.Struct): """ :ivar CreateFolderArg.path: @@ -505,15 +544,13 @@ class CreateFolderArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_autorename_value', + "_path_value", + "_autorename_value", ] _has_required_fields = True - def __init__(self, - path=None, - autorename=None): + def __init__(self, path=None, autorename=None): self._path_value = bb.NOT_SET self._autorename_value = bb.NOT_SET if path is not None: @@ -528,10 +565,14 @@ def __init__(self, autorename = bb.Attribute("autorename") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderArg_validator = bv.Struct(CreateFolderArg) + class CreateFolderBatchArg(bb.Struct): """ :ivar CreateFolderBatchArg.paths: @@ -545,17 +586,14 @@ class CreateFolderBatchArg(bb.Struct): """ __slots__ = [ - '_paths_value', - '_autorename_value', - '_force_async_value', + "_paths_value", + "_autorename_value", + "_force_async_value", ] _has_required_fields = True - def __init__(self, - paths=None, - autorename=None, - force_async=None): + def __init__(self, paths=None, autorename=None, force_async=None): self._paths_value = bb.NOT_SET self._autorename_value = bb.NOT_SET self._force_async_value = bb.NOT_SET @@ -576,10 +614,14 @@ def __init__(self, force_async = bb.Attribute("force_async") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderBatchArg_validator = bv.Struct(CreateFolderBatchArg) + class CreateFolderBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -590,7 +632,7 @@ class CreateFolderBatchError(bb.Union): The operation would involve too many files or folders. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition too_many_files = None # Attribute is overwritten below the class definition @@ -602,7 +644,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == 'too_many_files' + return self._tag == "too_many_files" def is_other(self): """ @@ -610,13 +652,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderBatchError_validator = bv.Union(CreateFolderBatchError) + class CreateFolderBatchJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -631,7 +677,7 @@ class CreateFolderBatchJobStatus(async_.PollResultBase): :vartype CreateFolderBatchJobStatus.failed: CreateFolderBatchError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -644,7 +690,7 @@ def complete(cls, val): :param CreateFolderBatchResult val: :rtype: CreateFolderBatchJobStatus """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -655,7 +701,7 @@ def failed(cls, val): :param CreateFolderBatchError val: :rtype: CreateFolderBatchJobStatus """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -663,7 +709,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -671,7 +717,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def is_other(self): """ @@ -679,7 +725,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -706,10 +752,14 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderBatchJobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderBatchJobStatus_validator = bv.Union(CreateFolderBatchJobStatus) + class CreateFolderBatchLaunch(async_.LaunchResultBase): """ Result returned by @@ -721,7 +771,7 @@ class CreateFolderBatchLaunch(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -734,7 +784,7 @@ def complete(cls, val): :param CreateFolderBatchResult val: :rtype: CreateFolderBatchLaunch """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -742,7 +792,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_other(self): """ @@ -750,7 +800,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -763,17 +813,20 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderBatchLaunch, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderBatchLaunch_validator = bv.Union(CreateFolderBatchLaunch) + class FileOpsResult(bb.Struct): """ Result for File Operations """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -781,10 +834,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileOpsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileOpsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileOpsResult_validator = bv.Struct(FileOpsResult) + class CreateFolderBatchResult(FileOpsResult): """ :ivar CreateFolderBatchResult.entries: @@ -793,13 +850,12 @@ class CreateFolderBatchResult(FileOpsResult): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): super(CreateFolderBatchResult, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -809,10 +865,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderBatchResult_validator = bv.Struct(CreateFolderBatchResult) + class CreateFolderBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -831,7 +891,7 @@ def success(cls, val): :param CreateFolderEntryResult val: :rtype: CreateFolderBatchResultEntry """ - return cls('success', val) + return cls("success", val) @classmethod def failure(cls, val): @@ -842,7 +902,7 @@ def failure(cls, val): :param CreateFolderEntryError val: :rtype: CreateFolderBatchResultEntry """ - return cls('failure', val) + return cls("failure", val) def is_success(self): """ @@ -850,7 +910,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_failure(self): """ @@ -858,7 +918,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == 'failure' + return self._tag == "failure" def get_success(self): """ @@ -881,10 +941,14 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderBatchResultEntry, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderBatchResultEntry_validator = bv.Union(CreateFolderBatchResultEntry) + class CreateFolderEntryError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -892,7 +956,7 @@ class CreateFolderEntryError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -905,7 +969,7 @@ def path(cls, val): :param WriteError val: :rtype: CreateFolderEntryError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -913,7 +977,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_other(self): """ @@ -921,7 +985,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -934,10 +998,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderEntryError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderEntryError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderEntryError_validator = bv.Union(CreateFolderEntryError) + class CreateFolderEntryResult(bb.Struct): """ :ivar CreateFolderEntryResult.metadata: @@ -945,13 +1013,12 @@ class CreateFolderEntryResult(bb.Struct): """ __slots__ = [ - '_metadata_value', + "_metadata_value", ] _has_required_fields = True - def __init__(self, - metadata=None): + def __init__(self, metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -960,10 +1027,14 @@ def __init__(self, metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderEntryResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderEntryResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderEntryResult_validator = bv.Struct(CreateFolderEntryResult) + class CreateFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -982,7 +1053,7 @@ def path(cls, val): :param WriteError val: :rtype: CreateFolderError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -990,7 +1061,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def get_path(self): """ @@ -1003,10 +1074,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderError_validator = bv.Union(CreateFolderError) + class CreateFolderResult(FileOpsResult): """ :ivar CreateFolderResult.metadata: @@ -1014,13 +1089,12 @@ class CreateFolderResult(FileOpsResult): """ __slots__ = [ - '_metadata_value', + "_metadata_value", ] _has_required_fields = True - def __init__(self, - metadata=None): + def __init__(self, metadata=None): super(CreateFolderResult, self).__init__() self._metadata_value = bb.NOT_SET if metadata is not None: @@ -1030,10 +1104,14 @@ def __init__(self, metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderResult_validator = bv.Struct(CreateFolderResult) + class DeleteArg(bb.Struct): """ :ivar DeleteArg.path: @@ -1044,15 +1122,13 @@ class DeleteArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_parent_rev_value', + "_path_value", + "_parent_rev_value", ] _has_required_fields = True - def __init__(self, - path=None, - parent_rev=None): + def __init__(self, path=None, parent_rev=None): self._path_value = bb.NOT_SET self._parent_rev_value = bb.NOT_SET if path is not None: @@ -1069,18 +1145,18 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(DeleteArg, self)._process_custom_annotations(annotation_type, field_path, processor) + DeleteArg_validator = bv.Struct(DeleteArg) -class DeleteBatchArg(bb.Struct): +class DeleteBatchArg(bb.Struct): __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -1089,10 +1165,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteBatchArg_validator = bv.Struct(DeleteBatchArg) + class DeleteBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1105,7 +1185,7 @@ class DeleteBatchError(bb.Union): smaller granularity about which entry has failed because of this. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition too_many_write_operations = None # Attribute is overwritten below the class definition @@ -1117,7 +1197,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == 'too_many_write_operations' + return self._tag == "too_many_write_operations" def is_other(self): """ @@ -1125,13 +1205,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteBatchError_validator = bv.Union(DeleteBatchError) + class DeleteBatchJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1146,7 +1230,7 @@ class DeleteBatchJobStatus(async_.PollResultBase): :vartype DeleteBatchJobStatus.failed: DeleteBatchError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -1159,7 +1243,7 @@ def complete(cls, val): :param DeleteBatchResult val: :rtype: DeleteBatchJobStatus """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -1170,7 +1254,7 @@ def failed(cls, val): :param DeleteBatchError val: :rtype: DeleteBatchJobStatus """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -1178,7 +1262,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -1186,7 +1270,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def is_other(self): """ @@ -1194,7 +1278,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -1221,10 +1305,14 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteBatchJobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteBatchJobStatus_validator = bv.Union(DeleteBatchJobStatus) + class DeleteBatchLaunch(async_.LaunchResultBase): """ Result returned by :meth:`dropbox.dropbox_client.Dropbox.files_delete_batch` @@ -1235,7 +1323,7 @@ class DeleteBatchLaunch(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -1248,7 +1336,7 @@ def complete(cls, val): :param DeleteBatchResult val: :rtype: DeleteBatchLaunch """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -1256,7 +1344,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_other(self): """ @@ -1264,7 +1352,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -1277,10 +1365,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteBatchLaunch, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteBatchLaunch_validator = bv.Union(DeleteBatchLaunch) + class DeleteBatchResult(FileOpsResult): """ :ivar DeleteBatchResult.entries: @@ -1289,13 +1381,12 @@ class DeleteBatchResult(FileOpsResult): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): super(DeleteBatchResult, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -1305,10 +1396,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteBatchResult_validator = bv.Struct(DeleteBatchResult) + class DeleteBatchResultData(bb.Struct): """ :ivar DeleteBatchResultData.metadata: @@ -1316,13 +1411,12 @@ class DeleteBatchResultData(bb.Struct): """ __slots__ = [ - '_metadata_value', + "_metadata_value", ] _has_required_fields = True - def __init__(self, - metadata=None): + def __init__(self, metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -1331,10 +1425,14 @@ def __init__(self, metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchResultData, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteBatchResultData, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteBatchResultData_validator = bv.Struct(DeleteBatchResultData) + class DeleteBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1353,7 +1451,7 @@ def success(cls, val): :param DeleteBatchResultData val: :rtype: DeleteBatchResultEntry """ - return cls('success', val) + return cls("success", val) @classmethod def failure(cls, val): @@ -1364,7 +1462,7 @@ def failure(cls, val): :param DeleteError val: :rtype: DeleteBatchResultEntry """ - return cls('failure', val) + return cls("failure", val) def is_success(self): """ @@ -1372,7 +1470,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_failure(self): """ @@ -1380,7 +1478,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == 'failure' + return self._tag == "failure" def get_success(self): """ @@ -1403,10 +1501,14 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteBatchResultEntry, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteBatchResultEntry_validator = bv.Union(DeleteBatchResultEntry) + class DeleteError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1420,7 +1522,7 @@ class DeleteError(bb.Union): There are too many files in one request. Please retry with fewer files. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition too_many_write_operations = None # Attribute is overwritten below the class definition @@ -1437,7 +1539,7 @@ def path_lookup(cls, val): :param LookupError val: :rtype: DeleteError """ - return cls('path_lookup', val) + return cls("path_lookup", val) @classmethod def path_write(cls, val): @@ -1448,7 +1550,7 @@ def path_write(cls, val): :param WriteError val: :rtype: DeleteError """ - return cls('path_write', val) + return cls("path_write", val) def is_path_lookup(self): """ @@ -1456,7 +1558,7 @@ def is_path_lookup(self): :rtype: bool """ - return self._tag == 'path_lookup' + return self._tag == "path_lookup" def is_path_write(self): """ @@ -1464,7 +1566,7 @@ def is_path_write(self): :rtype: bool """ - return self._tag == 'path_write' + return self._tag == "path_write" def is_too_many_write_operations(self): """ @@ -1472,7 +1574,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == 'too_many_write_operations' + return self._tag == "too_many_write_operations" def is_too_many_files(self): """ @@ -1480,7 +1582,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == 'too_many_files' + return self._tag == "too_many_files" def is_other(self): """ @@ -1488,7 +1590,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path_lookup(self): """ @@ -1513,8 +1615,10 @@ def get_path_write(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(DeleteError, self)._process_custom_annotations(annotation_type, field_path, processor) + DeleteError_validator = bv.Union(DeleteError) + class DeleteResult(FileOpsResult): """ :ivar DeleteResult.metadata: @@ -1522,13 +1626,12 @@ class DeleteResult(FileOpsResult): """ __slots__ = [ - '_metadata_value', + "_metadata_value", ] _has_required_fields = True - def __init__(self, - metadata=None): + def __init__(self, metadata=None): super(DeleteResult, self).__init__() self._metadata_value = bb.NOT_SET if metadata is not None: @@ -1538,10 +1641,14 @@ def __init__(self, metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteResult_validator = bv.Struct(DeleteResult) + class Metadata(bb.Struct): """ Metadata for a file or folder. @@ -1569,21 +1676,23 @@ class Metadata(bb.Struct): """ __slots__ = [ - '_name_value', - '_path_lower_value', - '_path_display_value', - '_parent_shared_folder_id_value', - '_preview_url_value', + "_name_value", + "_path_lower_value", + "_path_display_value", + "_parent_shared_folder_id_value", + "_preview_url_value", ] _has_required_fields = True - def __init__(self, - name=None, - path_lower=None, - path_display=None, - parent_shared_folder_id=None, - preview_url=None): + def __init__( + self, + name=None, + path_lower=None, + path_display=None, + parent_shared_folder_id=None, + preview_url=None, + ): self._name_value = bb.NOT_SET self._path_lower_value = bb.NOT_SET self._path_display_value = bb.NOT_SET @@ -1618,8 +1727,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(Metadata, self)._process_custom_annotations(annotation_type, field_path, processor) + Metadata_validator = bv.StructTree(Metadata) + class DeletedMetadata(Metadata): """ Indicates that there used to be a file or folder at this path, but it no @@ -1630,23 +1741,23 @@ class DeletedMetadata(Metadata): """ __slots__ = [ - '_is_restorable_value', + "_is_restorable_value", ] _has_required_fields = True - def __init__(self, - name=None, - path_lower=None, - path_display=None, - parent_shared_folder_id=None, - preview_url=None, - is_restorable=None): - super(DeletedMetadata, self).__init__(name, - path_lower, - path_display, - parent_shared_folder_id, - preview_url) + def __init__( + self, + name=None, + path_lower=None, + path_display=None, + parent_shared_folder_id=None, + preview_url=None, + is_restorable=None, + ): + super(DeletedMetadata, self).__init__( + name, path_lower, path_display, parent_shared_folder_id, preview_url + ) self._is_restorable_value = bb.NOT_SET if is_restorable is not None: self.is_restorable = is_restorable @@ -1655,10 +1766,14 @@ def __init__(self, is_restorable = bb.Attribute("is_restorable", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeletedMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeletedMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeletedMetadata_validator = bv.Struct(DeletedMetadata) + class Dimensions(bb.Struct): """ Dimensions for a photo or video. @@ -1670,15 +1785,13 @@ class Dimensions(bb.Struct): """ __slots__ = [ - '_height_value', - '_width_value', + "_height_value", + "_width_value", ] _has_required_fields = True - def __init__(self, - height=None, - width=None): + def __init__(self, height=None, width=None): self._height_value = bb.NOT_SET self._width_value = bb.NOT_SET if height is not None: @@ -1695,8 +1808,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(Dimensions, self)._process_custom_annotations(annotation_type, field_path, processor) + Dimensions_validator = bv.Struct(Dimensions) + class DownloadArg(bb.Struct): """ :ivar DownloadArg.path: @@ -1706,15 +1821,13 @@ class DownloadArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_rev_value', + "_path_value", + "_rev_value", ] _has_required_fields = True - def __init__(self, - path=None, - rev=None): + def __init__(self, path=None, rev=None): self._path_value = bb.NOT_SET self._rev_value = bb.NOT_SET if path is not None: @@ -1731,8 +1844,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(DownloadArg, self)._process_custom_annotations(annotation_type, field_path, processor) + DownloadArg_validator = bv.Struct(DownloadArg) + class DownloadError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1744,7 +1859,7 @@ class DownloadError(bb.Union): :meth:`dropbox.dropbox_client.Dropbox.files_export` instead. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unsupported_file = None # Attribute is overwritten below the class definition @@ -1759,7 +1874,7 @@ def path(cls, val): :param LookupError val: :rtype: DownloadError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -1767,7 +1882,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_unsupported_file(self): """ @@ -1775,7 +1890,7 @@ def is_unsupported_file(self): :rtype: bool """ - return self._tag == 'unsupported_file' + return self._tag == "unsupported_file" def is_other(self): """ @@ -1783,7 +1898,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -1796,10 +1911,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DownloadError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DownloadError_validator = bv.Union(DownloadError) + class DownloadZipArg(bb.Struct): """ :ivar DownloadZipArg.path: @@ -1807,13 +1926,12 @@ class DownloadZipArg(bb.Struct): """ __slots__ = [ - '_path_value', + "_path_value", ] _has_required_fields = True - def __init__(self, - path=None): + def __init__(self, path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -1822,10 +1940,14 @@ def __init__(self, path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadZipArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DownloadZipArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DownloadZipArg_validator = bv.Struct(DownloadZipArg) + class DownloadZipError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1838,7 +1960,7 @@ class DownloadZipError(bb.Union): The folder has too many files to download. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition too_large = None # Attribute is overwritten below the class definition @@ -1855,7 +1977,7 @@ def path(cls, val): :param LookupError val: :rtype: DownloadZipError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -1863,7 +1985,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_too_large(self): """ @@ -1871,7 +1993,7 @@ def is_too_large(self): :rtype: bool """ - return self._tag == 'too_large' + return self._tag == "too_large" def is_too_many_files(self): """ @@ -1879,7 +2001,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == 'too_many_files' + return self._tag == "too_many_files" def is_other(self): """ @@ -1887,7 +2009,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -1900,20 +2022,22 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadZipError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DownloadZipError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DownloadZipError_validator = bv.Union(DownloadZipError) -class DownloadZipResult(bb.Struct): +class DownloadZipResult(bb.Struct): __slots__ = [ - '_metadata_value', + "_metadata_value", ] _has_required_fields = True - def __init__(self, - metadata=None): + def __init__(self, metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -1922,10 +2046,14 @@ def __init__(self, metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadZipResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DownloadZipResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DownloadZipResult_validator = bv.Struct(DownloadZipResult) + class ExportArg(bb.Struct): """ :ivar ExportArg.path: @@ -1939,15 +2067,13 @@ class ExportArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_export_format_value', + "_path_value", + "_export_format_value", ] _has_required_fields = True - def __init__(self, - path=None, - export_format=None): + def __init__(self, path=None, export_format=None): self._path_value = bb.NOT_SET self._export_format_value = bb.NOT_SET if path is not None: @@ -1964,8 +2090,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(ExportArg, self)._process_custom_annotations(annotation_type, field_path, processor) + ExportArg_validator = bv.Struct(ExportArg) + class ExportError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1981,7 +2109,7 @@ class ExportError(bb.Union): The exportable content is not yet available. Please retry later. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition non_exportable = None # Attribute is overwritten below the class definition @@ -2000,7 +2128,7 @@ def path(cls, val): :param LookupError val: :rtype: ExportError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -2008,7 +2136,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_non_exportable(self): """ @@ -2016,7 +2144,7 @@ def is_non_exportable(self): :rtype: bool """ - return self._tag == 'non_exportable' + return self._tag == "non_exportable" def is_invalid_export_format(self): """ @@ -2024,7 +2152,7 @@ def is_invalid_export_format(self): :rtype: bool """ - return self._tag == 'invalid_export_format' + return self._tag == "invalid_export_format" def is_retry_error(self): """ @@ -2032,7 +2160,7 @@ def is_retry_error(self): :rtype: bool """ - return self._tag == 'retry_error' + return self._tag == "retry_error" def is_other(self): """ @@ -2040,7 +2168,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -2055,8 +2183,10 @@ def get_path(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(ExportError, self)._process_custom_annotations(annotation_type, field_path, processor) + ExportError_validator = bv.Union(ExportError) + class ExportInfo(bb.Struct): """ Export information for a file. @@ -2069,15 +2199,13 @@ class ExportInfo(bb.Struct): """ __slots__ = [ - '_export_as_value', - '_export_options_value', + "_export_as_value", + "_export_options_value", ] _has_required_fields = False - def __init__(self, - export_as=None, - export_options=None): + def __init__(self, export_as=None, export_options=None): self._export_as_value = bb.NOT_SET self._export_options_value = bb.NOT_SET if export_as is not None: @@ -2094,8 +2222,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(ExportInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + ExportInfo_validator = bv.Struct(ExportInfo) + class ExportMetadata(bb.Struct): """ :ivar ExportMetadata.name: @@ -2114,19 +2244,15 @@ class ExportMetadata(bb.Struct): """ __slots__ = [ - '_name_value', - '_size_value', - '_export_hash_value', - '_paper_revision_value', + "_name_value", + "_size_value", + "_export_hash_value", + "_paper_revision_value", ] _has_required_fields = True - def __init__(self, - name=None, - size=None, - export_hash=None, - paper_revision=None): + def __init__(self, name=None, size=None, export_hash=None, paper_revision=None): self._name_value = bb.NOT_SET self._size_value = bb.NOT_SET self._export_hash_value = bb.NOT_SET @@ -2153,10 +2279,14 @@ def __init__(self, paper_revision = bb.Attribute("paper_revision", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExportMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExportMetadata_validator = bv.Struct(ExportMetadata) + class ExportResult(bb.Struct): """ :ivar ExportResult.export_metadata: @@ -2166,15 +2296,13 @@ class ExportResult(bb.Struct): """ __slots__ = [ - '_export_metadata_value', - '_file_metadata_value', + "_export_metadata_value", + "_file_metadata_value", ] _has_required_fields = True - def __init__(self, - export_metadata=None, - file_metadata=None): + def __init__(self, export_metadata=None, file_metadata=None): self._export_metadata_value = bb.NOT_SET self._file_metadata_value = bb.NOT_SET if export_metadata is not None: @@ -2189,10 +2317,14 @@ def __init__(self, file_metadata = bb.Attribute("file_metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExportResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExportResult_validator = bv.Struct(ExportResult) + class FileCategory(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2221,7 +2353,7 @@ class FileCategory(bb.Union): any file not in one of the categories above. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition image = None # Attribute is overwritten below the class definition @@ -2251,7 +2383,7 @@ def is_image(self): :rtype: bool """ - return self._tag == 'image' + return self._tag == "image" def is_document(self): """ @@ -2259,7 +2391,7 @@ def is_document(self): :rtype: bool """ - return self._tag == 'document' + return self._tag == "document" def is_pdf(self): """ @@ -2267,7 +2399,7 @@ def is_pdf(self): :rtype: bool """ - return self._tag == 'pdf' + return self._tag == "pdf" def is_spreadsheet(self): """ @@ -2275,7 +2407,7 @@ def is_spreadsheet(self): :rtype: bool """ - return self._tag == 'spreadsheet' + return self._tag == "spreadsheet" def is_presentation(self): """ @@ -2283,7 +2415,7 @@ def is_presentation(self): :rtype: bool """ - return self._tag == 'presentation' + return self._tag == "presentation" def is_audio(self): """ @@ -2291,7 +2423,7 @@ def is_audio(self): :rtype: bool """ - return self._tag == 'audio' + return self._tag == "audio" def is_video(self): """ @@ -2299,7 +2431,7 @@ def is_video(self): :rtype: bool """ - return self._tag == 'video' + return self._tag == "video" def is_folder(self): """ @@ -2307,7 +2439,7 @@ def is_folder(self): :rtype: bool """ - return self._tag == 'folder' + return self._tag == "folder" def is_paper(self): """ @@ -2315,7 +2447,7 @@ def is_paper(self): :rtype: bool """ - return self._tag == 'paper' + return self._tag == "paper" def is_others(self): """ @@ -2323,7 +2455,7 @@ def is_others(self): :rtype: bool """ - return self._tag == 'others' + return self._tag == "others" def is_other(self): """ @@ -2331,13 +2463,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCategory, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileCategory, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileCategory_validator = bv.Union(FileCategory) + class FileLock(bb.Struct): """ :ivar FileLock.content: @@ -2345,13 +2481,12 @@ class FileLock(bb.Struct): """ __slots__ = [ - '_content_value', + "_content_value", ] _has_required_fields = True - def __init__(self, - content=None): + def __init__(self, content=None): self._content_value = bb.NOT_SET if content is not None: self.content = content @@ -2362,8 +2497,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileLock, self)._process_custom_annotations(annotation_type, field_path, processor) + FileLock_validator = bv.Struct(FileLock) + class FileLockContent(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2377,7 +2514,7 @@ class FileLockContent(bb.Union): :vartype FileLockContent.single_user: SingleUserLock """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unlocked = None # Attribute is overwritten below the class definition @@ -2392,7 +2529,7 @@ def single_user(cls, val): :param SingleUserLock val: :rtype: FileLockContent """ - return cls('single_user', val) + return cls("single_user", val) def is_unlocked(self): """ @@ -2400,7 +2537,7 @@ def is_unlocked(self): :rtype: bool """ - return self._tag == 'unlocked' + return self._tag == "unlocked" def is_single_user(self): """ @@ -2408,7 +2545,7 @@ def is_single_user(self): :rtype: bool """ - return self._tag == 'single_user' + return self._tag == "single_user" def is_other(self): """ @@ -2416,7 +2553,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_single_user(self): """ @@ -2431,10 +2568,14 @@ def get_single_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockContent, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLockContent, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLockContent_validator = bv.Union(FileLockContent) + class FileLockMetadata(bb.Struct): """ :ivar FileLockMetadata.is_lockholder: @@ -2448,19 +2589,21 @@ class FileLockMetadata(bb.Struct): """ __slots__ = [ - '_is_lockholder_value', - '_lockholder_name_value', - '_lockholder_account_id_value', - '_created_value', + "_is_lockholder_value", + "_lockholder_name_value", + "_lockholder_account_id_value", + "_created_value", ] _has_required_fields = False - def __init__(self, - is_lockholder=None, - lockholder_name=None, - lockholder_account_id=None, - created=None): + def __init__( + self, + is_lockholder=None, + lockholder_name=None, + lockholder_account_id=None, + created=None, + ): self._is_lockholder_value = bb.NOT_SET self._lockholder_name_value = bb.NOT_SET self._lockholder_account_id_value = bb.NOT_SET @@ -2487,10 +2630,14 @@ def __init__(self, created = bb.Attribute("created", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLockMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLockMetadata_validator = bv.Struct(FileLockMetadata) + class FileMetadata(Metadata): """ :ivar FileMetadata.id: @@ -2548,51 +2695,51 @@ class FileMetadata(Metadata): """ __slots__ = [ - '_id_value', - '_client_modified_value', - '_server_modified_value', - '_rev_value', - '_size_value', - '_media_info_value', - '_symlink_info_value', - '_sharing_info_value', - '_is_downloadable_value', - '_export_info_value', - '_property_groups_value', - '_has_explicit_shared_members_value', - '_content_hash_value', - '_file_lock_info_value', - '_is_restorable_value', + "_id_value", + "_client_modified_value", + "_server_modified_value", + "_rev_value", + "_size_value", + "_media_info_value", + "_symlink_info_value", + "_sharing_info_value", + "_is_downloadable_value", + "_export_info_value", + "_property_groups_value", + "_has_explicit_shared_members_value", + "_content_hash_value", + "_file_lock_info_value", + "_is_restorable_value", ] _has_required_fields = True - def __init__(self, - name=None, - id=None, - client_modified=None, - server_modified=None, - rev=None, - size=None, - path_lower=None, - path_display=None, - parent_shared_folder_id=None, - preview_url=None, - media_info=None, - symlink_info=None, - sharing_info=None, - is_downloadable=None, - export_info=None, - property_groups=None, - has_explicit_shared_members=None, - content_hash=None, - file_lock_info=None, - is_restorable=None): - super(FileMetadata, self).__init__(name, - path_lower, - path_display, - parent_shared_folder_id, - preview_url) + def __init__( + self, + name=None, + id=None, + client_modified=None, + server_modified=None, + rev=None, + size=None, + path_lower=None, + path_display=None, + parent_shared_folder_id=None, + preview_url=None, + media_info=None, + symlink_info=None, + sharing_info=None, + is_downloadable=None, + export_info=None, + property_groups=None, + has_explicit_shared_members=None, + content_hash=None, + file_lock_info=None, + is_restorable=None, + ): + super(FileMetadata, self).__init__( + name, path_lower, path_display, parent_shared_folder_id, preview_url + ) self._id_value = bb.NOT_SET self._client_modified_value = bb.NOT_SET self._server_modified_value = bb.NOT_SET @@ -2685,10 +2832,14 @@ def __init__(self, is_restorable = bb.Attribute("is_restorable", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileMetadata_validator = bv.Struct(FileMetadata) + class SharingInfo(bb.Struct): """ Sharing info for a file or folder. @@ -2698,13 +2849,12 @@ class SharingInfo(bb.Struct): """ __slots__ = [ - '_read_only_value', + "_read_only_value", ] _has_required_fields = True - def __init__(self, - read_only=None): + def __init__(self, read_only=None): self._read_only_value = bb.NOT_SET if read_only is not None: self.read_only = read_only @@ -2715,8 +2865,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(SharingInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + SharingInfo_validator = bv.Struct(SharingInfo) + class FileSharingInfo(SharingInfo): """ Sharing info for a file which is contained by a shared folder. @@ -2729,16 +2881,13 @@ class FileSharingInfo(SharingInfo): """ __slots__ = [ - '_parent_shared_folder_id_value', - '_modified_by_value', + "_parent_shared_folder_id_value", + "_modified_by_value", ] _has_required_fields = True - def __init__(self, - read_only=None, - parent_shared_folder_id=None, - modified_by=None): + def __init__(self, read_only=None, parent_shared_folder_id=None, modified_by=None): super(FileSharingInfo, self).__init__(read_only) self._parent_shared_folder_id_value = bb.NOT_SET self._modified_by_value = bb.NOT_SET @@ -2754,10 +2903,14 @@ def __init__(self, modified_by = bb.Attribute("modified_by", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileSharingInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileSharingInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileSharingInfo_validator = bv.Struct(FileSharingInfo) + class FileStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2765,7 +2918,7 @@ class FileStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -2779,7 +2932,7 @@ def is_active(self): :rtype: bool """ - return self._tag == 'active' + return self._tag == "active" def is_deleted(self): """ @@ -2787,7 +2940,7 @@ def is_deleted(self): :rtype: bool """ - return self._tag == 'deleted' + return self._tag == "deleted" def is_other(self): """ @@ -2795,13 +2948,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + FileStatus_validator = bv.Union(FileStatus) + class FolderMetadata(Metadata): """ :ivar FolderMetadata.id: @@ -2819,29 +2974,29 @@ class FolderMetadata(Metadata): """ __slots__ = [ - '_id_value', - '_shared_folder_id_value', - '_sharing_info_value', - '_property_groups_value', + "_id_value", + "_shared_folder_id_value", + "_sharing_info_value", + "_property_groups_value", ] _has_required_fields = True - def __init__(self, - name=None, - id=None, - path_lower=None, - path_display=None, - parent_shared_folder_id=None, - preview_url=None, - shared_folder_id=None, - sharing_info=None, - property_groups=None): - super(FolderMetadata, self).__init__(name, - path_lower, - path_display, - parent_shared_folder_id, - preview_url) + def __init__( + self, + name=None, + id=None, + path_lower=None, + path_display=None, + parent_shared_folder_id=None, + preview_url=None, + shared_folder_id=None, + sharing_info=None, + property_groups=None, + ): + super(FolderMetadata, self).__init__( + name, path_lower, path_display, parent_shared_folder_id, preview_url + ) self._id_value = bb.NOT_SET self._shared_folder_id_value = bb.NOT_SET self._sharing_info_value = bb.NOT_SET @@ -2868,10 +3023,14 @@ def __init__(self, property_groups = bb.Attribute("property_groups", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderMetadata_validator = bv.Struct(FolderMetadata) + class FolderSharingInfo(SharingInfo): """ Sharing info for a folder which is contained in a shared folder or is a @@ -2892,20 +3051,22 @@ class FolderSharingInfo(SharingInfo): """ __slots__ = [ - '_parent_shared_folder_id_value', - '_shared_folder_id_value', - '_traverse_only_value', - '_no_access_value', + "_parent_shared_folder_id_value", + "_shared_folder_id_value", + "_traverse_only_value", + "_no_access_value", ] _has_required_fields = True - def __init__(self, - read_only=None, - parent_shared_folder_id=None, - shared_folder_id=None, - traverse_only=None, - no_access=None): + def __init__( + self, + read_only=None, + parent_shared_folder_id=None, + shared_folder_id=None, + traverse_only=None, + no_access=None, + ): super(FolderSharingInfo, self).__init__(read_only) self._parent_shared_folder_id_value = bb.NOT_SET self._shared_folder_id_value = bb.NOT_SET @@ -2933,10 +3094,14 @@ def __init__(self, no_access = bb.Attribute("no_access") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderSharingInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderSharingInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderSharingInfo_validator = bv.Struct(FolderSharingInfo) + class GetCopyReferenceArg(bb.Struct): """ :ivar GetCopyReferenceArg.path: @@ -2944,13 +3109,12 @@ class GetCopyReferenceArg(bb.Struct): """ __slots__ = [ - '_path_value', + "_path_value", ] _has_required_fields = True - def __init__(self, - path=None): + def __init__(self, path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -2959,10 +3123,14 @@ def __init__(self, path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetCopyReferenceArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetCopyReferenceArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetCopyReferenceArg_validator = bv.Struct(GetCopyReferenceArg) + class GetCopyReferenceError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2970,7 +3138,7 @@ class GetCopyReferenceError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -2983,7 +3151,7 @@ def path(cls, val): :param LookupError val: :rtype: GetCopyReferenceError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -2991,7 +3159,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_other(self): """ @@ -2999,7 +3167,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -3012,10 +3180,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetCopyReferenceError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetCopyReferenceError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetCopyReferenceError_validator = bv.Union(GetCopyReferenceError) + class GetCopyReferenceResult(bb.Struct): """ :ivar GetCopyReferenceResult.metadata: @@ -3029,17 +3201,14 @@ class GetCopyReferenceResult(bb.Struct): """ __slots__ = [ - '_metadata_value', - '_copy_reference_value', - '_expires_value', + "_metadata_value", + "_copy_reference_value", + "_expires_value", ] _has_required_fields = True - def __init__(self, - metadata=None, - copy_reference=None, - expires=None): + def __init__(self, metadata=None, copy_reference=None, expires=None): self._metadata_value = bb.NOT_SET self._copy_reference_value = bb.NOT_SET self._expires_value = bb.NOT_SET @@ -3060,10 +3229,14 @@ def __init__(self, expires = bb.Attribute("expires") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetCopyReferenceResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetCopyReferenceResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetCopyReferenceResult_validator = bv.Struct(GetCopyReferenceResult) + class GetTagsArg(bb.Struct): """ :ivar GetTagsArg.paths: @@ -3071,13 +3244,12 @@ class GetTagsArg(bb.Struct): """ __slots__ = [ - '_paths_value', + "_paths_value", ] _has_required_fields = True - def __init__(self, - paths=None): + def __init__(self, paths=None): self._paths_value = bb.NOT_SET if paths is not None: self.paths = paths @@ -3088,8 +3260,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(GetTagsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + GetTagsArg_validator = bv.Struct(GetTagsArg) + class GetTagsResult(bb.Struct): """ :ivar GetTagsResult.paths_to_tags: @@ -3097,13 +3271,12 @@ class GetTagsResult(bb.Struct): """ __slots__ = [ - '_paths_to_tags_value', + "_paths_to_tags_value", ] _has_required_fields = True - def __init__(self, - paths_to_tags=None): + def __init__(self, paths_to_tags=None): self._paths_to_tags_value = bb.NOT_SET if paths_to_tags is not None: self.paths_to_tags = paths_to_tags @@ -3112,10 +3285,14 @@ def __init__(self, paths_to_tags = bb.Attribute("paths_to_tags") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTagsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTagsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTagsResult_validator = bv.Struct(GetTagsResult) + class GetTemporaryLinkArg(bb.Struct): """ :ivar GetTemporaryLinkArg.path: @@ -3123,13 +3300,12 @@ class GetTemporaryLinkArg(bb.Struct): """ __slots__ = [ - '_path_value', + "_path_value", ] _has_required_fields = True - def __init__(self, - path=None): + def __init__(self, path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -3138,10 +3314,14 @@ def __init__(self, path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryLinkArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTemporaryLinkArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTemporaryLinkArg_validator = bv.Struct(GetTemporaryLinkArg) + class GetTemporaryLinkError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3162,7 +3342,7 @@ class GetTemporaryLinkError(bb.Union): `_. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition email_not_verified = None # Attribute is overwritten below the class definition @@ -3181,7 +3361,7 @@ def path(cls, val): :param LookupError val: :rtype: GetTemporaryLinkError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -3189,7 +3369,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_email_not_verified(self): """ @@ -3197,7 +3377,7 @@ def is_email_not_verified(self): :rtype: bool """ - return self._tag == 'email_not_verified' + return self._tag == "email_not_verified" def is_unsupported_file(self): """ @@ -3205,7 +3385,7 @@ def is_unsupported_file(self): :rtype: bool """ - return self._tag == 'unsupported_file' + return self._tag == "unsupported_file" def is_not_allowed(self): """ @@ -3213,7 +3393,7 @@ def is_not_allowed(self): :rtype: bool """ - return self._tag == 'not_allowed' + return self._tag == "not_allowed" def is_other(self): """ @@ -3221,7 +3401,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -3234,10 +3414,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryLinkError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTemporaryLinkError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTemporaryLinkError_validator = bv.Union(GetTemporaryLinkError) + class GetTemporaryLinkResult(bb.Struct): """ :ivar GetTemporaryLinkResult.metadata: @@ -3247,15 +3431,13 @@ class GetTemporaryLinkResult(bb.Struct): """ __slots__ = [ - '_metadata_value', - '_link_value', + "_metadata_value", + "_link_value", ] _has_required_fields = True - def __init__(self, - metadata=None, - link=None): + def __init__(self, metadata=None, link=None): self._metadata_value = bb.NOT_SET self._link_value = bb.NOT_SET if metadata is not None: @@ -3270,10 +3452,14 @@ def __init__(self, link = bb.Attribute("link") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryLinkResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTemporaryLinkResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTemporaryLinkResult_validator = bv.Struct(GetTemporaryLinkResult) + class GetTemporaryUploadLinkArg(bb.Struct): """ :ivar GetTemporaryUploadLinkArg.commit_info: @@ -3287,15 +3473,13 @@ class GetTemporaryUploadLinkArg(bb.Struct): """ __slots__ = [ - '_commit_info_value', - '_duration_value', + "_commit_info_value", + "_duration_value", ] _has_required_fields = True - def __init__(self, - commit_info=None, - duration=None): + def __init__(self, commit_info=None, duration=None): self._commit_info_value = bb.NOT_SET self._duration_value = bb.NOT_SET if commit_info is not None: @@ -3310,10 +3494,14 @@ def __init__(self, duration = bb.Attribute("duration") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryUploadLinkArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTemporaryUploadLinkArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTemporaryUploadLinkArg_validator = bv.Struct(GetTemporaryUploadLinkArg) + class GetTemporaryUploadLinkResult(bb.Struct): """ :ivar GetTemporaryUploadLinkResult.link: @@ -3322,13 +3510,12 @@ class GetTemporaryUploadLinkResult(bb.Struct): """ __slots__ = [ - '_link_value', + "_link_value", ] _has_required_fields = True - def __init__(self, - link=None): + def __init__(self, link=None): self._link_value = bb.NOT_SET if link is not None: self.link = link @@ -3337,10 +3524,14 @@ def __init__(self, link = bb.Attribute("link") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTemporaryUploadLinkResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTemporaryUploadLinkResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTemporaryUploadLinkResult_validator = bv.Struct(GetTemporaryUploadLinkResult) + class GetThumbnailBatchArg(bb.Struct): """ Arguments for @@ -3351,13 +3542,12 @@ class GetThumbnailBatchArg(bb.Struct): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -3366,10 +3556,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetThumbnailBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetThumbnailBatchArg_validator = bv.Struct(GetThumbnailBatchArg) + class GetThumbnailBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3380,7 +3574,7 @@ class GetThumbnailBatchError(bb.Union): The operation involves more than 25 files. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition too_many_files = None # Attribute is overwritten below the class definition @@ -3392,7 +3586,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == 'too_many_files' + return self._tag == "too_many_files" def is_other(self): """ @@ -3400,13 +3594,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetThumbnailBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetThumbnailBatchError_validator = bv.Union(GetThumbnailBatchError) + class GetThumbnailBatchResult(bb.Struct): """ :ivar GetThumbnailBatchResult.entries: @@ -3414,13 +3612,12 @@ class GetThumbnailBatchResult(bb.Struct): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -3429,10 +3626,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetThumbnailBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetThumbnailBatchResult_validator = bv.Struct(GetThumbnailBatchResult) + class GetThumbnailBatchResultData(bb.Struct): """ :ivar GetThumbnailBatchResultData.thumbnail: @@ -3440,15 +3641,13 @@ class GetThumbnailBatchResultData(bb.Struct): """ __slots__ = [ - '_metadata_value', - '_thumbnail_value', + "_metadata_value", + "_thumbnail_value", ] _has_required_fields = True - def __init__(self, - metadata=None, - thumbnail=None): + def __init__(self, metadata=None, thumbnail=None): self._metadata_value = bb.NOT_SET self._thumbnail_value = bb.NOT_SET if metadata is not None: @@ -3463,10 +3662,14 @@ def __init__(self, thumbnail = bb.Attribute("thumbnail") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchResultData, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetThumbnailBatchResultData, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetThumbnailBatchResultData_validator = bv.Struct(GetThumbnailBatchResultData) + class GetThumbnailBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3478,7 +3681,7 @@ class GetThumbnailBatchResultEntry(bb.Union): :vartype GetThumbnailBatchResultEntry.failure: ThumbnailError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -3491,7 +3694,7 @@ def success(cls, val): :param GetThumbnailBatchResultData val: :rtype: GetThumbnailBatchResultEntry """ - return cls('success', val) + return cls("success", val) @classmethod def failure(cls, val): @@ -3502,7 +3705,7 @@ def failure(cls, val): :param ThumbnailError val: :rtype: GetThumbnailBatchResultEntry """ - return cls('failure', val) + return cls("failure", val) def is_success(self): """ @@ -3510,7 +3713,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_failure(self): """ @@ -3518,7 +3721,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == 'failure' + return self._tag == "failure" def is_other(self): """ @@ -3526,7 +3729,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -3551,10 +3754,14 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetThumbnailBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetThumbnailBatchResultEntry, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetThumbnailBatchResultEntry_validator = bv.Union(GetThumbnailBatchResultEntry) + class GpsCoordinates(bb.Struct): """ GPS coordinates for a photo or video. @@ -3566,15 +3773,13 @@ class GpsCoordinates(bb.Struct): """ __slots__ = [ - '_latitude_value', - '_longitude_value', + "_latitude_value", + "_longitude_value", ] _has_required_fields = True - def __init__(self, - latitude=None, - longitude=None): + def __init__(self, latitude=None, longitude=None): self._latitude_value = bb.NOT_SET self._longitude_value = bb.NOT_SET if latitude is not None: @@ -3589,10 +3794,14 @@ def __init__(self, longitude = bb.Attribute("longitude") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GpsCoordinates, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GpsCoordinates, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GpsCoordinates_validator = bv.Struct(GpsCoordinates) + class HighlightSpan(bb.Struct): """ :ivar HighlightSpan.highlight_str: @@ -3602,15 +3811,13 @@ class HighlightSpan(bb.Struct): """ __slots__ = [ - '_highlight_str_value', - '_is_highlighted_value', + "_highlight_str_value", + "_is_highlighted_value", ] _has_required_fields = True - def __init__(self, - highlight_str=None, - is_highlighted=None): + def __init__(self, highlight_str=None, is_highlighted=None): self._highlight_str_value = bb.NOT_SET self._is_highlighted_value = bb.NOT_SET if highlight_str is not None: @@ -3625,10 +3832,14 @@ def __init__(self, is_highlighted = bb.Attribute("is_highlighted") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HighlightSpan, self)._process_custom_annotations(annotation_type, field_path, processor) + super(HighlightSpan, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + HighlightSpan_validator = bv.Struct(HighlightSpan) + class ImportFormat(bb.Union): """ The import format of the incoming Paper doc content. @@ -3645,7 +3856,7 @@ class ImportFormat(bb.Union): The provided data is interpreted as plain text. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition html = None # Attribute is overwritten below the class definition @@ -3661,7 +3872,7 @@ def is_html(self): :rtype: bool """ - return self._tag == 'html' + return self._tag == "html" def is_markdown(self): """ @@ -3669,7 +3880,7 @@ def is_markdown(self): :rtype: bool """ - return self._tag == 'markdown' + return self._tag == "markdown" def is_plain_text(self): """ @@ -3677,7 +3888,7 @@ def is_plain_text(self): :rtype: bool """ - return self._tag == 'plain_text' + return self._tag == "plain_text" def is_other(self): """ @@ -3685,13 +3896,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ImportFormat, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ImportFormat, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ImportFormat_validator = bv.Union(ImportFormat) + class ListFolderArg(bb.Struct): """ :ivar ListFolderArg.path: @@ -3738,33 +3953,35 @@ class ListFolderArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_recursive_value', - '_include_media_info_value', - '_include_deleted_value', - '_include_has_explicit_shared_members_value', - '_include_mounted_folders_value', - '_limit_value', - '_shared_link_value', - '_include_property_groups_value', - '_include_non_downloadable_files_value', - '_include_restorable_info_value', + "_path_value", + "_recursive_value", + "_include_media_info_value", + "_include_deleted_value", + "_include_has_explicit_shared_members_value", + "_include_mounted_folders_value", + "_limit_value", + "_shared_link_value", + "_include_property_groups_value", + "_include_non_downloadable_files_value", + "_include_restorable_info_value", ] _has_required_fields = True - def __init__(self, - path=None, - recursive=None, - include_media_info=None, - include_deleted=None, - include_has_explicit_shared_members=None, - include_mounted_folders=None, - limit=None, - shared_link=None, - include_property_groups=None, - include_non_downloadable_files=None, - include_restorable_info=None): + def __init__( + self, + path=None, + recursive=None, + include_media_info=None, + include_deleted=None, + include_has_explicit_shared_members=None, + include_mounted_folders=None, + limit=None, + shared_link=None, + include_property_groups=None, + include_non_downloadable_files=None, + include_restorable_info=None, + ): self._path_value = bb.NOT_SET self._recursive_value = bb.NOT_SET self._include_media_info_value = bb.NOT_SET @@ -3824,7 +4041,9 @@ def __init__(self, shared_link = bb.Attribute("shared_link", nullable=True, user_defined=True) # Instance attribute type: file_properties.TemplateFilterBase (validator is set below) - include_property_groups = bb.Attribute("include_property_groups", nullable=True, user_defined=True) + include_property_groups = bb.Attribute( + "include_property_groups", nullable=True, user_defined=True + ) # Instance attribute type: bool (validator is set below) include_non_downloadable_files = bb.Attribute("include_non_downloadable_files") @@ -3833,10 +4052,14 @@ def __init__(self, include_restorable_info = bb.Attribute("include_restorable_info") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderArg_validator = bv.Struct(ListFolderArg) + class ListFolderContinueArg(bb.Struct): """ :ivar ListFolderContinueArg.cursor: @@ -3846,13 +4069,12 @@ class ListFolderContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -3861,10 +4083,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderContinueArg_validator = bv.Struct(ListFolderContinueArg) + class ListFolderContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3877,7 +4103,7 @@ class ListFolderContinueError(bb.Union): cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -3892,7 +4118,7 @@ def path(cls, val): :param LookupError val: :rtype: ListFolderContinueError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -3900,7 +4126,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_reset(self): """ @@ -3908,7 +4134,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -3916,7 +4142,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -3929,10 +4155,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderContinueError_validator = bv.Union(ListFolderContinueError) + class ListFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3940,7 +4170,7 @@ class ListFolderError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -3953,7 +4183,7 @@ def path(cls, val): :param LookupError val: :rtype: ListFolderError """ - return cls('path', val) + return cls("path", val) @classmethod def template_error(cls, val): @@ -3964,7 +4194,7 @@ def template_error(cls, val): :param file_properties.TemplateError val: :rtype: ListFolderError """ - return cls('template_error', val) + return cls("template_error", val) def is_path(self): """ @@ -3972,7 +4202,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_template_error(self): """ @@ -3980,7 +4210,7 @@ def is_template_error(self): :rtype: bool """ - return self._tag == 'template_error' + return self._tag == "template_error" def is_other(self): """ @@ -3988,7 +4218,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -4011,10 +4241,14 @@ def get_template_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderError_validator = bv.Union(ListFolderError) + class ListFolderGetLatestCursorResult(bb.Struct): """ :ivar ListFolderGetLatestCursorResult.cursor: @@ -4024,13 +4258,12 @@ class ListFolderGetLatestCursorResult(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -4039,10 +4272,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderGetLatestCursorResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderGetLatestCursorResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderGetLatestCursorResult_validator = bv.Struct(ListFolderGetLatestCursorResult) + class ListFolderLongpollArg(bb.Struct): """ :ivar ListFolderLongpollArg.cursor: @@ -4059,15 +4296,13 @@ class ListFolderLongpollArg(bb.Struct): """ __slots__ = [ - '_cursor_value', - '_timeout_value', + "_cursor_value", + "_timeout_value", ] _has_required_fields = True - def __init__(self, - cursor=None, - timeout=None): + def __init__(self, cursor=None, timeout=None): self._cursor_value = bb.NOT_SET self._timeout_value = bb.NOT_SET if cursor is not None: @@ -4082,10 +4317,14 @@ def __init__(self, timeout = bb.Attribute("timeout") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderLongpollArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderLongpollArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderLongpollArg_validator = bv.Struct(ListFolderLongpollArg) + class ListFolderLongpollError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4098,7 +4337,7 @@ class ListFolderLongpollError(bb.Union): cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -4110,7 +4349,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -4118,13 +4357,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderLongpollError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderLongpollError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderLongpollError_validator = bv.Union(ListFolderLongpollError) + class ListFolderLongpollResult(bb.Struct): """ :ivar ListFolderLongpollResult.changes: @@ -4137,15 +4380,13 @@ class ListFolderLongpollResult(bb.Struct): """ __slots__ = [ - '_changes_value', - '_backoff_value', + "_changes_value", + "_backoff_value", ] _has_required_fields = True - def __init__(self, - changes=None, - backoff=None): + def __init__(self, changes=None, backoff=None): self._changes_value = bb.NOT_SET self._backoff_value = bb.NOT_SET if changes is not None: @@ -4160,10 +4401,14 @@ def __init__(self, backoff = bb.Attribute("backoff", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderLongpollResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderLongpollResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderLongpollResult_validator = bv.Struct(ListFolderLongpollResult) + class ListFolderResult(bb.Struct): """ :ivar ListFolderResult.entries: @@ -4179,17 +4424,14 @@ class ListFolderResult(bb.Struct): """ __slots__ = [ - '_entries_value', - '_cursor_value', - '_has_more_value', + "_entries_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - entries=None, - cursor=None, - has_more=None): + def __init__(self, entries=None, cursor=None, has_more=None): self._entries_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -4210,10 +4452,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderResult_validator = bv.Struct(ListFolderResult) + class ListRevisionsArg(bb.Struct): """ :ivar ListRevisionsArg.path: @@ -4234,21 +4480,23 @@ class ListRevisionsArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_mode_value', - '_limit_value', - '_before_rev_value', - '_include_restorable_info_value', + "_path_value", + "_mode_value", + "_limit_value", + "_before_rev_value", + "_include_restorable_info_value", ] _has_required_fields = True - def __init__(self, - path=None, - mode=None, - limit=None, - before_rev=None, - include_restorable_info=None): + def __init__( + self, + path=None, + mode=None, + limit=None, + before_rev=None, + include_restorable_info=None, + ): self._path_value = bb.NOT_SET self._mode_value = bb.NOT_SET self._limit_value = bb.NOT_SET @@ -4281,10 +4529,14 @@ def __init__(self, include_restorable_info = bb.Attribute("include_restorable_info") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListRevisionsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListRevisionsArg_validator = bv.Struct(ListRevisionsArg) + class ListRevisionsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4297,7 +4549,7 @@ class ListRevisionsError(bb.Union): The before_rev argument is only supported in path mode. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_before_rev = None # Attribute is overwritten below the class definition @@ -4314,7 +4566,7 @@ def path(cls, val): :param LookupError val: :rtype: ListRevisionsError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -4322,7 +4574,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_invalid_before_rev(self): """ @@ -4330,7 +4582,7 @@ def is_invalid_before_rev(self): :rtype: bool """ - return self._tag == 'invalid_before_rev' + return self._tag == "invalid_before_rev" def is_before_rev_not_supported(self): """ @@ -4338,7 +4590,7 @@ def is_before_rev_not_supported(self): :rtype: bool """ - return self._tag == 'before_rev_not_supported' + return self._tag == "before_rev_not_supported" def is_other(self): """ @@ -4346,7 +4598,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -4359,10 +4611,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListRevisionsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListRevisionsError_validator = bv.Union(ListRevisionsError) + class ListRevisionsMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4377,7 +4633,7 @@ class ListRevisionsMode(bb.Union): entry at the given file path or id. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition path = None # Attribute is overwritten below the class definition @@ -4391,7 +4647,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_id(self): """ @@ -4399,7 +4655,7 @@ def is_id(self): :rtype: bool """ - return self._tag == 'id' + return self._tag == "id" def is_other(self): """ @@ -4407,13 +4663,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsMode, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListRevisionsMode, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListRevisionsMode_validator = bv.Union(ListRevisionsMode) + class ListRevisionsResult(bb.Struct): """ :ivar ListRevisionsResult.is_deleted: @@ -4432,19 +4692,15 @@ class ListRevisionsResult(bb.Struct): """ __slots__ = [ - '_is_deleted_value', - '_server_deleted_value', - '_entries_value', - '_has_more_value', + "_is_deleted_value", + "_server_deleted_value", + "_entries_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - is_deleted=None, - entries=None, - has_more=None, - server_deleted=None): + def __init__(self, is_deleted=None, entries=None, has_more=None, server_deleted=None): self._is_deleted_value = bb.NOT_SET self._server_deleted_value = bb.NOT_SET self._entries_value = bb.NOT_SET @@ -4471,10 +4727,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListRevisionsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListRevisionsResult_validator = bv.Struct(ListRevisionsResult) + class LockConflictError(bb.Struct): """ :ivar LockConflictError.lock: @@ -4482,13 +4742,12 @@ class LockConflictError(bb.Struct): """ __slots__ = [ - '_lock_value', + "_lock_value", ] _has_required_fields = True - def __init__(self, - lock=None): + def __init__(self, lock=None): self._lock_value = bb.NOT_SET if lock is not None: self.lock = lock @@ -4497,10 +4756,14 @@ def __init__(self, lock = bb.Attribute("lock", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockConflictError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LockConflictError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LockConflictError_validator = bv.Struct(LockConflictError) + class LockFileArg(bb.Struct): """ :ivar LockFileArg.path: @@ -4508,13 +4771,12 @@ class LockFileArg(bb.Struct): """ __slots__ = [ - '_path_value', + "_path_value", ] _has_required_fields = True - def __init__(self, - path=None): + def __init__(self, path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -4525,8 +4787,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(LockFileArg, self)._process_custom_annotations(annotation_type, field_path, processor) + LockFileArg_validator = bv.Struct(LockFileArg) + class LockFileBatchArg(bb.Struct): """ :ivar LockFileBatchArg.entries: @@ -4536,13 +4800,12 @@ class LockFileBatchArg(bb.Struct): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -4551,10 +4814,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LockFileBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LockFileBatchArg_validator = bv.Struct(LockFileBatchArg) + class LockFileBatchResult(FileOpsResult): """ :ivar LockFileBatchResult.entries: @@ -4564,13 +4831,12 @@ class LockFileBatchResult(FileOpsResult): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): super(LockFileBatchResult, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -4580,10 +4846,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LockFileBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LockFileBatchResult_validator = bv.Struct(LockFileBatchResult) + class LockFileError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4614,7 +4884,7 @@ class LockFileError(bb.Union): This should happen very rarely. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition too_many_write_operations = None # Attribute is overwritten below the class definition @@ -4639,7 +4909,7 @@ def path_lookup(cls, val): :param LookupError val: :rtype: LockFileError """ - return cls('path_lookup', val) + return cls("path_lookup", val) @classmethod def lock_conflict(cls, val): @@ -4650,7 +4920,7 @@ def lock_conflict(cls, val): :param LockConflictError val: :rtype: LockFileError """ - return cls('lock_conflict', val) + return cls("lock_conflict", val) def is_path_lookup(self): """ @@ -4658,7 +4928,7 @@ def is_path_lookup(self): :rtype: bool """ - return self._tag == 'path_lookup' + return self._tag == "path_lookup" def is_too_many_write_operations(self): """ @@ -4666,7 +4936,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == 'too_many_write_operations' + return self._tag == "too_many_write_operations" def is_too_many_files(self): """ @@ -4674,7 +4944,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == 'too_many_files' + return self._tag == "too_many_files" def is_no_write_permission(self): """ @@ -4682,7 +4952,7 @@ def is_no_write_permission(self): :rtype: bool """ - return self._tag == 'no_write_permission' + return self._tag == "no_write_permission" def is_cannot_be_locked(self): """ @@ -4690,7 +4960,7 @@ def is_cannot_be_locked(self): :rtype: bool """ - return self._tag == 'cannot_be_locked' + return self._tag == "cannot_be_locked" def is_file_not_shared(self): """ @@ -4698,7 +4968,7 @@ def is_file_not_shared(self): :rtype: bool """ - return self._tag == 'file_not_shared' + return self._tag == "file_not_shared" def is_lock_conflict(self): """ @@ -4706,7 +4976,7 @@ def is_lock_conflict(self): :rtype: bool """ - return self._tag == 'lock_conflict' + return self._tag == "lock_conflict" def is_internal_error(self): """ @@ -4714,7 +4984,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == 'internal_error' + return self._tag == "internal_error" def is_other(self): """ @@ -4722,7 +4992,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path_lookup(self): """ @@ -4749,10 +5019,14 @@ def get_lock_conflict(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LockFileError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LockFileError_validator = bv.Union(LockFileError) + class LockFileResult(bb.Struct): """ :ivar LockFileResult.metadata: @@ -4762,15 +5036,13 @@ class LockFileResult(bb.Struct): """ __slots__ = [ - '_metadata_value', - '_lock_value', + "_metadata_value", + "_lock_value", ] _has_required_fields = True - def __init__(self, - metadata=None, - lock=None): + def __init__(self, metadata=None, lock=None): self._metadata_value = bb.NOT_SET self._lock_value = bb.NOT_SET if metadata is not None: @@ -4785,10 +5057,14 @@ def __init__(self, lock = bb.Attribute("lock", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LockFileResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LockFileResult_validator = bv.Struct(LockFileResult) + class LockFileResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4807,7 +5083,7 @@ def success(cls, val): :param LockFileResult val: :rtype: LockFileResultEntry """ - return cls('success', val) + return cls("success", val) @classmethod def failure(cls, val): @@ -4818,7 +5094,7 @@ def failure(cls, val): :param LockFileError val: :rtype: LockFileResultEntry """ - return cls('failure', val) + return cls("failure", val) def is_success(self): """ @@ -4826,7 +5102,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_failure(self): """ @@ -4834,7 +5110,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == 'failure' + return self._tag == "failure" def get_success(self): """ @@ -4857,10 +5133,14 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LockFileResultEntry, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LockFileResultEntry_validator = bv.Union(LockFileResultEntry) + class LookupError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4890,7 +5170,7 @@ class LookupError(bb.Union): The given path is locked. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -4915,7 +5195,7 @@ def malformed_path(cls, val): :param Optional[str] val: :rtype: LookupError """ - return cls('malformed_path', val) + return cls("malformed_path", val) def is_malformed_path(self): """ @@ -4923,7 +5203,7 @@ def is_malformed_path(self): :rtype: bool """ - return self._tag == 'malformed_path' + return self._tag == "malformed_path" def is_not_found(self): """ @@ -4931,7 +5211,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_not_file(self): """ @@ -4939,7 +5219,7 @@ def is_not_file(self): :rtype: bool """ - return self._tag == 'not_file' + return self._tag == "not_file" def is_not_folder(self): """ @@ -4947,7 +5227,7 @@ def is_not_folder(self): :rtype: bool """ - return self._tag == 'not_folder' + return self._tag == "not_folder" def is_restricted_content(self): """ @@ -4955,7 +5235,7 @@ def is_restricted_content(self): :rtype: bool """ - return self._tag == 'restricted_content' + return self._tag == "restricted_content" def is_unsupported_content_type(self): """ @@ -4963,7 +5243,7 @@ def is_unsupported_content_type(self): :rtype: bool """ - return self._tag == 'unsupported_content_type' + return self._tag == "unsupported_content_type" def is_locked(self): """ @@ -4971,7 +5251,7 @@ def is_locked(self): :rtype: bool """ - return self._tag == 'locked' + return self._tag == "locked" def is_other(self): """ @@ -4979,7 +5259,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_malformed_path(self): """ @@ -4999,8 +5279,10 @@ def get_malformed_path(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(LookupError, self)._process_custom_annotations(annotation_type, field_path, processor) + LookupError_validator = bv.Union(LookupError) + class MediaInfo(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5029,7 +5311,7 @@ def metadata(cls, val): :param MediaMetadata val: :rtype: MediaInfo """ - return cls('metadata', val) + return cls("metadata", val) def is_pending(self): """ @@ -5037,7 +5319,7 @@ def is_pending(self): :rtype: bool """ - return self._tag == 'pending' + return self._tag == "pending" def is_metadata(self): """ @@ -5045,7 +5327,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == 'metadata' + return self._tag == "metadata" def get_metadata(self): """ @@ -5063,8 +5345,10 @@ def get_metadata(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(MediaInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + MediaInfo_validator = bv.Union(MediaInfo) + class MediaMetadata(bb.Struct): """ Metadata for a photo or video. @@ -5078,17 +5362,14 @@ class MediaMetadata(bb.Struct): """ __slots__ = [ - '_dimensions_value', - '_location_value', - '_time_taken_value', + "_dimensions_value", + "_location_value", + "_time_taken_value", ] _has_required_fields = False - def __init__(self, - dimensions=None, - location=None, - time_taken=None): + def __init__(self, dimensions=None, location=None, time_taken=None): self._dimensions_value = bb.NOT_SET self._location_value = bb.NOT_SET self._time_taken_value = bb.NOT_SET @@ -5109,10 +5390,14 @@ def __init__(self, time_taken = bb.Attribute("time_taken", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaMetadata_validator = bv.StructTree(MediaMetadata) + class MetadataV2(bb.Union): """ Metadata for a file, folder or other resource types. @@ -5122,7 +5407,7 @@ class MetadataV2(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -5135,7 +5420,7 @@ def metadata(cls, val): :param Metadata val: :rtype: MetadataV2 """ - return cls('metadata', val) + return cls("metadata", val) def is_metadata(self): """ @@ -5143,7 +5428,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == 'metadata' + return self._tag == "metadata" def is_other(self): """ @@ -5151,7 +5436,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_metadata(self): """ @@ -5166,8 +5451,10 @@ def get_metadata(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(MetadataV2, self)._process_custom_annotations(annotation_type, field_path, processor) + MetadataV2_validator = bv.Union(MetadataV2) + class MinimalFileLinkMetadata(bb.Struct): """ :ivar MinimalFileLinkMetadata.url: @@ -5185,19 +5472,15 @@ class MinimalFileLinkMetadata(bb.Struct): """ __slots__ = [ - '_url_value', - '_id_value', - '_path_value', - '_rev_value', + "_url_value", + "_id_value", + "_path_value", + "_rev_value", ] _has_required_fields = True - def __init__(self, - url=None, - rev=None, - id=None, - path=None): + def __init__(self, url=None, rev=None, id=None, path=None): self._url_value = bb.NOT_SET self._id_value = bb.NOT_SET self._path_value = bb.NOT_SET @@ -5224,10 +5507,14 @@ def __init__(self, rev = bb.Attribute("rev") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MinimalFileLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MinimalFileLinkMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MinimalFileLinkMetadata_validator = bv.Struct(MinimalFileLinkMetadata) + class RelocationBatchArgBase(bb.Struct): """ :ivar RelocationBatchArgBase.entries: @@ -5239,15 +5526,13 @@ class RelocationBatchArgBase(bb.Struct): """ __slots__ = [ - '_entries_value', - '_autorename_value', + "_entries_value", + "_autorename_value", ] _has_required_fields = True - def __init__(self, - entries=None, - autorename=None): + def __init__(self, entries=None, autorename=None): self._entries_value = bb.NOT_SET self._autorename_value = bb.NOT_SET if entries is not None: @@ -5262,10 +5547,14 @@ def __init__(self, autorename = bb.Attribute("autorename") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchArgBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchArgBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchArgBase_validator = bv.Struct(RelocationBatchArgBase) + class MoveBatchArg(RelocationBatchArgBase): """ :ivar MoveBatchArg.allow_ownership_transfer: @@ -5274,17 +5563,13 @@ class MoveBatchArg(RelocationBatchArgBase): """ __slots__ = [ - '_allow_ownership_transfer_value', + "_allow_ownership_transfer_value", ] _has_required_fields = True - def __init__(self, - entries=None, - autorename=None, - allow_ownership_transfer=None): - super(MoveBatchArg, self).__init__(entries, - autorename) + def __init__(self, entries=None, autorename=None, allow_ownership_transfer=None): + super(MoveBatchArg, self).__init__(entries, autorename) self._allow_ownership_transfer_value = bb.NOT_SET if allow_ownership_transfer is not None: self.allow_ownership_transfer = allow_ownership_transfer @@ -5293,10 +5578,14 @@ def __init__(self, allow_ownership_transfer = bb.Attribute("allow_ownership_transfer") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MoveBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MoveBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MoveBatchArg_validator = bv.Struct(MoveBatchArg) + class MoveIntoFamilyError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5307,7 +5596,7 @@ class MoveIntoFamilyError(bb.Union): Moving shared folder into Family Room folder is not allowed. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition is_shared_folder = None # Attribute is overwritten below the class definition @@ -5319,7 +5608,7 @@ def is_is_shared_folder(self): :rtype: bool """ - return self._tag == 'is_shared_folder' + return self._tag == "is_shared_folder" def is_other(self): """ @@ -5327,13 +5616,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MoveIntoFamilyError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MoveIntoFamilyError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MoveIntoFamilyError_validator = bv.Union(MoveIntoFamilyError) + class MoveIntoVaultError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5344,7 +5637,7 @@ class MoveIntoVaultError(bb.Union): Moving shared folder into Vault is not allowed. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition is_shared_folder = None # Attribute is overwritten below the class definition @@ -5356,7 +5649,7 @@ def is_is_shared_folder(self): :rtype: bool """ - return self._tag == 'is_shared_folder' + return self._tag == "is_shared_folder" def is_other(self): """ @@ -5364,13 +5657,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MoveIntoVaultError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MoveIntoVaultError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MoveIntoVaultError_validator = bv.Union(MoveIntoVaultError) + class PaperContentError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5388,7 +5685,7 @@ class PaperContentError(bb.Union): limit is 1MB. This only applies to HTML with data URI. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition insufficient_permissions = None # Attribute is overwritten below the class definition @@ -5406,7 +5703,7 @@ def is_insufficient_permissions(self): :rtype: bool """ - return self._tag == 'insufficient_permissions' + return self._tag == "insufficient_permissions" def is_content_malformed(self): """ @@ -5414,7 +5711,7 @@ def is_content_malformed(self): :rtype: bool """ - return self._tag == 'content_malformed' + return self._tag == "content_malformed" def is_doc_length_exceeded(self): """ @@ -5422,7 +5719,7 @@ def is_doc_length_exceeded(self): :rtype: bool """ - return self._tag == 'doc_length_exceeded' + return self._tag == "doc_length_exceeded" def is_image_size_exceeded(self): """ @@ -5430,7 +5727,7 @@ def is_image_size_exceeded(self): :rtype: bool """ - return self._tag == 'image_size_exceeded' + return self._tag == "image_size_exceeded" def is_other(self): """ @@ -5438,13 +5735,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentError_validator = bv.Union(PaperContentError) + class PaperCreateArg(bb.Struct): """ :ivar PaperCreateArg.path: @@ -5456,15 +5757,13 @@ class PaperCreateArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_import_format_value', + "_path_value", + "_import_format_value", ] _has_required_fields = True - def __init__(self, - path=None, - import_format=None): + def __init__(self, path=None, import_format=None): self._path_value = bb.NOT_SET self._import_format_value = bb.NOT_SET if path is not None: @@ -5479,10 +5778,14 @@ def __init__(self, import_format = bb.Attribute("import_format", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperCreateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperCreateArg_validator = bv.Struct(PaperCreateArg) + class PaperCreateError(PaperContentError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5514,7 +5817,7 @@ def is_invalid_path(self): :rtype: bool """ - return self._tag == 'invalid_path' + return self._tag == "invalid_path" def is_email_unverified(self): """ @@ -5522,7 +5825,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == 'email_unverified' + return self._tag == "email_unverified" def is_invalid_file_extension(self): """ @@ -5530,7 +5833,7 @@ def is_invalid_file_extension(self): :rtype: bool """ - return self._tag == 'invalid_file_extension' + return self._tag == "invalid_file_extension" def is_paper_disabled(self): """ @@ -5538,13 +5841,17 @@ def is_paper_disabled(self): :rtype: bool """ - return self._tag == 'paper_disabled' + return self._tag == "paper_disabled" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperCreateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperCreateError_validator = bv.Union(PaperCreateError) + class PaperCreateResult(bb.Struct): """ :ivar PaperCreateResult.url: @@ -5558,19 +5865,15 @@ class PaperCreateResult(bb.Struct): """ __slots__ = [ - '_url_value', - '_result_path_value', - '_file_id_value', - '_paper_revision_value', + "_url_value", + "_result_path_value", + "_file_id_value", + "_paper_revision_value", ] _has_required_fields = True - def __init__(self, - url=None, - result_path=None, - file_id=None, - paper_revision=None): + def __init__(self, url=None, result_path=None, file_id=None, paper_revision=None): self._url_value = bb.NOT_SET self._result_path_value = bb.NOT_SET self._file_id_value = bb.NOT_SET @@ -5597,10 +5900,14 @@ def __init__(self, paper_revision = bb.Attribute("paper_revision") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperCreateResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperCreateResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperCreateResult_validator = bv.Struct(PaperCreateResult) + class PaperDocUpdatePolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5622,7 +5929,7 @@ class PaperDocUpdatePolicy(bb.Union): paper_revision. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition update = None # Attribute is overwritten below the class definition @@ -5640,7 +5947,7 @@ def is_update(self): :rtype: bool """ - return self._tag == 'update' + return self._tag == "update" def is_overwrite(self): """ @@ -5648,7 +5955,7 @@ def is_overwrite(self): :rtype: bool """ - return self._tag == 'overwrite' + return self._tag == "overwrite" def is_prepend(self): """ @@ -5656,7 +5963,7 @@ def is_prepend(self): :rtype: bool """ - return self._tag == 'prepend' + return self._tag == "prepend" def is_append(self): """ @@ -5664,7 +5971,7 @@ def is_append(self): :rtype: bool """ - return self._tag == 'append' + return self._tag == "append" def is_other(self): """ @@ -5672,13 +5979,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUpdatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocUpdatePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocUpdatePolicy_validator = bv.Union(PaperDocUpdatePolicy) + class PaperUpdateArg(bb.Struct): """ :ivar PaperUpdateArg.path: @@ -5695,19 +6006,15 @@ class PaperUpdateArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_import_format_value', - '_doc_update_policy_value', - '_paper_revision_value', + "_path_value", + "_import_format_value", + "_doc_update_policy_value", + "_paper_revision_value", ] _has_required_fields = True - def __init__(self, - path=None, - import_format=None, - doc_update_policy=None, - paper_revision=None): + def __init__(self, path=None, import_format=None, doc_update_policy=None, paper_revision=None): self._path_value = bb.NOT_SET self._import_format_value = bb.NOT_SET self._doc_update_policy_value = bb.NOT_SET @@ -5734,10 +6041,14 @@ def __init__(self, paper_revision = bb.Attribute("paper_revision", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperUpdateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperUpdateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperUpdateArg_validator = bv.Struct(PaperUpdateArg) + class PaperUpdateError(PaperContentError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5768,7 +6079,7 @@ def path(cls, val): :param LookupError val: :rtype: PaperUpdateError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -5776,7 +6087,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_revision_mismatch(self): """ @@ -5784,7 +6095,7 @@ def is_revision_mismatch(self): :rtype: bool """ - return self._tag == 'revision_mismatch' + return self._tag == "revision_mismatch" def is_doc_archived(self): """ @@ -5792,7 +6103,7 @@ def is_doc_archived(self): :rtype: bool """ - return self._tag == 'doc_archived' + return self._tag == "doc_archived" def is_doc_deleted(self): """ @@ -5800,7 +6111,7 @@ def is_doc_deleted(self): :rtype: bool """ - return self._tag == 'doc_deleted' + return self._tag == "doc_deleted" def get_path(self): """ @@ -5813,10 +6124,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperUpdateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperUpdateError_validator = bv.Union(PaperUpdateError) + class PaperUpdateResult(bb.Struct): """ :ivar PaperUpdateResult.paper_revision: @@ -5824,13 +6139,12 @@ class PaperUpdateResult(bb.Struct): """ __slots__ = [ - '_paper_revision_value', + "_paper_revision_value", ] _has_required_fields = True - def __init__(self, - paper_revision=None): + def __init__(self, paper_revision=None): self._paper_revision_value = bb.NOT_SET if paper_revision is not None: self.paper_revision = paper_revision @@ -5839,10 +6153,14 @@ def __init__(self, paper_revision = bb.Attribute("paper_revision") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperUpdateResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperUpdateResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperUpdateResult_validator = bv.Struct(PaperUpdateResult) + class PathOrLink(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5850,7 +6168,7 @@ class PathOrLink(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -5863,7 +6181,7 @@ def path(cls, val): :param str val: :rtype: PathOrLink """ - return cls('path', val) + return cls("path", val) @classmethod def link(cls, val): @@ -5874,7 +6192,7 @@ def link(cls, val): :param SharedLinkFileInfo val: :rtype: PathOrLink """ - return cls('link', val) + return cls("link", val) def is_path(self): """ @@ -5882,7 +6200,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_link(self): """ @@ -5890,7 +6208,7 @@ def is_link(self): :rtype: bool """ - return self._tag == 'link' + return self._tag == "link" def is_other(self): """ @@ -5898,7 +6216,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -5923,8 +6241,10 @@ def get_link(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(PathOrLink, self)._process_custom_annotations(annotation_type, field_path, processor) + PathOrLink_validator = bv.Union(PathOrLink) + class PathToTags(bb.Struct): """ :ivar PathToTags.path: @@ -5934,15 +6254,13 @@ class PathToTags(bb.Struct): """ __slots__ = [ - '_path_value', - '_tags_value', + "_path_value", + "_tags_value", ] _has_required_fields = True - def __init__(self, - path=None, - tags=None): + def __init__(self, path=None, tags=None): self._path_value = bb.NOT_SET self._tags_value = bb.NOT_SET if path is not None: @@ -5959,31 +6277,31 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(PathToTags, self)._process_custom_annotations(annotation_type, field_path, processor) + PathToTags_validator = bv.Struct(PathToTags) + class PhotoMetadata(MediaMetadata): """ Metadata for a photo. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False - def __init__(self, - dimensions=None, - location=None, - time_taken=None): - super(PhotoMetadata, self).__init__(dimensions, - location, - time_taken) + def __init__(self, dimensions=None, location=None, time_taken=None): + super(PhotoMetadata, self).__init__(dimensions, location, time_taken) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PhotoMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PhotoMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PhotoMetadata_validator = bv.Struct(PhotoMetadata) + class PreviewArg(bb.Struct): """ :ivar PreviewArg.path: @@ -5993,15 +6311,13 @@ class PreviewArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_rev_value', + "_path_value", + "_rev_value", ] _has_required_fields = True - def __init__(self, - path=None, - rev=None): + def __init__(self, path=None, rev=None): self._path_value = bb.NOT_SET self._rev_value = bb.NOT_SET if path is not None: @@ -6018,8 +6334,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(PreviewArg, self)._process_custom_annotations(annotation_type, field_path, processor) + PreviewArg_validator = bv.Struct(PreviewArg) + class PreviewError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6055,7 +6373,7 @@ def path(cls, val): :param LookupError val: :rtype: PreviewError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -6063,7 +6381,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_in_progress(self): """ @@ -6071,7 +6389,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == 'in_progress' + return self._tag == "in_progress" def is_unsupported_extension(self): """ @@ -6079,7 +6397,7 @@ def is_unsupported_extension(self): :rtype: bool """ - return self._tag == 'unsupported_extension' + return self._tag == "unsupported_extension" def is_unsupported_content(self): """ @@ -6087,7 +6405,7 @@ def is_unsupported_content(self): :rtype: bool """ - return self._tag == 'unsupported_content' + return self._tag == "unsupported_content" def get_path(self): """ @@ -6102,10 +6420,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PreviewError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PreviewError_validator = bv.Union(PreviewError) + class PreviewResult(bb.Struct): """ :ivar PreviewResult.file_metadata: @@ -6118,15 +6440,13 @@ class PreviewResult(bb.Struct): """ __slots__ = [ - '_file_metadata_value', - '_link_metadata_value', + "_file_metadata_value", + "_link_metadata_value", ] _has_required_fields = False - def __init__(self, - file_metadata=None, - link_metadata=None): + def __init__(self, file_metadata=None, link_metadata=None): self._file_metadata_value = bb.NOT_SET self._link_metadata_value = bb.NOT_SET if file_metadata is not None: @@ -6141,10 +6461,14 @@ def __init__(self, link_metadata = bb.Attribute("link_metadata", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PreviewResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PreviewResult_validator = bv.Struct(PreviewResult) + class RelocationPath(bb.Struct): """ :ivar RelocationPath.from_path: @@ -6154,15 +6478,13 @@ class RelocationPath(bb.Struct): """ __slots__ = [ - '_from_path_value', - '_to_path_value', + "_from_path_value", + "_to_path_value", ] _has_required_fields = True - def __init__(self, - from_path=None, - to_path=None): + def __init__(self, from_path=None, to_path=None): self._from_path_value = bb.NOT_SET self._to_path_value = bb.NOT_SET if from_path is not None: @@ -6177,10 +6499,14 @@ def __init__(self, to_path = bb.Attribute("to_path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationPath, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationPath, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationPath_validator = bv.Struct(RelocationPath) + class RelocationArg(RelocationPath): """ :ivar RelocationArg.allow_shared_folder: @@ -6194,21 +6520,22 @@ class RelocationArg(RelocationPath): """ __slots__ = [ - '_allow_shared_folder_value', - '_autorename_value', - '_allow_ownership_transfer_value', + "_allow_shared_folder_value", + "_autorename_value", + "_allow_ownership_transfer_value", ] _has_required_fields = True - def __init__(self, - from_path=None, - to_path=None, - allow_shared_folder=None, - autorename=None, - allow_ownership_transfer=None): - super(RelocationArg, self).__init__(from_path, - to_path) + def __init__( + self, + from_path=None, + to_path=None, + allow_shared_folder=None, + autorename=None, + allow_ownership_transfer=None, + ): + super(RelocationArg, self).__init__(from_path, to_path) self._allow_shared_folder_value = bb.NOT_SET self._autorename_value = bb.NOT_SET self._allow_ownership_transfer_value = bb.NOT_SET @@ -6229,10 +6556,14 @@ def __init__(self, allow_ownership_transfer = bb.Attribute("allow_ownership_transfer") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationArg_validator = bv.Struct(RelocationArg) + class RelocationBatchArg(RelocationBatchArgBase): """ :ivar RelocationBatchArg.allow_shared_folder: @@ -6243,19 +6574,20 @@ class RelocationBatchArg(RelocationBatchArgBase): """ __slots__ = [ - '_allow_shared_folder_value', - '_allow_ownership_transfer_value', + "_allow_shared_folder_value", + "_allow_ownership_transfer_value", ] _has_required_fields = True - def __init__(self, - entries=None, - autorename=None, - allow_shared_folder=None, - allow_ownership_transfer=None): - super(RelocationBatchArg, self).__init__(entries, - autorename) + def __init__( + self, + entries=None, + autorename=None, + allow_shared_folder=None, + allow_ownership_transfer=None, + ): + super(RelocationBatchArg, self).__init__(entries, autorename) self._allow_shared_folder_value = bb.NOT_SET self._allow_ownership_transfer_value = bb.NOT_SET if allow_shared_folder is not None: @@ -6270,10 +6602,14 @@ def __init__(self, allow_ownership_transfer = bb.Attribute("allow_ownership_transfer") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchArg_validator = bv.Struct(RelocationBatchArg) + class RelocationError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6314,7 +6650,7 @@ class RelocationError(bb.Union): :vartype RelocationError.cant_move_into_family: MoveIntoFamilyError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition cant_copy_shared_folder = None # Attribute is overwritten below the class definition @@ -6345,7 +6681,7 @@ def from_lookup(cls, val): :param LookupError val: :rtype: RelocationError """ - return cls('from_lookup', val) + return cls("from_lookup", val) @classmethod def from_write(cls, val): @@ -6356,7 +6692,7 @@ def from_write(cls, val): :param WriteError val: :rtype: RelocationError """ - return cls('from_write', val) + return cls("from_write", val) @classmethod def to(cls, val): @@ -6367,7 +6703,7 @@ def to(cls, val): :param WriteError val: :rtype: RelocationError """ - return cls('to', val) + return cls("to", val) @classmethod def cant_move_into_vault(cls, val): @@ -6378,7 +6714,7 @@ def cant_move_into_vault(cls, val): :param MoveIntoVaultError val: :rtype: RelocationError """ - return cls('cant_move_into_vault', val) + return cls("cant_move_into_vault", val) @classmethod def cant_move_into_family(cls, val): @@ -6389,7 +6725,7 @@ def cant_move_into_family(cls, val): :param MoveIntoFamilyError val: :rtype: RelocationError """ - return cls('cant_move_into_family', val) + return cls("cant_move_into_family", val) def is_from_lookup(self): """ @@ -6397,7 +6733,7 @@ def is_from_lookup(self): :rtype: bool """ - return self._tag == 'from_lookup' + return self._tag == "from_lookup" def is_from_write(self): """ @@ -6405,7 +6741,7 @@ def is_from_write(self): :rtype: bool """ - return self._tag == 'from_write' + return self._tag == "from_write" def is_to(self): """ @@ -6413,7 +6749,7 @@ def is_to(self): :rtype: bool """ - return self._tag == 'to' + return self._tag == "to" def is_cant_copy_shared_folder(self): """ @@ -6421,7 +6757,7 @@ def is_cant_copy_shared_folder(self): :rtype: bool """ - return self._tag == 'cant_copy_shared_folder' + return self._tag == "cant_copy_shared_folder" def is_cant_nest_shared_folder(self): """ @@ -6429,7 +6765,7 @@ def is_cant_nest_shared_folder(self): :rtype: bool """ - return self._tag == 'cant_nest_shared_folder' + return self._tag == "cant_nest_shared_folder" def is_cant_move_folder_into_itself(self): """ @@ -6437,7 +6773,7 @@ def is_cant_move_folder_into_itself(self): :rtype: bool """ - return self._tag == 'cant_move_folder_into_itself' + return self._tag == "cant_move_folder_into_itself" def is_too_many_files(self): """ @@ -6445,7 +6781,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == 'too_many_files' + return self._tag == "too_many_files" def is_duplicated_or_nested_paths(self): """ @@ -6453,7 +6789,7 @@ def is_duplicated_or_nested_paths(self): :rtype: bool """ - return self._tag == 'duplicated_or_nested_paths' + return self._tag == "duplicated_or_nested_paths" def is_cant_transfer_ownership(self): """ @@ -6461,7 +6797,7 @@ def is_cant_transfer_ownership(self): :rtype: bool """ - return self._tag == 'cant_transfer_ownership' + return self._tag == "cant_transfer_ownership" def is_insufficient_quota(self): """ @@ -6469,7 +6805,7 @@ def is_insufficient_quota(self): :rtype: bool """ - return self._tag == 'insufficient_quota' + return self._tag == "insufficient_quota" def is_internal_error(self): """ @@ -6477,7 +6813,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == 'internal_error' + return self._tag == "internal_error" def is_cant_move_shared_folder(self): """ @@ -6485,7 +6821,7 @@ def is_cant_move_shared_folder(self): :rtype: bool """ - return self._tag == 'cant_move_shared_folder' + return self._tag == "cant_move_shared_folder" def is_cant_move_into_vault(self): """ @@ -6493,7 +6829,7 @@ def is_cant_move_into_vault(self): :rtype: bool """ - return self._tag == 'cant_move_into_vault' + return self._tag == "cant_move_into_vault" def is_cant_move_into_family(self): """ @@ -6501,7 +6837,7 @@ def is_cant_move_into_family(self): :rtype: bool """ - return self._tag == 'cant_move_into_family' + return self._tag == "cant_move_into_family" def is_other(self): """ @@ -6509,7 +6845,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_from_lookup(self): """ @@ -6568,10 +6904,14 @@ def get_cant_move_into_family(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationError_validator = bv.Union(RelocationError) + class RelocationBatchError(RelocationError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6592,13 +6932,17 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == 'too_many_write_operations' + return self._tag == "too_many_write_operations" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchError_validator = bv.Union(RelocationBatchError) + class RelocationBatchErrorEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6617,7 +6961,7 @@ class RelocationBatchErrorEntry(bb.Union): request. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition internal_error = None # Attribute is overwritten below the class definition @@ -6634,7 +6978,7 @@ def relocation_error(cls, val): :param RelocationError val: :rtype: RelocationBatchErrorEntry """ - return cls('relocation_error', val) + return cls("relocation_error", val) def is_relocation_error(self): """ @@ -6642,7 +6986,7 @@ def is_relocation_error(self): :rtype: bool """ - return self._tag == 'relocation_error' + return self._tag == "relocation_error" def is_internal_error(self): """ @@ -6650,7 +6994,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == 'internal_error' + return self._tag == "internal_error" def is_too_many_write_operations(self): """ @@ -6658,7 +7002,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == 'too_many_write_operations' + return self._tag == "too_many_write_operations" def is_other(self): """ @@ -6666,7 +7010,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_relocation_error(self): """ @@ -6681,10 +7025,14 @@ def get_relocation_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchErrorEntry, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchErrorEntry, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchErrorEntry_validator = bv.Union(RelocationBatchErrorEntry) + class RelocationBatchJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6708,7 +7056,7 @@ def complete(cls, val): :param RelocationBatchResult val: :rtype: RelocationBatchJobStatus """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -6719,7 +7067,7 @@ def failed(cls, val): :param RelocationBatchError val: :rtype: RelocationBatchJobStatus """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -6727,7 +7075,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -6735,7 +7083,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def get_complete(self): """ @@ -6762,10 +7110,14 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchJobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchJobStatus_validator = bv.Union(RelocationBatchJobStatus) + class RelocationBatchLaunch(async_.LaunchResultBase): """ Result returned by :meth:`dropbox.dropbox_client.Dropbox.files_copy_batch` @@ -6777,7 +7129,7 @@ class RelocationBatchLaunch(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -6790,7 +7142,7 @@ def complete(cls, val): :param RelocationBatchResult val: :rtype: RelocationBatchLaunch """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -6798,7 +7150,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_other(self): """ @@ -6806,7 +7158,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -6819,20 +7171,22 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchLaunch, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchLaunch_validator = bv.Union(RelocationBatchLaunch) -class RelocationBatchResult(FileOpsResult): +class RelocationBatchResult(FileOpsResult): __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): super(RelocationBatchResult, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -6842,10 +7196,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchResult_validator = bv.Struct(RelocationBatchResult) + class RelocationBatchResultData(bb.Struct): """ :ivar RelocationBatchResultData.metadata: @@ -6853,13 +7211,12 @@ class RelocationBatchResultData(bb.Struct): """ __slots__ = [ - '_metadata_value', + "_metadata_value", ] _has_required_fields = True - def __init__(self, - metadata=None): + def __init__(self, metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -6868,10 +7225,14 @@ def __init__(self, metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchResultData, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchResultData, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchResultData_validator = bv.Struct(RelocationBatchResultData) + class RelocationBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6879,7 +7240,7 @@ class RelocationBatchResultEntry(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -6892,7 +7253,7 @@ def success(cls, val): :param Metadata val: :rtype: RelocationBatchResultEntry """ - return cls('success', val) + return cls("success", val) @classmethod def failure(cls, val): @@ -6903,7 +7264,7 @@ def failure(cls, val): :param RelocationBatchErrorEntry val: :rtype: RelocationBatchResultEntry """ - return cls('failure', val) + return cls("failure", val) def is_success(self): """ @@ -6911,7 +7272,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_failure(self): """ @@ -6919,7 +7280,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == 'failure' + return self._tag == "failure" def is_other(self): """ @@ -6927,7 +7288,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -6950,10 +7311,14 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchResultEntry, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchResultEntry_validator = bv.Union(RelocationBatchResultEntry) + class RelocationBatchV2JobStatus(async_.PollResultBase): """ Result returned by @@ -6979,7 +7344,7 @@ def complete(cls, val): :param RelocationBatchV2Result val: :rtype: RelocationBatchV2JobStatus """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -6987,7 +7352,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def get_complete(self): """ @@ -7002,10 +7367,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchV2JobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchV2JobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchV2JobStatus_validator = bv.Union(RelocationBatchV2JobStatus) + class RelocationBatchV2Launch(async_.LaunchResultBase): """ Result returned by :meth:`dropbox.dropbox_client.Dropbox.files_copy_batch` @@ -7026,7 +7395,7 @@ def complete(cls, val): :param RelocationBatchV2Result val: :rtype: RelocationBatchV2Launch """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -7034,7 +7403,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def get_complete(self): """ @@ -7047,10 +7416,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchV2Launch, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchV2Launch, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchV2Launch_validator = bv.Union(RelocationBatchV2Launch) + class RelocationBatchV2Result(FileOpsResult): """ :ivar RelocationBatchV2Result.entries: @@ -7059,13 +7432,12 @@ class RelocationBatchV2Result(FileOpsResult): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): super(RelocationBatchV2Result, self).__init__() self._entries_value = bb.NOT_SET if entries is not None: @@ -7075,10 +7447,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationBatchV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationBatchV2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationBatchV2Result_validator = bv.Struct(RelocationBatchV2Result) + class RelocationResult(FileOpsResult): """ :ivar RelocationResult.metadata: @@ -7086,13 +7462,12 @@ class RelocationResult(FileOpsResult): """ __slots__ = [ - '_metadata_value', + "_metadata_value", ] _has_required_fields = True - def __init__(self, - metadata=None): + def __init__(self, metadata=None): super(RelocationResult, self).__init__() self._metadata_value = bb.NOT_SET if metadata is not None: @@ -7102,10 +7477,14 @@ def __init__(self, metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocationResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocationResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocationResult_validator = bv.Struct(RelocationResult) + class RemoveTagArg(bb.Struct): """ :ivar RemoveTagArg.path: @@ -7115,15 +7494,13 @@ class RemoveTagArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_tag_text_value', + "_path_value", + "_tag_text_value", ] _has_required_fields = True - def __init__(self, - path=None, - tag_text=None): + def __init__(self, path=None, tag_text=None): self._path_value = bb.NOT_SET self._tag_text_value = bb.NOT_SET if path is not None: @@ -7138,10 +7515,14 @@ def __init__(self, tag_text = bb.Attribute("tag_text") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveTagArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemoveTagArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemoveTagArg_validator = bv.Struct(RemoveTagArg) + class RemoveTagError(BaseTagError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7161,13 +7542,17 @@ def is_tag_not_present(self): :rtype: bool """ - return self._tag == 'tag_not_present' + return self._tag == "tag_not_present" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveTagError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemoveTagError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemoveTagError_validator = bv.Union(RemoveTagError) + class RestoreArg(bb.Struct): """ :ivar RestoreArg.path: @@ -7177,15 +7562,13 @@ class RestoreArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_rev_value', + "_path_value", + "_rev_value", ] _has_required_fields = True - def __init__(self, - path=None, - rev=None): + def __init__(self, path=None, rev=None): self._path_value = bb.NOT_SET self._rev_value = bb.NOT_SET if path is not None: @@ -7202,8 +7585,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(RestoreArg, self)._process_custom_annotations(annotation_type, field_path, processor) + RestoreArg_validator = bv.Struct(RestoreArg) + class RestoreError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7223,7 +7608,7 @@ class RestoreError(bb.Union): The restore is currently executing, but has not yet completed. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_revision = None # Attribute is overwritten below the class definition @@ -7240,7 +7625,7 @@ def path_lookup(cls, val): :param LookupError val: :rtype: RestoreError """ - return cls('path_lookup', val) + return cls("path_lookup", val) @classmethod def path_write(cls, val): @@ -7251,7 +7636,7 @@ def path_write(cls, val): :param WriteError val: :rtype: RestoreError """ - return cls('path_write', val) + return cls("path_write", val) def is_path_lookup(self): """ @@ -7259,7 +7644,7 @@ def is_path_lookup(self): :rtype: bool """ - return self._tag == 'path_lookup' + return self._tag == "path_lookup" def is_path_write(self): """ @@ -7267,7 +7652,7 @@ def is_path_write(self): :rtype: bool """ - return self._tag == 'path_write' + return self._tag == "path_write" def is_invalid_revision(self): """ @@ -7275,7 +7660,7 @@ def is_invalid_revision(self): :rtype: bool """ - return self._tag == 'invalid_revision' + return self._tag == "invalid_revision" def is_in_progress(self): """ @@ -7283,7 +7668,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == 'in_progress' + return self._tag == "in_progress" def is_other(self): """ @@ -7291,7 +7676,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path_lookup(self): """ @@ -7318,10 +7703,14 @@ def get_path_write(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RestoreError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RestoreError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RestoreError_validator = bv.Union(RestoreError) + class SaveCopyReferenceArg(bb.Struct): """ :ivar SaveCopyReferenceArg.copy_reference: @@ -7332,15 +7721,13 @@ class SaveCopyReferenceArg(bb.Struct): """ __slots__ = [ - '_copy_reference_value', - '_path_value', + "_copy_reference_value", + "_path_value", ] _has_required_fields = True - def __init__(self, - copy_reference=None, - path=None): + def __init__(self, copy_reference=None, path=None): self._copy_reference_value = bb.NOT_SET self._path_value = bb.NOT_SET if copy_reference is not None: @@ -7355,10 +7742,14 @@ def __init__(self, path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveCopyReferenceArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SaveCopyReferenceArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SaveCopyReferenceArg_validator = bv.Struct(SaveCopyReferenceArg) + class SaveCopyReferenceError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7377,7 +7768,7 @@ class SaveCopyReferenceError(bb.Union): The operation would involve more than 10,000 files and folders. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_copy_reference = None # Attribute is overwritten below the class definition @@ -7398,7 +7789,7 @@ def path(cls, val): :param WriteError val: :rtype: SaveCopyReferenceError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -7406,7 +7797,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_invalid_copy_reference(self): """ @@ -7414,7 +7805,7 @@ def is_invalid_copy_reference(self): :rtype: bool """ - return self._tag == 'invalid_copy_reference' + return self._tag == "invalid_copy_reference" def is_no_permission(self): """ @@ -7422,7 +7813,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_not_found(self): """ @@ -7430,7 +7821,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_too_many_files(self): """ @@ -7438,7 +7829,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == 'too_many_files' + return self._tag == "too_many_files" def is_other(self): """ @@ -7446,7 +7837,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -7459,10 +7850,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveCopyReferenceError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SaveCopyReferenceError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SaveCopyReferenceError_validator = bv.Union(SaveCopyReferenceError) + class SaveCopyReferenceResult(bb.Struct): """ :ivar SaveCopyReferenceResult.metadata: @@ -7470,13 +7865,12 @@ class SaveCopyReferenceResult(bb.Struct): """ __slots__ = [ - '_metadata_value', + "_metadata_value", ] _has_required_fields = True - def __init__(self, - metadata=None): + def __init__(self, metadata=None): self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -7485,10 +7879,14 @@ def __init__(self, metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveCopyReferenceResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SaveCopyReferenceResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SaveCopyReferenceResult_validator = bv.Struct(SaveCopyReferenceResult) + class SaveUrlArg(bb.Struct): """ :ivar SaveUrlArg.path: @@ -7498,15 +7896,13 @@ class SaveUrlArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_url_value', + "_path_value", + "_url_value", ] _has_required_fields = True - def __init__(self, - path=None, - url=None): + def __init__(self, path=None, url=None): self._path_value = bb.NOT_SET self._url_value = bb.NOT_SET if path is not None: @@ -7523,8 +7919,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(SaveUrlArg, self)._process_custom_annotations(annotation_type, field_path, processor) + SaveUrlArg_validator = bv.Struct(SaveUrlArg) + class SaveUrlError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7540,7 +7938,7 @@ class SaveUrlError(bb.Union): The file where the URL is saved to no longer exists. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition download_failed = None # Attribute is overwritten below the class definition @@ -7559,7 +7957,7 @@ def path(cls, val): :param WriteError val: :rtype: SaveUrlError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -7567,7 +7965,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_download_failed(self): """ @@ -7575,7 +7973,7 @@ def is_download_failed(self): :rtype: bool """ - return self._tag == 'download_failed' + return self._tag == "download_failed" def is_invalid_url(self): """ @@ -7583,7 +7981,7 @@ def is_invalid_url(self): :rtype: bool """ - return self._tag == 'invalid_url' + return self._tag == "invalid_url" def is_not_found(self): """ @@ -7591,7 +7989,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_other(self): """ @@ -7599,7 +7997,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -7612,10 +8010,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveUrlError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SaveUrlError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SaveUrlError_validator = bv.Union(SaveUrlError) + class SaveUrlJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7636,7 +8038,7 @@ def complete(cls, val): :param FileMetadata val: :rtype: SaveUrlJobStatus """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -7647,7 +8049,7 @@ def failed(cls, val): :param SaveUrlError val: :rtype: SaveUrlJobStatus """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -7655,7 +8057,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -7663,7 +8065,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def get_complete(self): """ @@ -7688,10 +8090,14 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveUrlJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SaveUrlJobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SaveUrlJobStatus_validator = bv.Union(SaveUrlJobStatus) + class SaveUrlResult(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7712,7 +8118,7 @@ def complete(cls, val): :param FileMetadata val: :rtype: SaveUrlResult """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -7720,7 +8126,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def get_complete(self): """ @@ -7735,10 +8141,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveUrlResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SaveUrlResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SaveUrlResult_validator = bv.Union(SaveUrlResult) + class SearchArg(bb.Struct): """ :ivar SearchArg.path: @@ -7759,21 +8169,16 @@ class SearchArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_query_value', - '_start_value', - '_max_results_value', - '_mode_value', + "_path_value", + "_query_value", + "_start_value", + "_max_results_value", + "_mode_value", ] _has_required_fields = True - def __init__(self, - path=None, - query=None, - start=None, - max_results=None, - mode=None): + def __init__(self, path=None, query=None, start=None, max_results=None, mode=None): self._path_value = bb.NOT_SET self._query_value = bb.NOT_SET self._start_value = bb.NOT_SET @@ -7808,8 +8213,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + SearchArg_validator = bv.Struct(SearchArg) + class SearchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7820,7 +8227,7 @@ class SearchError(bb.Union): Something went wrong, please try again. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition internal_error = None # Attribute is overwritten below the class definition @@ -7835,7 +8242,7 @@ def path(cls, val): :param LookupError val: :rtype: SearchError """ - return cls('path', val) + return cls("path", val) @classmethod def invalid_argument(cls, val): @@ -7846,7 +8253,7 @@ def invalid_argument(cls, val): :param str val: :rtype: SearchError """ - return cls('invalid_argument', val) + return cls("invalid_argument", val) def is_path(self): """ @@ -7854,7 +8261,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_invalid_argument(self): """ @@ -7862,7 +8269,7 @@ def is_invalid_argument(self): :rtype: bool """ - return self._tag == 'invalid_argument' + return self._tag == "invalid_argument" def is_internal_error(self): """ @@ -7870,7 +8277,7 @@ def is_internal_error(self): :rtype: bool """ - return self._tag == 'internal_error' + return self._tag == "internal_error" def is_other(self): """ @@ -7878,7 +8285,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -7903,8 +8310,10 @@ def get_invalid_argument(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchError, self)._process_custom_annotations(annotation_type, field_path, processor) + SearchError_validator = bv.Union(SearchError) + class SearchMatch(bb.Struct): """ :ivar SearchMatch.match_type: @@ -7914,15 +8323,13 @@ class SearchMatch(bb.Struct): """ __slots__ = [ - '_match_type_value', - '_metadata_value', + "_match_type_value", + "_metadata_value", ] _has_required_fields = True - def __init__(self, - match_type=None, - metadata=None): + def __init__(self, match_type=None, metadata=None): self._match_type_value = bb.NOT_SET self._metadata_value = bb.NOT_SET if match_type is not None: @@ -7939,8 +8346,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchMatch, self)._process_custom_annotations(annotation_type, field_path, processor) + SearchMatch_validator = bv.Struct(SearchMatch) + class SearchMatchFieldOptions(bb.Struct): """ :ivar SearchMatchFieldOptions.include_highlights: @@ -7948,13 +8357,12 @@ class SearchMatchFieldOptions(bb.Struct): """ __slots__ = [ - '_include_highlights_value', + "_include_highlights_value", ] _has_required_fields = False - def __init__(self, - include_highlights=None): + def __init__(self, include_highlights=None): self._include_highlights_value = bb.NOT_SET if include_highlights is not None: self.include_highlights = include_highlights @@ -7963,10 +8371,14 @@ def __init__(self, include_highlights = bb.Attribute("include_highlights") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchMatchFieldOptions, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SearchMatchFieldOptions, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SearchMatchFieldOptions_validator = bv.Struct(SearchMatchFieldOptions) + class SearchMatchType(bb.Union): """ Indicates what type of match was found for a given item. @@ -7997,7 +8409,7 @@ def is_filename(self): :rtype: bool """ - return self._tag == 'filename' + return self._tag == "filename" def is_content(self): """ @@ -8005,7 +8417,7 @@ def is_content(self): :rtype: bool """ - return self._tag == 'content' + return self._tag == "content" def is_both(self): """ @@ -8013,13 +8425,17 @@ def is_both(self): :rtype: bool """ - return self._tag == 'both' + return self._tag == "both" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchMatchType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SearchMatchType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SearchMatchType_validator = bv.Union(SearchMatchType) + class SearchMatchTypeV2(bb.Union): """ Indicates what type of match was found for a given item. @@ -8040,7 +8456,7 @@ class SearchMatchTypeV2(bb.Union): This item was matched based on its metadata. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition filename = None # Attribute is overwritten below the class definition @@ -8060,7 +8476,7 @@ def is_filename(self): :rtype: bool """ - return self._tag == 'filename' + return self._tag == "filename" def is_file_content(self): """ @@ -8068,7 +8484,7 @@ def is_file_content(self): :rtype: bool """ - return self._tag == 'file_content' + return self._tag == "file_content" def is_filename_and_content(self): """ @@ -8076,7 +8492,7 @@ def is_filename_and_content(self): :rtype: bool """ - return self._tag == 'filename_and_content' + return self._tag == "filename_and_content" def is_image_content(self): """ @@ -8084,7 +8500,7 @@ def is_image_content(self): :rtype: bool """ - return self._tag == 'image_content' + return self._tag == "image_content" def is_metadata(self): """ @@ -8092,7 +8508,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == 'metadata' + return self._tag == "metadata" def is_other(self): """ @@ -8100,13 +8516,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchMatchTypeV2, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SearchMatchTypeV2, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SearchMatchTypeV2_validator = bv.Union(SearchMatchTypeV2) + class SearchMatchV2(bb.Struct): """ :ivar SearchMatchV2.metadata: @@ -8119,17 +8539,14 @@ class SearchMatchV2(bb.Struct): """ __slots__ = [ - '_metadata_value', - '_match_type_value', - '_highlight_spans_value', + "_metadata_value", + "_match_type_value", + "_highlight_spans_value", ] _has_required_fields = True - def __init__(self, - metadata=None, - match_type=None, - highlight_spans=None): + def __init__(self, metadata=None, match_type=None, highlight_spans=None): self._metadata_value = bb.NOT_SET self._match_type_value = bb.NOT_SET self._highlight_spans_value = bb.NOT_SET @@ -8150,10 +8567,14 @@ def __init__(self, highlight_spans = bb.Attribute("highlight_spans", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchMatchV2, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SearchMatchV2, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SearchMatchV2_validator = bv.Struct(SearchMatchV2) + class SearchMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8182,7 +8603,7 @@ def is_filename(self): :rtype: bool """ - return self._tag == 'filename' + return self._tag == "filename" def is_filename_and_content(self): """ @@ -8190,7 +8611,7 @@ def is_filename_and_content(self): :rtype: bool """ - return self._tag == 'filename_and_content' + return self._tag == "filename_and_content" def is_deleted_filename(self): """ @@ -8198,13 +8619,15 @@ def is_deleted_filename(self): :rtype: bool """ - return self._tag == 'deleted_filename' + return self._tag == "deleted_filename" def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchMode, self)._process_custom_annotations(annotation_type, field_path, processor) + SearchMode_validator = bv.Union(SearchMode) + class SearchOptions(bb.Struct): """ :ivar SearchOptions.path: @@ -8230,27 +8653,29 @@ class SearchOptions(bb.Struct): """ __slots__ = [ - '_path_value', - '_max_results_value', - '_order_by_value', - '_file_status_value', - '_filename_only_value', - '_file_extensions_value', - '_file_categories_value', - '_account_id_value', + "_path_value", + "_max_results_value", + "_order_by_value", + "_file_status_value", + "_filename_only_value", + "_file_extensions_value", + "_file_categories_value", + "_account_id_value", ] _has_required_fields = False - def __init__(self, - path=None, - max_results=None, - order_by=None, - file_status=None, - filename_only=None, - file_extensions=None, - file_categories=None, - account_id=None): + def __init__( + self, + path=None, + max_results=None, + order_by=None, + file_status=None, + filename_only=None, + file_extensions=None, + file_categories=None, + account_id=None, + ): self._path_value = bb.NOT_SET self._max_results_value = bb.NOT_SET self._order_by_value = bb.NOT_SET @@ -8301,10 +8726,14 @@ def __init__(self, account_id = bb.Attribute("account_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchOptions, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SearchOptions, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SearchOptions_validator = bv.Struct(SearchOptions) + class SearchOrderBy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8312,7 +8741,7 @@ class SearchOrderBy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition relevance = None # Attribute is overwritten below the class definition @@ -8326,7 +8755,7 @@ def is_relevance(self): :rtype: bool """ - return self._tag == 'relevance' + return self._tag == "relevance" def is_last_modified_time(self): """ @@ -8334,7 +8763,7 @@ def is_last_modified_time(self): :rtype: bool """ - return self._tag == 'last_modified_time' + return self._tag == "last_modified_time" def is_other(self): """ @@ -8342,13 +8771,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchOrderBy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SearchOrderBy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SearchOrderBy_validator = bv.Union(SearchOrderBy) + class SearchResult(bb.Struct): """ :ivar SearchResult.matches: @@ -8364,17 +8797,14 @@ class SearchResult(bb.Struct): """ __slots__ = [ - '_matches_value', - '_more_value', - '_start_value', + "_matches_value", + "_more_value", + "_start_value", ] _has_required_fields = True - def __init__(self, - matches=None, - more=None, - start=None): + def __init__(self, matches=None, more=None, start=None): self._matches_value = bb.NOT_SET self._more_value = bb.NOT_SET self._start_value = bb.NOT_SET @@ -8395,10 +8825,14 @@ def __init__(self, start = bb.Attribute("start") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SearchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SearchResult_validator = bv.Struct(SearchResult) + class SearchV2Arg(bb.Struct): """ :ivar SearchV2Arg.query: @@ -8414,19 +8848,21 @@ class SearchV2Arg(bb.Struct): """ __slots__ = [ - '_query_value', - '_options_value', - '_match_field_options_value', - '_include_highlights_value', + "_query_value", + "_options_value", + "_match_field_options_value", + "_include_highlights_value", ] _has_required_fields = True - def __init__(self, - query=None, - options=None, - match_field_options=None, - include_highlights=None): + def __init__( + self, + query=None, + options=None, + match_field_options=None, + include_highlights=None, + ): self._query_value = bb.NOT_SET self._options_value = bb.NOT_SET self._match_field_options_value = bb.NOT_SET @@ -8455,8 +8891,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(SearchV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) + SearchV2Arg_validator = bv.Struct(SearchV2Arg) + class SearchV2ContinueArg(bb.Struct): """ :ivar SearchV2ContinueArg.cursor: @@ -8466,13 +8904,12 @@ class SearchV2ContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -8481,10 +8918,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchV2ContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SearchV2ContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SearchV2ContinueArg_validator = bv.Struct(SearchV2ContinueArg) + class SearchV2Result(bb.Struct): """ :ivar SearchV2Result.matches: @@ -8501,17 +8942,14 @@ class SearchV2Result(bb.Struct): """ __slots__ = [ - '_matches_value', - '_has_more_value', - '_cursor_value', + "_matches_value", + "_has_more_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - matches=None, - has_more=None, - cursor=None): + def __init__(self, matches=None, has_more=None, cursor=None): self._matches_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -8532,10 +8970,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SearchV2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SearchV2Result_validator = bv.Struct(SearchV2Result) + class SharedLink(bb.Struct): """ :ivar SharedLink.url: @@ -8545,15 +8987,13 @@ class SharedLink(bb.Struct): """ __slots__ = [ - '_url_value', - '_password_value', + "_url_value", + "_password_value", ] _has_required_fields = True - def __init__(self, - url=None, - password=None): + def __init__(self, url=None, password=None): self._url_value = bb.NOT_SET self._password_value = bb.NOT_SET if url is not None: @@ -8570,8 +9010,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(SharedLink, self)._process_custom_annotations(annotation_type, field_path, processor) + SharedLink_validator = bv.Struct(SharedLink) + class SharedLinkFileInfo(bb.Struct): """ :ivar SharedLinkFileInfo.url: @@ -8587,17 +9029,14 @@ class SharedLinkFileInfo(bb.Struct): """ __slots__ = [ - '_url_value', - '_path_value', - '_password_value', + "_url_value", + "_path_value", + "_password_value", ] _has_required_fields = True - def __init__(self, - url=None, - path=None, - password=None): + def __init__(self, url=None, path=None, password=None): self._url_value = bb.NOT_SET self._path_value = bb.NOT_SET self._password_value = bb.NOT_SET @@ -8618,10 +9057,14 @@ def __init__(self, password = bb.Attribute("password", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkFileInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkFileInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkFileInfo_validator = bv.Struct(SharedLinkFileInfo) + class SingleUserLock(bb.Struct): """ :ivar SingleUserLock.created: @@ -8633,17 +9076,14 @@ class SingleUserLock(bb.Struct): """ __slots__ = [ - '_created_value', - '_lock_holder_account_id_value', - '_lock_holder_team_id_value', + "_created_value", + "_lock_holder_account_id_value", + "_lock_holder_team_id_value", ] _has_required_fields = True - def __init__(self, - created=None, - lock_holder_account_id=None, - lock_holder_team_id=None): + def __init__(self, created=None, lock_holder_account_id=None, lock_holder_team_id=None): self._created_value = bb.NOT_SET self._lock_holder_account_id_value = bb.NOT_SET self._lock_holder_team_id_value = bb.NOT_SET @@ -8664,10 +9104,14 @@ def __init__(self, lock_holder_team_id = bb.Attribute("lock_holder_team_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SingleUserLock, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SingleUserLock, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SingleUserLock_validator = bv.Struct(SingleUserLock) + class SymlinkInfo(bb.Struct): """ :ivar SymlinkInfo.target: @@ -8675,13 +9119,12 @@ class SymlinkInfo(bb.Struct): """ __slots__ = [ - '_target_value', + "_target_value", ] _has_required_fields = True - def __init__(self, - target=None): + def __init__(self, target=None): self._target_value = bb.NOT_SET if target is not None: self.target = target @@ -8692,8 +9135,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(SymlinkInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + SymlinkInfo_validator = bv.Struct(SymlinkInfo) + class SyncSetting(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8712,7 +9157,7 @@ class SyncSetting(bb.Union): folder's setting. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -8728,7 +9173,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_not_synced(self): """ @@ -8736,7 +9181,7 @@ def is_not_synced(self): :rtype: bool """ - return self._tag == 'not_synced' + return self._tag == "not_synced" def is_not_synced_inactive(self): """ @@ -8744,7 +9189,7 @@ def is_not_synced_inactive(self): :rtype: bool """ - return self._tag == 'not_synced_inactive' + return self._tag == "not_synced_inactive" def is_other(self): """ @@ -8752,13 +9197,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(SyncSetting, self)._process_custom_annotations(annotation_type, field_path, processor) + SyncSetting_validator = bv.Union(SyncSetting) + class SyncSettingArg(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8773,7 +9220,7 @@ class SyncSettingArg(bb.Union): not sync with selective sync. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -8787,7 +9234,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_not_synced(self): """ @@ -8795,7 +9242,7 @@ def is_not_synced(self): :rtype: bool """ - return self._tag == 'not_synced' + return self._tag == "not_synced" def is_other(self): """ @@ -8803,13 +9250,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SyncSettingArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SyncSettingArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SyncSettingArg_validator = bv.Union(SyncSettingArg) + class SyncSettingsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8823,7 +9274,7 @@ class SyncSettingsError(bb.Union): The specified configuration is not supported. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unsupported_combination = None # Attribute is overwritten below the class definition @@ -8840,7 +9291,7 @@ def path(cls, val): :param LookupError val: :rtype: SyncSettingsError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -8848,7 +9299,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_unsupported_combination(self): """ @@ -8856,7 +9307,7 @@ def is_unsupported_combination(self): :rtype: bool """ - return self._tag == 'unsupported_combination' + return self._tag == "unsupported_combination" def is_unsupported_configuration(self): """ @@ -8864,7 +9315,7 @@ def is_unsupported_configuration(self): :rtype: bool """ - return self._tag == 'unsupported_configuration' + return self._tag == "unsupported_configuration" def is_other(self): """ @@ -8872,7 +9323,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -8885,10 +9336,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SyncSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SyncSettingsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SyncSettingsError_validator = bv.Union(SyncSettingsError) + class Tag(bb.Union): """ Tag that can be added in multiple ways. @@ -8902,7 +9357,7 @@ class Tag(bb.Union): :vartype Tag.user_generated_tag: UserGeneratedTag """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -8915,7 +9370,7 @@ def user_generated_tag(cls, val): :param UserGeneratedTag val: :rtype: Tag """ - return cls('user_generated_tag', val) + return cls("user_generated_tag", val) def is_user_generated_tag(self): """ @@ -8923,7 +9378,7 @@ def is_user_generated_tag(self): :rtype: bool """ - return self._tag == 'user_generated_tag' + return self._tag == "user_generated_tag" def is_other(self): """ @@ -8931,7 +9386,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_user_generated_tag(self): """ @@ -8948,8 +9403,10 @@ def get_user_generated_tag(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(Tag, self)._process_custom_annotations(annotation_type, field_path, processor) + Tag_validator = bv.Union(Tag) + class ThumbnailArg(bb.Struct): """ :ivar ThumbnailArg.path: @@ -8972,23 +9429,25 @@ class ThumbnailArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_format_value', - '_size_value', - '_mode_value', - '_quality_value', - '_exclude_media_info_value', + "_path_value", + "_format_value", + "_size_value", + "_mode_value", + "_quality_value", + "_exclude_media_info_value", ] _has_required_fields = True - def __init__(self, - path=None, - format=None, - size=None, - mode=None, - quality=None, - exclude_media_info=None): + def __init__( + self, + path=None, + format=None, + size=None, + mode=None, + quality=None, + exclude_media_info=None, + ): self._path_value = bb.NOT_SET self._format_value = bb.NOT_SET self._size_value = bb.NOT_SET @@ -9027,10 +9486,14 @@ def __init__(self, exclude_media_info = bb.Attribute("exclude_media_info", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ThumbnailArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ThumbnailArg_validator = bv.Struct(ThumbnailArg) + class ThumbnailError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9069,7 +9532,7 @@ def path(cls, val): :param LookupError val: :rtype: ThumbnailError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -9077,7 +9540,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_unsupported_extension(self): """ @@ -9085,7 +9548,7 @@ def is_unsupported_extension(self): :rtype: bool """ - return self._tag == 'unsupported_extension' + return self._tag == "unsupported_extension" def is_unsupported_image(self): """ @@ -9093,7 +9556,7 @@ def is_unsupported_image(self): :rtype: bool """ - return self._tag == 'unsupported_image' + return self._tag == "unsupported_image" def is_encrypted_content(self): """ @@ -9101,7 +9564,7 @@ def is_encrypted_content(self): :rtype: bool """ - return self._tag == 'encrypted_content' + return self._tag == "encrypted_content" def is_conversion_error(self): """ @@ -9109,7 +9572,7 @@ def is_conversion_error(self): :rtype: bool """ - return self._tag == 'conversion_error' + return self._tag == "conversion_error" def get_path(self): """ @@ -9124,10 +9587,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ThumbnailError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ThumbnailError_validator = bv.Union(ThumbnailError) + class ThumbnailFormat(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9149,7 +9616,7 @@ def is_jpeg(self): :rtype: bool """ - return self._tag == 'jpeg' + return self._tag == "jpeg" def is_png(self): """ @@ -9157,7 +9624,7 @@ def is_png(self): :rtype: bool """ - return self._tag == 'png' + return self._tag == "png" def is_webp(self): """ @@ -9165,13 +9632,17 @@ def is_webp(self): :rtype: bool """ - return self._tag == 'webp' + return self._tag == "webp" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailFormat, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ThumbnailFormat, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ThumbnailFormat_validator = bv.Union(ThumbnailFormat) + class ThumbnailMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9205,7 +9676,7 @@ def is_strict(self): :rtype: bool """ - return self._tag == 'strict' + return self._tag == "strict" def is_bestfit(self): """ @@ -9213,7 +9684,7 @@ def is_bestfit(self): :rtype: bool """ - return self._tag == 'bestfit' + return self._tag == "bestfit" def is_fitone_bestfit(self): """ @@ -9221,7 +9692,7 @@ def is_fitone_bestfit(self): :rtype: bool """ - return self._tag == 'fitone_bestfit' + return self._tag == "fitone_bestfit" def is_original(self): """ @@ -9229,13 +9700,17 @@ def is_original(self): :rtype: bool """ - return self._tag == 'original' + return self._tag == "original" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailMode, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ThumbnailMode, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ThumbnailMode_validator = bv.Union(ThumbnailMode) + class ThumbnailQuality(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9260,7 +9735,7 @@ def is_quality_80(self): :rtype: bool """ - return self._tag == 'quality_80' + return self._tag == "quality_80" def is_quality_90(self): """ @@ -9268,13 +9743,17 @@ def is_quality_90(self): :rtype: bool """ - return self._tag == 'quality_90' + return self._tag == "quality_90" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailQuality, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ThumbnailQuality, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ThumbnailQuality_validator = bv.Union(ThumbnailQuality) + class ThumbnailSize(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9331,7 +9810,7 @@ def is_w32h32(self): :rtype: bool """ - return self._tag == 'w32h32' + return self._tag == "w32h32" def is_w64h64(self): """ @@ -9339,7 +9818,7 @@ def is_w64h64(self): :rtype: bool """ - return self._tag == 'w64h64' + return self._tag == "w64h64" def is_w128h128(self): """ @@ -9347,7 +9826,7 @@ def is_w128h128(self): :rtype: bool """ - return self._tag == 'w128h128' + return self._tag == "w128h128" def is_w256h256(self): """ @@ -9355,7 +9834,7 @@ def is_w256h256(self): :rtype: bool """ - return self._tag == 'w256h256' + return self._tag == "w256h256" def is_w480h320(self): """ @@ -9363,7 +9842,7 @@ def is_w480h320(self): :rtype: bool """ - return self._tag == 'w480h320' + return self._tag == "w480h320" def is_w640h480(self): """ @@ -9371,7 +9850,7 @@ def is_w640h480(self): :rtype: bool """ - return self._tag == 'w640h480' + return self._tag == "w640h480" def is_w960h640(self): """ @@ -9379,7 +9858,7 @@ def is_w960h640(self): :rtype: bool """ - return self._tag == 'w960h640' + return self._tag == "w960h640" def is_w1024h768(self): """ @@ -9387,7 +9866,7 @@ def is_w1024h768(self): :rtype: bool """ - return self._tag == 'w1024h768' + return self._tag == "w1024h768" def is_w2048h1536(self): """ @@ -9395,7 +9874,7 @@ def is_w2048h1536(self): :rtype: bool """ - return self._tag == 'w2048h1536' + return self._tag == "w2048h1536" def is_w3200h2400(self): """ @@ -9403,13 +9882,17 @@ def is_w3200h2400(self): :rtype: bool """ - return self._tag == 'w3200h2400' + return self._tag == "w3200h2400" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailSize, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ThumbnailSize, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ThumbnailSize_validator = bv.Union(ThumbnailSize) + class ThumbnailV2Arg(bb.Struct): """ :ivar ThumbnailV2Arg.resource: @@ -9434,23 +9917,25 @@ class ThumbnailV2Arg(bb.Struct): """ __slots__ = [ - '_resource_value', - '_format_value', - '_size_value', - '_mode_value', - '_quality_value', - '_exclude_media_info_value', + "_resource_value", + "_format_value", + "_size_value", + "_mode_value", + "_quality_value", + "_exclude_media_info_value", ] _has_required_fields = True - def __init__(self, - resource=None, - format=None, - size=None, - mode=None, - quality=None, - exclude_media_info=None): + def __init__( + self, + resource=None, + format=None, + size=None, + mode=None, + quality=None, + exclude_media_info=None, + ): self._resource_value = bb.NOT_SET self._format_value = bb.NOT_SET self._size_value = bb.NOT_SET @@ -9489,10 +9974,14 @@ def __init__(self, exclude_media_info = bb.Attribute("exclude_media_info", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ThumbnailV2Arg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ThumbnailV2Arg_validator = bv.Struct(ThumbnailV2Arg) + class ThumbnailV2Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9516,7 +10005,7 @@ class ThumbnailV2Error(bb.Union): The shared link does not exist. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unsupported_extension = None # Attribute is overwritten below the class definition @@ -9541,7 +10030,7 @@ def path(cls, val): :param LookupError val: :rtype: ThumbnailV2Error """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -9549,7 +10038,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_unsupported_extension(self): """ @@ -9557,7 +10046,7 @@ def is_unsupported_extension(self): :rtype: bool """ - return self._tag == 'unsupported_extension' + return self._tag == "unsupported_extension" def is_unsupported_image(self): """ @@ -9565,7 +10054,7 @@ def is_unsupported_image(self): :rtype: bool """ - return self._tag == 'unsupported_image' + return self._tag == "unsupported_image" def is_encrypted_content(self): """ @@ -9573,7 +10062,7 @@ def is_encrypted_content(self): :rtype: bool """ - return self._tag == 'encrypted_content' + return self._tag == "encrypted_content" def is_conversion_error(self): """ @@ -9581,7 +10070,7 @@ def is_conversion_error(self): :rtype: bool """ - return self._tag == 'conversion_error' + return self._tag == "conversion_error" def is_access_denied(self): """ @@ -9589,7 +10078,7 @@ def is_access_denied(self): :rtype: bool """ - return self._tag == 'access_denied' + return self._tag == "access_denied" def is_not_found(self): """ @@ -9597,7 +10086,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_other(self): """ @@ -9605,7 +10094,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -9620,10 +10109,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailV2Error, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ThumbnailV2Error, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ThumbnailV2Error_validator = bv.Union(ThumbnailV2Error) + class UnlockFileArg(bb.Struct): """ :ivar UnlockFileArg.path: @@ -9631,13 +10124,12 @@ class UnlockFileArg(bb.Struct): """ __slots__ = [ - '_path_value', + "_path_value", ] _has_required_fields = True - def __init__(self, - path=None): + def __init__(self, path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -9646,10 +10138,14 @@ def __init__(self, path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnlockFileArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UnlockFileArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UnlockFileArg_validator = bv.Struct(UnlockFileArg) + class UnlockFileBatchArg(bb.Struct): """ :ivar UnlockFileBatchArg.entries: @@ -9659,13 +10155,12 @@ class UnlockFileBatchArg(bb.Struct): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -9674,10 +10169,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnlockFileBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UnlockFileBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UnlockFileBatchArg_validator = bv.Struct(UnlockFileBatchArg) + class UploadArg(CommitInfo): """ :ivar UploadArg.content_hash: @@ -9688,27 +10187,31 @@ class UploadArg(CommitInfo): """ __slots__ = [ - '_content_hash_value', + "_content_hash_value", ] _has_required_fields = True - def __init__(self, - path=None, - mode=None, - autorename=None, - client_modified=None, - mute=None, - property_groups=None, - strict_conflict=None, - content_hash=None): - super(UploadArg, self).__init__(path, - mode, - autorename, - client_modified, - mute, - property_groups, - strict_conflict) + def __init__( + self, + path=None, + mode=None, + autorename=None, + client_modified=None, + mute=None, + property_groups=None, + strict_conflict=None, + content_hash=None, + ): + super(UploadArg, self).__init__( + path, + mode, + autorename, + client_modified, + mute, + property_groups, + strict_conflict, + ) self._content_hash_value = bb.NOT_SET if content_hash is not None: self.content_hash = content_hash @@ -9719,8 +10222,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(UploadArg, self)._process_custom_annotations(annotation_type, field_path, processor) + UploadArg_validator = bv.Struct(UploadArg) + class UploadError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9744,7 +10249,7 @@ class UploadError(bb.Union): public API. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition payload_too_large = None # Attribute is overwritten below the class definition @@ -9763,7 +10268,7 @@ def path(cls, val): :param UploadWriteFailed val: :rtype: UploadError """ - return cls('path', val) + return cls("path", val) @classmethod def properties_error(cls, val): @@ -9774,7 +10279,7 @@ def properties_error(cls, val): :param file_properties.InvalidPropertyGroupError val: :rtype: UploadError """ - return cls('properties_error', val) + return cls("properties_error", val) def is_path(self): """ @@ -9782,7 +10287,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_properties_error(self): """ @@ -9790,7 +10295,7 @@ def is_properties_error(self): :rtype: bool """ - return self._tag == 'properties_error' + return self._tag == "properties_error" def is_payload_too_large(self): """ @@ -9798,7 +10303,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == 'payload_too_large' + return self._tag == "payload_too_large" def is_content_hash_mismatch(self): """ @@ -9806,7 +10311,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == 'content_hash_mismatch' + return self._tag == "content_hash_mismatch" def is_encryption_not_supported(self): """ @@ -9814,7 +10319,7 @@ def is_encryption_not_supported(self): :rtype: bool """ - return self._tag == 'encryption_not_supported' + return self._tag == "encryption_not_supported" def is_other(self): """ @@ -9822,7 +10327,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -9852,8 +10357,10 @@ def get_properties_error(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(UploadError, self)._process_custom_annotations(annotation_type, field_path, processor) + UploadError_validator = bv.Union(UploadError) + class UploadSessionAppendArg(bb.Struct): """ :ivar UploadSessionAppendArg.cursor: @@ -9871,17 +10378,14 @@ class UploadSessionAppendArg(bb.Struct): """ __slots__ = [ - '_cursor_value', - '_close_value', - '_content_hash_value', + "_cursor_value", + "_close_value", + "_content_hash_value", ] _has_required_fields = True - def __init__(self, - cursor=None, - close=None, - content_hash=None): + def __init__(self, cursor=None, close=None, content_hash=None): self._cursor_value = bb.NOT_SET self._close_value = bb.NOT_SET self._content_hash_value = bb.NOT_SET @@ -9902,10 +10406,14 @@ def __init__(self, content_hash = bb.Attribute("content_hash", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionAppendArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionAppendArg_validator = bv.Struct(UploadSessionAppendArg) + class UploadSessionAppendBatchArg(bb.Struct): """ :ivar UploadSessionAppendBatchArg.entries: @@ -9919,15 +10427,13 @@ class UploadSessionAppendBatchArg(bb.Struct): """ __slots__ = [ - '_entries_value', - '_content_hash_value', + "_entries_value", + "_content_hash_value", ] _has_required_fields = True - def __init__(self, - entries=None, - content_hash=None): + def __init__(self, entries=None, content_hash=None): self._entries_value = bb.NOT_SET self._content_hash_value = bb.NOT_SET if entries is not None: @@ -9942,10 +10448,14 @@ def __init__(self, content_hash = bb.Attribute("content_hash", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionAppendBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionAppendBatchArg_validator = bv.Struct(UploadSessionAppendBatchArg) + class UploadSessionAppendBatchArgEntry(bb.Struct): """ :ivar UploadSessionAppendBatchArgEntry.cursor: @@ -9961,17 +10471,14 @@ class UploadSessionAppendBatchArgEntry(bb.Struct): """ __slots__ = [ - '_cursor_value', - '_length_value', - '_close_value', + "_cursor_value", + "_length_value", + "_close_value", ] _has_required_fields = True - def __init__(self, - cursor=None, - length=None, - close=None): + def __init__(self, cursor=None, length=None, close=None): self._cursor_value = bb.NOT_SET self._length_value = bb.NOT_SET self._close_value = bb.NOT_SET @@ -9992,10 +10499,14 @@ def __init__(self, close = bb.Attribute("close") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchArgEntry, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionAppendBatchArgEntry, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionAppendBatchArgEntry_validator = bv.Struct(UploadSessionAppendBatchArgEntry) + class UploadSessionAppendBatchEntryError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10026,7 +10537,7 @@ class UploadSessionAppendBatchEntryError(bb.Union): (4,194,304) bytes can be uploaded. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -10049,7 +10560,7 @@ def incorrect_offset(cls, val): :param UploadSessionOffsetError val: :rtype: UploadSessionAppendBatchEntryError """ - return cls('incorrect_offset', val) + return cls("incorrect_offset", val) def is_not_found(self): """ @@ -10057,7 +10568,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_incorrect_offset(self): """ @@ -10065,7 +10576,7 @@ def is_incorrect_offset(self): :rtype: bool """ - return self._tag == 'incorrect_offset' + return self._tag == "incorrect_offset" def is_closed(self): """ @@ -10073,7 +10584,7 @@ def is_closed(self): :rtype: bool """ - return self._tag == 'closed' + return self._tag == "closed" def is_too_large(self): """ @@ -10081,7 +10592,7 @@ def is_too_large(self): :rtype: bool """ - return self._tag == 'too_large' + return self._tag == "too_large" def is_concurrent_session_invalid_offset(self): """ @@ -10089,7 +10600,7 @@ def is_concurrent_session_invalid_offset(self): :rtype: bool """ - return self._tag == 'concurrent_session_invalid_offset' + return self._tag == "concurrent_session_invalid_offset" def is_concurrent_session_invalid_data_size(self): """ @@ -10097,7 +10608,7 @@ def is_concurrent_session_invalid_data_size(self): :rtype: bool """ - return self._tag == 'concurrent_session_invalid_data_size' + return self._tag == "concurrent_session_invalid_data_size" def is_other(self): """ @@ -10105,7 +10616,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_incorrect_offset(self): """ @@ -10123,10 +10634,14 @@ def get_incorrect_offset(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchEntryError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionAppendBatchEntryError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionAppendBatchEntryError_validator = bv.Union(UploadSessionAppendBatchEntryError) + class UploadSessionAppendBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10144,7 +10659,7 @@ class UploadSessionAppendBatchError(bb.Union): arguments. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition payload_too_large = None # Attribute is overwritten below the class definition @@ -10160,7 +10675,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == 'payload_too_large' + return self._tag == "payload_too_large" def is_content_hash_mismatch(self): """ @@ -10168,7 +10683,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == 'content_hash_mismatch' + return self._tag == "content_hash_mismatch" def is_length_mismatch(self): """ @@ -10176,7 +10691,7 @@ def is_length_mismatch(self): :rtype: bool """ - return self._tag == 'length_mismatch' + return self._tag == "length_mismatch" def is_other(self): """ @@ -10184,13 +10699,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionAppendBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionAppendBatchError_validator = bv.Union(UploadSessionAppendBatchError) + class UploadSessionAppendBatchResult(bb.Struct): """ :ivar UploadSessionAppendBatchResult.entries: @@ -10199,13 +10718,12 @@ class UploadSessionAppendBatchResult(bb.Struct): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -10214,10 +10732,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionAppendBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionAppendBatchResult_validator = bv.Struct(UploadSessionAppendBatchResult) + class UploadSessionAppendBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10238,7 +10760,7 @@ def failure(cls, val): :param UploadSessionAppendBatchEntryError val: :rtype: UploadSessionAppendBatchResultEntry """ - return cls('failure', val) + return cls("failure", val) def is_success(self): """ @@ -10246,7 +10768,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_failure(self): """ @@ -10254,7 +10776,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == 'failure' + return self._tag == "failure" def get_failure(self): """ @@ -10267,10 +10789,14 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionAppendBatchResultEntry, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionAppendBatchResultEntry_validator = bv.Union(UploadSessionAppendBatchResultEntry) + class UploadSessionAppendError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10306,7 +10832,7 @@ class UploadSessionAppendError(bb.Union): the provided content hash. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -10333,7 +10859,7 @@ def incorrect_offset(cls, val): :param UploadSessionOffsetError val: :rtype: UploadSessionAppendError """ - return cls('incorrect_offset', val) + return cls("incorrect_offset", val) def is_not_found(self): """ @@ -10341,7 +10867,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_incorrect_offset(self): """ @@ -10349,7 +10875,7 @@ def is_incorrect_offset(self): :rtype: bool """ - return self._tag == 'incorrect_offset' + return self._tag == "incorrect_offset" def is_closed(self): """ @@ -10357,7 +10883,7 @@ def is_closed(self): :rtype: bool """ - return self._tag == 'closed' + return self._tag == "closed" def is_too_large(self): """ @@ -10365,7 +10891,7 @@ def is_too_large(self): :rtype: bool """ - return self._tag == 'too_large' + return self._tag == "too_large" def is_concurrent_session_invalid_offset(self): """ @@ -10373,7 +10899,7 @@ def is_concurrent_session_invalid_offset(self): :rtype: bool """ - return self._tag == 'concurrent_session_invalid_offset' + return self._tag == "concurrent_session_invalid_offset" def is_concurrent_session_invalid_data_size(self): """ @@ -10381,7 +10907,7 @@ def is_concurrent_session_invalid_data_size(self): :rtype: bool """ - return self._tag == 'concurrent_session_invalid_data_size' + return self._tag == "concurrent_session_invalid_data_size" def is_payload_too_large(self): """ @@ -10389,7 +10915,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == 'payload_too_large' + return self._tag == "payload_too_large" def is_content_hash_mismatch(self): """ @@ -10397,7 +10923,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == 'content_hash_mismatch' + return self._tag == "content_hash_mismatch" def is_other(self): """ @@ -10405,7 +10931,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_incorrect_offset(self): """ @@ -10423,10 +10949,14 @@ def get_incorrect_offset(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionAppendError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionAppendError_validator = bv.Union(UploadSessionAppendError) + class UploadSessionCursor(bb.Struct): """ :ivar UploadSessionCursor.session_id: @@ -10439,15 +10969,13 @@ class UploadSessionCursor(bb.Struct): """ __slots__ = [ - '_session_id_value', - '_offset_value', + "_session_id_value", + "_offset_value", ] _has_required_fields = True - def __init__(self, - session_id=None, - offset=None): + def __init__(self, session_id=None, offset=None): self._session_id_value = bb.NOT_SET self._offset_value = bb.NOT_SET if session_id is not None: @@ -10462,10 +10990,14 @@ def __init__(self, offset = bb.Attribute("offset") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionCursor, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionCursor, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionCursor_validator = bv.Struct(UploadSessionCursor) + class UploadSessionFinishArg(bb.Struct): """ :ivar UploadSessionFinishArg.cursor: @@ -10480,17 +11012,14 @@ class UploadSessionFinishArg(bb.Struct): """ __slots__ = [ - '_cursor_value', - '_commit_value', - '_content_hash_value', + "_cursor_value", + "_commit_value", + "_content_hash_value", ] _has_required_fields = True - def __init__(self, - cursor=None, - commit=None, - content_hash=None): + def __init__(self, cursor=None, commit=None, content_hash=None): self._cursor_value = bb.NOT_SET self._commit_value = bb.NOT_SET self._content_hash_value = bb.NOT_SET @@ -10511,10 +11040,14 @@ def __init__(self, content_hash = bb.Attribute("content_hash", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionFinishArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionFinishArg_validator = bv.Struct(UploadSessionFinishArg) + class UploadSessionFinishBatchArg(bb.Struct): """ :ivar UploadSessionFinishBatchArg.entries: @@ -10522,13 +11055,12 @@ class UploadSessionFinishBatchArg(bb.Struct): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -10537,10 +11069,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionFinishBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionFinishBatchArg_validator = bv.Struct(UploadSessionFinishBatchArg) + class UploadSessionFinishBatchJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10563,7 +11099,7 @@ def complete(cls, val): :param UploadSessionFinishBatchResult val: :rtype: UploadSessionFinishBatchJobStatus """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -10571,7 +11107,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def get_complete(self): """ @@ -10588,10 +11124,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionFinishBatchJobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionFinishBatchJobStatus_validator = bv.Union(UploadSessionFinishBatchJobStatus) + class UploadSessionFinishBatchLaunch(async_.LaunchResultBase): """ Result returned by @@ -10603,7 +11143,7 @@ class UploadSessionFinishBatchLaunch(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -10616,7 +11156,7 @@ def complete(cls, val): :param UploadSessionFinishBatchResult val: :rtype: UploadSessionFinishBatchLaunch """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -10624,7 +11164,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_other(self): """ @@ -10632,7 +11172,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -10645,10 +11185,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionFinishBatchLaunch, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionFinishBatchLaunch_validator = bv.Union(UploadSessionFinishBatchLaunch) + class UploadSessionFinishBatchResult(bb.Struct): """ :ivar UploadSessionFinishBatchResult.entries: @@ -10657,13 +11201,12 @@ class UploadSessionFinishBatchResult(bb.Struct): """ __slots__ = [ - '_entries_value', + "_entries_value", ] _has_required_fields = True - def __init__(self, - entries=None): + def __init__(self, entries=None): self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -10672,10 +11215,14 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionFinishBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionFinishBatchResult_validator = bv.Struct(UploadSessionFinishBatchResult) + class UploadSessionFinishBatchResultEntry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10694,7 +11241,7 @@ def success(cls, val): :param FileMetadata val: :rtype: UploadSessionFinishBatchResultEntry """ - return cls('success', val) + return cls("success", val) @classmethod def failure(cls, val): @@ -10705,7 +11252,7 @@ def failure(cls, val): :param UploadSessionFinishError val: :rtype: UploadSessionFinishBatchResultEntry """ - return cls('failure', val) + return cls("failure", val) def is_success(self): """ @@ -10713,7 +11260,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_failure(self): """ @@ -10721,7 +11268,7 @@ def is_failure(self): :rtype: bool """ - return self._tag == 'failure' + return self._tag == "failure" def get_success(self): """ @@ -10744,10 +11291,14 @@ def get_failure(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishBatchResultEntry, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionFinishBatchResultEntry, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionFinishBatchResultEntry_validator = bv.Union(UploadSessionFinishBatchResultEntry) + class UploadSessionFinishError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10790,7 +11341,7 @@ class UploadSessionFinishError(bb.Union): public API. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition too_many_shared_folder_targets = None # Attribute is overwritten below the class definition @@ -10819,7 +11370,7 @@ def lookup_failed(cls, val): :param UploadSessionLookupError val: :rtype: UploadSessionFinishError """ - return cls('lookup_failed', val) + return cls("lookup_failed", val) @classmethod def path(cls, val): @@ -10830,7 +11381,7 @@ def path(cls, val): :param WriteError val: :rtype: UploadSessionFinishError """ - return cls('path', val) + return cls("path", val) @classmethod def properties_error(cls, val): @@ -10841,7 +11392,7 @@ def properties_error(cls, val): :param file_properties.InvalidPropertyGroupError val: :rtype: UploadSessionFinishError """ - return cls('properties_error', val) + return cls("properties_error", val) def is_lookup_failed(self): """ @@ -10849,7 +11400,7 @@ def is_lookup_failed(self): :rtype: bool """ - return self._tag == 'lookup_failed' + return self._tag == "lookup_failed" def is_path(self): """ @@ -10857,7 +11408,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_properties_error(self): """ @@ -10865,7 +11416,7 @@ def is_properties_error(self): :rtype: bool """ - return self._tag == 'properties_error' + return self._tag == "properties_error" def is_too_many_shared_folder_targets(self): """ @@ -10873,7 +11424,7 @@ def is_too_many_shared_folder_targets(self): :rtype: bool """ - return self._tag == 'too_many_shared_folder_targets' + return self._tag == "too_many_shared_folder_targets" def is_too_many_write_operations(self): """ @@ -10881,7 +11432,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == 'too_many_write_operations' + return self._tag == "too_many_write_operations" def is_concurrent_session_data_not_allowed(self): """ @@ -10889,7 +11440,7 @@ def is_concurrent_session_data_not_allowed(self): :rtype: bool """ - return self._tag == 'concurrent_session_data_not_allowed' + return self._tag == "concurrent_session_data_not_allowed" def is_concurrent_session_not_closed(self): """ @@ -10897,7 +11448,7 @@ def is_concurrent_session_not_closed(self): :rtype: bool """ - return self._tag == 'concurrent_session_not_closed' + return self._tag == "concurrent_session_not_closed" def is_concurrent_session_missing_data(self): """ @@ -10905,7 +11456,7 @@ def is_concurrent_session_missing_data(self): :rtype: bool """ - return self._tag == 'concurrent_session_missing_data' + return self._tag == "concurrent_session_missing_data" def is_payload_too_large(self): """ @@ -10913,7 +11464,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == 'payload_too_large' + return self._tag == "payload_too_large" def is_content_hash_mismatch(self): """ @@ -10921,7 +11472,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == 'content_hash_mismatch' + return self._tag == "content_hash_mismatch" def is_encryption_not_supported(self): """ @@ -10929,7 +11480,7 @@ def is_encryption_not_supported(self): :rtype: bool """ - return self._tag == 'encryption_not_supported' + return self._tag == "encryption_not_supported" def is_other(self): """ @@ -10937,7 +11488,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_lookup_failed(self): """ @@ -10979,10 +11530,14 @@ def get_properties_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionFinishError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionFinishError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionFinishError_validator = bv.Union(UploadSessionFinishError) + class UploadSessionLookupError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11017,7 +11572,7 @@ class UploadSessionLookupError(bb.Union): The request payload must be at most 150 MiB. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition not_found = None # Attribute is overwritten below the class definition @@ -11044,7 +11599,7 @@ def incorrect_offset(cls, val): :param UploadSessionOffsetError val: :rtype: UploadSessionLookupError """ - return cls('incorrect_offset', val) + return cls("incorrect_offset", val) def is_not_found(self): """ @@ -11052,7 +11607,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_incorrect_offset(self): """ @@ -11060,7 +11615,7 @@ def is_incorrect_offset(self): :rtype: bool """ - return self._tag == 'incorrect_offset' + return self._tag == "incorrect_offset" def is_closed(self): """ @@ -11068,7 +11623,7 @@ def is_closed(self): :rtype: bool """ - return self._tag == 'closed' + return self._tag == "closed" def is_not_closed(self): """ @@ -11076,7 +11631,7 @@ def is_not_closed(self): :rtype: bool """ - return self._tag == 'not_closed' + return self._tag == "not_closed" def is_too_large(self): """ @@ -11084,7 +11639,7 @@ def is_too_large(self): :rtype: bool """ - return self._tag == 'too_large' + return self._tag == "too_large" def is_concurrent_session_invalid_offset(self): """ @@ -11092,7 +11647,7 @@ def is_concurrent_session_invalid_offset(self): :rtype: bool """ - return self._tag == 'concurrent_session_invalid_offset' + return self._tag == "concurrent_session_invalid_offset" def is_concurrent_session_invalid_data_size(self): """ @@ -11100,7 +11655,7 @@ def is_concurrent_session_invalid_data_size(self): :rtype: bool """ - return self._tag == 'concurrent_session_invalid_data_size' + return self._tag == "concurrent_session_invalid_data_size" def is_payload_too_large(self): """ @@ -11108,7 +11663,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == 'payload_too_large' + return self._tag == "payload_too_large" def is_other(self): """ @@ -11116,7 +11671,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_incorrect_offset(self): """ @@ -11134,10 +11689,14 @@ def get_incorrect_offset(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionLookupError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionLookupError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionLookupError_validator = bv.Union(UploadSessionLookupError) + class UploadSessionOffsetError(bb.Struct): """ :ivar UploadSessionOffsetError.correct_offset: @@ -11145,13 +11704,12 @@ class UploadSessionOffsetError(bb.Struct): """ __slots__ = [ - '_correct_offset_value', + "_correct_offset_value", ] _has_required_fields = True - def __init__(self, - correct_offset=None): + def __init__(self, correct_offset=None): self._correct_offset_value = bb.NOT_SET if correct_offset is not None: self.correct_offset = correct_offset @@ -11160,10 +11718,14 @@ def __init__(self, correct_offset = bb.Attribute("correct_offset") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionOffsetError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionOffsetError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionOffsetError_validator = bv.Struct(UploadSessionOffsetError) + class UploadSessionStartArg(bb.Struct): """ :ivar UploadSessionStartArg.close: @@ -11182,17 +11744,14 @@ class UploadSessionStartArg(bb.Struct): """ __slots__ = [ - '_close_value', - '_session_type_value', - '_content_hash_value', + "_close_value", + "_session_type_value", + "_content_hash_value", ] _has_required_fields = False - def __init__(self, - close=None, - session_type=None, - content_hash=None): + def __init__(self, close=None, session_type=None, content_hash=None): self._close_value = bb.NOT_SET self._session_type_value = bb.NOT_SET self._content_hash_value = bb.NOT_SET @@ -11213,10 +11772,14 @@ def __init__(self, content_hash = bb.Attribute("content_hash", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionStartArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionStartArg_validator = bv.Struct(UploadSessionStartArg) + class UploadSessionStartBatchArg(bb.Struct): """ :ivar UploadSessionStartBatchArg.session_type: @@ -11227,15 +11790,13 @@ class UploadSessionStartBatchArg(bb.Struct): """ __slots__ = [ - '_session_type_value', - '_num_sessions_value', + "_session_type_value", + "_num_sessions_value", ] _has_required_fields = True - def __init__(self, - num_sessions=None, - session_type=None): + def __init__(self, num_sessions=None, session_type=None): self._session_type_value = bb.NOT_SET self._num_sessions_value = bb.NOT_SET if session_type is not None: @@ -11250,10 +11811,14 @@ def __init__(self, num_sessions = bb.Attribute("num_sessions") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionStartBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionStartBatchArg_validator = bv.Struct(UploadSessionStartBatchArg) + class UploadSessionStartBatchResult(bb.Struct): """ :ivar UploadSessionStartBatchResult.session_ids: @@ -11264,13 +11829,12 @@ class UploadSessionStartBatchResult(bb.Struct): """ __slots__ = [ - '_session_ids_value', + "_session_ids_value", ] _has_required_fields = True - def __init__(self, - session_ids=None): + def __init__(self, session_ids=None): self._session_ids_value = bb.NOT_SET if session_ids is not None: self.session_ids = session_ids @@ -11279,10 +11843,14 @@ def __init__(self, session_ids = bb.Attribute("session_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionStartBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionStartBatchResult_validator = bv.Struct(UploadSessionStartBatchResult) + class UploadSessionStartError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11300,7 +11868,7 @@ class UploadSessionStartError(bb.Union): the provided content hash. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition concurrent_session_data_not_allowed = None # Attribute is overwritten below the class definition @@ -11318,7 +11886,7 @@ def is_concurrent_session_data_not_allowed(self): :rtype: bool """ - return self._tag == 'concurrent_session_data_not_allowed' + return self._tag == "concurrent_session_data_not_allowed" def is_concurrent_session_close_not_allowed(self): """ @@ -11326,7 +11894,7 @@ def is_concurrent_session_close_not_allowed(self): :rtype: bool """ - return self._tag == 'concurrent_session_close_not_allowed' + return self._tag == "concurrent_session_close_not_allowed" def is_payload_too_large(self): """ @@ -11334,7 +11902,7 @@ def is_payload_too_large(self): :rtype: bool """ - return self._tag == 'payload_too_large' + return self._tag == "payload_too_large" def is_content_hash_mismatch(self): """ @@ -11342,7 +11910,7 @@ def is_content_hash_mismatch(self): :rtype: bool """ - return self._tag == 'content_hash_mismatch' + return self._tag == "content_hash_mismatch" def is_other(self): """ @@ -11350,13 +11918,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionStartError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionStartError_validator = bv.Union(UploadSessionStartError) + class UploadSessionStartResult(bb.Struct): """ :ivar UploadSessionStartResult.session_id: @@ -11366,13 +11938,12 @@ class UploadSessionStartResult(bb.Struct): """ __slots__ = [ - '_session_id_value', + "_session_id_value", ] _has_required_fields = True - def __init__(self, - session_id=None): + def __init__(self, session_id=None): self._session_id_value = bb.NOT_SET if session_id is not None: self.session_id = session_id @@ -11381,10 +11952,14 @@ def __init__(self, session_id = bb.Attribute("session_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionStartResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionStartResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionStartResult_validator = bv.Struct(UploadSessionStartResult) + class UploadSessionType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11398,7 +11973,7 @@ class UploadSessionType(bb.Union): Pieces of data can be uploaded in concurrent RPCs in any order. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition sequential = None # Attribute is overwritten below the class definition @@ -11412,7 +11987,7 @@ def is_sequential(self): :rtype: bool """ - return self._tag == 'sequential' + return self._tag == "sequential" def is_concurrent(self): """ @@ -11420,7 +11995,7 @@ def is_concurrent(self): :rtype: bool """ - return self._tag == 'concurrent' + return self._tag == "concurrent" def is_other(self): """ @@ -11428,13 +12003,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadSessionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadSessionType_validator = bv.Union(UploadSessionType) + class UploadWriteFailed(bb.Struct): """ :ivar UploadWriteFailed.reason: @@ -11446,15 +12025,13 @@ class UploadWriteFailed(bb.Struct): """ __slots__ = [ - '_reason_value', - '_upload_session_id_value', + "_reason_value", + "_upload_session_id_value", ] _has_required_fields = True - def __init__(self, - reason=None, - upload_session_id=None): + def __init__(self, reason=None, upload_session_id=None): self._reason_value = bb.NOT_SET self._upload_session_id_value = bb.NOT_SET if reason is not None: @@ -11469,20 +12046,22 @@ def __init__(self, upload_session_id = bb.Attribute("upload_session_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadWriteFailed, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadWriteFailed, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadWriteFailed_validator = bv.Struct(UploadWriteFailed) -class UserGeneratedTag(bb.Struct): +class UserGeneratedTag(bb.Struct): __slots__ = [ - '_tag_text_value', + "_tag_text_value", ] _has_required_fields = True - def __init__(self, - tag_text=None): + def __init__(self, tag_text=None): self._tag_text_value = bb.NOT_SET if tag_text is not None: self.tag_text = tag_text @@ -11491,10 +12070,14 @@ def __init__(self, tag_text = bb.Attribute("tag_text") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserGeneratedTag, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserGeneratedTag, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserGeneratedTag_validator = bv.Struct(UserGeneratedTag) + class VideoMetadata(MediaMetadata): """ Metadata for a video. @@ -11504,19 +12087,13 @@ class VideoMetadata(MediaMetadata): """ __slots__ = [ - '_duration_value', + "_duration_value", ] _has_required_fields = False - def __init__(self, - dimensions=None, - location=None, - time_taken=None, - duration=None): - super(VideoMetadata, self).__init__(dimensions, - location, - time_taken) + def __init__(self, dimensions=None, location=None, time_taken=None, duration=None): + super(VideoMetadata, self).__init__(dimensions, location, time_taken) self._duration_value = bb.NOT_SET if duration is not None: self.duration = duration @@ -11525,10 +12102,14 @@ def __init__(self, duration = bb.Attribute("duration", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(VideoMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(VideoMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + VideoMetadata_validator = bv.Struct(VideoMetadata) + class WriteConflictError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11544,7 +12125,7 @@ class WriteConflictError(bb.Union): parent folders. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition file = None # Attribute is overwritten below the class definition @@ -11560,7 +12141,7 @@ def is_file(self): :rtype: bool """ - return self._tag == 'file' + return self._tag == "file" def is_folder(self): """ @@ -11568,7 +12149,7 @@ def is_folder(self): :rtype: bool """ - return self._tag == 'folder' + return self._tag == "folder" def is_file_ancestor(self): """ @@ -11576,7 +12157,7 @@ def is_file_ancestor(self): :rtype: bool """ - return self._tag == 'file_ancestor' + return self._tag == "file_ancestor" def is_other(self): """ @@ -11584,13 +12165,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WriteConflictError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WriteConflictError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WriteConflictError_validator = bv.Union(WriteConflictError) + class WriteError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11625,7 +12210,7 @@ class WriteError(bb.Union): restrictions set by a team administrator """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_write_permission = None # Attribute is overwritten below the class definition @@ -11652,7 +12237,7 @@ def malformed_path(cls, val): :param Optional[str] val: :rtype: WriteError """ - return cls('malformed_path', val) + return cls("malformed_path", val) @classmethod def conflict(cls, val): @@ -11663,7 +12248,7 @@ def conflict(cls, val): :param WriteConflictError val: :rtype: WriteError """ - return cls('conflict', val) + return cls("conflict", val) def is_malformed_path(self): """ @@ -11671,7 +12256,7 @@ def is_malformed_path(self): :rtype: bool """ - return self._tag == 'malformed_path' + return self._tag == "malformed_path" def is_conflict(self): """ @@ -11679,7 +12264,7 @@ def is_conflict(self): :rtype: bool """ - return self._tag == 'conflict' + return self._tag == "conflict" def is_no_write_permission(self): """ @@ -11687,7 +12272,7 @@ def is_no_write_permission(self): :rtype: bool """ - return self._tag == 'no_write_permission' + return self._tag == "no_write_permission" def is_insufficient_space(self): """ @@ -11695,7 +12280,7 @@ def is_insufficient_space(self): :rtype: bool """ - return self._tag == 'insufficient_space' + return self._tag == "insufficient_space" def is_disallowed_name(self): """ @@ -11703,7 +12288,7 @@ def is_disallowed_name(self): :rtype: bool """ - return self._tag == 'disallowed_name' + return self._tag == "disallowed_name" def is_team_folder(self): """ @@ -11711,7 +12296,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == 'team_folder' + return self._tag == "team_folder" def is_operation_suppressed(self): """ @@ -11719,7 +12304,7 @@ def is_operation_suppressed(self): :rtype: bool """ - return self._tag == 'operation_suppressed' + return self._tag == "operation_suppressed" def is_too_many_write_operations(self): """ @@ -11727,7 +12312,7 @@ def is_too_many_write_operations(self): :rtype: bool """ - return self._tag == 'too_many_write_operations' + return self._tag == "too_many_write_operations" def is_access_restricted(self): """ @@ -11735,7 +12320,7 @@ def is_access_restricted(self): :rtype: bool """ - return self._tag == 'access_restricted' + return self._tag == "access_restricted" def is_other(self): """ @@ -11743,7 +12328,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_malformed_path(self): """ @@ -11776,8 +12361,10 @@ def get_conflict(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(WriteError, self)._process_custom_annotations(annotation_type, field_path, processor) + WriteError_validator = bv.Union(WriteError) + class WriteMode(bb.Union): """ Your intent when writing a file to some path. This is used to determine what @@ -11829,7 +12416,7 @@ def update(cls, val): :param str val: :rtype: WriteMode """ - return cls('update', val) + return cls("update", val) def is_add(self): """ @@ -11837,7 +12424,7 @@ def is_add(self): :rtype: bool """ - return self._tag == 'add' + return self._tag == "add" def is_overwrite(self): """ @@ -11845,7 +12432,7 @@ def is_overwrite(self): :rtype: bool """ - return self._tag == 'overwrite' + return self._tag == "overwrite" def is_update(self): """ @@ -11853,7 +12440,7 @@ def is_update(self): :rtype: bool """ - return self._tag == 'update' + return self._tag == "update" def get_update(self): """ @@ -11878,86 +12465,107 @@ def get_update(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(WriteMode, self)._process_custom_annotations(annotation_type, field_path, processor) + WriteMode_validator = bv.Union(WriteMode) CopyBatchArg_validator = RelocationBatchArgBase_validator CopyBatchArg = RelocationBatchArgBase -FileId_validator = bv.String(min_length=4, pattern='id:.+') +FileId_validator = bv.String(min_length=4, pattern="id:.+") Id_validator = bv.String(min_length=1) ListFolderCursor_validator = bv.String(min_length=1) MalformedPathError_validator = bv.Nullable(bv.String()) -Path_validator = bv.String(pattern='/(.|[\\r\\n])*') -PathOrId_validator = bv.String(pattern='/(.|[\\r\\n])*|id:.*|(ns:[0-9]+(/(.|[\\r\\n])*)?)') -PathR_validator = bv.String(pattern='(/(.|[\\r\\n])*)?|(ns:[0-9]+(/(.|[\\r\\n])*)?)') -PathROrId_validator = bv.String(pattern='(/(.|[\\r\\n])*)?|id:.*|(ns:[0-9]+(/(.|[\\r\\n])*)?)') -ReadPath_validator = bv.String(pattern='(/(.|[\\r\\n])*|id:.*)|(rev:[0-9a-f]{9,})|(ns:[0-9]+(/(.|[\\r\\n])*)?)') -Rev_validator = bv.String(min_length=9, pattern='[0-9a-f]+') +Path_validator = bv.String(pattern="/(.|[\\r\\n])*") +PathOrId_validator = bv.String(pattern="/(.|[\\r\\n])*|id:.*|(ns:[0-9]+(/(.|[\\r\\n])*)?)") +PathR_validator = bv.String(pattern="(/(.|[\\r\\n])*)?|(ns:[0-9]+(/(.|[\\r\\n])*)?)") +PathROrId_validator = bv.String(pattern="(/(.|[\\r\\n])*)?|id:.*|(ns:[0-9]+(/(.|[\\r\\n])*)?)") +ReadPath_validator = bv.String( + pattern="(/(.|[\\r\\n])*|id:.*)|(rev:[0-9a-f]{9,})|(ns:[0-9]+(/(.|[\\r\\n])*)?)" +) +Rev_validator = bv.String(min_length=9, pattern="[0-9a-f]+") SearchV2Cursor_validator = bv.String(min_length=1) Sha256HexHash_validator = bv.String(min_length=64, max_length=64) SharedLinkUrl_validator = bv.String() -TagText_validator = bv.String(min_length=1, max_length=32, pattern='[\\w]+') -WritePath_validator = bv.String(pattern='(/(.|[\\r\\n])*)|(ns:[0-9]+(/(.|[\\r\\n])*)?)') -WritePathOrId_validator = bv.String(pattern='(/(.|[\\r\\n])*)|(ns:[0-9]+(/(.|[\\r\\n])*)?)|(id:.*)') +TagText_validator = bv.String(min_length=1, max_length=32, pattern="[\\w]+") +WritePath_validator = bv.String(pattern="(/(.|[\\r\\n])*)|(ns:[0-9]+(/(.|[\\r\\n])*)?)") +WritePathOrId_validator = bv.String(pattern="(/(.|[\\r\\n])*)|(ns:[0-9]+(/(.|[\\r\\n])*)?)|(id:.*)") AddTagArg.path.validator = Path_validator AddTagArg.tag_text.validator = TagText_validator -AddTagArg._all_field_names_ = set([ - 'path', - 'tag_text', -]) +AddTagArg._all_field_names_ = set( + [ + "path", + "tag_text", + ] +) AddTagArg._all_fields_ = [ - ('path', AddTagArg.path.validator), - ('tag_text', AddTagArg.tag_text.validator), + ("path", AddTagArg.path.validator), + ("tag_text", AddTagArg.tag_text.validator), ] BaseTagError._path_validator = LookupError_validator BaseTagError._other_validator = bv.Void() BaseTagError._tagmap = { - 'path': BaseTagError._path_validator, - 'other': BaseTagError._other_validator, + "path": BaseTagError._path_validator, + "other": BaseTagError._other_validator, } -BaseTagError.other = BaseTagError('other') +BaseTagError.other = BaseTagError("other") AddTagError._too_many_tags_validator = bv.Void() AddTagError._tagmap = { - 'too_many_tags': AddTagError._too_many_tags_validator, + "too_many_tags": AddTagError._too_many_tags_validator, } AddTagError._tagmap.update(BaseTagError._tagmap) -AddTagError.too_many_tags = AddTagError('too_many_tags') +AddTagError.too_many_tags = AddTagError("too_many_tags") GetMetadataArg.path.validator = ReadPath_validator GetMetadataArg.include_media_info.validator = bv.Boolean() GetMetadataArg.include_deleted.validator = bv.Boolean() GetMetadataArg.include_has_explicit_shared_members.validator = bv.Boolean() -GetMetadataArg.include_property_groups.validator = bv.Nullable(file_properties.TemplateFilterBase_validator) -GetMetadataArg._all_field_names_ = set([ - 'path', - 'include_media_info', - 'include_deleted', - 'include_has_explicit_shared_members', - 'include_property_groups', -]) +GetMetadataArg.include_property_groups.validator = bv.Nullable( + file_properties.TemplateFilterBase_validator +) +GetMetadataArg._all_field_names_ = set( + [ + "path", + "include_media_info", + "include_deleted", + "include_has_explicit_shared_members", + "include_property_groups", + ] +) GetMetadataArg._all_fields_ = [ - ('path', GetMetadataArg.path.validator), - ('include_media_info', GetMetadataArg.include_media_info.validator), - ('include_deleted', GetMetadataArg.include_deleted.validator), - ('include_has_explicit_shared_members', GetMetadataArg.include_has_explicit_shared_members.validator), - ('include_property_groups', GetMetadataArg.include_property_groups.validator), + ("path", GetMetadataArg.path.validator), + ("include_media_info", GetMetadataArg.include_media_info.validator), + ("include_deleted", GetMetadataArg.include_deleted.validator), + ( + "include_has_explicit_shared_members", + GetMetadataArg.include_has_explicit_shared_members.validator, + ), + ("include_property_groups", GetMetadataArg.include_property_groups.validator), ] -AlphaGetMetadataArg.include_property_templates.validator = bv.Nullable(bv.List(file_properties.TemplateId_validator)) -AlphaGetMetadataArg._all_field_names_ = GetMetadataArg._all_field_names_.union(set(['include_property_templates'])) -AlphaGetMetadataArg._all_fields_ = GetMetadataArg._all_fields_ + [('include_property_templates', AlphaGetMetadataArg.include_property_templates.validator)] +AlphaGetMetadataArg.include_property_templates.validator = bv.Nullable( + bv.List(file_properties.TemplateId_validator) +) +AlphaGetMetadataArg._all_field_names_ = GetMetadataArg._all_field_names_.union( + set(["include_property_templates"]) +) +AlphaGetMetadataArg._all_fields_ = GetMetadataArg._all_fields_ + [ + ( + "include_property_templates", + AlphaGetMetadataArg.include_property_templates.validator, + ) +] GetMetadataError._path_validator = LookupError_validator GetMetadataError._tagmap = { - 'path': GetMetadataError._path_validator, + "path": GetMetadataError._path_validator, } AlphaGetMetadataError._properties_error_validator = file_properties.LookUpPropertiesError_validator AlphaGetMetadataError._tagmap = { - 'properties_error': AlphaGetMetadataError._properties_error_validator, + "properties_error": AlphaGetMetadataError._properties_error_validator, } AlphaGetMetadataError._tagmap.update(GetMetadataError._tagmap) @@ -11968,200 +12576,218 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CommitInfo.mute.validator = bv.Boolean() CommitInfo.property_groups.validator = bv.Nullable(bv.List(file_properties.PropertyGroup_validator)) CommitInfo.strict_conflict.validator = bv.Boolean() -CommitInfo._all_field_names_ = set([ - 'path', - 'mode', - 'autorename', - 'client_modified', - 'mute', - 'property_groups', - 'strict_conflict', -]) +CommitInfo._all_field_names_ = set( + [ + "path", + "mode", + "autorename", + "client_modified", + "mute", + "property_groups", + "strict_conflict", + ] +) CommitInfo._all_fields_ = [ - ('path', CommitInfo.path.validator), - ('mode', CommitInfo.mode.validator), - ('autorename', CommitInfo.autorename.validator), - ('client_modified', CommitInfo.client_modified.validator), - ('mute', CommitInfo.mute.validator), - ('property_groups', CommitInfo.property_groups.validator), - ('strict_conflict', CommitInfo.strict_conflict.validator), + ("path", CommitInfo.path.validator), + ("mode", CommitInfo.mode.validator), + ("autorename", CommitInfo.autorename.validator), + ("client_modified", CommitInfo.client_modified.validator), + ("mute", CommitInfo.mute.validator), + ("property_groups", CommitInfo.property_groups.validator), + ("strict_conflict", CommitInfo.strict_conflict.validator), ] ContentSyncSetting.id.validator = FileId_validator ContentSyncSetting.sync_setting.validator = SyncSetting_validator -ContentSyncSetting._all_field_names_ = set([ - 'id', - 'sync_setting', -]) +ContentSyncSetting._all_field_names_ = set( + [ + "id", + "sync_setting", + ] +) ContentSyncSetting._all_fields_ = [ - ('id', ContentSyncSetting.id.validator), - ('sync_setting', ContentSyncSetting.sync_setting.validator), + ("id", ContentSyncSetting.id.validator), + ("sync_setting", ContentSyncSetting.sync_setting.validator), ] ContentSyncSettingArg.id.validator = FileId_validator ContentSyncSettingArg.sync_setting.validator = SyncSettingArg_validator -ContentSyncSettingArg._all_field_names_ = set([ - 'id', - 'sync_setting', -]) +ContentSyncSettingArg._all_field_names_ = set( + [ + "id", + "sync_setting", + ] +) ContentSyncSettingArg._all_fields_ = [ - ('id', ContentSyncSettingArg.id.validator), - ('sync_setting', ContentSyncSettingArg.sync_setting.validator), + ("id", ContentSyncSettingArg.id.validator), + ("sync_setting", ContentSyncSettingArg.sync_setting.validator), ] CreateFolderArg.path.validator = WritePath_validator CreateFolderArg.autorename.validator = bv.Boolean() -CreateFolderArg._all_field_names_ = set([ - 'path', - 'autorename', -]) +CreateFolderArg._all_field_names_ = set( + [ + "path", + "autorename", + ] +) CreateFolderArg._all_fields_ = [ - ('path', CreateFolderArg.path.validator), - ('autorename', CreateFolderArg.autorename.validator), + ("path", CreateFolderArg.path.validator), + ("autorename", CreateFolderArg.autorename.validator), ] CreateFolderBatchArg.paths.validator = bv.List(WritePath_validator, max_items=10000) CreateFolderBatchArg.autorename.validator = bv.Boolean() CreateFolderBatchArg.force_async.validator = bv.Boolean() -CreateFolderBatchArg._all_field_names_ = set([ - 'paths', - 'autorename', - 'force_async', -]) +CreateFolderBatchArg._all_field_names_ = set( + [ + "paths", + "autorename", + "force_async", + ] +) CreateFolderBatchArg._all_fields_ = [ - ('paths', CreateFolderBatchArg.paths.validator), - ('autorename', CreateFolderBatchArg.autorename.validator), - ('force_async', CreateFolderBatchArg.force_async.validator), + ("paths", CreateFolderBatchArg.paths.validator), + ("autorename", CreateFolderBatchArg.autorename.validator), + ("force_async", CreateFolderBatchArg.force_async.validator), ] CreateFolderBatchError._too_many_files_validator = bv.Void() CreateFolderBatchError._other_validator = bv.Void() CreateFolderBatchError._tagmap = { - 'too_many_files': CreateFolderBatchError._too_many_files_validator, - 'other': CreateFolderBatchError._other_validator, + "too_many_files": CreateFolderBatchError._too_many_files_validator, + "other": CreateFolderBatchError._other_validator, } -CreateFolderBatchError.too_many_files = CreateFolderBatchError('too_many_files') -CreateFolderBatchError.other = CreateFolderBatchError('other') +CreateFolderBatchError.too_many_files = CreateFolderBatchError("too_many_files") +CreateFolderBatchError.other = CreateFolderBatchError("other") CreateFolderBatchJobStatus._complete_validator = CreateFolderBatchResult_validator CreateFolderBatchJobStatus._failed_validator = CreateFolderBatchError_validator CreateFolderBatchJobStatus._other_validator = bv.Void() CreateFolderBatchJobStatus._tagmap = { - 'complete': CreateFolderBatchJobStatus._complete_validator, - 'failed': CreateFolderBatchJobStatus._failed_validator, - 'other': CreateFolderBatchJobStatus._other_validator, + "complete": CreateFolderBatchJobStatus._complete_validator, + "failed": CreateFolderBatchJobStatus._failed_validator, + "other": CreateFolderBatchJobStatus._other_validator, } CreateFolderBatchJobStatus._tagmap.update(async_.PollResultBase._tagmap) -CreateFolderBatchJobStatus.other = CreateFolderBatchJobStatus('other') +CreateFolderBatchJobStatus.other = CreateFolderBatchJobStatus("other") CreateFolderBatchLaunch._complete_validator = CreateFolderBatchResult_validator CreateFolderBatchLaunch._other_validator = bv.Void() CreateFolderBatchLaunch._tagmap = { - 'complete': CreateFolderBatchLaunch._complete_validator, - 'other': CreateFolderBatchLaunch._other_validator, + "complete": CreateFolderBatchLaunch._complete_validator, + "other": CreateFolderBatchLaunch._other_validator, } CreateFolderBatchLaunch._tagmap.update(async_.LaunchResultBase._tagmap) -CreateFolderBatchLaunch.other = CreateFolderBatchLaunch('other') +CreateFolderBatchLaunch.other = CreateFolderBatchLaunch("other") FileOpsResult._all_field_names_ = set([]) FileOpsResult._all_fields_ = [] CreateFolderBatchResult.entries.validator = bv.List(CreateFolderBatchResultEntry_validator) -CreateFolderBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) -CreateFolderBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', CreateFolderBatchResult.entries.validator)] +CreateFolderBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) +CreateFolderBatchResult._all_fields_ = FileOpsResult._all_fields_ + [ + ("entries", CreateFolderBatchResult.entries.validator) +] CreateFolderBatchResultEntry._success_validator = CreateFolderEntryResult_validator CreateFolderBatchResultEntry._failure_validator = CreateFolderEntryError_validator CreateFolderBatchResultEntry._tagmap = { - 'success': CreateFolderBatchResultEntry._success_validator, - 'failure': CreateFolderBatchResultEntry._failure_validator, + "success": CreateFolderBatchResultEntry._success_validator, + "failure": CreateFolderBatchResultEntry._failure_validator, } CreateFolderEntryError._path_validator = WriteError_validator CreateFolderEntryError._other_validator = bv.Void() CreateFolderEntryError._tagmap = { - 'path': CreateFolderEntryError._path_validator, - 'other': CreateFolderEntryError._other_validator, + "path": CreateFolderEntryError._path_validator, + "other": CreateFolderEntryError._other_validator, } -CreateFolderEntryError.other = CreateFolderEntryError('other') +CreateFolderEntryError.other = CreateFolderEntryError("other") CreateFolderEntryResult.metadata.validator = FolderMetadata_validator -CreateFolderEntryResult._all_field_names_ = set(['metadata']) -CreateFolderEntryResult._all_fields_ = [('metadata', CreateFolderEntryResult.metadata.validator)] +CreateFolderEntryResult._all_field_names_ = set(["metadata"]) +CreateFolderEntryResult._all_fields_ = [("metadata", CreateFolderEntryResult.metadata.validator)] CreateFolderError._path_validator = WriteError_validator CreateFolderError._tagmap = { - 'path': CreateFolderError._path_validator, + "path": CreateFolderError._path_validator, } CreateFolderResult.metadata.validator = FolderMetadata_validator -CreateFolderResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['metadata'])) -CreateFolderResult._all_fields_ = FileOpsResult._all_fields_ + [('metadata', CreateFolderResult.metadata.validator)] +CreateFolderResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["metadata"])) +CreateFolderResult._all_fields_ = FileOpsResult._all_fields_ + [ + ("metadata", CreateFolderResult.metadata.validator) +] DeleteArg.path.validator = WritePathOrId_validator DeleteArg.parent_rev.validator = bv.Nullable(Rev_validator) -DeleteArg._all_field_names_ = set([ - 'path', - 'parent_rev', -]) +DeleteArg._all_field_names_ = set( + [ + "path", + "parent_rev", + ] +) DeleteArg._all_fields_ = [ - ('path', DeleteArg.path.validator), - ('parent_rev', DeleteArg.parent_rev.validator), + ("path", DeleteArg.path.validator), + ("parent_rev", DeleteArg.parent_rev.validator), ] DeleteBatchArg.entries.validator = bv.List(DeleteArg_validator, max_items=1000) -DeleteBatchArg._all_field_names_ = set(['entries']) -DeleteBatchArg._all_fields_ = [('entries', DeleteBatchArg.entries.validator)] +DeleteBatchArg._all_field_names_ = set(["entries"]) +DeleteBatchArg._all_fields_ = [("entries", DeleteBatchArg.entries.validator)] DeleteBatchError._too_many_write_operations_validator = bv.Void() DeleteBatchError._other_validator = bv.Void() DeleteBatchError._tagmap = { - 'too_many_write_operations': DeleteBatchError._too_many_write_operations_validator, - 'other': DeleteBatchError._other_validator, + "too_many_write_operations": DeleteBatchError._too_many_write_operations_validator, + "other": DeleteBatchError._other_validator, } -DeleteBatchError.too_many_write_operations = DeleteBatchError('too_many_write_operations') -DeleteBatchError.other = DeleteBatchError('other') +DeleteBatchError.too_many_write_operations = DeleteBatchError("too_many_write_operations") +DeleteBatchError.other = DeleteBatchError("other") DeleteBatchJobStatus._complete_validator = DeleteBatchResult_validator DeleteBatchJobStatus._failed_validator = DeleteBatchError_validator DeleteBatchJobStatus._other_validator = bv.Void() DeleteBatchJobStatus._tagmap = { - 'complete': DeleteBatchJobStatus._complete_validator, - 'failed': DeleteBatchJobStatus._failed_validator, - 'other': DeleteBatchJobStatus._other_validator, + "complete": DeleteBatchJobStatus._complete_validator, + "failed": DeleteBatchJobStatus._failed_validator, + "other": DeleteBatchJobStatus._other_validator, } DeleteBatchJobStatus._tagmap.update(async_.PollResultBase._tagmap) -DeleteBatchJobStatus.other = DeleteBatchJobStatus('other') +DeleteBatchJobStatus.other = DeleteBatchJobStatus("other") DeleteBatchLaunch._complete_validator = DeleteBatchResult_validator DeleteBatchLaunch._other_validator = bv.Void() DeleteBatchLaunch._tagmap = { - 'complete': DeleteBatchLaunch._complete_validator, - 'other': DeleteBatchLaunch._other_validator, + "complete": DeleteBatchLaunch._complete_validator, + "other": DeleteBatchLaunch._other_validator, } DeleteBatchLaunch._tagmap.update(async_.LaunchResultBase._tagmap) -DeleteBatchLaunch.other = DeleteBatchLaunch('other') +DeleteBatchLaunch.other = DeleteBatchLaunch("other") DeleteBatchResult.entries.validator = bv.List(DeleteBatchResultEntry_validator) -DeleteBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) -DeleteBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', DeleteBatchResult.entries.validator)] +DeleteBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) +DeleteBatchResult._all_fields_ = FileOpsResult._all_fields_ + [ + ("entries", DeleteBatchResult.entries.validator) +] DeleteBatchResultData.metadata.validator = Metadata_validator -DeleteBatchResultData._all_field_names_ = set(['metadata']) -DeleteBatchResultData._all_fields_ = [('metadata', DeleteBatchResultData.metadata.validator)] +DeleteBatchResultData._all_field_names_ = set(["metadata"]) +DeleteBatchResultData._all_fields_ = [("metadata", DeleteBatchResultData.metadata.validator)] DeleteBatchResultEntry._success_validator = DeleteBatchResultData_validator DeleteBatchResultEntry._failure_validator = DeleteError_validator DeleteBatchResultEntry._tagmap = { - 'success': DeleteBatchResultEntry._success_validator, - 'failure': DeleteBatchResultEntry._failure_validator, + "success": DeleteBatchResultEntry._success_validator, + "failure": DeleteBatchResultEntry._failure_validator, } DeleteError._path_lookup_validator = LookupError_validator @@ -12170,127 +12796,137 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeleteError._too_many_files_validator = bv.Void() DeleteError._other_validator = bv.Void() DeleteError._tagmap = { - 'path_lookup': DeleteError._path_lookup_validator, - 'path_write': DeleteError._path_write_validator, - 'too_many_write_operations': DeleteError._too_many_write_operations_validator, - 'too_many_files': DeleteError._too_many_files_validator, - 'other': DeleteError._other_validator, + "path_lookup": DeleteError._path_lookup_validator, + "path_write": DeleteError._path_write_validator, + "too_many_write_operations": DeleteError._too_many_write_operations_validator, + "too_many_files": DeleteError._too_many_files_validator, + "other": DeleteError._other_validator, } -DeleteError.too_many_write_operations = DeleteError('too_many_write_operations') -DeleteError.too_many_files = DeleteError('too_many_files') -DeleteError.other = DeleteError('other') +DeleteError.too_many_write_operations = DeleteError("too_many_write_operations") +DeleteError.too_many_files = DeleteError("too_many_files") +DeleteError.other = DeleteError("other") DeleteResult.metadata.validator = Metadata_validator -DeleteResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['metadata'])) -DeleteResult._all_fields_ = FileOpsResult._all_fields_ + [('metadata', DeleteResult.metadata.validator)] +DeleteResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["metadata"])) +DeleteResult._all_fields_ = FileOpsResult._all_fields_ + [ + ("metadata", DeleteResult.metadata.validator) +] Metadata.name.validator = bv.String() Metadata.path_lower.validator = bv.Nullable(bv.String()) Metadata.path_display.validator = bv.Nullable(bv.String()) Metadata.parent_shared_folder_id.validator = bv.Nullable(common.SharedFolderId_validator) Metadata.preview_url.validator = bv.Nullable(bv.String()) -Metadata._field_names_ = set([ - 'name', - 'path_lower', - 'path_display', - 'parent_shared_folder_id', - 'preview_url', -]) +Metadata._field_names_ = set( + [ + "name", + "path_lower", + "path_display", + "parent_shared_folder_id", + "preview_url", + ] +) Metadata._all_field_names_ = Metadata._field_names_ Metadata._fields_ = [ - ('name', Metadata.name.validator), - ('path_lower', Metadata.path_lower.validator), - ('path_display', Metadata.path_display.validator), - ('parent_shared_folder_id', Metadata.parent_shared_folder_id.validator), - ('preview_url', Metadata.preview_url.validator), + ("name", Metadata.name.validator), + ("path_lower", Metadata.path_lower.validator), + ("path_display", Metadata.path_display.validator), + ("parent_shared_folder_id", Metadata.parent_shared_folder_id.validator), + ("preview_url", Metadata.preview_url.validator), ] Metadata._all_fields_ = Metadata._fields_ Metadata._tag_to_subtype_ = { - ('file',): FileMetadata_validator, - ('folder',): FolderMetadata_validator, - ('deleted',): DeletedMetadata_validator, + ("file",): FileMetadata_validator, + ("folder",): FolderMetadata_validator, + ("deleted",): DeletedMetadata_validator, } Metadata._pytype_to_tag_and_subtype_ = { - FileMetadata: (('file',), FileMetadata_validator), - FolderMetadata: (('folder',), FolderMetadata_validator), - DeletedMetadata: (('deleted',), DeletedMetadata_validator), + FileMetadata: (("file",), FileMetadata_validator), + FolderMetadata: (("folder",), FolderMetadata_validator), + DeletedMetadata: (("deleted",), DeletedMetadata_validator), } Metadata._is_catch_all_ = False DeletedMetadata.is_restorable.validator = bv.Nullable(bv.Boolean()) -DeletedMetadata._field_names_ = set(['is_restorable']) +DeletedMetadata._field_names_ = set(["is_restorable"]) DeletedMetadata._all_field_names_ = Metadata._all_field_names_.union(DeletedMetadata._field_names_) -DeletedMetadata._fields_ = [('is_restorable', DeletedMetadata.is_restorable.validator)] +DeletedMetadata._fields_ = [("is_restorable", DeletedMetadata.is_restorable.validator)] DeletedMetadata._all_fields_ = Metadata._all_fields_ + DeletedMetadata._fields_ Dimensions.height.validator = bv.UInt64() Dimensions.width.validator = bv.UInt64() -Dimensions._all_field_names_ = set([ - 'height', - 'width', -]) +Dimensions._all_field_names_ = set( + [ + "height", + "width", + ] +) Dimensions._all_fields_ = [ - ('height', Dimensions.height.validator), - ('width', Dimensions.width.validator), + ("height", Dimensions.height.validator), + ("width", Dimensions.width.validator), ] DownloadArg.path.validator = ReadPath_validator DownloadArg.rev.validator = bv.Nullable(Rev_validator) -DownloadArg._all_field_names_ = set([ - 'path', - 'rev', -]) +DownloadArg._all_field_names_ = set( + [ + "path", + "rev", + ] +) DownloadArg._all_fields_ = [ - ('path', DownloadArg.path.validator), - ('rev', DownloadArg.rev.validator), + ("path", DownloadArg.path.validator), + ("rev", DownloadArg.rev.validator), ] DownloadError._path_validator = LookupError_validator DownloadError._unsupported_file_validator = bv.Void() DownloadError._other_validator = bv.Void() DownloadError._tagmap = { - 'path': DownloadError._path_validator, - 'unsupported_file': DownloadError._unsupported_file_validator, - 'other': DownloadError._other_validator, + "path": DownloadError._path_validator, + "unsupported_file": DownloadError._unsupported_file_validator, + "other": DownloadError._other_validator, } -DownloadError.unsupported_file = DownloadError('unsupported_file') -DownloadError.other = DownloadError('other') +DownloadError.unsupported_file = DownloadError("unsupported_file") +DownloadError.other = DownloadError("other") DownloadZipArg.path.validator = ReadPath_validator -DownloadZipArg._all_field_names_ = set(['path']) -DownloadZipArg._all_fields_ = [('path', DownloadZipArg.path.validator)] +DownloadZipArg._all_field_names_ = set(["path"]) +DownloadZipArg._all_fields_ = [("path", DownloadZipArg.path.validator)] DownloadZipError._path_validator = LookupError_validator DownloadZipError._too_large_validator = bv.Void() DownloadZipError._too_many_files_validator = bv.Void() DownloadZipError._other_validator = bv.Void() DownloadZipError._tagmap = { - 'path': DownloadZipError._path_validator, - 'too_large': DownloadZipError._too_large_validator, - 'too_many_files': DownloadZipError._too_many_files_validator, - 'other': DownloadZipError._other_validator, + "path": DownloadZipError._path_validator, + "too_large": DownloadZipError._too_large_validator, + "too_many_files": DownloadZipError._too_many_files_validator, + "other": DownloadZipError._other_validator, } -DownloadZipError.too_large = DownloadZipError('too_large') -DownloadZipError.too_many_files = DownloadZipError('too_many_files') -DownloadZipError.other = DownloadZipError('other') +DownloadZipError.too_large = DownloadZipError("too_large") +DownloadZipError.too_many_files = DownloadZipError("too_many_files") +DownloadZipError.other = DownloadZipError("other") DownloadZipResult.metadata.validator = FolderMetadata_validator -DownloadZipResult._all_field_names_ = set(['metadata']) -DownloadZipResult._all_fields_ = [('metadata', DownloadZipResult.metadata.validator)] +DownloadZipResult._all_field_names_ = set(["metadata"]) +DownloadZipResult._all_fields_ = [("metadata", DownloadZipResult.metadata.validator)] ExportArg.path.validator = ReadPath_validator ExportArg.export_format.validator = bv.Nullable(bv.String()) -ExportArg._all_field_names_ = set([ - 'path', - 'export_format', -]) +ExportArg._all_field_names_ = set( + [ + "path", + "export_format", + ] +) ExportArg._all_fields_ = [ - ('path', ExportArg.path.validator), - ('export_format', ExportArg.export_format.validator), + ("path", ExportArg.path.validator), + ("export_format", ExportArg.export_format.validator), ] ExportError._path_validator = LookupError_validator @@ -12299,55 +12935,61 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExportError._retry_error_validator = bv.Void() ExportError._other_validator = bv.Void() ExportError._tagmap = { - 'path': ExportError._path_validator, - 'non_exportable': ExportError._non_exportable_validator, - 'invalid_export_format': ExportError._invalid_export_format_validator, - 'retry_error': ExportError._retry_error_validator, - 'other': ExportError._other_validator, + "path": ExportError._path_validator, + "non_exportable": ExportError._non_exportable_validator, + "invalid_export_format": ExportError._invalid_export_format_validator, + "retry_error": ExportError._retry_error_validator, + "other": ExportError._other_validator, } -ExportError.non_exportable = ExportError('non_exportable') -ExportError.invalid_export_format = ExportError('invalid_export_format') -ExportError.retry_error = ExportError('retry_error') -ExportError.other = ExportError('other') +ExportError.non_exportable = ExportError("non_exportable") +ExportError.invalid_export_format = ExportError("invalid_export_format") +ExportError.retry_error = ExportError("retry_error") +ExportError.other = ExportError("other") ExportInfo.export_as.validator = bv.Nullable(bv.String()) ExportInfo.export_options.validator = bv.Nullable(bv.List(bv.String())) -ExportInfo._all_field_names_ = set([ - 'export_as', - 'export_options', -]) +ExportInfo._all_field_names_ = set( + [ + "export_as", + "export_options", + ] +) ExportInfo._all_fields_ = [ - ('export_as', ExportInfo.export_as.validator), - ('export_options', ExportInfo.export_options.validator), + ("export_as", ExportInfo.export_as.validator), + ("export_options", ExportInfo.export_options.validator), ] ExportMetadata.name.validator = bv.String() ExportMetadata.size.validator = bv.UInt64() ExportMetadata.export_hash.validator = bv.Nullable(Sha256HexHash_validator) ExportMetadata.paper_revision.validator = bv.Nullable(bv.Int64()) -ExportMetadata._all_field_names_ = set([ - 'name', - 'size', - 'export_hash', - 'paper_revision', -]) +ExportMetadata._all_field_names_ = set( + [ + "name", + "size", + "export_hash", + "paper_revision", + ] +) ExportMetadata._all_fields_ = [ - ('name', ExportMetadata.name.validator), - ('size', ExportMetadata.size.validator), - ('export_hash', ExportMetadata.export_hash.validator), - ('paper_revision', ExportMetadata.paper_revision.validator), + ("name", ExportMetadata.name.validator), + ("size", ExportMetadata.size.validator), + ("export_hash", ExportMetadata.export_hash.validator), + ("paper_revision", ExportMetadata.paper_revision.validator), ] ExportResult.export_metadata.validator = ExportMetadata_validator ExportResult.file_metadata.validator = FileMetadata_validator -ExportResult._all_field_names_ = set([ - 'export_metadata', - 'file_metadata', -]) +ExportResult._all_field_names_ = set( + [ + "export_metadata", + "file_metadata", + ] +) ExportResult._all_fields_ = [ - ('export_metadata', ExportResult.export_metadata.validator), - ('file_metadata', ExportResult.file_metadata.validator), + ("export_metadata", ExportResult.export_metadata.validator), + ("file_metadata", ExportResult.file_metadata.validator), ] FileCategory._image_validator = bv.Void() @@ -12362,62 +13004,64 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileCategory._others_validator = bv.Void() FileCategory._other_validator = bv.Void() FileCategory._tagmap = { - 'image': FileCategory._image_validator, - 'document': FileCategory._document_validator, - 'pdf': FileCategory._pdf_validator, - 'spreadsheet': FileCategory._spreadsheet_validator, - 'presentation': FileCategory._presentation_validator, - 'audio': FileCategory._audio_validator, - 'video': FileCategory._video_validator, - 'folder': FileCategory._folder_validator, - 'paper': FileCategory._paper_validator, - 'others': FileCategory._others_validator, - 'other': FileCategory._other_validator, + "image": FileCategory._image_validator, + "document": FileCategory._document_validator, + "pdf": FileCategory._pdf_validator, + "spreadsheet": FileCategory._spreadsheet_validator, + "presentation": FileCategory._presentation_validator, + "audio": FileCategory._audio_validator, + "video": FileCategory._video_validator, + "folder": FileCategory._folder_validator, + "paper": FileCategory._paper_validator, + "others": FileCategory._others_validator, + "other": FileCategory._other_validator, } -FileCategory.image = FileCategory('image') -FileCategory.document = FileCategory('document') -FileCategory.pdf = FileCategory('pdf') -FileCategory.spreadsheet = FileCategory('spreadsheet') -FileCategory.presentation = FileCategory('presentation') -FileCategory.audio = FileCategory('audio') -FileCategory.video = FileCategory('video') -FileCategory.folder = FileCategory('folder') -FileCategory.paper = FileCategory('paper') -FileCategory.others = FileCategory('others') -FileCategory.other = FileCategory('other') +FileCategory.image = FileCategory("image") +FileCategory.document = FileCategory("document") +FileCategory.pdf = FileCategory("pdf") +FileCategory.spreadsheet = FileCategory("spreadsheet") +FileCategory.presentation = FileCategory("presentation") +FileCategory.audio = FileCategory("audio") +FileCategory.video = FileCategory("video") +FileCategory.folder = FileCategory("folder") +FileCategory.paper = FileCategory("paper") +FileCategory.others = FileCategory("others") +FileCategory.other = FileCategory("other") FileLock.content.validator = FileLockContent_validator -FileLock._all_field_names_ = set(['content']) -FileLock._all_fields_ = [('content', FileLock.content.validator)] +FileLock._all_field_names_ = set(["content"]) +FileLock._all_fields_ = [("content", FileLock.content.validator)] FileLockContent._unlocked_validator = bv.Void() FileLockContent._single_user_validator = SingleUserLock_validator FileLockContent._other_validator = bv.Void() FileLockContent._tagmap = { - 'unlocked': FileLockContent._unlocked_validator, - 'single_user': FileLockContent._single_user_validator, - 'other': FileLockContent._other_validator, + "unlocked": FileLockContent._unlocked_validator, + "single_user": FileLockContent._single_user_validator, + "other": FileLockContent._other_validator, } -FileLockContent.unlocked = FileLockContent('unlocked') -FileLockContent.other = FileLockContent('other') +FileLockContent.unlocked = FileLockContent("unlocked") +FileLockContent.other = FileLockContent("other") FileLockMetadata.is_lockholder.validator = bv.Nullable(bv.Boolean()) FileLockMetadata.lockholder_name.validator = bv.Nullable(bv.String()) FileLockMetadata.lockholder_account_id.validator = bv.Nullable(users_common.AccountId_validator) FileLockMetadata.created.validator = bv.Nullable(common.DropboxTimestamp_validator) -FileLockMetadata._all_field_names_ = set([ - 'is_lockholder', - 'lockholder_name', - 'lockholder_account_id', - 'created', -]) +FileLockMetadata._all_field_names_ = set( + [ + "is_lockholder", + "lockholder_name", + "lockholder_account_id", + "created", + ] +) FileLockMetadata._all_fields_ = [ - ('is_lockholder', FileLockMetadata.is_lockholder.validator), - ('lockholder_name', FileLockMetadata.lockholder_name.validator), - ('lockholder_account_id', FileLockMetadata.lockholder_account_id.validator), - ('created', FileLockMetadata.created.validator), + ("is_lockholder", FileLockMetadata.is_lockholder.validator), + ("lockholder_name", FileLockMetadata.lockholder_name.validator), + ("lockholder_account_id", FileLockMetadata.lockholder_account_id.validator), + ("created", FileLockMetadata.created.validator), ] FileMetadata.id.validator = Id_validator @@ -12430,92 +13074,104 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileMetadata.sharing_info.validator = bv.Nullable(FileSharingInfo_validator) FileMetadata.is_downloadable.validator = bv.Boolean() FileMetadata.export_info.validator = bv.Nullable(ExportInfo_validator) -FileMetadata.property_groups.validator = bv.Nullable(bv.List(file_properties.PropertyGroup_validator)) +FileMetadata.property_groups.validator = bv.Nullable( + bv.List(file_properties.PropertyGroup_validator) +) FileMetadata.has_explicit_shared_members.validator = bv.Nullable(bv.Boolean()) FileMetadata.content_hash.validator = bv.Nullable(Sha256HexHash_validator) FileMetadata.file_lock_info.validator = bv.Nullable(FileLockMetadata_validator) FileMetadata.is_restorable.validator = bv.Nullable(bv.Boolean()) -FileMetadata._field_names_ = set([ - 'id', - 'client_modified', - 'server_modified', - 'rev', - 'size', - 'media_info', - 'symlink_info', - 'sharing_info', - 'is_downloadable', - 'export_info', - 'property_groups', - 'has_explicit_shared_members', - 'content_hash', - 'file_lock_info', - 'is_restorable', -]) +FileMetadata._field_names_ = set( + [ + "id", + "client_modified", + "server_modified", + "rev", + "size", + "media_info", + "symlink_info", + "sharing_info", + "is_downloadable", + "export_info", + "property_groups", + "has_explicit_shared_members", + "content_hash", + "file_lock_info", + "is_restorable", + ] +) FileMetadata._all_field_names_ = Metadata._all_field_names_.union(FileMetadata._field_names_) FileMetadata._fields_ = [ - ('id', FileMetadata.id.validator), - ('client_modified', FileMetadata.client_modified.validator), - ('server_modified', FileMetadata.server_modified.validator), - ('rev', FileMetadata.rev.validator), - ('size', FileMetadata.size.validator), - ('media_info', FileMetadata.media_info.validator), - ('symlink_info', FileMetadata.symlink_info.validator), - ('sharing_info', FileMetadata.sharing_info.validator), - ('is_downloadable', FileMetadata.is_downloadable.validator), - ('export_info', FileMetadata.export_info.validator), - ('property_groups', FileMetadata.property_groups.validator), - ('has_explicit_shared_members', FileMetadata.has_explicit_shared_members.validator), - ('content_hash', FileMetadata.content_hash.validator), - ('file_lock_info', FileMetadata.file_lock_info.validator), - ('is_restorable', FileMetadata.is_restorable.validator), + ("id", FileMetadata.id.validator), + ("client_modified", FileMetadata.client_modified.validator), + ("server_modified", FileMetadata.server_modified.validator), + ("rev", FileMetadata.rev.validator), + ("size", FileMetadata.size.validator), + ("media_info", FileMetadata.media_info.validator), + ("symlink_info", FileMetadata.symlink_info.validator), + ("sharing_info", FileMetadata.sharing_info.validator), + ("is_downloadable", FileMetadata.is_downloadable.validator), + ("export_info", FileMetadata.export_info.validator), + ("property_groups", FileMetadata.property_groups.validator), + ("has_explicit_shared_members", FileMetadata.has_explicit_shared_members.validator), + ("content_hash", FileMetadata.content_hash.validator), + ("file_lock_info", FileMetadata.file_lock_info.validator), + ("is_restorable", FileMetadata.is_restorable.validator), ] FileMetadata._all_fields_ = Metadata._all_fields_ + FileMetadata._fields_ SharingInfo.read_only.validator = bv.Boolean() -SharingInfo._all_field_names_ = set(['read_only']) -SharingInfo._all_fields_ = [('read_only', SharingInfo.read_only.validator)] +SharingInfo._all_field_names_ = set(["read_only"]) +SharingInfo._all_fields_ = [("read_only", SharingInfo.read_only.validator)] FileSharingInfo.parent_shared_folder_id.validator = common.SharedFolderId_validator FileSharingInfo.modified_by.validator = bv.Nullable(users_common.AccountId_validator) -FileSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union(set([ - 'parent_shared_folder_id', - 'modified_by', -])) +FileSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union( + set( + [ + "parent_shared_folder_id", + "modified_by", + ] + ) +) FileSharingInfo._all_fields_ = SharingInfo._all_fields_ + [ - ('parent_shared_folder_id', FileSharingInfo.parent_shared_folder_id.validator), - ('modified_by', FileSharingInfo.modified_by.validator), + ("parent_shared_folder_id", FileSharingInfo.parent_shared_folder_id.validator), + ("modified_by", FileSharingInfo.modified_by.validator), ] FileStatus._active_validator = bv.Void() FileStatus._deleted_validator = bv.Void() FileStatus._other_validator = bv.Void() FileStatus._tagmap = { - 'active': FileStatus._active_validator, - 'deleted': FileStatus._deleted_validator, - 'other': FileStatus._other_validator, + "active": FileStatus._active_validator, + "deleted": FileStatus._deleted_validator, + "other": FileStatus._other_validator, } -FileStatus.active = FileStatus('active') -FileStatus.deleted = FileStatus('deleted') -FileStatus.other = FileStatus('other') +FileStatus.active = FileStatus("active") +FileStatus.deleted = FileStatus("deleted") +FileStatus.other = FileStatus("other") FolderMetadata.id.validator = Id_validator FolderMetadata.shared_folder_id.validator = bv.Nullable(common.SharedFolderId_validator) FolderMetadata.sharing_info.validator = bv.Nullable(FolderSharingInfo_validator) -FolderMetadata.property_groups.validator = bv.Nullable(bv.List(file_properties.PropertyGroup_validator)) -FolderMetadata._field_names_ = set([ - 'id', - 'shared_folder_id', - 'sharing_info', - 'property_groups', -]) +FolderMetadata.property_groups.validator = bv.Nullable( + bv.List(file_properties.PropertyGroup_validator) +) +FolderMetadata._field_names_ = set( + [ + "id", + "shared_folder_id", + "sharing_info", + "property_groups", + ] +) FolderMetadata._all_field_names_ = Metadata._all_field_names_.union(FolderMetadata._field_names_) FolderMetadata._fields_ = [ - ('id', FolderMetadata.id.validator), - ('shared_folder_id', FolderMetadata.shared_folder_id.validator), - ('sharing_info', FolderMetadata.sharing_info.validator), - ('property_groups', FolderMetadata.property_groups.validator), + ("id", FolderMetadata.id.validator), + ("shared_folder_id", FolderMetadata.shared_folder_id.validator), + ("sharing_info", FolderMetadata.sharing_info.validator), + ("property_groups", FolderMetadata.property_groups.validator), ] FolderMetadata._all_fields_ = Metadata._all_fields_ + FolderMetadata._fields_ @@ -12523,57 +13179,63 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FolderSharingInfo.shared_folder_id.validator = bv.Nullable(common.SharedFolderId_validator) FolderSharingInfo.traverse_only.validator = bv.Boolean() FolderSharingInfo.no_access.validator = bv.Boolean() -FolderSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union(set([ - 'parent_shared_folder_id', - 'shared_folder_id', - 'traverse_only', - 'no_access', -])) +FolderSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union( + set( + [ + "parent_shared_folder_id", + "shared_folder_id", + "traverse_only", + "no_access", + ] + ) +) FolderSharingInfo._all_fields_ = SharingInfo._all_fields_ + [ - ('parent_shared_folder_id', FolderSharingInfo.parent_shared_folder_id.validator), - ('shared_folder_id', FolderSharingInfo.shared_folder_id.validator), - ('traverse_only', FolderSharingInfo.traverse_only.validator), - ('no_access', FolderSharingInfo.no_access.validator), + ("parent_shared_folder_id", FolderSharingInfo.parent_shared_folder_id.validator), + ("shared_folder_id", FolderSharingInfo.shared_folder_id.validator), + ("traverse_only", FolderSharingInfo.traverse_only.validator), + ("no_access", FolderSharingInfo.no_access.validator), ] GetCopyReferenceArg.path.validator = ReadPath_validator -GetCopyReferenceArg._all_field_names_ = set(['path']) -GetCopyReferenceArg._all_fields_ = [('path', GetCopyReferenceArg.path.validator)] +GetCopyReferenceArg._all_field_names_ = set(["path"]) +GetCopyReferenceArg._all_fields_ = [("path", GetCopyReferenceArg.path.validator)] GetCopyReferenceError._path_validator = LookupError_validator GetCopyReferenceError._other_validator = bv.Void() GetCopyReferenceError._tagmap = { - 'path': GetCopyReferenceError._path_validator, - 'other': GetCopyReferenceError._other_validator, + "path": GetCopyReferenceError._path_validator, + "other": GetCopyReferenceError._other_validator, } -GetCopyReferenceError.other = GetCopyReferenceError('other') +GetCopyReferenceError.other = GetCopyReferenceError("other") GetCopyReferenceResult.metadata.validator = Metadata_validator GetCopyReferenceResult.copy_reference.validator = bv.String() GetCopyReferenceResult.expires.validator = common.DropboxTimestamp_validator -GetCopyReferenceResult._all_field_names_ = set([ - 'metadata', - 'copy_reference', - 'expires', -]) +GetCopyReferenceResult._all_field_names_ = set( + [ + "metadata", + "copy_reference", + "expires", + ] +) GetCopyReferenceResult._all_fields_ = [ - ('metadata', GetCopyReferenceResult.metadata.validator), - ('copy_reference', GetCopyReferenceResult.copy_reference.validator), - ('expires', GetCopyReferenceResult.expires.validator), + ("metadata", GetCopyReferenceResult.metadata.validator), + ("copy_reference", GetCopyReferenceResult.copy_reference.validator), + ("expires", GetCopyReferenceResult.expires.validator), ] GetTagsArg.paths.validator = bv.List(Path_validator) -GetTagsArg._all_field_names_ = set(['paths']) -GetTagsArg._all_fields_ = [('paths', GetTagsArg.paths.validator)] +GetTagsArg._all_field_names_ = set(["paths"]) +GetTagsArg._all_fields_ = [("paths", GetTagsArg.paths.validator)] GetTagsResult.paths_to_tags.validator = bv.List(PathToTags_validator) -GetTagsResult._all_field_names_ = set(['paths_to_tags']) -GetTagsResult._all_fields_ = [('paths_to_tags', GetTagsResult.paths_to_tags.validator)] +GetTagsResult._all_field_names_ = set(["paths_to_tags"]) +GetTagsResult._all_fields_ = [("paths_to_tags", GetTagsResult.paths_to_tags.validator)] GetTemporaryLinkArg.path.validator = ReadPath_validator -GetTemporaryLinkArg._all_field_names_ = set(['path']) -GetTemporaryLinkArg._all_fields_ = [('path', GetTemporaryLinkArg.path.validator)] +GetTemporaryLinkArg._all_field_names_ = set(["path"]) +GetTemporaryLinkArg._all_fields_ = [("path", GetTemporaryLinkArg.path.validator)] GetTemporaryLinkError._path_validator = LookupError_validator GetTemporaryLinkError._email_not_verified_validator = bv.Void() @@ -12581,104 +13243,114 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetTemporaryLinkError._not_allowed_validator = bv.Void() GetTemporaryLinkError._other_validator = bv.Void() GetTemporaryLinkError._tagmap = { - 'path': GetTemporaryLinkError._path_validator, - 'email_not_verified': GetTemporaryLinkError._email_not_verified_validator, - 'unsupported_file': GetTemporaryLinkError._unsupported_file_validator, - 'not_allowed': GetTemporaryLinkError._not_allowed_validator, - 'other': GetTemporaryLinkError._other_validator, + "path": GetTemporaryLinkError._path_validator, + "email_not_verified": GetTemporaryLinkError._email_not_verified_validator, + "unsupported_file": GetTemporaryLinkError._unsupported_file_validator, + "not_allowed": GetTemporaryLinkError._not_allowed_validator, + "other": GetTemporaryLinkError._other_validator, } -GetTemporaryLinkError.email_not_verified = GetTemporaryLinkError('email_not_verified') -GetTemporaryLinkError.unsupported_file = GetTemporaryLinkError('unsupported_file') -GetTemporaryLinkError.not_allowed = GetTemporaryLinkError('not_allowed') -GetTemporaryLinkError.other = GetTemporaryLinkError('other') +GetTemporaryLinkError.email_not_verified = GetTemporaryLinkError("email_not_verified") +GetTemporaryLinkError.unsupported_file = GetTemporaryLinkError("unsupported_file") +GetTemporaryLinkError.not_allowed = GetTemporaryLinkError("not_allowed") +GetTemporaryLinkError.other = GetTemporaryLinkError("other") GetTemporaryLinkResult.metadata.validator = FileMetadata_validator GetTemporaryLinkResult.link.validator = bv.String() -GetTemporaryLinkResult._all_field_names_ = set([ - 'metadata', - 'link', -]) +GetTemporaryLinkResult._all_field_names_ = set( + [ + "metadata", + "link", + ] +) GetTemporaryLinkResult._all_fields_ = [ - ('metadata', GetTemporaryLinkResult.metadata.validator), - ('link', GetTemporaryLinkResult.link.validator), + ("metadata", GetTemporaryLinkResult.metadata.validator), + ("link", GetTemporaryLinkResult.link.validator), ] GetTemporaryUploadLinkArg.commit_info.validator = CommitInfo_validator GetTemporaryUploadLinkArg.duration.validator = bv.Float64(min_value=60.0, max_value=14400.0) -GetTemporaryUploadLinkArg._all_field_names_ = set([ - 'commit_info', - 'duration', -]) +GetTemporaryUploadLinkArg._all_field_names_ = set( + [ + "commit_info", + "duration", + ] +) GetTemporaryUploadLinkArg._all_fields_ = [ - ('commit_info', GetTemporaryUploadLinkArg.commit_info.validator), - ('duration', GetTemporaryUploadLinkArg.duration.validator), + ("commit_info", GetTemporaryUploadLinkArg.commit_info.validator), + ("duration", GetTemporaryUploadLinkArg.duration.validator), ] GetTemporaryUploadLinkResult.link.validator = bv.String() -GetTemporaryUploadLinkResult._all_field_names_ = set(['link']) -GetTemporaryUploadLinkResult._all_fields_ = [('link', GetTemporaryUploadLinkResult.link.validator)] +GetTemporaryUploadLinkResult._all_field_names_ = set(["link"]) +GetTemporaryUploadLinkResult._all_fields_ = [("link", GetTemporaryUploadLinkResult.link.validator)] GetThumbnailBatchArg.entries.validator = bv.List(ThumbnailArg_validator) -GetThumbnailBatchArg._all_field_names_ = set(['entries']) -GetThumbnailBatchArg._all_fields_ = [('entries', GetThumbnailBatchArg.entries.validator)] +GetThumbnailBatchArg._all_field_names_ = set(["entries"]) +GetThumbnailBatchArg._all_fields_ = [("entries", GetThumbnailBatchArg.entries.validator)] GetThumbnailBatchError._too_many_files_validator = bv.Void() GetThumbnailBatchError._other_validator = bv.Void() GetThumbnailBatchError._tagmap = { - 'too_many_files': GetThumbnailBatchError._too_many_files_validator, - 'other': GetThumbnailBatchError._other_validator, + "too_many_files": GetThumbnailBatchError._too_many_files_validator, + "other": GetThumbnailBatchError._other_validator, } -GetThumbnailBatchError.too_many_files = GetThumbnailBatchError('too_many_files') -GetThumbnailBatchError.other = GetThumbnailBatchError('other') +GetThumbnailBatchError.too_many_files = GetThumbnailBatchError("too_many_files") +GetThumbnailBatchError.other = GetThumbnailBatchError("other") GetThumbnailBatchResult.entries.validator = bv.List(GetThumbnailBatchResultEntry_validator) -GetThumbnailBatchResult._all_field_names_ = set(['entries']) -GetThumbnailBatchResult._all_fields_ = [('entries', GetThumbnailBatchResult.entries.validator)] +GetThumbnailBatchResult._all_field_names_ = set(["entries"]) +GetThumbnailBatchResult._all_fields_ = [("entries", GetThumbnailBatchResult.entries.validator)] GetThumbnailBatchResultData.metadata.validator = FileMetadata_validator GetThumbnailBatchResultData.thumbnail.validator = bv.String() -GetThumbnailBatchResultData._all_field_names_ = set([ - 'metadata', - 'thumbnail', -]) +GetThumbnailBatchResultData._all_field_names_ = set( + [ + "metadata", + "thumbnail", + ] +) GetThumbnailBatchResultData._all_fields_ = [ - ('metadata', GetThumbnailBatchResultData.metadata.validator), - ('thumbnail', GetThumbnailBatchResultData.thumbnail.validator), + ("metadata", GetThumbnailBatchResultData.metadata.validator), + ("thumbnail", GetThumbnailBatchResultData.thumbnail.validator), ] GetThumbnailBatchResultEntry._success_validator = GetThumbnailBatchResultData_validator GetThumbnailBatchResultEntry._failure_validator = ThumbnailError_validator GetThumbnailBatchResultEntry._other_validator = bv.Void() GetThumbnailBatchResultEntry._tagmap = { - 'success': GetThumbnailBatchResultEntry._success_validator, - 'failure': GetThumbnailBatchResultEntry._failure_validator, - 'other': GetThumbnailBatchResultEntry._other_validator, + "success": GetThumbnailBatchResultEntry._success_validator, + "failure": GetThumbnailBatchResultEntry._failure_validator, + "other": GetThumbnailBatchResultEntry._other_validator, } -GetThumbnailBatchResultEntry.other = GetThumbnailBatchResultEntry('other') +GetThumbnailBatchResultEntry.other = GetThumbnailBatchResultEntry("other") GpsCoordinates.latitude.validator = bv.Float64() GpsCoordinates.longitude.validator = bv.Float64() -GpsCoordinates._all_field_names_ = set([ - 'latitude', - 'longitude', -]) +GpsCoordinates._all_field_names_ = set( + [ + "latitude", + "longitude", + ] +) GpsCoordinates._all_fields_ = [ - ('latitude', GpsCoordinates.latitude.validator), - ('longitude', GpsCoordinates.longitude.validator), + ("latitude", GpsCoordinates.latitude.validator), + ("longitude", GpsCoordinates.longitude.validator), ] HighlightSpan.highlight_str.validator = bv.String() HighlightSpan.is_highlighted.validator = bv.Boolean() -HighlightSpan._all_field_names_ = set([ - 'highlight_str', - 'is_highlighted', -]) +HighlightSpan._all_field_names_ = set( + [ + "highlight_str", + "is_highlighted", + ] +) HighlightSpan._all_fields_ = [ - ('highlight_str', HighlightSpan.highlight_str.validator), - ('is_highlighted', HighlightSpan.is_highlighted.validator), + ("highlight_str", HighlightSpan.highlight_str.validator), + ("is_highlighted", HighlightSpan.is_highlighted.validator), ] ImportFormat._html_validator = bv.Void() @@ -12686,16 +13358,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ImportFormat._plain_text_validator = bv.Void() ImportFormat._other_validator = bv.Void() ImportFormat._tagmap = { - 'html': ImportFormat._html_validator, - 'markdown': ImportFormat._markdown_validator, - 'plain_text': ImportFormat._plain_text_validator, - 'other': ImportFormat._other_validator, + "html": ImportFormat._html_validator, + "markdown": ImportFormat._markdown_validator, + "plain_text": ImportFormat._plain_text_validator, + "other": ImportFormat._other_validator, } -ImportFormat.html = ImportFormat('html') -ImportFormat.markdown = ImportFormat('markdown') -ImportFormat.plain_text = ImportFormat('plain_text') -ImportFormat.other = ImportFormat('other') +ImportFormat.html = ImportFormat("html") +ImportFormat.markdown = ImportFormat("markdown") +ImportFormat.plain_text = ImportFormat("plain_text") +ImportFormat.other = ImportFormat("other") ListFolderArg.path.validator = PathROrId_validator ListFolderArg.recursive.validator = bv.Boolean() @@ -12705,111 +13377,129 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFolderArg.include_mounted_folders.validator = bv.Boolean() ListFolderArg.limit.validator = bv.Nullable(bv.UInt32(min_value=1, max_value=2000)) ListFolderArg.shared_link.validator = bv.Nullable(SharedLink_validator) -ListFolderArg.include_property_groups.validator = bv.Nullable(file_properties.TemplateFilterBase_validator) +ListFolderArg.include_property_groups.validator = bv.Nullable( + file_properties.TemplateFilterBase_validator +) ListFolderArg.include_non_downloadable_files.validator = bv.Boolean() ListFolderArg.include_restorable_info.validator = bv.Boolean() -ListFolderArg._all_field_names_ = set([ - 'path', - 'recursive', - 'include_media_info', - 'include_deleted', - 'include_has_explicit_shared_members', - 'include_mounted_folders', - 'limit', - 'shared_link', - 'include_property_groups', - 'include_non_downloadable_files', - 'include_restorable_info', -]) +ListFolderArg._all_field_names_ = set( + [ + "path", + "recursive", + "include_media_info", + "include_deleted", + "include_has_explicit_shared_members", + "include_mounted_folders", + "limit", + "shared_link", + "include_property_groups", + "include_non_downloadable_files", + "include_restorable_info", + ] +) ListFolderArg._all_fields_ = [ - ('path', ListFolderArg.path.validator), - ('recursive', ListFolderArg.recursive.validator), - ('include_media_info', ListFolderArg.include_media_info.validator), - ('include_deleted', ListFolderArg.include_deleted.validator), - ('include_has_explicit_shared_members', ListFolderArg.include_has_explicit_shared_members.validator), - ('include_mounted_folders', ListFolderArg.include_mounted_folders.validator), - ('limit', ListFolderArg.limit.validator), - ('shared_link', ListFolderArg.shared_link.validator), - ('include_property_groups', ListFolderArg.include_property_groups.validator), - ('include_non_downloadable_files', ListFolderArg.include_non_downloadable_files.validator), - ('include_restorable_info', ListFolderArg.include_restorable_info.validator), + ("path", ListFolderArg.path.validator), + ("recursive", ListFolderArg.recursive.validator), + ("include_media_info", ListFolderArg.include_media_info.validator), + ("include_deleted", ListFolderArg.include_deleted.validator), + ( + "include_has_explicit_shared_members", + ListFolderArg.include_has_explicit_shared_members.validator, + ), + ("include_mounted_folders", ListFolderArg.include_mounted_folders.validator), + ("limit", ListFolderArg.limit.validator), + ("shared_link", ListFolderArg.shared_link.validator), + ("include_property_groups", ListFolderArg.include_property_groups.validator), + ( + "include_non_downloadable_files", + ListFolderArg.include_non_downloadable_files.validator, + ), + ("include_restorable_info", ListFolderArg.include_restorable_info.validator), ] ListFolderContinueArg.cursor.validator = ListFolderCursor_validator -ListFolderContinueArg._all_field_names_ = set(['cursor']) -ListFolderContinueArg._all_fields_ = [('cursor', ListFolderContinueArg.cursor.validator)] +ListFolderContinueArg._all_field_names_ = set(["cursor"]) +ListFolderContinueArg._all_fields_ = [("cursor", ListFolderContinueArg.cursor.validator)] ListFolderContinueError._path_validator = LookupError_validator ListFolderContinueError._reset_validator = bv.Void() ListFolderContinueError._other_validator = bv.Void() ListFolderContinueError._tagmap = { - 'path': ListFolderContinueError._path_validator, - 'reset': ListFolderContinueError._reset_validator, - 'other': ListFolderContinueError._other_validator, + "path": ListFolderContinueError._path_validator, + "reset": ListFolderContinueError._reset_validator, + "other": ListFolderContinueError._other_validator, } -ListFolderContinueError.reset = ListFolderContinueError('reset') -ListFolderContinueError.other = ListFolderContinueError('other') +ListFolderContinueError.reset = ListFolderContinueError("reset") +ListFolderContinueError.other = ListFolderContinueError("other") ListFolderError._path_validator = LookupError_validator ListFolderError._template_error_validator = file_properties.TemplateError_validator ListFolderError._other_validator = bv.Void() ListFolderError._tagmap = { - 'path': ListFolderError._path_validator, - 'template_error': ListFolderError._template_error_validator, - 'other': ListFolderError._other_validator, + "path": ListFolderError._path_validator, + "template_error": ListFolderError._template_error_validator, + "other": ListFolderError._other_validator, } -ListFolderError.other = ListFolderError('other') +ListFolderError.other = ListFolderError("other") ListFolderGetLatestCursorResult.cursor.validator = ListFolderCursor_validator -ListFolderGetLatestCursorResult._all_field_names_ = set(['cursor']) -ListFolderGetLatestCursorResult._all_fields_ = [('cursor', ListFolderGetLatestCursorResult.cursor.validator)] +ListFolderGetLatestCursorResult._all_field_names_ = set(["cursor"]) +ListFolderGetLatestCursorResult._all_fields_ = [ + ("cursor", ListFolderGetLatestCursorResult.cursor.validator) +] ListFolderLongpollArg.cursor.validator = ListFolderCursor_validator ListFolderLongpollArg.timeout.validator = bv.UInt64(min_value=30, max_value=480) -ListFolderLongpollArg._all_field_names_ = set([ - 'cursor', - 'timeout', -]) +ListFolderLongpollArg._all_field_names_ = set( + [ + "cursor", + "timeout", + ] +) ListFolderLongpollArg._all_fields_ = [ - ('cursor', ListFolderLongpollArg.cursor.validator), - ('timeout', ListFolderLongpollArg.timeout.validator), + ("cursor", ListFolderLongpollArg.cursor.validator), + ("timeout", ListFolderLongpollArg.timeout.validator), ] ListFolderLongpollError._reset_validator = bv.Void() ListFolderLongpollError._other_validator = bv.Void() ListFolderLongpollError._tagmap = { - 'reset': ListFolderLongpollError._reset_validator, - 'other': ListFolderLongpollError._other_validator, + "reset": ListFolderLongpollError._reset_validator, + "other": ListFolderLongpollError._other_validator, } -ListFolderLongpollError.reset = ListFolderLongpollError('reset') -ListFolderLongpollError.other = ListFolderLongpollError('other') +ListFolderLongpollError.reset = ListFolderLongpollError("reset") +ListFolderLongpollError.other = ListFolderLongpollError("other") ListFolderLongpollResult.changes.validator = bv.Boolean() ListFolderLongpollResult.backoff.validator = bv.Nullable(bv.UInt64()) -ListFolderLongpollResult._all_field_names_ = set([ - 'changes', - 'backoff', -]) +ListFolderLongpollResult._all_field_names_ = set( + [ + "changes", + "backoff", + ] +) ListFolderLongpollResult._all_fields_ = [ - ('changes', ListFolderLongpollResult.changes.validator), - ('backoff', ListFolderLongpollResult.backoff.validator), + ("changes", ListFolderLongpollResult.changes.validator), + ("backoff", ListFolderLongpollResult.backoff.validator), ] ListFolderResult.entries.validator = bv.List(Metadata_validator) ListFolderResult.cursor.validator = ListFolderCursor_validator ListFolderResult.has_more.validator = bv.Boolean() -ListFolderResult._all_field_names_ = set([ - 'entries', - 'cursor', - 'has_more', -]) +ListFolderResult._all_field_names_ = set( + [ + "entries", + "cursor", + "has_more", + ] +) ListFolderResult._all_fields_ = [ - ('entries', ListFolderResult.entries.validator), - ('cursor', ListFolderResult.cursor.validator), - ('has_more', ListFolderResult.has_more.validator), + ("entries", ListFolderResult.entries.validator), + ("cursor", ListFolderResult.cursor.validator), + ("has_more", ListFolderResult.has_more.validator), ] ListRevisionsArg.path.validator = PathOrId_validator @@ -12817,19 +13507,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListRevisionsArg.limit.validator = bv.UInt64(min_value=1, max_value=100) ListRevisionsArg.before_rev.validator = bv.Nullable(Rev_validator) ListRevisionsArg.include_restorable_info.validator = bv.Boolean() -ListRevisionsArg._all_field_names_ = set([ - 'path', - 'mode', - 'limit', - 'before_rev', - 'include_restorable_info', -]) +ListRevisionsArg._all_field_names_ = set( + [ + "path", + "mode", + "limit", + "before_rev", + "include_restorable_info", + ] +) ListRevisionsArg._all_fields_ = [ - ('path', ListRevisionsArg.path.validator), - ('mode', ListRevisionsArg.mode.validator), - ('limit', ListRevisionsArg.limit.validator), - ('before_rev', ListRevisionsArg.before_rev.validator), - ('include_restorable_info', ListRevisionsArg.include_restorable_info.validator), + ("path", ListRevisionsArg.path.validator), + ("mode", ListRevisionsArg.mode.validator), + ("limit", ListRevisionsArg.limit.validator), + ("before_rev", ListRevisionsArg.before_rev.validator), + ("include_restorable_info", ListRevisionsArg.include_restorable_info.validator), ] ListRevisionsError._path_validator = LookupError_validator @@ -12837,61 +13529,65 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListRevisionsError._before_rev_not_supported_validator = bv.Void() ListRevisionsError._other_validator = bv.Void() ListRevisionsError._tagmap = { - 'path': ListRevisionsError._path_validator, - 'invalid_before_rev': ListRevisionsError._invalid_before_rev_validator, - 'before_rev_not_supported': ListRevisionsError._before_rev_not_supported_validator, - 'other': ListRevisionsError._other_validator, + "path": ListRevisionsError._path_validator, + "invalid_before_rev": ListRevisionsError._invalid_before_rev_validator, + "before_rev_not_supported": ListRevisionsError._before_rev_not_supported_validator, + "other": ListRevisionsError._other_validator, } -ListRevisionsError.invalid_before_rev = ListRevisionsError('invalid_before_rev') -ListRevisionsError.before_rev_not_supported = ListRevisionsError('before_rev_not_supported') -ListRevisionsError.other = ListRevisionsError('other') +ListRevisionsError.invalid_before_rev = ListRevisionsError("invalid_before_rev") +ListRevisionsError.before_rev_not_supported = ListRevisionsError("before_rev_not_supported") +ListRevisionsError.other = ListRevisionsError("other") ListRevisionsMode._path_validator = bv.Void() ListRevisionsMode._id_validator = bv.Void() ListRevisionsMode._other_validator = bv.Void() ListRevisionsMode._tagmap = { - 'path': ListRevisionsMode._path_validator, - 'id': ListRevisionsMode._id_validator, - 'other': ListRevisionsMode._other_validator, + "path": ListRevisionsMode._path_validator, + "id": ListRevisionsMode._id_validator, + "other": ListRevisionsMode._other_validator, } -ListRevisionsMode.path = ListRevisionsMode('path') -ListRevisionsMode.id = ListRevisionsMode('id') -ListRevisionsMode.other = ListRevisionsMode('other') +ListRevisionsMode.path = ListRevisionsMode("path") +ListRevisionsMode.id = ListRevisionsMode("id") +ListRevisionsMode.other = ListRevisionsMode("other") ListRevisionsResult.is_deleted.validator = bv.Boolean() ListRevisionsResult.server_deleted.validator = bv.Nullable(common.DropboxTimestamp_validator) ListRevisionsResult.entries.validator = bv.List(FileMetadata_validator) ListRevisionsResult.has_more.validator = bv.Boolean() -ListRevisionsResult._all_field_names_ = set([ - 'is_deleted', - 'server_deleted', - 'entries', - 'has_more', -]) +ListRevisionsResult._all_field_names_ = set( + [ + "is_deleted", + "server_deleted", + "entries", + "has_more", + ] +) ListRevisionsResult._all_fields_ = [ - ('is_deleted', ListRevisionsResult.is_deleted.validator), - ('server_deleted', ListRevisionsResult.server_deleted.validator), - ('entries', ListRevisionsResult.entries.validator), - ('has_more', ListRevisionsResult.has_more.validator), + ("is_deleted", ListRevisionsResult.is_deleted.validator), + ("server_deleted", ListRevisionsResult.server_deleted.validator), + ("entries", ListRevisionsResult.entries.validator), + ("has_more", ListRevisionsResult.has_more.validator), ] LockConflictError.lock.validator = FileLock_validator -LockConflictError._all_field_names_ = set(['lock']) -LockConflictError._all_fields_ = [('lock', LockConflictError.lock.validator)] +LockConflictError._all_field_names_ = set(["lock"]) +LockConflictError._all_fields_ = [("lock", LockConflictError.lock.validator)] LockFileArg.path.validator = WritePathOrId_validator -LockFileArg._all_field_names_ = set(['path']) -LockFileArg._all_fields_ = [('path', LockFileArg.path.validator)] +LockFileArg._all_field_names_ = set(["path"]) +LockFileArg._all_fields_ = [("path", LockFileArg.path.validator)] LockFileBatchArg.entries.validator = bv.List(LockFileArg_validator) -LockFileBatchArg._all_field_names_ = set(['entries']) -LockFileBatchArg._all_fields_ = [('entries', LockFileBatchArg.entries.validator)] +LockFileBatchArg._all_field_names_ = set(["entries"]) +LockFileBatchArg._all_fields_ = [("entries", LockFileBatchArg.entries.validator)] LockFileBatchResult.entries.validator = bv.List(LockFileResultEntry_validator) -LockFileBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) -LockFileBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', LockFileBatchResult.entries.validator)] +LockFileBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) +LockFileBatchResult._all_fields_ = FileOpsResult._all_fields_ + [ + ("entries", LockFileBatchResult.entries.validator) +] LockFileError._path_lookup_validator = LookupError_validator LockFileError._too_many_write_operations_validator = bv.Void() @@ -12903,41 +13599,43 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LockFileError._internal_error_validator = bv.Void() LockFileError._other_validator = bv.Void() LockFileError._tagmap = { - 'path_lookup': LockFileError._path_lookup_validator, - 'too_many_write_operations': LockFileError._too_many_write_operations_validator, - 'too_many_files': LockFileError._too_many_files_validator, - 'no_write_permission': LockFileError._no_write_permission_validator, - 'cannot_be_locked': LockFileError._cannot_be_locked_validator, - 'file_not_shared': LockFileError._file_not_shared_validator, - 'lock_conflict': LockFileError._lock_conflict_validator, - 'internal_error': LockFileError._internal_error_validator, - 'other': LockFileError._other_validator, + "path_lookup": LockFileError._path_lookup_validator, + "too_many_write_operations": LockFileError._too_many_write_operations_validator, + "too_many_files": LockFileError._too_many_files_validator, + "no_write_permission": LockFileError._no_write_permission_validator, + "cannot_be_locked": LockFileError._cannot_be_locked_validator, + "file_not_shared": LockFileError._file_not_shared_validator, + "lock_conflict": LockFileError._lock_conflict_validator, + "internal_error": LockFileError._internal_error_validator, + "other": LockFileError._other_validator, } -LockFileError.too_many_write_operations = LockFileError('too_many_write_operations') -LockFileError.too_many_files = LockFileError('too_many_files') -LockFileError.no_write_permission = LockFileError('no_write_permission') -LockFileError.cannot_be_locked = LockFileError('cannot_be_locked') -LockFileError.file_not_shared = LockFileError('file_not_shared') -LockFileError.internal_error = LockFileError('internal_error') -LockFileError.other = LockFileError('other') +LockFileError.too_many_write_operations = LockFileError("too_many_write_operations") +LockFileError.too_many_files = LockFileError("too_many_files") +LockFileError.no_write_permission = LockFileError("no_write_permission") +LockFileError.cannot_be_locked = LockFileError("cannot_be_locked") +LockFileError.file_not_shared = LockFileError("file_not_shared") +LockFileError.internal_error = LockFileError("internal_error") +LockFileError.other = LockFileError("other") LockFileResult.metadata.validator = Metadata_validator LockFileResult.lock.validator = FileLock_validator -LockFileResult._all_field_names_ = set([ - 'metadata', - 'lock', -]) +LockFileResult._all_field_names_ = set( + [ + "metadata", + "lock", + ] +) LockFileResult._all_fields_ = [ - ('metadata', LockFileResult.metadata.validator), - ('lock', LockFileResult.lock.validator), + ("metadata", LockFileResult.metadata.validator), + ("lock", LockFileResult.lock.validator), ] LockFileResultEntry._success_validator = LockFileResult_validator LockFileResultEntry._failure_validator = LockFileError_validator LockFileResultEntry._tagmap = { - 'success': LockFileResultEntry._success_validator, - 'failure': LockFileResultEntry._failure_validator, + "success": LockFileResultEntry._success_validator, + "failure": LockFileResultEntry._failure_validator, } LookupError._malformed_path_validator = MalformedPathError_validator @@ -12949,119 +13647,131 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LookupError._locked_validator = bv.Void() LookupError._other_validator = bv.Void() LookupError._tagmap = { - 'malformed_path': LookupError._malformed_path_validator, - 'not_found': LookupError._not_found_validator, - 'not_file': LookupError._not_file_validator, - 'not_folder': LookupError._not_folder_validator, - 'restricted_content': LookupError._restricted_content_validator, - 'unsupported_content_type': LookupError._unsupported_content_type_validator, - 'locked': LookupError._locked_validator, - 'other': LookupError._other_validator, + "malformed_path": LookupError._malformed_path_validator, + "not_found": LookupError._not_found_validator, + "not_file": LookupError._not_file_validator, + "not_folder": LookupError._not_folder_validator, + "restricted_content": LookupError._restricted_content_validator, + "unsupported_content_type": LookupError._unsupported_content_type_validator, + "locked": LookupError._locked_validator, + "other": LookupError._other_validator, } -LookupError.not_found = LookupError('not_found') -LookupError.not_file = LookupError('not_file') -LookupError.not_folder = LookupError('not_folder') -LookupError.restricted_content = LookupError('restricted_content') -LookupError.unsupported_content_type = LookupError('unsupported_content_type') -LookupError.locked = LookupError('locked') -LookupError.other = LookupError('other') +LookupError.not_found = LookupError("not_found") +LookupError.not_file = LookupError("not_file") +LookupError.not_folder = LookupError("not_folder") +LookupError.restricted_content = LookupError("restricted_content") +LookupError.unsupported_content_type = LookupError("unsupported_content_type") +LookupError.locked = LookupError("locked") +LookupError.other = LookupError("other") MediaInfo._pending_validator = bv.Void() MediaInfo._metadata_validator = MediaMetadata_validator MediaInfo._tagmap = { - 'pending': MediaInfo._pending_validator, - 'metadata': MediaInfo._metadata_validator, + "pending": MediaInfo._pending_validator, + "metadata": MediaInfo._metadata_validator, } -MediaInfo.pending = MediaInfo('pending') +MediaInfo.pending = MediaInfo("pending") MediaMetadata.dimensions.validator = bv.Nullable(Dimensions_validator) MediaMetadata.location.validator = bv.Nullable(GpsCoordinates_validator) MediaMetadata.time_taken.validator = bv.Nullable(common.DropboxTimestamp_validator) -MediaMetadata._field_names_ = set([ - 'dimensions', - 'location', - 'time_taken', -]) +MediaMetadata._field_names_ = set( + [ + "dimensions", + "location", + "time_taken", + ] +) MediaMetadata._all_field_names_ = MediaMetadata._field_names_ MediaMetadata._fields_ = [ - ('dimensions', MediaMetadata.dimensions.validator), - ('location', MediaMetadata.location.validator), - ('time_taken', MediaMetadata.time_taken.validator), + ("dimensions", MediaMetadata.dimensions.validator), + ("location", MediaMetadata.location.validator), + ("time_taken", MediaMetadata.time_taken.validator), ] MediaMetadata._all_fields_ = MediaMetadata._fields_ MediaMetadata._tag_to_subtype_ = { - ('photo',): PhotoMetadata_validator, - ('video',): VideoMetadata_validator, + ("photo",): PhotoMetadata_validator, + ("video",): VideoMetadata_validator, } MediaMetadata._pytype_to_tag_and_subtype_ = { - PhotoMetadata: (('photo',), PhotoMetadata_validator), - VideoMetadata: (('video',), VideoMetadata_validator), + PhotoMetadata: (("photo",), PhotoMetadata_validator), + VideoMetadata: (("video",), VideoMetadata_validator), } MediaMetadata._is_catch_all_ = False MetadataV2._metadata_validator = Metadata_validator MetadataV2._other_validator = bv.Void() MetadataV2._tagmap = { - 'metadata': MetadataV2._metadata_validator, - 'other': MetadataV2._other_validator, + "metadata": MetadataV2._metadata_validator, + "other": MetadataV2._other_validator, } -MetadataV2.other = MetadataV2('other') +MetadataV2.other = MetadataV2("other") MinimalFileLinkMetadata.url.validator = bv.String() MinimalFileLinkMetadata.id.validator = bv.Nullable(Id_validator) MinimalFileLinkMetadata.path.validator = bv.Nullable(bv.String()) MinimalFileLinkMetadata.rev.validator = Rev_validator -MinimalFileLinkMetadata._all_field_names_ = set([ - 'url', - 'id', - 'path', - 'rev', -]) +MinimalFileLinkMetadata._all_field_names_ = set( + [ + "url", + "id", + "path", + "rev", + ] +) MinimalFileLinkMetadata._all_fields_ = [ - ('url', MinimalFileLinkMetadata.url.validator), - ('id', MinimalFileLinkMetadata.id.validator), - ('path', MinimalFileLinkMetadata.path.validator), - ('rev', MinimalFileLinkMetadata.rev.validator), + ("url", MinimalFileLinkMetadata.url.validator), + ("id", MinimalFileLinkMetadata.id.validator), + ("path", MinimalFileLinkMetadata.path.validator), + ("rev", MinimalFileLinkMetadata.rev.validator), ] -RelocationBatchArgBase.entries.validator = bv.List(RelocationPath_validator, min_items=1, max_items=1000) +RelocationBatchArgBase.entries.validator = bv.List( + RelocationPath_validator, min_items=1, max_items=1000 +) RelocationBatchArgBase.autorename.validator = bv.Boolean() -RelocationBatchArgBase._all_field_names_ = set([ - 'entries', - 'autorename', -]) +RelocationBatchArgBase._all_field_names_ = set( + [ + "entries", + "autorename", + ] +) RelocationBatchArgBase._all_fields_ = [ - ('entries', RelocationBatchArgBase.entries.validator), - ('autorename', RelocationBatchArgBase.autorename.validator), + ("entries", RelocationBatchArgBase.entries.validator), + ("autorename", RelocationBatchArgBase.autorename.validator), ] MoveBatchArg.allow_ownership_transfer.validator = bv.Boolean() -MoveBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union(set(['allow_ownership_transfer'])) -MoveBatchArg._all_fields_ = RelocationBatchArgBase._all_fields_ + [('allow_ownership_transfer', MoveBatchArg.allow_ownership_transfer.validator)] +MoveBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union( + set(["allow_ownership_transfer"]) +) +MoveBatchArg._all_fields_ = RelocationBatchArgBase._all_fields_ + [ + ("allow_ownership_transfer", MoveBatchArg.allow_ownership_transfer.validator) +] MoveIntoFamilyError._is_shared_folder_validator = bv.Void() MoveIntoFamilyError._other_validator = bv.Void() MoveIntoFamilyError._tagmap = { - 'is_shared_folder': MoveIntoFamilyError._is_shared_folder_validator, - 'other': MoveIntoFamilyError._other_validator, + "is_shared_folder": MoveIntoFamilyError._is_shared_folder_validator, + "other": MoveIntoFamilyError._other_validator, } -MoveIntoFamilyError.is_shared_folder = MoveIntoFamilyError('is_shared_folder') -MoveIntoFamilyError.other = MoveIntoFamilyError('other') +MoveIntoFamilyError.is_shared_folder = MoveIntoFamilyError("is_shared_folder") +MoveIntoFamilyError.other = MoveIntoFamilyError("other") MoveIntoVaultError._is_shared_folder_validator = bv.Void() MoveIntoVaultError._other_validator = bv.Void() MoveIntoVaultError._tagmap = { - 'is_shared_folder': MoveIntoVaultError._is_shared_folder_validator, - 'other': MoveIntoVaultError._other_validator, + "is_shared_folder": MoveIntoVaultError._is_shared_folder_validator, + "other": MoveIntoVaultError._other_validator, } -MoveIntoVaultError.is_shared_folder = MoveIntoVaultError('is_shared_folder') -MoveIntoVaultError.other = MoveIntoVaultError('other') +MoveIntoVaultError.is_shared_folder = MoveIntoVaultError("is_shared_folder") +MoveIntoVaultError.other = MoveIntoVaultError("other") PaperContentError._insufficient_permissions_validator = bv.Void() PaperContentError._content_malformed_validator = bv.Void() @@ -13069,28 +13779,30 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperContentError._image_size_exceeded_validator = bv.Void() PaperContentError._other_validator = bv.Void() PaperContentError._tagmap = { - 'insufficient_permissions': PaperContentError._insufficient_permissions_validator, - 'content_malformed': PaperContentError._content_malformed_validator, - 'doc_length_exceeded': PaperContentError._doc_length_exceeded_validator, - 'image_size_exceeded': PaperContentError._image_size_exceeded_validator, - 'other': PaperContentError._other_validator, + "insufficient_permissions": PaperContentError._insufficient_permissions_validator, + "content_malformed": PaperContentError._content_malformed_validator, + "doc_length_exceeded": PaperContentError._doc_length_exceeded_validator, + "image_size_exceeded": PaperContentError._image_size_exceeded_validator, + "other": PaperContentError._other_validator, } -PaperContentError.insufficient_permissions = PaperContentError('insufficient_permissions') -PaperContentError.content_malformed = PaperContentError('content_malformed') -PaperContentError.doc_length_exceeded = PaperContentError('doc_length_exceeded') -PaperContentError.image_size_exceeded = PaperContentError('image_size_exceeded') -PaperContentError.other = PaperContentError('other') +PaperContentError.insufficient_permissions = PaperContentError("insufficient_permissions") +PaperContentError.content_malformed = PaperContentError("content_malformed") +PaperContentError.doc_length_exceeded = PaperContentError("doc_length_exceeded") +PaperContentError.image_size_exceeded = PaperContentError("image_size_exceeded") +PaperContentError.other = PaperContentError("other") PaperCreateArg.path.validator = Path_validator PaperCreateArg.import_format.validator = ImportFormat_validator -PaperCreateArg._all_field_names_ = set([ - 'path', - 'import_format', -]) +PaperCreateArg._all_field_names_ = set( + [ + "path", + "import_format", + ] +) PaperCreateArg._all_fields_ = [ - ('path', PaperCreateArg.path.validator), - ('import_format', PaperCreateArg.import_format.validator), + ("path", PaperCreateArg.path.validator), + ("import_format", PaperCreateArg.import_format.validator), ] PaperCreateError._invalid_path_validator = bv.Void() @@ -13098,33 +13810,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperCreateError._invalid_file_extension_validator = bv.Void() PaperCreateError._paper_disabled_validator = bv.Void() PaperCreateError._tagmap = { - 'invalid_path': PaperCreateError._invalid_path_validator, - 'email_unverified': PaperCreateError._email_unverified_validator, - 'invalid_file_extension': PaperCreateError._invalid_file_extension_validator, - 'paper_disabled': PaperCreateError._paper_disabled_validator, + "invalid_path": PaperCreateError._invalid_path_validator, + "email_unverified": PaperCreateError._email_unverified_validator, + "invalid_file_extension": PaperCreateError._invalid_file_extension_validator, + "paper_disabled": PaperCreateError._paper_disabled_validator, } PaperCreateError._tagmap.update(PaperContentError._tagmap) -PaperCreateError.invalid_path = PaperCreateError('invalid_path') -PaperCreateError.email_unverified = PaperCreateError('email_unverified') -PaperCreateError.invalid_file_extension = PaperCreateError('invalid_file_extension') -PaperCreateError.paper_disabled = PaperCreateError('paper_disabled') +PaperCreateError.invalid_path = PaperCreateError("invalid_path") +PaperCreateError.email_unverified = PaperCreateError("email_unverified") +PaperCreateError.invalid_file_extension = PaperCreateError("invalid_file_extension") +PaperCreateError.paper_disabled = PaperCreateError("paper_disabled") PaperCreateResult.url.validator = bv.String() PaperCreateResult.result_path.validator = bv.String() PaperCreateResult.file_id.validator = FileId_validator PaperCreateResult.paper_revision.validator = bv.Int64() -PaperCreateResult._all_field_names_ = set([ - 'url', - 'result_path', - 'file_id', - 'paper_revision', -]) +PaperCreateResult._all_field_names_ = set( + [ + "url", + "result_path", + "file_id", + "paper_revision", + ] +) PaperCreateResult._all_fields_ = [ - ('url', PaperCreateResult.url.validator), - ('result_path', PaperCreateResult.result_path.validator), - ('file_id', PaperCreateResult.file_id.validator), - ('paper_revision', PaperCreateResult.paper_revision.validator), + ("url", PaperCreateResult.url.validator), + ("result_path", PaperCreateResult.result_path.validator), + ("file_id", PaperCreateResult.file_id.validator), + ("paper_revision", PaperCreateResult.paper_revision.validator), ] PaperDocUpdatePolicy._update_validator = bv.Void() @@ -13133,34 +13847,36 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocUpdatePolicy._append_validator = bv.Void() PaperDocUpdatePolicy._other_validator = bv.Void() PaperDocUpdatePolicy._tagmap = { - 'update': PaperDocUpdatePolicy._update_validator, - 'overwrite': PaperDocUpdatePolicy._overwrite_validator, - 'prepend': PaperDocUpdatePolicy._prepend_validator, - 'append': PaperDocUpdatePolicy._append_validator, - 'other': PaperDocUpdatePolicy._other_validator, + "update": PaperDocUpdatePolicy._update_validator, + "overwrite": PaperDocUpdatePolicy._overwrite_validator, + "prepend": PaperDocUpdatePolicy._prepend_validator, + "append": PaperDocUpdatePolicy._append_validator, + "other": PaperDocUpdatePolicy._other_validator, } -PaperDocUpdatePolicy.update = PaperDocUpdatePolicy('update') -PaperDocUpdatePolicy.overwrite = PaperDocUpdatePolicy('overwrite') -PaperDocUpdatePolicy.prepend = PaperDocUpdatePolicy('prepend') -PaperDocUpdatePolicy.append = PaperDocUpdatePolicy('append') -PaperDocUpdatePolicy.other = PaperDocUpdatePolicy('other') +PaperDocUpdatePolicy.update = PaperDocUpdatePolicy("update") +PaperDocUpdatePolicy.overwrite = PaperDocUpdatePolicy("overwrite") +PaperDocUpdatePolicy.prepend = PaperDocUpdatePolicy("prepend") +PaperDocUpdatePolicy.append = PaperDocUpdatePolicy("append") +PaperDocUpdatePolicy.other = PaperDocUpdatePolicy("other") PaperUpdateArg.path.validator = WritePathOrId_validator PaperUpdateArg.import_format.validator = ImportFormat_validator PaperUpdateArg.doc_update_policy.validator = PaperDocUpdatePolicy_validator PaperUpdateArg.paper_revision.validator = bv.Nullable(bv.Int64()) -PaperUpdateArg._all_field_names_ = set([ - 'path', - 'import_format', - 'doc_update_policy', - 'paper_revision', -]) +PaperUpdateArg._all_field_names_ = set( + [ + "path", + "import_format", + "doc_update_policy", + "paper_revision", + ] +) PaperUpdateArg._all_fields_ = [ - ('path', PaperUpdateArg.path.validator), - ('import_format', PaperUpdateArg.import_format.validator), - ('doc_update_policy', PaperUpdateArg.doc_update_policy.validator), - ('paper_revision', PaperUpdateArg.paper_revision.validator), + ("path", PaperUpdateArg.path.validator), + ("import_format", PaperUpdateArg.import_format.validator), + ("doc_update_policy", PaperUpdateArg.doc_update_policy.validator), + ("paper_revision", PaperUpdateArg.paper_revision.validator), ] PaperUpdateError._path_validator = LookupError_validator @@ -13168,41 +13884,43 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperUpdateError._doc_archived_validator = bv.Void() PaperUpdateError._doc_deleted_validator = bv.Void() PaperUpdateError._tagmap = { - 'path': PaperUpdateError._path_validator, - 'revision_mismatch': PaperUpdateError._revision_mismatch_validator, - 'doc_archived': PaperUpdateError._doc_archived_validator, - 'doc_deleted': PaperUpdateError._doc_deleted_validator, + "path": PaperUpdateError._path_validator, + "revision_mismatch": PaperUpdateError._revision_mismatch_validator, + "doc_archived": PaperUpdateError._doc_archived_validator, + "doc_deleted": PaperUpdateError._doc_deleted_validator, } PaperUpdateError._tagmap.update(PaperContentError._tagmap) -PaperUpdateError.revision_mismatch = PaperUpdateError('revision_mismatch') -PaperUpdateError.doc_archived = PaperUpdateError('doc_archived') -PaperUpdateError.doc_deleted = PaperUpdateError('doc_deleted') +PaperUpdateError.revision_mismatch = PaperUpdateError("revision_mismatch") +PaperUpdateError.doc_archived = PaperUpdateError("doc_archived") +PaperUpdateError.doc_deleted = PaperUpdateError("doc_deleted") PaperUpdateResult.paper_revision.validator = bv.Int64() -PaperUpdateResult._all_field_names_ = set(['paper_revision']) -PaperUpdateResult._all_fields_ = [('paper_revision', PaperUpdateResult.paper_revision.validator)] +PaperUpdateResult._all_field_names_ = set(["paper_revision"]) +PaperUpdateResult._all_fields_ = [("paper_revision", PaperUpdateResult.paper_revision.validator)] PathOrLink._path_validator = ReadPath_validator PathOrLink._link_validator = SharedLinkFileInfo_validator PathOrLink._other_validator = bv.Void() PathOrLink._tagmap = { - 'path': PathOrLink._path_validator, - 'link': PathOrLink._link_validator, - 'other': PathOrLink._other_validator, + "path": PathOrLink._path_validator, + "link": PathOrLink._link_validator, + "other": PathOrLink._other_validator, } -PathOrLink.other = PathOrLink('other') +PathOrLink.other = PathOrLink("other") PathToTags.path.validator = Path_validator PathToTags.tags.validator = bv.List(Tag_validator) -PathToTags._all_field_names_ = set([ - 'path', - 'tags', -]) +PathToTags._all_field_names_ = set( + [ + "path", + "tags", + ] +) PathToTags._all_fields_ = [ - ('path', PathToTags.path.validator), - ('tags', PathToTags.tags.validator), + ("path", PathToTags.path.validator), + ("tags", PathToTags.tags.validator), ] PhotoMetadata._field_names_ = set([]) @@ -13212,13 +13930,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PreviewArg.path.validator = ReadPath_validator PreviewArg.rev.validator = bv.Nullable(Rev_validator) -PreviewArg._all_field_names_ = set([ - 'path', - 'rev', -]) +PreviewArg._all_field_names_ = set( + [ + "path", + "rev", + ] +) PreviewArg._all_fields_ = [ - ('path', PreviewArg.path.validator), - ('rev', PreviewArg.rev.validator), + ("path", PreviewArg.path.validator), + ("rev", PreviewArg.rev.validator), ] PreviewError._path_validator = LookupError_validator @@ -13226,61 +13946,73 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PreviewError._unsupported_extension_validator = bv.Void() PreviewError._unsupported_content_validator = bv.Void() PreviewError._tagmap = { - 'path': PreviewError._path_validator, - 'in_progress': PreviewError._in_progress_validator, - 'unsupported_extension': PreviewError._unsupported_extension_validator, - 'unsupported_content': PreviewError._unsupported_content_validator, + "path": PreviewError._path_validator, + "in_progress": PreviewError._in_progress_validator, + "unsupported_extension": PreviewError._unsupported_extension_validator, + "unsupported_content": PreviewError._unsupported_content_validator, } -PreviewError.in_progress = PreviewError('in_progress') -PreviewError.unsupported_extension = PreviewError('unsupported_extension') -PreviewError.unsupported_content = PreviewError('unsupported_content') +PreviewError.in_progress = PreviewError("in_progress") +PreviewError.unsupported_extension = PreviewError("unsupported_extension") +PreviewError.unsupported_content = PreviewError("unsupported_content") PreviewResult.file_metadata.validator = bv.Nullable(FileMetadata_validator) PreviewResult.link_metadata.validator = bv.Nullable(MinimalFileLinkMetadata_validator) -PreviewResult._all_field_names_ = set([ - 'file_metadata', - 'link_metadata', -]) +PreviewResult._all_field_names_ = set( + [ + "file_metadata", + "link_metadata", + ] +) PreviewResult._all_fields_ = [ - ('file_metadata', PreviewResult.file_metadata.validator), - ('link_metadata', PreviewResult.link_metadata.validator), + ("file_metadata", PreviewResult.file_metadata.validator), + ("link_metadata", PreviewResult.link_metadata.validator), ] RelocationPath.from_path.validator = WritePathOrId_validator RelocationPath.to_path.validator = WritePathOrId_validator -RelocationPath._all_field_names_ = set([ - 'from_path', - 'to_path', -]) +RelocationPath._all_field_names_ = set( + [ + "from_path", + "to_path", + ] +) RelocationPath._all_fields_ = [ - ('from_path', RelocationPath.from_path.validator), - ('to_path', RelocationPath.to_path.validator), + ("from_path", RelocationPath.from_path.validator), + ("to_path", RelocationPath.to_path.validator), ] RelocationArg.allow_shared_folder.validator = bv.Boolean() RelocationArg.autorename.validator = bv.Boolean() RelocationArg.allow_ownership_transfer.validator = bv.Boolean() -RelocationArg._all_field_names_ = RelocationPath._all_field_names_.union(set([ - 'allow_shared_folder', - 'autorename', - 'allow_ownership_transfer', -])) +RelocationArg._all_field_names_ = RelocationPath._all_field_names_.union( + set( + [ + "allow_shared_folder", + "autorename", + "allow_ownership_transfer", + ] + ) +) RelocationArg._all_fields_ = RelocationPath._all_fields_ + [ - ('allow_shared_folder', RelocationArg.allow_shared_folder.validator), - ('autorename', RelocationArg.autorename.validator), - ('allow_ownership_transfer', RelocationArg.allow_ownership_transfer.validator), + ("allow_shared_folder", RelocationArg.allow_shared_folder.validator), + ("autorename", RelocationArg.autorename.validator), + ("allow_ownership_transfer", RelocationArg.allow_ownership_transfer.validator), ] RelocationBatchArg.allow_shared_folder.validator = bv.Boolean() RelocationBatchArg.allow_ownership_transfer.validator = bv.Boolean() -RelocationBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union(set([ - 'allow_shared_folder', - 'allow_ownership_transfer', -])) +RelocationBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union( + set( + [ + "allow_shared_folder", + "allow_ownership_transfer", + ] + ) +) RelocationBatchArg._all_fields_ = RelocationBatchArgBase._all_fields_ + [ - ('allow_shared_folder', RelocationBatchArg.allow_shared_folder.validator), - ('allow_ownership_transfer', RelocationBatchArg.allow_ownership_transfer.validator), + ("allow_shared_folder", RelocationBatchArg.allow_shared_folder.validator), + ("allow_ownership_transfer", RelocationBatchArg.allow_ownership_transfer.validator), ] RelocationError._from_lookup_validator = LookupError_validator @@ -13299,142 +14031,156 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelocationError._cant_move_into_family_validator = MoveIntoFamilyError_validator RelocationError._other_validator = bv.Void() RelocationError._tagmap = { - 'from_lookup': RelocationError._from_lookup_validator, - 'from_write': RelocationError._from_write_validator, - 'to': RelocationError._to_validator, - 'cant_copy_shared_folder': RelocationError._cant_copy_shared_folder_validator, - 'cant_nest_shared_folder': RelocationError._cant_nest_shared_folder_validator, - 'cant_move_folder_into_itself': RelocationError._cant_move_folder_into_itself_validator, - 'too_many_files': RelocationError._too_many_files_validator, - 'duplicated_or_nested_paths': RelocationError._duplicated_or_nested_paths_validator, - 'cant_transfer_ownership': RelocationError._cant_transfer_ownership_validator, - 'insufficient_quota': RelocationError._insufficient_quota_validator, - 'internal_error': RelocationError._internal_error_validator, - 'cant_move_shared_folder': RelocationError._cant_move_shared_folder_validator, - 'cant_move_into_vault': RelocationError._cant_move_into_vault_validator, - 'cant_move_into_family': RelocationError._cant_move_into_family_validator, - 'other': RelocationError._other_validator, + "from_lookup": RelocationError._from_lookup_validator, + "from_write": RelocationError._from_write_validator, + "to": RelocationError._to_validator, + "cant_copy_shared_folder": RelocationError._cant_copy_shared_folder_validator, + "cant_nest_shared_folder": RelocationError._cant_nest_shared_folder_validator, + "cant_move_folder_into_itself": RelocationError._cant_move_folder_into_itself_validator, + "too_many_files": RelocationError._too_many_files_validator, + "duplicated_or_nested_paths": RelocationError._duplicated_or_nested_paths_validator, + "cant_transfer_ownership": RelocationError._cant_transfer_ownership_validator, + "insufficient_quota": RelocationError._insufficient_quota_validator, + "internal_error": RelocationError._internal_error_validator, + "cant_move_shared_folder": RelocationError._cant_move_shared_folder_validator, + "cant_move_into_vault": RelocationError._cant_move_into_vault_validator, + "cant_move_into_family": RelocationError._cant_move_into_family_validator, + "other": RelocationError._other_validator, } -RelocationError.cant_copy_shared_folder = RelocationError('cant_copy_shared_folder') -RelocationError.cant_nest_shared_folder = RelocationError('cant_nest_shared_folder') -RelocationError.cant_move_folder_into_itself = RelocationError('cant_move_folder_into_itself') -RelocationError.too_many_files = RelocationError('too_many_files') -RelocationError.duplicated_or_nested_paths = RelocationError('duplicated_or_nested_paths') -RelocationError.cant_transfer_ownership = RelocationError('cant_transfer_ownership') -RelocationError.insufficient_quota = RelocationError('insufficient_quota') -RelocationError.internal_error = RelocationError('internal_error') -RelocationError.cant_move_shared_folder = RelocationError('cant_move_shared_folder') -RelocationError.other = RelocationError('other') +RelocationError.cant_copy_shared_folder = RelocationError("cant_copy_shared_folder") +RelocationError.cant_nest_shared_folder = RelocationError("cant_nest_shared_folder") +RelocationError.cant_move_folder_into_itself = RelocationError("cant_move_folder_into_itself") +RelocationError.too_many_files = RelocationError("too_many_files") +RelocationError.duplicated_or_nested_paths = RelocationError("duplicated_or_nested_paths") +RelocationError.cant_transfer_ownership = RelocationError("cant_transfer_ownership") +RelocationError.insufficient_quota = RelocationError("insufficient_quota") +RelocationError.internal_error = RelocationError("internal_error") +RelocationError.cant_move_shared_folder = RelocationError("cant_move_shared_folder") +RelocationError.other = RelocationError("other") RelocationBatchError._too_many_write_operations_validator = bv.Void() RelocationBatchError._tagmap = { - 'too_many_write_operations': RelocationBatchError._too_many_write_operations_validator, + "too_many_write_operations": RelocationBatchError._too_many_write_operations_validator, } RelocationBatchError._tagmap.update(RelocationError._tagmap) -RelocationBatchError.too_many_write_operations = RelocationBatchError('too_many_write_operations') +RelocationBatchError.too_many_write_operations = RelocationBatchError("too_many_write_operations") RelocationBatchErrorEntry._relocation_error_validator = RelocationError_validator RelocationBatchErrorEntry._internal_error_validator = bv.Void() RelocationBatchErrorEntry._too_many_write_operations_validator = bv.Void() RelocationBatchErrorEntry._other_validator = bv.Void() RelocationBatchErrorEntry._tagmap = { - 'relocation_error': RelocationBatchErrorEntry._relocation_error_validator, - 'internal_error': RelocationBatchErrorEntry._internal_error_validator, - 'too_many_write_operations': RelocationBatchErrorEntry._too_many_write_operations_validator, - 'other': RelocationBatchErrorEntry._other_validator, + "relocation_error": RelocationBatchErrorEntry._relocation_error_validator, + "internal_error": RelocationBatchErrorEntry._internal_error_validator, + "too_many_write_operations": RelocationBatchErrorEntry._too_many_write_operations_validator, + "other": RelocationBatchErrorEntry._other_validator, } -RelocationBatchErrorEntry.internal_error = RelocationBatchErrorEntry('internal_error') -RelocationBatchErrorEntry.too_many_write_operations = RelocationBatchErrorEntry('too_many_write_operations') -RelocationBatchErrorEntry.other = RelocationBatchErrorEntry('other') +RelocationBatchErrorEntry.internal_error = RelocationBatchErrorEntry("internal_error") +RelocationBatchErrorEntry.too_many_write_operations = RelocationBatchErrorEntry( + "too_many_write_operations" +) +RelocationBatchErrorEntry.other = RelocationBatchErrorEntry("other") RelocationBatchJobStatus._complete_validator = RelocationBatchResult_validator RelocationBatchJobStatus._failed_validator = RelocationBatchError_validator RelocationBatchJobStatus._tagmap = { - 'complete': RelocationBatchJobStatus._complete_validator, - 'failed': RelocationBatchJobStatus._failed_validator, + "complete": RelocationBatchJobStatus._complete_validator, + "failed": RelocationBatchJobStatus._failed_validator, } RelocationBatchJobStatus._tagmap.update(async_.PollResultBase._tagmap) RelocationBatchLaunch._complete_validator = RelocationBatchResult_validator RelocationBatchLaunch._other_validator = bv.Void() RelocationBatchLaunch._tagmap = { - 'complete': RelocationBatchLaunch._complete_validator, - 'other': RelocationBatchLaunch._other_validator, + "complete": RelocationBatchLaunch._complete_validator, + "other": RelocationBatchLaunch._other_validator, } RelocationBatchLaunch._tagmap.update(async_.LaunchResultBase._tagmap) -RelocationBatchLaunch.other = RelocationBatchLaunch('other') +RelocationBatchLaunch.other = RelocationBatchLaunch("other") RelocationBatchResult.entries.validator = bv.List(RelocationBatchResultData_validator) -RelocationBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) -RelocationBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', RelocationBatchResult.entries.validator)] +RelocationBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) +RelocationBatchResult._all_fields_ = FileOpsResult._all_fields_ + [ + ("entries", RelocationBatchResult.entries.validator) +] RelocationBatchResultData.metadata.validator = Metadata_validator -RelocationBatchResultData._all_field_names_ = set(['metadata']) -RelocationBatchResultData._all_fields_ = [('metadata', RelocationBatchResultData.metadata.validator)] +RelocationBatchResultData._all_field_names_ = set(["metadata"]) +RelocationBatchResultData._all_fields_ = [ + ("metadata", RelocationBatchResultData.metadata.validator) +] RelocationBatchResultEntry._success_validator = Metadata_validator RelocationBatchResultEntry._failure_validator = RelocationBatchErrorEntry_validator RelocationBatchResultEntry._other_validator = bv.Void() RelocationBatchResultEntry._tagmap = { - 'success': RelocationBatchResultEntry._success_validator, - 'failure': RelocationBatchResultEntry._failure_validator, - 'other': RelocationBatchResultEntry._other_validator, + "success": RelocationBatchResultEntry._success_validator, + "failure": RelocationBatchResultEntry._failure_validator, + "other": RelocationBatchResultEntry._other_validator, } -RelocationBatchResultEntry.other = RelocationBatchResultEntry('other') +RelocationBatchResultEntry.other = RelocationBatchResultEntry("other") RelocationBatchV2JobStatus._complete_validator = RelocationBatchV2Result_validator RelocationBatchV2JobStatus._tagmap = { - 'complete': RelocationBatchV2JobStatus._complete_validator, + "complete": RelocationBatchV2JobStatus._complete_validator, } RelocationBatchV2JobStatus._tagmap.update(async_.PollResultBase._tagmap) RelocationBatchV2Launch._complete_validator = RelocationBatchV2Result_validator RelocationBatchV2Launch._tagmap = { - 'complete': RelocationBatchV2Launch._complete_validator, + "complete": RelocationBatchV2Launch._complete_validator, } RelocationBatchV2Launch._tagmap.update(async_.LaunchResultBase._tagmap) RelocationBatchV2Result.entries.validator = bv.List(RelocationBatchResultEntry_validator) -RelocationBatchV2Result._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) -RelocationBatchV2Result._all_fields_ = FileOpsResult._all_fields_ + [('entries', RelocationBatchV2Result.entries.validator)] +RelocationBatchV2Result._all_field_names_ = FileOpsResult._all_field_names_.union(set(["entries"])) +RelocationBatchV2Result._all_fields_ = FileOpsResult._all_fields_ + [ + ("entries", RelocationBatchV2Result.entries.validator) +] RelocationResult.metadata.validator = Metadata_validator -RelocationResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['metadata'])) -RelocationResult._all_fields_ = FileOpsResult._all_fields_ + [('metadata', RelocationResult.metadata.validator)] +RelocationResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(["metadata"])) +RelocationResult._all_fields_ = FileOpsResult._all_fields_ + [ + ("metadata", RelocationResult.metadata.validator) +] RemoveTagArg.path.validator = Path_validator RemoveTagArg.tag_text.validator = TagText_validator -RemoveTagArg._all_field_names_ = set([ - 'path', - 'tag_text', -]) +RemoveTagArg._all_field_names_ = set( + [ + "path", + "tag_text", + ] +) RemoveTagArg._all_fields_ = [ - ('path', RemoveTagArg.path.validator), - ('tag_text', RemoveTagArg.tag_text.validator), + ("path", RemoveTagArg.path.validator), + ("tag_text", RemoveTagArg.tag_text.validator), ] RemoveTagError._tag_not_present_validator = bv.Void() RemoveTagError._tagmap = { - 'tag_not_present': RemoveTagError._tag_not_present_validator, + "tag_not_present": RemoveTagError._tag_not_present_validator, } RemoveTagError._tagmap.update(BaseTagError._tagmap) -RemoveTagError.tag_not_present = RemoveTagError('tag_not_present') +RemoveTagError.tag_not_present = RemoveTagError("tag_not_present") RestoreArg.path.validator = WritePath_validator RestoreArg.rev.validator = Rev_validator -RestoreArg._all_field_names_ = set([ - 'path', - 'rev', -]) +RestoreArg._all_field_names_ = set( + [ + "path", + "rev", + ] +) RestoreArg._all_fields_ = [ - ('path', RestoreArg.path.validator), - ('rev', RestoreArg.rev.validator), + ("path", RestoreArg.path.validator), + ("rev", RestoreArg.rev.validator), ] RestoreError._path_lookup_validator = LookupError_validator @@ -13443,26 +14189,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RestoreError._in_progress_validator = bv.Void() RestoreError._other_validator = bv.Void() RestoreError._tagmap = { - 'path_lookup': RestoreError._path_lookup_validator, - 'path_write': RestoreError._path_write_validator, - 'invalid_revision': RestoreError._invalid_revision_validator, - 'in_progress': RestoreError._in_progress_validator, - 'other': RestoreError._other_validator, + "path_lookup": RestoreError._path_lookup_validator, + "path_write": RestoreError._path_write_validator, + "invalid_revision": RestoreError._invalid_revision_validator, + "in_progress": RestoreError._in_progress_validator, + "other": RestoreError._other_validator, } -RestoreError.invalid_revision = RestoreError('invalid_revision') -RestoreError.in_progress = RestoreError('in_progress') -RestoreError.other = RestoreError('other') +RestoreError.invalid_revision = RestoreError("invalid_revision") +RestoreError.in_progress = RestoreError("in_progress") +RestoreError.other = RestoreError("other") SaveCopyReferenceArg.copy_reference.validator = bv.String() SaveCopyReferenceArg.path.validator = Path_validator -SaveCopyReferenceArg._all_field_names_ = set([ - 'copy_reference', - 'path', -]) +SaveCopyReferenceArg._all_field_names_ = set( + [ + "copy_reference", + "path", + ] +) SaveCopyReferenceArg._all_fields_ = [ - ('copy_reference', SaveCopyReferenceArg.copy_reference.validator), - ('path', SaveCopyReferenceArg.path.validator), + ("copy_reference", SaveCopyReferenceArg.copy_reference.validator), + ("path", SaveCopyReferenceArg.path.validator), ] SaveCopyReferenceError._path_validator = WriteError_validator @@ -13472,33 +14220,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SaveCopyReferenceError._too_many_files_validator = bv.Void() SaveCopyReferenceError._other_validator = bv.Void() SaveCopyReferenceError._tagmap = { - 'path': SaveCopyReferenceError._path_validator, - 'invalid_copy_reference': SaveCopyReferenceError._invalid_copy_reference_validator, - 'no_permission': SaveCopyReferenceError._no_permission_validator, - 'not_found': SaveCopyReferenceError._not_found_validator, - 'too_many_files': SaveCopyReferenceError._too_many_files_validator, - 'other': SaveCopyReferenceError._other_validator, + "path": SaveCopyReferenceError._path_validator, + "invalid_copy_reference": SaveCopyReferenceError._invalid_copy_reference_validator, + "no_permission": SaveCopyReferenceError._no_permission_validator, + "not_found": SaveCopyReferenceError._not_found_validator, + "too_many_files": SaveCopyReferenceError._too_many_files_validator, + "other": SaveCopyReferenceError._other_validator, } -SaveCopyReferenceError.invalid_copy_reference = SaveCopyReferenceError('invalid_copy_reference') -SaveCopyReferenceError.no_permission = SaveCopyReferenceError('no_permission') -SaveCopyReferenceError.not_found = SaveCopyReferenceError('not_found') -SaveCopyReferenceError.too_many_files = SaveCopyReferenceError('too_many_files') -SaveCopyReferenceError.other = SaveCopyReferenceError('other') +SaveCopyReferenceError.invalid_copy_reference = SaveCopyReferenceError("invalid_copy_reference") +SaveCopyReferenceError.no_permission = SaveCopyReferenceError("no_permission") +SaveCopyReferenceError.not_found = SaveCopyReferenceError("not_found") +SaveCopyReferenceError.too_many_files = SaveCopyReferenceError("too_many_files") +SaveCopyReferenceError.other = SaveCopyReferenceError("other") SaveCopyReferenceResult.metadata.validator = Metadata_validator -SaveCopyReferenceResult._all_field_names_ = set(['metadata']) -SaveCopyReferenceResult._all_fields_ = [('metadata', SaveCopyReferenceResult.metadata.validator)] +SaveCopyReferenceResult._all_field_names_ = set(["metadata"]) +SaveCopyReferenceResult._all_fields_ = [("metadata", SaveCopyReferenceResult.metadata.validator)] SaveUrlArg.path.validator = Path_validator SaveUrlArg.url.validator = bv.String() -SaveUrlArg._all_field_names_ = set([ - 'path', - 'url', -]) +SaveUrlArg._all_field_names_ = set( + [ + "path", + "url", + ] +) SaveUrlArg._all_fields_ = [ - ('path', SaveUrlArg.path.validator), - ('url', SaveUrlArg.url.validator), + ("path", SaveUrlArg.path.validator), + ("url", SaveUrlArg.url.validator), ] SaveUrlError._path_validator = WriteError_validator @@ -13507,29 +14257,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SaveUrlError._not_found_validator = bv.Void() SaveUrlError._other_validator = bv.Void() SaveUrlError._tagmap = { - 'path': SaveUrlError._path_validator, - 'download_failed': SaveUrlError._download_failed_validator, - 'invalid_url': SaveUrlError._invalid_url_validator, - 'not_found': SaveUrlError._not_found_validator, - 'other': SaveUrlError._other_validator, + "path": SaveUrlError._path_validator, + "download_failed": SaveUrlError._download_failed_validator, + "invalid_url": SaveUrlError._invalid_url_validator, + "not_found": SaveUrlError._not_found_validator, + "other": SaveUrlError._other_validator, } -SaveUrlError.download_failed = SaveUrlError('download_failed') -SaveUrlError.invalid_url = SaveUrlError('invalid_url') -SaveUrlError.not_found = SaveUrlError('not_found') -SaveUrlError.other = SaveUrlError('other') +SaveUrlError.download_failed = SaveUrlError("download_failed") +SaveUrlError.invalid_url = SaveUrlError("invalid_url") +SaveUrlError.not_found = SaveUrlError("not_found") +SaveUrlError.other = SaveUrlError("other") SaveUrlJobStatus._complete_validator = FileMetadata_validator SaveUrlJobStatus._failed_validator = SaveUrlError_validator SaveUrlJobStatus._tagmap = { - 'complete': SaveUrlJobStatus._complete_validator, - 'failed': SaveUrlJobStatus._failed_validator, + "complete": SaveUrlJobStatus._complete_validator, + "failed": SaveUrlJobStatus._failed_validator, } SaveUrlJobStatus._tagmap.update(async_.PollResultBase._tagmap) SaveUrlResult._complete_validator = FileMetadata_validator SaveUrlResult._tagmap = { - 'complete': SaveUrlResult._complete_validator, + "complete": SaveUrlResult._complete_validator, } SaveUrlResult._tagmap.update(async_.LaunchResultBase._tagmap) @@ -13538,19 +14288,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchArg.start.validator = bv.UInt64(max_value=9999) SearchArg.max_results.validator = bv.UInt64(min_value=1, max_value=1000) SearchArg.mode.validator = SearchMode_validator -SearchArg._all_field_names_ = set([ - 'path', - 'query', - 'start', - 'max_results', - 'mode', -]) +SearchArg._all_field_names_ = set( + [ + "path", + "query", + "start", + "max_results", + "mode", + ] +) SearchArg._all_fields_ = [ - ('path', SearchArg.path.validator), - ('query', SearchArg.query.validator), - ('start', SearchArg.start.validator), - ('max_results', SearchArg.max_results.validator), - ('mode', SearchArg.mode.validator), + ("path", SearchArg.path.validator), + ("query", SearchArg.query.validator), + ("start", SearchArg.start.validator), + ("max_results", SearchArg.max_results.validator), + ("mode", SearchArg.mode.validator), ] SearchError._path_validator = LookupError_validator @@ -13558,42 +14310,46 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchError._internal_error_validator = bv.Void() SearchError._other_validator = bv.Void() SearchError._tagmap = { - 'path': SearchError._path_validator, - 'invalid_argument': SearchError._invalid_argument_validator, - 'internal_error': SearchError._internal_error_validator, - 'other': SearchError._other_validator, + "path": SearchError._path_validator, + "invalid_argument": SearchError._invalid_argument_validator, + "internal_error": SearchError._internal_error_validator, + "other": SearchError._other_validator, } -SearchError.internal_error = SearchError('internal_error') -SearchError.other = SearchError('other') +SearchError.internal_error = SearchError("internal_error") +SearchError.other = SearchError("other") SearchMatch.match_type.validator = SearchMatchType_validator SearchMatch.metadata.validator = Metadata_validator -SearchMatch._all_field_names_ = set([ - 'match_type', - 'metadata', -]) +SearchMatch._all_field_names_ = set( + [ + "match_type", + "metadata", + ] +) SearchMatch._all_fields_ = [ - ('match_type', SearchMatch.match_type.validator), - ('metadata', SearchMatch.metadata.validator), + ("match_type", SearchMatch.match_type.validator), + ("metadata", SearchMatch.metadata.validator), ] SearchMatchFieldOptions.include_highlights.validator = bv.Boolean() -SearchMatchFieldOptions._all_field_names_ = set(['include_highlights']) -SearchMatchFieldOptions._all_fields_ = [('include_highlights', SearchMatchFieldOptions.include_highlights.validator)] +SearchMatchFieldOptions._all_field_names_ = set(["include_highlights"]) +SearchMatchFieldOptions._all_fields_ = [ + ("include_highlights", SearchMatchFieldOptions.include_highlights.validator) +] SearchMatchType._filename_validator = bv.Void() SearchMatchType._content_validator = bv.Void() SearchMatchType._both_validator = bv.Void() SearchMatchType._tagmap = { - 'filename': SearchMatchType._filename_validator, - 'content': SearchMatchType._content_validator, - 'both': SearchMatchType._both_validator, + "filename": SearchMatchType._filename_validator, + "content": SearchMatchType._content_validator, + "both": SearchMatchType._both_validator, } -SearchMatchType.filename = SearchMatchType('filename') -SearchMatchType.content = SearchMatchType('content') -SearchMatchType.both = SearchMatchType('both') +SearchMatchType.filename = SearchMatchType("filename") +SearchMatchType.content = SearchMatchType("content") +SearchMatchType.both = SearchMatchType("both") SearchMatchTypeV2._filename_validator = bv.Void() SearchMatchTypeV2._file_content_validator = bv.Void() @@ -13602,47 +14358,49 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchMatchTypeV2._metadata_validator = bv.Void() SearchMatchTypeV2._other_validator = bv.Void() SearchMatchTypeV2._tagmap = { - 'filename': SearchMatchTypeV2._filename_validator, - 'file_content': SearchMatchTypeV2._file_content_validator, - 'filename_and_content': SearchMatchTypeV2._filename_and_content_validator, - 'image_content': SearchMatchTypeV2._image_content_validator, - 'metadata': SearchMatchTypeV2._metadata_validator, - 'other': SearchMatchTypeV2._other_validator, + "filename": SearchMatchTypeV2._filename_validator, + "file_content": SearchMatchTypeV2._file_content_validator, + "filename_and_content": SearchMatchTypeV2._filename_and_content_validator, + "image_content": SearchMatchTypeV2._image_content_validator, + "metadata": SearchMatchTypeV2._metadata_validator, + "other": SearchMatchTypeV2._other_validator, } -SearchMatchTypeV2.filename = SearchMatchTypeV2('filename') -SearchMatchTypeV2.file_content = SearchMatchTypeV2('file_content') -SearchMatchTypeV2.filename_and_content = SearchMatchTypeV2('filename_and_content') -SearchMatchTypeV2.image_content = SearchMatchTypeV2('image_content') -SearchMatchTypeV2.metadata = SearchMatchTypeV2('metadata') -SearchMatchTypeV2.other = SearchMatchTypeV2('other') +SearchMatchTypeV2.filename = SearchMatchTypeV2("filename") +SearchMatchTypeV2.file_content = SearchMatchTypeV2("file_content") +SearchMatchTypeV2.filename_and_content = SearchMatchTypeV2("filename_and_content") +SearchMatchTypeV2.image_content = SearchMatchTypeV2("image_content") +SearchMatchTypeV2.metadata = SearchMatchTypeV2("metadata") +SearchMatchTypeV2.other = SearchMatchTypeV2("other") SearchMatchV2.metadata.validator = MetadataV2_validator SearchMatchV2.match_type.validator = bv.Nullable(SearchMatchTypeV2_validator) SearchMatchV2.highlight_spans.validator = bv.Nullable(bv.List(HighlightSpan_validator)) -SearchMatchV2._all_field_names_ = set([ - 'metadata', - 'match_type', - 'highlight_spans', -]) +SearchMatchV2._all_field_names_ = set( + [ + "metadata", + "match_type", + "highlight_spans", + ] +) SearchMatchV2._all_fields_ = [ - ('metadata', SearchMatchV2.metadata.validator), - ('match_type', SearchMatchV2.match_type.validator), - ('highlight_spans', SearchMatchV2.highlight_spans.validator), + ("metadata", SearchMatchV2.metadata.validator), + ("match_type", SearchMatchV2.match_type.validator), + ("highlight_spans", SearchMatchV2.highlight_spans.validator), ] SearchMode._filename_validator = bv.Void() SearchMode._filename_and_content_validator = bv.Void() SearchMode._deleted_filename_validator = bv.Void() SearchMode._tagmap = { - 'filename': SearchMode._filename_validator, - 'filename_and_content': SearchMode._filename_and_content_validator, - 'deleted_filename': SearchMode._deleted_filename_validator, + "filename": SearchMode._filename_validator, + "filename_and_content": SearchMode._filename_and_content_validator, + "deleted_filename": SearchMode._deleted_filename_validator, } -SearchMode.filename = SearchMode('filename') -SearchMode.filename_and_content = SearchMode('filename_and_content') -SearchMode.deleted_filename = SearchMode('deleted_filename') +SearchMode.filename = SearchMode("filename") +SearchMode.filename_and_content = SearchMode("filename_and_content") +SearchMode.deleted_filename = SearchMode("deleted_filename") SearchOptions.path.validator = bv.Nullable(PathROrId_validator) SearchOptions.max_results.validator = bv.UInt64(min_value=1, max_value=1000) @@ -13652,184 +14410,198 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchOptions.file_extensions.validator = bv.Nullable(bv.List(bv.String())) SearchOptions.file_categories.validator = bv.Nullable(bv.List(FileCategory_validator)) SearchOptions.account_id.validator = bv.Nullable(users_common.AccountId_validator) -SearchOptions._all_field_names_ = set([ - 'path', - 'max_results', - 'order_by', - 'file_status', - 'filename_only', - 'file_extensions', - 'file_categories', - 'account_id', -]) +SearchOptions._all_field_names_ = set( + [ + "path", + "max_results", + "order_by", + "file_status", + "filename_only", + "file_extensions", + "file_categories", + "account_id", + ] +) SearchOptions._all_fields_ = [ - ('path', SearchOptions.path.validator), - ('max_results', SearchOptions.max_results.validator), - ('order_by', SearchOptions.order_by.validator), - ('file_status', SearchOptions.file_status.validator), - ('filename_only', SearchOptions.filename_only.validator), - ('file_extensions', SearchOptions.file_extensions.validator), - ('file_categories', SearchOptions.file_categories.validator), - ('account_id', SearchOptions.account_id.validator), + ("path", SearchOptions.path.validator), + ("max_results", SearchOptions.max_results.validator), + ("order_by", SearchOptions.order_by.validator), + ("file_status", SearchOptions.file_status.validator), + ("filename_only", SearchOptions.filename_only.validator), + ("file_extensions", SearchOptions.file_extensions.validator), + ("file_categories", SearchOptions.file_categories.validator), + ("account_id", SearchOptions.account_id.validator), ] SearchOrderBy._relevance_validator = bv.Void() SearchOrderBy._last_modified_time_validator = bv.Void() SearchOrderBy._other_validator = bv.Void() SearchOrderBy._tagmap = { - 'relevance': SearchOrderBy._relevance_validator, - 'last_modified_time': SearchOrderBy._last_modified_time_validator, - 'other': SearchOrderBy._other_validator, + "relevance": SearchOrderBy._relevance_validator, + "last_modified_time": SearchOrderBy._last_modified_time_validator, + "other": SearchOrderBy._other_validator, } -SearchOrderBy.relevance = SearchOrderBy('relevance') -SearchOrderBy.last_modified_time = SearchOrderBy('last_modified_time') -SearchOrderBy.other = SearchOrderBy('other') +SearchOrderBy.relevance = SearchOrderBy("relevance") +SearchOrderBy.last_modified_time = SearchOrderBy("last_modified_time") +SearchOrderBy.other = SearchOrderBy("other") SearchResult.matches.validator = bv.List(SearchMatch_validator) SearchResult.more.validator = bv.Boolean() SearchResult.start.validator = bv.UInt64() -SearchResult._all_field_names_ = set([ - 'matches', - 'more', - 'start', -]) +SearchResult._all_field_names_ = set( + [ + "matches", + "more", + "start", + ] +) SearchResult._all_fields_ = [ - ('matches', SearchResult.matches.validator), - ('more', SearchResult.more.validator), - ('start', SearchResult.start.validator), + ("matches", SearchResult.matches.validator), + ("more", SearchResult.more.validator), + ("start", SearchResult.start.validator), ] SearchV2Arg.query.validator = bv.String(max_length=1000) SearchV2Arg.options.validator = bv.Nullable(SearchOptions_validator) SearchV2Arg.match_field_options.validator = bv.Nullable(SearchMatchFieldOptions_validator) SearchV2Arg.include_highlights.validator = bv.Nullable(bv.Boolean()) -SearchV2Arg._all_field_names_ = set([ - 'query', - 'options', - 'match_field_options', - 'include_highlights', -]) +SearchV2Arg._all_field_names_ = set( + [ + "query", + "options", + "match_field_options", + "include_highlights", + ] +) SearchV2Arg._all_fields_ = [ - ('query', SearchV2Arg.query.validator), - ('options', SearchV2Arg.options.validator), - ('match_field_options', SearchV2Arg.match_field_options.validator), - ('include_highlights', SearchV2Arg.include_highlights.validator), + ("query", SearchV2Arg.query.validator), + ("options", SearchV2Arg.options.validator), + ("match_field_options", SearchV2Arg.match_field_options.validator), + ("include_highlights", SearchV2Arg.include_highlights.validator), ] SearchV2ContinueArg.cursor.validator = SearchV2Cursor_validator -SearchV2ContinueArg._all_field_names_ = set(['cursor']) -SearchV2ContinueArg._all_fields_ = [('cursor', SearchV2ContinueArg.cursor.validator)] +SearchV2ContinueArg._all_field_names_ = set(["cursor"]) +SearchV2ContinueArg._all_fields_ = [("cursor", SearchV2ContinueArg.cursor.validator)] SearchV2Result.matches.validator = bv.List(SearchMatchV2_validator) SearchV2Result.has_more.validator = bv.Boolean() SearchV2Result.cursor.validator = bv.Nullable(SearchV2Cursor_validator) -SearchV2Result._all_field_names_ = set([ - 'matches', - 'has_more', - 'cursor', -]) +SearchV2Result._all_field_names_ = set( + [ + "matches", + "has_more", + "cursor", + ] +) SearchV2Result._all_fields_ = [ - ('matches', SearchV2Result.matches.validator), - ('has_more', SearchV2Result.has_more.validator), - ('cursor', SearchV2Result.cursor.validator), + ("matches", SearchV2Result.matches.validator), + ("has_more", SearchV2Result.has_more.validator), + ("cursor", SearchV2Result.cursor.validator), ] SharedLink.url.validator = SharedLinkUrl_validator SharedLink.password.validator = bv.Nullable(bv.String()) -SharedLink._all_field_names_ = set([ - 'url', - 'password', -]) +SharedLink._all_field_names_ = set( + [ + "url", + "password", + ] +) SharedLink._all_fields_ = [ - ('url', SharedLink.url.validator), - ('password', SharedLink.password.validator), + ("url", SharedLink.url.validator), + ("password", SharedLink.password.validator), ] SharedLinkFileInfo.url.validator = bv.String() SharedLinkFileInfo.path.validator = bv.Nullable(bv.String()) SharedLinkFileInfo.password.validator = bv.Nullable(bv.String()) -SharedLinkFileInfo._all_field_names_ = set([ - 'url', - 'path', - 'password', -]) +SharedLinkFileInfo._all_field_names_ = set( + [ + "url", + "path", + "password", + ] +) SharedLinkFileInfo._all_fields_ = [ - ('url', SharedLinkFileInfo.url.validator), - ('path', SharedLinkFileInfo.path.validator), - ('password', SharedLinkFileInfo.password.validator), + ("url", SharedLinkFileInfo.url.validator), + ("path", SharedLinkFileInfo.path.validator), + ("password", SharedLinkFileInfo.password.validator), ] SingleUserLock.created.validator = common.DropboxTimestamp_validator SingleUserLock.lock_holder_account_id.validator = users_common.AccountId_validator SingleUserLock.lock_holder_team_id.validator = bv.Nullable(bv.String()) -SingleUserLock._all_field_names_ = set([ - 'created', - 'lock_holder_account_id', - 'lock_holder_team_id', -]) +SingleUserLock._all_field_names_ = set( + [ + "created", + "lock_holder_account_id", + "lock_holder_team_id", + ] +) SingleUserLock._all_fields_ = [ - ('created', SingleUserLock.created.validator), - ('lock_holder_account_id', SingleUserLock.lock_holder_account_id.validator), - ('lock_holder_team_id', SingleUserLock.lock_holder_team_id.validator), + ("created", SingleUserLock.created.validator), + ("lock_holder_account_id", SingleUserLock.lock_holder_account_id.validator), + ("lock_holder_team_id", SingleUserLock.lock_holder_team_id.validator), ] SymlinkInfo.target.validator = bv.String() -SymlinkInfo._all_field_names_ = set(['target']) -SymlinkInfo._all_fields_ = [('target', SymlinkInfo.target.validator)] +SymlinkInfo._all_field_names_ = set(["target"]) +SymlinkInfo._all_fields_ = [("target", SymlinkInfo.target.validator)] SyncSetting._default_validator = bv.Void() SyncSetting._not_synced_validator = bv.Void() SyncSetting._not_synced_inactive_validator = bv.Void() SyncSetting._other_validator = bv.Void() SyncSetting._tagmap = { - 'default': SyncSetting._default_validator, - 'not_synced': SyncSetting._not_synced_validator, - 'not_synced_inactive': SyncSetting._not_synced_inactive_validator, - 'other': SyncSetting._other_validator, + "default": SyncSetting._default_validator, + "not_synced": SyncSetting._not_synced_validator, + "not_synced_inactive": SyncSetting._not_synced_inactive_validator, + "other": SyncSetting._other_validator, } -SyncSetting.default = SyncSetting('default') -SyncSetting.not_synced = SyncSetting('not_synced') -SyncSetting.not_synced_inactive = SyncSetting('not_synced_inactive') -SyncSetting.other = SyncSetting('other') +SyncSetting.default = SyncSetting("default") +SyncSetting.not_synced = SyncSetting("not_synced") +SyncSetting.not_synced_inactive = SyncSetting("not_synced_inactive") +SyncSetting.other = SyncSetting("other") SyncSettingArg._default_validator = bv.Void() SyncSettingArg._not_synced_validator = bv.Void() SyncSettingArg._other_validator = bv.Void() SyncSettingArg._tagmap = { - 'default': SyncSettingArg._default_validator, - 'not_synced': SyncSettingArg._not_synced_validator, - 'other': SyncSettingArg._other_validator, + "default": SyncSettingArg._default_validator, + "not_synced": SyncSettingArg._not_synced_validator, + "other": SyncSettingArg._other_validator, } -SyncSettingArg.default = SyncSettingArg('default') -SyncSettingArg.not_synced = SyncSettingArg('not_synced') -SyncSettingArg.other = SyncSettingArg('other') +SyncSettingArg.default = SyncSettingArg("default") +SyncSettingArg.not_synced = SyncSettingArg("not_synced") +SyncSettingArg.other = SyncSettingArg("other") SyncSettingsError._path_validator = LookupError_validator SyncSettingsError._unsupported_combination_validator = bv.Void() SyncSettingsError._unsupported_configuration_validator = bv.Void() SyncSettingsError._other_validator = bv.Void() SyncSettingsError._tagmap = { - 'path': SyncSettingsError._path_validator, - 'unsupported_combination': SyncSettingsError._unsupported_combination_validator, - 'unsupported_configuration': SyncSettingsError._unsupported_configuration_validator, - 'other': SyncSettingsError._other_validator, + "path": SyncSettingsError._path_validator, + "unsupported_combination": SyncSettingsError._unsupported_combination_validator, + "unsupported_configuration": SyncSettingsError._unsupported_configuration_validator, + "other": SyncSettingsError._other_validator, } -SyncSettingsError.unsupported_combination = SyncSettingsError('unsupported_combination') -SyncSettingsError.unsupported_configuration = SyncSettingsError('unsupported_configuration') -SyncSettingsError.other = SyncSettingsError('other') +SyncSettingsError.unsupported_combination = SyncSettingsError("unsupported_combination") +SyncSettingsError.unsupported_configuration = SyncSettingsError("unsupported_configuration") +SyncSettingsError.other = SyncSettingsError("other") Tag._user_generated_tag_validator = UserGeneratedTag_validator Tag._other_validator = bv.Void() Tag._tagmap = { - 'user_generated_tag': Tag._user_generated_tag_validator, - 'other': Tag._other_validator, + "user_generated_tag": Tag._user_generated_tag_validator, + "other": Tag._other_validator, } -Tag.other = Tag('other') +Tag.other = Tag("other") ThumbnailArg.path.validator = ReadPath_validator ThumbnailArg.format.validator = ThumbnailFormat_validator @@ -13837,22 +14609,24 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailArg.mode.validator = ThumbnailMode_validator ThumbnailArg.quality.validator = ThumbnailQuality_validator ThumbnailArg.exclude_media_info.validator = bv.Nullable(bv.Boolean()) -ThumbnailArg._all_field_names_ = set([ - 'path', - 'format', - 'size', - 'mode', - 'exclude_media_info', -]) +ThumbnailArg._all_field_names_ = set( + [ + "path", + "format", + "size", + "mode", + "exclude_media_info", + ] +) ThumbnailArg._all_fields_ = [ - ('path', ThumbnailArg.path.validator), - ('format', ThumbnailArg.format.validator), - ('size', ThumbnailArg.size.validator), - ('mode', ThumbnailArg.mode.validator), - ('exclude_media_info', ThumbnailArg.exclude_media_info.validator), + ("path", ThumbnailArg.path.validator), + ("format", ThumbnailArg.format.validator), + ("size", ThumbnailArg.size.validator), + ("mode", ThumbnailArg.mode.validator), + ("exclude_media_info", ThumbnailArg.exclude_media_info.validator), ] -ThumbnailArg._all_internal_field_names_ = set(['quality']) -ThumbnailArg._all_internal_fields_ = [('quality', ThumbnailArg.quality.validator)] +ThumbnailArg._all_internal_field_names_ = set(["quality"]) +ThumbnailArg._all_internal_fields_ = [("quality", ThumbnailArg.quality.validator)] ThumbnailError._path_validator = LookupError_validator ThumbnailError._unsupported_extension_validator = bv.Void() @@ -13860,56 +14634,56 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailError._encrypted_content_validator = bv.Void() ThumbnailError._conversion_error_validator = bv.Void() ThumbnailError._tagmap = { - 'path': ThumbnailError._path_validator, - 'unsupported_extension': ThumbnailError._unsupported_extension_validator, - 'unsupported_image': ThumbnailError._unsupported_image_validator, - 'encrypted_content': ThumbnailError._encrypted_content_validator, - 'conversion_error': ThumbnailError._conversion_error_validator, + "path": ThumbnailError._path_validator, + "unsupported_extension": ThumbnailError._unsupported_extension_validator, + "unsupported_image": ThumbnailError._unsupported_image_validator, + "encrypted_content": ThumbnailError._encrypted_content_validator, + "conversion_error": ThumbnailError._conversion_error_validator, } -ThumbnailError.unsupported_extension = ThumbnailError('unsupported_extension') -ThumbnailError.unsupported_image = ThumbnailError('unsupported_image') -ThumbnailError.encrypted_content = ThumbnailError('encrypted_content') -ThumbnailError.conversion_error = ThumbnailError('conversion_error') +ThumbnailError.unsupported_extension = ThumbnailError("unsupported_extension") +ThumbnailError.unsupported_image = ThumbnailError("unsupported_image") +ThumbnailError.encrypted_content = ThumbnailError("encrypted_content") +ThumbnailError.conversion_error = ThumbnailError("conversion_error") ThumbnailFormat._jpeg_validator = bv.Void() ThumbnailFormat._png_validator = bv.Void() ThumbnailFormat._webp_validator = bv.Void() ThumbnailFormat._tagmap = { - 'jpeg': ThumbnailFormat._jpeg_validator, - 'png': ThumbnailFormat._png_validator, - 'webp': ThumbnailFormat._webp_validator, + "jpeg": ThumbnailFormat._jpeg_validator, + "png": ThumbnailFormat._png_validator, + "webp": ThumbnailFormat._webp_validator, } -ThumbnailFormat.jpeg = ThumbnailFormat('jpeg') -ThumbnailFormat.png = ThumbnailFormat('png') -ThumbnailFormat.webp = ThumbnailFormat('webp') +ThumbnailFormat.jpeg = ThumbnailFormat("jpeg") +ThumbnailFormat.png = ThumbnailFormat("png") +ThumbnailFormat.webp = ThumbnailFormat("webp") ThumbnailMode._strict_validator = bv.Void() ThumbnailMode._bestfit_validator = bv.Void() ThumbnailMode._fitone_bestfit_validator = bv.Void() ThumbnailMode._original_validator = bv.Void() ThumbnailMode._tagmap = { - 'strict': ThumbnailMode._strict_validator, - 'bestfit': ThumbnailMode._bestfit_validator, - 'fitone_bestfit': ThumbnailMode._fitone_bestfit_validator, - 'original': ThumbnailMode._original_validator, + "strict": ThumbnailMode._strict_validator, + "bestfit": ThumbnailMode._bestfit_validator, + "fitone_bestfit": ThumbnailMode._fitone_bestfit_validator, + "original": ThumbnailMode._original_validator, } -ThumbnailMode.strict = ThumbnailMode('strict') -ThumbnailMode.bestfit = ThumbnailMode('bestfit') -ThumbnailMode.fitone_bestfit = ThumbnailMode('fitone_bestfit') -ThumbnailMode.original = ThumbnailMode('original') +ThumbnailMode.strict = ThumbnailMode("strict") +ThumbnailMode.bestfit = ThumbnailMode("bestfit") +ThumbnailMode.fitone_bestfit = ThumbnailMode("fitone_bestfit") +ThumbnailMode.original = ThumbnailMode("original") ThumbnailQuality._quality_80_validator = bv.Void() ThumbnailQuality._quality_90_validator = bv.Void() ThumbnailQuality._tagmap = { - 'quality_80': ThumbnailQuality._quality_80_validator, - 'quality_90': ThumbnailQuality._quality_90_validator, + "quality_80": ThumbnailQuality._quality_80_validator, + "quality_90": ThumbnailQuality._quality_90_validator, } -ThumbnailQuality.quality_80 = ThumbnailQuality('quality_80') -ThumbnailQuality.quality_90 = ThumbnailQuality('quality_90') +ThumbnailQuality.quality_80 = ThumbnailQuality("quality_80") +ThumbnailQuality.quality_90 = ThumbnailQuality("quality_90") ThumbnailSize._w32h32_validator = bv.Void() ThumbnailSize._w64h64_validator = bv.Void() @@ -13921,32 +14695,32 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailSize._w1024h768_validator = bv.Void() ThumbnailSize._w2048h1536_validator = bv.Void() ThumbnailSize._w3200h2400_validator = bv.Void() -ThumbnailSize._permissioned_tagmaps = {'internal'} +ThumbnailSize._permissioned_tagmaps = {"internal"} ThumbnailSize._tagmap = { - 'w32h32': ThumbnailSize._w32h32_validator, - 'w64h64': ThumbnailSize._w64h64_validator, - 'w128h128': ThumbnailSize._w128h128_validator, - 'w256h256': ThumbnailSize._w256h256_validator, - 'w480h320': ThumbnailSize._w480h320_validator, - 'w640h480': ThumbnailSize._w640h480_validator, - 'w960h640': ThumbnailSize._w960h640_validator, - 'w1024h768': ThumbnailSize._w1024h768_validator, - 'w2048h1536': ThumbnailSize._w2048h1536_validator, + "w32h32": ThumbnailSize._w32h32_validator, + "w64h64": ThumbnailSize._w64h64_validator, + "w128h128": ThumbnailSize._w128h128_validator, + "w256h256": ThumbnailSize._w256h256_validator, + "w480h320": ThumbnailSize._w480h320_validator, + "w640h480": ThumbnailSize._w640h480_validator, + "w960h640": ThumbnailSize._w960h640_validator, + "w1024h768": ThumbnailSize._w1024h768_validator, + "w2048h1536": ThumbnailSize._w2048h1536_validator, } ThumbnailSize._internal_tagmap = { - 'w3200h2400': ThumbnailSize._w3200h2400_validator, + "w3200h2400": ThumbnailSize._w3200h2400_validator, } -ThumbnailSize.w32h32 = ThumbnailSize('w32h32') -ThumbnailSize.w64h64 = ThumbnailSize('w64h64') -ThumbnailSize.w128h128 = ThumbnailSize('w128h128') -ThumbnailSize.w256h256 = ThumbnailSize('w256h256') -ThumbnailSize.w480h320 = ThumbnailSize('w480h320') -ThumbnailSize.w640h480 = ThumbnailSize('w640h480') -ThumbnailSize.w960h640 = ThumbnailSize('w960h640') -ThumbnailSize.w1024h768 = ThumbnailSize('w1024h768') -ThumbnailSize.w2048h1536 = ThumbnailSize('w2048h1536') -ThumbnailSize.w3200h2400 = ThumbnailSize('w3200h2400') +ThumbnailSize.w32h32 = ThumbnailSize("w32h32") +ThumbnailSize.w64h64 = ThumbnailSize("w64h64") +ThumbnailSize.w128h128 = ThumbnailSize("w128h128") +ThumbnailSize.w256h256 = ThumbnailSize("w256h256") +ThumbnailSize.w480h320 = ThumbnailSize("w480h320") +ThumbnailSize.w640h480 = ThumbnailSize("w640h480") +ThumbnailSize.w960h640 = ThumbnailSize("w960h640") +ThumbnailSize.w1024h768 = ThumbnailSize("w1024h768") +ThumbnailSize.w2048h1536 = ThumbnailSize("w2048h1536") +ThumbnailSize.w3200h2400 = ThumbnailSize("w3200h2400") ThumbnailV2Arg.resource.validator = PathOrLink_validator ThumbnailV2Arg.format.validator = ThumbnailFormat_validator @@ -13954,22 +14728,24 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailV2Arg.mode.validator = ThumbnailMode_validator ThumbnailV2Arg.quality.validator = ThumbnailQuality_validator ThumbnailV2Arg.exclude_media_info.validator = bv.Nullable(bv.Boolean()) -ThumbnailV2Arg._all_field_names_ = set([ - 'resource', - 'format', - 'size', - 'mode', - 'exclude_media_info', -]) +ThumbnailV2Arg._all_field_names_ = set( + [ + "resource", + "format", + "size", + "mode", + "exclude_media_info", + ] +) ThumbnailV2Arg._all_fields_ = [ - ('resource', ThumbnailV2Arg.resource.validator), - ('format', ThumbnailV2Arg.format.validator), - ('size', ThumbnailV2Arg.size.validator), - ('mode', ThumbnailV2Arg.mode.validator), - ('exclude_media_info', ThumbnailV2Arg.exclude_media_info.validator), + ("resource", ThumbnailV2Arg.resource.validator), + ("format", ThumbnailV2Arg.format.validator), + ("size", ThumbnailV2Arg.size.validator), + ("mode", ThumbnailV2Arg.mode.validator), + ("exclude_media_info", ThumbnailV2Arg.exclude_media_info.validator), ] -ThumbnailV2Arg._all_internal_field_names_ = set(['quality']) -ThumbnailV2Arg._all_internal_fields_ = [('quality', ThumbnailV2Arg.quality.validator)] +ThumbnailV2Arg._all_internal_field_names_ = set(["quality"]) +ThumbnailV2Arg._all_internal_fields_ = [("quality", ThumbnailV2Arg.quality.validator)] ThumbnailV2Error._path_validator = LookupError_validator ThumbnailV2Error._unsupported_extension_validator = bv.Void() @@ -13980,35 +14756,37 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailV2Error._not_found_validator = bv.Void() ThumbnailV2Error._other_validator = bv.Void() ThumbnailV2Error._tagmap = { - 'path': ThumbnailV2Error._path_validator, - 'unsupported_extension': ThumbnailV2Error._unsupported_extension_validator, - 'unsupported_image': ThumbnailV2Error._unsupported_image_validator, - 'encrypted_content': ThumbnailV2Error._encrypted_content_validator, - 'conversion_error': ThumbnailV2Error._conversion_error_validator, - 'access_denied': ThumbnailV2Error._access_denied_validator, - 'not_found': ThumbnailV2Error._not_found_validator, - 'other': ThumbnailV2Error._other_validator, + "path": ThumbnailV2Error._path_validator, + "unsupported_extension": ThumbnailV2Error._unsupported_extension_validator, + "unsupported_image": ThumbnailV2Error._unsupported_image_validator, + "encrypted_content": ThumbnailV2Error._encrypted_content_validator, + "conversion_error": ThumbnailV2Error._conversion_error_validator, + "access_denied": ThumbnailV2Error._access_denied_validator, + "not_found": ThumbnailV2Error._not_found_validator, + "other": ThumbnailV2Error._other_validator, } -ThumbnailV2Error.unsupported_extension = ThumbnailV2Error('unsupported_extension') -ThumbnailV2Error.unsupported_image = ThumbnailV2Error('unsupported_image') -ThumbnailV2Error.encrypted_content = ThumbnailV2Error('encrypted_content') -ThumbnailV2Error.conversion_error = ThumbnailV2Error('conversion_error') -ThumbnailV2Error.access_denied = ThumbnailV2Error('access_denied') -ThumbnailV2Error.not_found = ThumbnailV2Error('not_found') -ThumbnailV2Error.other = ThumbnailV2Error('other') +ThumbnailV2Error.unsupported_extension = ThumbnailV2Error("unsupported_extension") +ThumbnailV2Error.unsupported_image = ThumbnailV2Error("unsupported_image") +ThumbnailV2Error.encrypted_content = ThumbnailV2Error("encrypted_content") +ThumbnailV2Error.conversion_error = ThumbnailV2Error("conversion_error") +ThumbnailV2Error.access_denied = ThumbnailV2Error("access_denied") +ThumbnailV2Error.not_found = ThumbnailV2Error("not_found") +ThumbnailV2Error.other = ThumbnailV2Error("other") UnlockFileArg.path.validator = WritePathOrId_validator -UnlockFileArg._all_field_names_ = set(['path']) -UnlockFileArg._all_fields_ = [('path', UnlockFileArg.path.validator)] +UnlockFileArg._all_field_names_ = set(["path"]) +UnlockFileArg._all_fields_ = [("path", UnlockFileArg.path.validator)] UnlockFileBatchArg.entries.validator = bv.List(UnlockFileArg_validator) -UnlockFileBatchArg._all_field_names_ = set(['entries']) -UnlockFileBatchArg._all_fields_ = [('entries', UnlockFileBatchArg.entries.validator)] +UnlockFileBatchArg._all_field_names_ = set(["entries"]) +UnlockFileBatchArg._all_fields_ = [("entries", UnlockFileBatchArg.entries.validator)] UploadArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadArg._all_field_names_ = CommitInfo._all_field_names_.union(set(['content_hash'])) -UploadArg._all_fields_ = CommitInfo._all_fields_ + [('content_hash', UploadArg.content_hash.validator)] +UploadArg._all_field_names_ = CommitInfo._all_field_names_.union(set(["content_hash"])) +UploadArg._all_fields_ = CommitInfo._all_fields_ + [ + ("content_hash", UploadArg.content_hash.validator) +] UploadError._path_validator = UploadWriteFailed_validator UploadError._properties_error_validator = file_properties.InvalidPropertyGroupError_validator @@ -14017,56 +14795,64 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadError._encryption_not_supported_validator = bv.Void() UploadError._other_validator = bv.Void() UploadError._tagmap = { - 'path': UploadError._path_validator, - 'properties_error': UploadError._properties_error_validator, - 'payload_too_large': UploadError._payload_too_large_validator, - 'content_hash_mismatch': UploadError._content_hash_mismatch_validator, - 'encryption_not_supported': UploadError._encryption_not_supported_validator, - 'other': UploadError._other_validator, + "path": UploadError._path_validator, + "properties_error": UploadError._properties_error_validator, + "payload_too_large": UploadError._payload_too_large_validator, + "content_hash_mismatch": UploadError._content_hash_mismatch_validator, + "encryption_not_supported": UploadError._encryption_not_supported_validator, + "other": UploadError._other_validator, } -UploadError.payload_too_large = UploadError('payload_too_large') -UploadError.content_hash_mismatch = UploadError('content_hash_mismatch') -UploadError.encryption_not_supported = UploadError('encryption_not_supported') -UploadError.other = UploadError('other') +UploadError.payload_too_large = UploadError("payload_too_large") +UploadError.content_hash_mismatch = UploadError("content_hash_mismatch") +UploadError.encryption_not_supported = UploadError("encryption_not_supported") +UploadError.other = UploadError("other") UploadSessionAppendArg.cursor.validator = UploadSessionCursor_validator UploadSessionAppendArg.close.validator = bv.Boolean() UploadSessionAppendArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionAppendArg._all_field_names_ = set([ - 'cursor', - 'close', - 'content_hash', -]) +UploadSessionAppendArg._all_field_names_ = set( + [ + "cursor", + "close", + "content_hash", + ] +) UploadSessionAppendArg._all_fields_ = [ - ('cursor', UploadSessionAppendArg.cursor.validator), - ('close', UploadSessionAppendArg.close.validator), - ('content_hash', UploadSessionAppendArg.content_hash.validator), + ("cursor", UploadSessionAppendArg.cursor.validator), + ("close", UploadSessionAppendArg.close.validator), + ("content_hash", UploadSessionAppendArg.content_hash.validator), ] -UploadSessionAppendBatchArg.entries.validator = bv.List(UploadSessionAppendBatchArgEntry_validator, max_items=1000) +UploadSessionAppendBatchArg.entries.validator = bv.List( + UploadSessionAppendBatchArgEntry_validator, max_items=1000 +) UploadSessionAppendBatchArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionAppendBatchArg._all_field_names_ = set([ - 'entries', - 'content_hash', -]) +UploadSessionAppendBatchArg._all_field_names_ = set( + [ + "entries", + "content_hash", + ] +) UploadSessionAppendBatchArg._all_fields_ = [ - ('entries', UploadSessionAppendBatchArg.entries.validator), - ('content_hash', UploadSessionAppendBatchArg.content_hash.validator), + ("entries", UploadSessionAppendBatchArg.entries.validator), + ("content_hash", UploadSessionAppendBatchArg.content_hash.validator), ] UploadSessionAppendBatchArgEntry.cursor.validator = UploadSessionCursor_validator UploadSessionAppendBatchArgEntry.length.validator = bv.UInt64() UploadSessionAppendBatchArgEntry.close.validator = bv.Boolean() -UploadSessionAppendBatchArgEntry._all_field_names_ = set([ - 'cursor', - 'length', - 'close', -]) +UploadSessionAppendBatchArgEntry._all_field_names_ = set( + [ + "cursor", + "length", + "close", + ] +) UploadSessionAppendBatchArgEntry._all_fields_ = [ - ('cursor', UploadSessionAppendBatchArgEntry.cursor.validator), - ('length', UploadSessionAppendBatchArgEntry.length.validator), - ('close', UploadSessionAppendBatchArgEntry.close.validator), + ("cursor", UploadSessionAppendBatchArgEntry.cursor.validator), + ("length", UploadSessionAppendBatchArgEntry.length.validator), + ("close", UploadSessionAppendBatchArgEntry.close.validator), ] UploadSessionAppendBatchEntryError._not_found_validator = bv.Void() @@ -14077,50 +14863,62 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionAppendBatchEntryError._concurrent_session_invalid_data_size_validator = bv.Void() UploadSessionAppendBatchEntryError._other_validator = bv.Void() UploadSessionAppendBatchEntryError._tagmap = { - 'not_found': UploadSessionAppendBatchEntryError._not_found_validator, - 'incorrect_offset': UploadSessionAppendBatchEntryError._incorrect_offset_validator, - 'closed': UploadSessionAppendBatchEntryError._closed_validator, - 'too_large': UploadSessionAppendBatchEntryError._too_large_validator, - 'concurrent_session_invalid_offset': UploadSessionAppendBatchEntryError._concurrent_session_invalid_offset_validator, - 'concurrent_session_invalid_data_size': UploadSessionAppendBatchEntryError._concurrent_session_invalid_data_size_validator, - 'other': UploadSessionAppendBatchEntryError._other_validator, + "not_found": UploadSessionAppendBatchEntryError._not_found_validator, + "incorrect_offset": UploadSessionAppendBatchEntryError._incorrect_offset_validator, + "closed": UploadSessionAppendBatchEntryError._closed_validator, + "too_large": UploadSessionAppendBatchEntryError._too_large_validator, + "concurrent_session_invalid_offset": UploadSessionAppendBatchEntryError._concurrent_session_invalid_offset_validator, + "concurrent_session_invalid_data_size": UploadSessionAppendBatchEntryError._concurrent_session_invalid_data_size_validator, + "other": UploadSessionAppendBatchEntryError._other_validator, } -UploadSessionAppendBatchEntryError.not_found = UploadSessionAppendBatchEntryError('not_found') -UploadSessionAppendBatchEntryError.closed = UploadSessionAppendBatchEntryError('closed') -UploadSessionAppendBatchEntryError.too_large = UploadSessionAppendBatchEntryError('too_large') -UploadSessionAppendBatchEntryError.concurrent_session_invalid_offset = UploadSessionAppendBatchEntryError('concurrent_session_invalid_offset') -UploadSessionAppendBatchEntryError.concurrent_session_invalid_data_size = UploadSessionAppendBatchEntryError('concurrent_session_invalid_data_size') -UploadSessionAppendBatchEntryError.other = UploadSessionAppendBatchEntryError('other') +UploadSessionAppendBatchEntryError.not_found = UploadSessionAppendBatchEntryError("not_found") +UploadSessionAppendBatchEntryError.closed = UploadSessionAppendBatchEntryError("closed") +UploadSessionAppendBatchEntryError.too_large = UploadSessionAppendBatchEntryError("too_large") +UploadSessionAppendBatchEntryError.concurrent_session_invalid_offset = ( + UploadSessionAppendBatchEntryError("concurrent_session_invalid_offset") +) +UploadSessionAppendBatchEntryError.concurrent_session_invalid_data_size = ( + UploadSessionAppendBatchEntryError("concurrent_session_invalid_data_size") +) +UploadSessionAppendBatchEntryError.other = UploadSessionAppendBatchEntryError("other") UploadSessionAppendBatchError._payload_too_large_validator = bv.Void() UploadSessionAppendBatchError._content_hash_mismatch_validator = bv.Void() UploadSessionAppendBatchError._length_mismatch_validator = bv.Void() UploadSessionAppendBatchError._other_validator = bv.Void() UploadSessionAppendBatchError._tagmap = { - 'payload_too_large': UploadSessionAppendBatchError._payload_too_large_validator, - 'content_hash_mismatch': UploadSessionAppendBatchError._content_hash_mismatch_validator, - 'length_mismatch': UploadSessionAppendBatchError._length_mismatch_validator, - 'other': UploadSessionAppendBatchError._other_validator, + "payload_too_large": UploadSessionAppendBatchError._payload_too_large_validator, + "content_hash_mismatch": UploadSessionAppendBatchError._content_hash_mismatch_validator, + "length_mismatch": UploadSessionAppendBatchError._length_mismatch_validator, + "other": UploadSessionAppendBatchError._other_validator, } -UploadSessionAppendBatchError.payload_too_large = UploadSessionAppendBatchError('payload_too_large') -UploadSessionAppendBatchError.content_hash_mismatch = UploadSessionAppendBatchError('content_hash_mismatch') -UploadSessionAppendBatchError.length_mismatch = UploadSessionAppendBatchError('length_mismatch') -UploadSessionAppendBatchError.other = UploadSessionAppendBatchError('other') +UploadSessionAppendBatchError.payload_too_large = UploadSessionAppendBatchError("payload_too_large") +UploadSessionAppendBatchError.content_hash_mismatch = UploadSessionAppendBatchError( + "content_hash_mismatch" +) +UploadSessionAppendBatchError.length_mismatch = UploadSessionAppendBatchError("length_mismatch") +UploadSessionAppendBatchError.other = UploadSessionAppendBatchError("other") -UploadSessionAppendBatchResult.entries.validator = bv.List(UploadSessionAppendBatchResultEntry_validator) -UploadSessionAppendBatchResult._all_field_names_ = set(['entries']) -UploadSessionAppendBatchResult._all_fields_ = [('entries', UploadSessionAppendBatchResult.entries.validator)] +UploadSessionAppendBatchResult.entries.validator = bv.List( + UploadSessionAppendBatchResultEntry_validator +) +UploadSessionAppendBatchResult._all_field_names_ = set(["entries"]) +UploadSessionAppendBatchResult._all_fields_ = [ + ("entries", UploadSessionAppendBatchResult.entries.validator) +] UploadSessionAppendBatchResultEntry._success_validator = bv.Void() -UploadSessionAppendBatchResultEntry._failure_validator = UploadSessionAppendBatchEntryError_validator +UploadSessionAppendBatchResultEntry._failure_validator = ( + UploadSessionAppendBatchEntryError_validator +) UploadSessionAppendBatchResultEntry._tagmap = { - 'success': UploadSessionAppendBatchResultEntry._success_validator, - 'failure': UploadSessionAppendBatchResultEntry._failure_validator, + "success": UploadSessionAppendBatchResultEntry._success_validator, + "failure": UploadSessionAppendBatchResultEntry._failure_validator, } -UploadSessionAppendBatchResultEntry.success = UploadSessionAppendBatchResultEntry('success') +UploadSessionAppendBatchResultEntry.success = UploadSessionAppendBatchResultEntry("success") UploadSessionAppendError._not_found_validator = bv.Void() UploadSessionAppendError._incorrect_offset_validator = UploadSessionOffsetError_validator @@ -14132,85 +14930,103 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionAppendError._content_hash_mismatch_validator = bv.Void() UploadSessionAppendError._other_validator = bv.Void() UploadSessionAppendError._tagmap = { - 'not_found': UploadSessionAppendError._not_found_validator, - 'incorrect_offset': UploadSessionAppendError._incorrect_offset_validator, - 'closed': UploadSessionAppendError._closed_validator, - 'too_large': UploadSessionAppendError._too_large_validator, - 'concurrent_session_invalid_offset': UploadSessionAppendError._concurrent_session_invalid_offset_validator, - 'concurrent_session_invalid_data_size': UploadSessionAppendError._concurrent_session_invalid_data_size_validator, - 'payload_too_large': UploadSessionAppendError._payload_too_large_validator, - 'content_hash_mismatch': UploadSessionAppendError._content_hash_mismatch_validator, - 'other': UploadSessionAppendError._other_validator, + "not_found": UploadSessionAppendError._not_found_validator, + "incorrect_offset": UploadSessionAppendError._incorrect_offset_validator, + "closed": UploadSessionAppendError._closed_validator, + "too_large": UploadSessionAppendError._too_large_validator, + "concurrent_session_invalid_offset": UploadSessionAppendError._concurrent_session_invalid_offset_validator, + "concurrent_session_invalid_data_size": UploadSessionAppendError._concurrent_session_invalid_data_size_validator, + "payload_too_large": UploadSessionAppendError._payload_too_large_validator, + "content_hash_mismatch": UploadSessionAppendError._content_hash_mismatch_validator, + "other": UploadSessionAppendError._other_validator, } -UploadSessionAppendError.not_found = UploadSessionAppendError('not_found') -UploadSessionAppendError.closed = UploadSessionAppendError('closed') -UploadSessionAppendError.too_large = UploadSessionAppendError('too_large') -UploadSessionAppendError.concurrent_session_invalid_offset = UploadSessionAppendError('concurrent_session_invalid_offset') -UploadSessionAppendError.concurrent_session_invalid_data_size = UploadSessionAppendError('concurrent_session_invalid_data_size') -UploadSessionAppendError.payload_too_large = UploadSessionAppendError('payload_too_large') -UploadSessionAppendError.content_hash_mismatch = UploadSessionAppendError('content_hash_mismatch') -UploadSessionAppendError.other = UploadSessionAppendError('other') +UploadSessionAppendError.not_found = UploadSessionAppendError("not_found") +UploadSessionAppendError.closed = UploadSessionAppendError("closed") +UploadSessionAppendError.too_large = UploadSessionAppendError("too_large") +UploadSessionAppendError.concurrent_session_invalid_offset = UploadSessionAppendError( + "concurrent_session_invalid_offset" +) +UploadSessionAppendError.concurrent_session_invalid_data_size = UploadSessionAppendError( + "concurrent_session_invalid_data_size" +) +UploadSessionAppendError.payload_too_large = UploadSessionAppendError("payload_too_large") +UploadSessionAppendError.content_hash_mismatch = UploadSessionAppendError("content_hash_mismatch") +UploadSessionAppendError.other = UploadSessionAppendError("other") UploadSessionCursor.session_id.validator = bv.String() UploadSessionCursor.offset.validator = bv.UInt64() -UploadSessionCursor._all_field_names_ = set([ - 'session_id', - 'offset', -]) +UploadSessionCursor._all_field_names_ = set( + [ + "session_id", + "offset", + ] +) UploadSessionCursor._all_fields_ = [ - ('session_id', UploadSessionCursor.session_id.validator), - ('offset', UploadSessionCursor.offset.validator), + ("session_id", UploadSessionCursor.session_id.validator), + ("offset", UploadSessionCursor.offset.validator), ] UploadSessionFinishArg.cursor.validator = UploadSessionCursor_validator UploadSessionFinishArg.commit.validator = CommitInfo_validator UploadSessionFinishArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionFinishArg._all_field_names_ = set([ - 'cursor', - 'commit', - 'content_hash', -]) +UploadSessionFinishArg._all_field_names_ = set( + [ + "cursor", + "commit", + "content_hash", + ] +) UploadSessionFinishArg._all_fields_ = [ - ('cursor', UploadSessionFinishArg.cursor.validator), - ('commit', UploadSessionFinishArg.commit.validator), - ('content_hash', UploadSessionFinishArg.content_hash.validator), + ("cursor", UploadSessionFinishArg.cursor.validator), + ("commit", UploadSessionFinishArg.commit.validator), + ("content_hash", UploadSessionFinishArg.content_hash.validator), ] -UploadSessionFinishBatchArg.entries.validator = bv.List(UploadSessionFinishArg_validator, max_items=1000) -UploadSessionFinishBatchArg._all_field_names_ = set(['entries']) -UploadSessionFinishBatchArg._all_fields_ = [('entries', UploadSessionFinishBatchArg.entries.validator)] +UploadSessionFinishBatchArg.entries.validator = bv.List( + UploadSessionFinishArg_validator, max_items=1000 +) +UploadSessionFinishBatchArg._all_field_names_ = set(["entries"]) +UploadSessionFinishBatchArg._all_fields_ = [ + ("entries", UploadSessionFinishBatchArg.entries.validator) +] UploadSessionFinishBatchJobStatus._complete_validator = UploadSessionFinishBatchResult_validator UploadSessionFinishBatchJobStatus._tagmap = { - 'complete': UploadSessionFinishBatchJobStatus._complete_validator, + "complete": UploadSessionFinishBatchJobStatus._complete_validator, } UploadSessionFinishBatchJobStatus._tagmap.update(async_.PollResultBase._tagmap) UploadSessionFinishBatchLaunch._complete_validator = UploadSessionFinishBatchResult_validator UploadSessionFinishBatchLaunch._other_validator = bv.Void() UploadSessionFinishBatchLaunch._tagmap = { - 'complete': UploadSessionFinishBatchLaunch._complete_validator, - 'other': UploadSessionFinishBatchLaunch._other_validator, + "complete": UploadSessionFinishBatchLaunch._complete_validator, + "other": UploadSessionFinishBatchLaunch._other_validator, } UploadSessionFinishBatchLaunch._tagmap.update(async_.LaunchResultBase._tagmap) -UploadSessionFinishBatchLaunch.other = UploadSessionFinishBatchLaunch('other') +UploadSessionFinishBatchLaunch.other = UploadSessionFinishBatchLaunch("other") -UploadSessionFinishBatchResult.entries.validator = bv.List(UploadSessionFinishBatchResultEntry_validator) -UploadSessionFinishBatchResult._all_field_names_ = set(['entries']) -UploadSessionFinishBatchResult._all_fields_ = [('entries', UploadSessionFinishBatchResult.entries.validator)] +UploadSessionFinishBatchResult.entries.validator = bv.List( + UploadSessionFinishBatchResultEntry_validator +) +UploadSessionFinishBatchResult._all_field_names_ = set(["entries"]) +UploadSessionFinishBatchResult._all_fields_ = [ + ("entries", UploadSessionFinishBatchResult.entries.validator) +] UploadSessionFinishBatchResultEntry._success_validator = FileMetadata_validator UploadSessionFinishBatchResultEntry._failure_validator = UploadSessionFinishError_validator UploadSessionFinishBatchResultEntry._tagmap = { - 'success': UploadSessionFinishBatchResultEntry._success_validator, - 'failure': UploadSessionFinishBatchResultEntry._failure_validator, + "success": UploadSessionFinishBatchResultEntry._success_validator, + "failure": UploadSessionFinishBatchResultEntry._failure_validator, } UploadSessionFinishError._lookup_failed_validator = UploadSessionLookupError_validator UploadSessionFinishError._path_validator = WriteError_validator -UploadSessionFinishError._properties_error_validator = file_properties.InvalidPropertyGroupError_validator +UploadSessionFinishError._properties_error_validator = ( + file_properties.InvalidPropertyGroupError_validator +) UploadSessionFinishError._too_many_shared_folder_targets_validator = bv.Void() UploadSessionFinishError._too_many_write_operations_validator = bv.Void() UploadSessionFinishError._concurrent_session_data_not_allowed_validator = bv.Void() @@ -14221,29 +15037,41 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionFinishError._encryption_not_supported_validator = bv.Void() UploadSessionFinishError._other_validator = bv.Void() UploadSessionFinishError._tagmap = { - 'lookup_failed': UploadSessionFinishError._lookup_failed_validator, - 'path': UploadSessionFinishError._path_validator, - 'properties_error': UploadSessionFinishError._properties_error_validator, - 'too_many_shared_folder_targets': UploadSessionFinishError._too_many_shared_folder_targets_validator, - 'too_many_write_operations': UploadSessionFinishError._too_many_write_operations_validator, - 'concurrent_session_data_not_allowed': UploadSessionFinishError._concurrent_session_data_not_allowed_validator, - 'concurrent_session_not_closed': UploadSessionFinishError._concurrent_session_not_closed_validator, - 'concurrent_session_missing_data': UploadSessionFinishError._concurrent_session_missing_data_validator, - 'payload_too_large': UploadSessionFinishError._payload_too_large_validator, - 'content_hash_mismatch': UploadSessionFinishError._content_hash_mismatch_validator, - 'encryption_not_supported': UploadSessionFinishError._encryption_not_supported_validator, - 'other': UploadSessionFinishError._other_validator, + "lookup_failed": UploadSessionFinishError._lookup_failed_validator, + "path": UploadSessionFinishError._path_validator, + "properties_error": UploadSessionFinishError._properties_error_validator, + "too_many_shared_folder_targets": UploadSessionFinishError._too_many_shared_folder_targets_validator, + "too_many_write_operations": UploadSessionFinishError._too_many_write_operations_validator, + "concurrent_session_data_not_allowed": UploadSessionFinishError._concurrent_session_data_not_allowed_validator, + "concurrent_session_not_closed": UploadSessionFinishError._concurrent_session_not_closed_validator, + "concurrent_session_missing_data": UploadSessionFinishError._concurrent_session_missing_data_validator, + "payload_too_large": UploadSessionFinishError._payload_too_large_validator, + "content_hash_mismatch": UploadSessionFinishError._content_hash_mismatch_validator, + "encryption_not_supported": UploadSessionFinishError._encryption_not_supported_validator, + "other": UploadSessionFinishError._other_validator, } -UploadSessionFinishError.too_many_shared_folder_targets = UploadSessionFinishError('too_many_shared_folder_targets') -UploadSessionFinishError.too_many_write_operations = UploadSessionFinishError('too_many_write_operations') -UploadSessionFinishError.concurrent_session_data_not_allowed = UploadSessionFinishError('concurrent_session_data_not_allowed') -UploadSessionFinishError.concurrent_session_not_closed = UploadSessionFinishError('concurrent_session_not_closed') -UploadSessionFinishError.concurrent_session_missing_data = UploadSessionFinishError('concurrent_session_missing_data') -UploadSessionFinishError.payload_too_large = UploadSessionFinishError('payload_too_large') -UploadSessionFinishError.content_hash_mismatch = UploadSessionFinishError('content_hash_mismatch') -UploadSessionFinishError.encryption_not_supported = UploadSessionFinishError('encryption_not_supported') -UploadSessionFinishError.other = UploadSessionFinishError('other') +UploadSessionFinishError.too_many_shared_folder_targets = UploadSessionFinishError( + "too_many_shared_folder_targets" +) +UploadSessionFinishError.too_many_write_operations = UploadSessionFinishError( + "too_many_write_operations" +) +UploadSessionFinishError.concurrent_session_data_not_allowed = UploadSessionFinishError( + "concurrent_session_data_not_allowed" +) +UploadSessionFinishError.concurrent_session_not_closed = UploadSessionFinishError( + "concurrent_session_not_closed" +) +UploadSessionFinishError.concurrent_session_missing_data = UploadSessionFinishError( + "concurrent_session_missing_data" +) +UploadSessionFinishError.payload_too_large = UploadSessionFinishError("payload_too_large") +UploadSessionFinishError.content_hash_mismatch = UploadSessionFinishError("content_hash_mismatch") +UploadSessionFinishError.encryption_not_supported = UploadSessionFinishError( + "encryption_not_supported" +) +UploadSessionFinishError.other = UploadSessionFinishError("other") UploadSessionLookupError._not_found_validator = bv.Void() UploadSessionLookupError._incorrect_offset_validator = UploadSessionOffsetError_validator @@ -14255,58 +15083,70 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionLookupError._payload_too_large_validator = bv.Void() UploadSessionLookupError._other_validator = bv.Void() UploadSessionLookupError._tagmap = { - 'not_found': UploadSessionLookupError._not_found_validator, - 'incorrect_offset': UploadSessionLookupError._incorrect_offset_validator, - 'closed': UploadSessionLookupError._closed_validator, - 'not_closed': UploadSessionLookupError._not_closed_validator, - 'too_large': UploadSessionLookupError._too_large_validator, - 'concurrent_session_invalid_offset': UploadSessionLookupError._concurrent_session_invalid_offset_validator, - 'concurrent_session_invalid_data_size': UploadSessionLookupError._concurrent_session_invalid_data_size_validator, - 'payload_too_large': UploadSessionLookupError._payload_too_large_validator, - 'other': UploadSessionLookupError._other_validator, + "not_found": UploadSessionLookupError._not_found_validator, + "incorrect_offset": UploadSessionLookupError._incorrect_offset_validator, + "closed": UploadSessionLookupError._closed_validator, + "not_closed": UploadSessionLookupError._not_closed_validator, + "too_large": UploadSessionLookupError._too_large_validator, + "concurrent_session_invalid_offset": UploadSessionLookupError._concurrent_session_invalid_offset_validator, + "concurrent_session_invalid_data_size": UploadSessionLookupError._concurrent_session_invalid_data_size_validator, + "payload_too_large": UploadSessionLookupError._payload_too_large_validator, + "other": UploadSessionLookupError._other_validator, } -UploadSessionLookupError.not_found = UploadSessionLookupError('not_found') -UploadSessionLookupError.closed = UploadSessionLookupError('closed') -UploadSessionLookupError.not_closed = UploadSessionLookupError('not_closed') -UploadSessionLookupError.too_large = UploadSessionLookupError('too_large') -UploadSessionLookupError.concurrent_session_invalid_offset = UploadSessionLookupError('concurrent_session_invalid_offset') -UploadSessionLookupError.concurrent_session_invalid_data_size = UploadSessionLookupError('concurrent_session_invalid_data_size') -UploadSessionLookupError.payload_too_large = UploadSessionLookupError('payload_too_large') -UploadSessionLookupError.other = UploadSessionLookupError('other') +UploadSessionLookupError.not_found = UploadSessionLookupError("not_found") +UploadSessionLookupError.closed = UploadSessionLookupError("closed") +UploadSessionLookupError.not_closed = UploadSessionLookupError("not_closed") +UploadSessionLookupError.too_large = UploadSessionLookupError("too_large") +UploadSessionLookupError.concurrent_session_invalid_offset = UploadSessionLookupError( + "concurrent_session_invalid_offset" +) +UploadSessionLookupError.concurrent_session_invalid_data_size = UploadSessionLookupError( + "concurrent_session_invalid_data_size" +) +UploadSessionLookupError.payload_too_large = UploadSessionLookupError("payload_too_large") +UploadSessionLookupError.other = UploadSessionLookupError("other") UploadSessionOffsetError.correct_offset.validator = bv.UInt64() -UploadSessionOffsetError._all_field_names_ = set(['correct_offset']) -UploadSessionOffsetError._all_fields_ = [('correct_offset', UploadSessionOffsetError.correct_offset.validator)] +UploadSessionOffsetError._all_field_names_ = set(["correct_offset"]) +UploadSessionOffsetError._all_fields_ = [ + ("correct_offset", UploadSessionOffsetError.correct_offset.validator) +] UploadSessionStartArg.close.validator = bv.Boolean() UploadSessionStartArg.session_type.validator = bv.Nullable(UploadSessionType_validator) UploadSessionStartArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionStartArg._all_field_names_ = set([ - 'close', - 'session_type', - 'content_hash', -]) +UploadSessionStartArg._all_field_names_ = set( + [ + "close", + "session_type", + "content_hash", + ] +) UploadSessionStartArg._all_fields_ = [ - ('close', UploadSessionStartArg.close.validator), - ('session_type', UploadSessionStartArg.session_type.validator), - ('content_hash', UploadSessionStartArg.content_hash.validator), + ("close", UploadSessionStartArg.close.validator), + ("session_type", UploadSessionStartArg.session_type.validator), + ("content_hash", UploadSessionStartArg.content_hash.validator), ] UploadSessionStartBatchArg.session_type.validator = bv.Nullable(UploadSessionType_validator) UploadSessionStartBatchArg.num_sessions.validator = bv.UInt64(min_value=1, max_value=1000) -UploadSessionStartBatchArg._all_field_names_ = set([ - 'session_type', - 'num_sessions', -]) +UploadSessionStartBatchArg._all_field_names_ = set( + [ + "session_type", + "num_sessions", + ] +) UploadSessionStartBatchArg._all_fields_ = [ - ('session_type', UploadSessionStartBatchArg.session_type.validator), - ('num_sessions', UploadSessionStartBatchArg.num_sessions.validator), + ("session_type", UploadSessionStartBatchArg.session_type.validator), + ("num_sessions", UploadSessionStartBatchArg.num_sessions.validator), ] UploadSessionStartBatchResult.session_ids.validator = bv.List(bv.String()) -UploadSessionStartBatchResult._all_field_names_ = set(['session_ids']) -UploadSessionStartBatchResult._all_fields_ = [('session_ids', UploadSessionStartBatchResult.session_ids.validator)] +UploadSessionStartBatchResult._all_field_names_ = set(["session_ids"]) +UploadSessionStartBatchResult._all_fields_ = [ + ("session_ids", UploadSessionStartBatchResult.session_ids.validator) +] UploadSessionStartError._concurrent_session_data_not_allowed_validator = bv.Void() UploadSessionStartError._concurrent_session_close_not_allowed_validator = bv.Void() @@ -14314,55 +15154,63 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionStartError._content_hash_mismatch_validator = bv.Void() UploadSessionStartError._other_validator = bv.Void() UploadSessionStartError._tagmap = { - 'concurrent_session_data_not_allowed': UploadSessionStartError._concurrent_session_data_not_allowed_validator, - 'concurrent_session_close_not_allowed': UploadSessionStartError._concurrent_session_close_not_allowed_validator, - 'payload_too_large': UploadSessionStartError._payload_too_large_validator, - 'content_hash_mismatch': UploadSessionStartError._content_hash_mismatch_validator, - 'other': UploadSessionStartError._other_validator, + "concurrent_session_data_not_allowed": UploadSessionStartError._concurrent_session_data_not_allowed_validator, + "concurrent_session_close_not_allowed": UploadSessionStartError._concurrent_session_close_not_allowed_validator, + "payload_too_large": UploadSessionStartError._payload_too_large_validator, + "content_hash_mismatch": UploadSessionStartError._content_hash_mismatch_validator, + "other": UploadSessionStartError._other_validator, } -UploadSessionStartError.concurrent_session_data_not_allowed = UploadSessionStartError('concurrent_session_data_not_allowed') -UploadSessionStartError.concurrent_session_close_not_allowed = UploadSessionStartError('concurrent_session_close_not_allowed') -UploadSessionStartError.payload_too_large = UploadSessionStartError('payload_too_large') -UploadSessionStartError.content_hash_mismatch = UploadSessionStartError('content_hash_mismatch') -UploadSessionStartError.other = UploadSessionStartError('other') +UploadSessionStartError.concurrent_session_data_not_allowed = UploadSessionStartError( + "concurrent_session_data_not_allowed" +) +UploadSessionStartError.concurrent_session_close_not_allowed = UploadSessionStartError( + "concurrent_session_close_not_allowed" +) +UploadSessionStartError.payload_too_large = UploadSessionStartError("payload_too_large") +UploadSessionStartError.content_hash_mismatch = UploadSessionStartError("content_hash_mismatch") +UploadSessionStartError.other = UploadSessionStartError("other") UploadSessionStartResult.session_id.validator = bv.String() -UploadSessionStartResult._all_field_names_ = set(['session_id']) -UploadSessionStartResult._all_fields_ = [('session_id', UploadSessionStartResult.session_id.validator)] +UploadSessionStartResult._all_field_names_ = set(["session_id"]) +UploadSessionStartResult._all_fields_ = [ + ("session_id", UploadSessionStartResult.session_id.validator) +] UploadSessionType._sequential_validator = bv.Void() UploadSessionType._concurrent_validator = bv.Void() UploadSessionType._other_validator = bv.Void() UploadSessionType._tagmap = { - 'sequential': UploadSessionType._sequential_validator, - 'concurrent': UploadSessionType._concurrent_validator, - 'other': UploadSessionType._other_validator, + "sequential": UploadSessionType._sequential_validator, + "concurrent": UploadSessionType._concurrent_validator, + "other": UploadSessionType._other_validator, } -UploadSessionType.sequential = UploadSessionType('sequential') -UploadSessionType.concurrent = UploadSessionType('concurrent') -UploadSessionType.other = UploadSessionType('other') +UploadSessionType.sequential = UploadSessionType("sequential") +UploadSessionType.concurrent = UploadSessionType("concurrent") +UploadSessionType.other = UploadSessionType("other") UploadWriteFailed.reason.validator = WriteError_validator UploadWriteFailed.upload_session_id.validator = bv.String() -UploadWriteFailed._all_field_names_ = set([ - 'reason', - 'upload_session_id', -]) +UploadWriteFailed._all_field_names_ = set( + [ + "reason", + "upload_session_id", + ] +) UploadWriteFailed._all_fields_ = [ - ('reason', UploadWriteFailed.reason.validator), - ('upload_session_id', UploadWriteFailed.upload_session_id.validator), + ("reason", UploadWriteFailed.reason.validator), + ("upload_session_id", UploadWriteFailed.upload_session_id.validator), ] UserGeneratedTag.tag_text.validator = TagText_validator -UserGeneratedTag._all_field_names_ = set(['tag_text']) -UserGeneratedTag._all_fields_ = [('tag_text', UserGeneratedTag.tag_text.validator)] +UserGeneratedTag._all_field_names_ = set(["tag_text"]) +UserGeneratedTag._all_fields_ = [("tag_text", UserGeneratedTag.tag_text.validator)] VideoMetadata.duration.validator = bv.Nullable(bv.UInt64()) -VideoMetadata._field_names_ = set(['duration']) +VideoMetadata._field_names_ = set(["duration"]) VideoMetadata._all_field_names_ = MediaMetadata._all_field_names_.union(VideoMetadata._field_names_) -VideoMetadata._fields_ = [('duration', VideoMetadata.duration.validator)] +VideoMetadata._fields_ = [("duration", VideoMetadata.duration.validator)] VideoMetadata._all_fields_ = MediaMetadata._all_fields_ + VideoMetadata._fields_ WriteConflictError._file_validator = bv.Void() @@ -14370,16 +15218,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): WriteConflictError._file_ancestor_validator = bv.Void() WriteConflictError._other_validator = bv.Void() WriteConflictError._tagmap = { - 'file': WriteConflictError._file_validator, - 'folder': WriteConflictError._folder_validator, - 'file_ancestor': WriteConflictError._file_ancestor_validator, - 'other': WriteConflictError._other_validator, + "file": WriteConflictError._file_validator, + "folder": WriteConflictError._folder_validator, + "file_ancestor": WriteConflictError._file_ancestor_validator, + "other": WriteConflictError._other_validator, } -WriteConflictError.file = WriteConflictError('file') -WriteConflictError.folder = WriteConflictError('folder') -WriteConflictError.file_ancestor = WriteConflictError('file_ancestor') -WriteConflictError.other = WriteConflictError('other') +WriteConflictError.file = WriteConflictError("file") +WriteConflictError.folder = WriteConflictError("folder") +WriteConflictError.file_ancestor = WriteConflictError("file_ancestor") +WriteConflictError.other = WriteConflictError("other") WriteError._malformed_path_validator = MalformedPathError_validator WriteError._conflict_validator = WriteConflictError_validator @@ -14392,38 +15240,38 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): WriteError._access_restricted_validator = bv.Void() WriteError._other_validator = bv.Void() WriteError._tagmap = { - 'malformed_path': WriteError._malformed_path_validator, - 'conflict': WriteError._conflict_validator, - 'no_write_permission': WriteError._no_write_permission_validator, - 'insufficient_space': WriteError._insufficient_space_validator, - 'disallowed_name': WriteError._disallowed_name_validator, - 'team_folder': WriteError._team_folder_validator, - 'operation_suppressed': WriteError._operation_suppressed_validator, - 'too_many_write_operations': WriteError._too_many_write_operations_validator, - 'access_restricted': WriteError._access_restricted_validator, - 'other': WriteError._other_validator, + "malformed_path": WriteError._malformed_path_validator, + "conflict": WriteError._conflict_validator, + "no_write_permission": WriteError._no_write_permission_validator, + "insufficient_space": WriteError._insufficient_space_validator, + "disallowed_name": WriteError._disallowed_name_validator, + "team_folder": WriteError._team_folder_validator, + "operation_suppressed": WriteError._operation_suppressed_validator, + "too_many_write_operations": WriteError._too_many_write_operations_validator, + "access_restricted": WriteError._access_restricted_validator, + "other": WriteError._other_validator, } -WriteError.no_write_permission = WriteError('no_write_permission') -WriteError.insufficient_space = WriteError('insufficient_space') -WriteError.disallowed_name = WriteError('disallowed_name') -WriteError.team_folder = WriteError('team_folder') -WriteError.operation_suppressed = WriteError('operation_suppressed') -WriteError.too_many_write_operations = WriteError('too_many_write_operations') -WriteError.access_restricted = WriteError('access_restricted') -WriteError.other = WriteError('other') +WriteError.no_write_permission = WriteError("no_write_permission") +WriteError.insufficient_space = WriteError("insufficient_space") +WriteError.disallowed_name = WriteError("disallowed_name") +WriteError.team_folder = WriteError("team_folder") +WriteError.operation_suppressed = WriteError("operation_suppressed") +WriteError.too_many_write_operations = WriteError("too_many_write_operations") +WriteError.access_restricted = WriteError("access_restricted") +WriteError.other = WriteError("other") WriteMode._add_validator = bv.Void() WriteMode._overwrite_validator = bv.Void() WriteMode._update_validator = Rev_validator WriteMode._tagmap = { - 'add': WriteMode._add_validator, - 'overwrite': WriteMode._overwrite_validator, - 'update': WriteMode._update_validator, + "add": WriteMode._add_validator, + "overwrite": WriteMode._overwrite_validator, + "update": WriteMode._update_validator, } -WriteMode.add = WriteMode('add') -WriteMode.overwrite = WriteMode('overwrite') +WriteMode.add = WriteMode("add") +WriteMode.overwrite = WriteMode("overwrite") GetMetadataArg.include_media_info.default = False GetMetadataArg.include_deleted.default = False @@ -14476,810 +15324,675 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionAppendBatchArgEntry.close.default = False UploadSessionStartArg.close.default = False alpha_get_metadata = bb.Route( - 'alpha/get_metadata', + "alpha/get_metadata", 1, True, AlphaGetMetadataArg_validator, Metadata_validator, AlphaGetMetadataError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) alpha_upload = bb.Route( - 'alpha/upload', + "alpha/upload", 1, True, UploadArg_validator, FileMetadata_validator, UploadError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'upload'}, + {"auth": "user", "host": "content", "style": "upload"}, ) copy = bb.Route( - 'copy', + "copy", 1, True, RelocationArg_validator, Metadata_validator, RelocationError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) copy_v2 = bb.Route( - 'copy', + "copy", 2, False, RelocationArg_validator, RelocationResult_validator, RelocationError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) copy_batch = bb.Route( - 'copy_batch', + "copy_batch", 1, True, RelocationBatchArg_validator, RelocationBatchLaunch_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) copy_batch_v2 = bb.Route( - 'copy_batch', + "copy_batch", 2, False, CopyBatchArg_validator, RelocationBatchV2Launch_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) copy_batch_check = bb.Route( - 'copy_batch/check', + "copy_batch/check", 1, True, async_.PollArg_validator, RelocationBatchJobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) copy_batch_check_v2 = bb.Route( - 'copy_batch/check', + "copy_batch/check", 2, False, async_.PollArg_validator, RelocationBatchV2JobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) copy_reference_get = bb.Route( - 'copy_reference/get', + "copy_reference/get", 1, False, GetCopyReferenceArg_validator, GetCopyReferenceResult_validator, GetCopyReferenceError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) copy_reference_save = bb.Route( - 'copy_reference/save', + "copy_reference/save", 1, False, SaveCopyReferenceArg_validator, SaveCopyReferenceResult_validator, SaveCopyReferenceError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) create_folder = bb.Route( - 'create_folder', + "create_folder", 1, True, CreateFolderArg_validator, FolderMetadata_validator, CreateFolderError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) create_folder_v2 = bb.Route( - 'create_folder', + "create_folder", 2, False, CreateFolderArg_validator, CreateFolderResult_validator, CreateFolderError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) create_folder_batch = bb.Route( - 'create_folder_batch', + "create_folder_batch", 1, False, CreateFolderBatchArg_validator, CreateFolderBatchLaunch_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) create_folder_batch_check = bb.Route( - 'create_folder_batch/check', + "create_folder_batch/check", 1, False, async_.PollArg_validator, CreateFolderBatchJobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) delete = bb.Route( - 'delete', + "delete", 1, True, DeleteArg_validator, Metadata_validator, DeleteError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) delete_v2 = bb.Route( - 'delete', + "delete", 2, False, DeleteArg_validator, DeleteResult_validator, DeleteError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) delete_batch = bb.Route( - 'delete_batch', + "delete_batch", 1, False, DeleteBatchArg_validator, DeleteBatchLaunch_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) delete_batch_check = bb.Route( - 'delete_batch/check', + "delete_batch/check", 1, False, async_.PollArg_validator, DeleteBatchJobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) download = bb.Route( - 'download', + "download", 1, False, DownloadArg_validator, FileMetadata_validator, DownloadError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'download'}, + {"auth": "user", "host": "content", "style": "download"}, ) download_zip = bb.Route( - 'download_zip', + "download_zip", 1, False, DownloadZipArg_validator, DownloadZipResult_validator, DownloadZipError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'download'}, + {"auth": "user", "host": "content", "style": "download"}, ) export = bb.Route( - 'export', + "export", 1, False, ExportArg_validator, ExportResult_validator, ExportError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'download'}, + {"auth": "user", "host": "content", "style": "download"}, ) get_file_lock_batch = bb.Route( - 'get_file_lock_batch', + "get_file_lock_batch", 1, False, LockFileBatchArg_validator, LockFileBatchResult_validator, LockFileError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_metadata = bb.Route( - 'get_metadata', + "get_metadata", 1, False, GetMetadataArg_validator, Metadata_validator, GetMetadataError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_preview = bb.Route( - 'get_preview', + "get_preview", 1, False, PreviewArg_validator, FileMetadata_validator, PreviewError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'download'}, + {"auth": "user", "host": "content", "style": "download"}, ) get_temporary_link = bb.Route( - 'get_temporary_link', + "get_temporary_link", 1, False, GetTemporaryLinkArg_validator, GetTemporaryLinkResult_validator, GetTemporaryLinkError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_temporary_upload_link = bb.Route( - 'get_temporary_upload_link', + "get_temporary_upload_link", 1, False, GetTemporaryUploadLinkArg_validator, GetTemporaryUploadLinkResult_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_thumbnail = bb.Route( - 'get_thumbnail', + "get_thumbnail", 1, False, ThumbnailArg_validator, FileMetadata_validator, ThumbnailError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'download'}, + {"auth": "user", "host": "content", "style": "download"}, ) get_thumbnail_v2 = bb.Route( - 'get_thumbnail', + "get_thumbnail", 2, False, ThumbnailV2Arg_validator, PreviewResult_validator, ThumbnailV2Error_validator, - {'auth': 'app, user', - 'host': 'content', - 'style': 'download'}, + {"auth": "app, user", "host": "content", "style": "download"}, ) get_thumbnail_batch = bb.Route( - 'get_thumbnail_batch', + "get_thumbnail_batch", 1, False, GetThumbnailBatchArg_validator, GetThumbnailBatchResult_validator, GetThumbnailBatchError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'rpc'}, + {"auth": "user", "host": "content", "style": "rpc"}, ) list_folder = bb.Route( - 'list_folder', + "list_folder", 1, False, ListFolderArg_validator, ListFolderResult_validator, ListFolderError_validator, - {'auth': 'app, user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app, user", "host": "api", "style": "rpc"}, ) list_folder_continue = bb.Route( - 'list_folder/continue', + "list_folder/continue", 1, False, ListFolderContinueArg_validator, ListFolderResult_validator, ListFolderContinueError_validator, - {'auth': 'app, user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app, user", "host": "api", "style": "rpc"}, ) list_folder_get_latest_cursor = bb.Route( - 'list_folder/get_latest_cursor', + "list_folder/get_latest_cursor", 1, False, ListFolderArg_validator, ListFolderGetLatestCursorResult_validator, ListFolderError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_folder_longpoll = bb.Route( - 'list_folder/longpoll', + "list_folder/longpoll", 1, False, ListFolderLongpollArg_validator, ListFolderLongpollResult_validator, ListFolderLongpollError_validator, - {'auth': 'noauth', - 'host': 'notify', - 'style': 'rpc'}, + {"auth": "noauth", "host": "notify", "style": "rpc"}, ) list_revisions = bb.Route( - 'list_revisions', + "list_revisions", 1, False, ListRevisionsArg_validator, ListRevisionsResult_validator, ListRevisionsError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) lock_file_batch = bb.Route( - 'lock_file_batch', + "lock_file_batch", 1, False, LockFileBatchArg_validator, LockFileBatchResult_validator, LockFileError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) move = bb.Route( - 'move', + "move", 1, True, RelocationArg_validator, Metadata_validator, RelocationError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) move_v2 = bb.Route( - 'move', + "move", 2, False, RelocationArg_validator, RelocationResult_validator, RelocationError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) move_batch = bb.Route( - 'move_batch', + "move_batch", 1, True, RelocationBatchArg_validator, RelocationBatchLaunch_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) move_batch_v2 = bb.Route( - 'move_batch', + "move_batch", 2, False, MoveBatchArg_validator, RelocationBatchV2Launch_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) move_batch_check = bb.Route( - 'move_batch/check', + "move_batch/check", 1, True, async_.PollArg_validator, RelocationBatchJobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) move_batch_check_v2 = bb.Route( - 'move_batch/check', + "move_batch/check", 2, False, async_.PollArg_validator, RelocationBatchV2JobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) paper_create = bb.Route( - 'paper/create', + "paper/create", 1, False, PaperCreateArg_validator, PaperCreateResult_validator, PaperCreateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'upload'}, + {"auth": "user", "host": "api", "style": "upload"}, ) paper_update = bb.Route( - 'paper/update', + "paper/update", 1, False, PaperUpdateArg_validator, PaperUpdateResult_validator, PaperUpdateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'upload'}, + {"auth": "user", "host": "api", "style": "upload"}, ) permanently_delete = bb.Route( - 'permanently_delete', + "permanently_delete", 1, False, DeleteArg_validator, bv.Void(), DeleteError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) properties_add = bb.Route( - 'properties/add', + "properties/add", 1, True, file_properties.AddPropertiesArg_validator, bv.Void(), file_properties.AddPropertiesError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) properties_overwrite = bb.Route( - 'properties/overwrite', + "properties/overwrite", 1, True, file_properties.OverwritePropertyGroupArg_validator, bv.Void(), file_properties.InvalidPropertyGroupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) properties_update = bb.Route( - 'properties/update', + "properties/update", 1, True, file_properties.UpdatePropertiesArg_validator, bv.Void(), file_properties.UpdatePropertiesError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) restore = bb.Route( - 'restore', + "restore", 1, False, RestoreArg_validator, FileMetadata_validator, RestoreError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) save_url = bb.Route( - 'save_url', + "save_url", 1, False, SaveUrlArg_validator, SaveUrlResult_validator, SaveUrlError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) save_url_check_job_status = bb.Route( - 'save_url/check_job_status', + "save_url/check_job_status", 1, False, async_.PollArg_validator, SaveUrlJobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) search = bb.Route( - 'search', + "search", 1, True, SearchArg_validator, SearchResult_validator, SearchError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) search_v2 = bb.Route( - 'search', + "search", 2, False, SearchV2Arg_validator, SearchV2Result_validator, SearchError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) search_continue_v2 = bb.Route( - 'search/continue', + "search/continue", 2, False, SearchV2ContinueArg_validator, SearchV2Result_validator, SearchError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) tags_add = bb.Route( - 'tags/add', + "tags/add", 1, False, AddTagArg_validator, bv.Void(), AddTagError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) tags_get = bb.Route( - 'tags/get', + "tags/get", 1, False, GetTagsArg_validator, GetTagsResult_validator, BaseTagError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) tags_remove = bb.Route( - 'tags/remove', + "tags/remove", 1, False, RemoveTagArg_validator, bv.Void(), RemoveTagError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) unlock_file_batch = bb.Route( - 'unlock_file_batch', + "unlock_file_batch", 1, False, UnlockFileBatchArg_validator, LockFileBatchResult_validator, LockFileError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) upload = bb.Route( - 'upload', + "upload", 1, False, UploadArg_validator, FileMetadata_validator, UploadError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'upload'}, + {"auth": "user", "host": "content", "style": "upload"}, ) upload_session_append = bb.Route( - 'upload_session/append', + "upload_session/append", 1, True, UploadSessionCursor_validator, bv.Void(), UploadSessionAppendError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'upload'}, + {"auth": "user", "host": "content", "style": "upload"}, ) upload_session_append_v2 = bb.Route( - 'upload_session/append', + "upload_session/append", 2, False, UploadSessionAppendArg_validator, bv.Void(), UploadSessionAppendError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'upload'}, + {"auth": "user", "host": "content", "style": "upload"}, ) upload_session_append_batch = bb.Route( - 'upload_session/append_batch', + "upload_session/append_batch", 1, False, UploadSessionAppendBatchArg_validator, UploadSessionAppendBatchResult_validator, UploadSessionAppendBatchError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'upload'}, + {"auth": "user", "host": "content", "style": "upload"}, ) upload_session_finish = bb.Route( - 'upload_session/finish', + "upload_session/finish", 1, False, UploadSessionFinishArg_validator, FileMetadata_validator, UploadSessionFinishError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'upload'}, + {"auth": "user", "host": "content", "style": "upload"}, ) upload_session_finish_batch = bb.Route( - 'upload_session/finish_batch', + "upload_session/finish_batch", 1, True, UploadSessionFinishBatchArg_validator, UploadSessionFinishBatchLaunch_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) upload_session_finish_batch_v2 = bb.Route( - 'upload_session/finish_batch', + "upload_session/finish_batch", 2, False, UploadSessionFinishBatchArg_validator, UploadSessionFinishBatchResult_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) upload_session_finish_batch_check = bb.Route( - 'upload_session/finish_batch/check', + "upload_session/finish_batch/check", 1, False, async_.PollArg_validator, UploadSessionFinishBatchJobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) upload_session_start = bb.Route( - 'upload_session/start', + "upload_session/start", 1, False, UploadSessionStartArg_validator, UploadSessionStartResult_validator, UploadSessionStartError_validator, - {'auth': 'user', - 'host': 'content', - 'style': 'upload'}, + {"auth": "user", "host": "content", "style": "upload"}, ) upload_session_start_batch = bb.Route( - 'upload_session/start_batch', + "upload_session/start_batch", 1, False, UploadSessionStartBatchArg_validator, UploadSessionStartBatchResult_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'alpha/get_metadata': alpha_get_metadata, - 'alpha/upload': alpha_upload, - 'copy': copy, - 'copy:2': copy_v2, - 'copy_batch': copy_batch, - 'copy_batch:2': copy_batch_v2, - 'copy_batch/check': copy_batch_check, - 'copy_batch/check:2': copy_batch_check_v2, - 'copy_reference/get': copy_reference_get, - 'copy_reference/save': copy_reference_save, - 'create_folder': create_folder, - 'create_folder:2': create_folder_v2, - 'create_folder_batch': create_folder_batch, - 'create_folder_batch/check': create_folder_batch_check, - 'delete': delete, - 'delete:2': delete_v2, - 'delete_batch': delete_batch, - 'delete_batch/check': delete_batch_check, - 'download': download, - 'download_zip': download_zip, - 'export': export, - 'get_file_lock_batch': get_file_lock_batch, - 'get_metadata': get_metadata, - 'get_preview': get_preview, - 'get_temporary_link': get_temporary_link, - 'get_temporary_upload_link': get_temporary_upload_link, - 'get_thumbnail': get_thumbnail, - 'get_thumbnail:2': get_thumbnail_v2, - 'get_thumbnail_batch': get_thumbnail_batch, - 'list_folder': list_folder, - 'list_folder/continue': list_folder_continue, - 'list_folder/get_latest_cursor': list_folder_get_latest_cursor, - 'list_folder/longpoll': list_folder_longpoll, - 'list_revisions': list_revisions, - 'lock_file_batch': lock_file_batch, - 'move': move, - 'move:2': move_v2, - 'move_batch': move_batch, - 'move_batch:2': move_batch_v2, - 'move_batch/check': move_batch_check, - 'move_batch/check:2': move_batch_check_v2, - 'paper/create': paper_create, - 'paper/update': paper_update, - 'permanently_delete': permanently_delete, - 'properties/add': properties_add, - 'properties/overwrite': properties_overwrite, - 'properties/update': properties_update, - 'restore': restore, - 'save_url': save_url, - 'save_url/check_job_status': save_url_check_job_status, - 'search': search, - 'search:2': search_v2, - 'search/continue:2': search_continue_v2, - 'tags/add': tags_add, - 'tags/get': tags_get, - 'tags/remove': tags_remove, - 'unlock_file_batch': unlock_file_batch, - 'upload': upload, - 'upload_session/append': upload_session_append, - 'upload_session/append:2': upload_session_append_v2, - 'upload_session/append_batch': upload_session_append_batch, - 'upload_session/finish': upload_session_finish, - 'upload_session/finish_batch': upload_session_finish_batch, - 'upload_session/finish_batch:2': upload_session_finish_batch_v2, - 'upload_session/finish_batch/check': upload_session_finish_batch_check, - 'upload_session/start': upload_session_start, - 'upload_session/start_batch': upload_session_start_batch, + "alpha/get_metadata": alpha_get_metadata, + "alpha/upload": alpha_upload, + "copy": copy, + "copy:2": copy_v2, + "copy_batch": copy_batch, + "copy_batch:2": copy_batch_v2, + "copy_batch/check": copy_batch_check, + "copy_batch/check:2": copy_batch_check_v2, + "copy_reference/get": copy_reference_get, + "copy_reference/save": copy_reference_save, + "create_folder": create_folder, + "create_folder:2": create_folder_v2, + "create_folder_batch": create_folder_batch, + "create_folder_batch/check": create_folder_batch_check, + "delete": delete, + "delete:2": delete_v2, + "delete_batch": delete_batch, + "delete_batch/check": delete_batch_check, + "download": download, + "download_zip": download_zip, + "export": export, + "get_file_lock_batch": get_file_lock_batch, + "get_metadata": get_metadata, + "get_preview": get_preview, + "get_temporary_link": get_temporary_link, + "get_temporary_upload_link": get_temporary_upload_link, + "get_thumbnail": get_thumbnail, + "get_thumbnail:2": get_thumbnail_v2, + "get_thumbnail_batch": get_thumbnail_batch, + "list_folder": list_folder, + "list_folder/continue": list_folder_continue, + "list_folder/get_latest_cursor": list_folder_get_latest_cursor, + "list_folder/longpoll": list_folder_longpoll, + "list_revisions": list_revisions, + "lock_file_batch": lock_file_batch, + "move": move, + "move:2": move_v2, + "move_batch": move_batch, + "move_batch:2": move_batch_v2, + "move_batch/check": move_batch_check, + "move_batch/check:2": move_batch_check_v2, + "paper/create": paper_create, + "paper/update": paper_update, + "permanently_delete": permanently_delete, + "properties/add": properties_add, + "properties/overwrite": properties_overwrite, + "properties/update": properties_update, + "restore": restore, + "save_url": save_url, + "save_url/check_job_status": save_url_check_job_status, + "search": search, + "search:2": search_v2, + "search/continue:2": search_continue_v2, + "tags/add": tags_add, + "tags/get": tags_get, + "tags/remove": tags_remove, + "unlock_file_batch": unlock_file_batch, + "upload": upload, + "upload_session/append": upload_session_append, + "upload_session/append:2": upload_session_append_v2, + "upload_session/append_batch": upload_session_append_batch, + "upload_session/finish": upload_session_finish, + "upload_session/finish_batch": upload_session_finish_batch, + "upload_session/finish_batch:2": upload_session_finish_batch_v2, + "upload_session/finish_batch/check": upload_session_finish_batch_check, + "upload_session/start": upload_session_start, + "upload_session/start_batch": upload_session_start_batch, } - diff --git a/dropbox/oauth.py b/dropbox/oauth.py index 372e3e02..3ce5530d 100644 --- a/dropbox/oauth.py +++ b/dropbox/oauth.py @@ -1,15 +1,15 @@ import hashlib __all__ = [ - 'BadRequestException', - 'BadStateException', - 'CsrfException', - 'DropboxOAuth2Flow', - 'DropboxOAuth2FlowNoRedirect', - 'NotApprovedException', - 'OAuth2FlowNoRedirectResult', - 'OAuth2FlowResult', - 'ProviderException', + "BadRequestException", + "BadStateException", + "CsrfException", + "DropboxOAuth2Flow", + "DropboxOAuth2FlowNoRedirect", + "NotApprovedException", + "OAuth2FlowNoRedirectResult", + "OAuth2FlowResult", + "ProviderException", ] import base64 @@ -28,10 +28,11 @@ url_path_quote = urllib.parse.quote url_encode = urllib.parse.urlencode -TOKEN_ACCESS_TYPES = ['offline', 'online', 'legacy'] -INCLUDE_GRANTED_SCOPES_TYPES = ['user', 'team'] +TOKEN_ACCESS_TYPES = ["offline", "online", "legacy"] +INCLUDE_GRANTED_SCOPES_TYPES = ["user", "team"] PKCE_VERIFIER_LENGTH = 128 + class OAuth2FlowNoRedirectResult(object): """ Authorization information for an OAuth2Flow performed with no redirect. @@ -62,7 +63,7 @@ def __init__(self, access_token, account_id, user_id, refresh_token, expiration, self.scope = scope def __repr__(self): - return 'OAuth2FlowNoRedirectResult(%s, %s, %s, %s, %s, %s)' % ( + return "OAuth2FlowNoRedirectResult(%s, %s, %s, %s, %s, %s)" % ( self.access_token, self.account_id, self.user_id, @@ -77,8 +78,16 @@ class OAuth2FlowResult(OAuth2FlowNoRedirectResult): Authorization information for an :class:`OAuth2Flow` with redirect. """ - def __init__(self, access_token, account_id, user_id, url_state, refresh_token, - expires_in, scope): + def __init__( + self, + access_token, + account_id, + user_id, + url_state, + refresh_token, + expires_in, + scope, + ): """ Same as :class:`OAuth2FlowNoRedirectResult` but with url_state. @@ -90,17 +99,25 @@ def __init__(self, access_token, account_id, user_id, url_state, refresh_token, user_id=user_id, refresh_token=refresh_token, expiration=expires_in, - scope=scope) + scope=scope, + ) self.url_state = url_state @classmethod def from_no_redirect_result(cls, result, url_state): assert isinstance(result, OAuth2FlowNoRedirectResult) - return cls(result.access_token, result.account_id, result.user_id, - url_state, result.refresh_token, result.expires_at, result.scope) + return cls( + result.access_token, + result.account_id, + result.user_id, + url_state, + result.refresh_token, + result.expires_at, + result.scope, + ) def __repr__(self): - return 'OAuth2FlowResult(%s, %s, %s, %s, %s, %s, %s)' % ( + return "OAuth2FlowResult(%s, %s, %s, %s, %s, %s, %s)" % ( self.access_token, self.account_id, self.user_id, @@ -112,15 +129,24 @@ def __repr__(self): class DropboxOAuth2FlowBase(object): - - def __init__(self, consumer_key, consumer_secret=None, locale=None, token_access_type=None, - scope=None, include_granted_scopes=None, use_pkce=False, timeout=DEFAULT_TIMEOUT, - ca_certs=None): + def __init__( + self, + consumer_key, + consumer_secret=None, + locale=None, + token_access_type=None, + scope=None, + include_granted_scopes=None, + use_pkce=False, + timeout=DEFAULT_TIMEOUT, + ca_certs=None, + ): if scope is not None and (not isinstance(scope, list) or len(scope) == 0): raise BadInputException("Scope list must be of type list") if token_access_type is not None and token_access_type not in TOKEN_ACCESS_TYPES: - raise BadInputException("Token access type must be from the following enum: {}".format( - TOKEN_ACCESS_TYPES)) + raise BadInputException( + "Token access type must be from the following enum: {}".format(TOKEN_ACCESS_TYPES) + ) if not (use_pkce or consumer_secret): raise BadInputException("Must pass in either consumer secret or use PKCE") if include_granted_scopes and not scope: @@ -142,80 +168,83 @@ def __init__(self, consumer_key, consumer_secret=None, locale=None, token_access self.code_verifier = None self.code_challenge = None - def _get_authorize_url(self, redirect_uri, state, token_access_type=None, scope=None, - include_granted_scopes=None, code_challenge=None): - params = dict(response_type='code', - client_id=self.consumer_key) + def _get_authorize_url( + self, + redirect_uri, + state, + token_access_type=None, + scope=None, + include_granted_scopes=None, + code_challenge=None, + ): + params = dict(response_type="code", client_id=self.consumer_key) if redirect_uri is not None: - params['redirect_uri'] = redirect_uri + params["redirect_uri"] = redirect_uri if state is not None: - params['state'] = state + params["state"] = state if token_access_type is not None: assert token_access_type in TOKEN_ACCESS_TYPES - params['token_access_type'] = token_access_type + params["token_access_type"] = token_access_type if code_challenge: - params['code_challenge'] = code_challenge - params['code_challenge_method'] = 'S256' + params["code_challenge"] = code_challenge + params["code_challenge_method"] = "S256" if scope is not None: - params['scope'] = " ".join(scope) + params["scope"] = " ".join(scope) if include_granted_scopes is not None: assert include_granted_scopes in INCLUDE_GRANTED_SCOPES_TYPES - params['include_granted_scopes'] = include_granted_scopes + params["include_granted_scopes"] = include_granted_scopes - return self.build_url('/oauth2/authorize', params, WEB_HOST) + return self.build_url("/oauth2/authorize", params, WEB_HOST) def _finish(self, code, redirect_uri, code_verifier): - url = self.build_url('/oauth2/token') - params = {'grant_type': 'authorization_code', - 'code': code, - 'client_id': self.consumer_key, - } + url = self.build_url("/oauth2/token") + params = { + "grant_type": "authorization_code", + "code": code, + "client_id": self.consumer_key, + } if code_verifier: - params['code_verifier'] = code_verifier + params["code_verifier"] = code_verifier else: - params['client_secret'] = self.consumer_secret + params["client_secret"] = self.consumer_secret if self.locale is not None: - params['locale'] = self.locale + params["locale"] = self.locale if redirect_uri is not None: - params['redirect_uri'] = redirect_uri + params["redirect_uri"] = redirect_uri resp = self.requests_session.post(url, data=params, timeout=self._timeout) resp.raise_for_status() d = resp.json() - if 'team_id' in d: - account_id = d['team_id'] + if "team_id" in d: + account_id = d["team_id"] else: - account_id = d['account_id'] + account_id = d["account_id"] - access_token = d['access_token'] + access_token = d["access_token"] - if 'refresh_token' in d: - refresh_token = d['refresh_token'] + if "refresh_token" in d: + refresh_token = d["refresh_token"] else: refresh_token = "" - if 'expires_in' in d: - expires_in = d['expires_in'] + if "expires_in" in d: + expires_in = d["expires_in"] else: expires_in = None - if 'scope' in d: - scope = d['scope'] + if "scope" in d: + scope = d["scope"] else: scope = None - uid = d['uid'] + uid = d["uid"] return OAuth2FlowNoRedirectResult( - access_token, - account_id, - uid, - refresh_token, - expires_in, - scope) + access_token, account_id, uid, refresh_token, expires_in, scope + ) def build_path(self, target, params=None): """Build the path component for an API URL. @@ -234,7 +263,7 @@ def build_path(self, target, params=None): params = params.copy() if self.locale: - params['locale'] = self.locale + params["locale"] = self.locale if params: query_string = _params_to_urlencoded(params) @@ -265,9 +294,18 @@ class DropboxOAuth2FlowNoRedirect(DropboxOAuth2FlowBase): """ - def __init__(self, consumer_key, consumer_secret=None, locale=None, token_access_type=None, - scope=None, include_granted_scopes=None, use_pkce=False, timeout=DEFAULT_TIMEOUT, - ca_certs=None): # noqa: E501; + def __init__( + self, + consumer_key, + consumer_secret=None, + locale=None, + token_access_type=None, + scope=None, + include_granted_scopes=None, + use_pkce=False, + timeout=DEFAULT_TIMEOUT, + ca_certs=None, + ): # noqa: E501; """ Construct an instance. @@ -312,7 +350,7 @@ def __init__(self, consumer_key, consumer_secret=None, locale=None, token_access include_granted_scopes=include_granted_scopes, use_pkce=use_pkce, timeout=timeout, - ca_certs=ca_certs + ca_certs=ca_certs, ) def start(self): @@ -323,10 +361,14 @@ def start(self): your app, which gives your app permission to access the user's Dropbox account. Tell the user to visit this URL and approve your app. """ - return self._get_authorize_url(None, None, self.token_access_type, - scope=self.scope, - include_granted_scopes=self.include_granted_scopes, - code_challenge=self.code_challenge) + return self._get_authorize_url( + None, + None, + self.token_access_type, + scope=self.scope, + include_granted_scopes=self.include_granted_scopes, + code_challenge=self.code_challenge, + ) def finish(self, code): """ @@ -354,11 +396,21 @@ class DropboxOAuth2Flow(DropboxOAuth2FlowBase): """ - def __init__(self, consumer_key, redirect_uri, session, - csrf_token_session_key, consumer_secret=None, locale=None, - token_access_type=None, scope=None, - include_granted_scopes=None, use_pkce=False, timeout=DEFAULT_TIMEOUT, - ca_certs=None): + def __init__( + self, + consumer_key, + redirect_uri, + session, + csrf_token_session_key, + consumer_secret=None, + locale=None, + token_access_type=None, + scope=None, + include_granted_scopes=None, + use_pkce=False, + timeout=DEFAULT_TIMEOUT, + ca_certs=None, + ): """ Construct an instance. @@ -410,7 +462,7 @@ def __init__(self, consumer_key, redirect_uri, session, include_granted_scopes=include_granted_scopes, use_pkce=use_pkce, timeout=timeout, - ca_certs=ca_certs + ca_certs=ca_certs, ) self.redirect_uri = redirect_uri self.session = session @@ -434,16 +486,20 @@ def start(self, url_state=None): app, which gives your app permission to access the user's Dropbox account. Tell the user to visit this URL and approve your app. """ - csrf_token = base64.urlsafe_b64encode(os.urandom(16)).decode('ascii') + csrf_token = base64.urlsafe_b64encode(os.urandom(16)).decode("ascii") state = csrf_token if url_state is not None: state += "|" + url_state self.session[self.csrf_token_session_key] = csrf_token - return self._get_authorize_url(self.redirect_uri, state, self.token_access_type, - scope=self.scope, - include_granted_scopes=self.include_granted_scopes, - code_challenge=self.code_challenge) + return self._get_authorize_url( + self.redirect_uri, + state, + self.token_access_type, + scope=self.scope, + include_granted_scopes=self.include_granted_scopes, + code_challenge=self.code_challenge, + ) def finish(self, query_params): """ @@ -463,57 +519,53 @@ def finish(self, query_params): """ # Check well-formedness of request. - state = query_params.get('state') + state = query_params.get("state") if state is None: raise BadRequestException("Missing query parameter 'state'.") - error = query_params.get('error') - error_description = query_params.get('error_description') - code = query_params.get('code') + error = query_params.get("error") + error_description = query_params.get("error_description") + code = query_params.get("code") if error is not None and code is not None: raise BadRequestException( - "Query parameters 'code' and 'error' are both set; " - "only one must be set.") + "Query parameters 'code' and 'error' are both set; only one must be set." + ) if error is None and code is None: - raise BadRequestException( - "Neither query parameter 'code' or 'error' is set.") + raise BadRequestException("Neither query parameter 'code' or 'error' is set.") # Check CSRF token if self.csrf_token_session_key not in self.session: - raise BadStateException('Missing CSRF token in session.') + raise BadStateException("Missing CSRF token in session.") csrf_token_from_session = self.session[self.csrf_token_session_key] if len(csrf_token_from_session) <= 20: - raise AssertionError('CSRF token unexpectedly short: %r' % - csrf_token_from_session) + raise AssertionError("CSRF token unexpectedly short: %r" % csrf_token_from_session) - split_pos = state.find('|') + split_pos = state.find("|") if split_pos < 0: given_csrf_token = state url_state = None else: given_csrf_token = state[0:split_pos] - url_state = state[split_pos + 1:] + url_state = state[split_pos + 1 :] if not _safe_equals(csrf_token_from_session, given_csrf_token): - raise CsrfException('expected %r, got %r' % - (csrf_token_from_session, given_csrf_token)) + raise CsrfException("expected %r, got %r" % (csrf_token_from_session, given_csrf_token)) del self.session[self.csrf_token_session_key] # Check for error identifier if error is not None: - if error == 'access_denied': + if error == "access_denied": # The user clicked "Deny" if error_description is None: - raise NotApprovedException( - 'No additional description from Dropbox') + raise NotApprovedException("No additional description from Dropbox") else: raise NotApprovedException( - 'Additional description from Dropbox: %s' % - error_description) + "Additional description from Dropbox: %s" % error_description + ) else: # All other errors full_message = error @@ -524,8 +576,7 @@ def finish(self, query_params): # If everything went ok, make the network call to get an access token. no_redirect_result = self._finish(code, self.redirect_uri, self.code_verifier) - return OAuth2FlowResult.from_no_redirect_result( - no_redirect_result, url_state) + return OAuth2FlowResult.from_no_redirect_result(no_redirect_result, url_state) class BadRequestException(Exception): @@ -534,6 +585,7 @@ class BadRequestException(Exception): The recommended action is to show an HTTP 400 error page. """ + pass @@ -544,6 +596,7 @@ class BadStateException(Exception): The recommended action is to redirect the user's browser to try the approval process again. """ + pass @@ -554,6 +607,7 @@ class CsrfException(Exception): The recommended action is to respond with an HTTP 403 error page. """ + pass @@ -561,6 +615,7 @@ class NotApprovedException(Exception): """ The user chose not to approve your app. """ + pass @@ -571,6 +626,7 @@ class ProviderException(Exception): The recommended action is to log the error, tell the user something went wrong, and let them try again. """ + pass @@ -581,6 +637,7 @@ class BadInputException(Exception): This should only ever be thrown during testing, app should have validation of input prior to reaching this point """ + pass @@ -601,27 +658,30 @@ def _params_to_urlencoded(params): Keys are values are ``str()``'d before calling :meth:`urllib.urlencode`, with the exception of unicode objects which are utf8-encoded. """ + def encode(o): if isinstance(o, bytes): return o else: if isinstance(o, str): - return o.encode('utf-8') + return o.encode("utf-8") else: - return str(o).encode('utf-8') + return str(o).encode("utf-8") utf8_params = {encode(k): encode(v) for k, v in params.items()} return url_encode(utf8_params) + def _generate_pkce_code_verifier(): - code_verifier = base64.urlsafe_b64encode(os.urandom(PKCE_VERIFIER_LENGTH)).decode('utf-8') - code_verifier = re.sub('[^a-zA-Z0-9]+', '', code_verifier) + code_verifier = base64.urlsafe_b64encode(os.urandom(PKCE_VERIFIER_LENGTH)).decode("utf-8") + code_verifier = re.sub("[^a-zA-Z0-9]+", "", code_verifier) if len(code_verifier) > PKCE_VERIFIER_LENGTH: code_verifier = code_verifier[:128] return code_verifier + def _generate_pkce_code_challenge(code_verifier): - code_challenge = hashlib.sha256(code_verifier.encode('utf-8')).digest() - code_challenge = base64.urlsafe_b64encode(code_challenge).decode('utf-8') - code_challenge = code_challenge.replace('=', '') + code_challenge = hashlib.sha256(code_verifier.encode("utf-8")).digest() + code_challenge = base64.urlsafe_b64encode(code_challenge).decode("utf-8") + code_challenge = code_challenge.replace("=", "") return code_challenge diff --git a/dropbox/openid.py b/dropbox/openid.py index b1595b2c..d5f48404 100644 --- a/dropbox/openid.py +++ b/dropbox/openid.py @@ -7,6 +7,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class OpenIdError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -17,7 +18,7 @@ class OpenIdError(bb.Union): Missing openid claims for the associated access token. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition incorrect_openid_scopes = None # Attribute is overwritten below the class definition @@ -29,7 +30,7 @@ def is_incorrect_openid_scopes(self): :rtype: bool """ - return self._tag == 'incorrect_openid_scopes' + return self._tag == "incorrect_openid_scopes" def is_other(self): """ @@ -37,20 +38,21 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(OpenIdError, self)._process_custom_annotations(annotation_type, field_path, processor) + OpenIdError_validator = bv.Union(OpenIdError) + class UserInfoArgs(bb.Struct): """ No Parameters """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -58,10 +60,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserInfoArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserInfoArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserInfoArgs_validator = bv.Struct(UserInfoArgs) + class UserInfoError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -69,7 +75,7 @@ class UserInfoError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -82,7 +88,7 @@ def openid_error(cls, val): :param OpenIdError val: :rtype: UserInfoError """ - return cls('openid_error', val) + return cls("openid_error", val) def is_openid_error(self): """ @@ -90,7 +96,7 @@ def is_openid_error(self): :rtype: bool """ - return self._tag == 'openid_error' + return self._tag == "openid_error" def is_other(self): """ @@ -98,7 +104,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_openid_error(self): """ @@ -111,10 +117,14 @@ def get_openid_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserInfoError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserInfoError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserInfoError_validator = bv.Union(UserInfoError) + class UserInfoResult(bb.Struct): """ :ivar UserInfoResult.family_name: @@ -133,23 +143,25 @@ class UserInfoResult(bb.Struct): """ __slots__ = [ - '_family_name_value', - '_given_name_value', - '_email_value', - '_email_verified_value', - '_iss_value', - '_sub_value', + "_family_name_value", + "_given_name_value", + "_email_value", + "_email_verified_value", + "_iss_value", + "_sub_value", ] _has_required_fields = False - def __init__(self, - family_name=None, - given_name=None, - email=None, - email_verified=None, - iss=None, - sub=None): + def __init__( + self, + family_name=None, + given_name=None, + email=None, + email_verified=None, + iss=None, + sub=None, + ): self._family_name_value = bb.NOT_SET self._given_name_value = bb.NOT_SET self._email_value = bb.NOT_SET @@ -188,19 +200,22 @@ def __init__(self, sub = bb.Attribute("sub") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserInfoResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserInfoResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserInfoResult_validator = bv.Struct(UserInfoResult) OpenIdError._incorrect_openid_scopes_validator = bv.Void() OpenIdError._other_validator = bv.Void() OpenIdError._tagmap = { - 'incorrect_openid_scopes': OpenIdError._incorrect_openid_scopes_validator, - 'other': OpenIdError._other_validator, + "incorrect_openid_scopes": OpenIdError._incorrect_openid_scopes_validator, + "other": OpenIdError._other_validator, } -OpenIdError.incorrect_openid_scopes = OpenIdError('incorrect_openid_scopes') -OpenIdError.other = OpenIdError('other') +OpenIdError.incorrect_openid_scopes = OpenIdError("incorrect_openid_scopes") +OpenIdError.other = OpenIdError("other") UserInfoArgs._all_field_names_ = set([]) UserInfoArgs._all_fields_ = [] @@ -208,11 +223,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserInfoError._openid_error_validator = OpenIdError_validator UserInfoError._other_validator = bv.Void() UserInfoError._tagmap = { - 'openid_error': UserInfoError._openid_error_validator, - 'other': UserInfoError._other_validator, + "openid_error": UserInfoError._openid_error_validator, + "other": UserInfoError._other_validator, } -UserInfoError.other = UserInfoError('other') +UserInfoError.other = UserInfoError("other") UserInfoResult.family_name.validator = bv.Nullable(bv.String()) UserInfoResult.given_name.validator = bv.Nullable(bv.String()) @@ -220,38 +235,37 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserInfoResult.email_verified.validator = bv.Nullable(bv.Boolean()) UserInfoResult.iss.validator = bv.String() UserInfoResult.sub.validator = bv.String() -UserInfoResult._all_field_names_ = set([ - 'family_name', - 'given_name', - 'email', - 'email_verified', - 'iss', - 'sub', -]) +UserInfoResult._all_field_names_ = set( + [ + "family_name", + "given_name", + "email", + "email_verified", + "iss", + "sub", + ] +) UserInfoResult._all_fields_ = [ - ('family_name', UserInfoResult.family_name.validator), - ('given_name', UserInfoResult.given_name.validator), - ('email', UserInfoResult.email.validator), - ('email_verified', UserInfoResult.email_verified.validator), - ('iss', UserInfoResult.iss.validator), - ('sub', UserInfoResult.sub.validator), + ("family_name", UserInfoResult.family_name.validator), + ("given_name", UserInfoResult.given_name.validator), + ("email", UserInfoResult.email.validator), + ("email_verified", UserInfoResult.email_verified.validator), + ("iss", UserInfoResult.iss.validator), + ("sub", UserInfoResult.sub.validator), ] -UserInfoResult.iss.default = '' -UserInfoResult.sub.default = '' +UserInfoResult.iss.default = "" +UserInfoResult.sub.default = "" userinfo = bb.Route( - 'userinfo', + "userinfo", 1, False, UserInfoArgs_validator, UserInfoResult_validator, UserInfoError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'userinfo': userinfo, + "userinfo": userinfo, } - diff --git a/dropbox/paper.py b/dropbox/paper.py index f2b42a4d..bb21545b 100644 --- a/dropbox/paper.py +++ b/dropbox/paper.py @@ -16,6 +16,7 @@ from dropbox import files from dropbox import sharing + class AddMember(bb.Struct): """ :ivar AddMember.permission_level: @@ -26,15 +27,13 @@ class AddMember(bb.Struct): """ __slots__ = [ - '_permission_level_value', - '_member_value', + "_permission_level_value", + "_member_value", ] _has_required_fields = True - def __init__(self, - member=None, - permission_level=None): + def __init__(self, member=None, permission_level=None): self._permission_level_value = bb.NOT_SET self._member_value = bb.NOT_SET if permission_level is not None: @@ -51,8 +50,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(AddMember, self)._process_custom_annotations(annotation_type, field_path, processor) + AddMember_validator = bv.Struct(AddMember) + class RefPaperDoc(bb.Struct): """ :ivar RefPaperDoc.doc_id: @@ -60,13 +61,12 @@ class RefPaperDoc(bb.Struct): """ __slots__ = [ - '_doc_id_value', + "_doc_id_value", ] _has_required_fields = True - def __init__(self, - doc_id=None): + def __init__(self, doc_id=None): self._doc_id_value = bb.NOT_SET if doc_id is not None: self.doc_id = doc_id @@ -77,8 +77,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(RefPaperDoc, self)._process_custom_annotations(annotation_type, field_path, processor) + RefPaperDoc_validator = bv.Struct(RefPaperDoc) + class AddPaperDocUser(RefPaperDoc): """ :ivar AddPaperDocUser.members: @@ -93,18 +95,14 @@ class AddPaperDocUser(RefPaperDoc): """ __slots__ = [ - '_members_value', - '_custom_message_value', - '_quiet_value', + "_members_value", + "_custom_message_value", + "_quiet_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - members=None, - custom_message=None, - quiet=None): + def __init__(self, doc_id=None, members=None, custom_message=None, quiet=None): super(AddPaperDocUser, self).__init__(doc_id) self._members_value = bb.NOT_SET self._custom_message_value = bb.NOT_SET @@ -126,10 +124,14 @@ def __init__(self, quiet = bb.Attribute("quiet") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPaperDocUser, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddPaperDocUser, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddPaperDocUser_validator = bv.Struct(AddPaperDocUser) + class AddPaperDocUserMemberResult(bb.Struct): """ Per-member result for @@ -142,15 +144,13 @@ class AddPaperDocUserMemberResult(bb.Struct): """ __slots__ = [ - '_member_value', - '_result_value', + "_member_value", + "_result_value", ] _has_required_fields = True - def __init__(self, - member=None, - result=None): + def __init__(self, member=None, result=None): self._member_value = bb.NOT_SET self._result_value = bb.NOT_SET if member is not None: @@ -165,10 +165,14 @@ def __init__(self, result = bb.Attribute("result", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPaperDocUserMemberResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddPaperDocUserMemberResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddPaperDocUserMemberResult_validator = bv.Struct(AddPaperDocUserMemberResult) + class AddPaperDocUserResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -193,7 +197,7 @@ class AddPaperDocUserResult(bb.Union): This user already has the correct permission to the Paper doc. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition success = None # Attribute is overwritten below the class definition @@ -217,7 +221,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_unknown_error(self): """ @@ -225,7 +229,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == 'unknown_error' + return self._tag == "unknown_error" def is_sharing_outside_team_disabled(self): """ @@ -233,7 +237,7 @@ def is_sharing_outside_team_disabled(self): :rtype: bool """ - return self._tag == 'sharing_outside_team_disabled' + return self._tag == "sharing_outside_team_disabled" def is_daily_limit_reached(self): """ @@ -241,7 +245,7 @@ def is_daily_limit_reached(self): :rtype: bool """ - return self._tag == 'daily_limit_reached' + return self._tag == "daily_limit_reached" def is_user_is_owner(self): """ @@ -249,7 +253,7 @@ def is_user_is_owner(self): :rtype: bool """ - return self._tag == 'user_is_owner' + return self._tag == "user_is_owner" def is_failed_user_data_retrieval(self): """ @@ -257,7 +261,7 @@ def is_failed_user_data_retrieval(self): :rtype: bool """ - return self._tag == 'failed_user_data_retrieval' + return self._tag == "failed_user_data_retrieval" def is_permission_already_granted(self): """ @@ -265,7 +269,7 @@ def is_permission_already_granted(self): :rtype: bool """ - return self._tag == 'permission_already_granted' + return self._tag == "permission_already_granted" def is_other(self): """ @@ -273,13 +277,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddPaperDocUserResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddPaperDocUserResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddPaperDocUserResult_validator = bv.Union(AddPaperDocUserResult) + class Cursor(bb.Struct): """ :ivar Cursor.value: @@ -301,15 +309,13 @@ class Cursor(bb.Struct): """ __slots__ = [ - '_value_value', - '_expiration_value', + "_value_value", + "_expiration_value", ] _has_required_fields = True - def __init__(self, - value=None, - expiration=None): + def __init__(self, value=None, expiration=None): self._value_value = bb.NOT_SET self._expiration_value = bb.NOT_SET if value is not None: @@ -326,8 +332,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(Cursor, self)._process_custom_annotations(annotation_type, field_path, processor) + Cursor_validator = bv.Struct(Cursor) + class PaperApiBaseError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -341,7 +349,7 @@ class PaperApiBaseError(bb.Union): `_. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition insufficient_permissions = None # Attribute is overwritten below the class definition @@ -353,7 +361,7 @@ def is_insufficient_permissions(self): :rtype: bool """ - return self._tag == 'insufficient_permissions' + return self._tag == "insufficient_permissions" def is_other(self): """ @@ -361,13 +369,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperApiBaseError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperApiBaseError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperApiBaseError_validator = bv.Union(PaperApiBaseError) + class DocLookupError(PaperApiBaseError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -387,13 +399,17 @@ def is_doc_not_found(self): :rtype: bool """ - return self._tag == 'doc_not_found' + return self._tag == "doc_not_found" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DocLookupError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DocLookupError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DocLookupError_validator = bv.Union(DocLookupError) + class DocSubscriptionLevel(bb.Union): """ The subscription level of a Paper doc. @@ -431,7 +447,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_ignore(self): """ @@ -439,7 +455,7 @@ def is_ignore(self): :rtype: bool """ - return self._tag == 'ignore' + return self._tag == "ignore" def is_every(self): """ @@ -447,7 +463,7 @@ def is_every(self): :rtype: bool """ - return self._tag == 'every' + return self._tag == "every" def is_no_email(self): """ @@ -455,13 +471,17 @@ def is_no_email(self): :rtype: bool """ - return self._tag == 'no_email' + return self._tag == "no_email" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DocSubscriptionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DocSubscriptionLevel, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DocSubscriptionLevel_validator = bv.Union(DocSubscriptionLevel) + class ExportFormat(bb.Union): """ The desired export format of the Paper doc. @@ -478,7 +498,7 @@ class ExportFormat(bb.Union): Doc metadata JSON export format. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition html = None # Attribute is overwritten below the class definition @@ -494,7 +514,7 @@ def is_html(self): :rtype: bool """ - return self._tag == 'html' + return self._tag == "html" def is_markdown(self): """ @@ -502,7 +522,7 @@ def is_markdown(self): :rtype: bool """ - return self._tag == 'markdown' + return self._tag == "markdown" def is_json(self): """ @@ -510,7 +530,7 @@ def is_json(self): :rtype: bool """ - return self._tag == 'json' + return self._tag == "json" def is_other(self): """ @@ -518,13 +538,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportFormat, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExportFormat, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExportFormat_validator = bv.Union(ExportFormat) + class Folder(bb.Struct): """ Data structure representing a Paper folder. @@ -536,15 +560,13 @@ class Folder(bb.Struct): """ __slots__ = [ - '_id_value', - '_name_value', + "_id_value", + "_name_value", ] _has_required_fields = True - def __init__(self, - id=None, - name=None): + def __init__(self, id=None, name=None): self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET if id is not None: @@ -561,8 +583,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(Folder, self)._process_custom_annotations(annotation_type, field_path, processor) + Folder_validator = bv.Struct(Folder) + class FolderSharingPolicyType(bb.Union): """ The sharing policy of a Paper folder. The sharing policy of subfolders is @@ -591,7 +615,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_invite_only(self): """ @@ -599,13 +623,17 @@ def is_invite_only(self): :rtype: bool """ - return self._tag == 'invite_only' + return self._tag == "invite_only" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderSharingPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderSharingPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderSharingPolicyType_validator = bv.Union(FolderSharingPolicyType) + class FolderSubscriptionLevel(bb.Union): """ The subscription level of a Paper folder. @@ -640,7 +668,7 @@ def is_none(self): :rtype: bool """ - return self._tag == 'none' + return self._tag == "none" def is_activity_only(self): """ @@ -648,7 +676,7 @@ def is_activity_only(self): :rtype: bool """ - return self._tag == 'activity_only' + return self._tag == "activity_only" def is_daily_emails(self): """ @@ -656,7 +684,7 @@ def is_daily_emails(self): :rtype: bool """ - return self._tag == 'daily_emails' + return self._tag == "daily_emails" def is_weekly_emails(self): """ @@ -664,13 +692,17 @@ def is_weekly_emails(self): :rtype: bool """ - return self._tag == 'weekly_emails' + return self._tag == "weekly_emails" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderSubscriptionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderSubscriptionLevel, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderSubscriptionLevel_validator = bv.Union(FolderSubscriptionLevel) + class FoldersContainingPaperDoc(bb.Struct): """ Metadata about Paper folders containing the specififed Paper doc. @@ -682,15 +714,13 @@ class FoldersContainingPaperDoc(bb.Struct): """ __slots__ = [ - '_folder_sharing_policy_type_value', - '_folders_value', + "_folder_sharing_policy_type_value", + "_folders_value", ] _has_required_fields = False - def __init__(self, - folder_sharing_policy_type=None, - folders=None): + def __init__(self, folder_sharing_policy_type=None, folders=None): self._folder_sharing_policy_type_value = bb.NOT_SET self._folders_value = bb.NOT_SET if folder_sharing_policy_type is not None: @@ -699,16 +729,22 @@ def __init__(self, self.folders = folders # Instance attribute type: FolderSharingPolicyType (validator is set below) - folder_sharing_policy_type = bb.Attribute("folder_sharing_policy_type", nullable=True, user_defined=True) + folder_sharing_policy_type = bb.Attribute( + "folder_sharing_policy_type", nullable=True, user_defined=True + ) # Instance attribute type: list of [Folder] (validator is set below) folders = bb.Attribute("folders", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FoldersContainingPaperDoc, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FoldersContainingPaperDoc, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FoldersContainingPaperDoc_validator = bv.Struct(FoldersContainingPaperDoc) + class GetDocMetadataArg(bb.Struct): """ Argument for retrieving Paper doc metadata. Accepts either a legacy Paper @@ -721,15 +757,13 @@ class GetDocMetadataArg(bb.Struct): """ __slots__ = [ - '_doc_id_value', - '_file_id_value', + "_doc_id_value", + "_file_id_value", ] _has_required_fields = False - def __init__(self, - doc_id=None, - file_id=None): + def __init__(self, doc_id=None, file_id=None): self._doc_id_value = bb.NOT_SET self._file_id_value = bb.NOT_SET if doc_id is not None: @@ -744,10 +778,14 @@ def __init__(self, file_id = bb.Attribute("file_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetDocMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetDocMetadataArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetDocMetadataArg_validator = bv.Struct(GetDocMetadataArg) + class ImportFormat(bb.Union): """ The import format of the incoming data. @@ -766,7 +804,7 @@ class ImportFormat(bb.Union): provided document will be used as the doc title. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition html = None # Attribute is overwritten below the class definition @@ -782,7 +820,7 @@ def is_html(self): :rtype: bool """ - return self._tag == 'html' + return self._tag == "html" def is_markdown(self): """ @@ -790,7 +828,7 @@ def is_markdown(self): :rtype: bool """ - return self._tag == 'markdown' + return self._tag == "markdown" def is_plain_text(self): """ @@ -798,7 +836,7 @@ def is_plain_text(self): :rtype: bool """ - return self._tag == 'plain_text' + return self._tag == "plain_text" def is_other(self): """ @@ -806,13 +844,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ImportFormat, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ImportFormat, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ImportFormat_validator = bv.Union(ImportFormat) + class InviteeInfoWithPermissionLevel(bb.Struct): """ :ivar InviteeInfoWithPermissionLevel.invitee: @@ -822,15 +864,13 @@ class InviteeInfoWithPermissionLevel(bb.Struct): """ __slots__ = [ - '_invitee_value', - '_permission_level_value', + "_invitee_value", + "_permission_level_value", ] _has_required_fields = True - def __init__(self, - invitee=None, - permission_level=None): + def __init__(self, invitee=None, permission_level=None): self._invitee_value = bb.NOT_SET self._permission_level_value = bb.NOT_SET if invitee is not None: @@ -845,10 +885,14 @@ def __init__(self, permission_level = bb.Attribute("permission_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteeInfoWithPermissionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InviteeInfoWithPermissionLevel, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + InviteeInfoWithPermissionLevel_validator = bv.Struct(InviteeInfoWithPermissionLevel) + class ListDocsCursorError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -856,7 +900,7 @@ class ListDocsCursorError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -869,7 +913,7 @@ def cursor_error(cls, val): :param PaperApiCursorError val: :rtype: ListDocsCursorError """ - return cls('cursor_error', val) + return cls("cursor_error", val) def is_cursor_error(self): """ @@ -877,7 +921,7 @@ def is_cursor_error(self): :rtype: bool """ - return self._tag == 'cursor_error' + return self._tag == "cursor_error" def is_other(self): """ @@ -885,7 +929,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_cursor_error(self): """ @@ -898,10 +942,14 @@ def get_cursor_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListDocsCursorError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListDocsCursorError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListDocsCursorError_validator = bv.Union(ListDocsCursorError) + class ListPaperDocsArgs(bb.Struct): """ :ivar ListPaperDocsArgs.filter_by: @@ -918,21 +966,23 @@ class ListPaperDocsArgs(bb.Struct): """ __slots__ = [ - '_filter_by_value', - '_sort_by_value', - '_sort_order_value', - '_limit_value', - '_stop_at_date_value', + "_filter_by_value", + "_sort_by_value", + "_sort_order_value", + "_limit_value", + "_stop_at_date_value", ] _has_required_fields = False - def __init__(self, - filter_by=None, - sort_by=None, - sort_order=None, - limit=None, - stop_at_date=None): + def __init__( + self, + filter_by=None, + sort_by=None, + sort_order=None, + limit=None, + stop_at_date=None, + ): self._filter_by_value = bb.NOT_SET self._sort_by_value = bb.NOT_SET self._sort_order_value = bb.NOT_SET @@ -965,10 +1015,14 @@ def __init__(self, stop_at_date = bb.Attribute("stop_at_date", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListPaperDocsArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListPaperDocsArgs_validator = bv.Struct(ListPaperDocsArgs) + class ListPaperDocsContinueArgs(bb.Struct): """ :ivar ListPaperDocsContinueArgs.cursor: @@ -979,13 +1033,12 @@ class ListPaperDocsContinueArgs(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -994,10 +1047,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsContinueArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListPaperDocsContinueArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListPaperDocsContinueArgs_validator = bv.Struct(ListPaperDocsContinueArgs) + class ListPaperDocsFilterBy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1010,7 +1067,7 @@ class ListPaperDocsFilterBy(bb.Union): Fetches only the Paper doc IDs that the user has created. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition docs_accessed = None # Attribute is overwritten below the class definition @@ -1024,7 +1081,7 @@ def is_docs_accessed(self): :rtype: bool """ - return self._tag == 'docs_accessed' + return self._tag == "docs_accessed" def is_docs_created(self): """ @@ -1032,7 +1089,7 @@ def is_docs_created(self): :rtype: bool """ - return self._tag == 'docs_created' + return self._tag == "docs_created" def is_other(self): """ @@ -1040,13 +1097,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsFilterBy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListPaperDocsFilterBy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListPaperDocsFilterBy_validator = bv.Union(ListPaperDocsFilterBy) + class ListPaperDocsResponse(bb.Struct): """ :ivar ListPaperDocsResponse.doc_ids: @@ -1069,17 +1130,14 @@ class ListPaperDocsResponse(bb.Struct): """ __slots__ = [ - '_doc_ids_value', - '_cursor_value', - '_has_more_value', + "_doc_ids_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - doc_ids=None, - cursor=None, - has_more=None): + def __init__(self, doc_ids=None, cursor=None, has_more=None): self._doc_ids_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -1100,10 +1158,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsResponse, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListPaperDocsResponse, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListPaperDocsResponse_validator = bv.Struct(ListPaperDocsResponse) + class ListPaperDocsSortBy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1118,7 +1180,7 @@ class ListPaperDocsSortBy(bb.Union): Sorts the Paper docs by the creation time. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition accessed = None # Attribute is overwritten below the class definition @@ -1134,7 +1196,7 @@ def is_accessed(self): :rtype: bool """ - return self._tag == 'accessed' + return self._tag == "accessed" def is_modified(self): """ @@ -1142,7 +1204,7 @@ def is_modified(self): :rtype: bool """ - return self._tag == 'modified' + return self._tag == "modified" def is_created(self): """ @@ -1150,7 +1212,7 @@ def is_created(self): :rtype: bool """ - return self._tag == 'created' + return self._tag == "created" def is_other(self): """ @@ -1158,13 +1220,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsSortBy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListPaperDocsSortBy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListPaperDocsSortBy_validator = bv.Union(ListPaperDocsSortBy) + class ListPaperDocsSortOrder(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1177,7 +1243,7 @@ class ListPaperDocsSortOrder(bb.Union): Sorts the search result in descending order. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition ascending = None # Attribute is overwritten below the class definition @@ -1191,7 +1257,7 @@ def is_ascending(self): :rtype: bool """ - return self._tag == 'ascending' + return self._tag == "ascending" def is_descending(self): """ @@ -1199,7 +1265,7 @@ def is_descending(self): :rtype: bool """ - return self._tag == 'descending' + return self._tag == "descending" def is_other(self): """ @@ -1207,13 +1273,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsSortOrder, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListPaperDocsSortOrder, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListPaperDocsSortOrder_validator = bv.Union(ListPaperDocsSortOrder) + class ListUsersCursorError(PaperApiBaseError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1236,7 +1306,7 @@ def cursor_error(cls, val): :param PaperApiCursorError val: :rtype: ListUsersCursorError """ - return cls('cursor_error', val) + return cls("cursor_error", val) def is_doc_not_found(self): """ @@ -1244,7 +1314,7 @@ def is_doc_not_found(self): :rtype: bool """ - return self._tag == 'doc_not_found' + return self._tag == "doc_not_found" def is_cursor_error(self): """ @@ -1252,7 +1322,7 @@ def is_cursor_error(self): :rtype: bool """ - return self._tag == 'cursor_error' + return self._tag == "cursor_error" def get_cursor_error(self): """ @@ -1265,10 +1335,14 @@ def get_cursor_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersCursorError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListUsersCursorError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListUsersCursorError_validator = bv.Union(ListUsersCursorError) + class ListUsersOnFolderArgs(RefPaperDoc): """ :ivar ListUsersOnFolderArgs.limit: @@ -1277,14 +1351,12 @@ class ListUsersOnFolderArgs(RefPaperDoc): """ __slots__ = [ - '_limit_value', + "_limit_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - limit=None): + def __init__(self, doc_id=None, limit=None): super(ListUsersOnFolderArgs, self).__init__(doc_id) self._limit_value = bb.NOT_SET if limit is not None: @@ -1294,10 +1366,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnFolderArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListUsersOnFolderArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListUsersOnFolderArgs_validator = bv.Struct(ListUsersOnFolderArgs) + class ListUsersOnFolderContinueArgs(RefPaperDoc): """ :ivar ListUsersOnFolderContinueArgs.cursor: @@ -1308,14 +1384,12 @@ class ListUsersOnFolderContinueArgs(RefPaperDoc): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - cursor=None): + def __init__(self, doc_id=None, cursor=None): super(ListUsersOnFolderContinueArgs, self).__init__(doc_id) self._cursor_value = bb.NOT_SET if cursor is not None: @@ -1325,10 +1399,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnFolderContinueArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListUsersOnFolderContinueArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListUsersOnFolderContinueArgs_validator = bv.Struct(ListUsersOnFolderContinueArgs) + class ListUsersOnFolderResponse(bb.Struct): """ :ivar ListUsersOnFolderResponse.invitees: @@ -1350,19 +1428,15 @@ class ListUsersOnFolderResponse(bb.Struct): """ __slots__ = [ - '_invitees_value', - '_users_value', - '_cursor_value', - '_has_more_value', + "_invitees_value", + "_users_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - invitees=None, - users=None, - cursor=None, - has_more=None): + def __init__(self, invitees=None, users=None, cursor=None, has_more=None): self._invitees_value = bb.NOT_SET self._users_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -1389,10 +1463,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnFolderResponse, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListUsersOnFolderResponse, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListUsersOnFolderResponse_validator = bv.Struct(ListUsersOnFolderResponse) + class ListUsersOnPaperDocArgs(RefPaperDoc): """ :ivar ListUsersOnPaperDocArgs.limit: @@ -1404,16 +1482,13 @@ class ListUsersOnPaperDocArgs(RefPaperDoc): """ __slots__ = [ - '_limit_value', - '_filter_by_value', + "_limit_value", + "_filter_by_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - limit=None, - filter_by=None): + def __init__(self, doc_id=None, limit=None, filter_by=None): super(ListUsersOnPaperDocArgs, self).__init__(doc_id) self._limit_value = bb.NOT_SET self._filter_by_value = bb.NOT_SET @@ -1429,10 +1504,14 @@ def __init__(self, filter_by = bb.Attribute("filter_by", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnPaperDocArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListUsersOnPaperDocArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListUsersOnPaperDocArgs_validator = bv.Struct(ListUsersOnPaperDocArgs) + class ListUsersOnPaperDocContinueArgs(RefPaperDoc): """ :ivar ListUsersOnPaperDocContinueArgs.cursor: @@ -1443,14 +1522,12 @@ class ListUsersOnPaperDocContinueArgs(RefPaperDoc): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - cursor=None): + def __init__(self, doc_id=None, cursor=None): super(ListUsersOnPaperDocContinueArgs, self).__init__(doc_id) self._cursor_value = bb.NOT_SET if cursor is not None: @@ -1460,10 +1537,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnPaperDocContinueArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListUsersOnPaperDocContinueArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListUsersOnPaperDocContinueArgs_validator = bv.Struct(ListUsersOnPaperDocContinueArgs) + class ListUsersOnPaperDocResponse(bb.Struct): """ :ivar ListUsersOnPaperDocResponse.invitees: @@ -1489,21 +1570,16 @@ class ListUsersOnPaperDocResponse(bb.Struct): """ __slots__ = [ - '_invitees_value', - '_users_value', - '_doc_owner_value', - '_cursor_value', - '_has_more_value', + "_invitees_value", + "_users_value", + "_doc_owner_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - invitees=None, - users=None, - doc_owner=None, - cursor=None, - has_more=None): + def __init__(self, invitees=None, users=None, doc_owner=None, cursor=None, has_more=None): self._invitees_value = bb.NOT_SET self._users_value = bb.NOT_SET self._doc_owner_value = bb.NOT_SET @@ -1536,10 +1612,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListUsersOnPaperDocResponse, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListUsersOnPaperDocResponse, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListUsersOnPaperDocResponse_validator = bv.Struct(ListUsersOnPaperDocResponse) + class PaperApiCursorError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1557,7 +1637,7 @@ class PaperApiCursorError(bb.Union): non-continue endpoint to obtain a new cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition expired_cursor = None # Attribute is overwritten below the class definition @@ -1575,7 +1655,7 @@ def is_expired_cursor(self): :rtype: bool """ - return self._tag == 'expired_cursor' + return self._tag == "expired_cursor" def is_invalid_cursor(self): """ @@ -1583,7 +1663,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_wrong_user_in_cursor(self): """ @@ -1591,7 +1671,7 @@ def is_wrong_user_in_cursor(self): :rtype: bool """ - return self._tag == 'wrong_user_in_cursor' + return self._tag == "wrong_user_in_cursor" def is_reset(self): """ @@ -1599,7 +1679,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -1607,13 +1687,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperApiCursorError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperApiCursorError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperApiCursorError_validator = bv.Union(PaperApiCursorError) + class PaperDocCreateArgs(bb.Struct): """ :ivar PaperDocCreateArgs.parent_folder_id: @@ -1624,15 +1708,13 @@ class PaperDocCreateArgs(bb.Struct): """ __slots__ = [ - '_parent_folder_id_value', - '_import_format_value', + "_parent_folder_id_value", + "_import_format_value", ] _has_required_fields = True - def __init__(self, - import_format=None, - parent_folder_id=None): + def __init__(self, import_format=None, parent_folder_id=None): self._parent_folder_id_value = bb.NOT_SET self._import_format_value = bb.NOT_SET if parent_folder_id is not None: @@ -1647,10 +1729,14 @@ def __init__(self, import_format = bb.Attribute("import_format", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocCreateArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocCreateArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocCreateArgs_validator = bv.Struct(PaperDocCreateArgs) + class PaperDocCreateError(PaperApiBaseError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1684,7 +1770,7 @@ def is_content_malformed(self): :rtype: bool """ - return self._tag == 'content_malformed' + return self._tag == "content_malformed" def is_folder_not_found(self): """ @@ -1692,7 +1778,7 @@ def is_folder_not_found(self): :rtype: bool """ - return self._tag == 'folder_not_found' + return self._tag == "folder_not_found" def is_doc_length_exceeded(self): """ @@ -1700,7 +1786,7 @@ def is_doc_length_exceeded(self): :rtype: bool """ - return self._tag == 'doc_length_exceeded' + return self._tag == "doc_length_exceeded" def is_image_size_exceeded(self): """ @@ -1708,13 +1794,17 @@ def is_image_size_exceeded(self): :rtype: bool """ - return self._tag == 'image_size_exceeded' + return self._tag == "image_size_exceeded" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocCreateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocCreateError_validator = bv.Union(PaperDocCreateError) + class PaperDocCreateUpdateResult(bb.Struct): """ :ivar PaperDocCreateUpdateResult.doc_id: @@ -1726,17 +1816,14 @@ class PaperDocCreateUpdateResult(bb.Struct): """ __slots__ = [ - '_doc_id_value', - '_revision_value', - '_title_value', + "_doc_id_value", + "_revision_value", + "_title_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - revision=None, - title=None): + def __init__(self, doc_id=None, revision=None, title=None): self._doc_id_value = bb.NOT_SET self._revision_value = bb.NOT_SET self._title_value = bb.NOT_SET @@ -1757,10 +1844,14 @@ def __init__(self, title = bb.Attribute("title") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocCreateUpdateResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocCreateUpdateResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocCreateUpdateResult_validator = bv.Struct(PaperDocCreateUpdateResult) + class PaperDocExport(RefPaperDoc): """ :ivar PaperDocExport.include_comments: @@ -1771,16 +1862,13 @@ class PaperDocExport(RefPaperDoc): """ __slots__ = [ - '_export_format_value', - '_include_comments_value', + "_export_format_value", + "_include_comments_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - export_format=None, - include_comments=None): + def __init__(self, doc_id=None, export_format=None, include_comments=None): super(PaperDocExport, self).__init__(doc_id) self._export_format_value = bb.NOT_SET self._include_comments_value = bb.NOT_SET @@ -1796,10 +1884,14 @@ def __init__(self, include_comments = bb.Attribute("include_comments") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocExport, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocExport, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocExport_validator = bv.Struct(PaperDocExport) + class PaperDocExportResult(bb.Struct): """ :ivar PaperDocExportResult.owner: @@ -1814,19 +1906,15 @@ class PaperDocExportResult(bb.Struct): """ __slots__ = [ - '_owner_value', - '_title_value', - '_revision_value', - '_mime_type_value', + "_owner_value", + "_title_value", + "_revision_value", + "_mime_type_value", ] _has_required_fields = True - def __init__(self, - owner=None, - title=None, - revision=None, - mime_type=None): + def __init__(self, owner=None, title=None, revision=None, mime_type=None): self._owner_value = bb.NOT_SET self._title_value = bb.NOT_SET self._revision_value = bb.NOT_SET @@ -1853,10 +1941,14 @@ def __init__(self, mime_type = bb.Attribute("mime_type") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocExportResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocExportResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocExportResult_validator = bv.Struct(PaperDocExportResult) + class PaperDocGetMetadataResult(bb.Struct): """ Metadata returned by docs/get_metadata. @@ -1880,27 +1972,29 @@ class PaperDocGetMetadataResult(bb.Struct): """ __slots__ = [ - '_doc_id_value', - '_owner_value', - '_title_value', - '_created_date_value', - '_status_value', - '_revision_value', - '_last_updated_date_value', - '_last_editor_value', + "_doc_id_value", + "_owner_value", + "_title_value", + "_created_date_value", + "_status_value", + "_revision_value", + "_last_updated_date_value", + "_last_editor_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - owner=None, - title=None, - created_date=None, - status=None, - revision=None, - last_updated_date=None, - last_editor=None): + def __init__( + self, + doc_id=None, + owner=None, + title=None, + created_date=None, + status=None, + revision=None, + last_updated_date=None, + last_editor=None, + ): self._doc_id_value = bb.NOT_SET self._owner_value = bb.NOT_SET self._title_value = bb.NOT_SET @@ -1951,10 +2045,14 @@ def __init__(self, last_editor = bb.Attribute("last_editor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocGetMetadataResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocGetMetadataResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocGetMetadataResult_validator = bv.Struct(PaperDocGetMetadataResult) + class PaperDocPermissionLevel(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1967,7 +2065,7 @@ class PaperDocPermissionLevel(bb.Union): User will be granted view and comment permissions. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition edit = None # Attribute is overwritten below the class definition @@ -1981,7 +2079,7 @@ def is_edit(self): :rtype: bool """ - return self._tag == 'edit' + return self._tag == "edit" def is_view_and_comment(self): """ @@ -1989,7 +2087,7 @@ def is_view_and_comment(self): :rtype: bool """ - return self._tag == 'view_and_comment' + return self._tag == "view_and_comment" def is_other(self): """ @@ -1997,13 +2095,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocPermissionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocPermissionLevel, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocPermissionLevel_validator = bv.Union(PaperDocPermissionLevel) + class PaperDocSharingPolicy(RefPaperDoc): """ :ivar PaperDocSharingPolicy.sharing_policy: @@ -2011,14 +2113,12 @@ class PaperDocSharingPolicy(RefPaperDoc): """ __slots__ = [ - '_sharing_policy_value', + "_sharing_policy_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - sharing_policy=None): + def __init__(self, doc_id=None, sharing_policy=None): super(PaperDocSharingPolicy, self).__init__(doc_id) self._sharing_policy_value = bb.NOT_SET if sharing_policy is not None: @@ -2028,10 +2128,14 @@ def __init__(self, sharing_policy = bb.Attribute("sharing_policy", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocSharingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocSharingPolicy_validator = bv.Struct(PaperDocSharingPolicy) + class PaperDocStatus(bb.Union): """ The status of a Paper doc. @@ -2046,7 +2150,7 @@ class PaperDocStatus(bb.Union): The Paper doc is deleted. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -2060,7 +2164,7 @@ def is_active(self): :rtype: bool """ - return self._tag == 'active' + return self._tag == "active" def is_deleted(self): """ @@ -2068,7 +2172,7 @@ def is_deleted(self): :rtype: bool """ - return self._tag == 'deleted' + return self._tag == "deleted" def is_other(self): """ @@ -2076,13 +2180,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocStatus_validator = bv.Union(PaperDocStatus) + class PaperDocUpdateArgs(RefPaperDoc): """ :ivar PaperDocUpdateArgs.doc_update_policy: @@ -2095,18 +2203,14 @@ class PaperDocUpdateArgs(RefPaperDoc): """ __slots__ = [ - '_doc_update_policy_value', - '_revision_value', - '_import_format_value', + "_doc_update_policy_value", + "_revision_value", + "_import_format_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - doc_update_policy=None, - revision=None, - import_format=None): + def __init__(self, doc_id=None, doc_update_policy=None, revision=None, import_format=None): super(PaperDocUpdateArgs, self).__init__(doc_id) self._doc_update_policy_value = bb.NOT_SET self._revision_value = bb.NOT_SET @@ -2128,10 +2232,14 @@ def __init__(self, import_format = bb.Attribute("import_format", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUpdateArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocUpdateArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocUpdateArgs_validator = bv.Struct(PaperDocUpdateArgs) + class PaperDocUpdateError(DocLookupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2173,7 +2281,7 @@ def is_content_malformed(self): :rtype: bool """ - return self._tag == 'content_malformed' + return self._tag == "content_malformed" def is_revision_mismatch(self): """ @@ -2181,7 +2289,7 @@ def is_revision_mismatch(self): :rtype: bool """ - return self._tag == 'revision_mismatch' + return self._tag == "revision_mismatch" def is_doc_length_exceeded(self): """ @@ -2189,7 +2297,7 @@ def is_doc_length_exceeded(self): :rtype: bool """ - return self._tag == 'doc_length_exceeded' + return self._tag == "doc_length_exceeded" def is_image_size_exceeded(self): """ @@ -2197,7 +2305,7 @@ def is_image_size_exceeded(self): :rtype: bool """ - return self._tag == 'image_size_exceeded' + return self._tag == "image_size_exceeded" def is_doc_archived(self): """ @@ -2205,7 +2313,7 @@ def is_doc_archived(self): :rtype: bool """ - return self._tag == 'doc_archived' + return self._tag == "doc_archived" def is_doc_deleted(self): """ @@ -2213,13 +2321,17 @@ def is_doc_deleted(self): :rtype: bool """ - return self._tag == 'doc_deleted' + return self._tag == "doc_deleted" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocUpdateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocUpdateError_validator = bv.Union(PaperDocUpdateError) + class PaperDocUpdatePolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2235,7 +2347,7 @@ class PaperDocUpdatePolicy(bb.Union): The document will be overwitten at the head with the provided content. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition append = None # Attribute is overwritten below the class definition @@ -2251,7 +2363,7 @@ def is_append(self): :rtype: bool """ - return self._tag == 'append' + return self._tag == "append" def is_prepend(self): """ @@ -2259,7 +2371,7 @@ def is_prepend(self): :rtype: bool """ - return self._tag == 'prepend' + return self._tag == "prepend" def is_overwrite_all(self): """ @@ -2267,7 +2379,7 @@ def is_overwrite_all(self): :rtype: bool """ - return self._tag == 'overwrite_all' + return self._tag == "overwrite_all" def is_other(self): """ @@ -2275,13 +2387,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUpdatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocUpdatePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocUpdatePolicy_validator = bv.Union(PaperDocUpdatePolicy) + class PaperFolderCreateArg(bb.Struct): """ :ivar PaperFolderCreateArg.name: @@ -2299,17 +2415,14 @@ class PaperFolderCreateArg(bb.Struct): """ __slots__ = [ - '_name_value', - '_parent_folder_id_value', - '_is_team_folder_value', + "_name_value", + "_parent_folder_id_value", + "_is_team_folder_value", ] _has_required_fields = True - def __init__(self, - name=None, - parent_folder_id=None, - is_team_folder=None): + def __init__(self, name=None, parent_folder_id=None, is_team_folder=None): self._name_value = bb.NOT_SET self._parent_folder_id_value = bb.NOT_SET self._is_team_folder_value = bb.NOT_SET @@ -2330,10 +2443,14 @@ def __init__(self, is_team_folder = bb.Attribute("is_team_folder", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderCreateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderCreateArg_validator = bv.Struct(PaperFolderCreateArg) + class PaperFolderCreateError(PaperApiBaseError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2357,7 +2474,7 @@ def is_folder_not_found(self): :rtype: bool """ - return self._tag == 'folder_not_found' + return self._tag == "folder_not_found" def is_invalid_folder_id(self): """ @@ -2365,13 +2482,17 @@ def is_invalid_folder_id(self): :rtype: bool """ - return self._tag == 'invalid_folder_id' + return self._tag == "invalid_folder_id" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderCreateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderCreateError_validator = bv.Union(PaperFolderCreateError) + class PaperFolderCreateResult(bb.Struct): """ :ivar PaperFolderCreateResult.folder_id: @@ -2379,13 +2500,12 @@ class PaperFolderCreateResult(bb.Struct): """ __slots__ = [ - '_folder_id_value', + "_folder_id_value", ] _has_required_fields = True - def __init__(self, - folder_id=None): + def __init__(self, folder_id=None): self._folder_id_value = bb.NOT_SET if folder_id is not None: self.folder_id = folder_id @@ -2394,10 +2514,14 @@ def __init__(self, folder_id = bb.Attribute("folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderCreateResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderCreateResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderCreateResult_validator = bv.Struct(PaperFolderCreateResult) + class RemovePaperDocUser(RefPaperDoc): """ :ivar RemovePaperDocUser.member: @@ -2406,14 +2530,12 @@ class RemovePaperDocUser(RefPaperDoc): """ __slots__ = [ - '_member_value', + "_member_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - member=None): + def __init__(self, doc_id=None, member=None): super(RemovePaperDocUser, self).__init__(doc_id) self._member_value = bb.NOT_SET if member is not None: @@ -2423,10 +2545,14 @@ def __init__(self, member = bb.Attribute("member", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemovePaperDocUser, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemovePaperDocUser, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemovePaperDocUser_validator = bv.Struct(RemovePaperDocUser) + class SharingPolicy(bb.Struct): """ Sharing policy of Paper doc. @@ -2439,15 +2565,13 @@ class SharingPolicy(bb.Struct): """ __slots__ = [ - '_public_sharing_policy_value', - '_team_sharing_policy_value', + "_public_sharing_policy_value", + "_team_sharing_policy_value", ] _has_required_fields = False - def __init__(self, - public_sharing_policy=None, - team_sharing_policy=None): + def __init__(self, public_sharing_policy=None, team_sharing_policy=None): self._public_sharing_policy_value = bb.NOT_SET self._team_sharing_policy_value = bb.NOT_SET if public_sharing_policy is not None: @@ -2462,10 +2586,14 @@ def __init__(self, team_sharing_policy = bb.Attribute("team_sharing_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingPolicy_validator = bv.Struct(SharingPolicy) + class SharingTeamPolicyType(bb.Union): """ The sharing policy type of the Paper doc. @@ -2496,7 +2624,7 @@ def is_people_with_link_can_edit(self): :rtype: bool """ - return self._tag == 'people_with_link_can_edit' + return self._tag == "people_with_link_can_edit" def is_people_with_link_can_view_and_comment(self): """ @@ -2504,7 +2632,7 @@ def is_people_with_link_can_view_and_comment(self): :rtype: bool """ - return self._tag == 'people_with_link_can_view_and_comment' + return self._tag == "people_with_link_can_view_and_comment" def is_invite_only(self): """ @@ -2512,13 +2640,17 @@ def is_invite_only(self): :rtype: bool """ - return self._tag == 'invite_only' + return self._tag == "invite_only" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingTeamPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingTeamPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingTeamPolicyType_validator = bv.Union(SharingTeamPolicyType) + class SharingPublicPolicyType(SharingTeamPolicyType): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2538,13 +2670,17 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingPublicPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingPublicPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingPublicPolicyType_validator = bv.Union(SharingPublicPolicyType) + class UserInfoWithPermissionLevel(bb.Struct): """ :ivar UserInfoWithPermissionLevel.user: @@ -2554,15 +2690,13 @@ class UserInfoWithPermissionLevel(bb.Struct): """ __slots__ = [ - '_user_value', - '_permission_level_value', + "_user_value", + "_permission_level_value", ] _has_required_fields = True - def __init__(self, - user=None, - permission_level=None): + def __init__(self, user=None, permission_level=None): self._user_value = bb.NOT_SET self._permission_level_value = bb.NOT_SET if user is not None: @@ -2577,10 +2711,14 @@ def __init__(self, permission_level = bb.Attribute("permission_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserInfoWithPermissionLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserInfoWithPermissionLevel, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserInfoWithPermissionLevel_validator = bv.Struct(UserInfoWithPermissionLevel) + class UserOnPaperDocFilter(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2594,7 +2732,7 @@ class UserOnPaperDocFilter(bb.Union): have visited the Paper doc as well as those who have not. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition visited = None # Attribute is overwritten below the class definition @@ -2608,7 +2746,7 @@ def is_visited(self): :rtype: bool """ - return self._tag == 'visited' + return self._tag == "visited" def is_shared(self): """ @@ -2616,7 +2754,7 @@ def is_shared(self): :rtype: bool """ - return self._tag == 'shared' + return self._tag == "shared" def is_other(self): """ @@ -2624,52 +2762,63 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserOnPaperDocFilter, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserOnPaperDocFilter, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserOnPaperDocFilter_validator = bv.Union(UserOnPaperDocFilter) PaperDocId_validator = bv.String() AddMember.permission_level.validator = PaperDocPermissionLevel_validator AddMember.member.validator = sharing.MemberSelector_validator -AddMember._all_field_names_ = set([ - 'permission_level', - 'member', -]) +AddMember._all_field_names_ = set( + [ + "permission_level", + "member", + ] +) AddMember._all_fields_ = [ - ('permission_level', AddMember.permission_level.validator), - ('member', AddMember.member.validator), + ("permission_level", AddMember.permission_level.validator), + ("member", AddMember.member.validator), ] RefPaperDoc.doc_id.validator = PaperDocId_validator -RefPaperDoc._all_field_names_ = set(['doc_id']) -RefPaperDoc._all_fields_ = [('doc_id', RefPaperDoc.doc_id.validator)] +RefPaperDoc._all_field_names_ = set(["doc_id"]) +RefPaperDoc._all_fields_ = [("doc_id", RefPaperDoc.doc_id.validator)] AddPaperDocUser.members.validator = bv.List(AddMember_validator, max_items=20) AddPaperDocUser.custom_message.validator = bv.Nullable(bv.String()) AddPaperDocUser.quiet.validator = bv.Boolean() -AddPaperDocUser._all_field_names_ = RefPaperDoc._all_field_names_.union(set([ - 'members', - 'custom_message', - 'quiet', -])) +AddPaperDocUser._all_field_names_ = RefPaperDoc._all_field_names_.union( + set( + [ + "members", + "custom_message", + "quiet", + ] + ) +) AddPaperDocUser._all_fields_ = RefPaperDoc._all_fields_ + [ - ('members', AddPaperDocUser.members.validator), - ('custom_message', AddPaperDocUser.custom_message.validator), - ('quiet', AddPaperDocUser.quiet.validator), + ("members", AddPaperDocUser.members.validator), + ("custom_message", AddPaperDocUser.custom_message.validator), + ("quiet", AddPaperDocUser.quiet.validator), ] AddPaperDocUserMemberResult.member.validator = sharing.MemberSelector_validator AddPaperDocUserMemberResult.result.validator = AddPaperDocUserResult_validator -AddPaperDocUserMemberResult._all_field_names_ = set([ - 'member', - 'result', -]) +AddPaperDocUserMemberResult._all_field_names_ = set( + [ + "member", + "result", + ] +) AddPaperDocUserMemberResult._all_fields_ = [ - ('member', AddPaperDocUserMemberResult.member.validator), - ('result', AddPaperDocUserMemberResult.result.validator), + ("member", AddPaperDocUserMemberResult.member.validator), + ("result", AddPaperDocUserMemberResult.result.validator), ] AddPaperDocUserResult._success_validator = bv.Void() @@ -2681,143 +2830,162 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddPaperDocUserResult._permission_already_granted_validator = bv.Void() AddPaperDocUserResult._other_validator = bv.Void() AddPaperDocUserResult._tagmap = { - 'success': AddPaperDocUserResult._success_validator, - 'unknown_error': AddPaperDocUserResult._unknown_error_validator, - 'sharing_outside_team_disabled': AddPaperDocUserResult._sharing_outside_team_disabled_validator, - 'daily_limit_reached': AddPaperDocUserResult._daily_limit_reached_validator, - 'user_is_owner': AddPaperDocUserResult._user_is_owner_validator, - 'failed_user_data_retrieval': AddPaperDocUserResult._failed_user_data_retrieval_validator, - 'permission_already_granted': AddPaperDocUserResult._permission_already_granted_validator, - 'other': AddPaperDocUserResult._other_validator, + "success": AddPaperDocUserResult._success_validator, + "unknown_error": AddPaperDocUserResult._unknown_error_validator, + "sharing_outside_team_disabled": AddPaperDocUserResult._sharing_outside_team_disabled_validator, + "daily_limit_reached": AddPaperDocUserResult._daily_limit_reached_validator, + "user_is_owner": AddPaperDocUserResult._user_is_owner_validator, + "failed_user_data_retrieval": AddPaperDocUserResult._failed_user_data_retrieval_validator, + "permission_already_granted": AddPaperDocUserResult._permission_already_granted_validator, + "other": AddPaperDocUserResult._other_validator, } -AddPaperDocUserResult.success = AddPaperDocUserResult('success') -AddPaperDocUserResult.unknown_error = AddPaperDocUserResult('unknown_error') -AddPaperDocUserResult.sharing_outside_team_disabled = AddPaperDocUserResult('sharing_outside_team_disabled') -AddPaperDocUserResult.daily_limit_reached = AddPaperDocUserResult('daily_limit_reached') -AddPaperDocUserResult.user_is_owner = AddPaperDocUserResult('user_is_owner') -AddPaperDocUserResult.failed_user_data_retrieval = AddPaperDocUserResult('failed_user_data_retrieval') -AddPaperDocUserResult.permission_already_granted = AddPaperDocUserResult('permission_already_granted') -AddPaperDocUserResult.other = AddPaperDocUserResult('other') +AddPaperDocUserResult.success = AddPaperDocUserResult("success") +AddPaperDocUserResult.unknown_error = AddPaperDocUserResult("unknown_error") +AddPaperDocUserResult.sharing_outside_team_disabled = AddPaperDocUserResult( + "sharing_outside_team_disabled" +) +AddPaperDocUserResult.daily_limit_reached = AddPaperDocUserResult("daily_limit_reached") +AddPaperDocUserResult.user_is_owner = AddPaperDocUserResult("user_is_owner") +AddPaperDocUserResult.failed_user_data_retrieval = AddPaperDocUserResult( + "failed_user_data_retrieval" +) +AddPaperDocUserResult.permission_already_granted = AddPaperDocUserResult( + "permission_already_granted" +) +AddPaperDocUserResult.other = AddPaperDocUserResult("other") Cursor.value.validator = bv.String() Cursor.expiration.validator = bv.Nullable(common.DropboxTimestamp_validator) -Cursor._all_field_names_ = set([ - 'value', - 'expiration', -]) +Cursor._all_field_names_ = set( + [ + "value", + "expiration", + ] +) Cursor._all_fields_ = [ - ('value', Cursor.value.validator), - ('expiration', Cursor.expiration.validator), + ("value", Cursor.value.validator), + ("expiration", Cursor.expiration.validator), ] PaperApiBaseError._insufficient_permissions_validator = bv.Void() PaperApiBaseError._other_validator = bv.Void() PaperApiBaseError._tagmap = { - 'insufficient_permissions': PaperApiBaseError._insufficient_permissions_validator, - 'other': PaperApiBaseError._other_validator, + "insufficient_permissions": PaperApiBaseError._insufficient_permissions_validator, + "other": PaperApiBaseError._other_validator, } -PaperApiBaseError.insufficient_permissions = PaperApiBaseError('insufficient_permissions') -PaperApiBaseError.other = PaperApiBaseError('other') +PaperApiBaseError.insufficient_permissions = PaperApiBaseError("insufficient_permissions") +PaperApiBaseError.other = PaperApiBaseError("other") DocLookupError._doc_not_found_validator = bv.Void() DocLookupError._tagmap = { - 'doc_not_found': DocLookupError._doc_not_found_validator, + "doc_not_found": DocLookupError._doc_not_found_validator, } DocLookupError._tagmap.update(PaperApiBaseError._tagmap) -DocLookupError.doc_not_found = DocLookupError('doc_not_found') +DocLookupError.doc_not_found = DocLookupError("doc_not_found") DocSubscriptionLevel._default_validator = bv.Void() DocSubscriptionLevel._ignore_validator = bv.Void() DocSubscriptionLevel._every_validator = bv.Void() DocSubscriptionLevel._no_email_validator = bv.Void() DocSubscriptionLevel._tagmap = { - 'default': DocSubscriptionLevel._default_validator, - 'ignore': DocSubscriptionLevel._ignore_validator, - 'every': DocSubscriptionLevel._every_validator, - 'no_email': DocSubscriptionLevel._no_email_validator, + "default": DocSubscriptionLevel._default_validator, + "ignore": DocSubscriptionLevel._ignore_validator, + "every": DocSubscriptionLevel._every_validator, + "no_email": DocSubscriptionLevel._no_email_validator, } -DocSubscriptionLevel.default = DocSubscriptionLevel('default') -DocSubscriptionLevel.ignore = DocSubscriptionLevel('ignore') -DocSubscriptionLevel.every = DocSubscriptionLevel('every') -DocSubscriptionLevel.no_email = DocSubscriptionLevel('no_email') +DocSubscriptionLevel.default = DocSubscriptionLevel("default") +DocSubscriptionLevel.ignore = DocSubscriptionLevel("ignore") +DocSubscriptionLevel.every = DocSubscriptionLevel("every") +DocSubscriptionLevel.no_email = DocSubscriptionLevel("no_email") ExportFormat._html_validator = bv.Void() ExportFormat._markdown_validator = bv.Void() ExportFormat._json_validator = bv.Void() ExportFormat._other_validator = bv.Void() ExportFormat._tagmap = { - 'html': ExportFormat._html_validator, - 'markdown': ExportFormat._markdown_validator, - 'json': ExportFormat._json_validator, - 'other': ExportFormat._other_validator, + "html": ExportFormat._html_validator, + "markdown": ExportFormat._markdown_validator, + "json": ExportFormat._json_validator, + "other": ExportFormat._other_validator, } -ExportFormat.html = ExportFormat('html') -ExportFormat.markdown = ExportFormat('markdown') -ExportFormat.json = ExportFormat('json') -ExportFormat.other = ExportFormat('other') +ExportFormat.html = ExportFormat("html") +ExportFormat.markdown = ExportFormat("markdown") +ExportFormat.json = ExportFormat("json") +ExportFormat.other = ExportFormat("other") Folder.id.validator = bv.String() Folder.name.validator = bv.String() -Folder._all_field_names_ = set([ - 'id', - 'name', -]) +Folder._all_field_names_ = set( + [ + "id", + "name", + ] +) Folder._all_fields_ = [ - ('id', Folder.id.validator), - ('name', Folder.name.validator), + ("id", Folder.id.validator), + ("name", Folder.name.validator), ] FolderSharingPolicyType._team_validator = bv.Void() FolderSharingPolicyType._invite_only_validator = bv.Void() FolderSharingPolicyType._tagmap = { - 'team': FolderSharingPolicyType._team_validator, - 'invite_only': FolderSharingPolicyType._invite_only_validator, + "team": FolderSharingPolicyType._team_validator, + "invite_only": FolderSharingPolicyType._invite_only_validator, } -FolderSharingPolicyType.team = FolderSharingPolicyType('team') -FolderSharingPolicyType.invite_only = FolderSharingPolicyType('invite_only') +FolderSharingPolicyType.team = FolderSharingPolicyType("team") +FolderSharingPolicyType.invite_only = FolderSharingPolicyType("invite_only") FolderSubscriptionLevel._none_validator = bv.Void() FolderSubscriptionLevel._activity_only_validator = bv.Void() FolderSubscriptionLevel._daily_emails_validator = bv.Void() FolderSubscriptionLevel._weekly_emails_validator = bv.Void() FolderSubscriptionLevel._tagmap = { - 'none': FolderSubscriptionLevel._none_validator, - 'activity_only': FolderSubscriptionLevel._activity_only_validator, - 'daily_emails': FolderSubscriptionLevel._daily_emails_validator, - 'weekly_emails': FolderSubscriptionLevel._weekly_emails_validator, + "none": FolderSubscriptionLevel._none_validator, + "activity_only": FolderSubscriptionLevel._activity_only_validator, + "daily_emails": FolderSubscriptionLevel._daily_emails_validator, + "weekly_emails": FolderSubscriptionLevel._weekly_emails_validator, } -FolderSubscriptionLevel.none = FolderSubscriptionLevel('none') -FolderSubscriptionLevel.activity_only = FolderSubscriptionLevel('activity_only') -FolderSubscriptionLevel.daily_emails = FolderSubscriptionLevel('daily_emails') -FolderSubscriptionLevel.weekly_emails = FolderSubscriptionLevel('weekly_emails') +FolderSubscriptionLevel.none = FolderSubscriptionLevel("none") +FolderSubscriptionLevel.activity_only = FolderSubscriptionLevel("activity_only") +FolderSubscriptionLevel.daily_emails = FolderSubscriptionLevel("daily_emails") +FolderSubscriptionLevel.weekly_emails = FolderSubscriptionLevel("weekly_emails") -FoldersContainingPaperDoc.folder_sharing_policy_type.validator = bv.Nullable(FolderSharingPolicyType_validator) +FoldersContainingPaperDoc.folder_sharing_policy_type.validator = bv.Nullable( + FolderSharingPolicyType_validator +) FoldersContainingPaperDoc.folders.validator = bv.Nullable(bv.List(Folder_validator)) -FoldersContainingPaperDoc._all_field_names_ = set([ - 'folder_sharing_policy_type', - 'folders', -]) +FoldersContainingPaperDoc._all_field_names_ = set( + [ + "folder_sharing_policy_type", + "folders", + ] +) FoldersContainingPaperDoc._all_fields_ = [ - ('folder_sharing_policy_type', FoldersContainingPaperDoc.folder_sharing_policy_type.validator), - ('folders', FoldersContainingPaperDoc.folders.validator), + ( + "folder_sharing_policy_type", + FoldersContainingPaperDoc.folder_sharing_policy_type.validator, + ), + ("folders", FoldersContainingPaperDoc.folders.validator), ] GetDocMetadataArg.doc_id.validator = bv.Nullable(PaperDocId_validator) GetDocMetadataArg.file_id.validator = bv.Nullable(files.FileId_validator) -GetDocMetadataArg._all_field_names_ = set([ - 'doc_id', - 'file_id', -]) +GetDocMetadataArg._all_field_names_ = set( + [ + "doc_id", + "file_id", + ] +) GetDocMetadataArg._all_fields_ = [ - ('doc_id', GetDocMetadataArg.doc_id.validator), - ('file_id', GetDocMetadataArg.file_id.validator), + ("doc_id", GetDocMetadataArg.doc_id.validator), + ("file_id", GetDocMetadataArg.file_id.validator), ] ImportFormat._html_validator = bv.Void() @@ -2825,86 +2993,92 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ImportFormat._plain_text_validator = bv.Void() ImportFormat._other_validator = bv.Void() ImportFormat._tagmap = { - 'html': ImportFormat._html_validator, - 'markdown': ImportFormat._markdown_validator, - 'plain_text': ImportFormat._plain_text_validator, - 'other': ImportFormat._other_validator, + "html": ImportFormat._html_validator, + "markdown": ImportFormat._markdown_validator, + "plain_text": ImportFormat._plain_text_validator, + "other": ImportFormat._other_validator, } -ImportFormat.html = ImportFormat('html') -ImportFormat.markdown = ImportFormat('markdown') -ImportFormat.plain_text = ImportFormat('plain_text') -ImportFormat.other = ImportFormat('other') +ImportFormat.html = ImportFormat("html") +ImportFormat.markdown = ImportFormat("markdown") +ImportFormat.plain_text = ImportFormat("plain_text") +ImportFormat.other = ImportFormat("other") InviteeInfoWithPermissionLevel.invitee.validator = sharing.InviteeInfo_validator InviteeInfoWithPermissionLevel.permission_level.validator = PaperDocPermissionLevel_validator -InviteeInfoWithPermissionLevel._all_field_names_ = set([ - 'invitee', - 'permission_level', -]) +InviteeInfoWithPermissionLevel._all_field_names_ = set( + [ + "invitee", + "permission_level", + ] +) InviteeInfoWithPermissionLevel._all_fields_ = [ - ('invitee', InviteeInfoWithPermissionLevel.invitee.validator), - ('permission_level', InviteeInfoWithPermissionLevel.permission_level.validator), + ("invitee", InviteeInfoWithPermissionLevel.invitee.validator), + ("permission_level", InviteeInfoWithPermissionLevel.permission_level.validator), ] ListDocsCursorError._cursor_error_validator = PaperApiCursorError_validator ListDocsCursorError._other_validator = bv.Void() ListDocsCursorError._tagmap = { - 'cursor_error': ListDocsCursorError._cursor_error_validator, - 'other': ListDocsCursorError._other_validator, + "cursor_error": ListDocsCursorError._cursor_error_validator, + "other": ListDocsCursorError._other_validator, } -ListDocsCursorError.other = ListDocsCursorError('other') +ListDocsCursorError.other = ListDocsCursorError("other") ListPaperDocsArgs.filter_by.validator = ListPaperDocsFilterBy_validator ListPaperDocsArgs.sort_by.validator = ListPaperDocsSortBy_validator ListPaperDocsArgs.sort_order.validator = ListPaperDocsSortOrder_validator ListPaperDocsArgs.limit.validator = bv.Int32(min_value=1, max_value=1000) ListPaperDocsArgs.stop_at_date.validator = bv.Nullable(common.DropboxTimestamp_validator) -ListPaperDocsArgs._all_field_names_ = set([ - 'filter_by', - 'sort_by', - 'sort_order', - 'limit', - 'stop_at_date', -]) +ListPaperDocsArgs._all_field_names_ = set( + [ + "filter_by", + "sort_by", + "sort_order", + "limit", + "stop_at_date", + ] +) ListPaperDocsArgs._all_fields_ = [ - ('filter_by', ListPaperDocsArgs.filter_by.validator), - ('sort_by', ListPaperDocsArgs.sort_by.validator), - ('sort_order', ListPaperDocsArgs.sort_order.validator), - ('limit', ListPaperDocsArgs.limit.validator), - ('stop_at_date', ListPaperDocsArgs.stop_at_date.validator), + ("filter_by", ListPaperDocsArgs.filter_by.validator), + ("sort_by", ListPaperDocsArgs.sort_by.validator), + ("sort_order", ListPaperDocsArgs.sort_order.validator), + ("limit", ListPaperDocsArgs.limit.validator), + ("stop_at_date", ListPaperDocsArgs.stop_at_date.validator), ] ListPaperDocsContinueArgs.cursor.validator = bv.String() -ListPaperDocsContinueArgs._all_field_names_ = set(['cursor']) -ListPaperDocsContinueArgs._all_fields_ = [('cursor', ListPaperDocsContinueArgs.cursor.validator)] +ListPaperDocsContinueArgs._all_field_names_ = set(["cursor"]) +ListPaperDocsContinueArgs._all_fields_ = [("cursor", ListPaperDocsContinueArgs.cursor.validator)] ListPaperDocsFilterBy._docs_accessed_validator = bv.Void() ListPaperDocsFilterBy._docs_created_validator = bv.Void() ListPaperDocsFilterBy._other_validator = bv.Void() ListPaperDocsFilterBy._tagmap = { - 'docs_accessed': ListPaperDocsFilterBy._docs_accessed_validator, - 'docs_created': ListPaperDocsFilterBy._docs_created_validator, - 'other': ListPaperDocsFilterBy._other_validator, + "docs_accessed": ListPaperDocsFilterBy._docs_accessed_validator, + "docs_created": ListPaperDocsFilterBy._docs_created_validator, + "other": ListPaperDocsFilterBy._other_validator, } -ListPaperDocsFilterBy.docs_accessed = ListPaperDocsFilterBy('docs_accessed') -ListPaperDocsFilterBy.docs_created = ListPaperDocsFilterBy('docs_created') -ListPaperDocsFilterBy.other = ListPaperDocsFilterBy('other') +ListPaperDocsFilterBy.docs_accessed = ListPaperDocsFilterBy("docs_accessed") +ListPaperDocsFilterBy.docs_created = ListPaperDocsFilterBy("docs_created") +ListPaperDocsFilterBy.other = ListPaperDocsFilterBy("other") ListPaperDocsResponse.doc_ids.validator = bv.List(PaperDocId_validator) ListPaperDocsResponse.cursor.validator = Cursor_validator ListPaperDocsResponse.has_more.validator = bv.Boolean() -ListPaperDocsResponse._all_field_names_ = set([ - 'doc_ids', - 'cursor', - 'has_more', -]) +ListPaperDocsResponse._all_field_names_ = set( + [ + "doc_ids", + "cursor", + "has_more", + ] +) ListPaperDocsResponse._all_fields_ = [ - ('doc_ids', ListPaperDocsResponse.doc_ids.validator), - ('cursor', ListPaperDocsResponse.cursor.validator), - ('has_more', ListPaperDocsResponse.has_more.validator), + ("doc_ids", ListPaperDocsResponse.doc_ids.validator), + ("cursor", ListPaperDocsResponse.cursor.validator), + ("has_more", ListPaperDocsResponse.has_more.validator), ] ListPaperDocsSortBy._accessed_validator = bv.Void() @@ -2912,98 +3086,116 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListPaperDocsSortBy._created_validator = bv.Void() ListPaperDocsSortBy._other_validator = bv.Void() ListPaperDocsSortBy._tagmap = { - 'accessed': ListPaperDocsSortBy._accessed_validator, - 'modified': ListPaperDocsSortBy._modified_validator, - 'created': ListPaperDocsSortBy._created_validator, - 'other': ListPaperDocsSortBy._other_validator, + "accessed": ListPaperDocsSortBy._accessed_validator, + "modified": ListPaperDocsSortBy._modified_validator, + "created": ListPaperDocsSortBy._created_validator, + "other": ListPaperDocsSortBy._other_validator, } -ListPaperDocsSortBy.accessed = ListPaperDocsSortBy('accessed') -ListPaperDocsSortBy.modified = ListPaperDocsSortBy('modified') -ListPaperDocsSortBy.created = ListPaperDocsSortBy('created') -ListPaperDocsSortBy.other = ListPaperDocsSortBy('other') +ListPaperDocsSortBy.accessed = ListPaperDocsSortBy("accessed") +ListPaperDocsSortBy.modified = ListPaperDocsSortBy("modified") +ListPaperDocsSortBy.created = ListPaperDocsSortBy("created") +ListPaperDocsSortBy.other = ListPaperDocsSortBy("other") ListPaperDocsSortOrder._ascending_validator = bv.Void() ListPaperDocsSortOrder._descending_validator = bv.Void() ListPaperDocsSortOrder._other_validator = bv.Void() ListPaperDocsSortOrder._tagmap = { - 'ascending': ListPaperDocsSortOrder._ascending_validator, - 'descending': ListPaperDocsSortOrder._descending_validator, - 'other': ListPaperDocsSortOrder._other_validator, + "ascending": ListPaperDocsSortOrder._ascending_validator, + "descending": ListPaperDocsSortOrder._descending_validator, + "other": ListPaperDocsSortOrder._other_validator, } -ListPaperDocsSortOrder.ascending = ListPaperDocsSortOrder('ascending') -ListPaperDocsSortOrder.descending = ListPaperDocsSortOrder('descending') -ListPaperDocsSortOrder.other = ListPaperDocsSortOrder('other') +ListPaperDocsSortOrder.ascending = ListPaperDocsSortOrder("ascending") +ListPaperDocsSortOrder.descending = ListPaperDocsSortOrder("descending") +ListPaperDocsSortOrder.other = ListPaperDocsSortOrder("other") ListUsersCursorError._doc_not_found_validator = bv.Void() ListUsersCursorError._cursor_error_validator = PaperApiCursorError_validator ListUsersCursorError._tagmap = { - 'doc_not_found': ListUsersCursorError._doc_not_found_validator, - 'cursor_error': ListUsersCursorError._cursor_error_validator, + "doc_not_found": ListUsersCursorError._doc_not_found_validator, + "cursor_error": ListUsersCursorError._cursor_error_validator, } ListUsersCursorError._tagmap.update(PaperApiBaseError._tagmap) -ListUsersCursorError.doc_not_found = ListUsersCursorError('doc_not_found') +ListUsersCursorError.doc_not_found = ListUsersCursorError("doc_not_found") ListUsersOnFolderArgs.limit.validator = bv.Int32(min_value=1, max_value=1000) -ListUsersOnFolderArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['limit'])) -ListUsersOnFolderArgs._all_fields_ = RefPaperDoc._all_fields_ + [('limit', ListUsersOnFolderArgs.limit.validator)] +ListUsersOnFolderArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set(["limit"])) +ListUsersOnFolderArgs._all_fields_ = RefPaperDoc._all_fields_ + [ + ("limit", ListUsersOnFolderArgs.limit.validator) +] ListUsersOnFolderContinueArgs.cursor.validator = bv.String() -ListUsersOnFolderContinueArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['cursor'])) -ListUsersOnFolderContinueArgs._all_fields_ = RefPaperDoc._all_fields_ + [('cursor', ListUsersOnFolderContinueArgs.cursor.validator)] +ListUsersOnFolderContinueArgs._all_field_names_ = RefPaperDoc._all_field_names_.union( + set(["cursor"]) +) +ListUsersOnFolderContinueArgs._all_fields_ = RefPaperDoc._all_fields_ + [ + ("cursor", ListUsersOnFolderContinueArgs.cursor.validator) +] ListUsersOnFolderResponse.invitees.validator = bv.List(sharing.InviteeInfo_validator) ListUsersOnFolderResponse.users.validator = bv.List(sharing.UserInfo_validator) ListUsersOnFolderResponse.cursor.validator = Cursor_validator ListUsersOnFolderResponse.has_more.validator = bv.Boolean() -ListUsersOnFolderResponse._all_field_names_ = set([ - 'invitees', - 'users', - 'cursor', - 'has_more', -]) +ListUsersOnFolderResponse._all_field_names_ = set( + [ + "invitees", + "users", + "cursor", + "has_more", + ] +) ListUsersOnFolderResponse._all_fields_ = [ - ('invitees', ListUsersOnFolderResponse.invitees.validator), - ('users', ListUsersOnFolderResponse.users.validator), - ('cursor', ListUsersOnFolderResponse.cursor.validator), - ('has_more', ListUsersOnFolderResponse.has_more.validator), + ("invitees", ListUsersOnFolderResponse.invitees.validator), + ("users", ListUsersOnFolderResponse.users.validator), + ("cursor", ListUsersOnFolderResponse.cursor.validator), + ("has_more", ListUsersOnFolderResponse.has_more.validator), ] ListUsersOnPaperDocArgs.limit.validator = bv.Int32(min_value=1, max_value=1000) ListUsersOnPaperDocArgs.filter_by.validator = UserOnPaperDocFilter_validator -ListUsersOnPaperDocArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set([ - 'limit', - 'filter_by', -])) +ListUsersOnPaperDocArgs._all_field_names_ = RefPaperDoc._all_field_names_.union( + set( + [ + "limit", + "filter_by", + ] + ) +) ListUsersOnPaperDocArgs._all_fields_ = RefPaperDoc._all_fields_ + [ - ('limit', ListUsersOnPaperDocArgs.limit.validator), - ('filter_by', ListUsersOnPaperDocArgs.filter_by.validator), + ("limit", ListUsersOnPaperDocArgs.limit.validator), + ("filter_by", ListUsersOnPaperDocArgs.filter_by.validator), ] ListUsersOnPaperDocContinueArgs.cursor.validator = bv.String() -ListUsersOnPaperDocContinueArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['cursor'])) -ListUsersOnPaperDocContinueArgs._all_fields_ = RefPaperDoc._all_fields_ + [('cursor', ListUsersOnPaperDocContinueArgs.cursor.validator)] +ListUsersOnPaperDocContinueArgs._all_field_names_ = RefPaperDoc._all_field_names_.union( + set(["cursor"]) +) +ListUsersOnPaperDocContinueArgs._all_fields_ = RefPaperDoc._all_fields_ + [ + ("cursor", ListUsersOnPaperDocContinueArgs.cursor.validator) +] ListUsersOnPaperDocResponse.invitees.validator = bv.List(InviteeInfoWithPermissionLevel_validator) ListUsersOnPaperDocResponse.users.validator = bv.List(UserInfoWithPermissionLevel_validator) ListUsersOnPaperDocResponse.doc_owner.validator = sharing.UserInfo_validator ListUsersOnPaperDocResponse.cursor.validator = Cursor_validator ListUsersOnPaperDocResponse.has_more.validator = bv.Boolean() -ListUsersOnPaperDocResponse._all_field_names_ = set([ - 'invitees', - 'users', - 'doc_owner', - 'cursor', - 'has_more', -]) +ListUsersOnPaperDocResponse._all_field_names_ = set( + [ + "invitees", + "users", + "doc_owner", + "cursor", + "has_more", + ] +) ListUsersOnPaperDocResponse._all_fields_ = [ - ('invitees', ListUsersOnPaperDocResponse.invitees.validator), - ('users', ListUsersOnPaperDocResponse.users.validator), - ('doc_owner', ListUsersOnPaperDocResponse.doc_owner.validator), - ('cursor', ListUsersOnPaperDocResponse.cursor.validator), - ('has_more', ListUsersOnPaperDocResponse.has_more.validator), + ("invitees", ListUsersOnPaperDocResponse.invitees.validator), + ("users", ListUsersOnPaperDocResponse.users.validator), + ("doc_owner", ListUsersOnPaperDocResponse.doc_owner.validator), + ("cursor", ListUsersOnPaperDocResponse.cursor.validator), + ("has_more", ListUsersOnPaperDocResponse.has_more.validator), ] PaperApiCursorError._expired_cursor_validator = bv.Void() @@ -3012,28 +3204,30 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperApiCursorError._reset_validator = bv.Void() PaperApiCursorError._other_validator = bv.Void() PaperApiCursorError._tagmap = { - 'expired_cursor': PaperApiCursorError._expired_cursor_validator, - 'invalid_cursor': PaperApiCursorError._invalid_cursor_validator, - 'wrong_user_in_cursor': PaperApiCursorError._wrong_user_in_cursor_validator, - 'reset': PaperApiCursorError._reset_validator, - 'other': PaperApiCursorError._other_validator, + "expired_cursor": PaperApiCursorError._expired_cursor_validator, + "invalid_cursor": PaperApiCursorError._invalid_cursor_validator, + "wrong_user_in_cursor": PaperApiCursorError._wrong_user_in_cursor_validator, + "reset": PaperApiCursorError._reset_validator, + "other": PaperApiCursorError._other_validator, } -PaperApiCursorError.expired_cursor = PaperApiCursorError('expired_cursor') -PaperApiCursorError.invalid_cursor = PaperApiCursorError('invalid_cursor') -PaperApiCursorError.wrong_user_in_cursor = PaperApiCursorError('wrong_user_in_cursor') -PaperApiCursorError.reset = PaperApiCursorError('reset') -PaperApiCursorError.other = PaperApiCursorError('other') +PaperApiCursorError.expired_cursor = PaperApiCursorError("expired_cursor") +PaperApiCursorError.invalid_cursor = PaperApiCursorError("invalid_cursor") +PaperApiCursorError.wrong_user_in_cursor = PaperApiCursorError("wrong_user_in_cursor") +PaperApiCursorError.reset = PaperApiCursorError("reset") +PaperApiCursorError.other = PaperApiCursorError("other") PaperDocCreateArgs.parent_folder_id.validator = bv.Nullable(bv.String()) PaperDocCreateArgs.import_format.validator = ImportFormat_validator -PaperDocCreateArgs._all_field_names_ = set([ - 'parent_folder_id', - 'import_format', -]) +PaperDocCreateArgs._all_field_names_ = set( + [ + "parent_folder_id", + "import_format", + ] +) PaperDocCreateArgs._all_fields_ = [ - ('parent_folder_id', PaperDocCreateArgs.parent_folder_id.validator), - ('import_format', PaperDocCreateArgs.import_format.validator), + ("parent_folder_id", PaperDocCreateArgs.parent_folder_id.validator), + ("import_format", PaperDocCreateArgs.import_format.validator), ] PaperDocCreateError._content_malformed_validator = bv.Void() @@ -3041,58 +3235,66 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocCreateError._doc_length_exceeded_validator = bv.Void() PaperDocCreateError._image_size_exceeded_validator = bv.Void() PaperDocCreateError._tagmap = { - 'content_malformed': PaperDocCreateError._content_malformed_validator, - 'folder_not_found': PaperDocCreateError._folder_not_found_validator, - 'doc_length_exceeded': PaperDocCreateError._doc_length_exceeded_validator, - 'image_size_exceeded': PaperDocCreateError._image_size_exceeded_validator, + "content_malformed": PaperDocCreateError._content_malformed_validator, + "folder_not_found": PaperDocCreateError._folder_not_found_validator, + "doc_length_exceeded": PaperDocCreateError._doc_length_exceeded_validator, + "image_size_exceeded": PaperDocCreateError._image_size_exceeded_validator, } PaperDocCreateError._tagmap.update(PaperApiBaseError._tagmap) -PaperDocCreateError.content_malformed = PaperDocCreateError('content_malformed') -PaperDocCreateError.folder_not_found = PaperDocCreateError('folder_not_found') -PaperDocCreateError.doc_length_exceeded = PaperDocCreateError('doc_length_exceeded') -PaperDocCreateError.image_size_exceeded = PaperDocCreateError('image_size_exceeded') +PaperDocCreateError.content_malformed = PaperDocCreateError("content_malformed") +PaperDocCreateError.folder_not_found = PaperDocCreateError("folder_not_found") +PaperDocCreateError.doc_length_exceeded = PaperDocCreateError("doc_length_exceeded") +PaperDocCreateError.image_size_exceeded = PaperDocCreateError("image_size_exceeded") PaperDocCreateUpdateResult.doc_id.validator = bv.String() PaperDocCreateUpdateResult.revision.validator = bv.Int64() PaperDocCreateUpdateResult.title.validator = bv.String() -PaperDocCreateUpdateResult._all_field_names_ = set([ - 'doc_id', - 'revision', - 'title', -]) +PaperDocCreateUpdateResult._all_field_names_ = set( + [ + "doc_id", + "revision", + "title", + ] +) PaperDocCreateUpdateResult._all_fields_ = [ - ('doc_id', PaperDocCreateUpdateResult.doc_id.validator), - ('revision', PaperDocCreateUpdateResult.revision.validator), - ('title', PaperDocCreateUpdateResult.title.validator), + ("doc_id", PaperDocCreateUpdateResult.doc_id.validator), + ("revision", PaperDocCreateUpdateResult.revision.validator), + ("title", PaperDocCreateUpdateResult.title.validator), ] PaperDocExport.export_format.validator = ExportFormat_validator PaperDocExport.include_comments.validator = bv.Boolean() -PaperDocExport._all_field_names_ = RefPaperDoc._all_field_names_.union(set([ - 'export_format', - 'include_comments', -])) +PaperDocExport._all_field_names_ = RefPaperDoc._all_field_names_.union( + set( + [ + "export_format", + "include_comments", + ] + ) +) PaperDocExport._all_fields_ = RefPaperDoc._all_fields_ + [ - ('export_format', PaperDocExport.export_format.validator), - ('include_comments', PaperDocExport.include_comments.validator), + ("export_format", PaperDocExport.export_format.validator), + ("include_comments", PaperDocExport.include_comments.validator), ] PaperDocExportResult.owner.validator = bv.String() PaperDocExportResult.title.validator = bv.String() PaperDocExportResult.revision.validator = bv.Int64() PaperDocExportResult.mime_type.validator = bv.String() -PaperDocExportResult._all_field_names_ = set([ - 'owner', - 'title', - 'revision', - 'mime_type', -]) +PaperDocExportResult._all_field_names_ = set( + [ + "owner", + "title", + "revision", + "mime_type", + ] +) PaperDocExportResult._all_fields_ = [ - ('owner', PaperDocExportResult.owner.validator), - ('title', PaperDocExportResult.title.validator), - ('revision', PaperDocExportResult.revision.validator), - ('mime_type', PaperDocExportResult.mime_type.validator), + ("owner", PaperDocExportResult.owner.validator), + ("title", PaperDocExportResult.title.validator), + ("revision", PaperDocExportResult.revision.validator), + ("mime_type", PaperDocExportResult.mime_type.validator), ] PaperDocGetMetadataResult.doc_id.validator = PaperDocId_validator @@ -3103,69 +3305,79 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocGetMetadataResult.revision.validator = bv.Int64() PaperDocGetMetadataResult.last_updated_date.validator = common.DropboxTimestamp_validator PaperDocGetMetadataResult.last_editor.validator = bv.String() -PaperDocGetMetadataResult._all_field_names_ = set([ - 'doc_id', - 'owner', - 'title', - 'created_date', - 'status', - 'revision', - 'last_updated_date', - 'last_editor', -]) +PaperDocGetMetadataResult._all_field_names_ = set( + [ + "doc_id", + "owner", + "title", + "created_date", + "status", + "revision", + "last_updated_date", + "last_editor", + ] +) PaperDocGetMetadataResult._all_fields_ = [ - ('doc_id', PaperDocGetMetadataResult.doc_id.validator), - ('owner', PaperDocGetMetadataResult.owner.validator), - ('title', PaperDocGetMetadataResult.title.validator), - ('created_date', PaperDocGetMetadataResult.created_date.validator), - ('status', PaperDocGetMetadataResult.status.validator), - ('revision', PaperDocGetMetadataResult.revision.validator), - ('last_updated_date', PaperDocGetMetadataResult.last_updated_date.validator), - ('last_editor', PaperDocGetMetadataResult.last_editor.validator), + ("doc_id", PaperDocGetMetadataResult.doc_id.validator), + ("owner", PaperDocGetMetadataResult.owner.validator), + ("title", PaperDocGetMetadataResult.title.validator), + ("created_date", PaperDocGetMetadataResult.created_date.validator), + ("status", PaperDocGetMetadataResult.status.validator), + ("revision", PaperDocGetMetadataResult.revision.validator), + ("last_updated_date", PaperDocGetMetadataResult.last_updated_date.validator), + ("last_editor", PaperDocGetMetadataResult.last_editor.validator), ] PaperDocPermissionLevel._edit_validator = bv.Void() PaperDocPermissionLevel._view_and_comment_validator = bv.Void() PaperDocPermissionLevel._other_validator = bv.Void() PaperDocPermissionLevel._tagmap = { - 'edit': PaperDocPermissionLevel._edit_validator, - 'view_and_comment': PaperDocPermissionLevel._view_and_comment_validator, - 'other': PaperDocPermissionLevel._other_validator, + "edit": PaperDocPermissionLevel._edit_validator, + "view_and_comment": PaperDocPermissionLevel._view_and_comment_validator, + "other": PaperDocPermissionLevel._other_validator, } -PaperDocPermissionLevel.edit = PaperDocPermissionLevel('edit') -PaperDocPermissionLevel.view_and_comment = PaperDocPermissionLevel('view_and_comment') -PaperDocPermissionLevel.other = PaperDocPermissionLevel('other') +PaperDocPermissionLevel.edit = PaperDocPermissionLevel("edit") +PaperDocPermissionLevel.view_and_comment = PaperDocPermissionLevel("view_and_comment") +PaperDocPermissionLevel.other = PaperDocPermissionLevel("other") PaperDocSharingPolicy.sharing_policy.validator = SharingPolicy_validator -PaperDocSharingPolicy._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['sharing_policy'])) -PaperDocSharingPolicy._all_fields_ = RefPaperDoc._all_fields_ + [('sharing_policy', PaperDocSharingPolicy.sharing_policy.validator)] +PaperDocSharingPolicy._all_field_names_ = RefPaperDoc._all_field_names_.union( + set(["sharing_policy"]) +) +PaperDocSharingPolicy._all_fields_ = RefPaperDoc._all_fields_ + [ + ("sharing_policy", PaperDocSharingPolicy.sharing_policy.validator) +] PaperDocStatus._active_validator = bv.Void() PaperDocStatus._deleted_validator = bv.Void() PaperDocStatus._other_validator = bv.Void() PaperDocStatus._tagmap = { - 'active': PaperDocStatus._active_validator, - 'deleted': PaperDocStatus._deleted_validator, - 'other': PaperDocStatus._other_validator, + "active": PaperDocStatus._active_validator, + "deleted": PaperDocStatus._deleted_validator, + "other": PaperDocStatus._other_validator, } -PaperDocStatus.active = PaperDocStatus('active') -PaperDocStatus.deleted = PaperDocStatus('deleted') -PaperDocStatus.other = PaperDocStatus('other') +PaperDocStatus.active = PaperDocStatus("active") +PaperDocStatus.deleted = PaperDocStatus("deleted") +PaperDocStatus.other = PaperDocStatus("other") PaperDocUpdateArgs.doc_update_policy.validator = PaperDocUpdatePolicy_validator PaperDocUpdateArgs.revision.validator = bv.Int64() PaperDocUpdateArgs.import_format.validator = ImportFormat_validator -PaperDocUpdateArgs._all_field_names_ = RefPaperDoc._all_field_names_.union(set([ - 'doc_update_policy', - 'revision', - 'import_format', -])) +PaperDocUpdateArgs._all_field_names_ = RefPaperDoc._all_field_names_.union( + set( + [ + "doc_update_policy", + "revision", + "import_format", + ] + ) +) PaperDocUpdateArgs._all_fields_ = RefPaperDoc._all_fields_ + [ - ('doc_update_policy', PaperDocUpdateArgs.doc_update_policy.validator), - ('revision', PaperDocUpdateArgs.revision.validator), - ('import_format', PaperDocUpdateArgs.import_format.validator), + ("doc_update_policy", PaperDocUpdateArgs.doc_update_policy.validator), + ("revision", PaperDocUpdateArgs.revision.validator), + ("import_format", PaperDocUpdateArgs.import_format.validator), ] PaperDocUpdateError._content_malformed_validator = bv.Void() @@ -3175,126 +3387,136 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocUpdateError._doc_archived_validator = bv.Void() PaperDocUpdateError._doc_deleted_validator = bv.Void() PaperDocUpdateError._tagmap = { - 'content_malformed': PaperDocUpdateError._content_malformed_validator, - 'revision_mismatch': PaperDocUpdateError._revision_mismatch_validator, - 'doc_length_exceeded': PaperDocUpdateError._doc_length_exceeded_validator, - 'image_size_exceeded': PaperDocUpdateError._image_size_exceeded_validator, - 'doc_archived': PaperDocUpdateError._doc_archived_validator, - 'doc_deleted': PaperDocUpdateError._doc_deleted_validator, + "content_malformed": PaperDocUpdateError._content_malformed_validator, + "revision_mismatch": PaperDocUpdateError._revision_mismatch_validator, + "doc_length_exceeded": PaperDocUpdateError._doc_length_exceeded_validator, + "image_size_exceeded": PaperDocUpdateError._image_size_exceeded_validator, + "doc_archived": PaperDocUpdateError._doc_archived_validator, + "doc_deleted": PaperDocUpdateError._doc_deleted_validator, } PaperDocUpdateError._tagmap.update(DocLookupError._tagmap) -PaperDocUpdateError.content_malformed = PaperDocUpdateError('content_malformed') -PaperDocUpdateError.revision_mismatch = PaperDocUpdateError('revision_mismatch') -PaperDocUpdateError.doc_length_exceeded = PaperDocUpdateError('doc_length_exceeded') -PaperDocUpdateError.image_size_exceeded = PaperDocUpdateError('image_size_exceeded') -PaperDocUpdateError.doc_archived = PaperDocUpdateError('doc_archived') -PaperDocUpdateError.doc_deleted = PaperDocUpdateError('doc_deleted') +PaperDocUpdateError.content_malformed = PaperDocUpdateError("content_malformed") +PaperDocUpdateError.revision_mismatch = PaperDocUpdateError("revision_mismatch") +PaperDocUpdateError.doc_length_exceeded = PaperDocUpdateError("doc_length_exceeded") +PaperDocUpdateError.image_size_exceeded = PaperDocUpdateError("image_size_exceeded") +PaperDocUpdateError.doc_archived = PaperDocUpdateError("doc_archived") +PaperDocUpdateError.doc_deleted = PaperDocUpdateError("doc_deleted") PaperDocUpdatePolicy._append_validator = bv.Void() PaperDocUpdatePolicy._prepend_validator = bv.Void() PaperDocUpdatePolicy._overwrite_all_validator = bv.Void() PaperDocUpdatePolicy._other_validator = bv.Void() PaperDocUpdatePolicy._tagmap = { - 'append': PaperDocUpdatePolicy._append_validator, - 'prepend': PaperDocUpdatePolicy._prepend_validator, - 'overwrite_all': PaperDocUpdatePolicy._overwrite_all_validator, - 'other': PaperDocUpdatePolicy._other_validator, + "append": PaperDocUpdatePolicy._append_validator, + "prepend": PaperDocUpdatePolicy._prepend_validator, + "overwrite_all": PaperDocUpdatePolicy._overwrite_all_validator, + "other": PaperDocUpdatePolicy._other_validator, } -PaperDocUpdatePolicy.append = PaperDocUpdatePolicy('append') -PaperDocUpdatePolicy.prepend = PaperDocUpdatePolicy('prepend') -PaperDocUpdatePolicy.overwrite_all = PaperDocUpdatePolicy('overwrite_all') -PaperDocUpdatePolicy.other = PaperDocUpdatePolicy('other') +PaperDocUpdatePolicy.append = PaperDocUpdatePolicy("append") +PaperDocUpdatePolicy.prepend = PaperDocUpdatePolicy("prepend") +PaperDocUpdatePolicy.overwrite_all = PaperDocUpdatePolicy("overwrite_all") +PaperDocUpdatePolicy.other = PaperDocUpdatePolicy("other") PaperFolderCreateArg.name.validator = bv.String() PaperFolderCreateArg.parent_folder_id.validator = bv.Nullable(bv.String()) PaperFolderCreateArg.is_team_folder.validator = bv.Nullable(bv.Boolean()) -PaperFolderCreateArg._all_field_names_ = set([ - 'name', - 'parent_folder_id', - 'is_team_folder', -]) +PaperFolderCreateArg._all_field_names_ = set( + [ + "name", + "parent_folder_id", + "is_team_folder", + ] +) PaperFolderCreateArg._all_fields_ = [ - ('name', PaperFolderCreateArg.name.validator), - ('parent_folder_id', PaperFolderCreateArg.parent_folder_id.validator), - ('is_team_folder', PaperFolderCreateArg.is_team_folder.validator), + ("name", PaperFolderCreateArg.name.validator), + ("parent_folder_id", PaperFolderCreateArg.parent_folder_id.validator), + ("is_team_folder", PaperFolderCreateArg.is_team_folder.validator), ] PaperFolderCreateError._folder_not_found_validator = bv.Void() PaperFolderCreateError._invalid_folder_id_validator = bv.Void() PaperFolderCreateError._tagmap = { - 'folder_not_found': PaperFolderCreateError._folder_not_found_validator, - 'invalid_folder_id': PaperFolderCreateError._invalid_folder_id_validator, + "folder_not_found": PaperFolderCreateError._folder_not_found_validator, + "invalid_folder_id": PaperFolderCreateError._invalid_folder_id_validator, } PaperFolderCreateError._tagmap.update(PaperApiBaseError._tagmap) -PaperFolderCreateError.folder_not_found = PaperFolderCreateError('folder_not_found') -PaperFolderCreateError.invalid_folder_id = PaperFolderCreateError('invalid_folder_id') +PaperFolderCreateError.folder_not_found = PaperFolderCreateError("folder_not_found") +PaperFolderCreateError.invalid_folder_id = PaperFolderCreateError("invalid_folder_id") PaperFolderCreateResult.folder_id.validator = bv.String() -PaperFolderCreateResult._all_field_names_ = set(['folder_id']) -PaperFolderCreateResult._all_fields_ = [('folder_id', PaperFolderCreateResult.folder_id.validator)] +PaperFolderCreateResult._all_field_names_ = set(["folder_id"]) +PaperFolderCreateResult._all_fields_ = [("folder_id", PaperFolderCreateResult.folder_id.validator)] RemovePaperDocUser.member.validator = sharing.MemberSelector_validator -RemovePaperDocUser._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['member'])) -RemovePaperDocUser._all_fields_ = RefPaperDoc._all_fields_ + [('member', RemovePaperDocUser.member.validator)] +RemovePaperDocUser._all_field_names_ = RefPaperDoc._all_field_names_.union(set(["member"])) +RemovePaperDocUser._all_fields_ = RefPaperDoc._all_fields_ + [ + ("member", RemovePaperDocUser.member.validator) +] SharingPolicy.public_sharing_policy.validator = bv.Nullable(SharingPublicPolicyType_validator) SharingPolicy.team_sharing_policy.validator = bv.Nullable(SharingTeamPolicyType_validator) -SharingPolicy._all_field_names_ = set([ - 'public_sharing_policy', - 'team_sharing_policy', -]) +SharingPolicy._all_field_names_ = set( + [ + "public_sharing_policy", + "team_sharing_policy", + ] +) SharingPolicy._all_fields_ = [ - ('public_sharing_policy', SharingPolicy.public_sharing_policy.validator), - ('team_sharing_policy', SharingPolicy.team_sharing_policy.validator), + ("public_sharing_policy", SharingPolicy.public_sharing_policy.validator), + ("team_sharing_policy", SharingPolicy.team_sharing_policy.validator), ] SharingTeamPolicyType._people_with_link_can_edit_validator = bv.Void() SharingTeamPolicyType._people_with_link_can_view_and_comment_validator = bv.Void() SharingTeamPolicyType._invite_only_validator = bv.Void() SharingTeamPolicyType._tagmap = { - 'people_with_link_can_edit': SharingTeamPolicyType._people_with_link_can_edit_validator, - 'people_with_link_can_view_and_comment': SharingTeamPolicyType._people_with_link_can_view_and_comment_validator, - 'invite_only': SharingTeamPolicyType._invite_only_validator, + "people_with_link_can_edit": SharingTeamPolicyType._people_with_link_can_edit_validator, + "people_with_link_can_view_and_comment": SharingTeamPolicyType._people_with_link_can_view_and_comment_validator, + "invite_only": SharingTeamPolicyType._invite_only_validator, } -SharingTeamPolicyType.people_with_link_can_edit = SharingTeamPolicyType('people_with_link_can_edit') -SharingTeamPolicyType.people_with_link_can_view_and_comment = SharingTeamPolicyType('people_with_link_can_view_and_comment') -SharingTeamPolicyType.invite_only = SharingTeamPolicyType('invite_only') +SharingTeamPolicyType.people_with_link_can_edit = SharingTeamPolicyType("people_with_link_can_edit") +SharingTeamPolicyType.people_with_link_can_view_and_comment = SharingTeamPolicyType( + "people_with_link_can_view_and_comment" +) +SharingTeamPolicyType.invite_only = SharingTeamPolicyType("invite_only") SharingPublicPolicyType._disabled_validator = bv.Void() SharingPublicPolicyType._tagmap = { - 'disabled': SharingPublicPolicyType._disabled_validator, + "disabled": SharingPublicPolicyType._disabled_validator, } SharingPublicPolicyType._tagmap.update(SharingTeamPolicyType._tagmap) -SharingPublicPolicyType.disabled = SharingPublicPolicyType('disabled') +SharingPublicPolicyType.disabled = SharingPublicPolicyType("disabled") UserInfoWithPermissionLevel.user.validator = sharing.UserInfo_validator UserInfoWithPermissionLevel.permission_level.validator = PaperDocPermissionLevel_validator -UserInfoWithPermissionLevel._all_field_names_ = set([ - 'user', - 'permission_level', -]) +UserInfoWithPermissionLevel._all_field_names_ = set( + [ + "user", + "permission_level", + ] +) UserInfoWithPermissionLevel._all_fields_ = [ - ('user', UserInfoWithPermissionLevel.user.validator), - ('permission_level', UserInfoWithPermissionLevel.permission_level.validator), + ("user", UserInfoWithPermissionLevel.user.validator), + ("permission_level", UserInfoWithPermissionLevel.permission_level.validator), ] UserOnPaperDocFilter._visited_validator = bv.Void() UserOnPaperDocFilter._shared_validator = bv.Void() UserOnPaperDocFilter._other_validator = bv.Void() UserOnPaperDocFilter._tagmap = { - 'visited': UserOnPaperDocFilter._visited_validator, - 'shared': UserOnPaperDocFilter._shared_validator, - 'other': UserOnPaperDocFilter._other_validator, + "visited": UserOnPaperDocFilter._visited_validator, + "shared": UserOnPaperDocFilter._shared_validator, + "other": UserOnPaperDocFilter._other_validator, } -UserOnPaperDocFilter.visited = UserOnPaperDocFilter('visited') -UserOnPaperDocFilter.shared = UserOnPaperDocFilter('shared') -UserOnPaperDocFilter.other = UserOnPaperDocFilter('other') +UserOnPaperDocFilter.visited = UserOnPaperDocFilter("visited") +UserOnPaperDocFilter.shared = UserOnPaperDocFilter("shared") +UserOnPaperDocFilter.other = UserOnPaperDocFilter("other") AddMember.permission_level.default = PaperDocPermissionLevel.edit AddPaperDocUser.quiet.default = False @@ -3307,222 +3529,185 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListUsersOnPaperDocArgs.filter_by.default = UserOnPaperDocFilter.shared PaperDocExport.include_comments.default = False docs_archive = bb.Route( - 'docs/archive', + "docs/archive", 1, True, RefPaperDoc_validator, bv.Void(), DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_create = bb.Route( - 'docs/create', + "docs/create", 1, True, PaperDocCreateArgs_validator, PaperDocCreateUpdateResult_validator, PaperDocCreateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'upload'}, + {"auth": "user", "host": "api", "style": "upload"}, ) docs_download = bb.Route( - 'docs/download', + "docs/download", 1, True, PaperDocExport_validator, PaperDocExportResult_validator, DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'download'}, + {"auth": "user", "host": "api", "style": "download"}, ) docs_folder_users_list = bb.Route( - 'docs/folder_users/list', + "docs/folder_users/list", 1, True, ListUsersOnFolderArgs_validator, ListUsersOnFolderResponse_validator, DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_folder_users_list_continue = bb.Route( - 'docs/folder_users/list/continue', + "docs/folder_users/list/continue", 1, True, ListUsersOnFolderContinueArgs_validator, ListUsersOnFolderResponse_validator, ListUsersCursorError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_get_folder_info = bb.Route( - 'docs/get_folder_info', + "docs/get_folder_info", 1, True, RefPaperDoc_validator, FoldersContainingPaperDoc_validator, DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_get_metadata = bb.Route( - 'docs/get_metadata', + "docs/get_metadata", 1, False, GetDocMetadataArg_validator, PaperDocGetMetadataResult_validator, DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_list = bb.Route( - 'docs/list', + "docs/list", 1, True, ListPaperDocsArgs_validator, ListPaperDocsResponse_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_list_continue = bb.Route( - 'docs/list/continue', + "docs/list/continue", 1, True, ListPaperDocsContinueArgs_validator, ListPaperDocsResponse_validator, ListDocsCursorError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_permanently_delete = bb.Route( - 'docs/permanently_delete', + "docs/permanently_delete", 1, True, RefPaperDoc_validator, bv.Void(), DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_sharing_policy_get = bb.Route( - 'docs/sharing_policy/get', + "docs/sharing_policy/get", 1, True, RefPaperDoc_validator, SharingPolicy_validator, DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_sharing_policy_set = bb.Route( - 'docs/sharing_policy/set', + "docs/sharing_policy/set", 1, True, PaperDocSharingPolicy_validator, bv.Void(), DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_update = bb.Route( - 'docs/update', + "docs/update", 1, True, PaperDocUpdateArgs_validator, PaperDocCreateUpdateResult_validator, PaperDocUpdateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'upload'}, + {"auth": "user", "host": "api", "style": "upload"}, ) docs_users_add = bb.Route( - 'docs/users/add', + "docs/users/add", 1, True, AddPaperDocUser_validator, bv.List(AddPaperDocUserMemberResult_validator), DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_users_list = bb.Route( - 'docs/users/list', + "docs/users/list", 1, True, ListUsersOnPaperDocArgs_validator, ListUsersOnPaperDocResponse_validator, DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_users_list_continue = bb.Route( - 'docs/users/list/continue', + "docs/users/list/continue", 1, True, ListUsersOnPaperDocContinueArgs_validator, ListUsersOnPaperDocResponse_validator, ListUsersCursorError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) docs_users_remove = bb.Route( - 'docs/users/remove', + "docs/users/remove", 1, True, RemovePaperDocUser_validator, bv.Void(), DocLookupError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) folders_create = bb.Route( - 'folders/create', + "folders/create", 1, True, PaperFolderCreateArg_validator, PaperFolderCreateResult_validator, PaperFolderCreateError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'docs/archive': docs_archive, - 'docs/create': docs_create, - 'docs/download': docs_download, - 'docs/folder_users/list': docs_folder_users_list, - 'docs/folder_users/list/continue': docs_folder_users_list_continue, - 'docs/get_folder_info': docs_get_folder_info, - 'docs/get_metadata': docs_get_metadata, - 'docs/list': docs_list, - 'docs/list/continue': docs_list_continue, - 'docs/permanently_delete': docs_permanently_delete, - 'docs/sharing_policy/get': docs_sharing_policy_get, - 'docs/sharing_policy/set': docs_sharing_policy_set, - 'docs/update': docs_update, - 'docs/users/add': docs_users_add, - 'docs/users/list': docs_users_list, - 'docs/users/list/continue': docs_users_list_continue, - 'docs/users/remove': docs_users_remove, - 'folders/create': folders_create, + "docs/archive": docs_archive, + "docs/create": docs_create, + "docs/download": docs_download, + "docs/folder_users/list": docs_folder_users_list, + "docs/folder_users/list/continue": docs_folder_users_list_continue, + "docs/get_folder_info": docs_get_folder_info, + "docs/get_metadata": docs_get_metadata, + "docs/list": docs_list, + "docs/list/continue": docs_list_continue, + "docs/permanently_delete": docs_permanently_delete, + "docs/sharing_policy/get": docs_sharing_policy_get, + "docs/sharing_policy/set": docs_sharing_policy_set, + "docs/update": docs_update, + "docs/users/add": docs_users_add, + "docs/users/list": docs_users_list, + "docs/users/list/continue": docs_users_list_continue, + "docs/users/remove": docs_users_remove, + "folders/create": folders_create, } - diff --git a/dropbox/riviera.py b/dropbox/riviera.py index fde0a038..6e72859c 100644 --- a/dropbox/riviera.py +++ b/dropbox/riviera.py @@ -9,6 +9,7 @@ from dropbox import async_ + class ApiExifGpsMetadata(bb.Struct): """ GPS coordinates and related tags extracted from image EXIF data. Fields are @@ -26,21 +27,23 @@ class ApiExifGpsMetadata(bb.Struct): """ __slots__ = [ - '_latitude_value', - '_longitude_value', - '_altitude_value', - '_timestamp_value', - '_datestamp_value', + "_latitude_value", + "_longitude_value", + "_altitude_value", + "_timestamp_value", + "_datestamp_value", ] _has_required_fields = False - def __init__(self, - latitude=None, - longitude=None, - altitude=None, - timestamp=None, - datestamp=None): + def __init__( + self, + latitude=None, + longitude=None, + altitude=None, + timestamp=None, + datestamp=None, + ): self._latitude_value = bb.NOT_SET self._longitude_value = bb.NOT_SET self._altitude_value = bb.NOT_SET @@ -73,10 +76,14 @@ def __init__(self, datestamp = bb.Attribute("datestamp") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiExifGpsMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApiExifGpsMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApiExifGpsMetadata_validator = bv.Struct(ApiExifGpsMetadata) + class ApiExifMetadata(bb.Struct): """ Image EXIF metadata. Mirrors the useful subset of the internal @@ -96,43 +103,45 @@ class ApiExifMetadata(bb.Struct): """ __slots__ = [ - '_image_width_value', - '_image_height_value', - '_camera_make_value', - '_camera_model_value', - '_lens_model_value', - '_date_time_original_value', - '_offset_time_original_value', - '_orientation_value', - '_exposure_time_value', - '_aperture_value_value', - '_iso_speed_value', - '_focal_length_value', - '_megapixels_value', - '_artist_value', - '_copyright_value', - '_gps_metadata_value', + "_image_width_value", + "_image_height_value", + "_camera_make_value", + "_camera_model_value", + "_lens_model_value", + "_date_time_original_value", + "_offset_time_original_value", + "_orientation_value", + "_exposure_time_value", + "_aperture_value_value", + "_iso_speed_value", + "_focal_length_value", + "_megapixels_value", + "_artist_value", + "_copyright_value", + "_gps_metadata_value", ] _has_required_fields = False - def __init__(self, - image_width=None, - image_height=None, - camera_make=None, - camera_model=None, - lens_model=None, - date_time_original=None, - offset_time_original=None, - orientation=None, - exposure_time=None, - aperture_value=None, - iso_speed=None, - focal_length=None, - megapixels=None, - artist=None, - copyright=None, - gps_metadata=None): + def __init__( + self, + image_width=None, + image_height=None, + camera_make=None, + camera_model=None, + lens_model=None, + date_time_original=None, + offset_time_original=None, + orientation=None, + exposure_time=None, + aperture_value=None, + iso_speed=None, + focal_length=None, + megapixels=None, + artist=None, + copyright=None, + gps_metadata=None, + ): self._image_width_value = bb.NOT_SET self._image_height_value = bb.NOT_SET self._camera_make_value = bb.NOT_SET @@ -231,10 +240,14 @@ def __init__(self, gps_metadata = bb.Attribute("gps_metadata", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiExifMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApiExifMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApiExifMetadata_validator = bv.Struct(ApiExifMetadata) + class ApiMediaMetadata(bb.Struct): """ Audio/video container and per-stream metadata. Mirrors the useful subset of @@ -245,19 +258,15 @@ class ApiMediaMetadata(bb.Struct): """ __slots__ = [ - '_bitrate_bps_value', - '_duration_s_value', - '_creation_time_value', - '_streams_value', + "_bitrate_bps_value", + "_duration_s_value", + "_creation_time_value", + "_streams_value", ] _has_required_fields = False - def __init__(self, - bitrate_bps=None, - duration_s=None, - creation_time=None, - streams=None): + def __init__(self, bitrate_bps=None, duration_s=None, creation_time=None, streams=None): self._bitrate_bps_value = bb.NOT_SET self._duration_s_value = bb.NOT_SET self._creation_time_value = bb.NOT_SET @@ -284,10 +293,14 @@ def __init__(self, streams = bb.Attribute("streams", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiMediaMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApiMediaMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApiMediaMetadata_validator = bv.Struct(ApiMediaMetadata) + class ApiMediaStream(bb.Struct): """ A single audio or video stream within a media file. @@ -305,39 +318,41 @@ class ApiMediaStream(bb.Struct): """ __slots__ = [ - '_index_value', - '_codec_type_value', - '_codec_name_value', - '_bitrate_bps_value', - '_duration_s_value', - '_width_value', - '_height_value', - '_frames_per_second_value', - '_rotation_value', - '_display_aspect_ratio_value', - '_channels_value', - '_channel_layout_value', - '_sample_rate_s_value', - '_language_iso_639_value', + "_index_value", + "_codec_type_value", + "_codec_name_value", + "_bitrate_bps_value", + "_duration_s_value", + "_width_value", + "_height_value", + "_frames_per_second_value", + "_rotation_value", + "_display_aspect_ratio_value", + "_channels_value", + "_channel_layout_value", + "_sample_rate_s_value", + "_language_iso_639_value", ] _has_required_fields = False - def __init__(self, - index=None, - codec_type=None, - codec_name=None, - bitrate_bps=None, - duration_s=None, - width=None, - height=None, - frames_per_second=None, - rotation=None, - display_aspect_ratio=None, - channels=None, - channel_layout=None, - sample_rate_s=None, - language_iso_639=None): + def __init__( + self, + index=None, + codec_type=None, + codec_name=None, + bitrate_bps=None, + duration_s=None, + width=None, + height=None, + frames_per_second=None, + rotation=None, + display_aspect_ratio=None, + channels=None, + channel_layout=None, + sample_rate_s=None, + language_iso_639=None, + ): self._index_value = bb.NOT_SET self._codec_type_value = bb.NOT_SET self._codec_name_value = bb.NOT_SET @@ -424,10 +439,14 @@ def __init__(self, language_iso_639 = bb.Attribute("language_iso_639") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiMediaStream, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApiMediaStream, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApiMediaStream_validator = bv.Struct(ApiMediaStream) + class ApiOfficeMetadata(bb.Struct): """ MS Office document metadata. Mirrors the internal `riviera.OfficeMetadata` @@ -441,35 +460,37 @@ class ApiOfficeMetadata(bb.Struct): """ __slots__ = [ - '_file_type_value', - '_creator_value', - '_company_value', - '_title_value', - '_subject_value', - '_keywords_value', - '_description_value', - '_total_edit_time_minutes_value', - '_pages_value', - '_words_value', - '_slides_value', - '_revision_number_value', + "_file_type_value", + "_creator_value", + "_company_value", + "_title_value", + "_subject_value", + "_keywords_value", + "_description_value", + "_total_edit_time_minutes_value", + "_pages_value", + "_words_value", + "_slides_value", + "_revision_number_value", ] _has_required_fields = False - def __init__(self, - file_type=None, - creator=None, - company=None, - title=None, - subject=None, - keywords=None, - description=None, - total_edit_time_minutes=None, - pages=None, - words=None, - slides=None, - revision_number=None): + def __init__( + self, + file_type=None, + creator=None, + company=None, + title=None, + subject=None, + keywords=None, + description=None, + total_edit_time_minutes=None, + pages=None, + words=None, + slides=None, + revision_number=None, + ): self._file_type_value = bb.NOT_SET self._creator_value = bb.NOT_SET self._company_value = bb.NOT_SET @@ -544,10 +565,14 @@ def __init__(self, revision_number = bb.Attribute("revision_number") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiOfficeMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApiOfficeMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApiOfficeMetadata_validator = bv.Struct(ApiOfficeMetadata) + class ApiPdfMetadata(bb.Struct): """ PDF document metadata. @@ -557,17 +582,14 @@ class ApiPdfMetadata(bb.Struct): """ __slots__ = [ - '_pages_value', - '_width_value', - '_height_value', + "_pages_value", + "_width_value", + "_height_value", ] _has_required_fields = False - def __init__(self, - pages=None, - width=None, - height=None): + def __init__(self, pages=None, width=None, height=None): self._pages_value = bb.NOT_SET self._width_value = bb.NOT_SET self._height_value = bb.NOT_SET @@ -588,25 +610,27 @@ def __init__(self, height = bb.Attribute("height") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiPdfMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApiPdfMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApiPdfMetadata_validator = bv.Struct(ApiPdfMetadata) + class ApiStructuredTranscript(bb.Struct): """ Structured transcript for APIv2 """ __slots__ = [ - '_segments_value', - '_transcript_locale_value', + "_segments_value", + "_transcript_locale_value", ] _has_required_fields = False - def __init__(self, - segments=None, - transcript_locale=None): + def __init__(self, segments=None, transcript_locale=None): self._segments_value = bb.NOT_SET self._transcript_locale_value = bb.NOT_SET if segments is not None: @@ -621,27 +645,28 @@ def __init__(self, transcript_locale = bb.Attribute("transcript_locale") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiStructuredTranscript, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApiStructuredTranscript, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApiStructuredTranscript_validator = bv.Struct(ApiStructuredTranscript) + class ApiTranscriptSegment(bb.Struct): """ Transcript segment for APIv2 """ __slots__ = [ - '_text_value', - '_start_time_value', - '_end_time_value', + "_text_value", + "_start_time_value", + "_end_time_value", ] _has_required_fields = False - def __init__(self, - text=None, - start_time=None, - end_time=None): + def __init__(self, text=None, start_time=None, end_time=None): self._text_value = bb.NOT_SET self._start_time_value = bb.NOT_SET self._end_time_value = bb.NOT_SET @@ -662,10 +687,14 @@ def __init__(self, end_time = bb.Attribute("end_time") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiTranscriptSegment, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApiTranscriptSegment, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApiTranscriptSegment_validator = bv.Struct(ApiTranscriptSegment) + class ContentApiV2Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -678,7 +707,7 @@ class ContentApiV2Error(bb.Union): The target is a folder, not a file. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_audio_error = None # Attribute is overwritten below the class definition @@ -703,7 +732,7 @@ def server_error(cls, val): :param str val: :rtype: ContentApiV2Error """ - return cls('server_error', val) + return cls("server_error", val) @classmethod def user_error(cls, val): @@ -714,7 +743,7 @@ def user_error(cls, val): :param str val: :rtype: ContentApiV2Error """ - return cls('user_error', val) + return cls("user_error", val) @classmethod def media_duration_error(cls, val): @@ -725,7 +754,7 @@ def media_duration_error(cls, val): :param MediaDurationError val: :rtype: ContentApiV2Error """ - return cls('media_duration_error', val) + return cls("media_duration_error", val) def is_server_error(self): """ @@ -733,7 +762,7 @@ def is_server_error(self): :rtype: bool """ - return self._tag == 'server_error' + return self._tag == "server_error" def is_user_error(self): """ @@ -741,7 +770,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_media_duration_error(self): """ @@ -749,7 +778,7 @@ def is_media_duration_error(self): :rtype: bool """ - return self._tag == 'media_duration_error' + return self._tag == "media_duration_error" def is_no_audio_error(self): """ @@ -757,7 +786,7 @@ def is_no_audio_error(self): :rtype: bool """ - return self._tag == 'no_audio_error' + return self._tag == "no_audio_error" def is_link_download_disabled_error(self): """ @@ -765,7 +794,7 @@ def is_link_download_disabled_error(self): :rtype: bool """ - return self._tag == 'link_download_disabled_error' + return self._tag == "link_download_disabled_error" def is_shared_link_password_protected(self): """ @@ -773,7 +802,7 @@ def is_shared_link_password_protected(self): :rtype: bool """ - return self._tag == 'shared_link_password_protected' + return self._tag == "shared_link_password_protected" def is_limit_exceeded_error(self): """ @@ -781,7 +810,7 @@ def is_limit_exceeded_error(self): :rtype: bool """ - return self._tag == 'limit_exceeded_error' + return self._tag == "limit_exceeded_error" def is_not_found_error(self): """ @@ -789,7 +818,7 @@ def is_not_found_error(self): :rtype: bool """ - return self._tag == 'not_found_error' + return self._tag == "not_found_error" def is_is_a_folder_error(self): """ @@ -797,7 +826,7 @@ def is_is_a_folder_error(self): :rtype: bool """ - return self._tag == 'is_a_folder_error' + return self._tag == "is_a_folder_error" def is_other(self): """ @@ -805,7 +834,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_server_error(self): """ @@ -838,10 +867,14 @@ def get_media_duration_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentApiV2Error, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContentApiV2Error, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ContentApiV2Error_validator = bv.Union(ContentApiV2Error) + class ErrorCode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -860,7 +893,7 @@ class ErrorCode(bb.Union): 503 """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unknown_error = None # Attribute is overwritten below the class definition @@ -882,7 +915,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == 'unknown_error' + return self._tag == "unknown_error" def is_bad_request(self): """ @@ -890,7 +923,7 @@ def is_bad_request(self): :rtype: bool """ - return self._tag == 'bad_request' + return self._tag == "bad_request" def is_api_error(self): """ @@ -898,7 +931,7 @@ def is_api_error(self): :rtype: bool """ - return self._tag == 'api_error' + return self._tag == "api_error" def is_access_error(self): """ @@ -906,7 +939,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_ratelimit_error(self): """ @@ -914,7 +947,7 @@ def is_ratelimit_error(self): :rtype: bool """ - return self._tag == 'ratelimit_error' + return self._tag == "ratelimit_error" def is_unavailable(self): """ @@ -922,7 +955,7 @@ def is_unavailable(self): :rtype: bool """ - return self._tag == 'unavailable' + return self._tag == "unavailable" def is_other(self): """ @@ -930,13 +963,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(ErrorCode, self)._process_custom_annotations(annotation_type, field_path, processor) + ErrorCode_validator = bv.Union(ErrorCode) + class FileIdOrUrl(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -944,7 +979,7 @@ class FileIdOrUrl(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -957,7 +992,7 @@ def file_id(cls, val): :param str val: :rtype: FileIdOrUrl """ - return cls('file_id', val) + return cls("file_id", val) @classmethod def url(cls, val): @@ -968,7 +1003,7 @@ def url(cls, val): :param str val: :rtype: FileIdOrUrl """ - return cls('url', val) + return cls("url", val) @classmethod def path(cls, val): @@ -979,7 +1014,7 @@ def path(cls, val): :param str val: :rtype: FileIdOrUrl """ - return cls('path', val) + return cls("path", val) def is_file_id(self): """ @@ -987,7 +1022,7 @@ def is_file_id(self): :rtype: bool """ - return self._tag == 'file_id' + return self._tag == "file_id" def is_url(self): """ @@ -995,7 +1030,7 @@ def is_url(self): :rtype: bool """ - return self._tag == 'url' + return self._tag == "url" def is_path(self): """ @@ -1003,7 +1038,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_other(self): """ @@ -1011,7 +1046,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_file_id(self): """ @@ -1046,8 +1081,10 @@ def get_path(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileIdOrUrl, self)._process_custom_annotations(annotation_type, field_path, processor) + FileIdOrUrl_validator = bv.Union(FileIdOrUrl) + class GetMarkdownArgs(bb.Struct): """ Arguments for the asynchronous `get_markdown_async` route. Exactly one of @@ -1079,17 +1116,14 @@ class GetMarkdownArgs(bb.Struct): """ __slots__ = [ - '_file_id_or_url_value', - '_enable_ocr_value', - '_embed_images_value', + "_file_id_or_url_value", + "_enable_ocr_value", + "_embed_images_value", ] _has_required_fields = False - def __init__(self, - file_id_or_url=None, - enable_ocr=None, - embed_images=None): + def __init__(self, file_id_or_url=None, enable_ocr=None, embed_images=None): self._file_id_or_url_value = bb.NOT_SET self._enable_ocr_value = bb.NOT_SET self._embed_images_value = bb.NOT_SET @@ -1110,10 +1144,14 @@ def __init__(self, embed_images = bb.Attribute("embed_images") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMarkdownArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMarkdownArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMarkdownArgs_validator = bv.Struct(GetMarkdownArgs) + class GetMarkdownAsyncCheckResult(bb.Union): """ Result type for EventBus async check @@ -1123,7 +1161,7 @@ class GetMarkdownAsyncCheckResult(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition in_progress = None # Attribute is overwritten below the class definition @@ -1138,7 +1176,7 @@ def complete(cls, val): :param GetMarkdownResult val: :rtype: GetMarkdownAsyncCheckResult """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -1149,7 +1187,7 @@ def failed(cls, val): :param GetMarkdownAsyncError val: :rtype: GetMarkdownAsyncCheckResult """ - return cls('failed', val) + return cls("failed", val) def is_in_progress(self): """ @@ -1157,7 +1195,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == 'in_progress' + return self._tag == "in_progress" def is_complete(self): """ @@ -1165,7 +1203,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -1173,7 +1211,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def is_other(self): """ @@ -1181,7 +1219,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -1204,22 +1242,23 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMarkdownAsyncCheckResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMarkdownAsyncCheckResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMarkdownAsyncCheckResult_validator = bv.Union(GetMarkdownAsyncCheckResult) -class GetMarkdownAsyncError(bb.Struct): +class GetMarkdownAsyncError(bb.Struct): __slots__ = [ - '_error_code_value', - '_error_details_value', + "_error_code_value", + "_error_details_value", ] _has_required_fields = False - def __init__(self, - error_code=None, - error_details=None): + def __init__(self, error_code=None, error_details=None): self._error_code_value = bb.NOT_SET self._error_details_value = bb.NOT_SET if error_code is not None: @@ -1234,10 +1273,14 @@ def __init__(self, error_details = bb.Attribute("error_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMarkdownAsyncError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMarkdownAsyncError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMarkdownAsyncError_validator = bv.Struct(GetMarkdownAsyncError) + class GetMarkdownResult(bb.Struct): """ :ivar GetMarkdownResult.markdown: @@ -1245,13 +1288,12 @@ class GetMarkdownResult(bb.Struct): """ __slots__ = [ - '_markdown_value', + "_markdown_value", ] _has_required_fields = False - def __init__(self, - markdown=None): + def __init__(self, markdown=None): self._markdown_value = bb.NOT_SET if markdown is not None: self.markdown = markdown @@ -1260,10 +1302,14 @@ def __init__(self, markdown = bb.Attribute("markdown") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMarkdownResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMarkdownResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMarkdownResult_validator = bv.Struct(GetMarkdownResult) + class GetMetadataArgs(bb.Struct): """ Arguments for the asynchronous `get_metadata_async` route. Exactly one of @@ -1292,13 +1338,12 @@ class GetMetadataArgs(bb.Struct): """ __slots__ = [ - '_file_id_or_url_value', + "_file_id_or_url_value", ] _has_required_fields = False - def __init__(self, - file_id_or_url=None): + def __init__(self, file_id_or_url=None): self._file_id_or_url_value = bb.NOT_SET if file_id_or_url is not None: self.file_id_or_url = file_id_or_url @@ -1307,10 +1352,14 @@ def __init__(self, file_id_or_url = bb.Attribute("file_id_or_url", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMetadataArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMetadataArgs_validator = bv.Struct(GetMetadataArgs) + class GetMetadataAsyncCheckResult(bb.Union): """ Result type for EventBus async check - must end in "CheckResult" @@ -1320,7 +1369,7 @@ class GetMetadataAsyncCheckResult(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition in_progress = None # Attribute is overwritten below the class definition @@ -1335,7 +1384,7 @@ def complete(cls, val): :param GetMetadataResult val: :rtype: GetMetadataAsyncCheckResult """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -1346,7 +1395,7 @@ def failed(cls, val): :param GetMetadataAsyncError val: :rtype: GetMetadataAsyncCheckResult """ - return cls('failed', val) + return cls("failed", val) def is_in_progress(self): """ @@ -1354,7 +1403,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == 'in_progress' + return self._tag == "in_progress" def is_complete(self): """ @@ -1362,7 +1411,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -1370,7 +1419,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def is_other(self): """ @@ -1378,7 +1427,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -1401,22 +1450,23 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataAsyncCheckResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMetadataAsyncCheckResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMetadataAsyncCheckResult_validator = bv.Union(GetMetadataAsyncCheckResult) -class GetMetadataAsyncError(bb.Struct): +class GetMetadataAsyncError(bb.Struct): __slots__ = [ - '_error_code_value', - '_error_details_value', + "_error_code_value", + "_error_details_value", ] _has_required_fields = False - def __init__(self, - error_code=None, - error_details=None): + def __init__(self, error_code=None, error_details=None): self._error_code_value = bb.NOT_SET self._error_details_value = bb.NOT_SET if error_code is not None: @@ -1431,10 +1481,14 @@ def __init__(self, error_details = bb.Attribute("error_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataAsyncError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMetadataAsyncError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMetadataAsyncError_validator = bv.Struct(GetMetadataAsyncError) + class GetMetadataResult(bb.Struct): """ :ivar GetMetadataResult.metadata_type: @@ -1443,15 +1497,13 @@ class GetMetadataResult(bb.Struct): """ __slots__ = [ - '_metadata_type_value', - '_metadata_value', + "_metadata_type_value", + "_metadata_value", ] _has_required_fields = False - def __init__(self, - metadata_type=None, - metadata=None): + def __init__(self, metadata_type=None, metadata=None): self._metadata_type_value = bb.NOT_SET self._metadata_value = bb.NOT_SET if metadata_type is not None: @@ -1466,10 +1518,14 @@ def __init__(self, metadata = bb.Attribute("metadata", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMetadataResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMetadataResult_validator = bv.Struct(GetMetadataResult) + class GetTranscriptArgs(bb.Struct): """ Arguments for the asynchronous `get_transcript_async` route. Exactly one of @@ -1512,19 +1568,21 @@ class GetTranscriptArgs(bb.Struct): """ __slots__ = [ - '_file_id_or_url_value', - '_timestamp_level_value', - '_included_special_words_value', - '_audio_language_value', + "_file_id_or_url_value", + "_timestamp_level_value", + "_included_special_words_value", + "_audio_language_value", ] _has_required_fields = False - def __init__(self, - file_id_or_url=None, - timestamp_level=None, - included_special_words=None, - audio_language=None): + def __init__( + self, + file_id_or_url=None, + timestamp_level=None, + included_special_words=None, + audio_language=None, + ): self._file_id_or_url_value = bb.NOT_SET self._timestamp_level_value = bb.NOT_SET self._included_special_words_value = bb.NOT_SET @@ -1551,10 +1609,14 @@ def __init__(self, audio_language = bb.Attribute("audio_language") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTranscriptArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTranscriptArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTranscriptArgs_validator = bv.Struct(GetTranscriptArgs) + class GetTranscriptAsyncCheckResult(bb.Union): """ Result type for EventBus async check - must end in "CheckResult" @@ -1564,7 +1626,7 @@ class GetTranscriptAsyncCheckResult(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition in_progress = None # Attribute is overwritten below the class definition @@ -1579,7 +1641,7 @@ def complete(cls, val): :param GetTranscriptResult val: :rtype: GetTranscriptAsyncCheckResult """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -1590,7 +1652,7 @@ def failed(cls, val): :param GetTranscriptAsyncError val: :rtype: GetTranscriptAsyncCheckResult """ - return cls('failed', val) + return cls("failed", val) def is_in_progress(self): """ @@ -1598,7 +1660,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == 'in_progress' + return self._tag == "in_progress" def is_complete(self): """ @@ -1606,7 +1668,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -1614,7 +1676,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def is_other(self): """ @@ -1622,7 +1684,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -1645,22 +1707,23 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTranscriptAsyncCheckResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTranscriptAsyncCheckResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTranscriptAsyncCheckResult_validator = bv.Union(GetTranscriptAsyncCheckResult) -class GetTranscriptAsyncError(bb.Struct): +class GetTranscriptAsyncError(bb.Struct): __slots__ = [ - '_error_code_value', - '_error_details_value', + "_error_code_value", + "_error_details_value", ] _has_required_fields = False - def __init__(self, - error_code=None, - error_details=None): + def __init__(self, error_code=None, error_details=None): self._error_code_value = bb.NOT_SET self._error_details_value = bb.NOT_SET if error_code is not None: @@ -1675,10 +1738,14 @@ def __init__(self, error_details = bb.Attribute("error_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTranscriptAsyncError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTranscriptAsyncError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTranscriptAsyncError_validator = bv.Struct(GetTranscriptAsyncError) + class GetTranscriptResult(bb.Struct): """ :ivar GetTranscriptResult.structured_transcript: @@ -1688,13 +1755,12 @@ class GetTranscriptResult(bb.Struct): """ __slots__ = [ - '_structured_transcript_value', + "_structured_transcript_value", ] _has_required_fields = False - def __init__(self, - structured_transcript=None): + def __init__(self, structured_transcript=None): self._structured_transcript_value = bb.NOT_SET if structured_transcript is not None: self.structured_transcript = structured_transcript @@ -1703,10 +1769,14 @@ def __init__(self, structured_transcript = bb.Attribute("structured_transcript", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTranscriptResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTranscriptResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTranscriptResult_validator = bv.Struct(GetTranscriptResult) + class MarkdownConversionApiV2Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1719,7 +1789,7 @@ class MarkdownConversionApiV2Error(bb.Union): The target is a folder, not a file. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unsupported_format_error = None # Attribute is overwritten below the class definition @@ -1746,7 +1816,7 @@ def server_error(cls, val): :param str val: :rtype: MarkdownConversionApiV2Error """ - return cls('server_error', val) + return cls("server_error", val) @classmethod def user_error(cls, val): @@ -1757,7 +1827,7 @@ def user_error(cls, val): :param str val: :rtype: MarkdownConversionApiV2Error """ - return cls('user_error', val) + return cls("user_error", val) def is_server_error(self): """ @@ -1765,7 +1835,7 @@ def is_server_error(self): :rtype: bool """ - return self._tag == 'server_error' + return self._tag == "server_error" def is_user_error(self): """ @@ -1773,7 +1843,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_unsupported_format_error(self): """ @@ -1781,7 +1851,7 @@ def is_unsupported_format_error(self): :rtype: bool """ - return self._tag == 'unsupported_format_error' + return self._tag == "unsupported_format_error" def is_link_download_disabled_error(self): """ @@ -1789,7 +1859,7 @@ def is_link_download_disabled_error(self): :rtype: bool """ - return self._tag == 'link_download_disabled_error' + return self._tag == "link_download_disabled_error" def is_shared_link_password_protected(self): """ @@ -1797,7 +1867,7 @@ def is_shared_link_password_protected(self): :rtype: bool """ - return self._tag == 'shared_link_password_protected' + return self._tag == "shared_link_password_protected" def is_limit_exceeded_error(self): """ @@ -1805,7 +1875,7 @@ def is_limit_exceeded_error(self): :rtype: bool """ - return self._tag == 'limit_exceeded_error' + return self._tag == "limit_exceeded_error" def is_conversion_failure_error(self): """ @@ -1813,7 +1883,7 @@ def is_conversion_failure_error(self): :rtype: bool """ - return self._tag == 'conversion_failure_error' + return self._tag == "conversion_failure_error" def is_not_found_error(self): """ @@ -1821,7 +1891,7 @@ def is_not_found_error(self): :rtype: bool """ - return self._tag == 'not_found_error' + return self._tag == "not_found_error" def is_is_a_folder_error(self): """ @@ -1829,7 +1899,7 @@ def is_is_a_folder_error(self): :rtype: bool """ - return self._tag == 'is_a_folder_error' + return self._tag == "is_a_folder_error" def is_other(self): """ @@ -1837,7 +1907,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_server_error(self): """ @@ -1860,20 +1930,22 @@ def get_user_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MarkdownConversionApiV2Error, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MarkdownConversionApiV2Error, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MarkdownConversionApiV2Error_validator = bv.Union(MarkdownConversionApiV2Error) -class MediaDurationError(bb.Struct): +class MediaDurationError(bb.Struct): __slots__ = [ - '_limit_value', + "_limit_value", ] _has_required_fields = False - def __init__(self, - limit=None): + def __init__(self, limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -1882,10 +1954,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaDurationError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaDurationError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaDurationError_validator = bv.Struct(MediaDurationError) + class MetadataExtractionApiV2Error(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1898,7 +1974,7 @@ class MetadataExtractionApiV2Error(bb.Union): The target is a folder, not a file. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unsupported_format_error = None # Attribute is overwritten below the class definition @@ -1925,7 +2001,7 @@ def server_error(cls, val): :param str val: :rtype: MetadataExtractionApiV2Error """ - return cls('server_error', val) + return cls("server_error", val) @classmethod def user_error(cls, val): @@ -1936,7 +2012,7 @@ def user_error(cls, val): :param str val: :rtype: MetadataExtractionApiV2Error """ - return cls('user_error', val) + return cls("user_error", val) def is_server_error(self): """ @@ -1944,7 +2020,7 @@ def is_server_error(self): :rtype: bool """ - return self._tag == 'server_error' + return self._tag == "server_error" def is_user_error(self): """ @@ -1952,7 +2028,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_unsupported_format_error(self): """ @@ -1960,7 +2036,7 @@ def is_unsupported_format_error(self): :rtype: bool """ - return self._tag == 'unsupported_format_error' + return self._tag == "unsupported_format_error" def is_link_download_disabled_error(self): """ @@ -1968,7 +2044,7 @@ def is_link_download_disabled_error(self): :rtype: bool """ - return self._tag == 'link_download_disabled_error' + return self._tag == "link_download_disabled_error" def is_shared_link_password_protected(self): """ @@ -1976,7 +2052,7 @@ def is_shared_link_password_protected(self): :rtype: bool """ - return self._tag == 'shared_link_password_protected' + return self._tag == "shared_link_password_protected" def is_limit_exceeded_error(self): """ @@ -1984,7 +2060,7 @@ def is_limit_exceeded_error(self): :rtype: bool """ - return self._tag == 'limit_exceeded_error' + return self._tag == "limit_exceeded_error" def is_conversion_failure_error(self): """ @@ -1992,7 +2068,7 @@ def is_conversion_failure_error(self): :rtype: bool """ - return self._tag == 'conversion_failure_error' + return self._tag == "conversion_failure_error" def is_not_found_error(self): """ @@ -2000,7 +2076,7 @@ def is_not_found_error(self): :rtype: bool """ - return self._tag == 'not_found_error' + return self._tag == "not_found_error" def is_is_a_folder_error(self): """ @@ -2008,7 +2084,7 @@ def is_is_a_folder_error(self): :rtype: bool """ - return self._tag == 'is_a_folder_error' + return self._tag == "is_a_folder_error" def is_other(self): """ @@ -2016,7 +2092,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_server_error(self): """ @@ -2039,10 +2115,14 @@ def get_user_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MetadataExtractionApiV2Error, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MetadataExtractionApiV2Error, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MetadataExtractionApiV2Error_validator = bv.Union(MetadataExtractionApiV2Error) + class MetadataType(bb.Union): """ Which metadata variant is populated in a `GetMetadataResult`, derived from @@ -2053,7 +2133,7 @@ class MetadataType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition metadata_type_unknown = None # Attribute is overwritten below the class definition @@ -2073,7 +2153,7 @@ def is_metadata_type_unknown(self): :rtype: bool """ - return self._tag == 'metadata_type_unknown' + return self._tag == "metadata_type_unknown" def is_metadata_type_exif(self): """ @@ -2081,7 +2161,7 @@ def is_metadata_type_exif(self): :rtype: bool """ - return self._tag == 'metadata_type_exif' + return self._tag == "metadata_type_exif" def is_metadata_type_media(self): """ @@ -2089,7 +2169,7 @@ def is_metadata_type_media(self): :rtype: bool """ - return self._tag == 'metadata_type_media' + return self._tag == "metadata_type_media" def is_metadata_type_pdf(self): """ @@ -2097,7 +2177,7 @@ def is_metadata_type_pdf(self): :rtype: bool """ - return self._tag == 'metadata_type_pdf' + return self._tag == "metadata_type_pdf" def is_metadata_type_office(self): """ @@ -2105,7 +2185,7 @@ def is_metadata_type_office(self): :rtype: bool """ - return self._tag == 'metadata_type_office' + return self._tag == "metadata_type_office" def is_other(self): """ @@ -2113,13 +2193,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MetadataType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MetadataType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MetadataType_validator = bv.Union(MetadataType) + class OfficeFileType(bb.Union): """ The kind of MS Office document that produced an `ApiOfficeMetadata` result. @@ -2129,7 +2213,7 @@ class OfficeFileType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition office_filetype_unknown = None # Attribute is overwritten below the class definition @@ -2147,7 +2231,7 @@ def is_office_filetype_unknown(self): :rtype: bool """ - return self._tag == 'office_filetype_unknown' + return self._tag == "office_filetype_unknown" def is_office_filetype_word(self): """ @@ -2155,7 +2239,7 @@ def is_office_filetype_word(self): :rtype: bool """ - return self._tag == 'office_filetype_word' + return self._tag == "office_filetype_word" def is_office_filetype_powerpoint(self): """ @@ -2163,7 +2247,7 @@ def is_office_filetype_powerpoint(self): :rtype: bool """ - return self._tag == 'office_filetype_powerpoint' + return self._tag == "office_filetype_powerpoint" def is_office_filetype_excel(self): """ @@ -2171,7 +2255,7 @@ def is_office_filetype_excel(self): :rtype: bool """ - return self._tag == 'office_filetype_excel' + return self._tag == "office_filetype_excel" def is_other(self): """ @@ -2179,13 +2263,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OfficeFileType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OfficeFileType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OfficeFileType_validator = bv.Union(OfficeFileType) + class TimestampLevel(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2193,7 +2281,7 @@ class TimestampLevel(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unknown = None # Attribute is overwritten below the class definition @@ -2209,7 +2297,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == 'unknown' + return self._tag == "unknown" def is_sentence(self): """ @@ -2217,7 +2305,7 @@ def is_sentence(self): :rtype: bool """ - return self._tag == 'sentence' + return self._tag == "sentence" def is_word(self): """ @@ -2225,7 +2313,7 @@ def is_word(self): :rtype: bool """ - return self._tag == 'word' + return self._tag == "word" def is_other(self): """ @@ -2233,13 +2321,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TimestampLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TimestampLevel, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TimestampLevel_validator = bv.Union(TimestampLevel) + class MetadataUnion(bb.Union): """ Exactly one variant is populated, corresponding to `metadata_type`. @@ -2249,7 +2341,7 @@ class MetadataUnion(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -2262,7 +2354,7 @@ def exif(cls, val): :param ApiExifMetadata val: :rtype: MetadataUnion """ - return cls('exif', val) + return cls("exif", val) @classmethod def media(cls, val): @@ -2273,7 +2365,7 @@ def media(cls, val): :param ApiMediaMetadata val: :rtype: MetadataUnion """ - return cls('media', val) + return cls("media", val) @classmethod def pdf(cls, val): @@ -2284,7 +2376,7 @@ def pdf(cls, val): :param ApiPdfMetadata val: :rtype: MetadataUnion """ - return cls('pdf', val) + return cls("pdf", val) @classmethod def office(cls, val): @@ -2295,7 +2387,7 @@ def office(cls, val): :param ApiOfficeMetadata val: :rtype: MetadataUnion """ - return cls('office', val) + return cls("office", val) def is_exif(self): """ @@ -2303,7 +2395,7 @@ def is_exif(self): :rtype: bool """ - return self._tag == 'exif' + return self._tag == "exif" def is_media(self): """ @@ -2311,7 +2403,7 @@ def is_media(self): :rtype: bool """ - return self._tag == 'media' + return self._tag == "media" def is_pdf(self): """ @@ -2319,7 +2411,7 @@ def is_pdf(self): :rtype: bool """ - return self._tag == 'pdf' + return self._tag == "pdf" def is_office(self): """ @@ -2327,7 +2419,7 @@ def is_office(self): :rtype: bool """ - return self._tag == 'office' + return self._tag == "office" def is_other(self): """ @@ -2335,7 +2427,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_exif(self): """ @@ -2378,7 +2470,10 @@ def get_office(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MetadataUnion, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MetadataUnion, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MetadataUnion_validator = bv.Union(MetadataUnion) @@ -2387,19 +2482,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiExifGpsMetadata.altitude.validator = bv.String() ApiExifGpsMetadata.timestamp.validator = bv.String() ApiExifGpsMetadata.datestamp.validator = bv.String() -ApiExifGpsMetadata._all_field_names_ = set([ - 'latitude', - 'longitude', - 'altitude', - 'timestamp', - 'datestamp', -]) +ApiExifGpsMetadata._all_field_names_ = set( + [ + "latitude", + "longitude", + "altitude", + "timestamp", + "datestamp", + ] +) ApiExifGpsMetadata._all_fields_ = [ - ('latitude', ApiExifGpsMetadata.latitude.validator), - ('longitude', ApiExifGpsMetadata.longitude.validator), - ('altitude', ApiExifGpsMetadata.altitude.validator), - ('timestamp', ApiExifGpsMetadata.timestamp.validator), - ('datestamp', ApiExifGpsMetadata.datestamp.validator), + ("latitude", ApiExifGpsMetadata.latitude.validator), + ("longitude", ApiExifGpsMetadata.longitude.validator), + ("altitude", ApiExifGpsMetadata.altitude.validator), + ("timestamp", ApiExifGpsMetadata.timestamp.validator), + ("datestamp", ApiExifGpsMetadata.datestamp.validator), ] ApiExifMetadata.image_width.validator = bv.UInt32() @@ -2418,58 +2515,62 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiExifMetadata.artist.validator = bv.String() ApiExifMetadata.copyright.validator = bv.String() ApiExifMetadata.gps_metadata.validator = bv.Nullable(ApiExifGpsMetadata_validator) -ApiExifMetadata._all_field_names_ = set([ - 'image_width', - 'image_height', - 'camera_make', - 'camera_model', - 'lens_model', - 'date_time_original', - 'offset_time_original', - 'orientation', - 'exposure_time', - 'aperture_value', - 'iso_speed', - 'focal_length', - 'megapixels', - 'artist', - 'copyright', - 'gps_metadata', -]) +ApiExifMetadata._all_field_names_ = set( + [ + "image_width", + "image_height", + "camera_make", + "camera_model", + "lens_model", + "date_time_original", + "offset_time_original", + "orientation", + "exposure_time", + "aperture_value", + "iso_speed", + "focal_length", + "megapixels", + "artist", + "copyright", + "gps_metadata", + ] +) ApiExifMetadata._all_fields_ = [ - ('image_width', ApiExifMetadata.image_width.validator), - ('image_height', ApiExifMetadata.image_height.validator), - ('camera_make', ApiExifMetadata.camera_make.validator), - ('camera_model', ApiExifMetadata.camera_model.validator), - ('lens_model', ApiExifMetadata.lens_model.validator), - ('date_time_original', ApiExifMetadata.date_time_original.validator), - ('offset_time_original', ApiExifMetadata.offset_time_original.validator), - ('orientation', ApiExifMetadata.orientation.validator), - ('exposure_time', ApiExifMetadata.exposure_time.validator), - ('aperture_value', ApiExifMetadata.aperture_value.validator), - ('iso_speed', ApiExifMetadata.iso_speed.validator), - ('focal_length', ApiExifMetadata.focal_length.validator), - ('megapixels', ApiExifMetadata.megapixels.validator), - ('artist', ApiExifMetadata.artist.validator), - ('copyright', ApiExifMetadata.copyright.validator), - ('gps_metadata', ApiExifMetadata.gps_metadata.validator), + ("image_width", ApiExifMetadata.image_width.validator), + ("image_height", ApiExifMetadata.image_height.validator), + ("camera_make", ApiExifMetadata.camera_make.validator), + ("camera_model", ApiExifMetadata.camera_model.validator), + ("lens_model", ApiExifMetadata.lens_model.validator), + ("date_time_original", ApiExifMetadata.date_time_original.validator), + ("offset_time_original", ApiExifMetadata.offset_time_original.validator), + ("orientation", ApiExifMetadata.orientation.validator), + ("exposure_time", ApiExifMetadata.exposure_time.validator), + ("aperture_value", ApiExifMetadata.aperture_value.validator), + ("iso_speed", ApiExifMetadata.iso_speed.validator), + ("focal_length", ApiExifMetadata.focal_length.validator), + ("megapixels", ApiExifMetadata.megapixels.validator), + ("artist", ApiExifMetadata.artist.validator), + ("copyright", ApiExifMetadata.copyright.validator), + ("gps_metadata", ApiExifMetadata.gps_metadata.validator), ] ApiMediaMetadata.bitrate_bps.validator = bv.UInt64() ApiMediaMetadata.duration_s.validator = bv.Float64() ApiMediaMetadata.creation_time.validator = bv.String() ApiMediaMetadata.streams.validator = bv.Nullable(bv.List(ApiMediaStream_validator)) -ApiMediaMetadata._all_field_names_ = set([ - 'bitrate_bps', - 'duration_s', - 'creation_time', - 'streams', -]) +ApiMediaMetadata._all_field_names_ = set( + [ + "bitrate_bps", + "duration_s", + "creation_time", + "streams", + ] +) ApiMediaMetadata._all_fields_ = [ - ('bitrate_bps', ApiMediaMetadata.bitrate_bps.validator), - ('duration_s', ApiMediaMetadata.duration_s.validator), - ('creation_time', ApiMediaMetadata.creation_time.validator), - ('streams', ApiMediaMetadata.streams.validator), + ("bitrate_bps", ApiMediaMetadata.bitrate_bps.validator), + ("duration_s", ApiMediaMetadata.duration_s.validator), + ("creation_time", ApiMediaMetadata.creation_time.validator), + ("streams", ApiMediaMetadata.streams.validator), ] ApiMediaStream.index.validator = bv.UInt32() @@ -2486,37 +2587,39 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiMediaStream.channel_layout.validator = bv.String() ApiMediaStream.sample_rate_s.validator = bv.UInt64() ApiMediaStream.language_iso_639.validator = bv.String() -ApiMediaStream._all_field_names_ = set([ - 'index', - 'codec_type', - 'codec_name', - 'bitrate_bps', - 'duration_s', - 'width', - 'height', - 'frames_per_second', - 'rotation', - 'display_aspect_ratio', - 'channels', - 'channel_layout', - 'sample_rate_s', - 'language_iso_639', -]) +ApiMediaStream._all_field_names_ = set( + [ + "index", + "codec_type", + "codec_name", + "bitrate_bps", + "duration_s", + "width", + "height", + "frames_per_second", + "rotation", + "display_aspect_ratio", + "channels", + "channel_layout", + "sample_rate_s", + "language_iso_639", + ] +) ApiMediaStream._all_fields_ = [ - ('index', ApiMediaStream.index.validator), - ('codec_type', ApiMediaStream.codec_type.validator), - ('codec_name', ApiMediaStream.codec_name.validator), - ('bitrate_bps', ApiMediaStream.bitrate_bps.validator), - ('duration_s', ApiMediaStream.duration_s.validator), - ('width', ApiMediaStream.width.validator), - ('height', ApiMediaStream.height.validator), - ('frames_per_second', ApiMediaStream.frames_per_second.validator), - ('rotation', ApiMediaStream.rotation.validator), - ('display_aspect_ratio', ApiMediaStream.display_aspect_ratio.validator), - ('channels', ApiMediaStream.channels.validator), - ('channel_layout', ApiMediaStream.channel_layout.validator), - ('sample_rate_s', ApiMediaStream.sample_rate_s.validator), - ('language_iso_639', ApiMediaStream.language_iso_639.validator), + ("index", ApiMediaStream.index.validator), + ("codec_type", ApiMediaStream.codec_type.validator), + ("codec_name", ApiMediaStream.codec_name.validator), + ("bitrate_bps", ApiMediaStream.bitrate_bps.validator), + ("duration_s", ApiMediaStream.duration_s.validator), + ("width", ApiMediaStream.width.validator), + ("height", ApiMediaStream.height.validator), + ("frames_per_second", ApiMediaStream.frames_per_second.validator), + ("rotation", ApiMediaStream.rotation.validator), + ("display_aspect_ratio", ApiMediaStream.display_aspect_ratio.validator), + ("channels", ApiMediaStream.channels.validator), + ("channel_layout", ApiMediaStream.channel_layout.validator), + ("sample_rate_s", ApiMediaStream.sample_rate_s.validator), + ("language_iso_639", ApiMediaStream.language_iso_639.validator), ] ApiOfficeMetadata.file_type.validator = OfficeFileType_validator @@ -2531,72 +2634,80 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiOfficeMetadata.words.validator = bv.UInt32() ApiOfficeMetadata.slides.validator = bv.UInt32() ApiOfficeMetadata.revision_number.validator = bv.String() -ApiOfficeMetadata._all_field_names_ = set([ - 'file_type', - 'creator', - 'company', - 'title', - 'subject', - 'keywords', - 'description', - 'total_edit_time_minutes', - 'pages', - 'words', - 'slides', - 'revision_number', -]) +ApiOfficeMetadata._all_field_names_ = set( + [ + "file_type", + "creator", + "company", + "title", + "subject", + "keywords", + "description", + "total_edit_time_minutes", + "pages", + "words", + "slides", + "revision_number", + ] +) ApiOfficeMetadata._all_fields_ = [ - ('file_type', ApiOfficeMetadata.file_type.validator), - ('creator', ApiOfficeMetadata.creator.validator), - ('company', ApiOfficeMetadata.company.validator), - ('title', ApiOfficeMetadata.title.validator), - ('subject', ApiOfficeMetadata.subject.validator), - ('keywords', ApiOfficeMetadata.keywords.validator), - ('description', ApiOfficeMetadata.description.validator), - ('total_edit_time_minutes', ApiOfficeMetadata.total_edit_time_minutes.validator), - ('pages', ApiOfficeMetadata.pages.validator), - ('words', ApiOfficeMetadata.words.validator), - ('slides', ApiOfficeMetadata.slides.validator), - ('revision_number', ApiOfficeMetadata.revision_number.validator), + ("file_type", ApiOfficeMetadata.file_type.validator), + ("creator", ApiOfficeMetadata.creator.validator), + ("company", ApiOfficeMetadata.company.validator), + ("title", ApiOfficeMetadata.title.validator), + ("subject", ApiOfficeMetadata.subject.validator), + ("keywords", ApiOfficeMetadata.keywords.validator), + ("description", ApiOfficeMetadata.description.validator), + ("total_edit_time_minutes", ApiOfficeMetadata.total_edit_time_minutes.validator), + ("pages", ApiOfficeMetadata.pages.validator), + ("words", ApiOfficeMetadata.words.validator), + ("slides", ApiOfficeMetadata.slides.validator), + ("revision_number", ApiOfficeMetadata.revision_number.validator), ] ApiPdfMetadata.pages.validator = bv.UInt32() ApiPdfMetadata.width.validator = bv.UInt32() ApiPdfMetadata.height.validator = bv.UInt32() -ApiPdfMetadata._all_field_names_ = set([ - 'pages', - 'width', - 'height', -]) +ApiPdfMetadata._all_field_names_ = set( + [ + "pages", + "width", + "height", + ] +) ApiPdfMetadata._all_fields_ = [ - ('pages', ApiPdfMetadata.pages.validator), - ('width', ApiPdfMetadata.width.validator), - ('height', ApiPdfMetadata.height.validator), + ("pages", ApiPdfMetadata.pages.validator), + ("width", ApiPdfMetadata.width.validator), + ("height", ApiPdfMetadata.height.validator), ] ApiStructuredTranscript.segments.validator = bv.Nullable(bv.List(ApiTranscriptSegment_validator)) ApiStructuredTranscript.transcript_locale.validator = bv.String() -ApiStructuredTranscript._all_field_names_ = set([ - 'segments', - 'transcript_locale', -]) +ApiStructuredTranscript._all_field_names_ = set( + [ + "segments", + "transcript_locale", + ] +) ApiStructuredTranscript._all_fields_ = [ - ('segments', ApiStructuredTranscript.segments.validator), - ('transcript_locale', ApiStructuredTranscript.transcript_locale.validator), + ("segments", ApiStructuredTranscript.segments.validator), + ("transcript_locale", ApiStructuredTranscript.transcript_locale.validator), ] ApiTranscriptSegment.text.validator = bv.String() ApiTranscriptSegment.start_time.validator = bv.Float64() ApiTranscriptSegment.end_time.validator = bv.Float64() -ApiTranscriptSegment._all_field_names_ = set([ - 'text', - 'start_time', - 'end_time', -]) +ApiTranscriptSegment._all_field_names_ = set( + [ + "text", + "start_time", + "end_time", + ] +) ApiTranscriptSegment._all_fields_ = [ - ('text', ApiTranscriptSegment.text.validator), - ('start_time', ApiTranscriptSegment.start_time.validator), - ('end_time', ApiTranscriptSegment.end_time.validator), + ("text", ApiTranscriptSegment.text.validator), + ("start_time", ApiTranscriptSegment.start_time.validator), + ("end_time", ApiTranscriptSegment.end_time.validator), ] ContentApiV2Error._server_error_validator = bv.String() @@ -2610,25 +2721,27 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ContentApiV2Error._is_a_folder_error_validator = bv.Void() ContentApiV2Error._other_validator = bv.Void() ContentApiV2Error._tagmap = { - 'server_error': ContentApiV2Error._server_error_validator, - 'user_error': ContentApiV2Error._user_error_validator, - 'media_duration_error': ContentApiV2Error._media_duration_error_validator, - 'no_audio_error': ContentApiV2Error._no_audio_error_validator, - 'link_download_disabled_error': ContentApiV2Error._link_download_disabled_error_validator, - 'shared_link_password_protected': ContentApiV2Error._shared_link_password_protected_validator, - 'limit_exceeded_error': ContentApiV2Error._limit_exceeded_error_validator, - 'not_found_error': ContentApiV2Error._not_found_error_validator, - 'is_a_folder_error': ContentApiV2Error._is_a_folder_error_validator, - 'other': ContentApiV2Error._other_validator, + "server_error": ContentApiV2Error._server_error_validator, + "user_error": ContentApiV2Error._user_error_validator, + "media_duration_error": ContentApiV2Error._media_duration_error_validator, + "no_audio_error": ContentApiV2Error._no_audio_error_validator, + "link_download_disabled_error": ContentApiV2Error._link_download_disabled_error_validator, + "shared_link_password_protected": ContentApiV2Error._shared_link_password_protected_validator, + "limit_exceeded_error": ContentApiV2Error._limit_exceeded_error_validator, + "not_found_error": ContentApiV2Error._not_found_error_validator, + "is_a_folder_error": ContentApiV2Error._is_a_folder_error_validator, + "other": ContentApiV2Error._other_validator, } -ContentApiV2Error.no_audio_error = ContentApiV2Error('no_audio_error') -ContentApiV2Error.link_download_disabled_error = ContentApiV2Error('link_download_disabled_error') -ContentApiV2Error.shared_link_password_protected = ContentApiV2Error('shared_link_password_protected') -ContentApiV2Error.limit_exceeded_error = ContentApiV2Error('limit_exceeded_error') -ContentApiV2Error.not_found_error = ContentApiV2Error('not_found_error') -ContentApiV2Error.is_a_folder_error = ContentApiV2Error('is_a_folder_error') -ContentApiV2Error.other = ContentApiV2Error('other') +ContentApiV2Error.no_audio_error = ContentApiV2Error("no_audio_error") +ContentApiV2Error.link_download_disabled_error = ContentApiV2Error("link_download_disabled_error") +ContentApiV2Error.shared_link_password_protected = ContentApiV2Error( + "shared_link_password_protected" +) +ContentApiV2Error.limit_exceeded_error = ContentApiV2Error("limit_exceeded_error") +ContentApiV2Error.not_found_error = ContentApiV2Error("not_found_error") +ContentApiV2Error.is_a_folder_error = ContentApiV2Error("is_a_folder_error") +ContentApiV2Error.other = ContentApiV2Error("other") ErrorCode._unknown_error_validator = bv.Void() ErrorCode._bad_request_validator = bv.Void() @@ -2638,48 +2751,50 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ErrorCode._unavailable_validator = bv.Void() ErrorCode._other_validator = bv.Void() ErrorCode._tagmap = { - 'unknown_error': ErrorCode._unknown_error_validator, - 'bad_request': ErrorCode._bad_request_validator, - 'api_error': ErrorCode._api_error_validator, - 'access_error': ErrorCode._access_error_validator, - 'ratelimit_error': ErrorCode._ratelimit_error_validator, - 'unavailable': ErrorCode._unavailable_validator, - 'other': ErrorCode._other_validator, + "unknown_error": ErrorCode._unknown_error_validator, + "bad_request": ErrorCode._bad_request_validator, + "api_error": ErrorCode._api_error_validator, + "access_error": ErrorCode._access_error_validator, + "ratelimit_error": ErrorCode._ratelimit_error_validator, + "unavailable": ErrorCode._unavailable_validator, + "other": ErrorCode._other_validator, } -ErrorCode.unknown_error = ErrorCode('unknown_error') -ErrorCode.bad_request = ErrorCode('bad_request') -ErrorCode.api_error = ErrorCode('api_error') -ErrorCode.access_error = ErrorCode('access_error') -ErrorCode.ratelimit_error = ErrorCode('ratelimit_error') -ErrorCode.unavailable = ErrorCode('unavailable') -ErrorCode.other = ErrorCode('other') +ErrorCode.unknown_error = ErrorCode("unknown_error") +ErrorCode.bad_request = ErrorCode("bad_request") +ErrorCode.api_error = ErrorCode("api_error") +ErrorCode.access_error = ErrorCode("access_error") +ErrorCode.ratelimit_error = ErrorCode("ratelimit_error") +ErrorCode.unavailable = ErrorCode("unavailable") +ErrorCode.other = ErrorCode("other") FileIdOrUrl._file_id_validator = bv.String() FileIdOrUrl._url_validator = bv.String() FileIdOrUrl._path_validator = bv.String() FileIdOrUrl._other_validator = bv.Void() FileIdOrUrl._tagmap = { - 'file_id': FileIdOrUrl._file_id_validator, - 'url': FileIdOrUrl._url_validator, - 'path': FileIdOrUrl._path_validator, - 'other': FileIdOrUrl._other_validator, + "file_id": FileIdOrUrl._file_id_validator, + "url": FileIdOrUrl._url_validator, + "path": FileIdOrUrl._path_validator, + "other": FileIdOrUrl._other_validator, } -FileIdOrUrl.other = FileIdOrUrl('other') +FileIdOrUrl.other = FileIdOrUrl("other") GetMarkdownArgs.file_id_or_url.validator = bv.Nullable(FileIdOrUrl_validator) GetMarkdownArgs.enable_ocr.validator = bv.Boolean() GetMarkdownArgs.embed_images.validator = bv.Boolean() -GetMarkdownArgs._all_field_names_ = set([ - 'file_id_or_url', - 'enable_ocr', - 'embed_images', -]) +GetMarkdownArgs._all_field_names_ = set( + [ + "file_id_or_url", + "enable_ocr", + "embed_images", + ] +) GetMarkdownArgs._all_fields_ = [ - ('file_id_or_url', GetMarkdownArgs.file_id_or_url.validator), - ('enable_ocr', GetMarkdownArgs.enable_ocr.validator), - ('embed_images', GetMarkdownArgs.embed_images.validator), + ("file_id_or_url", GetMarkdownArgs.file_id_or_url.validator), + ("enable_ocr", GetMarkdownArgs.enable_ocr.validator), + ("embed_images", GetMarkdownArgs.embed_images.validator), ] GetMarkdownAsyncCheckResult._in_progress_validator = bv.Void() @@ -2687,85 +2802,93 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetMarkdownAsyncCheckResult._failed_validator = GetMarkdownAsyncError_validator GetMarkdownAsyncCheckResult._other_validator = bv.Void() GetMarkdownAsyncCheckResult._tagmap = { - 'in_progress': GetMarkdownAsyncCheckResult._in_progress_validator, - 'complete': GetMarkdownAsyncCheckResult._complete_validator, - 'failed': GetMarkdownAsyncCheckResult._failed_validator, - 'other': GetMarkdownAsyncCheckResult._other_validator, + "in_progress": GetMarkdownAsyncCheckResult._in_progress_validator, + "complete": GetMarkdownAsyncCheckResult._complete_validator, + "failed": GetMarkdownAsyncCheckResult._failed_validator, + "other": GetMarkdownAsyncCheckResult._other_validator, } -GetMarkdownAsyncCheckResult.in_progress = GetMarkdownAsyncCheckResult('in_progress') -GetMarkdownAsyncCheckResult.other = GetMarkdownAsyncCheckResult('other') +GetMarkdownAsyncCheckResult.in_progress = GetMarkdownAsyncCheckResult("in_progress") +GetMarkdownAsyncCheckResult.other = GetMarkdownAsyncCheckResult("other") GetMarkdownAsyncError.error_code.validator = ErrorCode_validator GetMarkdownAsyncError.error_details.validator = bv.Nullable(MarkdownConversionApiV2Error_validator) -GetMarkdownAsyncError._all_field_names_ = set([ - 'error_code', - 'error_details', -]) +GetMarkdownAsyncError._all_field_names_ = set( + [ + "error_code", + "error_details", + ] +) GetMarkdownAsyncError._all_fields_ = [ - ('error_code', GetMarkdownAsyncError.error_code.validator), - ('error_details', GetMarkdownAsyncError.error_details.validator), + ("error_code", GetMarkdownAsyncError.error_code.validator), + ("error_details", GetMarkdownAsyncError.error_details.validator), ] GetMarkdownResult.markdown.validator = bv.String() -GetMarkdownResult._all_field_names_ = set(['markdown']) -GetMarkdownResult._all_fields_ = [('markdown', GetMarkdownResult.markdown.validator)] +GetMarkdownResult._all_field_names_ = set(["markdown"]) +GetMarkdownResult._all_fields_ = [("markdown", GetMarkdownResult.markdown.validator)] GetMetadataArgs.file_id_or_url.validator = bv.Nullable(FileIdOrUrl_validator) -GetMetadataArgs._all_field_names_ = set(['file_id_or_url']) -GetMetadataArgs._all_fields_ = [('file_id_or_url', GetMetadataArgs.file_id_or_url.validator)] +GetMetadataArgs._all_field_names_ = set(["file_id_or_url"]) +GetMetadataArgs._all_fields_ = [("file_id_or_url", GetMetadataArgs.file_id_or_url.validator)] GetMetadataAsyncCheckResult._in_progress_validator = bv.Void() GetMetadataAsyncCheckResult._complete_validator = GetMetadataResult_validator GetMetadataAsyncCheckResult._failed_validator = GetMetadataAsyncError_validator GetMetadataAsyncCheckResult._other_validator = bv.Void() GetMetadataAsyncCheckResult._tagmap = { - 'in_progress': GetMetadataAsyncCheckResult._in_progress_validator, - 'complete': GetMetadataAsyncCheckResult._complete_validator, - 'failed': GetMetadataAsyncCheckResult._failed_validator, - 'other': GetMetadataAsyncCheckResult._other_validator, + "in_progress": GetMetadataAsyncCheckResult._in_progress_validator, + "complete": GetMetadataAsyncCheckResult._complete_validator, + "failed": GetMetadataAsyncCheckResult._failed_validator, + "other": GetMetadataAsyncCheckResult._other_validator, } -GetMetadataAsyncCheckResult.in_progress = GetMetadataAsyncCheckResult('in_progress') -GetMetadataAsyncCheckResult.other = GetMetadataAsyncCheckResult('other') +GetMetadataAsyncCheckResult.in_progress = GetMetadataAsyncCheckResult("in_progress") +GetMetadataAsyncCheckResult.other = GetMetadataAsyncCheckResult("other") GetMetadataAsyncError.error_code.validator = ErrorCode_validator GetMetadataAsyncError.error_details.validator = bv.Nullable(MetadataExtractionApiV2Error_validator) -GetMetadataAsyncError._all_field_names_ = set([ - 'error_code', - 'error_details', -]) +GetMetadataAsyncError._all_field_names_ = set( + [ + "error_code", + "error_details", + ] +) GetMetadataAsyncError._all_fields_ = [ - ('error_code', GetMetadataAsyncError.error_code.validator), - ('error_details', GetMetadataAsyncError.error_details.validator), + ("error_code", GetMetadataAsyncError.error_code.validator), + ("error_details", GetMetadataAsyncError.error_details.validator), ] GetMetadataResult.metadata_type.validator = MetadataType_validator GetMetadataResult.metadata.validator = bv.Nullable(MetadataUnion_validator) -GetMetadataResult._all_field_names_ = set([ - 'metadata_type', - 'metadata', -]) +GetMetadataResult._all_field_names_ = set( + [ + "metadata_type", + "metadata", + ] +) GetMetadataResult._all_fields_ = [ - ('metadata_type', GetMetadataResult.metadata_type.validator), - ('metadata', GetMetadataResult.metadata.validator), + ("metadata_type", GetMetadataResult.metadata_type.validator), + ("metadata", GetMetadataResult.metadata.validator), ] GetTranscriptArgs.file_id_or_url.validator = bv.Nullable(FileIdOrUrl_validator) GetTranscriptArgs.timestamp_level.validator = TimestampLevel_validator GetTranscriptArgs.included_special_words.validator = bv.String() GetTranscriptArgs.audio_language.validator = bv.String() -GetTranscriptArgs._all_field_names_ = set([ - 'file_id_or_url', - 'timestamp_level', - 'included_special_words', - 'audio_language', -]) +GetTranscriptArgs._all_field_names_ = set( + [ + "file_id_or_url", + "timestamp_level", + "included_special_words", + "audio_language", + ] +) GetTranscriptArgs._all_fields_ = [ - ('file_id_or_url', GetTranscriptArgs.file_id_or_url.validator), - ('timestamp_level', GetTranscriptArgs.timestamp_level.validator), - ('included_special_words', GetTranscriptArgs.included_special_words.validator), - ('audio_language', GetTranscriptArgs.audio_language.validator), + ("file_id_or_url", GetTranscriptArgs.file_id_or_url.validator), + ("timestamp_level", GetTranscriptArgs.timestamp_level.validator), + ("included_special_words", GetTranscriptArgs.included_special_words.validator), + ("audio_language", GetTranscriptArgs.audio_language.validator), ] GetTranscriptAsyncCheckResult._in_progress_validator = bv.Void() @@ -2773,29 +2896,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetTranscriptAsyncCheckResult._failed_validator = GetTranscriptAsyncError_validator GetTranscriptAsyncCheckResult._other_validator = bv.Void() GetTranscriptAsyncCheckResult._tagmap = { - 'in_progress': GetTranscriptAsyncCheckResult._in_progress_validator, - 'complete': GetTranscriptAsyncCheckResult._complete_validator, - 'failed': GetTranscriptAsyncCheckResult._failed_validator, - 'other': GetTranscriptAsyncCheckResult._other_validator, + "in_progress": GetTranscriptAsyncCheckResult._in_progress_validator, + "complete": GetTranscriptAsyncCheckResult._complete_validator, + "failed": GetTranscriptAsyncCheckResult._failed_validator, + "other": GetTranscriptAsyncCheckResult._other_validator, } -GetTranscriptAsyncCheckResult.in_progress = GetTranscriptAsyncCheckResult('in_progress') -GetTranscriptAsyncCheckResult.other = GetTranscriptAsyncCheckResult('other') +GetTranscriptAsyncCheckResult.in_progress = GetTranscriptAsyncCheckResult("in_progress") +GetTranscriptAsyncCheckResult.other = GetTranscriptAsyncCheckResult("other") GetTranscriptAsyncError.error_code.validator = ErrorCode_validator GetTranscriptAsyncError.error_details.validator = bv.Nullable(ContentApiV2Error_validator) -GetTranscriptAsyncError._all_field_names_ = set([ - 'error_code', - 'error_details', -]) +GetTranscriptAsyncError._all_field_names_ = set( + [ + "error_code", + "error_details", + ] +) GetTranscriptAsyncError._all_fields_ = [ - ('error_code', GetTranscriptAsyncError.error_code.validator), - ('error_details', GetTranscriptAsyncError.error_details.validator), + ("error_code", GetTranscriptAsyncError.error_code.validator), + ("error_details", GetTranscriptAsyncError.error_details.validator), ] GetTranscriptResult.structured_transcript.validator = bv.Nullable(ApiStructuredTranscript_validator) -GetTranscriptResult._all_field_names_ = set(['structured_transcript']) -GetTranscriptResult._all_fields_ = [('structured_transcript', GetTranscriptResult.structured_transcript.validator)] +GetTranscriptResult._all_field_names_ = set(["structured_transcript"]) +GetTranscriptResult._all_fields_ = [ + ("structured_transcript", GetTranscriptResult.structured_transcript.validator) +] MarkdownConversionApiV2Error._server_error_validator = bv.String() MarkdownConversionApiV2Error._user_error_validator = bv.String() @@ -2808,30 +2935,40 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MarkdownConversionApiV2Error._is_a_folder_error_validator = bv.Void() MarkdownConversionApiV2Error._other_validator = bv.Void() MarkdownConversionApiV2Error._tagmap = { - 'server_error': MarkdownConversionApiV2Error._server_error_validator, - 'user_error': MarkdownConversionApiV2Error._user_error_validator, - 'unsupported_format_error': MarkdownConversionApiV2Error._unsupported_format_error_validator, - 'link_download_disabled_error': MarkdownConversionApiV2Error._link_download_disabled_error_validator, - 'shared_link_password_protected': MarkdownConversionApiV2Error._shared_link_password_protected_validator, - 'limit_exceeded_error': MarkdownConversionApiV2Error._limit_exceeded_error_validator, - 'conversion_failure_error': MarkdownConversionApiV2Error._conversion_failure_error_validator, - 'not_found_error': MarkdownConversionApiV2Error._not_found_error_validator, - 'is_a_folder_error': MarkdownConversionApiV2Error._is_a_folder_error_validator, - 'other': MarkdownConversionApiV2Error._other_validator, + "server_error": MarkdownConversionApiV2Error._server_error_validator, + "user_error": MarkdownConversionApiV2Error._user_error_validator, + "unsupported_format_error": MarkdownConversionApiV2Error._unsupported_format_error_validator, + "link_download_disabled_error": MarkdownConversionApiV2Error._link_download_disabled_error_validator, + "shared_link_password_protected": MarkdownConversionApiV2Error._shared_link_password_protected_validator, + "limit_exceeded_error": MarkdownConversionApiV2Error._limit_exceeded_error_validator, + "conversion_failure_error": MarkdownConversionApiV2Error._conversion_failure_error_validator, + "not_found_error": MarkdownConversionApiV2Error._not_found_error_validator, + "is_a_folder_error": MarkdownConversionApiV2Error._is_a_folder_error_validator, + "other": MarkdownConversionApiV2Error._other_validator, } -MarkdownConversionApiV2Error.unsupported_format_error = MarkdownConversionApiV2Error('unsupported_format_error') -MarkdownConversionApiV2Error.link_download_disabled_error = MarkdownConversionApiV2Error('link_download_disabled_error') -MarkdownConversionApiV2Error.shared_link_password_protected = MarkdownConversionApiV2Error('shared_link_password_protected') -MarkdownConversionApiV2Error.limit_exceeded_error = MarkdownConversionApiV2Error('limit_exceeded_error') -MarkdownConversionApiV2Error.conversion_failure_error = MarkdownConversionApiV2Error('conversion_failure_error') -MarkdownConversionApiV2Error.not_found_error = MarkdownConversionApiV2Error('not_found_error') -MarkdownConversionApiV2Error.is_a_folder_error = MarkdownConversionApiV2Error('is_a_folder_error') -MarkdownConversionApiV2Error.other = MarkdownConversionApiV2Error('other') +MarkdownConversionApiV2Error.unsupported_format_error = MarkdownConversionApiV2Error( + "unsupported_format_error" +) +MarkdownConversionApiV2Error.link_download_disabled_error = MarkdownConversionApiV2Error( + "link_download_disabled_error" +) +MarkdownConversionApiV2Error.shared_link_password_protected = MarkdownConversionApiV2Error( + "shared_link_password_protected" +) +MarkdownConversionApiV2Error.limit_exceeded_error = MarkdownConversionApiV2Error( + "limit_exceeded_error" +) +MarkdownConversionApiV2Error.conversion_failure_error = MarkdownConversionApiV2Error( + "conversion_failure_error" +) +MarkdownConversionApiV2Error.not_found_error = MarkdownConversionApiV2Error("not_found_error") +MarkdownConversionApiV2Error.is_a_folder_error = MarkdownConversionApiV2Error("is_a_folder_error") +MarkdownConversionApiV2Error.other = MarkdownConversionApiV2Error("other") MediaDurationError.limit.validator = bv.Int32() -MediaDurationError._all_field_names_ = set(['limit']) -MediaDurationError._all_fields_ = [('limit', MediaDurationError.limit.validator)] +MediaDurationError._all_field_names_ = set(["limit"]) +MediaDurationError._all_fields_ = [("limit", MediaDurationError.limit.validator)] MetadataExtractionApiV2Error._server_error_validator = bv.String() MetadataExtractionApiV2Error._user_error_validator = bv.String() @@ -2844,26 +2981,36 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MetadataExtractionApiV2Error._is_a_folder_error_validator = bv.Void() MetadataExtractionApiV2Error._other_validator = bv.Void() MetadataExtractionApiV2Error._tagmap = { - 'server_error': MetadataExtractionApiV2Error._server_error_validator, - 'user_error': MetadataExtractionApiV2Error._user_error_validator, - 'unsupported_format_error': MetadataExtractionApiV2Error._unsupported_format_error_validator, - 'link_download_disabled_error': MetadataExtractionApiV2Error._link_download_disabled_error_validator, - 'shared_link_password_protected': MetadataExtractionApiV2Error._shared_link_password_protected_validator, - 'limit_exceeded_error': MetadataExtractionApiV2Error._limit_exceeded_error_validator, - 'conversion_failure_error': MetadataExtractionApiV2Error._conversion_failure_error_validator, - 'not_found_error': MetadataExtractionApiV2Error._not_found_error_validator, - 'is_a_folder_error': MetadataExtractionApiV2Error._is_a_folder_error_validator, - 'other': MetadataExtractionApiV2Error._other_validator, + "server_error": MetadataExtractionApiV2Error._server_error_validator, + "user_error": MetadataExtractionApiV2Error._user_error_validator, + "unsupported_format_error": MetadataExtractionApiV2Error._unsupported_format_error_validator, + "link_download_disabled_error": MetadataExtractionApiV2Error._link_download_disabled_error_validator, + "shared_link_password_protected": MetadataExtractionApiV2Error._shared_link_password_protected_validator, + "limit_exceeded_error": MetadataExtractionApiV2Error._limit_exceeded_error_validator, + "conversion_failure_error": MetadataExtractionApiV2Error._conversion_failure_error_validator, + "not_found_error": MetadataExtractionApiV2Error._not_found_error_validator, + "is_a_folder_error": MetadataExtractionApiV2Error._is_a_folder_error_validator, + "other": MetadataExtractionApiV2Error._other_validator, } -MetadataExtractionApiV2Error.unsupported_format_error = MetadataExtractionApiV2Error('unsupported_format_error') -MetadataExtractionApiV2Error.link_download_disabled_error = MetadataExtractionApiV2Error('link_download_disabled_error') -MetadataExtractionApiV2Error.shared_link_password_protected = MetadataExtractionApiV2Error('shared_link_password_protected') -MetadataExtractionApiV2Error.limit_exceeded_error = MetadataExtractionApiV2Error('limit_exceeded_error') -MetadataExtractionApiV2Error.conversion_failure_error = MetadataExtractionApiV2Error('conversion_failure_error') -MetadataExtractionApiV2Error.not_found_error = MetadataExtractionApiV2Error('not_found_error') -MetadataExtractionApiV2Error.is_a_folder_error = MetadataExtractionApiV2Error('is_a_folder_error') -MetadataExtractionApiV2Error.other = MetadataExtractionApiV2Error('other') +MetadataExtractionApiV2Error.unsupported_format_error = MetadataExtractionApiV2Error( + "unsupported_format_error" +) +MetadataExtractionApiV2Error.link_download_disabled_error = MetadataExtractionApiV2Error( + "link_download_disabled_error" +) +MetadataExtractionApiV2Error.shared_link_password_protected = MetadataExtractionApiV2Error( + "shared_link_password_protected" +) +MetadataExtractionApiV2Error.limit_exceeded_error = MetadataExtractionApiV2Error( + "limit_exceeded_error" +) +MetadataExtractionApiV2Error.conversion_failure_error = MetadataExtractionApiV2Error( + "conversion_failure_error" +) +MetadataExtractionApiV2Error.not_found_error = MetadataExtractionApiV2Error("not_found_error") +MetadataExtractionApiV2Error.is_a_folder_error = MetadataExtractionApiV2Error("is_a_folder_error") +MetadataExtractionApiV2Error.other = MetadataExtractionApiV2Error("other") MetadataType._metadata_type_unknown_validator = bv.Void() MetadataType._metadata_type_exif_validator = bv.Void() @@ -2872,20 +3019,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MetadataType._metadata_type_office_validator = bv.Void() MetadataType._other_validator = bv.Void() MetadataType._tagmap = { - 'metadata_type_unknown': MetadataType._metadata_type_unknown_validator, - 'metadata_type_exif': MetadataType._metadata_type_exif_validator, - 'metadata_type_media': MetadataType._metadata_type_media_validator, - 'metadata_type_pdf': MetadataType._metadata_type_pdf_validator, - 'metadata_type_office': MetadataType._metadata_type_office_validator, - 'other': MetadataType._other_validator, + "metadata_type_unknown": MetadataType._metadata_type_unknown_validator, + "metadata_type_exif": MetadataType._metadata_type_exif_validator, + "metadata_type_media": MetadataType._metadata_type_media_validator, + "metadata_type_pdf": MetadataType._metadata_type_pdf_validator, + "metadata_type_office": MetadataType._metadata_type_office_validator, + "other": MetadataType._other_validator, } -MetadataType.metadata_type_unknown = MetadataType('metadata_type_unknown') -MetadataType.metadata_type_exif = MetadataType('metadata_type_exif') -MetadataType.metadata_type_media = MetadataType('metadata_type_media') -MetadataType.metadata_type_pdf = MetadataType('metadata_type_pdf') -MetadataType.metadata_type_office = MetadataType('metadata_type_office') -MetadataType.other = MetadataType('other') +MetadataType.metadata_type_unknown = MetadataType("metadata_type_unknown") +MetadataType.metadata_type_exif = MetadataType("metadata_type_exif") +MetadataType.metadata_type_media = MetadataType("metadata_type_media") +MetadataType.metadata_type_pdf = MetadataType("metadata_type_pdf") +MetadataType.metadata_type_office = MetadataType("metadata_type_office") +MetadataType.other = MetadataType("other") OfficeFileType._office_filetype_unknown_validator = bv.Void() OfficeFileType._office_filetype_word_validator = bv.Void() @@ -2893,34 +3040,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): OfficeFileType._office_filetype_excel_validator = bv.Void() OfficeFileType._other_validator = bv.Void() OfficeFileType._tagmap = { - 'office_filetype_unknown': OfficeFileType._office_filetype_unknown_validator, - 'office_filetype_word': OfficeFileType._office_filetype_word_validator, - 'office_filetype_powerpoint': OfficeFileType._office_filetype_powerpoint_validator, - 'office_filetype_excel': OfficeFileType._office_filetype_excel_validator, - 'other': OfficeFileType._other_validator, + "office_filetype_unknown": OfficeFileType._office_filetype_unknown_validator, + "office_filetype_word": OfficeFileType._office_filetype_word_validator, + "office_filetype_powerpoint": OfficeFileType._office_filetype_powerpoint_validator, + "office_filetype_excel": OfficeFileType._office_filetype_excel_validator, + "other": OfficeFileType._other_validator, } -OfficeFileType.office_filetype_unknown = OfficeFileType('office_filetype_unknown') -OfficeFileType.office_filetype_word = OfficeFileType('office_filetype_word') -OfficeFileType.office_filetype_powerpoint = OfficeFileType('office_filetype_powerpoint') -OfficeFileType.office_filetype_excel = OfficeFileType('office_filetype_excel') -OfficeFileType.other = OfficeFileType('other') +OfficeFileType.office_filetype_unknown = OfficeFileType("office_filetype_unknown") +OfficeFileType.office_filetype_word = OfficeFileType("office_filetype_word") +OfficeFileType.office_filetype_powerpoint = OfficeFileType("office_filetype_powerpoint") +OfficeFileType.office_filetype_excel = OfficeFileType("office_filetype_excel") +OfficeFileType.other = OfficeFileType("other") TimestampLevel._unknown_validator = bv.Void() TimestampLevel._sentence_validator = bv.Void() TimestampLevel._word_validator = bv.Void() TimestampLevel._other_validator = bv.Void() TimestampLevel._tagmap = { - 'unknown': TimestampLevel._unknown_validator, - 'sentence': TimestampLevel._sentence_validator, - 'word': TimestampLevel._word_validator, - 'other': TimestampLevel._other_validator, + "unknown": TimestampLevel._unknown_validator, + "sentence": TimestampLevel._sentence_validator, + "word": TimestampLevel._word_validator, + "other": TimestampLevel._other_validator, } -TimestampLevel.unknown = TimestampLevel('unknown') -TimestampLevel.sentence = TimestampLevel('sentence') -TimestampLevel.word = TimestampLevel('word') -TimestampLevel.other = TimestampLevel('other') +TimestampLevel.unknown = TimestampLevel("unknown") +TimestampLevel.sentence = TimestampLevel("sentence") +TimestampLevel.word = TimestampLevel("word") +TimestampLevel.other = TimestampLevel("other") MetadataUnion._exif_validator = ApiExifMetadata_validator MetadataUnion._media_validator = ApiMediaMetadata_validator @@ -2928,155 +3075,142 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MetadataUnion._office_validator = ApiOfficeMetadata_validator MetadataUnion._other_validator = bv.Void() MetadataUnion._tagmap = { - 'exif': MetadataUnion._exif_validator, - 'media': MetadataUnion._media_validator, - 'pdf': MetadataUnion._pdf_validator, - 'office': MetadataUnion._office_validator, - 'other': MetadataUnion._other_validator, + "exif": MetadataUnion._exif_validator, + "media": MetadataUnion._media_validator, + "pdf": MetadataUnion._pdf_validator, + "office": MetadataUnion._office_validator, + "other": MetadataUnion._other_validator, } -MetadataUnion.other = MetadataUnion('other') +MetadataUnion.other = MetadataUnion("other") ApiExifGpsMetadata.latitude.default = 0.0 ApiExifGpsMetadata.longitude.default = 0.0 -ApiExifGpsMetadata.altitude.default = '' -ApiExifGpsMetadata.timestamp.default = '' -ApiExifGpsMetadata.datestamp.default = '' +ApiExifGpsMetadata.altitude.default = "" +ApiExifGpsMetadata.timestamp.default = "" +ApiExifGpsMetadata.datestamp.default = "" ApiExifMetadata.image_width.default = 0 ApiExifMetadata.image_height.default = 0 -ApiExifMetadata.camera_make.default = '' -ApiExifMetadata.camera_model.default = '' -ApiExifMetadata.lens_model.default = '' -ApiExifMetadata.date_time_original.default = '' -ApiExifMetadata.offset_time_original.default = '' +ApiExifMetadata.camera_make.default = "" +ApiExifMetadata.camera_model.default = "" +ApiExifMetadata.lens_model.default = "" +ApiExifMetadata.date_time_original.default = "" +ApiExifMetadata.offset_time_original.default = "" ApiExifMetadata.orientation.default = 0 -ApiExifMetadata.exposure_time.default = '' +ApiExifMetadata.exposure_time.default = "" ApiExifMetadata.aperture_value.default = 0.0 ApiExifMetadata.iso_speed.default = 0 -ApiExifMetadata.focal_length.default = '' +ApiExifMetadata.focal_length.default = "" ApiExifMetadata.megapixels.default = 0.0 -ApiExifMetadata.artist.default = '' -ApiExifMetadata.copyright.default = '' +ApiExifMetadata.artist.default = "" +ApiExifMetadata.copyright.default = "" ApiMediaMetadata.bitrate_bps.default = 0 ApiMediaMetadata.duration_s.default = 0.0 -ApiMediaMetadata.creation_time.default = '' +ApiMediaMetadata.creation_time.default = "" ApiMediaStream.index.default = 0 -ApiMediaStream.codec_type.default = '' -ApiMediaStream.codec_name.default = '' +ApiMediaStream.codec_type.default = "" +ApiMediaStream.codec_name.default = "" ApiMediaStream.bitrate_bps.default = 0 ApiMediaStream.duration_s.default = 0.0 ApiMediaStream.width.default = 0 ApiMediaStream.height.default = 0 ApiMediaStream.frames_per_second.default = 0.0 ApiMediaStream.rotation.default = 0 -ApiMediaStream.display_aspect_ratio.default = '' +ApiMediaStream.display_aspect_ratio.default = "" ApiMediaStream.channels.default = 0 -ApiMediaStream.channel_layout.default = '' +ApiMediaStream.channel_layout.default = "" ApiMediaStream.sample_rate_s.default = 0 -ApiMediaStream.language_iso_639.default = '' +ApiMediaStream.language_iso_639.default = "" ApiOfficeMetadata.file_type.default = OfficeFileType.office_filetype_unknown -ApiOfficeMetadata.creator.default = '' -ApiOfficeMetadata.company.default = '' -ApiOfficeMetadata.title.default = '' -ApiOfficeMetadata.subject.default = '' -ApiOfficeMetadata.keywords.default = '' -ApiOfficeMetadata.description.default = '' +ApiOfficeMetadata.creator.default = "" +ApiOfficeMetadata.company.default = "" +ApiOfficeMetadata.title.default = "" +ApiOfficeMetadata.subject.default = "" +ApiOfficeMetadata.keywords.default = "" +ApiOfficeMetadata.description.default = "" ApiOfficeMetadata.total_edit_time_minutes.default = 0 ApiOfficeMetadata.pages.default = 0 ApiOfficeMetadata.words.default = 0 ApiOfficeMetadata.slides.default = 0 -ApiOfficeMetadata.revision_number.default = '' +ApiOfficeMetadata.revision_number.default = "" ApiPdfMetadata.pages.default = 0 ApiPdfMetadata.width.default = 0 ApiPdfMetadata.height.default = 0 -ApiStructuredTranscript.transcript_locale.default = '' -ApiTranscriptSegment.text.default = '' +ApiStructuredTranscript.transcript_locale.default = "" +ApiTranscriptSegment.text.default = "" ApiTranscriptSegment.start_time.default = 0.0 ApiTranscriptSegment.end_time.default = 0.0 GetMarkdownArgs.enable_ocr.default = False GetMarkdownArgs.embed_images.default = False GetMarkdownAsyncError.error_code.default = ErrorCode.unknown_error -GetMarkdownResult.markdown.default = '' +GetMarkdownResult.markdown.default = "" GetMetadataAsyncError.error_code.default = ErrorCode.unknown_error GetMetadataResult.metadata_type.default = MetadataType.metadata_type_unknown GetTranscriptArgs.timestamp_level.default = TimestampLevel.unknown -GetTranscriptArgs.included_special_words.default = '' -GetTranscriptArgs.audio_language.default = '' +GetTranscriptArgs.included_special_words.default = "" +GetTranscriptArgs.audio_language.default = "" GetTranscriptAsyncError.error_code.default = ErrorCode.unknown_error MediaDurationError.limit.default = 0 get_markdown_async = bb.Route( - 'get_markdown_async', + "get_markdown_async", 1, False, GetMarkdownArgs_validator, async_.LaunchResultBase_validator, bv.Void(), - {'auth': 'app, user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app, user", "host": "api", "style": "rpc"}, ) get_markdown_async_check = bb.Route( - 'get_markdown_async/check', + "get_markdown_async/check", 1, False, async_.PollArg_validator, GetMarkdownAsyncCheckResult_validator, async_.PollError_validator, - {'auth': 'app, user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app, user", "host": "api", "style": "rpc"}, ) get_metadata_async = bb.Route( - 'get_metadata_async', + "get_metadata_async", 1, False, GetMetadataArgs_validator, async_.LaunchResultBase_validator, bv.Void(), - {'auth': 'app, user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app, user", "host": "api", "style": "rpc"}, ) get_metadata_async_check = bb.Route( - 'get_metadata_async/check', + "get_metadata_async/check", 1, False, async_.PollArg_validator, GetMetadataAsyncCheckResult_validator, async_.PollError_validator, - {'auth': 'app, user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app, user", "host": "api", "style": "rpc"}, ) get_transcript_async = bb.Route( - 'get_transcript_async', + "get_transcript_async", 1, False, GetTranscriptArgs_validator, async_.LaunchResultBase_validator, bv.Void(), - {'auth': 'app, user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app, user", "host": "api", "style": "rpc"}, ) get_transcript_async_check = bb.Route( - 'get_transcript_async/check', + "get_transcript_async/check", 1, False, async_.PollArg_validator, GetTranscriptAsyncCheckResult_validator, async_.PollError_validator, - {'auth': 'app, user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app, user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'get_markdown_async': get_markdown_async, - 'get_markdown_async/check': get_markdown_async_check, - 'get_metadata_async': get_metadata_async, - 'get_metadata_async/check': get_metadata_async_check, - 'get_transcript_async': get_transcript_async, - 'get_transcript_async/check': get_transcript_async_check, + "get_markdown_async": get_markdown_async, + "get_markdown_async/check": get_markdown_async_check, + "get_metadata_async": get_metadata_async, + "get_metadata_async/check": get_metadata_async_check, + "get_transcript_async": get_transcript_async, + "get_transcript_async/check": get_transcript_async_check, } - diff --git a/dropbox/secondary_emails.py b/dropbox/secondary_emails.py index 7517e677..4cd77626 100644 --- a/dropbox/secondary_emails.py +++ b/dropbox/secondary_emails.py @@ -9,6 +9,7 @@ from dropbox import common + class SecondaryEmail(bb.Struct): """ :ivar SecondaryEmail.email: @@ -19,15 +20,13 @@ class SecondaryEmail(bb.Struct): """ __slots__ = [ - '_email_value', - '_is_verified_value', + "_email_value", + "_is_verified_value", ] _has_required_fields = True - def __init__(self, - email=None, - is_verified=None): + def __init__(self, email=None, is_verified=None): self._email_value = bb.NOT_SET self._is_verified_value = bb.NOT_SET if email is not None: @@ -42,21 +41,24 @@ def __init__(self, is_verified = bb.Attribute("is_verified") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmail, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryEmail, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryEmail_validator = bv.Struct(SecondaryEmail) SecondaryEmail.email.validator = common.EmailAddress_validator SecondaryEmail.is_verified.validator = bv.Boolean() -SecondaryEmail._all_field_names_ = set([ - 'email', - 'is_verified', -]) +SecondaryEmail._all_field_names_ = set( + [ + "email", + "is_verified", + ] +) SecondaryEmail._all_fields_ = [ - ('email', SecondaryEmail.email.validator), - ('is_verified', SecondaryEmail.is_verified.validator), + ("email", SecondaryEmail.email.validator), + ("is_verified", SecondaryEmail.is_verified.validator), ] -ROUTES = { -} - +ROUTES = {} diff --git a/dropbox/seen_state.py b/dropbox/seen_state.py index de9b34b2..04591a8d 100644 --- a/dropbox/seen_state.py +++ b/dropbox/seen_state.py @@ -7,6 +7,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class PlatformType(bb.Union): """ Possible platforms on which a user may view content. @@ -32,7 +33,7 @@ class PlatformType(bb.Union): mobile_android instead. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition web = None # Attribute is overwritten below the class definition @@ -56,7 +57,7 @@ def is_web(self): :rtype: bool """ - return self._tag == 'web' + return self._tag == "web" def is_desktop(self): """ @@ -64,7 +65,7 @@ def is_desktop(self): :rtype: bool """ - return self._tag == 'desktop' + return self._tag == "desktop" def is_mobile_ios(self): """ @@ -72,7 +73,7 @@ def is_mobile_ios(self): :rtype: bool """ - return self._tag == 'mobile_ios' + return self._tag == "mobile_ios" def is_mobile_android(self): """ @@ -80,7 +81,7 @@ def is_mobile_android(self): :rtype: bool """ - return self._tag == 'mobile_android' + return self._tag == "mobile_android" def is_api(self): """ @@ -88,7 +89,7 @@ def is_api(self): :rtype: bool """ - return self._tag == 'api' + return self._tag == "api" def is_unknown(self): """ @@ -96,7 +97,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == 'unknown' + return self._tag == "unknown" def is_mobile(self): """ @@ -104,7 +105,7 @@ def is_mobile(self): :rtype: bool """ - return self._tag == 'mobile' + return self._tag == "mobile" def is_other(self): """ @@ -112,10 +113,13 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PlatformType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PlatformType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PlatformType_validator = bv.Union(PlatformType) @@ -128,25 +132,23 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PlatformType._mobile_validator = bv.Void() PlatformType._other_validator = bv.Void() PlatformType._tagmap = { - 'web': PlatformType._web_validator, - 'desktop': PlatformType._desktop_validator, - 'mobile_ios': PlatformType._mobile_ios_validator, - 'mobile_android': PlatformType._mobile_android_validator, - 'api': PlatformType._api_validator, - 'unknown': PlatformType._unknown_validator, - 'mobile': PlatformType._mobile_validator, - 'other': PlatformType._other_validator, + "web": PlatformType._web_validator, + "desktop": PlatformType._desktop_validator, + "mobile_ios": PlatformType._mobile_ios_validator, + "mobile_android": PlatformType._mobile_android_validator, + "api": PlatformType._api_validator, + "unknown": PlatformType._unknown_validator, + "mobile": PlatformType._mobile_validator, + "other": PlatformType._other_validator, } -PlatformType.web = PlatformType('web') -PlatformType.desktop = PlatformType('desktop') -PlatformType.mobile_ios = PlatformType('mobile_ios') -PlatformType.mobile_android = PlatformType('mobile_android') -PlatformType.api = PlatformType('api') -PlatformType.unknown = PlatformType('unknown') -PlatformType.mobile = PlatformType('mobile') -PlatformType.other = PlatformType('other') - -ROUTES = { -} +PlatformType.web = PlatformType("web") +PlatformType.desktop = PlatformType("desktop") +PlatformType.mobile_ios = PlatformType("mobile_ios") +PlatformType.mobile_android = PlatformType("mobile_android") +PlatformType.api = PlatformType("api") +PlatformType.unknown = PlatformType("unknown") +PlatformType.mobile = PlatformType("mobile") +PlatformType.other = PlatformType("other") +ROUTES = {} diff --git a/dropbox/session.py b/dropbox/session.py index c157c7da..4fb70516 100644 --- a/dropbox/session.py +++ b/dropbox/session.py @@ -5,28 +5,28 @@ from requests.adapters import HTTPAdapter from urllib3.poolmanager import PoolManager -API_DOMAIN = os.environ.get('DROPBOX_API_DOMAIN', - os.environ.get('DROPBOX_DOMAIN', '.dropboxapi.com')) +API_DOMAIN = os.environ.get( + "DROPBOX_API_DOMAIN", os.environ.get("DROPBOX_DOMAIN", ".dropboxapi.com") +) -WEB_DOMAIN = os.environ.get('DROPBOX_WEB_DOMAIN', - os.environ.get('DROPBOX_DOMAIN', '.dropbox.com')) +WEB_DOMAIN = os.environ.get("DROPBOX_WEB_DOMAIN", os.environ.get("DROPBOX_DOMAIN", ".dropbox.com")) # Default short hostname for RPC-style routes. -HOST_API = 'api' +HOST_API = "api" # Default short hostname for upload and download-style routes. -HOST_CONTENT = 'content' +HOST_CONTENT = "content" # Default short hostname for longpoll routes. -HOST_NOTIFY = 'notify' +HOST_NOTIFY = "notify" # Default short hostname for the Drobox website. -HOST_WWW = 'www' +HOST_WWW = "www" -API_HOST = os.environ.get('DROPBOX_API_HOST', HOST_API + API_DOMAIN) -API_CONTENT_HOST = os.environ.get('DROPBOX_API_CONTENT_HOST', HOST_CONTENT + API_DOMAIN) -API_NOTIFICATION_HOST = os.environ.get('DROPBOX_API_NOTIFY_HOST', HOST_NOTIFY + API_DOMAIN) -WEB_HOST = os.environ.get('DROPBOX_WEB_HOST', HOST_WWW + WEB_DOMAIN) +API_HOST = os.environ.get("DROPBOX_API_HOST", HOST_API + API_DOMAIN) +API_CONTENT_HOST = os.environ.get("DROPBOX_API_CONTENT_HOST", HOST_CONTENT + API_DOMAIN) +API_NOTIFICATION_HOST = os.environ.get("DROPBOX_API_NOTIFY_HOST", HOST_NOTIFY + API_DOMAIN) +WEB_HOST = os.environ.get("DROPBOX_WEB_HOST", HOST_WWW + WEB_DOMAIN) # This is the default longest time we'll block on receiving data from the server DEFAULT_TIMEOUT = 100 @@ -50,6 +50,7 @@ def init_poolmanager(self, connections, maxsize, block=False, **_): ca_certs=self._ca_certs, ) + def pinned_session(pool_maxsize=8, ca_certs=None): # always verify, use cert bundle if provided @@ -63,7 +64,8 @@ def pinned_session(pool_maxsize=8, ca_certs=None): # urllib3 within requests http_adapter = _SSLAdapter(pool_connections=4, pool_maxsize=pool_maxsize, ca_certs=ca_certs) - _session.mount('https://', http_adapter) + _session.mount("https://", http_adapter) return _session + SSLError = requests.exceptions.SSLError # raised on verification errors diff --git a/dropbox/sharing.py b/dropbox/sharing.py index a2959a63..6c7825d8 100644 --- a/dropbox/sharing.py +++ b/dropbox/sharing.py @@ -20,6 +20,7 @@ from dropbox import users from dropbox import users_common + class AccessInheritance(bb.Union): """ Information about the inheritance policy of a shared folder. @@ -34,7 +35,7 @@ class AccessInheritance(bb.Union): The shared folder does not inherit its members from the parent folder. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition inherit = None # Attribute is overwritten below the class definition @@ -48,7 +49,7 @@ def is_inherit(self): :rtype: bool """ - return self._tag == 'inherit' + return self._tag == "inherit" def is_no_inherit(self): """ @@ -56,7 +57,7 @@ def is_no_inherit(self): :rtype: bool """ - return self._tag == 'no_inherit' + return self._tag == "no_inherit" def is_other(self): """ @@ -64,13 +65,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccessInheritance, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccessInheritance, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccessInheritance_validator = bv.Union(AccessInheritance) + class AccessLevel(bb.Union): """ Defines the access levels for collaborators. @@ -100,7 +105,7 @@ class AccessLevel(bb.Union): user themselves are not a member on the shared folder yet. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition owner = None # Attribute is overwritten below the class definition @@ -122,7 +127,7 @@ def is_owner(self): :rtype: bool """ - return self._tag == 'owner' + return self._tag == "owner" def is_editor(self): """ @@ -130,7 +135,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == 'editor' + return self._tag == "editor" def is_viewer(self): """ @@ -138,7 +143,7 @@ def is_viewer(self): :rtype: bool """ - return self._tag == 'viewer' + return self._tag == "viewer" def is_viewer_no_comment(self): """ @@ -146,7 +151,7 @@ def is_viewer_no_comment(self): :rtype: bool """ - return self._tag == 'viewer_no_comment' + return self._tag == "viewer_no_comment" def is_traverse(self): """ @@ -154,7 +159,7 @@ def is_traverse(self): :rtype: bool """ - return self._tag == 'traverse' + return self._tag == "traverse" def is_no_access(self): """ @@ -162,7 +167,7 @@ def is_no_access(self): :rtype: bool """ - return self._tag == 'no_access' + return self._tag == "no_access" def is_other(self): """ @@ -170,13 +175,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(AccessLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + AccessLevel_validator = bv.Union(AccessLevel) + class AclUpdatePolicy(bb.Union): """ Who can change a shared folder's access control list (ACL). In other words, @@ -193,7 +200,7 @@ class AclUpdatePolicy(bb.Union): on the same team. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition owner = None # Attribute is overwritten below the class definition @@ -207,7 +214,7 @@ def is_owner(self): :rtype: bool """ - return self._tag == 'owner' + return self._tag == "owner" def is_editors(self): """ @@ -215,7 +222,7 @@ def is_editors(self): :rtype: bool """ - return self._tag == 'editors' + return self._tag == "editors" def is_other(self): """ @@ -223,13 +230,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AclUpdatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AclUpdatePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AclUpdatePolicy_validator = bv.Union(AclUpdatePolicy) + class AddFileMemberArgs(bb.Struct): """ Arguments for @@ -258,25 +269,27 @@ class AddFileMemberArgs(bb.Struct): """ __slots__ = [ - '_file_value', - '_members_value', - '_custom_message_value', - '_quiet_value', - '_access_level_value', - '_add_message_as_comment_value', - '_fp_sealed_result_value', + "_file_value", + "_members_value", + "_custom_message_value", + "_quiet_value", + "_access_level_value", + "_add_message_as_comment_value", + "_fp_sealed_result_value", ] _has_required_fields = True - def __init__(self, - file=None, - members=None, - custom_message=None, - quiet=None, - access_level=None, - add_message_as_comment=None, - fp_sealed_result=None): + def __init__( + self, + file=None, + members=None, + custom_message=None, + quiet=None, + access_level=None, + add_message_as_comment=None, + fp_sealed_result=None, + ): self._file_value = bb.NOT_SET self._members_value = bb.NOT_SET self._custom_message_value = bb.NOT_SET @@ -321,10 +334,14 @@ def __init__(self, fp_sealed_result = bb.Attribute("fp_sealed_result", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFileMemberArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddFileMemberArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddFileMemberArgs_validator = bv.Struct(AddFileMemberArgs) + class AddFileMemberError(bb.Union): """ Errors for :meth:`dropbox.dropbox_client.Dropbox.sharing_add_file_member`. @@ -341,7 +358,7 @@ class AddFileMemberError(bb.Union): The current user has been banned for abuse reasons. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition rate_limit = None # Attribute is overwritten below the class definition @@ -360,7 +377,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: AddFileMemberError """ - return cls('user_error', val) + return cls("user_error", val) @classmethod def access_error(cls, val): @@ -371,7 +388,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: AddFileMemberError """ - return cls('access_error', val) + return cls("access_error", val) def is_user_error(self): """ @@ -379,7 +396,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_access_error(self): """ @@ -387,7 +404,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_rate_limit(self): """ @@ -395,7 +412,7 @@ def is_rate_limit(self): :rtype: bool """ - return self._tag == 'rate_limit' + return self._tag == "rate_limit" def is_invalid_comment(self): """ @@ -403,7 +420,7 @@ def is_invalid_comment(self): :rtype: bool """ - return self._tag == 'invalid_comment' + return self._tag == "invalid_comment" def is_banned_member(self): """ @@ -411,7 +428,7 @@ def is_banned_member(self): :rtype: bool """ - return self._tag == 'banned_member' + return self._tag == "banned_member" def is_other(self): """ @@ -419,7 +436,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_user_error(self): """ @@ -442,10 +459,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFileMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddFileMemberError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddFileMemberError_validator = bv.Union(AddFileMemberError) + class AddFolderMemberArg(bb.Struct): """ :ivar AddFolderMemberArg.shared_folder_id: @@ -464,21 +485,23 @@ class AddFolderMemberArg(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', - '_members_value', - '_quiet_value', - '_custom_message_value', - '_fp_sealed_result_value', + "_shared_folder_id_value", + "_members_value", + "_quiet_value", + "_custom_message_value", + "_fp_sealed_result_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - members=None, - quiet=None, - custom_message=None, - fp_sealed_result=None): + def __init__( + self, + shared_folder_id=None, + members=None, + quiet=None, + custom_message=None, + fp_sealed_result=None, + ): self._shared_folder_id_value = bb.NOT_SET self._members_value = bb.NOT_SET self._quiet_value = bb.NOT_SET @@ -511,10 +534,14 @@ def __init__(self, fp_sealed_result = bb.Attribute("fp_sealed_result", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFolderMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddFolderMemberArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddFolderMemberArg_validator = bv.Struct(AddFolderMemberArg) + class AddFolderMemberError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -559,7 +586,7 @@ class AddFolderMemberError(bb.Union): access_error. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition email_unverified = None # Attribute is overwritten below the class definition @@ -590,7 +617,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: AddFolderMemberError """ - return cls('access_error', val) + return cls("access_error", val) @classmethod def bad_member(cls, val): @@ -601,7 +628,7 @@ def bad_member(cls, val): :param AddMemberSelectorError val: :rtype: AddFolderMemberError """ - return cls('bad_member', val) + return cls("bad_member", val) @classmethod def too_many_members(cls, val): @@ -612,7 +639,7 @@ def too_many_members(cls, val): :param int val: :rtype: AddFolderMemberError """ - return cls('too_many_members', val) + return cls("too_many_members", val) @classmethod def too_many_pending_invites(cls, val): @@ -623,7 +650,7 @@ def too_many_pending_invites(cls, val): :param int val: :rtype: AddFolderMemberError """ - return cls('too_many_pending_invites', val) + return cls("too_many_pending_invites", val) def is_access_error(self): """ @@ -631,7 +658,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_email_unverified(self): """ @@ -639,7 +666,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == 'email_unverified' + return self._tag == "email_unverified" def is_banned_member(self): """ @@ -647,7 +674,7 @@ def is_banned_member(self): :rtype: bool """ - return self._tag == 'banned_member' + return self._tag == "banned_member" def is_bad_member(self): """ @@ -655,7 +682,7 @@ def is_bad_member(self): :rtype: bool """ - return self._tag == 'bad_member' + return self._tag == "bad_member" def is_cant_share_outside_team(self): """ @@ -663,7 +690,7 @@ def is_cant_share_outside_team(self): :rtype: bool """ - return self._tag == 'cant_share_outside_team' + return self._tag == "cant_share_outside_team" def is_too_many_members(self): """ @@ -671,7 +698,7 @@ def is_too_many_members(self): :rtype: bool """ - return self._tag == 'too_many_members' + return self._tag == "too_many_members" def is_too_many_pending_invites(self): """ @@ -679,7 +706,7 @@ def is_too_many_pending_invites(self): :rtype: bool """ - return self._tag == 'too_many_pending_invites' + return self._tag == "too_many_pending_invites" def is_rate_limit(self): """ @@ -687,7 +714,7 @@ def is_rate_limit(self): :rtype: bool """ - return self._tag == 'rate_limit' + return self._tag == "rate_limit" def is_too_many_invitees(self): """ @@ -695,7 +722,7 @@ def is_too_many_invitees(self): :rtype: bool """ - return self._tag == 'too_many_invitees' + return self._tag == "too_many_invitees" def is_insufficient_plan(self): """ @@ -703,7 +730,7 @@ def is_insufficient_plan(self): :rtype: bool """ - return self._tag == 'insufficient_plan' + return self._tag == "insufficient_plan" def is_team_folder(self): """ @@ -711,7 +738,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == 'team_folder' + return self._tag == "team_folder" def is_no_permission(self): """ @@ -719,7 +746,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_invalid_shared_folder(self): """ @@ -727,7 +754,7 @@ def is_invalid_shared_folder(self): :rtype: bool """ - return self._tag == 'invalid_shared_folder' + return self._tag == "invalid_shared_folder" def is_other(self): """ @@ -735,7 +762,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -786,10 +813,14 @@ def get_too_many_pending_invites(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFolderMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddFolderMemberError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddFolderMemberError_validator = bv.Union(AddFolderMemberError) + class AddMember(bb.Struct): """ The member and type of access the member should have when added to a shared @@ -803,15 +834,13 @@ class AddMember(bb.Struct): """ __slots__ = [ - '_member_value', - '_access_level_value', + "_member_value", + "_access_level_value", ] _has_required_fields = True - def __init__(self, - member=None, - access_level=None): + def __init__(self, member=None, access_level=None): self._member_value = bb.NOT_SET self._access_level_value = bb.NOT_SET if member is not None: @@ -828,8 +857,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(AddMember, self)._process_custom_annotations(annotation_type, field_path, processor) + AddMember_validator = bv.Struct(AddMember) + class AddMemberSelectorError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -858,7 +889,7 @@ class AddMemberSelectorError(bb.Union): Sharing to a group that is not on the current user's team. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition automatic_group = None # Attribute is overwritten below the class definition @@ -879,7 +910,7 @@ def invalid_dropbox_id(cls, val): :param str val: :rtype: AddMemberSelectorError """ - return cls('invalid_dropbox_id', val) + return cls("invalid_dropbox_id", val) @classmethod def invalid_email(cls, val): @@ -890,7 +921,7 @@ def invalid_email(cls, val): :param str val: :rtype: AddMemberSelectorError """ - return cls('invalid_email', val) + return cls("invalid_email", val) @classmethod def unverified_dropbox_id(cls, val): @@ -901,7 +932,7 @@ def unverified_dropbox_id(cls, val): :param str val: :rtype: AddMemberSelectorError """ - return cls('unverified_dropbox_id', val) + return cls("unverified_dropbox_id", val) def is_automatic_group(self): """ @@ -909,7 +940,7 @@ def is_automatic_group(self): :rtype: bool """ - return self._tag == 'automatic_group' + return self._tag == "automatic_group" def is_invalid_dropbox_id(self): """ @@ -917,7 +948,7 @@ def is_invalid_dropbox_id(self): :rtype: bool """ - return self._tag == 'invalid_dropbox_id' + return self._tag == "invalid_dropbox_id" def is_invalid_email(self): """ @@ -925,7 +956,7 @@ def is_invalid_email(self): :rtype: bool """ - return self._tag == 'invalid_email' + return self._tag == "invalid_email" def is_invalid_group(self): """ @@ -933,7 +964,7 @@ def is_invalid_group(self): :rtype: bool """ - return self._tag == 'invalid_group' + return self._tag == "invalid_group" def is_unverified_dropbox_id(self): """ @@ -941,7 +972,7 @@ def is_unverified_dropbox_id(self): :rtype: bool """ - return self._tag == 'unverified_dropbox_id' + return self._tag == "unverified_dropbox_id" def is_group_deleted(self): """ @@ -949,7 +980,7 @@ def is_group_deleted(self): :rtype: bool """ - return self._tag == 'group_deleted' + return self._tag == "group_deleted" def is_group_not_on_team(self): """ @@ -957,7 +988,7 @@ def is_group_not_on_team(self): :rtype: bool """ - return self._tag == 'group_not_on_team' + return self._tag == "group_not_on_team" def is_other(self): """ @@ -965,7 +996,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_invalid_dropbox_id(self): """ @@ -1006,10 +1037,14 @@ def get_unverified_dropbox_id(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddMemberSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddMemberSelectorError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddMemberSelectorError_validator = bv.Union(AddMemberSelectorError) + class RequestedVisibility(bb.Union): """ The access permission that can be requested by the caller for the shared @@ -1045,7 +1080,7 @@ def is_public(self): :rtype: bool """ - return self._tag == 'public' + return self._tag == "public" def is_team_only(self): """ @@ -1053,7 +1088,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_password(self): """ @@ -1061,13 +1096,17 @@ def is_password(self): :rtype: bool """ - return self._tag == 'password' + return self._tag == "password" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RequestedVisibility, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RequestedVisibility, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RequestedVisibility_validator = bv.Union(RequestedVisibility) + class ResolvedVisibility(RequestedVisibility): """ The actual access permissions values of shared links after taking into @@ -1094,7 +1133,7 @@ class ResolvedVisibility(RequestedVisibility): Only the current user can view this link. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition team_and_password = None # Attribute is overwritten below the class definition @@ -1112,7 +1151,7 @@ def is_team_and_password(self): :rtype: bool """ - return self._tag == 'team_and_password' + return self._tag == "team_and_password" def is_shared_folder_only(self): """ @@ -1120,7 +1159,7 @@ def is_shared_folder_only(self): :rtype: bool """ - return self._tag == 'shared_folder_only' + return self._tag == "shared_folder_only" def is_no_one(self): """ @@ -1128,7 +1167,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == 'no_one' + return self._tag == "no_one" def is_only_you(self): """ @@ -1136,7 +1175,7 @@ def is_only_you(self): :rtype: bool """ - return self._tag == 'only_you' + return self._tag == "only_you" def is_other(self): """ @@ -1144,13 +1183,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResolvedVisibility, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResolvedVisibility, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResolvedVisibility_validator = bv.Union(ResolvedVisibility) + class AlphaResolvedVisibility(ResolvedVisibility): """ check documentation for ResolvedVisibility. @@ -1161,10 +1204,14 @@ class AlphaResolvedVisibility(ResolvedVisibility): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AlphaResolvedVisibility, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AlphaResolvedVisibility, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AlphaResolvedVisibility_validator = bv.Union(AlphaResolvedVisibility) + class AudienceExceptionContentInfo(bb.Struct): """ Information about the content that has a link audience different than that @@ -1175,13 +1222,12 @@ class AudienceExceptionContentInfo(bb.Struct): """ __slots__ = [ - '_name_value', + "_name_value", ] _has_required_fields = True - def __init__(self, - name=None): + def __init__(self, name=None): self._name_value = bb.NOT_SET if name is not None: self.name = name @@ -1190,10 +1236,14 @@ def __init__(self, name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AudienceExceptionContentInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AudienceExceptionContentInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AudienceExceptionContentInfo_validator = bv.Struct(AudienceExceptionContentInfo) + class AudienceExceptions(bb.Struct): """ The total count and truncated list of information of content inside this @@ -1207,15 +1257,13 @@ class AudienceExceptions(bb.Struct): """ __slots__ = [ - '_count_value', - '_exceptions_value', + "_count_value", + "_exceptions_value", ] _has_required_fields = True - def __init__(self, - count=None, - exceptions=None): + def __init__(self, count=None, exceptions=None): self._count_value = bb.NOT_SET self._exceptions_value = bb.NOT_SET if count is not None: @@ -1230,10 +1278,14 @@ def __init__(self, exceptions = bb.Attribute("exceptions") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AudienceExceptions, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AudienceExceptions, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AudienceExceptions_validator = bv.Struct(AudienceExceptions) + class AudienceRestrictingSharedFolder(bb.Struct): """ Information about the shared folder that prevents the link audience for this @@ -1248,17 +1300,14 @@ class AudienceRestrictingSharedFolder(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', - '_name_value', - '_audience_value', + "_shared_folder_id_value", + "_name_value", + "_audience_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - name=None, - audience=None): + def __init__(self, shared_folder_id=None, name=None, audience=None): self._shared_folder_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._audience_value = bb.NOT_SET @@ -1279,10 +1328,14 @@ def __init__(self, audience = bb.Attribute("audience", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AudienceRestrictingSharedFolder, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AudienceRestrictingSharedFolder, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AudienceRestrictingSharedFolder_validator = bv.Struct(AudienceRestrictingSharedFolder) + class ChangeLinkExpirationPolicy(bb.Union): """ Enumerates acceptable values for team's ChangeLinkExpirationPolicy setting. @@ -1292,7 +1345,7 @@ class ChangeLinkExpirationPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition allowed = None # Attribute is overwritten below the class definition @@ -1306,7 +1359,7 @@ def is_allowed(self): :rtype: bool """ - return self._tag == 'allowed' + return self._tag == "allowed" def is_not_allowed(self): """ @@ -1314,7 +1367,7 @@ def is_not_allowed(self): :rtype: bool """ - return self._tag == 'not_allowed' + return self._tag == "not_allowed" def is_other(self): """ @@ -1322,13 +1375,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangeLinkExpirationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ChangeLinkExpirationPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ChangeLinkExpirationPolicy_validator = bv.Union(ChangeLinkExpirationPolicy) + class LinkMetadata(bb.Struct): """ Metadata for a shared link. This can be either a :class:`PathLinkMetadata` @@ -1343,17 +1400,14 @@ class LinkMetadata(bb.Struct): """ __slots__ = [ - '_url_value', - '_visibility_value', - '_expires_value', + "_url_value", + "_visibility_value", + "_expires_value", ] _has_required_fields = True - def __init__(self, - url=None, - visibility=None, - expires=None): + def __init__(self, url=None, visibility=None, expires=None): self._url_value = bb.NOT_SET self._visibility_value = bb.NOT_SET self._expires_value = bb.NOT_SET @@ -1374,33 +1428,35 @@ def __init__(self, expires = bb.Attribute("expires", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkMetadata_validator = bv.StructTree(LinkMetadata) + class CollectionLinkMetadata(LinkMetadata): """ Metadata for a collection-based shared link. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = True - def __init__(self, - url=None, - visibility=None, - expires=None): - super(CollectionLinkMetadata, self).__init__(url, - visibility, - expires) + def __init__(self, url=None, visibility=None, expires=None): + super(CollectionLinkMetadata, self).__init__(url, visibility, expires) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CollectionLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CollectionLinkMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CollectionLinkMetadata_validator = bv.Struct(CollectionLinkMetadata) + class CreateSharedLinkArg(bb.Struct): """ :ivar CreateSharedLinkArg.path: @@ -1414,17 +1470,14 @@ class CreateSharedLinkArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_short_url_value', - '_pending_upload_value', + "_path_value", + "_short_url_value", + "_pending_upload_value", ] _has_required_fields = True - def __init__(self, - path=None, - short_url=None, - pending_upload=None): + def __init__(self, path=None, short_url=None, pending_upload=None): self._path_value = bb.NOT_SET self._short_url_value = bb.NOT_SET self._pending_upload_value = bb.NOT_SET @@ -1445,10 +1498,14 @@ def __init__(self, pending_upload = bb.Attribute("pending_upload", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateSharedLinkArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateSharedLinkArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateSharedLinkArg_validator = bv.Struct(CreateSharedLinkArg) + class CreateSharedLinkError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1456,7 +1513,7 @@ class CreateSharedLinkError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -1469,7 +1526,7 @@ def path(cls, val): :param files.LookupError val: :rtype: CreateSharedLinkError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -1477,7 +1534,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_other(self): """ @@ -1485,7 +1542,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -1498,10 +1555,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateSharedLinkError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateSharedLinkError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateSharedLinkError_validator = bv.Union(CreateSharedLinkError) + class CreateSharedLinkWithSettingsArg(bb.Struct): """ :ivar CreateSharedLinkWithSettingsArg.path: @@ -1511,15 +1572,13 @@ class CreateSharedLinkWithSettingsArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_settings_value', + "_path_value", + "_settings_value", ] _has_required_fields = True - def __init__(self, - path=None, - settings=None): + def __init__(self, path=None, settings=None): self._path_value = bb.NOT_SET self._settings_value = bb.NOT_SET if path is not None: @@ -1534,10 +1593,14 @@ def __init__(self, settings = bb.Attribute("settings", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateSharedLinkWithSettingsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateSharedLinkWithSettingsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateSharedLinkWithSettingsArg_validator = bv.Struct(CreateSharedLinkWithSettingsArg) + class CreateSharedLinkWithSettingsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1593,7 +1656,7 @@ def path(cls, val): :param files.LookupError val: :rtype: CreateSharedLinkWithSettingsError """ - return cls('path', val) + return cls("path", val) @classmethod def shared_link_already_exists(cls, val): @@ -1604,7 +1667,7 @@ def shared_link_already_exists(cls, val): :param SharedLinkAlreadyExistsMetadata val: :rtype: CreateSharedLinkWithSettingsError """ - return cls('shared_link_already_exists', val) + return cls("shared_link_already_exists", val) @classmethod def settings_error(cls, val): @@ -1615,7 +1678,7 @@ def settings_error(cls, val): :param SharedLinkSettingsError val: :rtype: CreateSharedLinkWithSettingsError """ - return cls('settings_error', val) + return cls("settings_error", val) def is_path(self): """ @@ -1623,7 +1686,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_email_not_verified(self): """ @@ -1631,7 +1694,7 @@ def is_email_not_verified(self): :rtype: bool """ - return self._tag == 'email_not_verified' + return self._tag == "email_not_verified" def is_shared_link_already_exists(self): """ @@ -1639,7 +1702,7 @@ def is_shared_link_already_exists(self): :rtype: bool """ - return self._tag == 'shared_link_already_exists' + return self._tag == "shared_link_already_exists" def is_settings_error(self): """ @@ -1647,7 +1710,7 @@ def is_settings_error(self): :rtype: bool """ - return self._tag == 'settings_error' + return self._tag == "settings_error" def is_access_denied(self): """ @@ -1655,7 +1718,7 @@ def is_access_denied(self): :rtype: bool """ - return self._tag == 'access_denied' + return self._tag == "access_denied" def is_banned_member(self): """ @@ -1663,7 +1726,7 @@ def is_banned_member(self): :rtype: bool """ - return self._tag == 'banned_member' + return self._tag == "banned_member" def is_too_many_shared_folders(self): """ @@ -1671,7 +1734,7 @@ def is_too_many_shared_folders(self): :rtype: bool """ - return self._tag == 'too_many_shared_folders' + return self._tag == "too_many_shared_folders" def get_path(self): """ @@ -1713,10 +1776,14 @@ def get_settings_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateSharedLinkWithSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateSharedLinkWithSettingsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateSharedLinkWithSettingsError_validator = bv.Union(CreateSharedLinkWithSettingsError) + class SharedContentLinkMetadataBase(bb.Struct): """ :ivar SharedContentLinkMetadataBase.access_level: @@ -1741,25 +1808,27 @@ class SharedContentLinkMetadataBase(bb.Struct): """ __slots__ = [ - '_access_level_value', - '_audience_options_value', - '_audience_restricting_shared_folder_value', - '_current_audience_value', - '_expiry_value', - '_link_permissions_value', - '_password_protected_value', + "_access_level_value", + "_audience_options_value", + "_audience_restricting_shared_folder_value", + "_current_audience_value", + "_expiry_value", + "_link_permissions_value", + "_password_protected_value", ] _has_required_fields = True - def __init__(self, - audience_options=None, - current_audience=None, - link_permissions=None, - password_protected=None, - access_level=None, - audience_restricting_shared_folder=None, - expiry=None): + def __init__( + self, + audience_options=None, + current_audience=None, + link_permissions=None, + password_protected=None, + access_level=None, + audience_restricting_shared_folder=None, + expiry=None, + ): self._access_level_value = bb.NOT_SET self._audience_options_value = bb.NOT_SET self._audience_restricting_shared_folder_value = bb.NOT_SET @@ -1789,7 +1858,9 @@ def __init__(self, audience_options = bb.Attribute("audience_options") # Instance attribute type: AudienceRestrictingSharedFolder (validator is set below) - audience_restricting_shared_folder = bb.Attribute("audience_restricting_shared_folder", nullable=True, user_defined=True) + audience_restricting_shared_folder = bb.Attribute( + "audience_restricting_shared_folder", nullable=True, user_defined=True + ) # Instance attribute type: LinkAudience (validator is set below) current_audience = bb.Attribute("current_audience", user_defined=True) @@ -1804,42 +1875,53 @@ def __init__(self, password_protected = bb.Attribute("password_protected") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentLinkMetadataBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentLinkMetadataBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentLinkMetadataBase_validator = bv.Struct(SharedContentLinkMetadataBase) + class ExpectedSharedContentLinkMetadata(SharedContentLinkMetadataBase): """ The expected metadata of a shared link for a file or folder when a link is first created for the content. Absent if the link already exists. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = True - def __init__(self, - audience_options=None, - current_audience=None, - link_permissions=None, - password_protected=None, - access_level=None, - audience_restricting_shared_folder=None, - expiry=None): - super(ExpectedSharedContentLinkMetadata, self).__init__(audience_options, - current_audience, - link_permissions, - password_protected, - access_level, - audience_restricting_shared_folder, - expiry) - - def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExpectedSharedContentLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + def __init__( + self, + audience_options=None, + current_audience=None, + link_permissions=None, + password_protected=None, + access_level=None, + audience_restricting_shared_folder=None, + expiry=None, + ): + super(ExpectedSharedContentLinkMetadata, self).__init__( + audience_options, + current_audience, + link_permissions, + password_protected, + access_level, + audience_restricting_shared_folder, + expiry, + ) + + def _process_custom_annotations(self, annotation_type, field_path, processor): + super(ExpectedSharedContentLinkMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExpectedSharedContentLinkMetadata_validator = bv.Struct(ExpectedSharedContentLinkMetadata) + class FileAction(bb.Union): """ Sharing actions that may be taken on files. @@ -1875,7 +1957,7 @@ class FileAction(bb.Union): Create a shared link to a file that allows users to edit the content. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disable_viewer_info = None # Attribute is overwritten below the class definition @@ -1909,7 +1991,7 @@ def is_disable_viewer_info(self): :rtype: bool """ - return self._tag == 'disable_viewer_info' + return self._tag == "disable_viewer_info" def is_edit_contents(self): """ @@ -1917,7 +1999,7 @@ def is_edit_contents(self): :rtype: bool """ - return self._tag == 'edit_contents' + return self._tag == "edit_contents" def is_enable_viewer_info(self): """ @@ -1925,7 +2007,7 @@ def is_enable_viewer_info(self): :rtype: bool """ - return self._tag == 'enable_viewer_info' + return self._tag == "enable_viewer_info" def is_invite_viewer(self): """ @@ -1933,7 +2015,7 @@ def is_invite_viewer(self): :rtype: bool """ - return self._tag == 'invite_viewer' + return self._tag == "invite_viewer" def is_invite_viewer_no_comment(self): """ @@ -1941,7 +2023,7 @@ def is_invite_viewer_no_comment(self): :rtype: bool """ - return self._tag == 'invite_viewer_no_comment' + return self._tag == "invite_viewer_no_comment" def is_invite_editor(self): """ @@ -1949,7 +2031,7 @@ def is_invite_editor(self): :rtype: bool """ - return self._tag == 'invite_editor' + return self._tag == "invite_editor" def is_unshare(self): """ @@ -1957,7 +2039,7 @@ def is_unshare(self): :rtype: bool """ - return self._tag == 'unshare' + return self._tag == "unshare" def is_relinquish_membership(self): """ @@ -1965,7 +2047,7 @@ def is_relinquish_membership(self): :rtype: bool """ - return self._tag == 'relinquish_membership' + return self._tag == "relinquish_membership" def is_share_link(self): """ @@ -1973,7 +2055,7 @@ def is_share_link(self): :rtype: bool """ - return self._tag == 'share_link' + return self._tag == "share_link" def is_create_link(self): """ @@ -1981,7 +2063,7 @@ def is_create_link(self): :rtype: bool """ - return self._tag == 'create_link' + return self._tag == "create_link" def is_create_view_link(self): """ @@ -1989,7 +2071,7 @@ def is_create_view_link(self): :rtype: bool """ - return self._tag == 'create_view_link' + return self._tag == "create_view_link" def is_create_edit_link(self): """ @@ -1997,7 +2079,7 @@ def is_create_edit_link(self): :rtype: bool """ - return self._tag == 'create_edit_link' + return self._tag == "create_edit_link" def is_other(self): """ @@ -2005,13 +2087,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileAction, self)._process_custom_annotations(annotation_type, field_path, processor) + FileAction_validator = bv.Union(FileAction) + class FileErrorResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2029,7 +2113,7 @@ class FileErrorResult(bb.Union): :vartype FileErrorResult.permission_denied_error: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -2042,7 +2126,7 @@ def file_not_found_error(cls, val): :param str val: :rtype: FileErrorResult """ - return cls('file_not_found_error', val) + return cls("file_not_found_error", val) @classmethod def invalid_file_action_error(cls, val): @@ -2053,7 +2137,7 @@ def invalid_file_action_error(cls, val): :param str val: :rtype: FileErrorResult """ - return cls('invalid_file_action_error', val) + return cls("invalid_file_action_error", val) @classmethod def permission_denied_error(cls, val): @@ -2064,7 +2148,7 @@ def permission_denied_error(cls, val): :param str val: :rtype: FileErrorResult """ - return cls('permission_denied_error', val) + return cls("permission_denied_error", val) def is_file_not_found_error(self): """ @@ -2072,7 +2156,7 @@ def is_file_not_found_error(self): :rtype: bool """ - return self._tag == 'file_not_found_error' + return self._tag == "file_not_found_error" def is_invalid_file_action_error(self): """ @@ -2080,7 +2164,7 @@ def is_invalid_file_action_error(self): :rtype: bool """ - return self._tag == 'invalid_file_action_error' + return self._tag == "invalid_file_action_error" def is_permission_denied_error(self): """ @@ -2088,7 +2172,7 @@ def is_permission_denied_error(self): :rtype: bool """ - return self._tag == 'permission_denied_error' + return self._tag == "permission_denied_error" def is_other(self): """ @@ -2096,7 +2180,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_file_not_found_error(self): """ @@ -2135,10 +2219,14 @@ def get_permission_denied_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileErrorResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileErrorResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileErrorResult_validator = bv.Union(FileErrorResult) + class SharedLinkMetadata(bb.Struct): """ The metadata of a shared link. @@ -2167,27 +2255,29 @@ class SharedLinkMetadata(bb.Struct): """ __slots__ = [ - '_url_value', - '_id_value', - '_name_value', - '_expires_value', - '_path_lower_value', - '_link_permissions_value', - '_team_member_info_value', - '_content_owner_team_info_value', + "_url_value", + "_id_value", + "_name_value", + "_expires_value", + "_path_lower_value", + "_link_permissions_value", + "_team_member_info_value", + "_content_owner_team_info_value", ] _has_required_fields = True - def __init__(self, - url=None, - name=None, - link_permissions=None, - id=None, - expires=None, - path_lower=None, - team_member_info=None, - content_owner_team_info=None): + def __init__( + self, + url=None, + name=None, + link_permissions=None, + id=None, + expires=None, + path_lower=None, + team_member_info=None, + content_owner_team_info=None, + ): self._url_value = bb.NOT_SET self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET @@ -2238,10 +2328,14 @@ def __init__(self, content_owner_team_info = bb.Attribute("content_owner_team_info", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkMetadata_validator = bv.StructTree(SharedLinkMetadata) + class FileLinkMetadata(SharedLinkMetadata): """ The metadata of a file shared link. @@ -2263,35 +2357,39 @@ class FileLinkMetadata(SharedLinkMetadata): """ __slots__ = [ - '_client_modified_value', - '_server_modified_value', - '_rev_value', - '_size_value', + "_client_modified_value", + "_server_modified_value", + "_rev_value", + "_size_value", ] _has_required_fields = True - def __init__(self, - url=None, - name=None, - link_permissions=None, - client_modified=None, - server_modified=None, - rev=None, - size=None, - id=None, - expires=None, - path_lower=None, - team_member_info=None, - content_owner_team_info=None): - super(FileLinkMetadata, self).__init__(url, - name, - link_permissions, - id, - expires, - path_lower, - team_member_info, - content_owner_team_info) + def __init__( + self, + url=None, + name=None, + link_permissions=None, + client_modified=None, + server_modified=None, + rev=None, + size=None, + id=None, + expires=None, + path_lower=None, + team_member_info=None, + content_owner_team_info=None, + ): + super(FileLinkMetadata, self).__init__( + url, + name, + link_permissions, + id, + expires, + path_lower, + team_member_info, + content_owner_team_info, + ) self._client_modified_value = bb.NOT_SET self._server_modified_value = bb.NOT_SET self._rev_value = bb.NOT_SET @@ -2318,10 +2416,14 @@ def __init__(self, size = bb.Attribute("size") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLinkMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLinkMetadata_validator = bv.Struct(FileLinkMetadata) + class FileMemberActionError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2342,7 +2444,7 @@ class FileMemberActionError(bb.Union): :vartype FileMemberActionError.no_explicit_access: MemberAccessLevelResult """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_member = None # Attribute is overwritten below the class definition @@ -2359,7 +2461,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: FileMemberActionError """ - return cls('access_error', val) + return cls("access_error", val) @classmethod def no_explicit_access(cls, val): @@ -2370,7 +2472,7 @@ def no_explicit_access(cls, val): :param MemberAccessLevelResult val: :rtype: FileMemberActionError """ - return cls('no_explicit_access', val) + return cls("no_explicit_access", val) def is_invalid_member(self): """ @@ -2378,7 +2480,7 @@ def is_invalid_member(self): :rtype: bool """ - return self._tag == 'invalid_member' + return self._tag == "invalid_member" def is_no_permission(self): """ @@ -2386,7 +2488,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_access_error(self): """ @@ -2394,7 +2496,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_no_explicit_access(self): """ @@ -2402,7 +2504,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == 'no_explicit_access' + return self._tag == "no_explicit_access" def is_other(self): """ @@ -2410,7 +2512,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -2439,10 +2541,14 @@ def get_no_explicit_access(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMemberActionError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileMemberActionError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileMemberActionError_validator = bv.Union(FileMemberActionError) + class FileMemberActionIndividualResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2472,7 +2578,7 @@ def success(cls, val): :param AccessLevel val: :rtype: FileMemberActionIndividualResult """ - return cls('success', val) + return cls("success", val) @classmethod def member_error(cls, val): @@ -2483,7 +2589,7 @@ def member_error(cls, val): :param FileMemberActionError val: :rtype: FileMemberActionIndividualResult """ - return cls('member_error', val) + return cls("member_error", val) def is_success(self): """ @@ -2491,7 +2597,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_member_error(self): """ @@ -2499,7 +2605,7 @@ def is_member_error(self): :rtype: bool """ - return self._tag == 'member_error' + return self._tag == "member_error" def get_success(self): """ @@ -2530,10 +2636,14 @@ def get_member_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMemberActionIndividualResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileMemberActionIndividualResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileMemberActionIndividualResult_validator = bv.Union(FileMemberActionIndividualResult) + class FileMemberActionResult(bb.Struct): """ Per-member result for @@ -2552,19 +2662,15 @@ class FileMemberActionResult(bb.Struct): """ __slots__ = [ - '_member_value', - '_result_value', - '_sckey_sha1_value', - '_invitation_signature_value', + "_member_value", + "_result_value", + "_sckey_sha1_value", + "_invitation_signature_value", ] _has_required_fields = True - def __init__(self, - member=None, - result=None, - sckey_sha1=None, - invitation_signature=None): + def __init__(self, member=None, result=None, sckey_sha1=None, invitation_signature=None): self._member_value = bb.NOT_SET self._result_value = bb.NOT_SET self._sckey_sha1_value = bb.NOT_SET @@ -2591,10 +2697,14 @@ def __init__(self, invitation_signature = bb.Attribute("invitation_signature", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMemberActionResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileMemberActionResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileMemberActionResult_validator = bv.Struct(FileMemberActionResult) + class FileMemberRemoveActionResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2609,7 +2719,7 @@ class FileMemberRemoveActionResult(bb.Union): :vartype FileMemberRemoveActionResult.member_error: FileMemberActionError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -2622,7 +2732,7 @@ def success(cls, val): :param MemberAccessLevelResult val: :rtype: FileMemberRemoveActionResult """ - return cls('success', val) + return cls("success", val) @classmethod def member_error(cls, val): @@ -2633,7 +2743,7 @@ def member_error(cls, val): :param FileMemberActionError val: :rtype: FileMemberRemoveActionResult """ - return cls('member_error', val) + return cls("member_error", val) def is_success(self): """ @@ -2641,7 +2751,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_member_error(self): """ @@ -2649,7 +2759,7 @@ def is_member_error(self): :rtype: bool """ - return self._tag == 'member_error' + return self._tag == "member_error" def is_other(self): """ @@ -2657,7 +2767,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -2684,10 +2794,14 @@ def get_member_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMemberRemoveActionResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileMemberRemoveActionResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileMemberRemoveActionResult_validator = bv.Union(FileMemberRemoveActionResult) + class FilePermission(bb.Struct): """ Whether the user is allowed to take the sharing action on the file. @@ -2702,17 +2816,14 @@ class FilePermission(bb.Struct): """ __slots__ = [ - '_action_value', - '_allow_value', - '_reason_value', + "_action_value", + "_allow_value", + "_reason_value", ] _has_required_fields = True - def __init__(self, - action=None, - allow=None, - reason=None): + def __init__(self, action=None, allow=None, reason=None): self._action_value = bb.NOT_SET self._allow_value = bb.NOT_SET self._reason_value = bb.NOT_SET @@ -2733,10 +2844,14 @@ def __init__(self, reason = bb.Attribute("reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePermission, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FilePermission, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FilePermission_validator = bv.Struct(FilePermission) + class FolderAction(bb.Union): """ Actions that may be taken on shared folders. @@ -2782,7 +2897,7 @@ class FolderAction(bb.Union): Set whether the folder inherits permissions from its parent. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition change_options = None # Attribute is overwritten below the class definition @@ -2824,7 +2939,7 @@ def is_change_options(self): :rtype: bool """ - return self._tag == 'change_options' + return self._tag == "change_options" def is_disable_viewer_info(self): """ @@ -2832,7 +2947,7 @@ def is_disable_viewer_info(self): :rtype: bool """ - return self._tag == 'disable_viewer_info' + return self._tag == "disable_viewer_info" def is_edit_contents(self): """ @@ -2840,7 +2955,7 @@ def is_edit_contents(self): :rtype: bool """ - return self._tag == 'edit_contents' + return self._tag == "edit_contents" def is_enable_viewer_info(self): """ @@ -2848,7 +2963,7 @@ def is_enable_viewer_info(self): :rtype: bool """ - return self._tag == 'enable_viewer_info' + return self._tag == "enable_viewer_info" def is_invite_editor(self): """ @@ -2856,7 +2971,7 @@ def is_invite_editor(self): :rtype: bool """ - return self._tag == 'invite_editor' + return self._tag == "invite_editor" def is_invite_viewer(self): """ @@ -2864,7 +2979,7 @@ def is_invite_viewer(self): :rtype: bool """ - return self._tag == 'invite_viewer' + return self._tag == "invite_viewer" def is_invite_viewer_no_comment(self): """ @@ -2872,7 +2987,7 @@ def is_invite_viewer_no_comment(self): :rtype: bool """ - return self._tag == 'invite_viewer_no_comment' + return self._tag == "invite_viewer_no_comment" def is_relinquish_membership(self): """ @@ -2880,7 +2995,7 @@ def is_relinquish_membership(self): :rtype: bool """ - return self._tag == 'relinquish_membership' + return self._tag == "relinquish_membership" def is_unmount(self): """ @@ -2888,7 +3003,7 @@ def is_unmount(self): :rtype: bool """ - return self._tag == 'unmount' + return self._tag == "unmount" def is_unshare(self): """ @@ -2896,7 +3011,7 @@ def is_unshare(self): :rtype: bool """ - return self._tag == 'unshare' + return self._tag == "unshare" def is_leave_a_copy(self): """ @@ -2904,7 +3019,7 @@ def is_leave_a_copy(self): :rtype: bool """ - return self._tag == 'leave_a_copy' + return self._tag == "leave_a_copy" def is_share_link(self): """ @@ -2912,7 +3027,7 @@ def is_share_link(self): :rtype: bool """ - return self._tag == 'share_link' + return self._tag == "share_link" def is_create_link(self): """ @@ -2920,7 +3035,7 @@ def is_create_link(self): :rtype: bool """ - return self._tag == 'create_link' + return self._tag == "create_link" def is_create_view_link(self): """ @@ -2928,7 +3043,7 @@ def is_create_view_link(self): :rtype: bool """ - return self._tag == 'create_view_link' + return self._tag == "create_view_link" def is_create_edit_link(self): """ @@ -2936,7 +3051,7 @@ def is_create_edit_link(self): :rtype: bool """ - return self._tag == 'create_edit_link' + return self._tag == "create_edit_link" def is_set_access_inheritance(self): """ @@ -2944,7 +3059,7 @@ def is_set_access_inheritance(self): :rtype: bool """ - return self._tag == 'set_access_inheritance' + return self._tag == "set_access_inheritance" def is_other(self): """ @@ -2952,46 +3067,57 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderAction, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderAction, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderAction_validator = bv.Union(FolderAction) + class FolderLinkMetadata(SharedLinkMetadata): """ The metadata of a folder shared link. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = True - def __init__(self, - url=None, - name=None, - link_permissions=None, - id=None, - expires=None, - path_lower=None, - team_member_info=None, - content_owner_team_info=None): - super(FolderLinkMetadata, self).__init__(url, - name, - link_permissions, - id, - expires, - path_lower, - team_member_info, - content_owner_team_info) - - def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + def __init__( + self, + url=None, + name=None, + link_permissions=None, + id=None, + expires=None, + path_lower=None, + team_member_info=None, + content_owner_team_info=None, + ): + super(FolderLinkMetadata, self).__init__( + url, + name, + link_permissions, + id, + expires, + path_lower, + team_member_info, + content_owner_team_info, + ) + + def _process_custom_annotations(self, annotation_type, field_path, processor): + super(FolderLinkMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderLinkMetadata_validator = bv.Struct(FolderLinkMetadata) + class FolderPermission(bb.Struct): """ Whether the user is allowed to take the action on the shared folder. @@ -3006,17 +3132,14 @@ class FolderPermission(bb.Struct): """ __slots__ = [ - '_action_value', - '_allow_value', - '_reason_value', + "_action_value", + "_allow_value", + "_reason_value", ] _has_required_fields = True - def __init__(self, - action=None, - allow=None, - reason=None): + def __init__(self, action=None, allow=None, reason=None): self._action_value = bb.NOT_SET self._allow_value = bb.NOT_SET self._reason_value = bb.NOT_SET @@ -3037,10 +3160,14 @@ def __init__(self, reason = bb.Attribute("reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderPermission, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderPermission, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderPermission_validator = bv.Struct(FolderPermission) + class FolderPolicy(bb.Struct): """ A set of policies governing membership and privileges for a shared folder. @@ -3063,21 +3190,23 @@ class FolderPolicy(bb.Struct): """ __slots__ = [ - '_member_policy_value', - '_resolved_member_policy_value', - '_acl_update_policy_value', - '_shared_link_policy_value', - '_viewer_info_policy_value', + "_member_policy_value", + "_resolved_member_policy_value", + "_acl_update_policy_value", + "_shared_link_policy_value", + "_viewer_info_policy_value", ] _has_required_fields = True - def __init__(self, - acl_update_policy=None, - shared_link_policy=None, - member_policy=None, - resolved_member_policy=None, - viewer_info_policy=None): + def __init__( + self, + acl_update_policy=None, + shared_link_policy=None, + member_policy=None, + resolved_member_policy=None, + viewer_info_policy=None, + ): self._member_policy_value = bb.NOT_SET self._resolved_member_policy_value = bb.NOT_SET self._acl_update_policy_value = bb.NOT_SET @@ -3098,7 +3227,9 @@ def __init__(self, member_policy = bb.Attribute("member_policy", nullable=True, user_defined=True) # Instance attribute type: MemberPolicy (validator is set below) - resolved_member_policy = bb.Attribute("resolved_member_policy", nullable=True, user_defined=True) + resolved_member_policy = bb.Attribute( + "resolved_member_policy", nullable=True, user_defined=True + ) # Instance attribute type: AclUpdatePolicy (validator is set below) acl_update_policy = bb.Attribute("acl_update_policy", user_defined=True) @@ -3110,10 +3241,14 @@ def __init__(self, viewer_info_policy = bb.Attribute("viewer_info_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderPolicy_validator = bv.Struct(FolderPolicy) + class GetFileMetadataArg(bb.Struct): """ Arguments of @@ -3128,15 +3263,13 @@ class GetFileMetadataArg(bb.Struct): """ __slots__ = [ - '_file_value', - '_actions_value', + "_file_value", + "_actions_value", ] _has_required_fields = True - def __init__(self, - file=None, - actions=None): + def __init__(self, file=None, actions=None): self._file_value = bb.NOT_SET self._actions_value = bb.NOT_SET if file is not None: @@ -3151,10 +3284,14 @@ def __init__(self, actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetFileMetadataArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetFileMetadataArg_validator = bv.Struct(GetFileMetadataArg) + class GetFileMetadataBatchArg(bb.Struct): """ Arguments of @@ -3169,15 +3306,13 @@ class GetFileMetadataBatchArg(bb.Struct): """ __slots__ = [ - '_files_value', - '_actions_value', + "_files_value", + "_actions_value", ] _has_required_fields = True - def __init__(self, - files=None, - actions=None): + def __init__(self, files=None, actions=None): self._files_value = bb.NOT_SET self._actions_value = bb.NOT_SET if files is not None: @@ -3192,10 +3327,14 @@ def __init__(self, actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetFileMetadataBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetFileMetadataBatchArg_validator = bv.Struct(GetFileMetadataBatchArg) + class GetFileMetadataBatchResult(bb.Struct): """ Per file results of @@ -3209,15 +3348,13 @@ class GetFileMetadataBatchResult(bb.Struct): """ __slots__ = [ - '_file_value', - '_result_value', + "_file_value", + "_result_value", ] _has_required_fields = True - def __init__(self, - file=None, - result=None): + def __init__(self, file=None, result=None): self._file_value = bb.NOT_SET self._result_value = bb.NOT_SET if file is not None: @@ -3232,10 +3369,14 @@ def __init__(self, result = bb.Attribute("result", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetFileMetadataBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetFileMetadataBatchResult_validator = bv.Struct(GetFileMetadataBatchResult) + class GetFileMetadataError(bb.Union): """ Error result for @@ -3246,7 +3387,7 @@ class GetFileMetadataError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -3259,7 +3400,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: GetFileMetadataError """ - return cls('user_error', val) + return cls("user_error", val) @classmethod def access_error(cls, val): @@ -3270,7 +3411,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: GetFileMetadataError """ - return cls('access_error', val) + return cls("access_error", val) def is_user_error(self): """ @@ -3278,7 +3419,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_access_error(self): """ @@ -3286,7 +3427,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_other(self): """ @@ -3294,7 +3435,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_user_error(self): """ @@ -3317,10 +3458,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetFileMetadataError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetFileMetadataError_validator = bv.Union(GetFileMetadataError) + class GetFileMetadataIndividualResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3335,7 +3480,7 @@ class GetFileMetadataIndividualResult(bb.Union): :vartype GetFileMetadataIndividualResult.access_error: SharingFileAccessError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -3348,7 +3493,7 @@ def metadata(cls, val): :param SharedFileMetadata val: :rtype: GetFileMetadataIndividualResult """ - return cls('metadata', val) + return cls("metadata", val) @classmethod def access_error(cls, val): @@ -3359,7 +3504,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: GetFileMetadataIndividualResult """ - return cls('access_error', val) + return cls("access_error", val) def is_metadata(self): """ @@ -3367,7 +3512,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == 'metadata' + return self._tag == "metadata" def is_access_error(self): """ @@ -3375,7 +3520,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_other(self): """ @@ -3383,7 +3528,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_metadata(self): """ @@ -3410,10 +3555,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetFileMetadataIndividualResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetFileMetadataIndividualResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetFileMetadataIndividualResult_validator = bv.Union(GetFileMetadataIndividualResult) + class GetMetadataArgs(bb.Struct): """ :ivar GetMetadataArgs.shared_folder_id: @@ -3426,15 +3575,13 @@ class GetMetadataArgs(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', - '_actions_value', + "_shared_folder_id_value", + "_actions_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - actions=None): + def __init__(self, shared_folder_id=None, actions=None): self._shared_folder_id_value = bb.NOT_SET self._actions_value = bb.NOT_SET if shared_folder_id is not None: @@ -3449,10 +3596,14 @@ def __init__(self, actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMetadataArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMetadataArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMetadataArgs_validator = bv.Struct(GetMetadataArgs) + class SharedLinkError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3471,7 +3622,7 @@ class SharedLinkError(bb.Union): fields. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition shared_link_not_found = None # Attribute is overwritten below the class definition @@ -3489,7 +3640,7 @@ def is_shared_link_not_found(self): :rtype: bool """ - return self._tag == 'shared_link_not_found' + return self._tag == "shared_link_not_found" def is_shared_link_access_denied(self): """ @@ -3497,7 +3648,7 @@ def is_shared_link_access_denied(self): :rtype: bool """ - return self._tag == 'shared_link_access_denied' + return self._tag == "shared_link_access_denied" def is_unsupported_link_type(self): """ @@ -3505,7 +3656,7 @@ def is_unsupported_link_type(self): :rtype: bool """ - return self._tag == 'unsupported_link_type' + return self._tag == "unsupported_link_type" def is_unsupported_parameter_field(self): """ @@ -3513,7 +3664,7 @@ def is_unsupported_parameter_field(self): :rtype: bool """ - return self._tag == 'unsupported_parameter_field' + return self._tag == "unsupported_parameter_field" def is_other(self): """ @@ -3521,13 +3672,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkError_validator = bv.Union(SharedLinkError) + class GetSharedLinkFileError(SharedLinkError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3547,13 +3702,17 @@ def is_shared_link_is_directory(self): :rtype: bool """ - return self._tag == 'shared_link_is_directory' + return self._tag == "shared_link_is_directory" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinkFileError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetSharedLinkFileError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetSharedLinkFileError_validator = bv.Union(GetSharedLinkFileError) + class GetSharedLinkMetadataArg(bb.Struct): """ :ivar GetSharedLinkMetadataArg.url: @@ -3567,17 +3726,14 @@ class GetSharedLinkMetadataArg(bb.Struct): """ __slots__ = [ - '_url_value', - '_path_value', - '_link_password_value', + "_url_value", + "_path_value", + "_link_password_value", ] _has_required_fields = True - def __init__(self, - url=None, - path=None, - link_password=None): + def __init__(self, url=None, path=None, link_password=None): self._url_value = bb.NOT_SET self._path_value = bb.NOT_SET self._link_password_value = bb.NOT_SET @@ -3598,10 +3754,14 @@ def __init__(self, link_password = bb.Attribute("link_password", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinkMetadataArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetSharedLinkMetadataArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetSharedLinkMetadataArg_validator = bv.Struct(GetSharedLinkMetadataArg) + class GetSharedLinksArg(bb.Struct): """ :ivar GetSharedLinksArg.path: @@ -3610,13 +3770,12 @@ class GetSharedLinksArg(bb.Struct): """ __slots__ = [ - '_path_value', + "_path_value", ] _has_required_fields = False - def __init__(self, - path=None): + def __init__(self, path=None): self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -3625,10 +3784,14 @@ def __init__(self, path = bb.Attribute("path", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinksArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetSharedLinksArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetSharedLinksArg_validator = bv.Struct(GetSharedLinksArg) + class GetSharedLinksError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3636,7 +3799,7 @@ class GetSharedLinksError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -3649,7 +3812,7 @@ def path(cls, val): :param Optional[str] val: :rtype: GetSharedLinksError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -3657,7 +3820,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_other(self): """ @@ -3665,7 +3828,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -3678,10 +3841,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinksError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetSharedLinksError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetSharedLinksError_validator = bv.Union(GetSharedLinksError) + class GetSharedLinksResult(bb.Struct): """ :ivar GetSharedLinksResult.links: @@ -3689,13 +3856,12 @@ class GetSharedLinksResult(bb.Struct): """ __slots__ = [ - '_links_value', + "_links_value", ] _has_required_fields = True - def __init__(self, - links=None): + def __init__(self, links=None): self._links_value = bb.NOT_SET if links is not None: self.links = links @@ -3704,10 +3870,14 @@ def __init__(self, links = bb.Attribute("links") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetSharedLinksResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetSharedLinksResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetSharedLinksResult_validator = bv.Struct(GetSharedLinksResult) + class GroupInfo(team_common.GroupSummary): """ The information about a group. Groups is a way to manage a list of users who @@ -3724,29 +3894,29 @@ class GroupInfo(team_common.GroupSummary): """ __slots__ = [ - '_group_type_value', - '_is_member_value', - '_is_owner_value', - '_same_team_value', + "_group_type_value", + "_is_member_value", + "_is_owner_value", + "_same_team_value", ] _has_required_fields = True - def __init__(self, - group_name=None, - group_id=None, - group_management_type=None, - group_type=None, - is_member=None, - is_owner=None, - same_team=None, - group_external_id=None, - member_count=None): - super(GroupInfo, self).__init__(group_name, - group_id, - group_management_type, - group_external_id, - member_count) + def __init__( + self, + group_name=None, + group_id=None, + group_management_type=None, + group_type=None, + is_member=None, + is_owner=None, + same_team=None, + group_external_id=None, + member_count=None, + ): + super(GroupInfo, self).__init__( + group_name, group_id, group_management_type, group_external_id, member_count + ) self._group_type_value = bb.NOT_SET self._is_member_value = bb.NOT_SET self._is_owner_value = bb.NOT_SET @@ -3775,8 +3945,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(GroupInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + GroupInfo_validator = bv.Struct(GroupInfo) + class MembershipInfo(bb.Struct): """ The information about a member of the shared content. @@ -3794,19 +3966,15 @@ class MembershipInfo(bb.Struct): """ __slots__ = [ - '_access_type_value', - '_permissions_value', - '_initials_value', - '_is_inherited_value', + "_access_type_value", + "_permissions_value", + "_initials_value", + "_is_inherited_value", ] _has_required_fields = True - def __init__(self, - access_type=None, - permissions=None, - initials=None, - is_inherited=None): + def __init__(self, access_type=None, permissions=None, initials=None, is_inherited=None): self._access_type_value = bb.NOT_SET self._permissions_value = bb.NOT_SET self._initials_value = bb.NOT_SET @@ -3833,10 +4001,14 @@ def __init__(self, is_inherited = bb.Attribute("is_inherited") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembershipInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembershipInfo_validator = bv.Struct(MembershipInfo) + class GroupMembershipInfo(MembershipInfo): """ The information about a group member of the shared content. @@ -3846,21 +4018,20 @@ class GroupMembershipInfo(MembershipInfo): """ __slots__ = [ - '_group_value', + "_group_value", ] _has_required_fields = True - def __init__(self, - access_type=None, - group=None, - permissions=None, - initials=None, - is_inherited=None): - super(GroupMembershipInfo, self).__init__(access_type, - permissions, - initials, - is_inherited) + def __init__( + self, + access_type=None, + group=None, + permissions=None, + initials=None, + is_inherited=None, + ): + super(GroupMembershipInfo, self).__init__(access_type, permissions, initials, is_inherited) self._group_value = bb.NOT_SET if group is not None: self.group = group @@ -3869,10 +4040,14 @@ def __init__(self, group = bb.Attribute("group", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMembershipInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMembershipInfo_validator = bv.Struct(GroupMembershipInfo) + class InsufficientPlan(bb.Struct): """ :ivar InsufficientPlan.message: @@ -3885,15 +4060,13 @@ class InsufficientPlan(bb.Struct): """ __slots__ = [ - '_message_value', - '_upsell_url_value', + "_message_value", + "_upsell_url_value", ] _has_required_fields = True - def __init__(self, - message=None, - upsell_url=None): + def __init__(self, message=None, upsell_url=None): self._message_value = bb.NOT_SET self._upsell_url_value = bb.NOT_SET if message is not None: @@ -3908,10 +4081,14 @@ def __init__(self, upsell_url = bb.Attribute("upsell_url", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InsufficientPlan, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InsufficientPlan, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + InsufficientPlan_validator = bv.Struct(InsufficientPlan) + class InsufficientQuotaAmounts(bb.Struct): """ :ivar InsufficientQuotaAmounts.space_needed: @@ -3923,17 +4100,14 @@ class InsufficientQuotaAmounts(bb.Struct): """ __slots__ = [ - '_space_needed_value', - '_space_shortage_value', - '_space_left_value', + "_space_needed_value", + "_space_shortage_value", + "_space_left_value", ] _has_required_fields = True - def __init__(self, - space_needed=None, - space_shortage=None, - space_left=None): + def __init__(self, space_needed=None, space_shortage=None, space_left=None): self._space_needed_value = bb.NOT_SET self._space_shortage_value = bb.NOT_SET self._space_left_value = bb.NOT_SET @@ -3954,10 +4128,14 @@ def __init__(self, space_left = bb.Attribute("space_left") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InsufficientQuotaAmounts, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InsufficientQuotaAmounts, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + InsufficientQuotaAmounts_validator = bv.Struct(InsufficientQuotaAmounts) + class InviteeInfo(bb.Union): """ Information about the recipient of a shared content invitation. @@ -3971,7 +4149,7 @@ class InviteeInfo(bb.Union): :vartype InviteeInfo.email: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -3984,7 +4162,7 @@ def email(cls, val): :param str val: :rtype: InviteeInfo """ - return cls('email', val) + return cls("email", val) def is_email(self): """ @@ -3992,7 +4170,7 @@ def is_email(self): :rtype: bool """ - return self._tag == 'email' + return self._tag == "email" def is_other(self): """ @@ -4000,7 +4178,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_email(self): """ @@ -4017,8 +4195,10 @@ def get_email(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(InviteeInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + InviteeInfo_validator = bv.Union(InviteeInfo) + class InviteeMembershipInfo(MembershipInfo): """ Information about an invited member of a shared content. @@ -4030,23 +4210,24 @@ class InviteeMembershipInfo(MembershipInfo): """ __slots__ = [ - '_invitee_value', - '_user_value', + "_invitee_value", + "_user_value", ] _has_required_fields = True - def __init__(self, - access_type=None, - invitee=None, - permissions=None, - initials=None, - is_inherited=None, - user=None): - super(InviteeMembershipInfo, self).__init__(access_type, - permissions, - initials, - is_inherited) + def __init__( + self, + access_type=None, + invitee=None, + permissions=None, + initials=None, + is_inherited=None, + user=None, + ): + super(InviteeMembershipInfo, self).__init__( + access_type, permissions, initials, is_inherited + ) self._invitee_value = bb.NOT_SET self._user_value = bb.NOT_SET if invitee is not None: @@ -4061,10 +4242,14 @@ def __init__(self, user = bb.Attribute("user", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteeMembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InviteeMembershipInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + InviteeMembershipInfo_validator = bv.Struct(InviteeMembershipInfo) + class JobError(bb.Union): """ Error occurred while performing an asynchronous job from @@ -4091,7 +4276,7 @@ class JobError(bb.Union): :vartype JobError.relinquish_folder_membership_error: RelinquishFolderMembershipError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -4104,7 +4289,7 @@ def unshare_folder_error(cls, val): :param UnshareFolderError val: :rtype: JobError """ - return cls('unshare_folder_error', val) + return cls("unshare_folder_error", val) @classmethod def remove_folder_member_error(cls, val): @@ -4115,7 +4300,7 @@ def remove_folder_member_error(cls, val): :param RemoveFolderMemberError val: :rtype: JobError """ - return cls('remove_folder_member_error', val) + return cls("remove_folder_member_error", val) @classmethod def relinquish_folder_membership_error(cls, val): @@ -4126,7 +4311,7 @@ def relinquish_folder_membership_error(cls, val): :param RelinquishFolderMembershipError val: :rtype: JobError """ - return cls('relinquish_folder_membership_error', val) + return cls("relinquish_folder_membership_error", val) def is_unshare_folder_error(self): """ @@ -4134,7 +4319,7 @@ def is_unshare_folder_error(self): :rtype: bool """ - return self._tag == 'unshare_folder_error' + return self._tag == "unshare_folder_error" def is_remove_folder_member_error(self): """ @@ -4142,7 +4327,7 @@ def is_remove_folder_member_error(self): :rtype: bool """ - return self._tag == 'remove_folder_member_error' + return self._tag == "remove_folder_member_error" def is_relinquish_folder_membership_error(self): """ @@ -4150,7 +4335,7 @@ def is_relinquish_folder_membership_error(self): :rtype: bool """ - return self._tag == 'relinquish_folder_membership_error' + return self._tag == "relinquish_folder_membership_error" def is_other(self): """ @@ -4158,7 +4343,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_unshare_folder_error(self): """ @@ -4204,8 +4389,10 @@ def get_relinquish_folder_membership_error(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(JobError, self)._process_custom_annotations(annotation_type, field_path, processor) + JobError_validator = bv.Union(JobError) + class JobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4231,7 +4418,7 @@ def failed(cls, val): :param JobError val: :rtype: JobStatus """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -4239,7 +4426,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -4247,7 +4434,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def get_failed(self): """ @@ -4264,8 +4451,10 @@ def get_failed(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(JobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + JobStatus_validator = bv.Union(JobStatus) + class LinkAccessLevel(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4278,7 +4467,7 @@ class LinkAccessLevel(bb.Union): Users who use the link can edit, view and comment on the content. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition viewer = None # Attribute is overwritten below the class definition @@ -4292,7 +4481,7 @@ def is_viewer(self): :rtype: bool """ - return self._tag == 'viewer' + return self._tag == "viewer" def is_editor(self): """ @@ -4300,7 +4489,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == 'editor' + return self._tag == "editor" def is_other(self): """ @@ -4308,13 +4497,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkAccessLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkAccessLevel, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkAccessLevel_validator = bv.Union(LinkAccessLevel) + class LinkAction(bb.Union): """ Actions that can be performed on a link. @@ -4337,7 +4530,7 @@ class LinkAction(bb.Union): Create or modify the password of the link. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition change_access_level = None # Attribute is overwritten below the class definition @@ -4359,7 +4552,7 @@ def is_change_access_level(self): :rtype: bool """ - return self._tag == 'change_access_level' + return self._tag == "change_access_level" def is_change_audience(self): """ @@ -4367,7 +4560,7 @@ def is_change_audience(self): :rtype: bool """ - return self._tag == 'change_audience' + return self._tag == "change_audience" def is_remove_expiry(self): """ @@ -4375,7 +4568,7 @@ def is_remove_expiry(self): :rtype: bool """ - return self._tag == 'remove_expiry' + return self._tag == "remove_expiry" def is_remove_password(self): """ @@ -4383,7 +4576,7 @@ def is_remove_password(self): :rtype: bool """ - return self._tag == 'remove_password' + return self._tag == "remove_password" def is_set_expiry(self): """ @@ -4391,7 +4584,7 @@ def is_set_expiry(self): :rtype: bool """ - return self._tag == 'set_expiry' + return self._tag == "set_expiry" def is_set_password(self): """ @@ -4399,7 +4592,7 @@ def is_set_password(self): :rtype: bool """ - return self._tag == 'set_password' + return self._tag == "set_password" def is_other(self): """ @@ -4407,13 +4600,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(LinkAction, self)._process_custom_annotations(annotation_type, field_path, processor) + LinkAction_validator = bv.Union(LinkAction) + class LinkAudience(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4436,7 +4631,7 @@ class LinkAudience(bb.Union): Field is deprecated. Link is accessible only by members of the content. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition public = None # Attribute is overwritten below the class definition @@ -4456,7 +4651,7 @@ def is_public(self): :rtype: bool """ - return self._tag == 'public' + return self._tag == "public" def is_team(self): """ @@ -4464,7 +4659,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_no_one(self): """ @@ -4472,7 +4667,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == 'no_one' + return self._tag == "no_one" def is_password(self): """ @@ -4480,7 +4675,7 @@ def is_password(self): :rtype: bool """ - return self._tag == 'password' + return self._tag == "password" def is_members(self): """ @@ -4488,7 +4683,7 @@ def is_members(self): :rtype: bool """ - return self._tag == 'members' + return self._tag == "members" def is_other(self): """ @@ -4496,13 +4691,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkAudience, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkAudience, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkAudience_validator = bv.Union(LinkAudience) + class VisibilityPolicyDisallowedReason(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4526,7 +4725,7 @@ class VisibilityPolicyDisallowedReason(bb.Union): The user does not have permission. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition delete_and_recreate = None # Attribute is overwritten below the class definition @@ -4548,7 +4747,7 @@ def is_delete_and_recreate(self): :rtype: bool """ - return self._tag == 'delete_and_recreate' + return self._tag == "delete_and_recreate" def is_restricted_by_shared_folder(self): """ @@ -4556,7 +4755,7 @@ def is_restricted_by_shared_folder(self): :rtype: bool """ - return self._tag == 'restricted_by_shared_folder' + return self._tag == "restricted_by_shared_folder" def is_restricted_by_team(self): """ @@ -4564,7 +4763,7 @@ def is_restricted_by_team(self): :rtype: bool """ - return self._tag == 'restricted_by_team' + return self._tag == "restricted_by_team" def is_user_not_on_team(self): """ @@ -4572,7 +4771,7 @@ def is_user_not_on_team(self): :rtype: bool """ - return self._tag == 'user_not_on_team' + return self._tag == "user_not_on_team" def is_user_account_type(self): """ @@ -4580,7 +4779,7 @@ def is_user_account_type(self): :rtype: bool """ - return self._tag == 'user_account_type' + return self._tag == "user_account_type" def is_permission_denied(self): """ @@ -4588,7 +4787,7 @@ def is_permission_denied(self): :rtype: bool """ - return self._tag == 'permission_denied' + return self._tag == "permission_denied" def is_other(self): """ @@ -4596,13 +4795,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(VisibilityPolicyDisallowedReason, self)._process_custom_annotations(annotation_type, field_path, processor) + super(VisibilityPolicyDisallowedReason, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + VisibilityPolicyDisallowedReason_validator = bv.Union(VisibilityPolicyDisallowedReason) + class LinkAudienceDisallowedReason(VisibilityPolicyDisallowedReason): """ check documentation for VisibilityPolicyDisallowedReason. @@ -4613,10 +4816,14 @@ class LinkAudienceDisallowedReason(VisibilityPolicyDisallowedReason): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkAudienceDisallowedReason, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkAudienceDisallowedReason, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkAudienceDisallowedReason_validator = bv.Union(LinkAudienceDisallowedReason) + class LinkAudienceOption(bb.Struct): """ :ivar LinkAudienceOption.audience: @@ -4629,17 +4836,14 @@ class LinkAudienceOption(bb.Struct): """ __slots__ = [ - '_audience_value', - '_allowed_value', - '_disallowed_reason_value', + "_audience_value", + "_allowed_value", + "_disallowed_reason_value", ] _has_required_fields = True - def __init__(self, - audience=None, - allowed=None, - disallowed_reason=None): + def __init__(self, audience=None, allowed=None, disallowed_reason=None): self._audience_value = bb.NOT_SET self._allowed_value = bb.NOT_SET self._disallowed_reason_value = bb.NOT_SET @@ -4660,10 +4864,14 @@ def __init__(self, disallowed_reason = bb.Attribute("disallowed_reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkAudienceOption, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkAudienceOption, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkAudienceOption_validator = bv.Struct(LinkAudienceOption) + class LinkExpiry(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4677,7 +4885,7 @@ class LinkExpiry(bb.Union): :vartype LinkExpiry.set_expiry: datetime.datetime """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition remove_expiry = None # Attribute is overwritten below the class definition @@ -4692,7 +4900,7 @@ def set_expiry(cls, val): :param datetime.datetime val: :rtype: LinkExpiry """ - return cls('set_expiry', val) + return cls("set_expiry", val) def is_remove_expiry(self): """ @@ -4700,7 +4908,7 @@ def is_remove_expiry(self): :rtype: bool """ - return self._tag == 'remove_expiry' + return self._tag == "remove_expiry" def is_set_expiry(self): """ @@ -4708,7 +4916,7 @@ def is_set_expiry(self): :rtype: bool """ - return self._tag == 'set_expiry' + return self._tag == "set_expiry" def is_other(self): """ @@ -4716,7 +4924,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_set_expiry(self): """ @@ -4733,8 +4941,10 @@ def get_set_expiry(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(LinkExpiry, self)._process_custom_annotations(annotation_type, field_path, processor) + LinkExpiry_validator = bv.Union(LinkExpiry) + class LinkPassword(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4748,7 +4958,7 @@ class LinkPassword(bb.Union): :vartype LinkPassword.set_password: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition remove_password = None # Attribute is overwritten below the class definition @@ -4763,7 +4973,7 @@ def set_password(cls, val): :param str val: :rtype: LinkPassword """ - return cls('set_password', val) + return cls("set_password", val) def is_remove_password(self): """ @@ -4771,7 +4981,7 @@ def is_remove_password(self): :rtype: bool """ - return self._tag == 'remove_password' + return self._tag == "remove_password" def is_set_password(self): """ @@ -4779,7 +4989,7 @@ def is_set_password(self): :rtype: bool """ - return self._tag == 'set_password' + return self._tag == "set_password" def is_other(self): """ @@ -4787,7 +4997,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_set_password(self): """ @@ -4802,27 +5012,28 @@ def get_set_password(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkPassword, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkPassword, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkPassword_validator = bv.Union(LinkPassword) + class LinkPermission(bb.Struct): """ Permissions for actions that can be performed on a link. """ __slots__ = [ - '_action_value', - '_allow_value', - '_reason_value', + "_action_value", + "_allow_value", + "_reason_value", ] _has_required_fields = True - def __init__(self, - action=None, - allow=None, - reason=None): + def __init__(self, action=None, allow=None, reason=None): self._action_value = bb.NOT_SET self._allow_value = bb.NOT_SET self._reason_value = bb.NOT_SET @@ -4843,10 +5054,14 @@ def __init__(self, reason = bb.Attribute("reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkPermission, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkPermission, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkPermission_validator = bv.Struct(LinkPermission) + class LinkPermissions(bb.Struct): """ :ivar LinkPermissions.resolved_visibility: @@ -4932,59 +5147,61 @@ class LinkPermissions(bb.Struct): """ __slots__ = [ - '_resolved_visibility_value', - '_requested_visibility_value', - '_can_revoke_value', - '_revoke_failure_reason_value', - '_effective_audience_value', - '_link_access_level_value', - '_visibility_policies_value', - '_can_set_expiry_value', - '_can_remove_expiry_value', - '_allow_download_value', - '_can_allow_download_value', - '_can_disallow_download_value', - '_allow_comments_value', - '_team_restricts_comments_value', - '_audience_options_value', - '_can_set_password_value', - '_can_remove_password_value', - '_require_password_value', - '_can_use_extended_sharing_controls_value', - '_can_sync_value', - '_can_request_access_value', - '_enforce_shared_link_password_policy_value', - '_days_to_expire_policy_value', - '_change_shared_link_expiration_policy_value', + "_resolved_visibility_value", + "_requested_visibility_value", + "_can_revoke_value", + "_revoke_failure_reason_value", + "_effective_audience_value", + "_link_access_level_value", + "_visibility_policies_value", + "_can_set_expiry_value", + "_can_remove_expiry_value", + "_allow_download_value", + "_can_allow_download_value", + "_can_disallow_download_value", + "_allow_comments_value", + "_team_restricts_comments_value", + "_audience_options_value", + "_can_set_password_value", + "_can_remove_password_value", + "_require_password_value", + "_can_use_extended_sharing_controls_value", + "_can_sync_value", + "_can_request_access_value", + "_enforce_shared_link_password_policy_value", + "_days_to_expire_policy_value", + "_change_shared_link_expiration_policy_value", ] _has_required_fields = True - def __init__(self, - can_revoke=None, - visibility_policies=None, - can_set_expiry=None, - can_remove_expiry=None, - allow_download=None, - can_allow_download=None, - can_disallow_download=None, - allow_comments=None, - team_restricts_comments=None, - resolved_visibility=None, - requested_visibility=None, - revoke_failure_reason=None, - effective_audience=None, - link_access_level=None, - audience_options=None, - can_set_password=None, - can_remove_password=None, - require_password=None, - can_use_extended_sharing_controls=None, - can_sync=None, - can_request_access=None, - enforce_shared_link_password_policy=None, - days_to_expire_policy=None, - change_shared_link_expiration_policy=None): + def __init__( + self, + can_revoke=None, + visibility_policies=None, + can_set_expiry=None, + can_remove_expiry=None, + allow_download=None, + can_allow_download=None, + can_disallow_download=None, + allow_comments=None, + team_restricts_comments=None, + resolved_visibility=None, + requested_visibility=None, + revoke_failure_reason=None, + effective_audience=None, + link_access_level=None, + audience_options=None, + can_set_password=None, + can_remove_password=None, + require_password=None, + can_use_extended_sharing_controls=None, + can_sync=None, + can_request_access=None, + enforce_shared_link_password_policy=None, + days_to_expire_policy=None, + change_shared_link_expiration_policy=None, + ): self._resolved_visibility_value = bb.NOT_SET self._requested_visibility_value = bb.NOT_SET self._can_revoke_value = bb.NOT_SET @@ -5113,7 +5330,9 @@ def __init__(self, require_password = bb.Attribute("require_password", nullable=True) # Instance attribute type: bool (validator is set below) - can_use_extended_sharing_controls = bb.Attribute("can_use_extended_sharing_controls", nullable=True) + can_use_extended_sharing_controls = bb.Attribute( + "can_use_extended_sharing_controls", nullable=True + ) # Instance attribute type: bool (validator is set below) can_sync = bb.Attribute("can_sync", nullable=True) @@ -5122,19 +5341,27 @@ def __init__(self, can_request_access = bb.Attribute("can_request_access", nullable=True) # Instance attribute type: team_policies.EnforceLinkPasswordPolicy (validator is set below) - enforce_shared_link_password_policy = bb.Attribute("enforce_shared_link_password_policy", nullable=True, user_defined=True) + enforce_shared_link_password_policy = bb.Attribute( + "enforce_shared_link_password_policy", nullable=True, user_defined=True + ) # Instance attribute type: team_policies.DefaultLinkExpirationDaysPolicy (validator is set below) days_to_expire_policy = bb.Attribute("days_to_expire_policy", nullable=True, user_defined=True) # Instance attribute type: ChangeLinkExpirationPolicy (validator is set below) - change_shared_link_expiration_policy = bb.Attribute("change_shared_link_expiration_policy", nullable=True, user_defined=True) + change_shared_link_expiration_policy = bb.Attribute( + "change_shared_link_expiration_policy", nullable=True, user_defined=True + ) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkPermissions, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkPermissions, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkPermissions_validator = bv.Struct(LinkPermissions) + class LinkSettings(bb.Struct): """ Settings that apply to a link. @@ -5151,19 +5378,15 @@ class LinkSettings(bb.Struct): """ __slots__ = [ - '_access_level_value', - '_audience_value', - '_expiry_value', - '_password_value', + "_access_level_value", + "_audience_value", + "_expiry_value", + "_password_value", ] _has_required_fields = False - def __init__(self, - access_level=None, - audience=None, - expiry=None, - password=None): + def __init__(self, access_level=None, audience=None, expiry=None, password=None): self._access_level_value = bb.NOT_SET self._audience_value = bb.NOT_SET self._expiry_value = bb.NOT_SET @@ -5190,10 +5413,14 @@ def __init__(self, password = bb.Attribute("password", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkSettings, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkSettings, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkSettings_validator = bv.Struct(LinkSettings) + class ListFileMembersArg(bb.Struct): """ Arguments for @@ -5212,19 +5439,15 @@ class ListFileMembersArg(bb.Struct): """ __slots__ = [ - '_file_value', - '_actions_value', - '_include_inherited_value', - '_limit_value', + "_file_value", + "_actions_value", + "_include_inherited_value", + "_limit_value", ] _has_required_fields = True - def __init__(self, - file=None, - actions=None, - include_inherited=None, - limit=None): + def __init__(self, file=None, actions=None, include_inherited=None, limit=None): self._file_value = bb.NOT_SET self._actions_value = bb.NOT_SET self._include_inherited_value = bb.NOT_SET @@ -5251,10 +5474,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileMembersArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileMembersArg_validator = bv.Struct(ListFileMembersArg) + class ListFileMembersBatchArg(bb.Struct): """ Arguments for @@ -5268,15 +5495,13 @@ class ListFileMembersBatchArg(bb.Struct): """ __slots__ = [ - '_files_value', - '_limit_value', + "_files_value", + "_limit_value", ] _has_required_fields = True - def __init__(self, - files=None, - limit=None): + def __init__(self, files=None, limit=None): self._files_value = bb.NOT_SET self._limit_value = bb.NOT_SET if files is not None: @@ -5291,10 +5516,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileMembersBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileMembersBatchArg_validator = bv.Struct(ListFileMembersBatchArg) + class ListFileMembersBatchResult(bb.Struct): """ Per-file result for @@ -5307,15 +5536,13 @@ class ListFileMembersBatchResult(bb.Struct): """ __slots__ = [ - '_file_value', - '_result_value', + "_file_value", + "_result_value", ] _has_required_fields = True - def __init__(self, - file=None, - result=None): + def __init__(self, file=None, result=None): self._file_value = bb.NOT_SET self._result_value = bb.NOT_SET if file is not None: @@ -5330,10 +5557,14 @@ def __init__(self, result = bb.Attribute("result", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileMembersBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileMembersBatchResult_validator = bv.Struct(ListFileMembersBatchResult) + class ListFileMembersContinueArg(bb.Struct): """ Arguments for @@ -5348,13 +5579,12 @@ class ListFileMembersContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -5363,10 +5593,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileMembersContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileMembersContinueArg_validator = bv.Struct(ListFileMembersContinueArg) + class ListFileMembersContinueError(bb.Union): """ Error for @@ -5380,7 +5614,7 @@ class ListFileMembersContinueError(bb.Union): ``ListFileMembersContinueArg.cursor`` is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -5395,7 +5629,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: ListFileMembersContinueError """ - return cls('user_error', val) + return cls("user_error", val) @classmethod def access_error(cls, val): @@ -5406,7 +5640,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: ListFileMembersContinueError """ - return cls('access_error', val) + return cls("access_error", val) def is_user_error(self): """ @@ -5414,7 +5648,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_access_error(self): """ @@ -5422,7 +5656,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_invalid_cursor(self): """ @@ -5430,7 +5664,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -5438,7 +5672,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_user_error(self): """ @@ -5461,10 +5695,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileMembersContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileMembersContinueError_validator = bv.Union(ListFileMembersContinueError) + class ListFileMembersCountResult(bb.Struct): """ :ivar ListFileMembersCountResult.members: @@ -5475,15 +5713,13 @@ class ListFileMembersCountResult(bb.Struct): """ __slots__ = [ - '_members_value', - '_member_count_value', + "_members_value", + "_member_count_value", ] _has_required_fields = True - def __init__(self, - members=None, - member_count=None): + def __init__(self, members=None, member_count=None): self._members_value = bb.NOT_SET self._member_count_value = bb.NOT_SET if members is not None: @@ -5498,10 +5734,14 @@ def __init__(self, member_count = bb.Attribute("member_count") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersCountResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileMembersCountResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileMembersCountResult_validator = bv.Struct(ListFileMembersCountResult) + class ListFileMembersError(bb.Union): """ Error for :meth:`dropbox.dropbox_client.Dropbox.sharing_list_file_members`. @@ -5511,7 +5751,7 @@ class ListFileMembersError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -5524,7 +5764,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: ListFileMembersError """ - return cls('user_error', val) + return cls("user_error", val) @classmethod def access_error(cls, val): @@ -5535,7 +5775,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: ListFileMembersError """ - return cls('access_error', val) + return cls("access_error", val) def is_user_error(self): """ @@ -5543,7 +5783,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_access_error(self): """ @@ -5551,7 +5791,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_other(self): """ @@ -5559,7 +5799,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_user_error(self): """ @@ -5582,10 +5822,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileMembersError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileMembersError_validator = bv.Union(ListFileMembersError) + class ListFileMembersIndividualResult(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5600,7 +5844,7 @@ class ListFileMembersIndividualResult(bb.Union): :vartype ListFileMembersIndividualResult.access_error: SharingFileAccessError """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -5613,7 +5857,7 @@ def result(cls, val): :param ListFileMembersCountResult val: :rtype: ListFileMembersIndividualResult """ - return cls('result', val) + return cls("result", val) @classmethod def access_error(cls, val): @@ -5624,7 +5868,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: ListFileMembersIndividualResult """ - return cls('access_error', val) + return cls("access_error", val) def is_result(self): """ @@ -5632,7 +5876,7 @@ def is_result(self): :rtype: bool """ - return self._tag == 'result' + return self._tag == "result" def is_access_error(self): """ @@ -5640,7 +5884,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_other(self): """ @@ -5648,7 +5892,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_result(self): """ @@ -5675,10 +5919,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFileMembersIndividualResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFileMembersIndividualResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFileMembersIndividualResult_validator = bv.Union(ListFileMembersIndividualResult) + class ListFilesArg(bb.Struct): """ Arguments for @@ -5694,15 +5942,13 @@ class ListFilesArg(bb.Struct): """ __slots__ = [ - '_limit_value', - '_actions_value', + "_limit_value", + "_actions_value", ] _has_required_fields = False - def __init__(self, - limit=None, - actions=None): + def __init__(self, limit=None, actions=None): self._limit_value = bb.NOT_SET self._actions_value = bb.NOT_SET if limit is not None: @@ -5717,10 +5963,14 @@ def __init__(self, actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFilesArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFilesArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFilesArg_validator = bv.Struct(ListFilesArg) + class ListFilesContinueArg(bb.Struct): """ Arguments for @@ -5731,13 +5981,12 @@ class ListFilesContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -5746,10 +5995,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFilesContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFilesContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFilesContinueArg_validator = bv.Struct(ListFilesContinueArg) + class ListFilesContinueError(bb.Union): """ Error results for @@ -5766,7 +6019,7 @@ class ListFilesContinueError(bb.Union): ``ListFilesContinueArg.cursor`` is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -5781,7 +6034,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: ListFilesContinueError """ - return cls('user_error', val) + return cls("user_error", val) def is_user_error(self): """ @@ -5789,7 +6042,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_invalid_cursor(self): """ @@ -5797,7 +6050,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -5805,7 +6058,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_user_error(self): """ @@ -5820,10 +6073,14 @@ def get_user_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFilesContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFilesContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFilesContinueError_validator = bv.Union(ListFilesContinueError) + class ListFilesResult(bb.Struct): """ Success results for @@ -5836,15 +6093,13 @@ class ListFilesResult(bb.Struct): """ __slots__ = [ - '_entries_value', - '_cursor_value', + "_entries_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - entries=None, - cursor=None): + def __init__(self, entries=None, cursor=None): self._entries_value = bb.NOT_SET self._cursor_value = bb.NOT_SET if entries is not None: @@ -5859,10 +6114,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFilesResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFilesResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFilesResult_validator = bv.Struct(ListFilesResult) + class ListFolderMembersCursorArg(bb.Struct): """ :ivar ListFolderMembersCursorArg.actions: @@ -5875,15 +6134,13 @@ class ListFolderMembersCursorArg(bb.Struct): """ __slots__ = [ - '_actions_value', - '_limit_value', + "_actions_value", + "_limit_value", ] _has_required_fields = False - def __init__(self, - actions=None, - limit=None): + def __init__(self, actions=None, limit=None): self._actions_value = bb.NOT_SET self._limit_value = bb.NOT_SET if actions is not None: @@ -5898,10 +6155,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderMembersCursorArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderMembersCursorArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderMembersCursorArg_validator = bv.Struct(ListFolderMembersCursorArg) + class ListFolderMembersArgs(ListFolderMembersCursorArg): """ :ivar ListFolderMembersArgs.shared_folder_id: @@ -5915,19 +6176,14 @@ class ListFolderMembersArgs(ListFolderMembersCursorArg): """ __slots__ = [ - '_shared_folder_id_value', - '_path_value', + "_shared_folder_id_value", + "_path_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - actions=None, - limit=None, - path=None): - super(ListFolderMembersArgs, self).__init__(actions, - limit) + def __init__(self, shared_folder_id=None, actions=None, limit=None, path=None): + super(ListFolderMembersArgs, self).__init__(actions, limit) self._shared_folder_id_value = bb.NOT_SET self._path_value = bb.NOT_SET if shared_folder_id is not None: @@ -5942,10 +6198,14 @@ def __init__(self, path = bb.Attribute("path", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderMembersArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderMembersArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderMembersArgs_validator = bv.Struct(ListFolderMembersArgs) + class ListFolderMembersContinueArg(bb.Struct): """ :ivar ListFolderMembersContinueArg.cursor: @@ -5955,13 +6215,12 @@ class ListFolderMembersContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -5970,10 +6229,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderMembersContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderMembersContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderMembersContinueArg_validator = bv.Struct(ListFolderMembersContinueArg) + class ListFolderMembersContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5984,7 +6247,7 @@ class ListFolderMembersContinueError(bb.Union): ``ListFolderMembersContinueArg.cursor`` is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -5999,7 +6262,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: ListFolderMembersContinueError """ - return cls('access_error', val) + return cls("access_error", val) def is_access_error(self): """ @@ -6007,7 +6270,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_invalid_cursor(self): """ @@ -6015,7 +6278,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -6023,7 +6286,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -6036,10 +6299,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderMembersContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFolderMembersContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFolderMembersContinueError_validator = bv.Union(ListFolderMembersContinueError) + class ListFoldersArgs(bb.Struct): """ :ivar ListFoldersArgs.limit: @@ -6052,15 +6319,13 @@ class ListFoldersArgs(bb.Struct): """ __slots__ = [ - '_limit_value', - '_actions_value', + "_limit_value", + "_actions_value", ] _has_required_fields = False - def __init__(self, - limit=None, - actions=None): + def __init__(self, limit=None, actions=None): self._limit_value = bb.NOT_SET self._actions_value = bb.NOT_SET if limit is not None: @@ -6075,10 +6340,14 @@ def __init__(self, actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFoldersArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFoldersArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFoldersArgs_validator = bv.Struct(ListFoldersArgs) + class ListFoldersContinueArg(bb.Struct): """ :ivar ListFoldersContinueArg.cursor: @@ -6087,13 +6356,12 @@ class ListFoldersContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -6102,10 +6370,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFoldersContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFoldersContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFoldersContinueArg_validator = bv.Struct(ListFoldersContinueArg) + class ListFoldersContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6116,7 +6388,7 @@ class ListFoldersContinueError(bb.Union): ``ListFoldersContinueArg.cursor`` is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -6128,7 +6400,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -6136,13 +6408,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFoldersContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFoldersContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFoldersContinueError_validator = bv.Union(ListFoldersContinueError) + class ListFoldersResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.sharing_list_folders` or @@ -6162,15 +6438,13 @@ class ListFoldersResult(bb.Struct): """ __slots__ = [ - '_entries_value', - '_cursor_value', + "_entries_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - entries=None, - cursor=None): + def __init__(self, entries=None, cursor=None): self._entries_value = bb.NOT_SET self._cursor_value = bb.NOT_SET if entries is not None: @@ -6185,10 +6459,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFoldersResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListFoldersResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListFoldersResult_validator = bv.Struct(ListFoldersResult) + class ListSharedLinksArg(bb.Struct): """ :ivar ListSharedLinksArg.path: @@ -6203,17 +6481,14 @@ class ListSharedLinksArg(bb.Struct): """ __slots__ = [ - '_path_value', - '_cursor_value', - '_direct_only_value', + "_path_value", + "_cursor_value", + "_direct_only_value", ] _has_required_fields = False - def __init__(self, - path=None, - cursor=None, - direct_only=None): + def __init__(self, path=None, cursor=None, direct_only=None): self._path_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._direct_only_value = bb.NOT_SET @@ -6234,10 +6509,14 @@ def __init__(self, direct_only = bb.Attribute("direct_only", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListSharedLinksArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListSharedLinksArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListSharedLinksArg_validator = bv.Struct(ListSharedLinksArg) + class ListSharedLinksError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6250,7 +6529,7 @@ class ListSharedLinksError(bb.Union): obtain a new cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -6265,7 +6544,7 @@ def path(cls, val): :param files.LookupError val: :rtype: ListSharedLinksError """ - return cls('path', val) + return cls("path", val) def is_path(self): """ @@ -6273,7 +6552,7 @@ def is_path(self): :rtype: bool """ - return self._tag == 'path' + return self._tag == "path" def is_reset(self): """ @@ -6281,7 +6560,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -6289,7 +6568,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_path(self): """ @@ -6302,10 +6581,14 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListSharedLinksError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListSharedLinksError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListSharedLinksError_validator = bv.Union(ListSharedLinksError) + class ListSharedLinksResult(bb.Struct): """ :ivar ListSharedLinksResult.links: @@ -6323,17 +6606,14 @@ class ListSharedLinksResult(bb.Struct): """ __slots__ = [ - '_links_value', - '_has_more_value', - '_cursor_value', + "_links_value", + "_has_more_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - links=None, - has_more=None, - cursor=None): + def __init__(self, links=None, has_more=None, cursor=None): self._links_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6354,10 +6634,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListSharedLinksResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListSharedLinksResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListSharedLinksResult_validator = bv.Struct(ListSharedLinksResult) + class MemberAccessLevelResult(bb.Struct): """ Contains information about a member's access level to content after an @@ -6376,17 +6660,14 @@ class MemberAccessLevelResult(bb.Struct): """ __slots__ = [ - '_access_level_value', - '_warning_value', - '_access_details_value', + "_access_level_value", + "_warning_value", + "_access_details_value", ] _has_required_fields = False - def __init__(self, - access_level=None, - warning=None, - access_details=None): + def __init__(self, access_level=None, warning=None, access_details=None): self._access_level_value = bb.NOT_SET self._warning_value = bb.NOT_SET self._access_details_value = bb.NOT_SET @@ -6407,10 +6688,14 @@ def __init__(self, access_details = bb.Attribute("access_details", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessLevelResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAccessLevelResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAccessLevelResult_validator = bv.Struct(MemberAccessLevelResult) + class MemberAction(bb.Union): """ Actions that may be taken on members of a shared folder. @@ -6433,7 +6718,7 @@ class MemberAction(bb.Union): Remove the member from the folder. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition leave_a_copy = None # Attribute is overwritten below the class definition @@ -6455,7 +6740,7 @@ def is_leave_a_copy(self): :rtype: bool """ - return self._tag == 'leave_a_copy' + return self._tag == "leave_a_copy" def is_make_editor(self): """ @@ -6463,7 +6748,7 @@ def is_make_editor(self): :rtype: bool """ - return self._tag == 'make_editor' + return self._tag == "make_editor" def is_make_owner(self): """ @@ -6471,7 +6756,7 @@ def is_make_owner(self): :rtype: bool """ - return self._tag == 'make_owner' + return self._tag == "make_owner" def is_make_viewer(self): """ @@ -6479,7 +6764,7 @@ def is_make_viewer(self): :rtype: bool """ - return self._tag == 'make_viewer' + return self._tag == "make_viewer" def is_make_viewer_no_comment(self): """ @@ -6487,7 +6772,7 @@ def is_make_viewer_no_comment(self): :rtype: bool """ - return self._tag == 'make_viewer_no_comment' + return self._tag == "make_viewer_no_comment" def is_remove(self): """ @@ -6495,7 +6780,7 @@ def is_remove(self): :rtype: bool """ - return self._tag == 'remove' + return self._tag == "remove" def is_other(self): """ @@ -6503,13 +6788,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAction, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAction, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAction_validator = bv.Union(MemberAction) + class MemberPermission(bb.Struct): """ Whether the user is allowed to take the action on the associated member. @@ -6524,17 +6813,14 @@ class MemberPermission(bb.Struct): """ __slots__ = [ - '_action_value', - '_allow_value', - '_reason_value', + "_action_value", + "_allow_value", + "_reason_value", ] _has_required_fields = True - def __init__(self, - action=None, - allow=None, - reason=None): + def __init__(self, action=None, allow=None, reason=None): self._action_value = bb.NOT_SET self._allow_value = bb.NOT_SET self._reason_value = bb.NOT_SET @@ -6555,10 +6841,14 @@ def __init__(self, reason = bb.Attribute("reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberPermission, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberPermission, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberPermission_validator = bv.Struct(MemberPermission) + class MemberPolicy(bb.Union): """ Policy governing who can be a member of a shared folder. Only applicable to @@ -6576,7 +6866,7 @@ class MemberPolicy(bb.Union): Only a teammate and approved people can become a member. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition team = None # Attribute is overwritten below the class definition @@ -6592,7 +6882,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_anyone(self): """ @@ -6600,7 +6890,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == 'anyone' + return self._tag == "anyone" def is_team_and_approved(self): """ @@ -6608,7 +6898,7 @@ def is_team_and_approved(self): :rtype: bool """ - return self._tag == 'team_and_approved' + return self._tag == "team_and_approved" def is_other(self): """ @@ -6616,13 +6906,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberPolicy_validator = bv.Union(MemberPolicy) + class MemberSelector(bb.Union): """ Includes different ways to identify a member of a shared folder. @@ -6639,7 +6933,7 @@ class MemberSelector(bb.Union): :vartype MemberSelector.email: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -6652,7 +6946,7 @@ def dropbox_id(cls, val): :param str val: :rtype: MemberSelector """ - return cls('dropbox_id', val) + return cls("dropbox_id", val) @classmethod def email(cls, val): @@ -6663,7 +6957,7 @@ def email(cls, val): :param str val: :rtype: MemberSelector """ - return cls('email', val) + return cls("email", val) def is_dropbox_id(self): """ @@ -6671,7 +6965,7 @@ def is_dropbox_id(self): :rtype: bool """ - return self._tag == 'dropbox_id' + return self._tag == "dropbox_id" def is_email(self): """ @@ -6679,7 +6973,7 @@ def is_email(self): :rtype: bool """ - return self._tag == 'email' + return self._tag == "email" def is_other(self): """ @@ -6687,7 +6981,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_dropbox_id(self): """ @@ -6714,10 +7008,14 @@ def get_email(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSelector, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSelector, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSelector_validator = bv.Union(MemberSelector) + class ModifySharedLinkSettingsArgs(bb.Struct): """ :ivar ModifySharedLinkSettingsArgs.url: @@ -6729,17 +7027,14 @@ class ModifySharedLinkSettingsArgs(bb.Struct): """ __slots__ = [ - '_url_value', - '_settings_value', - '_remove_expiration_value', + "_url_value", + "_settings_value", + "_remove_expiration_value", ] _has_required_fields = True - def __init__(self, - url=None, - settings=None, - remove_expiration=None): + def __init__(self, url=None, settings=None, remove_expiration=None): self._url_value = bb.NOT_SET self._settings_value = bb.NOT_SET self._remove_expiration_value = bb.NOT_SET @@ -6760,10 +7055,14 @@ def __init__(self, remove_expiration = bb.Attribute("remove_expiration") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ModifySharedLinkSettingsArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ModifySharedLinkSettingsArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ModifySharedLinkSettingsArgs_validator = bv.Struct(ModifySharedLinkSettingsArgs) + class ModifySharedLinkSettingsError(SharedLinkError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6791,7 +7090,7 @@ def settings_error(cls, val): :param SharedLinkSettingsError val: :rtype: ModifySharedLinkSettingsError """ - return cls('settings_error', val) + return cls("settings_error", val) def is_settings_error(self): """ @@ -6799,7 +7098,7 @@ def is_settings_error(self): :rtype: bool """ - return self._tag == 'settings_error' + return self._tag == "settings_error" def is_email_not_verified(self): """ @@ -6807,7 +7106,7 @@ def is_email_not_verified(self): :rtype: bool """ - return self._tag == 'email_not_verified' + return self._tag == "email_not_verified" def get_settings_error(self): """ @@ -6822,10 +7121,14 @@ def get_settings_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ModifySharedLinkSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ModifySharedLinkSettingsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ModifySharedLinkSettingsError_validator = bv.Union(ModifySharedLinkSettingsError) + class MountFolderArg(bb.Struct): """ :ivar MountFolderArg.shared_folder_id: @@ -6833,13 +7136,12 @@ class MountFolderArg(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', + "_shared_folder_id_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None): + def __init__(self, shared_folder_id=None): self._shared_folder_id_value = bb.NOT_SET if shared_folder_id is not None: self.shared_folder_id = shared_folder_id @@ -6848,10 +7150,14 @@ def __init__(self, shared_folder_id = bb.Attribute("shared_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MountFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MountFolderArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MountFolderArg_validator = bv.Struct(MountFolderArg) + class MountFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6877,7 +7183,7 @@ class MountFolderError(bb.Union): automounter is responsible for mounting it. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition inside_shared_folder = None # Attribute is overwritten below the class definition @@ -6900,7 +7206,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: MountFolderError """ - return cls('access_error', val) + return cls("access_error", val) @classmethod def insufficient_quota(cls, val): @@ -6911,7 +7217,7 @@ def insufficient_quota(cls, val): :param InsufficientQuotaAmounts val: :rtype: MountFolderError """ - return cls('insufficient_quota', val) + return cls("insufficient_quota", val) def is_access_error(self): """ @@ -6919,7 +7225,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_inside_shared_folder(self): """ @@ -6927,7 +7233,7 @@ def is_inside_shared_folder(self): :rtype: bool """ - return self._tag == 'inside_shared_folder' + return self._tag == "inside_shared_folder" def is_insufficient_quota(self): """ @@ -6935,7 +7241,7 @@ def is_insufficient_quota(self): :rtype: bool """ - return self._tag == 'insufficient_quota' + return self._tag == "insufficient_quota" def is_already_mounted(self): """ @@ -6943,7 +7249,7 @@ def is_already_mounted(self): :rtype: bool """ - return self._tag == 'already_mounted' + return self._tag == "already_mounted" def is_no_permission(self): """ @@ -6951,7 +7257,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_not_mountable(self): """ @@ -6959,7 +7265,7 @@ def is_not_mountable(self): :rtype: bool """ - return self._tag == 'not_mountable' + return self._tag == "not_mountable" def is_must_automount(self): """ @@ -6967,7 +7273,7 @@ def is_must_automount(self): :rtype: bool """ - return self._tag == 'must_automount' + return self._tag == "must_automount" def is_other(self): """ @@ -6975,7 +7281,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -7000,10 +7306,14 @@ def get_insufficient_quota(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MountFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MountFolderError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MountFolderError_validator = bv.Union(MountFolderError) + class ParentFolderAccessInfo(bb.Struct): """ Contains information about a parent folder that a member has access to. @@ -7020,19 +7330,15 @@ class ParentFolderAccessInfo(bb.Struct): """ __slots__ = [ - '_folder_name_value', - '_shared_folder_id_value', - '_permissions_value', - '_path_value', + "_folder_name_value", + "_shared_folder_id_value", + "_permissions_value", + "_path_value", ] _has_required_fields = True - def __init__(self, - folder_name=None, - shared_folder_id=None, - permissions=None, - path=None): + def __init__(self, folder_name=None, shared_folder_id=None, permissions=None, path=None): self._folder_name_value = bb.NOT_SET self._shared_folder_id_value = bb.NOT_SET self._permissions_value = bb.NOT_SET @@ -7059,10 +7365,14 @@ def __init__(self, path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ParentFolderAccessInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ParentFolderAccessInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ParentFolderAccessInfo_validator = bv.Struct(ParentFolderAccessInfo) + class PathLinkMetadata(LinkMetadata): """ Metadata for a path-based shared link. @@ -7072,19 +7382,13 @@ class PathLinkMetadata(LinkMetadata): """ __slots__ = [ - '_path_value', + "_path_value", ] _has_required_fields = True - def __init__(self, - url=None, - visibility=None, - path=None, - expires=None): - super(PathLinkMetadata, self).__init__(url, - visibility, - expires) + def __init__(self, url=None, visibility=None, path=None, expires=None): + super(PathLinkMetadata, self).__init__(url, visibility, expires) self._path_value = bb.NOT_SET if path is not None: self.path = path @@ -7093,10 +7397,14 @@ def __init__(self, path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PathLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PathLinkMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PathLinkMetadata_validator = bv.Struct(PathLinkMetadata) + class PendingUploadMode(bb.Union): """ Flag to indicate pending upload default (for linking to not-yet-existing @@ -7124,7 +7432,7 @@ def is_file(self): :rtype: bool """ - return self._tag == 'file' + return self._tag == "file" def is_folder(self): """ @@ -7132,13 +7440,17 @@ def is_folder(self): :rtype: bool """ - return self._tag == 'folder' + return self._tag == "folder" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PendingUploadMode, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PendingUploadMode, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PendingUploadMode_validator = bv.Union(PendingUploadMode) + class PermissionDeniedReason(bb.Union): """ Possible reasons the user is denied a permission. @@ -7178,7 +7490,7 @@ class PermissionDeniedReason(bb.Union): Policy cannot be changed due to restrictions from parent folder. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition user_not_same_team_as_owner = None # Attribute is overwritten below the class definition @@ -7219,7 +7531,7 @@ def insufficient_plan(cls, val): :param InsufficientPlan val: :rtype: PermissionDeniedReason """ - return cls('insufficient_plan', val) + return cls("insufficient_plan", val) def is_user_not_same_team_as_owner(self): """ @@ -7227,7 +7539,7 @@ def is_user_not_same_team_as_owner(self): :rtype: bool """ - return self._tag == 'user_not_same_team_as_owner' + return self._tag == "user_not_same_team_as_owner" def is_user_not_allowed_by_owner(self): """ @@ -7235,7 +7547,7 @@ def is_user_not_allowed_by_owner(self): :rtype: bool """ - return self._tag == 'user_not_allowed_by_owner' + return self._tag == "user_not_allowed_by_owner" def is_target_is_indirect_member(self): """ @@ -7243,7 +7555,7 @@ def is_target_is_indirect_member(self): :rtype: bool """ - return self._tag == 'target_is_indirect_member' + return self._tag == "target_is_indirect_member" def is_target_is_owner(self): """ @@ -7251,7 +7563,7 @@ def is_target_is_owner(self): :rtype: bool """ - return self._tag == 'target_is_owner' + return self._tag == "target_is_owner" def is_target_is_self(self): """ @@ -7259,7 +7571,7 @@ def is_target_is_self(self): :rtype: bool """ - return self._tag == 'target_is_self' + return self._tag == "target_is_self" def is_target_not_active(self): """ @@ -7267,7 +7579,7 @@ def is_target_not_active(self): :rtype: bool """ - return self._tag == 'target_not_active' + return self._tag == "target_not_active" def is_folder_is_limited_team_folder(self): """ @@ -7275,7 +7587,7 @@ def is_folder_is_limited_team_folder(self): :rtype: bool """ - return self._tag == 'folder_is_limited_team_folder' + return self._tag == "folder_is_limited_team_folder" def is_owner_not_on_team(self): """ @@ -7283,7 +7595,7 @@ def is_owner_not_on_team(self): :rtype: bool """ - return self._tag == 'owner_not_on_team' + return self._tag == "owner_not_on_team" def is_permission_denied(self): """ @@ -7291,7 +7603,7 @@ def is_permission_denied(self): :rtype: bool """ - return self._tag == 'permission_denied' + return self._tag == "permission_denied" def is_restricted_by_team(self): """ @@ -7299,7 +7611,7 @@ def is_restricted_by_team(self): :rtype: bool """ - return self._tag == 'restricted_by_team' + return self._tag == "restricted_by_team" def is_user_account_type(self): """ @@ -7307,7 +7619,7 @@ def is_user_account_type(self): :rtype: bool """ - return self._tag == 'user_account_type' + return self._tag == "user_account_type" def is_user_not_on_team(self): """ @@ -7315,7 +7627,7 @@ def is_user_not_on_team(self): :rtype: bool """ - return self._tag == 'user_not_on_team' + return self._tag == "user_not_on_team" def is_folder_is_inside_shared_folder(self): """ @@ -7323,7 +7635,7 @@ def is_folder_is_inside_shared_folder(self): :rtype: bool """ - return self._tag == 'folder_is_inside_shared_folder' + return self._tag == "folder_is_inside_shared_folder" def is_restricted_by_parent_folder(self): """ @@ -7331,7 +7643,7 @@ def is_restricted_by_parent_folder(self): :rtype: bool """ - return self._tag == 'restricted_by_parent_folder' + return self._tag == "restricted_by_parent_folder" def is_insufficient_plan(self): """ @@ -7339,7 +7651,7 @@ def is_insufficient_plan(self): :rtype: bool """ - return self._tag == 'insufficient_plan' + return self._tag == "insufficient_plan" def is_other(self): """ @@ -7347,7 +7659,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_insufficient_plan(self): """ @@ -7360,10 +7672,14 @@ def get_insufficient_plan(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PermissionDeniedReason, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PermissionDeniedReason, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PermissionDeniedReason_validator = bv.Union(PermissionDeniedReason) + class RelinquishAccessArg(bb.Struct): """ Removes all self-removable access from a file or folder. For folders: always @@ -7376,13 +7692,12 @@ class RelinquishAccessArg(bb.Struct): """ __slots__ = [ - '_file_id_value', + "_file_id_value", ] _has_required_fields = True - def __init__(self, - file_id=None): + def __init__(self, file_id=None): self._file_id_value = bb.NOT_SET if file_id is not None: self.file_id = file_id @@ -7391,10 +7706,14 @@ def __init__(self, file_id = bb.Attribute("file_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishAccessArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelinquishAccessArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelinquishAccessArg_validator = bv.Struct(RelinquishAccessArg) + class RelinquishAccessError(bb.Union): """ Error result for the relinquish_access endpoint. @@ -7422,7 +7741,7 @@ class RelinquishAccessError(bb.Union): fallback. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_file_id = None # Attribute is overwritten below the class definition @@ -7444,7 +7763,7 @@ def is_invalid_file_id(self): :rtype: bool """ - return self._tag == 'invalid_file_id' + return self._tag == "invalid_file_id" def is_email_unverified(self): """ @@ -7452,7 +7771,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == 'email_unverified' + return self._tag == "email_unverified" def is_owner(self): """ @@ -7460,7 +7779,7 @@ def is_owner(self): :rtype: bool """ - return self._tag == 'owner' + return self._tag == "owner" def is_no_explicit_access(self): """ @@ -7468,7 +7787,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == 'no_explicit_access' + return self._tag == "no_explicit_access" def is_team_folder(self): """ @@ -7476,7 +7795,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == 'team_folder' + return self._tag == "team_folder" def is_no_permission(self): """ @@ -7484,7 +7803,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_other(self): """ @@ -7492,20 +7811,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelinquishAccessError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelinquishAccessError_validator = bv.Union(RelinquishAccessError) + class RelinquishAccessResult(bb.Struct): """ Returns an empty response for the relinquish_access endpoint. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -7513,10 +7835,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishAccessResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelinquishAccessResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelinquishAccessResult_validator = bv.Struct(RelinquishAccessResult) + class RelinquishFileMembershipArg(bb.Struct): """ :ivar RelinquishFileMembershipArg.file: @@ -7524,13 +7850,12 @@ class RelinquishFileMembershipArg(bb.Struct): """ __slots__ = [ - '_file_value', + "_file_value", ] _has_required_fields = True - def __init__(self, - file=None): + def __init__(self, file=None): self._file_value = bb.NOT_SET if file is not None: self.file = file @@ -7539,10 +7864,14 @@ def __init__(self, file = bb.Attribute("file") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishFileMembershipArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelinquishFileMembershipArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelinquishFileMembershipArg_validator = bv.Struct(RelinquishFileMembershipArg) + class RelinquishFileMembershipError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7556,7 +7885,7 @@ class RelinquishFileMembershipError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition group_access = None # Attribute is overwritten below the class definition @@ -7573,7 +7902,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: RelinquishFileMembershipError """ - return cls('access_error', val) + return cls("access_error", val) def is_access_error(self): """ @@ -7581,7 +7910,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_group_access(self): """ @@ -7589,7 +7918,7 @@ def is_group_access(self): :rtype: bool """ - return self._tag == 'group_access' + return self._tag == "group_access" def is_no_permission(self): """ @@ -7597,7 +7926,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_other(self): """ @@ -7605,7 +7934,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -7618,10 +7947,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishFileMembershipError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelinquishFileMembershipError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelinquishFileMembershipError_validator = bv.Union(RelinquishFileMembershipError) + class RelinquishFolderMembershipArg(bb.Struct): """ :ivar RelinquishFolderMembershipArg.shared_folder_id: @@ -7633,15 +7966,13 @@ class RelinquishFolderMembershipArg(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', - '_leave_a_copy_value', + "_shared_folder_id_value", + "_leave_a_copy_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - leave_a_copy=None): + def __init__(self, shared_folder_id=None, leave_a_copy=None): self._shared_folder_id_value = bb.NOT_SET self._leave_a_copy_value = bb.NOT_SET if shared_folder_id is not None: @@ -7656,10 +7987,14 @@ def __init__(self, leave_a_copy = bb.Attribute("leave_a_copy") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishFolderMembershipArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelinquishFolderMembershipArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelinquishFolderMembershipArg_validator = bv.Struct(RelinquishFolderMembershipArg) + class RelinquishFolderMembershipError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7685,7 +8020,7 @@ class RelinquishFolderMembershipError(bb.Union): can't relinquish inherited membership to folders. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition folder_owner = None # Attribute is overwritten below the class definition @@ -7710,7 +8045,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: RelinquishFolderMembershipError """ - return cls('access_error', val) + return cls("access_error", val) def is_access_error(self): """ @@ -7718,7 +8053,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_folder_owner(self): """ @@ -7726,7 +8061,7 @@ def is_folder_owner(self): :rtype: bool """ - return self._tag == 'folder_owner' + return self._tag == "folder_owner" def is_mounted(self): """ @@ -7734,7 +8069,7 @@ def is_mounted(self): :rtype: bool """ - return self._tag == 'mounted' + return self._tag == "mounted" def is_group_access(self): """ @@ -7742,7 +8077,7 @@ def is_group_access(self): :rtype: bool """ - return self._tag == 'group_access' + return self._tag == "group_access" def is_team_folder(self): """ @@ -7750,7 +8085,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == 'team_folder' + return self._tag == "team_folder" def is_no_permission(self): """ @@ -7758,7 +8093,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_no_explicit_access(self): """ @@ -7766,7 +8101,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == 'no_explicit_access' + return self._tag == "no_explicit_access" def is_other(self): """ @@ -7774,7 +8109,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -7787,10 +8122,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelinquishFolderMembershipError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelinquishFolderMembershipError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelinquishFolderMembershipError_validator = bv.Union(RelinquishFolderMembershipError) + class RemoveFileMemberArg(bb.Struct): """ Arguments for @@ -7805,15 +8144,13 @@ class RemoveFileMemberArg(bb.Struct): """ __slots__ = [ - '_file_value', - '_member_value', + "_file_value", + "_member_value", ] _has_required_fields = True - def __init__(self, - file=None, - member=None): + def __init__(self, file=None, member=None): self._file_value = bb.NOT_SET self._member_value = bb.NOT_SET if file is not None: @@ -7828,10 +8165,14 @@ def __init__(self, member = bb.Attribute("member", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveFileMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemoveFileMemberArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemoveFileMemberArg_validator = bv.Struct(RemoveFileMemberArg) + class RemoveFileMemberError(bb.Union): """ Errors for @@ -7848,7 +8189,7 @@ class RemoveFileMemberError(bb.Union): :vartype RemoveFileMemberError.no_explicit_access: MemberAccessLevelResult """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -7861,7 +8202,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: RemoveFileMemberError """ - return cls('user_error', val) + return cls("user_error", val) @classmethod def access_error(cls, val): @@ -7872,7 +8213,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: RemoveFileMemberError """ - return cls('access_error', val) + return cls("access_error", val) @classmethod def no_explicit_access(cls, val): @@ -7883,7 +8224,7 @@ def no_explicit_access(cls, val): :param MemberAccessLevelResult val: :rtype: RemoveFileMemberError """ - return cls('no_explicit_access', val) + return cls("no_explicit_access", val) def is_user_error(self): """ @@ -7891,7 +8232,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_access_error(self): """ @@ -7899,7 +8240,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_no_explicit_access(self): """ @@ -7907,7 +8248,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == 'no_explicit_access' + return self._tag == "no_explicit_access" def is_other(self): """ @@ -7915,7 +8256,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_user_error(self): """ @@ -7952,10 +8293,14 @@ def get_no_explicit_access(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveFileMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemoveFileMemberError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemoveFileMemberError_validator = bv.Union(RemoveFileMemberError) + class RemoveFolderMemberArg(bb.Struct): """ :ivar RemoveFolderMemberArg.shared_folder_id: @@ -7970,17 +8315,14 @@ class RemoveFolderMemberArg(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', - '_member_value', - '_leave_a_copy_value', + "_shared_folder_id_value", + "_member_value", + "_leave_a_copy_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - member=None, - leave_a_copy=None): + def __init__(self, shared_folder_id=None, member=None, leave_a_copy=None): self._shared_folder_id_value = bb.NOT_SET self._member_value = bb.NOT_SET self._leave_a_copy_value = bb.NOT_SET @@ -8001,10 +8343,14 @@ def __init__(self, leave_a_copy = bb.Attribute("leave_a_copy") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveFolderMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemoveFolderMemberArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemoveFolderMemberArg_validator = bv.Struct(RemoveFolderMemberArg) + class RemoveFolderMemberError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8025,7 +8371,7 @@ class RemoveFolderMemberError(bb.Union): remove this user without leaving a copy. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition folder_owner = None # Attribute is overwritten below the class definition @@ -8048,7 +8394,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: RemoveFolderMemberError """ - return cls('access_error', val) + return cls("access_error", val) @classmethod def member_error(cls, val): @@ -8059,7 +8405,7 @@ def member_error(cls, val): :param SharedFolderMemberError val: :rtype: RemoveFolderMemberError """ - return cls('member_error', val) + return cls("member_error", val) def is_access_error(self): """ @@ -8067,7 +8413,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_member_error(self): """ @@ -8075,7 +8421,7 @@ def is_member_error(self): :rtype: bool """ - return self._tag == 'member_error' + return self._tag == "member_error" def is_folder_owner(self): """ @@ -8083,7 +8429,7 @@ def is_folder_owner(self): :rtype: bool """ - return self._tag == 'folder_owner' + return self._tag == "folder_owner" def is_group_access(self): """ @@ -8091,7 +8437,7 @@ def is_group_access(self): :rtype: bool """ - return self._tag == 'group_access' + return self._tag == "group_access" def is_team_folder(self): """ @@ -8099,7 +8445,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == 'team_folder' + return self._tag == "team_folder" def is_no_permission(self): """ @@ -8107,7 +8453,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_too_many_files(self): """ @@ -8115,7 +8461,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == 'too_many_files' + return self._tag == "too_many_files" def is_other(self): """ @@ -8123,7 +8469,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -8146,10 +8492,14 @@ def get_member_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveFolderMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemoveFolderMemberError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemoveFolderMemberError_validator = bv.Union(RemoveFolderMemberError) + class RemoveMemberJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8171,7 +8521,7 @@ def complete(cls, val): :param MemberAccessLevelResult val: :rtype: RemoveMemberJobStatus """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -8182,7 +8532,7 @@ def failed(cls, val): :param RemoveFolderMemberError val: :rtype: RemoveMemberJobStatus """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -8190,7 +8540,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -8198,7 +8548,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def get_complete(self): """ @@ -8224,10 +8574,14 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveMemberJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemoveMemberJobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemoveMemberJobStatus_validator = bv.Union(RemoveMemberJobStatus) + class RequestedLinkAccessLevel(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8245,7 +8599,7 @@ class RequestedLinkAccessLevel(bb.Union): Request for the default access level the user has set. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition viewer = None # Attribute is overwritten below the class definition @@ -8263,7 +8617,7 @@ def is_viewer(self): :rtype: bool """ - return self._tag == 'viewer' + return self._tag == "viewer" def is_editor(self): """ @@ -8271,7 +8625,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == 'editor' + return self._tag == "editor" def is_max(self): """ @@ -8279,7 +8633,7 @@ def is_max(self): :rtype: bool """ - return self._tag == 'max' + return self._tag == "max" def is_default(self): """ @@ -8287,7 +8641,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_other(self): """ @@ -8295,13 +8649,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RequestedLinkAccessLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RequestedLinkAccessLevel, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RequestedLinkAccessLevel_validator = bv.Union(RequestedLinkAccessLevel) + class RevokeSharedLinkArg(bb.Struct): """ :ivar RevokeSharedLinkArg.url: @@ -8309,13 +8667,12 @@ class RevokeSharedLinkArg(bb.Struct): """ __slots__ = [ - '_url_value', + "_url_value", ] _has_required_fields = True - def __init__(self, - url=None): + def __init__(self, url=None): self._url_value = bb.NOT_SET if url is not None: self.url = url @@ -8324,10 +8681,14 @@ def __init__(self, url = bb.Attribute("url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeSharedLinkArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeSharedLinkArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeSharedLinkArg_validator = bv.Struct(RevokeSharedLinkArg) + class RevokeSharedLinkError(SharedLinkError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8347,13 +8708,17 @@ def is_shared_link_malformed(self): :rtype: bool """ - return self._tag == 'shared_link_malformed' + return self._tag == "shared_link_malformed" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeSharedLinkError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeSharedLinkError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeSharedLinkError_validator = bv.Union(RevokeSharedLinkError) + class SetAccessInheritanceArg(bb.Struct): """ :ivar SetAccessInheritanceArg.access_inheritance: @@ -8363,15 +8728,13 @@ class SetAccessInheritanceArg(bb.Struct): """ __slots__ = [ - '_access_inheritance_value', - '_shared_folder_id_value', + "_access_inheritance_value", + "_shared_folder_id_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - access_inheritance=None): + def __init__(self, shared_folder_id=None, access_inheritance=None): self._access_inheritance_value = bb.NOT_SET self._shared_folder_id_value = bb.NOT_SET if access_inheritance is not None: @@ -8386,10 +8749,14 @@ def __init__(self, shared_folder_id = bb.Attribute("shared_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetAccessInheritanceArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SetAccessInheritanceArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SetAccessInheritanceArg_validator = bv.Struct(SetAccessInheritanceArg) + class SetAccessInheritanceError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8403,7 +8770,7 @@ class SetAccessInheritanceError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_permission = None # Attribute is overwritten below the class definition @@ -8418,7 +8785,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: SetAccessInheritanceError """ - return cls('access_error', val) + return cls("access_error", val) def is_access_error(self): """ @@ -8426,7 +8793,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_no_permission(self): """ @@ -8434,7 +8801,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_other(self): """ @@ -8442,7 +8809,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -8457,10 +8824,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetAccessInheritanceError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SetAccessInheritanceError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SetAccessInheritanceError_validator = bv.Union(SetAccessInheritanceError) + class ShareFolderArgBase(bb.Struct): """ :ivar ShareFolderArgBase.acl_update_policy: @@ -8484,25 +8855,27 @@ class ShareFolderArgBase(bb.Struct): """ __slots__ = [ - '_acl_update_policy_value', - '_force_async_value', - '_member_policy_value', - '_path_value', - '_shared_link_policy_value', - '_viewer_info_policy_value', - '_access_inheritance_value', + "_acl_update_policy_value", + "_force_async_value", + "_member_policy_value", + "_path_value", + "_shared_link_policy_value", + "_viewer_info_policy_value", + "_access_inheritance_value", ] _has_required_fields = True - def __init__(self, - path=None, - acl_update_policy=None, - force_async=None, - member_policy=None, - shared_link_policy=None, - viewer_info_policy=None, - access_inheritance=None): + def __init__( + self, + path=None, + acl_update_policy=None, + force_async=None, + member_policy=None, + shared_link_policy=None, + viewer_info_policy=None, + access_inheritance=None, + ): self._acl_update_policy_value = bb.NOT_SET self._force_async_value = bb.NOT_SET self._member_policy_value = bb.NOT_SET @@ -8547,10 +8920,14 @@ def __init__(self, access_inheritance = bb.Attribute("access_inheritance", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderArgBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShareFolderArgBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShareFolderArgBase_validator = bv.Struct(ShareFolderArgBase) + class ShareFolderArg(ShareFolderArgBase): """ :ivar ShareFolderArg.actions: @@ -8563,29 +8940,33 @@ class ShareFolderArg(ShareFolderArgBase): """ __slots__ = [ - '_actions_value', - '_link_settings_value', + "_actions_value", + "_link_settings_value", ] _has_required_fields = True - def __init__(self, - path=None, - acl_update_policy=None, - force_async=None, - member_policy=None, - shared_link_policy=None, - viewer_info_policy=None, - access_inheritance=None, - actions=None, - link_settings=None): - super(ShareFolderArg, self).__init__(path, - acl_update_policy, - force_async, - member_policy, - shared_link_policy, - viewer_info_policy, - access_inheritance) + def __init__( + self, + path=None, + acl_update_policy=None, + force_async=None, + member_policy=None, + shared_link_policy=None, + viewer_info_policy=None, + access_inheritance=None, + actions=None, + link_settings=None, + ): + super(ShareFolderArg, self).__init__( + path, + acl_update_policy, + force_async, + member_policy, + shared_link_policy, + viewer_info_policy, + access_inheritance, + ) self._actions_value = bb.NOT_SET self._link_settings_value = bb.NOT_SET if actions is not None: @@ -8600,10 +8981,14 @@ def __init__(self, link_settings = bb.Attribute("link_settings", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShareFolderArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShareFolderArg_validator = bv.Struct(ShareFolderArg) + class ShareFolderErrorBase(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8625,7 +9010,7 @@ class ShareFolderErrorBase(bb.Union): ``ShareFolderArg.shared_link_policy``. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition email_unverified = None # Attribute is overwritten below the class definition @@ -8644,7 +9029,7 @@ def bad_path(cls, val): :param SharePathError val: :rtype: ShareFolderErrorBase """ - return cls('bad_path', val) + return cls("bad_path", val) def is_email_unverified(self): """ @@ -8652,7 +9037,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == 'email_unverified' + return self._tag == "email_unverified" def is_bad_path(self): """ @@ -8660,7 +9045,7 @@ def is_bad_path(self): :rtype: bool """ - return self._tag == 'bad_path' + return self._tag == "bad_path" def is_team_policy_disallows_member_policy(self): """ @@ -8668,7 +9053,7 @@ def is_team_policy_disallows_member_policy(self): :rtype: bool """ - return self._tag == 'team_policy_disallows_member_policy' + return self._tag == "team_policy_disallows_member_policy" def is_disallowed_shared_link_policy(self): """ @@ -8676,7 +9061,7 @@ def is_disallowed_shared_link_policy(self): :rtype: bool """ - return self._tag == 'disallowed_shared_link_policy' + return self._tag == "disallowed_shared_link_policy" def is_other(self): """ @@ -8684,7 +9069,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_bad_path(self): """ @@ -8699,10 +9084,14 @@ def get_bad_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderErrorBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShareFolderErrorBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShareFolderErrorBase_validator = bv.Union(ShareFolderErrorBase) + class ShareFolderError(ShareFolderErrorBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8722,13 +9111,17 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShareFolderError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShareFolderError_validator = bv.Union(ShareFolderError) + class ShareFolderErrorBaseV2(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8747,7 +9140,7 @@ class ShareFolderErrorBaseV2(bb.Union): ``ShareFolderArg.shared_link_policy``. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition email_unverified = None # Attribute is overwritten below the class definition @@ -8763,7 +9156,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == 'email_unverified' + return self._tag == "email_unverified" def is_team_policy_disallows_member_policy(self): """ @@ -8771,7 +9164,7 @@ def is_team_policy_disallows_member_policy(self): :rtype: bool """ - return self._tag == 'team_policy_disallows_member_policy' + return self._tag == "team_policy_disallows_member_policy" def is_disallowed_shared_link_policy(self): """ @@ -8779,7 +9172,7 @@ def is_disallowed_shared_link_policy(self): :rtype: bool """ - return self._tag == 'disallowed_shared_link_policy' + return self._tag == "disallowed_shared_link_policy" def is_other(self): """ @@ -8787,13 +9180,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderErrorBaseV2, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShareFolderErrorBaseV2, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShareFolderErrorBaseV2_validator = bv.Union(ShareFolderErrorBaseV2) + class ShareFolderErrorV2(ShareFolderErrorBaseV2): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8813,13 +9210,17 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderErrorV2, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShareFolderErrorV2, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShareFolderErrorV2_validator = bv.Union(ShareFolderErrorV2) + class ShareFolderJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8840,7 +9241,7 @@ def complete(cls, val): :param SharedFolderMetadata val: :rtype: ShareFolderJobStatus """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -8851,7 +9252,7 @@ def failed(cls, val): :param ShareFolderError val: :rtype: ShareFolderJobStatus """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -8859,7 +9260,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -8867,7 +9268,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def get_complete(self): """ @@ -8892,10 +9293,14 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShareFolderJobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShareFolderJobStatus_validator = bv.Union(ShareFolderJobStatus) + class ShareFolderLaunch(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8912,7 +9317,7 @@ def complete(cls, val): :param SharedFolderMetadata val: :rtype: ShareFolderLaunch """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -8920,7 +9325,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def get_complete(self): """ @@ -8933,10 +9338,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShareFolderLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShareFolderLaunch, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShareFolderLaunch_validator = bv.Union(ShareFolderLaunch) + class SharePathError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8980,7 +9389,7 @@ class SharePathError(bb.Union): We do not support sharing the Family folder. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition is_file = None # Attribute is overwritten below the class definition @@ -9023,7 +9432,7 @@ def already_shared(cls, val): :param SharedFolderMetadata val: :rtype: SharePathError """ - return cls('already_shared', val) + return cls("already_shared", val) def is_is_file(self): """ @@ -9031,7 +9440,7 @@ def is_is_file(self): :rtype: bool """ - return self._tag == 'is_file' + return self._tag == "is_file" def is_inside_shared_folder(self): """ @@ -9039,7 +9448,7 @@ def is_inside_shared_folder(self): :rtype: bool """ - return self._tag == 'inside_shared_folder' + return self._tag == "inside_shared_folder" def is_contains_shared_folder(self): """ @@ -9047,7 +9456,7 @@ def is_contains_shared_folder(self): :rtype: bool """ - return self._tag == 'contains_shared_folder' + return self._tag == "contains_shared_folder" def is_contains_app_folder(self): """ @@ -9055,7 +9464,7 @@ def is_contains_app_folder(self): :rtype: bool """ - return self._tag == 'contains_app_folder' + return self._tag == "contains_app_folder" def is_contains_team_folder(self): """ @@ -9063,7 +9472,7 @@ def is_contains_team_folder(self): :rtype: bool """ - return self._tag == 'contains_team_folder' + return self._tag == "contains_team_folder" def is_is_app_folder(self): """ @@ -9071,7 +9480,7 @@ def is_is_app_folder(self): :rtype: bool """ - return self._tag == 'is_app_folder' + return self._tag == "is_app_folder" def is_inside_app_folder(self): """ @@ -9079,7 +9488,7 @@ def is_inside_app_folder(self): :rtype: bool """ - return self._tag == 'inside_app_folder' + return self._tag == "inside_app_folder" def is_is_public_folder(self): """ @@ -9087,7 +9496,7 @@ def is_is_public_folder(self): :rtype: bool """ - return self._tag == 'is_public_folder' + return self._tag == "is_public_folder" def is_inside_public_folder(self): """ @@ -9095,7 +9504,7 @@ def is_inside_public_folder(self): :rtype: bool """ - return self._tag == 'inside_public_folder' + return self._tag == "inside_public_folder" def is_already_shared(self): """ @@ -9103,7 +9512,7 @@ def is_already_shared(self): :rtype: bool """ - return self._tag == 'already_shared' + return self._tag == "already_shared" def is_invalid_path(self): """ @@ -9111,7 +9520,7 @@ def is_invalid_path(self): :rtype: bool """ - return self._tag == 'invalid_path' + return self._tag == "invalid_path" def is_is_osx_package(self): """ @@ -9119,7 +9528,7 @@ def is_is_osx_package(self): :rtype: bool """ - return self._tag == 'is_osx_package' + return self._tag == "is_osx_package" def is_inside_osx_package(self): """ @@ -9127,7 +9536,7 @@ def is_inside_osx_package(self): :rtype: bool """ - return self._tag == 'inside_osx_package' + return self._tag == "inside_osx_package" def is_is_vault(self): """ @@ -9135,7 +9544,7 @@ def is_is_vault(self): :rtype: bool """ - return self._tag == 'is_vault' + return self._tag == "is_vault" def is_is_vault_locked(self): """ @@ -9143,7 +9552,7 @@ def is_is_vault_locked(self): :rtype: bool """ - return self._tag == 'is_vault_locked' + return self._tag == "is_vault_locked" def is_is_family(self): """ @@ -9151,7 +9560,7 @@ def is_is_family(self): :rtype: bool """ - return self._tag == 'is_family' + return self._tag == "is_family" def is_other(self): """ @@ -9159,7 +9568,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_already_shared(self): """ @@ -9175,10 +9584,14 @@ def get_already_shared(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharePathError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharePathError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharePathError_validator = bv.Union(SharePathError) + class SharePathErrorBaseV2(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9218,7 +9631,7 @@ class SharePathErrorBaseV2(bb.Union): We do not support sharing a folder inside a locked Vault. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition is_file = None # Attribute is overwritten below the class definition @@ -9257,7 +9670,7 @@ def already_shared(cls, val): :param SharedFolderMetadata val: :rtype: SharePathErrorBaseV2 """ - return cls('already_shared', val) + return cls("already_shared", val) def is_is_file(self): """ @@ -9265,7 +9678,7 @@ def is_is_file(self): :rtype: bool """ - return self._tag == 'is_file' + return self._tag == "is_file" def is_inside_shared_folder(self): """ @@ -9273,7 +9686,7 @@ def is_inside_shared_folder(self): :rtype: bool """ - return self._tag == 'inside_shared_folder' + return self._tag == "inside_shared_folder" def is_contains_shared_folder(self): """ @@ -9281,7 +9694,7 @@ def is_contains_shared_folder(self): :rtype: bool """ - return self._tag == 'contains_shared_folder' + return self._tag == "contains_shared_folder" def is_contains_team_folder(self): """ @@ -9289,7 +9702,7 @@ def is_contains_team_folder(self): :rtype: bool """ - return self._tag == 'contains_team_folder' + return self._tag == "contains_team_folder" def is_is_app_folder(self): """ @@ -9297,7 +9710,7 @@ def is_is_app_folder(self): :rtype: bool """ - return self._tag == 'is_app_folder' + return self._tag == "is_app_folder" def is_inside_app_folder(self): """ @@ -9305,7 +9718,7 @@ def is_inside_app_folder(self): :rtype: bool """ - return self._tag == 'inside_app_folder' + return self._tag == "inside_app_folder" def is_is_public_folder(self): """ @@ -9313,7 +9726,7 @@ def is_is_public_folder(self): :rtype: bool """ - return self._tag == 'is_public_folder' + return self._tag == "is_public_folder" def is_inside_public_folder(self): """ @@ -9321,7 +9734,7 @@ def is_inside_public_folder(self): :rtype: bool """ - return self._tag == 'inside_public_folder' + return self._tag == "inside_public_folder" def is_already_shared(self): """ @@ -9329,7 +9742,7 @@ def is_already_shared(self): :rtype: bool """ - return self._tag == 'already_shared' + return self._tag == "already_shared" def is_invalid_path(self): """ @@ -9337,7 +9750,7 @@ def is_invalid_path(self): :rtype: bool """ - return self._tag == 'invalid_path' + return self._tag == "invalid_path" def is_is_osx_package(self): """ @@ -9345,7 +9758,7 @@ def is_is_osx_package(self): :rtype: bool """ - return self._tag == 'is_osx_package' + return self._tag == "is_osx_package" def is_inside_osx_package(self): """ @@ -9353,7 +9766,7 @@ def is_inside_osx_package(self): :rtype: bool """ - return self._tag == 'inside_osx_package' + return self._tag == "inside_osx_package" def is_is_vault(self): """ @@ -9361,7 +9774,7 @@ def is_is_vault(self): :rtype: bool """ - return self._tag == 'is_vault' + return self._tag == "is_vault" def is_is_vault_locked(self): """ @@ -9369,7 +9782,7 @@ def is_is_vault_locked(self): :rtype: bool """ - return self._tag == 'is_vault_locked' + return self._tag == "is_vault_locked" def is_other(self): """ @@ -9377,7 +9790,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_already_shared(self): """ @@ -9393,10 +9806,14 @@ def get_already_shared(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharePathErrorBaseV2, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharePathErrorBaseV2, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharePathErrorBaseV2_validator = bv.Union(SharePathErrorBaseV2) + class SharePathErrorV2(SharePathErrorBaseV2): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9420,7 +9837,7 @@ def is_is_family(self): :rtype: bool """ - return self._tag == 'is_family' + return self._tag == "is_family" def is_contains_app_folder(self): """ @@ -9428,13 +9845,17 @@ def is_contains_app_folder(self): :rtype: bool """ - return self._tag == 'contains_app_folder' + return self._tag == "contains_app_folder" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharePathErrorV2, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharePathErrorV2, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharePathErrorV2_validator = bv.Union(SharePathErrorV2) + class SharedContentLinkMetadata(SharedContentLinkMetadataBase): """ Metadata of a shared link for a file or folder. @@ -9448,29 +9869,33 @@ class SharedContentLinkMetadata(SharedContentLinkMetadataBase): """ __slots__ = [ - '_audience_exceptions_value', - '_url_value', + "_audience_exceptions_value", + "_url_value", ] _has_required_fields = True - def __init__(self, - audience_options=None, - current_audience=None, - link_permissions=None, - password_protected=None, - url=None, - access_level=None, - audience_restricting_shared_folder=None, - expiry=None, - audience_exceptions=None): - super(SharedContentLinkMetadata, self).__init__(audience_options, - current_audience, - link_permissions, - password_protected, - access_level, - audience_restricting_shared_folder, - expiry) + def __init__( + self, + audience_options=None, + current_audience=None, + link_permissions=None, + password_protected=None, + url=None, + access_level=None, + audience_restricting_shared_folder=None, + expiry=None, + audience_exceptions=None, + ): + super(SharedContentLinkMetadata, self).__init__( + audience_options, + current_audience, + link_permissions, + password_protected, + access_level, + audience_restricting_shared_folder, + expiry, + ) self._audience_exceptions_value = bb.NOT_SET self._url_value = bb.NOT_SET if audience_exceptions is not None: @@ -9485,10 +9910,14 @@ def __init__(self, url = bb.Attribute("url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentLinkMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentLinkMetadata_validator = bv.Struct(SharedContentLinkMetadata) + class SharedFileMembers(bb.Struct): """ Shared file user, group, and invitee membership. Used for the results of @@ -9512,19 +9941,15 @@ class SharedFileMembers(bb.Struct): """ __slots__ = [ - '_users_value', - '_groups_value', - '_invitees_value', - '_cursor_value', + "_users_value", + "_groups_value", + "_invitees_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - users=None, - groups=None, - invitees=None, - cursor=None): + def __init__(self, users=None, groups=None, invitees=None, cursor=None): self._users_value = bb.NOT_SET self._groups_value = bb.NOT_SET self._invitees_value = bb.NOT_SET @@ -9551,10 +9976,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFileMembers, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFileMembers, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFileMembers_validator = bv.Struct(SharedFileMembers) + class SharedFileMetadata(bb.Struct): """ Properties of the shared file. @@ -9605,39 +10034,41 @@ class SharedFileMetadata(bb.Struct): """ __slots__ = [ - '_access_type_value', - '_id_value', - '_expected_link_metadata_value', - '_link_metadata_value', - '_name_value', - '_owner_display_names_value', - '_owner_team_value', - '_parent_shared_folder_id_value', - '_path_display_value', - '_path_lower_value', - '_permissions_value', - '_policy_value', - '_preview_url_value', - '_time_invited_value', + "_access_type_value", + "_id_value", + "_expected_link_metadata_value", + "_link_metadata_value", + "_name_value", + "_owner_display_names_value", + "_owner_team_value", + "_parent_shared_folder_id_value", + "_path_display_value", + "_path_lower_value", + "_permissions_value", + "_policy_value", + "_preview_url_value", + "_time_invited_value", ] _has_required_fields = True - def __init__(self, - id=None, - name=None, - policy=None, - preview_url=None, - access_type=None, - expected_link_metadata=None, - link_metadata=None, - owner_display_names=None, - owner_team=None, - parent_shared_folder_id=None, - path_display=None, - path_lower=None, - permissions=None, - time_invited=None): + def __init__( + self, + id=None, + name=None, + policy=None, + preview_url=None, + access_type=None, + expected_link_metadata=None, + link_metadata=None, + owner_display_names=None, + owner_team=None, + parent_shared_folder_id=None, + path_display=None, + path_lower=None, + permissions=None, + time_invited=None, + ): self._access_type_value = bb.NOT_SET self._id_value = bb.NOT_SET self._expected_link_metadata_value = bb.NOT_SET @@ -9688,7 +10119,9 @@ def __init__(self, id = bb.Attribute("id") # Instance attribute type: ExpectedSharedContentLinkMetadata (validator is set below) - expected_link_metadata = bb.Attribute("expected_link_metadata", nullable=True, user_defined=True) + expected_link_metadata = bb.Attribute( + "expected_link_metadata", nullable=True, user_defined=True + ) # Instance attribute type: SharedContentLinkMetadata (validator is set below) link_metadata = bb.Attribute("link_metadata", nullable=True, user_defined=True) @@ -9724,10 +10157,14 @@ def __init__(self, time_invited = bb.Attribute("time_invited", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFileMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFileMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFileMetadata_validator = bv.Struct(SharedFileMetadata) + class SharedFolderAccessError(bb.Union): """ There is an error accessing the shared folder. @@ -9748,7 +10185,7 @@ class SharedFolderAccessError(bb.Union): The shared folder is unmounted. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_id = None # Attribute is overwritten below the class definition @@ -9768,7 +10205,7 @@ def is_invalid_id(self): :rtype: bool """ - return self._tag == 'invalid_id' + return self._tag == "invalid_id" def is_not_a_member(self): """ @@ -9776,7 +10213,7 @@ def is_not_a_member(self): :rtype: bool """ - return self._tag == 'not_a_member' + return self._tag == "not_a_member" def is_invalid_member(self): """ @@ -9784,7 +10221,7 @@ def is_invalid_member(self): :rtype: bool """ - return self._tag == 'invalid_member' + return self._tag == "invalid_member" def is_email_unverified(self): """ @@ -9792,7 +10229,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == 'email_unverified' + return self._tag == "email_unverified" def is_unmounted(self): """ @@ -9800,7 +10237,7 @@ def is_unmounted(self): :rtype: bool """ - return self._tag == 'unmounted' + return self._tag == "unmounted" def is_other(self): """ @@ -9808,13 +10245,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderAccessError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderAccessError_validator = bv.Union(SharedFolderAccessError) + class SharedFolderMemberError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9830,7 +10271,7 @@ class SharedFolderMemberError(bb.Union): :vartype SharedFolderMemberError.no_explicit_access: MemberAccessLevelResult """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_dropbox_id = None # Attribute is overwritten below the class definition @@ -9847,7 +10288,7 @@ def no_explicit_access(cls, val): :param MemberAccessLevelResult val: :rtype: SharedFolderMemberError """ - return cls('no_explicit_access', val) + return cls("no_explicit_access", val) def is_invalid_dropbox_id(self): """ @@ -9855,7 +10296,7 @@ def is_invalid_dropbox_id(self): :rtype: bool """ - return self._tag == 'invalid_dropbox_id' + return self._tag == "invalid_dropbox_id" def is_not_a_member(self): """ @@ -9863,7 +10304,7 @@ def is_not_a_member(self): :rtype: bool """ - return self._tag == 'not_a_member' + return self._tag == "not_a_member" def is_no_explicit_access(self): """ @@ -9871,7 +10312,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == 'no_explicit_access' + return self._tag == "no_explicit_access" def is_other(self): """ @@ -9879,7 +10320,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_no_explicit_access(self): """ @@ -9894,10 +10335,14 @@ def get_no_explicit_access(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderMemberError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderMemberError_validator = bv.Union(SharedFolderMemberError) + class SharedFolderMembers(bb.Struct): """ Shared folder user and group membership. @@ -9916,19 +10361,15 @@ class SharedFolderMembers(bb.Struct): """ __slots__ = [ - '_users_value', - '_groups_value', - '_invitees_value', - '_cursor_value', + "_users_value", + "_groups_value", + "_invitees_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - users=None, - groups=None, - invitees=None, - cursor=None): + def __init__(self, users=None, groups=None, invitees=None, cursor=None): self._users_value = bb.NOT_SET self._groups_value = bb.NOT_SET self._invitees_value = bb.NOT_SET @@ -9955,10 +10396,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMembers, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderMembers, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderMembers_validator = bv.Struct(SharedFolderMembers) + class SharedFolderMetadataBase(bb.Struct): """ Properties of the shared folder. @@ -9990,29 +10435,31 @@ class SharedFolderMetadataBase(bb.Struct): """ __slots__ = [ - '_access_type_value', - '_is_inside_team_folder_value', - '_is_team_folder_value', - '_owner_display_names_value', - '_owner_team_value', - '_parent_shared_folder_id_value', - '_path_display_value', - '_path_lower_value', - '_parent_folder_name_value', + "_access_type_value", + "_is_inside_team_folder_value", + "_is_team_folder_value", + "_owner_display_names_value", + "_owner_team_value", + "_parent_shared_folder_id_value", + "_path_display_value", + "_path_lower_value", + "_parent_folder_name_value", ] _has_required_fields = True - def __init__(self, - access_type=None, - is_inside_team_folder=None, - is_team_folder=None, - owner_display_names=None, - owner_team=None, - parent_shared_folder_id=None, - path_display=None, - path_lower=None, - parent_folder_name=None): + def __init__( + self, + access_type=None, + is_inside_team_folder=None, + is_team_folder=None, + owner_display_names=None, + owner_team=None, + parent_shared_folder_id=None, + path_display=None, + path_lower=None, + parent_folder_name=None, + ): self._access_type_value = bb.NOT_SET self._is_inside_team_folder_value = bb.NOT_SET self._is_team_folder_value = bb.NOT_SET @@ -10069,10 +10516,14 @@ def __init__(self, parent_folder_name = bb.Attribute("parent_folder_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMetadataBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderMetadataBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderMetadataBase_validator = bv.Struct(SharedFolderMetadataBase) + class SharedFolderMetadata(SharedFolderMetadataBase): """ The metadata which includes basic information about the shared folder. @@ -10102,47 +10553,51 @@ class SharedFolderMetadata(SharedFolderMetadataBase): """ __slots__ = [ - '_link_metadata_value', - '_name_value', - '_permissions_value', - '_policy_value', - '_preview_url_value', - '_shared_folder_id_value', - '_time_invited_value', - '_access_inheritance_value', - '_folder_id_value', + "_link_metadata_value", + "_name_value", + "_permissions_value", + "_policy_value", + "_preview_url_value", + "_shared_folder_id_value", + "_time_invited_value", + "_access_inheritance_value", + "_folder_id_value", ] _has_required_fields = True - def __init__(self, - access_type=None, - is_inside_team_folder=None, - is_team_folder=None, - name=None, - policy=None, - preview_url=None, - shared_folder_id=None, - time_invited=None, - owner_display_names=None, - owner_team=None, - parent_shared_folder_id=None, - path_display=None, - path_lower=None, - parent_folder_name=None, - link_metadata=None, - permissions=None, - access_inheritance=None, - folder_id=None): - super(SharedFolderMetadata, self).__init__(access_type, - is_inside_team_folder, - is_team_folder, - owner_display_names, - owner_team, - parent_shared_folder_id, - path_display, - path_lower, - parent_folder_name) + def __init__( + self, + access_type=None, + is_inside_team_folder=None, + is_team_folder=None, + name=None, + policy=None, + preview_url=None, + shared_folder_id=None, + time_invited=None, + owner_display_names=None, + owner_team=None, + parent_shared_folder_id=None, + path_display=None, + path_lower=None, + parent_folder_name=None, + link_metadata=None, + permissions=None, + access_inheritance=None, + folder_id=None, + ): + super(SharedFolderMetadata, self).__init__( + access_type, + is_inside_team_folder, + is_team_folder, + owner_display_names, + owner_team, + parent_shared_folder_id, + path_display, + path_lower, + parent_folder_name, + ) self._link_metadata_value = bb.NOT_SET self._name_value = bb.NOT_SET self._permissions_value = bb.NOT_SET @@ -10199,10 +10654,14 @@ def __init__(self, folder_id = bb.Attribute("folder_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderMetadata_validator = bv.Struct(SharedFolderMetadata) + class SharedLinkAccessFailureReason(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10223,7 +10682,7 @@ class SharedLinkAccessFailureReason(bb.Union): Access is allowed for the shared link's owner only. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition login_required = None # Attribute is overwritten below the class definition @@ -10243,7 +10702,7 @@ def is_login_required(self): :rtype: bool """ - return self._tag == 'login_required' + return self._tag == "login_required" def is_email_verify_required(self): """ @@ -10251,7 +10710,7 @@ def is_email_verify_required(self): :rtype: bool """ - return self._tag == 'email_verify_required' + return self._tag == "email_verify_required" def is_password_required(self): """ @@ -10259,7 +10718,7 @@ def is_password_required(self): :rtype: bool """ - return self._tag == 'password_required' + return self._tag == "password_required" def is_team_only(self): """ @@ -10267,7 +10726,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_owner_only(self): """ @@ -10275,7 +10734,7 @@ def is_owner_only(self): :rtype: bool """ - return self._tag == 'owner_only' + return self._tag == "owner_only" def is_other(self): """ @@ -10283,13 +10742,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAccessFailureReason, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkAccessFailureReason, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkAccessFailureReason_validator = bv.Union(SharedLinkAccessFailureReason) + class SharedLinkAlreadyExistsMetadata(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10301,7 +10764,7 @@ class SharedLinkAlreadyExistsMetadata(bb.Union): :vartype SharedLinkAlreadyExistsMetadata.metadata: SharedLinkMetadata """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -10314,7 +10777,7 @@ def metadata(cls, val): :param SharedLinkMetadata val: :rtype: SharedLinkAlreadyExistsMetadata """ - return cls('metadata', val) + return cls("metadata", val) def is_metadata(self): """ @@ -10322,7 +10785,7 @@ def is_metadata(self): :rtype: bool """ - return self._tag == 'metadata' + return self._tag == "metadata" def is_other(self): """ @@ -10330,7 +10793,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_metadata(self): """ @@ -10345,10 +10808,14 @@ def get_metadata(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAlreadyExistsMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkAlreadyExistsMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkAlreadyExistsMetadata_validator = bv.Union(SharedLinkAlreadyExistsMetadata) + class SharedLinkMetadataError(SharedLinkError): """ The potential errors for a call to get_shared_link_metadata. @@ -10359,10 +10826,14 @@ class SharedLinkMetadataError(SharedLinkError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkMetadataError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkMetadataError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkMetadataError_validator = bv.Union(SharedLinkMetadataError) + class SharedLinkPolicy(bb.Union): """ Who can view shared links in this folder. @@ -10380,7 +10851,7 @@ class SharedLinkPolicy(bb.Union): Links can only be shared among members of the shared folder. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition anyone = None # Attribute is overwritten below the class definition @@ -10396,7 +10867,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == 'anyone' + return self._tag == "anyone" def is_team(self): """ @@ -10404,7 +10875,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_members(self): """ @@ -10412,7 +10883,7 @@ def is_members(self): :rtype: bool """ - return self._tag == 'members' + return self._tag == "members" def is_other(self): """ @@ -10420,13 +10891,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkPolicy_validator = bv.Union(SharedLinkPolicy) + class SharedLinkSettings(bb.Struct): """ :ivar SharedLinkSettings.require_password: @@ -10453,25 +10928,27 @@ class SharedLinkSettings(bb.Struct): """ __slots__ = [ - '_require_password_value', - '_link_password_value', - '_expires_value', - '_audience_value', - '_access_value', - '_requested_visibility_value', - '_allow_download_value', + "_require_password_value", + "_link_password_value", + "_expires_value", + "_audience_value", + "_access_value", + "_requested_visibility_value", + "_allow_download_value", ] _has_required_fields = False - def __init__(self, - require_password=None, - link_password=None, - expires=None, - audience=None, - access=None, - requested_visibility=None, - allow_download=None): + def __init__( + self, + require_password=None, + link_password=None, + expires=None, + audience=None, + access=None, + requested_visibility=None, + allow_download=None, + ): self._require_password_value = bb.NOT_SET self._link_password_value = bb.NOT_SET self._expires_value = bb.NOT_SET @@ -10516,10 +10993,14 @@ def __init__(self, allow_download = bb.Attribute("allow_download", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettings, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettings, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettings_validator = bv.Struct(SharedLinkSettings) + class SharedLinkSettingsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10551,7 +11032,7 @@ def is_invalid_settings(self): :rtype: bool """ - return self._tag == 'invalid_settings' + return self._tag == "invalid_settings" def is_not_authorized(self): """ @@ -10559,13 +11040,17 @@ def is_not_authorized(self): :rtype: bool """ - return self._tag == 'not_authorized' + return self._tag == "not_authorized" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsError_validator = bv.Union(SharedLinkSettingsError) + class SharingFileAccessError(bb.Union): """ User could not access this file. @@ -10589,7 +11074,7 @@ class SharingFileAccessError(bb.Union): A Mac OS X package can't be shared this way. Use a shared link instead. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_permission = None # Attribute is overwritten below the class definition @@ -10609,7 +11094,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_invalid_file(self): """ @@ -10617,7 +11102,7 @@ def is_invalid_file(self): :rtype: bool """ - return self._tag == 'invalid_file' + return self._tag == "invalid_file" def is_is_folder(self): """ @@ -10625,7 +11110,7 @@ def is_is_folder(self): :rtype: bool """ - return self._tag == 'is_folder' + return self._tag == "is_folder" def is_inside_public_folder(self): """ @@ -10633,7 +11118,7 @@ def is_inside_public_folder(self): :rtype: bool """ - return self._tag == 'inside_public_folder' + return self._tag == "inside_public_folder" def is_inside_osx_package(self): """ @@ -10641,7 +11126,7 @@ def is_inside_osx_package(self): :rtype: bool """ - return self._tag == 'inside_osx_package' + return self._tag == "inside_osx_package" def is_other(self): """ @@ -10649,13 +11134,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingFileAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingFileAccessError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingFileAccessError_validator = bv.Union(SharingFileAccessError) + class SharingUserError(bb.Union): """ User account had a problem preventing this action. @@ -10670,7 +11159,7 @@ class SharingUserError(bb.Union): their email address `here `_. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition email_unverified = None # Attribute is overwritten below the class definition @@ -10682,7 +11171,7 @@ def is_email_unverified(self): :rtype: bool """ - return self._tag == 'email_unverified' + return self._tag == "email_unverified" def is_other(self): """ @@ -10690,13 +11179,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingUserError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingUserError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingUserError_validator = bv.Union(SharingUserError) + class TeamMemberInfo(bb.Struct): """ Information about a team member. @@ -10711,17 +11204,14 @@ class TeamMemberInfo(bb.Struct): """ __slots__ = [ - '_team_info_value', - '_display_name_value', - '_member_id_value', + "_team_info_value", + "_display_name_value", + "_member_id_value", ] _has_required_fields = True - def __init__(self, - team_info=None, - display_name=None, - member_id=None): + def __init__(self, team_info=None, display_name=None, member_id=None): self._team_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._member_id_value = bb.NOT_SET @@ -10742,10 +11232,14 @@ def __init__(self, member_id = bb.Attribute("member_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberInfo_validator = bv.Struct(TeamMemberInfo) + class TransferFolderArg(bb.Struct): """ :ivar TransferFolderArg.shared_folder_id: @@ -10755,15 +11249,13 @@ class TransferFolderArg(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', - '_to_dropbox_id_value', + "_shared_folder_id_value", + "_to_dropbox_id_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - to_dropbox_id=None): + def __init__(self, shared_folder_id=None, to_dropbox_id=None): self._shared_folder_id_value = bb.NOT_SET self._to_dropbox_id_value = bb.NOT_SET if shared_folder_id is not None: @@ -10778,10 +11270,14 @@ def __init__(self, to_dropbox_id = bb.Attribute("to_dropbox_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TransferFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TransferFolderArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TransferFolderArg_validator = bv.Struct(TransferFolderArg) + class TransferFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10805,7 +11301,7 @@ class TransferFolderError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_dropbox_id = None # Attribute is overwritten below the class definition @@ -10830,7 +11326,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: TransferFolderError """ - return cls('access_error', val) + return cls("access_error", val) def is_access_error(self): """ @@ -10838,7 +11334,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_invalid_dropbox_id(self): """ @@ -10846,7 +11342,7 @@ def is_invalid_dropbox_id(self): :rtype: bool """ - return self._tag == 'invalid_dropbox_id' + return self._tag == "invalid_dropbox_id" def is_new_owner_not_a_member(self): """ @@ -10854,7 +11350,7 @@ def is_new_owner_not_a_member(self): :rtype: bool """ - return self._tag == 'new_owner_not_a_member' + return self._tag == "new_owner_not_a_member" def is_new_owner_unmounted(self): """ @@ -10862,7 +11358,7 @@ def is_new_owner_unmounted(self): :rtype: bool """ - return self._tag == 'new_owner_unmounted' + return self._tag == "new_owner_unmounted" def is_new_owner_email_unverified(self): """ @@ -10870,7 +11366,7 @@ def is_new_owner_email_unverified(self): :rtype: bool """ - return self._tag == 'new_owner_email_unverified' + return self._tag == "new_owner_email_unverified" def is_team_folder(self): """ @@ -10878,7 +11374,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == 'team_folder' + return self._tag == "team_folder" def is_no_permission(self): """ @@ -10886,7 +11382,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_other(self): """ @@ -10894,7 +11390,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -10907,10 +11403,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TransferFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TransferFolderError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TransferFolderError_validator = bv.Union(TransferFolderError) + class UnmountFolderArg(bb.Struct): """ :ivar UnmountFolderArg.shared_folder_id: @@ -10918,13 +11418,12 @@ class UnmountFolderArg(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', + "_shared_folder_id_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None): + def __init__(self, shared_folder_id=None): self._shared_folder_id_value = bb.NOT_SET if shared_folder_id is not None: self.shared_folder_id = shared_folder_id @@ -10933,10 +11432,14 @@ def __init__(self, shared_folder_id = bb.Attribute("shared_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnmountFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UnmountFolderArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UnmountFolderArg_validator = bv.Struct(UnmountFolderArg) + class UnmountFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10951,7 +11454,7 @@ class UnmountFolderError(bb.Union): resides in the current user's Dropbox. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_permission = None # Attribute is overwritten below the class definition @@ -10968,7 +11471,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: UnmountFolderError """ - return cls('access_error', val) + return cls("access_error", val) def is_access_error(self): """ @@ -10976,7 +11479,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_no_permission(self): """ @@ -10984,7 +11487,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_not_unmountable(self): """ @@ -10992,7 +11495,7 @@ def is_not_unmountable(self): :rtype: bool """ - return self._tag == 'not_unmountable' + return self._tag == "not_unmountable" def is_other(self): """ @@ -11000,7 +11503,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -11013,10 +11516,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnmountFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UnmountFolderError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UnmountFolderError_validator = bv.Union(UnmountFolderError) + class UnshareFileArg(bb.Struct): """ Arguments for :meth:`dropbox.dropbox_client.Dropbox.sharing_unshare_file`. @@ -11026,13 +11533,12 @@ class UnshareFileArg(bb.Struct): """ __slots__ = [ - '_file_value', + "_file_value", ] _has_required_fields = True - def __init__(self, - file=None): + def __init__(self, file=None): self._file_value = bb.NOT_SET if file is not None: self.file = file @@ -11041,10 +11547,14 @@ def __init__(self, file = bb.Attribute("file") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnshareFileArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UnshareFileArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UnshareFileArg_validator = bv.Struct(UnshareFileArg) + class UnshareFileError(bb.Union): """ Error result for @@ -11055,7 +11565,7 @@ class UnshareFileError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -11068,7 +11578,7 @@ def user_error(cls, val): :param SharingUserError val: :rtype: UnshareFileError """ - return cls('user_error', val) + return cls("user_error", val) @classmethod def access_error(cls, val): @@ -11079,7 +11589,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: UnshareFileError """ - return cls('access_error', val) + return cls("access_error", val) def is_user_error(self): """ @@ -11087,7 +11597,7 @@ def is_user_error(self): :rtype: bool """ - return self._tag == 'user_error' + return self._tag == "user_error" def is_access_error(self): """ @@ -11095,7 +11605,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_other(self): """ @@ -11103,7 +11613,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_user_error(self): """ @@ -11126,10 +11636,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnshareFileError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UnshareFileError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UnshareFileError_validator = bv.Union(UnshareFileError) + class UnshareFolderArg(bb.Struct): """ :ivar UnshareFolderArg.shared_folder_id: @@ -11141,15 +11655,13 @@ class UnshareFolderArg(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', - '_leave_a_copy_value', + "_shared_folder_id_value", + "_leave_a_copy_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - leave_a_copy=None): + def __init__(self, shared_folder_id=None, leave_a_copy=None): self._shared_folder_id_value = bb.NOT_SET self._leave_a_copy_value = bb.NOT_SET if shared_folder_id is not None: @@ -11164,10 +11676,14 @@ def __init__(self, leave_a_copy = bb.Attribute("leave_a_copy") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnshareFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UnshareFolderArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UnshareFolderArg_validator = bv.Struct(UnshareFolderArg) + class UnshareFolderError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11182,7 +11698,7 @@ class UnshareFolderError(bb.Union): This shared folder has too many files to be unshared. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition team_folder = None # Attribute is overwritten below the class definition @@ -11201,7 +11717,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: UnshareFolderError """ - return cls('access_error', val) + return cls("access_error", val) def is_access_error(self): """ @@ -11209,7 +11725,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_team_folder(self): """ @@ -11217,7 +11733,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == 'team_folder' + return self._tag == "team_folder" def is_no_permission(self): """ @@ -11225,7 +11741,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_too_many_files(self): """ @@ -11233,7 +11749,7 @@ def is_too_many_files(self): :rtype: bool """ - return self._tag == 'too_many_files' + return self._tag == "too_many_files" def is_other(self): """ @@ -11241,7 +11757,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -11254,10 +11770,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UnshareFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UnshareFolderError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UnshareFolderError_validator = bv.Union(UnshareFolderError) + class UpdateFileMemberArgs(bb.Struct): """ Arguments for @@ -11272,17 +11792,14 @@ class UpdateFileMemberArgs(bb.Struct): """ __slots__ = [ - '_file_value', - '_member_value', - '_access_level_value', + "_file_value", + "_member_value", + "_access_level_value", ] _has_required_fields = True - def __init__(self, - file=None, - member=None, - access_level=None): + def __init__(self, file=None, member=None, access_level=None): self._file_value = bb.NOT_SET self._member_value = bb.NOT_SET self._access_level_value = bb.NOT_SET @@ -11303,10 +11820,14 @@ def __init__(self, access_level = bb.Attribute("access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFileMemberArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFileMemberArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFileMemberArgs_validator = bv.Struct(UpdateFileMemberArgs) + class UpdateFilePolicyArg(bb.Struct): """ Arguments for @@ -11325,19 +11846,15 @@ class UpdateFilePolicyArg(bb.Struct): """ __slots__ = [ - '_file_value', - '_actions_value', - '_link_settings_value', - '_viewer_info_policy_value', + "_file_value", + "_actions_value", + "_link_settings_value", + "_viewer_info_policy_value", ] _has_required_fields = True - def __init__(self, - file=None, - actions=None, - link_settings=None, - viewer_info_policy=None): + def __init__(self, file=None, actions=None, link_settings=None, viewer_info_policy=None): self._file_value = bb.NOT_SET self._actions_value = bb.NOT_SET self._link_settings_value = bb.NOT_SET @@ -11364,10 +11881,14 @@ def __init__(self, viewer_info_policy = bb.Attribute("viewer_info_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFilePolicyArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFilePolicyArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFilePolicyArg_validator = bv.Struct(UpdateFilePolicyArg) + class UpdateFilePolicyError(bb.Union): """ Error result for @@ -11383,7 +11904,7 @@ class UpdateFilePolicyError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_file_settings = None # Attribute is overwritten below the class definition @@ -11400,7 +11921,7 @@ def access_error(cls, val): :param SharingFileAccessError val: :rtype: UpdateFilePolicyError """ - return cls('access_error', val) + return cls("access_error", val) def is_access_error(self): """ @@ -11408,7 +11929,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_invalid_file_settings(self): """ @@ -11416,7 +11937,7 @@ def is_invalid_file_settings(self): :rtype: bool """ - return self._tag == 'invalid_file_settings' + return self._tag == "invalid_file_settings" def is_no_permission(self): """ @@ -11424,7 +11945,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_other(self): """ @@ -11432,7 +11953,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -11445,10 +11966,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFilePolicyError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFilePolicyError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFilePolicyError_validator = bv.Union(UpdateFilePolicyError) + class UpdateFolderMemberArg(bb.Struct): """ :ivar UpdateFolderMemberArg.shared_folder_id: @@ -11462,17 +11987,14 @@ class UpdateFolderMemberArg(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', - '_member_value', - '_access_level_value', + "_shared_folder_id_value", + "_member_value", + "_access_level_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - member=None, - access_level=None): + def __init__(self, shared_folder_id=None, member=None, access_level=None): self._shared_folder_id_value = bb.NOT_SET self._member_value = bb.NOT_SET self._access_level_value = bb.NOT_SET @@ -11493,10 +12015,14 @@ def __init__(self, access_level = bb.Attribute("access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFolderMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFolderMemberArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFolderMemberArg_validator = bv.Struct(UpdateFolderMemberArg) + class UpdateFolderMemberError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11515,7 +12041,7 @@ class UpdateFolderMemberError(bb.Union): The current user does not have permission to perform this action. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition insufficient_plan = None # Attribute is overwritten below the class definition @@ -11532,7 +12058,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: UpdateFolderMemberError """ - return cls('access_error', val) + return cls("access_error", val) @classmethod def member_error(cls, val): @@ -11543,7 +12069,7 @@ def member_error(cls, val): :param SharedFolderMemberError val: :rtype: UpdateFolderMemberError """ - return cls('member_error', val) + return cls("member_error", val) @classmethod def no_explicit_access(cls, val): @@ -11554,7 +12080,7 @@ def no_explicit_access(cls, val): :param AddFolderMemberError val: :rtype: UpdateFolderMemberError """ - return cls('no_explicit_access', val) + return cls("no_explicit_access", val) def is_access_error(self): """ @@ -11562,7 +12088,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_member_error(self): """ @@ -11570,7 +12096,7 @@ def is_member_error(self): :rtype: bool """ - return self._tag == 'member_error' + return self._tag == "member_error" def is_no_explicit_access(self): """ @@ -11578,7 +12104,7 @@ def is_no_explicit_access(self): :rtype: bool """ - return self._tag == 'no_explicit_access' + return self._tag == "no_explicit_access" def is_insufficient_plan(self): """ @@ -11586,7 +12112,7 @@ def is_insufficient_plan(self): :rtype: bool """ - return self._tag == 'insufficient_plan' + return self._tag == "insufficient_plan" def is_no_permission(self): """ @@ -11594,7 +12120,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_other(self): """ @@ -11602,7 +12128,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -11638,10 +12164,14 @@ def get_no_explicit_access(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFolderMemberError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFolderMemberError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFolderMemberError_validator = bv.Union(UpdateFolderMemberError) + class UpdateFolderPolicyArg(bb.Struct): """ If any of the policies are unset, then they retain their current setting. @@ -11669,25 +12199,27 @@ class UpdateFolderPolicyArg(bb.Struct): """ __slots__ = [ - '_shared_folder_id_value', - '_member_policy_value', - '_acl_update_policy_value', - '_viewer_info_policy_value', - '_shared_link_policy_value', - '_link_settings_value', - '_actions_value', + "_shared_folder_id_value", + "_member_policy_value", + "_acl_update_policy_value", + "_viewer_info_policy_value", + "_shared_link_policy_value", + "_link_settings_value", + "_actions_value", ] _has_required_fields = True - def __init__(self, - shared_folder_id=None, - member_policy=None, - acl_update_policy=None, - viewer_info_policy=None, - shared_link_policy=None, - link_settings=None, - actions=None): + def __init__( + self, + shared_folder_id=None, + member_policy=None, + acl_update_policy=None, + viewer_info_policy=None, + shared_link_policy=None, + link_settings=None, + actions=None, + ): self._shared_folder_id_value = bb.NOT_SET self._member_policy_value = bb.NOT_SET self._acl_update_policy_value = bb.NOT_SET @@ -11732,10 +12264,14 @@ def __init__(self, actions = bb.Attribute("actions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFolderPolicyArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFolderPolicyArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFolderPolicyArg_validator = bv.Struct(UpdateFolderPolicyArg) + class UpdateFolderPolicyError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11757,7 +12293,7 @@ class UpdateFolderPolicyError(bb.Union): This action cannot be performed on a team shared folder. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition not_on_team = None # Attribute is overwritten below the class definition @@ -11780,7 +12316,7 @@ def access_error(cls, val): :param SharedFolderAccessError val: :rtype: UpdateFolderPolicyError """ - return cls('access_error', val) + return cls("access_error", val) def is_access_error(self): """ @@ -11788,7 +12324,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_not_on_team(self): """ @@ -11796,7 +12332,7 @@ def is_not_on_team(self): :rtype: bool """ - return self._tag == 'not_on_team' + return self._tag == "not_on_team" def is_team_policy_disallows_member_policy(self): """ @@ -11804,7 +12340,7 @@ def is_team_policy_disallows_member_policy(self): :rtype: bool """ - return self._tag == 'team_policy_disallows_member_policy' + return self._tag == "team_policy_disallows_member_policy" def is_disallowed_shared_link_policy(self): """ @@ -11812,7 +12348,7 @@ def is_disallowed_shared_link_policy(self): :rtype: bool """ - return self._tag == 'disallowed_shared_link_policy' + return self._tag == "disallowed_shared_link_policy" def is_no_permission(self): """ @@ -11820,7 +12356,7 @@ def is_no_permission(self): :rtype: bool """ - return self._tag == 'no_permission' + return self._tag == "no_permission" def is_team_folder(self): """ @@ -11828,7 +12364,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == 'team_folder' + return self._tag == "team_folder" def is_other(self): """ @@ -11836,7 +12372,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -11849,10 +12385,14 @@ def get_access_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UpdateFolderPolicyError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UpdateFolderPolicyError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UpdateFolderPolicyError_validator = bv.Union(UpdateFolderPolicyError) + class UserMembershipInfo(MembershipInfo): """ The information about a user member of the shared content. @@ -11862,21 +12402,20 @@ class UserMembershipInfo(MembershipInfo): """ __slots__ = [ - '_user_value', + "_user_value", ] _has_required_fields = True - def __init__(self, - access_type=None, - user=None, - permissions=None, - initials=None, - is_inherited=None): - super(UserMembershipInfo, self).__init__(access_type, - permissions, - initials, - is_inherited) + def __init__( + self, + access_type=None, + user=None, + permissions=None, + initials=None, + is_inherited=None, + ): + super(UserMembershipInfo, self).__init__(access_type, permissions, initials, is_inherited) self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -11885,10 +12424,14 @@ def __init__(self, user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserMembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserMembershipInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserMembershipInfo_validator = bv.Struct(UserMembershipInfo) + class UserFileMembershipInfo(UserMembershipInfo): """ The information about a user member of the shared content with an appended @@ -11903,25 +12446,25 @@ class UserFileMembershipInfo(UserMembershipInfo): """ __slots__ = [ - '_time_last_seen_value', - '_platform_type_value', + "_time_last_seen_value", + "_platform_type_value", ] _has_required_fields = True - def __init__(self, - access_type=None, - user=None, - permissions=None, - initials=None, - is_inherited=None, - time_last_seen=None, - platform_type=None): - super(UserFileMembershipInfo, self).__init__(access_type, - user, - permissions, - initials, - is_inherited) + def __init__( + self, + access_type=None, + user=None, + permissions=None, + initials=None, + is_inherited=None, + time_last_seen=None, + platform_type=None, + ): + super(UserFileMembershipInfo, self).__init__( + access_type, user, permissions, initials, is_inherited + ) self._time_last_seen_value = bb.NOT_SET self._platform_type_value = bb.NOT_SET if time_last_seen is not None: @@ -11936,10 +12479,14 @@ def __init__(self, platform_type = bb.Attribute("platform_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFileMembershipInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserFileMembershipInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserFileMembershipInfo_validator = bv.Struct(UserFileMembershipInfo) + class UserInfo(bb.Struct): """ Basic information about a user. Use @@ -11961,21 +12508,23 @@ class UserInfo(bb.Struct): """ __slots__ = [ - '_account_id_value', - '_email_value', - '_display_name_value', - '_same_team_value', - '_team_member_id_value', + "_account_id_value", + "_email_value", + "_display_name_value", + "_same_team_value", + "_team_member_id_value", ] _has_required_fields = True - def __init__(self, - account_id=None, - email=None, - display_name=None, - same_team=None, - team_member_id=None): + def __init__( + self, + account_id=None, + email=None, + display_name=None, + same_team=None, + team_member_id=None, + ): self._account_id_value = bb.NOT_SET self._email_value = bb.NOT_SET self._display_name_value = bb.NOT_SET @@ -12010,8 +12559,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(UserInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + UserInfo_validator = bv.Struct(UserInfo) + class ViewerInfoPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12024,7 +12575,7 @@ class ViewerInfoPolicy(bb.Union): Viewer information is disabled on this file. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition enabled = None # Attribute is overwritten below the class definition @@ -12038,7 +12589,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_disabled(self): """ @@ -12046,7 +12597,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_other(self): """ @@ -12054,13 +12605,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ViewerInfoPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ViewerInfoPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ViewerInfoPolicy_validator = bv.Union(ViewerInfoPolicy) + class Visibility(bb.Union): """ Who can access a shared link. The most open visibility is ``public``. The @@ -12086,7 +12641,7 @@ class Visibility(bb.Union): the link. Login is required. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition public = None # Attribute is overwritten below the class definition @@ -12106,7 +12661,7 @@ def is_public(self): :rtype: bool """ - return self._tag == 'public' + return self._tag == "public" def is_team_only(self): """ @@ -12114,7 +12669,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_password(self): """ @@ -12122,7 +12677,7 @@ def is_password(self): :rtype: bool """ - return self._tag == 'password' + return self._tag == "password" def is_team_and_password(self): """ @@ -12130,7 +12685,7 @@ def is_team_and_password(self): :rtype: bool """ - return self._tag == 'team_and_password' + return self._tag == "team_and_password" def is_shared_folder_only(self): """ @@ -12138,7 +12693,7 @@ def is_shared_folder_only(self): :rtype: bool """ - return self._tag == 'shared_folder_only' + return self._tag == "shared_folder_only" def is_other(self): """ @@ -12146,13 +12701,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(Visibility, self)._process_custom_annotations(annotation_type, field_path, processor) + Visibility_validator = bv.Union(Visibility) + class VisibilityPolicy(bb.Struct): """ :ivar VisibilityPolicy.policy: @@ -12170,19 +12727,15 @@ class VisibilityPolicy(bb.Struct): """ __slots__ = [ - '_policy_value', - '_resolved_policy_value', - '_allowed_value', - '_disallowed_reason_value', + "_policy_value", + "_resolved_policy_value", + "_allowed_value", + "_disallowed_reason_value", ] _has_required_fields = True - def __init__(self, - policy=None, - resolved_policy=None, - allowed=None, - disallowed_reason=None): + def __init__(self, policy=None, resolved_policy=None, allowed=None, disallowed_reason=None): self._policy_value = bb.NOT_SET self._resolved_policy_value = bb.NOT_SET self._allowed_value = bb.NOT_SET @@ -12209,7 +12762,10 @@ def __init__(self, disallowed_reason = bb.Attribute("disallowed_reason", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(VisibilityPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(VisibilityPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + VisibilityPolicy_validator = bv.Struct(VisibilityPolicy) @@ -12218,7 +12774,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetSharedLinkFileArg = GetSharedLinkMetadataArg Id_validator = files.Id_validator Path_validator = files.Path_validator -PathOrId_validator = bv.String(min_length=1, pattern='((/|id:).*|nspath:[0-9]+:.*)|ns:[0-9]+(/.*)?') +PathOrId_validator = bv.String(min_length=1, pattern="((/|id:).*|nspath:[0-9]+:.*)|ns:[0-9]+(/.*)?") ReadPath_validator = files.ReadPath_validator Rev_validator = files.Rev_validator TeamInfo_validator = users.Team_validator @@ -12227,14 +12783,14 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccessInheritance._no_inherit_validator = bv.Void() AccessInheritance._other_validator = bv.Void() AccessInheritance._tagmap = { - 'inherit': AccessInheritance._inherit_validator, - 'no_inherit': AccessInheritance._no_inherit_validator, - 'other': AccessInheritance._other_validator, + "inherit": AccessInheritance._inherit_validator, + "no_inherit": AccessInheritance._no_inherit_validator, + "other": AccessInheritance._other_validator, } -AccessInheritance.inherit = AccessInheritance('inherit') -AccessInheritance.no_inherit = AccessInheritance('no_inherit') -AccessInheritance.other = AccessInheritance('other') +AccessInheritance.inherit = AccessInheritance("inherit") +AccessInheritance.no_inherit = AccessInheritance("no_inherit") +AccessInheritance.other = AccessInheritance("other") AccessLevel._owner_validator = bv.Void() AccessLevel._editor_validator = bv.Void() @@ -12244,35 +12800,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccessLevel._no_access_validator = bv.Void() AccessLevel._other_validator = bv.Void() AccessLevel._tagmap = { - 'owner': AccessLevel._owner_validator, - 'editor': AccessLevel._editor_validator, - 'viewer': AccessLevel._viewer_validator, - 'viewer_no_comment': AccessLevel._viewer_no_comment_validator, - 'traverse': AccessLevel._traverse_validator, - 'no_access': AccessLevel._no_access_validator, - 'other': AccessLevel._other_validator, + "owner": AccessLevel._owner_validator, + "editor": AccessLevel._editor_validator, + "viewer": AccessLevel._viewer_validator, + "viewer_no_comment": AccessLevel._viewer_no_comment_validator, + "traverse": AccessLevel._traverse_validator, + "no_access": AccessLevel._no_access_validator, + "other": AccessLevel._other_validator, } -AccessLevel.owner = AccessLevel('owner') -AccessLevel.editor = AccessLevel('editor') -AccessLevel.viewer = AccessLevel('viewer') -AccessLevel.viewer_no_comment = AccessLevel('viewer_no_comment') -AccessLevel.traverse = AccessLevel('traverse') -AccessLevel.no_access = AccessLevel('no_access') -AccessLevel.other = AccessLevel('other') +AccessLevel.owner = AccessLevel("owner") +AccessLevel.editor = AccessLevel("editor") +AccessLevel.viewer = AccessLevel("viewer") +AccessLevel.viewer_no_comment = AccessLevel("viewer_no_comment") +AccessLevel.traverse = AccessLevel("traverse") +AccessLevel.no_access = AccessLevel("no_access") +AccessLevel.other = AccessLevel("other") AclUpdatePolicy._owner_validator = bv.Void() AclUpdatePolicy._editors_validator = bv.Void() AclUpdatePolicy._other_validator = bv.Void() AclUpdatePolicy._tagmap = { - 'owner': AclUpdatePolicy._owner_validator, - 'editors': AclUpdatePolicy._editors_validator, - 'other': AclUpdatePolicy._other_validator, + "owner": AclUpdatePolicy._owner_validator, + "editors": AclUpdatePolicy._editors_validator, + "other": AclUpdatePolicy._other_validator, } -AclUpdatePolicy.owner = AclUpdatePolicy('owner') -AclUpdatePolicy.editors = AclUpdatePolicy('editors') -AclUpdatePolicy.other = AclUpdatePolicy('other') +AclUpdatePolicy.owner = AclUpdatePolicy("owner") +AclUpdatePolicy.editors = AclUpdatePolicy("editors") +AclUpdatePolicy.other = AclUpdatePolicy("other") AddFileMemberArgs.file.validator = PathOrId_validator AddFileMemberArgs.members.validator = bv.List(MemberSelector_validator) @@ -12281,24 +12837,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddFileMemberArgs.access_level.validator = bv.Nullable(AccessLevel_validator) AddFileMemberArgs.add_message_as_comment.validator = bv.Boolean() AddFileMemberArgs.fp_sealed_result.validator = bv.Nullable(bv.String()) -AddFileMemberArgs._all_field_names_ = set([ - 'file', - 'members', - 'custom_message', - 'quiet', - 'access_level', - 'add_message_as_comment', -]) +AddFileMemberArgs._all_field_names_ = set( + [ + "file", + "members", + "custom_message", + "quiet", + "access_level", + "add_message_as_comment", + ] +) AddFileMemberArgs._all_fields_ = [ - ('file', AddFileMemberArgs.file.validator), - ('members', AddFileMemberArgs.members.validator), - ('custom_message', AddFileMemberArgs.custom_message.validator), - ('quiet', AddFileMemberArgs.quiet.validator), - ('access_level', AddFileMemberArgs.access_level.validator), - ('add_message_as_comment', AddFileMemberArgs.add_message_as_comment.validator), + ("file", AddFileMemberArgs.file.validator), + ("members", AddFileMemberArgs.members.validator), + ("custom_message", AddFileMemberArgs.custom_message.validator), + ("quiet", AddFileMemberArgs.quiet.validator), + ("access_level", AddFileMemberArgs.access_level.validator), + ("add_message_as_comment", AddFileMemberArgs.add_message_as_comment.validator), +] +AddFileMemberArgs._all_internal_field_names_ = set(["fp_sealed_result"]) +AddFileMemberArgs._all_internal_fields_ = [ + ("fp_sealed_result", AddFileMemberArgs.fp_sealed_result.validator) ] -AddFileMemberArgs._all_internal_field_names_ = set(['fp_sealed_result']) -AddFileMemberArgs._all_internal_fields_ = [('fp_sealed_result', AddFileMemberArgs.fp_sealed_result.validator)] AddFileMemberError._user_error_validator = SharingUserError_validator AddFileMemberError._access_error_validator = SharingFileAccessError_validator @@ -12307,38 +12867,42 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddFileMemberError._banned_member_validator = bv.Void() AddFileMemberError._other_validator = bv.Void() AddFileMemberError._tagmap = { - 'user_error': AddFileMemberError._user_error_validator, - 'access_error': AddFileMemberError._access_error_validator, - 'rate_limit': AddFileMemberError._rate_limit_validator, - 'invalid_comment': AddFileMemberError._invalid_comment_validator, - 'banned_member': AddFileMemberError._banned_member_validator, - 'other': AddFileMemberError._other_validator, + "user_error": AddFileMemberError._user_error_validator, + "access_error": AddFileMemberError._access_error_validator, + "rate_limit": AddFileMemberError._rate_limit_validator, + "invalid_comment": AddFileMemberError._invalid_comment_validator, + "banned_member": AddFileMemberError._banned_member_validator, + "other": AddFileMemberError._other_validator, } -AddFileMemberError.rate_limit = AddFileMemberError('rate_limit') -AddFileMemberError.invalid_comment = AddFileMemberError('invalid_comment') -AddFileMemberError.banned_member = AddFileMemberError('banned_member') -AddFileMemberError.other = AddFileMemberError('other') +AddFileMemberError.rate_limit = AddFileMemberError("rate_limit") +AddFileMemberError.invalid_comment = AddFileMemberError("invalid_comment") +AddFileMemberError.banned_member = AddFileMemberError("banned_member") +AddFileMemberError.other = AddFileMemberError("other") AddFolderMemberArg.shared_folder_id.validator = common.SharedFolderId_validator AddFolderMemberArg.members.validator = bv.List(AddMember_validator) AddFolderMemberArg.quiet.validator = bv.Boolean() AddFolderMemberArg.custom_message.validator = bv.Nullable(bv.String(min_length=1)) AddFolderMemberArg.fp_sealed_result.validator = bv.Nullable(bv.String()) -AddFolderMemberArg._all_field_names_ = set([ - 'shared_folder_id', - 'members', - 'quiet', - 'custom_message', -]) +AddFolderMemberArg._all_field_names_ = set( + [ + "shared_folder_id", + "members", + "quiet", + "custom_message", + ] +) AddFolderMemberArg._all_fields_ = [ - ('shared_folder_id', AddFolderMemberArg.shared_folder_id.validator), - ('members', AddFolderMemberArg.members.validator), - ('quiet', AddFolderMemberArg.quiet.validator), - ('custom_message', AddFolderMemberArg.custom_message.validator), + ("shared_folder_id", AddFolderMemberArg.shared_folder_id.validator), + ("members", AddFolderMemberArg.members.validator), + ("quiet", AddFolderMemberArg.quiet.validator), + ("custom_message", AddFolderMemberArg.custom_message.validator), +] +AddFolderMemberArg._all_internal_field_names_ = set(["fp_sealed_result"]) +AddFolderMemberArg._all_internal_fields_ = [ + ("fp_sealed_result", AddFolderMemberArg.fp_sealed_result.validator) ] -AddFolderMemberArg._all_internal_field_names_ = set(['fp_sealed_result']) -AddFolderMemberArg._all_internal_fields_ = [('fp_sealed_result', AddFolderMemberArg.fp_sealed_result.validator)] AddFolderMemberError._access_error_validator = SharedFolderAccessError_validator AddFolderMemberError._email_unverified_validator = bv.Void() @@ -12355,42 +12919,44 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddFolderMemberError._invalid_shared_folder_validator = bv.Void() AddFolderMemberError._other_validator = bv.Void() AddFolderMemberError._tagmap = { - 'access_error': AddFolderMemberError._access_error_validator, - 'email_unverified': AddFolderMemberError._email_unverified_validator, - 'banned_member': AddFolderMemberError._banned_member_validator, - 'bad_member': AddFolderMemberError._bad_member_validator, - 'cant_share_outside_team': AddFolderMemberError._cant_share_outside_team_validator, - 'too_many_members': AddFolderMemberError._too_many_members_validator, - 'too_many_pending_invites': AddFolderMemberError._too_many_pending_invites_validator, - 'rate_limit': AddFolderMemberError._rate_limit_validator, - 'too_many_invitees': AddFolderMemberError._too_many_invitees_validator, - 'insufficient_plan': AddFolderMemberError._insufficient_plan_validator, - 'team_folder': AddFolderMemberError._team_folder_validator, - 'no_permission': AddFolderMemberError._no_permission_validator, - 'invalid_shared_folder': AddFolderMemberError._invalid_shared_folder_validator, - 'other': AddFolderMemberError._other_validator, + "access_error": AddFolderMemberError._access_error_validator, + "email_unverified": AddFolderMemberError._email_unverified_validator, + "banned_member": AddFolderMemberError._banned_member_validator, + "bad_member": AddFolderMemberError._bad_member_validator, + "cant_share_outside_team": AddFolderMemberError._cant_share_outside_team_validator, + "too_many_members": AddFolderMemberError._too_many_members_validator, + "too_many_pending_invites": AddFolderMemberError._too_many_pending_invites_validator, + "rate_limit": AddFolderMemberError._rate_limit_validator, + "too_many_invitees": AddFolderMemberError._too_many_invitees_validator, + "insufficient_plan": AddFolderMemberError._insufficient_plan_validator, + "team_folder": AddFolderMemberError._team_folder_validator, + "no_permission": AddFolderMemberError._no_permission_validator, + "invalid_shared_folder": AddFolderMemberError._invalid_shared_folder_validator, + "other": AddFolderMemberError._other_validator, } -AddFolderMemberError.email_unverified = AddFolderMemberError('email_unverified') -AddFolderMemberError.banned_member = AddFolderMemberError('banned_member') -AddFolderMemberError.cant_share_outside_team = AddFolderMemberError('cant_share_outside_team') -AddFolderMemberError.rate_limit = AddFolderMemberError('rate_limit') -AddFolderMemberError.too_many_invitees = AddFolderMemberError('too_many_invitees') -AddFolderMemberError.insufficient_plan = AddFolderMemberError('insufficient_plan') -AddFolderMemberError.team_folder = AddFolderMemberError('team_folder') -AddFolderMemberError.no_permission = AddFolderMemberError('no_permission') -AddFolderMemberError.invalid_shared_folder = AddFolderMemberError('invalid_shared_folder') -AddFolderMemberError.other = AddFolderMemberError('other') +AddFolderMemberError.email_unverified = AddFolderMemberError("email_unverified") +AddFolderMemberError.banned_member = AddFolderMemberError("banned_member") +AddFolderMemberError.cant_share_outside_team = AddFolderMemberError("cant_share_outside_team") +AddFolderMemberError.rate_limit = AddFolderMemberError("rate_limit") +AddFolderMemberError.too_many_invitees = AddFolderMemberError("too_many_invitees") +AddFolderMemberError.insufficient_plan = AddFolderMemberError("insufficient_plan") +AddFolderMemberError.team_folder = AddFolderMemberError("team_folder") +AddFolderMemberError.no_permission = AddFolderMemberError("no_permission") +AddFolderMemberError.invalid_shared_folder = AddFolderMemberError("invalid_shared_folder") +AddFolderMemberError.other = AddFolderMemberError("other") AddMember.member.validator = MemberSelector_validator AddMember.access_level.validator = bv.Nullable(AccessLevel_validator) -AddMember._all_field_names_ = set([ - 'member', - 'access_level', -]) +AddMember._all_field_names_ = set( + [ + "member", + "access_level", + ] +) AddMember._all_fields_ = [ - ('member', AddMember.member.validator), - ('access_level', AddMember.access_level.validator), + ("member", AddMember.member.validator), + ("access_level", AddMember.access_level.validator), ] AddMemberSelectorError._automatic_group_validator = bv.Void() @@ -12402,34 +12968,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddMemberSelectorError._group_not_on_team_validator = bv.Void() AddMemberSelectorError._other_validator = bv.Void() AddMemberSelectorError._tagmap = { - 'automatic_group': AddMemberSelectorError._automatic_group_validator, - 'invalid_dropbox_id': AddMemberSelectorError._invalid_dropbox_id_validator, - 'invalid_email': AddMemberSelectorError._invalid_email_validator, - 'invalid_group': AddMemberSelectorError._invalid_group_validator, - 'unverified_dropbox_id': AddMemberSelectorError._unverified_dropbox_id_validator, - 'group_deleted': AddMemberSelectorError._group_deleted_validator, - 'group_not_on_team': AddMemberSelectorError._group_not_on_team_validator, - 'other': AddMemberSelectorError._other_validator, + "automatic_group": AddMemberSelectorError._automatic_group_validator, + "invalid_dropbox_id": AddMemberSelectorError._invalid_dropbox_id_validator, + "invalid_email": AddMemberSelectorError._invalid_email_validator, + "invalid_group": AddMemberSelectorError._invalid_group_validator, + "unverified_dropbox_id": AddMemberSelectorError._unverified_dropbox_id_validator, + "group_deleted": AddMemberSelectorError._group_deleted_validator, + "group_not_on_team": AddMemberSelectorError._group_not_on_team_validator, + "other": AddMemberSelectorError._other_validator, } -AddMemberSelectorError.automatic_group = AddMemberSelectorError('automatic_group') -AddMemberSelectorError.invalid_group = AddMemberSelectorError('invalid_group') -AddMemberSelectorError.group_deleted = AddMemberSelectorError('group_deleted') -AddMemberSelectorError.group_not_on_team = AddMemberSelectorError('group_not_on_team') -AddMemberSelectorError.other = AddMemberSelectorError('other') +AddMemberSelectorError.automatic_group = AddMemberSelectorError("automatic_group") +AddMemberSelectorError.invalid_group = AddMemberSelectorError("invalid_group") +AddMemberSelectorError.group_deleted = AddMemberSelectorError("group_deleted") +AddMemberSelectorError.group_not_on_team = AddMemberSelectorError("group_not_on_team") +AddMemberSelectorError.other = AddMemberSelectorError("other") RequestedVisibility._public_validator = bv.Void() RequestedVisibility._team_only_validator = bv.Void() RequestedVisibility._password_validator = bv.Void() RequestedVisibility._tagmap = { - 'public': RequestedVisibility._public_validator, - 'team_only': RequestedVisibility._team_only_validator, - 'password': RequestedVisibility._password_validator, + "public": RequestedVisibility._public_validator, + "team_only": RequestedVisibility._team_only_validator, + "password": RequestedVisibility._password_validator, } -RequestedVisibility.public = RequestedVisibility('public') -RequestedVisibility.team_only = RequestedVisibility('team_only') -RequestedVisibility.password = RequestedVisibility('password') +RequestedVisibility.public = RequestedVisibility("public") +RequestedVisibility.team_only = RequestedVisibility("team_only") +RequestedVisibility.password = RequestedVisibility("password") ResolvedVisibility._team_and_password_validator = bv.Void() ResolvedVisibility._shared_folder_only_validator = bv.Void() @@ -12437,180 +13003,206 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ResolvedVisibility._only_you_validator = bv.Void() ResolvedVisibility._other_validator = bv.Void() ResolvedVisibility._tagmap = { - 'team_and_password': ResolvedVisibility._team_and_password_validator, - 'shared_folder_only': ResolvedVisibility._shared_folder_only_validator, - 'no_one': ResolvedVisibility._no_one_validator, - 'only_you': ResolvedVisibility._only_you_validator, - 'other': ResolvedVisibility._other_validator, + "team_and_password": ResolvedVisibility._team_and_password_validator, + "shared_folder_only": ResolvedVisibility._shared_folder_only_validator, + "no_one": ResolvedVisibility._no_one_validator, + "only_you": ResolvedVisibility._only_you_validator, + "other": ResolvedVisibility._other_validator, } ResolvedVisibility._tagmap.update(RequestedVisibility._tagmap) -ResolvedVisibility.team_and_password = ResolvedVisibility('team_and_password') -ResolvedVisibility.shared_folder_only = ResolvedVisibility('shared_folder_only') -ResolvedVisibility.no_one = ResolvedVisibility('no_one') -ResolvedVisibility.only_you = ResolvedVisibility('only_you') -ResolvedVisibility.other = ResolvedVisibility('other') +ResolvedVisibility.team_and_password = ResolvedVisibility("team_and_password") +ResolvedVisibility.shared_folder_only = ResolvedVisibility("shared_folder_only") +ResolvedVisibility.no_one = ResolvedVisibility("no_one") +ResolvedVisibility.only_you = ResolvedVisibility("only_you") +ResolvedVisibility.other = ResolvedVisibility("other") -AlphaResolvedVisibility._tagmap = { -} +AlphaResolvedVisibility._tagmap = {} AlphaResolvedVisibility._tagmap.update(ResolvedVisibility._tagmap) AudienceExceptionContentInfo.name.validator = bv.String() -AudienceExceptionContentInfo._all_field_names_ = set(['name']) -AudienceExceptionContentInfo._all_fields_ = [('name', AudienceExceptionContentInfo.name.validator)] +AudienceExceptionContentInfo._all_field_names_ = set(["name"]) +AudienceExceptionContentInfo._all_fields_ = [("name", AudienceExceptionContentInfo.name.validator)] AudienceExceptions.count.validator = bv.UInt32() AudienceExceptions.exceptions.validator = bv.List(AudienceExceptionContentInfo_validator) -AudienceExceptions._all_field_names_ = set([ - 'count', - 'exceptions', -]) +AudienceExceptions._all_field_names_ = set( + [ + "count", + "exceptions", + ] +) AudienceExceptions._all_fields_ = [ - ('count', AudienceExceptions.count.validator), - ('exceptions', AudienceExceptions.exceptions.validator), + ("count", AudienceExceptions.count.validator), + ("exceptions", AudienceExceptions.exceptions.validator), ] AudienceRestrictingSharedFolder.shared_folder_id.validator = common.SharedFolderId_validator AudienceRestrictingSharedFolder.name.validator = bv.String() AudienceRestrictingSharedFolder.audience.validator = LinkAudience_validator -AudienceRestrictingSharedFolder._all_field_names_ = set([ - 'shared_folder_id', - 'name', - 'audience', -]) +AudienceRestrictingSharedFolder._all_field_names_ = set( + [ + "shared_folder_id", + "name", + "audience", + ] +) AudienceRestrictingSharedFolder._all_fields_ = [ - ('shared_folder_id', AudienceRestrictingSharedFolder.shared_folder_id.validator), - ('name', AudienceRestrictingSharedFolder.name.validator), - ('audience', AudienceRestrictingSharedFolder.audience.validator), + ("shared_folder_id", AudienceRestrictingSharedFolder.shared_folder_id.validator), + ("name", AudienceRestrictingSharedFolder.name.validator), + ("audience", AudienceRestrictingSharedFolder.audience.validator), ] ChangeLinkExpirationPolicy._allowed_validator = bv.Void() ChangeLinkExpirationPolicy._not_allowed_validator = bv.Void() ChangeLinkExpirationPolicy._other_validator = bv.Void() ChangeLinkExpirationPolicy._tagmap = { - 'allowed': ChangeLinkExpirationPolicy._allowed_validator, - 'not_allowed': ChangeLinkExpirationPolicy._not_allowed_validator, - 'other': ChangeLinkExpirationPolicy._other_validator, + "allowed": ChangeLinkExpirationPolicy._allowed_validator, + "not_allowed": ChangeLinkExpirationPolicy._not_allowed_validator, + "other": ChangeLinkExpirationPolicy._other_validator, } -ChangeLinkExpirationPolicy.allowed = ChangeLinkExpirationPolicy('allowed') -ChangeLinkExpirationPolicy.not_allowed = ChangeLinkExpirationPolicy('not_allowed') -ChangeLinkExpirationPolicy.other = ChangeLinkExpirationPolicy('other') +ChangeLinkExpirationPolicy.allowed = ChangeLinkExpirationPolicy("allowed") +ChangeLinkExpirationPolicy.not_allowed = ChangeLinkExpirationPolicy("not_allowed") +ChangeLinkExpirationPolicy.other = ChangeLinkExpirationPolicy("other") LinkMetadata.url.validator = bv.String() LinkMetadata.visibility.validator = Visibility_validator LinkMetadata.expires.validator = bv.Nullable(common.DropboxTimestamp_validator) -LinkMetadata._field_names_ = set([ - 'url', - 'visibility', - 'expires', -]) +LinkMetadata._field_names_ = set( + [ + "url", + "visibility", + "expires", + ] +) LinkMetadata._all_field_names_ = LinkMetadata._field_names_ LinkMetadata._fields_ = [ - ('url', LinkMetadata.url.validator), - ('visibility', LinkMetadata.visibility.validator), - ('expires', LinkMetadata.expires.validator), + ("url", LinkMetadata.url.validator), + ("visibility", LinkMetadata.visibility.validator), + ("expires", LinkMetadata.expires.validator), ] LinkMetadata._all_fields_ = LinkMetadata._fields_ LinkMetadata._tag_to_subtype_ = { - ('path',): PathLinkMetadata_validator, - ('collection',): CollectionLinkMetadata_validator, + ("path",): PathLinkMetadata_validator, + ("collection",): CollectionLinkMetadata_validator, } LinkMetadata._pytype_to_tag_and_subtype_ = { - PathLinkMetadata: (('path',), PathLinkMetadata_validator), - CollectionLinkMetadata: (('collection',), CollectionLinkMetadata_validator), + PathLinkMetadata: (("path",), PathLinkMetadata_validator), + CollectionLinkMetadata: (("collection",), CollectionLinkMetadata_validator), } LinkMetadata._is_catch_all_ = True CollectionLinkMetadata._field_names_ = set([]) -CollectionLinkMetadata._all_field_names_ = LinkMetadata._all_field_names_.union(CollectionLinkMetadata._field_names_) +CollectionLinkMetadata._all_field_names_ = LinkMetadata._all_field_names_.union( + CollectionLinkMetadata._field_names_ +) CollectionLinkMetadata._fields_ = [] CollectionLinkMetadata._all_fields_ = LinkMetadata._all_fields_ + CollectionLinkMetadata._fields_ CreateSharedLinkArg.path.validator = bv.String() CreateSharedLinkArg.short_url.validator = bv.Boolean() CreateSharedLinkArg.pending_upload.validator = bv.Nullable(PendingUploadMode_validator) -CreateSharedLinkArg._all_field_names_ = set([ - 'path', - 'short_url', - 'pending_upload', -]) +CreateSharedLinkArg._all_field_names_ = set( + [ + "path", + "short_url", + "pending_upload", + ] +) CreateSharedLinkArg._all_fields_ = [ - ('path', CreateSharedLinkArg.path.validator), - ('short_url', CreateSharedLinkArg.short_url.validator), - ('pending_upload', CreateSharedLinkArg.pending_upload.validator), + ("path", CreateSharedLinkArg.path.validator), + ("short_url", CreateSharedLinkArg.short_url.validator), + ("pending_upload", CreateSharedLinkArg.pending_upload.validator), ] CreateSharedLinkError._path_validator = files.LookupError_validator CreateSharedLinkError._other_validator = bv.Void() CreateSharedLinkError._tagmap = { - 'path': CreateSharedLinkError._path_validator, - 'other': CreateSharedLinkError._other_validator, + "path": CreateSharedLinkError._path_validator, + "other": CreateSharedLinkError._other_validator, } -CreateSharedLinkError.other = CreateSharedLinkError('other') +CreateSharedLinkError.other = CreateSharedLinkError("other") CreateSharedLinkWithSettingsArg.path.validator = ReadPath_validator CreateSharedLinkWithSettingsArg.settings.validator = bv.Nullable(SharedLinkSettings_validator) -CreateSharedLinkWithSettingsArg._all_field_names_ = set([ - 'path', - 'settings', -]) +CreateSharedLinkWithSettingsArg._all_field_names_ = set( + [ + "path", + "settings", + ] +) CreateSharedLinkWithSettingsArg._all_fields_ = [ - ('path', CreateSharedLinkWithSettingsArg.path.validator), - ('settings', CreateSharedLinkWithSettingsArg.settings.validator), + ("path", CreateSharedLinkWithSettingsArg.path.validator), + ("settings", CreateSharedLinkWithSettingsArg.settings.validator), ] CreateSharedLinkWithSettingsError._path_validator = files.LookupError_validator CreateSharedLinkWithSettingsError._email_not_verified_validator = bv.Void() -CreateSharedLinkWithSettingsError._shared_link_already_exists_validator = bv.Nullable(SharedLinkAlreadyExistsMetadata_validator) +CreateSharedLinkWithSettingsError._shared_link_already_exists_validator = bv.Nullable( + SharedLinkAlreadyExistsMetadata_validator +) CreateSharedLinkWithSettingsError._settings_error_validator = SharedLinkSettingsError_validator CreateSharedLinkWithSettingsError._access_denied_validator = bv.Void() CreateSharedLinkWithSettingsError._banned_member_validator = bv.Void() CreateSharedLinkWithSettingsError._too_many_shared_folders_validator = bv.Void() CreateSharedLinkWithSettingsError._tagmap = { - 'path': CreateSharedLinkWithSettingsError._path_validator, - 'email_not_verified': CreateSharedLinkWithSettingsError._email_not_verified_validator, - 'shared_link_already_exists': CreateSharedLinkWithSettingsError._shared_link_already_exists_validator, - 'settings_error': CreateSharedLinkWithSettingsError._settings_error_validator, - 'access_denied': CreateSharedLinkWithSettingsError._access_denied_validator, - 'banned_member': CreateSharedLinkWithSettingsError._banned_member_validator, - 'too_many_shared_folders': CreateSharedLinkWithSettingsError._too_many_shared_folders_validator, + "path": CreateSharedLinkWithSettingsError._path_validator, + "email_not_verified": CreateSharedLinkWithSettingsError._email_not_verified_validator, + "shared_link_already_exists": CreateSharedLinkWithSettingsError._shared_link_already_exists_validator, + "settings_error": CreateSharedLinkWithSettingsError._settings_error_validator, + "access_denied": CreateSharedLinkWithSettingsError._access_denied_validator, + "banned_member": CreateSharedLinkWithSettingsError._banned_member_validator, + "too_many_shared_folders": CreateSharedLinkWithSettingsError._too_many_shared_folders_validator, } -CreateSharedLinkWithSettingsError.email_not_verified = CreateSharedLinkWithSettingsError('email_not_verified') -CreateSharedLinkWithSettingsError.access_denied = CreateSharedLinkWithSettingsError('access_denied') -CreateSharedLinkWithSettingsError.banned_member = CreateSharedLinkWithSettingsError('banned_member') -CreateSharedLinkWithSettingsError.too_many_shared_folders = CreateSharedLinkWithSettingsError('too_many_shared_folders') +CreateSharedLinkWithSettingsError.email_not_verified = CreateSharedLinkWithSettingsError( + "email_not_verified" +) +CreateSharedLinkWithSettingsError.access_denied = CreateSharedLinkWithSettingsError("access_denied") +CreateSharedLinkWithSettingsError.banned_member = CreateSharedLinkWithSettingsError("banned_member") +CreateSharedLinkWithSettingsError.too_many_shared_folders = CreateSharedLinkWithSettingsError( + "too_many_shared_folders" +) SharedContentLinkMetadataBase.access_level.validator = bv.Nullable(AccessLevel_validator) SharedContentLinkMetadataBase.audience_options.validator = bv.List(LinkAudience_validator) -SharedContentLinkMetadataBase.audience_restricting_shared_folder.validator = bv.Nullable(AudienceRestrictingSharedFolder_validator) +SharedContentLinkMetadataBase.audience_restricting_shared_folder.validator = bv.Nullable( + AudienceRestrictingSharedFolder_validator +) SharedContentLinkMetadataBase.current_audience.validator = LinkAudience_validator SharedContentLinkMetadataBase.expiry.validator = bv.Nullable(common.DropboxTimestamp_validator) SharedContentLinkMetadataBase.link_permissions.validator = bv.List(LinkPermission_validator) SharedContentLinkMetadataBase.password_protected.validator = bv.Boolean() -SharedContentLinkMetadataBase._all_field_names_ = set([ - 'access_level', - 'audience_options', - 'audience_restricting_shared_folder', - 'current_audience', - 'expiry', - 'link_permissions', - 'password_protected', -]) +SharedContentLinkMetadataBase._all_field_names_ = set( + [ + "access_level", + "audience_options", + "audience_restricting_shared_folder", + "current_audience", + "expiry", + "link_permissions", + "password_protected", + ] +) SharedContentLinkMetadataBase._all_fields_ = [ - ('access_level', SharedContentLinkMetadataBase.access_level.validator), - ('audience_options', SharedContentLinkMetadataBase.audience_options.validator), - ('audience_restricting_shared_folder', SharedContentLinkMetadataBase.audience_restricting_shared_folder.validator), - ('current_audience', SharedContentLinkMetadataBase.current_audience.validator), - ('expiry', SharedContentLinkMetadataBase.expiry.validator), - ('link_permissions', SharedContentLinkMetadataBase.link_permissions.validator), - ('password_protected', SharedContentLinkMetadataBase.password_protected.validator), + ("access_level", SharedContentLinkMetadataBase.access_level.validator), + ("audience_options", SharedContentLinkMetadataBase.audience_options.validator), + ( + "audience_restricting_shared_folder", + SharedContentLinkMetadataBase.audience_restricting_shared_folder.validator, + ), + ("current_audience", SharedContentLinkMetadataBase.current_audience.validator), + ("expiry", SharedContentLinkMetadataBase.expiry.validator), + ("link_permissions", SharedContentLinkMetadataBase.link_permissions.validator), + ("password_protected", SharedContentLinkMetadataBase.password_protected.validator), ] -ExpectedSharedContentLinkMetadata._all_field_names_ = SharedContentLinkMetadataBase._all_field_names_.union(set([])) +ExpectedSharedContentLinkMetadata._all_field_names_ = ( + SharedContentLinkMetadataBase._all_field_names_.union(set([])) +) ExpectedSharedContentLinkMetadata._all_fields_ = SharedContentLinkMetadataBase._all_fields_ + [] FileAction._disable_viewer_info_validator = bv.Void() @@ -12627,47 +13219,47 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileAction._create_edit_link_validator = bv.Void() FileAction._other_validator = bv.Void() FileAction._tagmap = { - 'disable_viewer_info': FileAction._disable_viewer_info_validator, - 'edit_contents': FileAction._edit_contents_validator, - 'enable_viewer_info': FileAction._enable_viewer_info_validator, - 'invite_viewer': FileAction._invite_viewer_validator, - 'invite_viewer_no_comment': FileAction._invite_viewer_no_comment_validator, - 'invite_editor': FileAction._invite_editor_validator, - 'unshare': FileAction._unshare_validator, - 'relinquish_membership': FileAction._relinquish_membership_validator, - 'share_link': FileAction._share_link_validator, - 'create_link': FileAction._create_link_validator, - 'create_view_link': FileAction._create_view_link_validator, - 'create_edit_link': FileAction._create_edit_link_validator, - 'other': FileAction._other_validator, + "disable_viewer_info": FileAction._disable_viewer_info_validator, + "edit_contents": FileAction._edit_contents_validator, + "enable_viewer_info": FileAction._enable_viewer_info_validator, + "invite_viewer": FileAction._invite_viewer_validator, + "invite_viewer_no_comment": FileAction._invite_viewer_no_comment_validator, + "invite_editor": FileAction._invite_editor_validator, + "unshare": FileAction._unshare_validator, + "relinquish_membership": FileAction._relinquish_membership_validator, + "share_link": FileAction._share_link_validator, + "create_link": FileAction._create_link_validator, + "create_view_link": FileAction._create_view_link_validator, + "create_edit_link": FileAction._create_edit_link_validator, + "other": FileAction._other_validator, } -FileAction.disable_viewer_info = FileAction('disable_viewer_info') -FileAction.edit_contents = FileAction('edit_contents') -FileAction.enable_viewer_info = FileAction('enable_viewer_info') -FileAction.invite_viewer = FileAction('invite_viewer') -FileAction.invite_viewer_no_comment = FileAction('invite_viewer_no_comment') -FileAction.invite_editor = FileAction('invite_editor') -FileAction.unshare = FileAction('unshare') -FileAction.relinquish_membership = FileAction('relinquish_membership') -FileAction.share_link = FileAction('share_link') -FileAction.create_link = FileAction('create_link') -FileAction.create_view_link = FileAction('create_view_link') -FileAction.create_edit_link = FileAction('create_edit_link') -FileAction.other = FileAction('other') +FileAction.disable_viewer_info = FileAction("disable_viewer_info") +FileAction.edit_contents = FileAction("edit_contents") +FileAction.enable_viewer_info = FileAction("enable_viewer_info") +FileAction.invite_viewer = FileAction("invite_viewer") +FileAction.invite_viewer_no_comment = FileAction("invite_viewer_no_comment") +FileAction.invite_editor = FileAction("invite_editor") +FileAction.unshare = FileAction("unshare") +FileAction.relinquish_membership = FileAction("relinquish_membership") +FileAction.share_link = FileAction("share_link") +FileAction.create_link = FileAction("create_link") +FileAction.create_view_link = FileAction("create_view_link") +FileAction.create_edit_link = FileAction("create_edit_link") +FileAction.other = FileAction("other") FileErrorResult._file_not_found_error_validator = files.Id_validator FileErrorResult._invalid_file_action_error_validator = files.Id_validator FileErrorResult._permission_denied_error_validator = files.Id_validator FileErrorResult._other_validator = bv.Void() FileErrorResult._tagmap = { - 'file_not_found_error': FileErrorResult._file_not_found_error_validator, - 'invalid_file_action_error': FileErrorResult._invalid_file_action_error_validator, - 'permission_denied_error': FileErrorResult._permission_denied_error_validator, - 'other': FileErrorResult._other_validator, + "file_not_found_error": FileErrorResult._file_not_found_error_validator, + "invalid_file_action_error": FileErrorResult._invalid_file_action_error_validator, + "permission_denied_error": FileErrorResult._permission_denied_error_validator, + "other": FileErrorResult._other_validator, } -FileErrorResult.other = FileErrorResult('other') +FileErrorResult.other = FileErrorResult("other") SharedLinkMetadata.url.validator = bv.String() SharedLinkMetadata.id.validator = bv.Nullable(Id_validator) @@ -12677,36 +13269,38 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkMetadata.link_permissions.validator = LinkPermissions_validator SharedLinkMetadata.team_member_info.validator = bv.Nullable(TeamMemberInfo_validator) SharedLinkMetadata.content_owner_team_info.validator = bv.Nullable(TeamInfo_validator) -SharedLinkMetadata._field_names_ = set([ - 'url', - 'id', - 'name', - 'expires', - 'path_lower', - 'link_permissions', - 'team_member_info', - 'content_owner_team_info', -]) +SharedLinkMetadata._field_names_ = set( + [ + "url", + "id", + "name", + "expires", + "path_lower", + "link_permissions", + "team_member_info", + "content_owner_team_info", + ] +) SharedLinkMetadata._all_field_names_ = SharedLinkMetadata._field_names_ SharedLinkMetadata._fields_ = [ - ('url', SharedLinkMetadata.url.validator), - ('id', SharedLinkMetadata.id.validator), - ('name', SharedLinkMetadata.name.validator), - ('expires', SharedLinkMetadata.expires.validator), - ('path_lower', SharedLinkMetadata.path_lower.validator), - ('link_permissions', SharedLinkMetadata.link_permissions.validator), - ('team_member_info', SharedLinkMetadata.team_member_info.validator), - ('content_owner_team_info', SharedLinkMetadata.content_owner_team_info.validator), + ("url", SharedLinkMetadata.url.validator), + ("id", SharedLinkMetadata.id.validator), + ("name", SharedLinkMetadata.name.validator), + ("expires", SharedLinkMetadata.expires.validator), + ("path_lower", SharedLinkMetadata.path_lower.validator), + ("link_permissions", SharedLinkMetadata.link_permissions.validator), + ("team_member_info", SharedLinkMetadata.team_member_info.validator), + ("content_owner_team_info", SharedLinkMetadata.content_owner_team_info.validator), ] SharedLinkMetadata._all_fields_ = SharedLinkMetadata._fields_ SharedLinkMetadata._tag_to_subtype_ = { - ('file',): FileLinkMetadata_validator, - ('folder',): FolderLinkMetadata_validator, + ("file",): FileLinkMetadata_validator, + ("folder",): FolderLinkMetadata_validator, } SharedLinkMetadata._pytype_to_tag_and_subtype_ = { - FileLinkMetadata: (('file',), FileLinkMetadata_validator), - FolderLinkMetadata: (('folder',), FolderLinkMetadata_validator), + FileLinkMetadata: (("file",), FileLinkMetadata_validator), + FolderLinkMetadata: (("folder",), FolderLinkMetadata_validator), } SharedLinkMetadata._is_catch_all_ = True @@ -12714,18 +13308,22 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileLinkMetadata.server_modified.validator = common.DropboxTimestamp_validator FileLinkMetadata.rev.validator = Rev_validator FileLinkMetadata.size.validator = bv.UInt64() -FileLinkMetadata._field_names_ = set([ - 'client_modified', - 'server_modified', - 'rev', - 'size', -]) -FileLinkMetadata._all_field_names_ = SharedLinkMetadata._all_field_names_.union(FileLinkMetadata._field_names_) +FileLinkMetadata._field_names_ = set( + [ + "client_modified", + "server_modified", + "rev", + "size", + ] +) +FileLinkMetadata._all_field_names_ = SharedLinkMetadata._all_field_names_.union( + FileLinkMetadata._field_names_ +) FileLinkMetadata._fields_ = [ - ('client_modified', FileLinkMetadata.client_modified.validator), - ('server_modified', FileLinkMetadata.server_modified.validator), - ('rev', FileLinkMetadata.rev.validator), - ('size', FileLinkMetadata.size.validator), + ("client_modified", FileLinkMetadata.client_modified.validator), + ("server_modified", FileLinkMetadata.server_modified.validator), + ("rev", FileLinkMetadata.rev.validator), + ("size", FileLinkMetadata.size.validator), ] FileLinkMetadata._all_fields_ = SharedLinkMetadata._all_fields_ + FileLinkMetadata._fields_ @@ -12735,64 +13333,68 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileMemberActionError._no_explicit_access_validator = MemberAccessLevelResult_validator FileMemberActionError._other_validator = bv.Void() FileMemberActionError._tagmap = { - 'invalid_member': FileMemberActionError._invalid_member_validator, - 'no_permission': FileMemberActionError._no_permission_validator, - 'access_error': FileMemberActionError._access_error_validator, - 'no_explicit_access': FileMemberActionError._no_explicit_access_validator, - 'other': FileMemberActionError._other_validator, + "invalid_member": FileMemberActionError._invalid_member_validator, + "no_permission": FileMemberActionError._no_permission_validator, + "access_error": FileMemberActionError._access_error_validator, + "no_explicit_access": FileMemberActionError._no_explicit_access_validator, + "other": FileMemberActionError._other_validator, } -FileMemberActionError.invalid_member = FileMemberActionError('invalid_member') -FileMemberActionError.no_permission = FileMemberActionError('no_permission') -FileMemberActionError.other = FileMemberActionError('other') +FileMemberActionError.invalid_member = FileMemberActionError("invalid_member") +FileMemberActionError.no_permission = FileMemberActionError("no_permission") +FileMemberActionError.other = FileMemberActionError("other") FileMemberActionIndividualResult._success_validator = bv.Nullable(AccessLevel_validator) FileMemberActionIndividualResult._member_error_validator = FileMemberActionError_validator FileMemberActionIndividualResult._tagmap = { - 'success': FileMemberActionIndividualResult._success_validator, - 'member_error': FileMemberActionIndividualResult._member_error_validator, + "success": FileMemberActionIndividualResult._success_validator, + "member_error": FileMemberActionIndividualResult._member_error_validator, } FileMemberActionResult.member.validator = MemberSelector_validator FileMemberActionResult.result.validator = FileMemberActionIndividualResult_validator FileMemberActionResult.sckey_sha1.validator = bv.Nullable(bv.String()) FileMemberActionResult.invitation_signature.validator = bv.Nullable(bv.List(bv.String())) -FileMemberActionResult._all_field_names_ = set([ - 'member', - 'result', - 'sckey_sha1', - 'invitation_signature', -]) +FileMemberActionResult._all_field_names_ = set( + [ + "member", + "result", + "sckey_sha1", + "invitation_signature", + ] +) FileMemberActionResult._all_fields_ = [ - ('member', FileMemberActionResult.member.validator), - ('result', FileMemberActionResult.result.validator), - ('sckey_sha1', FileMemberActionResult.sckey_sha1.validator), - ('invitation_signature', FileMemberActionResult.invitation_signature.validator), + ("member", FileMemberActionResult.member.validator), + ("result", FileMemberActionResult.result.validator), + ("sckey_sha1", FileMemberActionResult.sckey_sha1.validator), + ("invitation_signature", FileMemberActionResult.invitation_signature.validator), ] FileMemberRemoveActionResult._success_validator = MemberAccessLevelResult_validator FileMemberRemoveActionResult._member_error_validator = FileMemberActionError_validator FileMemberRemoveActionResult._other_validator = bv.Void() FileMemberRemoveActionResult._tagmap = { - 'success': FileMemberRemoveActionResult._success_validator, - 'member_error': FileMemberRemoveActionResult._member_error_validator, - 'other': FileMemberRemoveActionResult._other_validator, + "success": FileMemberRemoveActionResult._success_validator, + "member_error": FileMemberRemoveActionResult._member_error_validator, + "other": FileMemberRemoveActionResult._other_validator, } -FileMemberRemoveActionResult.other = FileMemberRemoveActionResult('other') +FileMemberRemoveActionResult.other = FileMemberRemoveActionResult("other") FilePermission.action.validator = FileAction_validator FilePermission.allow.validator = bv.Boolean() FilePermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -FilePermission._all_field_names_ = set([ - 'action', - 'allow', - 'reason', -]) +FilePermission._all_field_names_ = set( + [ + "action", + "allow", + "reason", + ] +) FilePermission._all_fields_ = [ - ('action', FilePermission.action.validator), - ('allow', FilePermission.allow.validator), - ('reason', FilePermission.reason.validator), + ("action", FilePermission.action.validator), + ("allow", FilePermission.allow.validator), + ("reason", FilePermission.reason.validator), ] FolderAction._change_options_validator = bv.Void() @@ -12813,60 +13415,64 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FolderAction._set_access_inheritance_validator = bv.Void() FolderAction._other_validator = bv.Void() FolderAction._tagmap = { - 'change_options': FolderAction._change_options_validator, - 'disable_viewer_info': FolderAction._disable_viewer_info_validator, - 'edit_contents': FolderAction._edit_contents_validator, - 'enable_viewer_info': FolderAction._enable_viewer_info_validator, - 'invite_editor': FolderAction._invite_editor_validator, - 'invite_viewer': FolderAction._invite_viewer_validator, - 'invite_viewer_no_comment': FolderAction._invite_viewer_no_comment_validator, - 'relinquish_membership': FolderAction._relinquish_membership_validator, - 'unmount': FolderAction._unmount_validator, - 'unshare': FolderAction._unshare_validator, - 'leave_a_copy': FolderAction._leave_a_copy_validator, - 'share_link': FolderAction._share_link_validator, - 'create_link': FolderAction._create_link_validator, - 'create_view_link': FolderAction._create_view_link_validator, - 'create_edit_link': FolderAction._create_edit_link_validator, - 'set_access_inheritance': FolderAction._set_access_inheritance_validator, - 'other': FolderAction._other_validator, + "change_options": FolderAction._change_options_validator, + "disable_viewer_info": FolderAction._disable_viewer_info_validator, + "edit_contents": FolderAction._edit_contents_validator, + "enable_viewer_info": FolderAction._enable_viewer_info_validator, + "invite_editor": FolderAction._invite_editor_validator, + "invite_viewer": FolderAction._invite_viewer_validator, + "invite_viewer_no_comment": FolderAction._invite_viewer_no_comment_validator, + "relinquish_membership": FolderAction._relinquish_membership_validator, + "unmount": FolderAction._unmount_validator, + "unshare": FolderAction._unshare_validator, + "leave_a_copy": FolderAction._leave_a_copy_validator, + "share_link": FolderAction._share_link_validator, + "create_link": FolderAction._create_link_validator, + "create_view_link": FolderAction._create_view_link_validator, + "create_edit_link": FolderAction._create_edit_link_validator, + "set_access_inheritance": FolderAction._set_access_inheritance_validator, + "other": FolderAction._other_validator, } -FolderAction.change_options = FolderAction('change_options') -FolderAction.disable_viewer_info = FolderAction('disable_viewer_info') -FolderAction.edit_contents = FolderAction('edit_contents') -FolderAction.enable_viewer_info = FolderAction('enable_viewer_info') -FolderAction.invite_editor = FolderAction('invite_editor') -FolderAction.invite_viewer = FolderAction('invite_viewer') -FolderAction.invite_viewer_no_comment = FolderAction('invite_viewer_no_comment') -FolderAction.relinquish_membership = FolderAction('relinquish_membership') -FolderAction.unmount = FolderAction('unmount') -FolderAction.unshare = FolderAction('unshare') -FolderAction.leave_a_copy = FolderAction('leave_a_copy') -FolderAction.share_link = FolderAction('share_link') -FolderAction.create_link = FolderAction('create_link') -FolderAction.create_view_link = FolderAction('create_view_link') -FolderAction.create_edit_link = FolderAction('create_edit_link') -FolderAction.set_access_inheritance = FolderAction('set_access_inheritance') -FolderAction.other = FolderAction('other') +FolderAction.change_options = FolderAction("change_options") +FolderAction.disable_viewer_info = FolderAction("disable_viewer_info") +FolderAction.edit_contents = FolderAction("edit_contents") +FolderAction.enable_viewer_info = FolderAction("enable_viewer_info") +FolderAction.invite_editor = FolderAction("invite_editor") +FolderAction.invite_viewer = FolderAction("invite_viewer") +FolderAction.invite_viewer_no_comment = FolderAction("invite_viewer_no_comment") +FolderAction.relinquish_membership = FolderAction("relinquish_membership") +FolderAction.unmount = FolderAction("unmount") +FolderAction.unshare = FolderAction("unshare") +FolderAction.leave_a_copy = FolderAction("leave_a_copy") +FolderAction.share_link = FolderAction("share_link") +FolderAction.create_link = FolderAction("create_link") +FolderAction.create_view_link = FolderAction("create_view_link") +FolderAction.create_edit_link = FolderAction("create_edit_link") +FolderAction.set_access_inheritance = FolderAction("set_access_inheritance") +FolderAction.other = FolderAction("other") FolderLinkMetadata._field_names_ = set([]) -FolderLinkMetadata._all_field_names_ = SharedLinkMetadata._all_field_names_.union(FolderLinkMetadata._field_names_) +FolderLinkMetadata._all_field_names_ = SharedLinkMetadata._all_field_names_.union( + FolderLinkMetadata._field_names_ +) FolderLinkMetadata._fields_ = [] FolderLinkMetadata._all_fields_ = SharedLinkMetadata._all_fields_ + FolderLinkMetadata._fields_ FolderPermission.action.validator = FolderAction_validator FolderPermission.allow.validator = bv.Boolean() FolderPermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -FolderPermission._all_field_names_ = set([ - 'action', - 'allow', - 'reason', -]) +FolderPermission._all_field_names_ = set( + [ + "action", + "allow", + "reason", + ] +) FolderPermission._all_fields_ = [ - ('action', FolderPermission.action.validator), - ('allow', FolderPermission.allow.validator), - ('reason', FolderPermission.reason.validator), + ("action", FolderPermission.action.validator), + ("allow", FolderPermission.allow.validator), + ("reason", FolderPermission.reason.validator), ] FolderPolicy.member_policy.validator = bv.Nullable(MemberPolicy_validator) @@ -12874,85 +13480,95 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FolderPolicy.acl_update_policy.validator = AclUpdatePolicy_validator FolderPolicy.shared_link_policy.validator = SharedLinkPolicy_validator FolderPolicy.viewer_info_policy.validator = bv.Nullable(ViewerInfoPolicy_validator) -FolderPolicy._all_field_names_ = set([ - 'member_policy', - 'resolved_member_policy', - 'acl_update_policy', - 'shared_link_policy', - 'viewer_info_policy', -]) +FolderPolicy._all_field_names_ = set( + [ + "member_policy", + "resolved_member_policy", + "acl_update_policy", + "shared_link_policy", + "viewer_info_policy", + ] +) FolderPolicy._all_fields_ = [ - ('member_policy', FolderPolicy.member_policy.validator), - ('resolved_member_policy', FolderPolicy.resolved_member_policy.validator), - ('acl_update_policy', FolderPolicy.acl_update_policy.validator), - ('shared_link_policy', FolderPolicy.shared_link_policy.validator), - ('viewer_info_policy', FolderPolicy.viewer_info_policy.validator), + ("member_policy", FolderPolicy.member_policy.validator), + ("resolved_member_policy", FolderPolicy.resolved_member_policy.validator), + ("acl_update_policy", FolderPolicy.acl_update_policy.validator), + ("shared_link_policy", FolderPolicy.shared_link_policy.validator), + ("viewer_info_policy", FolderPolicy.viewer_info_policy.validator), ] GetFileMetadataArg.file.validator = PathOrId_validator GetFileMetadataArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) -GetFileMetadataArg._all_field_names_ = set([ - 'file', - 'actions', -]) +GetFileMetadataArg._all_field_names_ = set( + [ + "file", + "actions", + ] +) GetFileMetadataArg._all_fields_ = [ - ('file', GetFileMetadataArg.file.validator), - ('actions', GetFileMetadataArg.actions.validator), + ("file", GetFileMetadataArg.file.validator), + ("actions", GetFileMetadataArg.actions.validator), ] GetFileMetadataBatchArg.files.validator = bv.List(PathOrId_validator, max_items=100) GetFileMetadataBatchArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) -GetFileMetadataBatchArg._all_field_names_ = set([ - 'files', - 'actions', -]) +GetFileMetadataBatchArg._all_field_names_ = set( + [ + "files", + "actions", + ] +) GetFileMetadataBatchArg._all_fields_ = [ - ('files', GetFileMetadataBatchArg.files.validator), - ('actions', GetFileMetadataBatchArg.actions.validator), + ("files", GetFileMetadataBatchArg.files.validator), + ("actions", GetFileMetadataBatchArg.actions.validator), ] GetFileMetadataBatchResult.file.validator = PathOrId_validator GetFileMetadataBatchResult.result.validator = GetFileMetadataIndividualResult_validator -GetFileMetadataBatchResult._all_field_names_ = set([ - 'file', - 'result', -]) +GetFileMetadataBatchResult._all_field_names_ = set( + [ + "file", + "result", + ] +) GetFileMetadataBatchResult._all_fields_ = [ - ('file', GetFileMetadataBatchResult.file.validator), - ('result', GetFileMetadataBatchResult.result.validator), + ("file", GetFileMetadataBatchResult.file.validator), + ("result", GetFileMetadataBatchResult.result.validator), ] GetFileMetadataError._user_error_validator = SharingUserError_validator GetFileMetadataError._access_error_validator = SharingFileAccessError_validator GetFileMetadataError._other_validator = bv.Void() GetFileMetadataError._tagmap = { - 'user_error': GetFileMetadataError._user_error_validator, - 'access_error': GetFileMetadataError._access_error_validator, - 'other': GetFileMetadataError._other_validator, + "user_error": GetFileMetadataError._user_error_validator, + "access_error": GetFileMetadataError._access_error_validator, + "other": GetFileMetadataError._other_validator, } -GetFileMetadataError.other = GetFileMetadataError('other') +GetFileMetadataError.other = GetFileMetadataError("other") GetFileMetadataIndividualResult._metadata_validator = SharedFileMetadata_validator GetFileMetadataIndividualResult._access_error_validator = SharingFileAccessError_validator GetFileMetadataIndividualResult._other_validator = bv.Void() GetFileMetadataIndividualResult._tagmap = { - 'metadata': GetFileMetadataIndividualResult._metadata_validator, - 'access_error': GetFileMetadataIndividualResult._access_error_validator, - 'other': GetFileMetadataIndividualResult._other_validator, + "metadata": GetFileMetadataIndividualResult._metadata_validator, + "access_error": GetFileMetadataIndividualResult._access_error_validator, + "other": GetFileMetadataIndividualResult._other_validator, } -GetFileMetadataIndividualResult.other = GetFileMetadataIndividualResult('other') +GetFileMetadataIndividualResult.other = GetFileMetadataIndividualResult("other") GetMetadataArgs.shared_folder_id.validator = common.SharedFolderId_validator GetMetadataArgs.actions.validator = bv.Nullable(bv.List(FolderAction_validator)) -GetMetadataArgs._all_field_names_ = set([ - 'shared_folder_id', - 'actions', -]) +GetMetadataArgs._all_field_names_ = set( + [ + "shared_folder_id", + "actions", + ] +) GetMetadataArgs._all_fields_ = [ - ('shared_folder_id', GetMetadataArgs.shared_folder_id.validator), - ('actions', GetMetadataArgs.actions.validator), + ("shared_folder_id", GetMetadataArgs.shared_folder_id.validator), + ("actions", GetMetadataArgs.actions.validator), ] SharedLinkError._shared_link_not_found_validator = bv.Void() @@ -12961,139 +13577,157 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkError._unsupported_parameter_field_validator = bv.Void() SharedLinkError._other_validator = bv.Void() SharedLinkError._tagmap = { - 'shared_link_not_found': SharedLinkError._shared_link_not_found_validator, - 'shared_link_access_denied': SharedLinkError._shared_link_access_denied_validator, - 'unsupported_link_type': SharedLinkError._unsupported_link_type_validator, - 'unsupported_parameter_field': SharedLinkError._unsupported_parameter_field_validator, - 'other': SharedLinkError._other_validator, + "shared_link_not_found": SharedLinkError._shared_link_not_found_validator, + "shared_link_access_denied": SharedLinkError._shared_link_access_denied_validator, + "unsupported_link_type": SharedLinkError._unsupported_link_type_validator, + "unsupported_parameter_field": SharedLinkError._unsupported_parameter_field_validator, + "other": SharedLinkError._other_validator, } -SharedLinkError.shared_link_not_found = SharedLinkError('shared_link_not_found') -SharedLinkError.shared_link_access_denied = SharedLinkError('shared_link_access_denied') -SharedLinkError.unsupported_link_type = SharedLinkError('unsupported_link_type') -SharedLinkError.unsupported_parameter_field = SharedLinkError('unsupported_parameter_field') -SharedLinkError.other = SharedLinkError('other') +SharedLinkError.shared_link_not_found = SharedLinkError("shared_link_not_found") +SharedLinkError.shared_link_access_denied = SharedLinkError("shared_link_access_denied") +SharedLinkError.unsupported_link_type = SharedLinkError("unsupported_link_type") +SharedLinkError.unsupported_parameter_field = SharedLinkError("unsupported_parameter_field") +SharedLinkError.other = SharedLinkError("other") GetSharedLinkFileError._shared_link_is_directory_validator = bv.Void() GetSharedLinkFileError._tagmap = { - 'shared_link_is_directory': GetSharedLinkFileError._shared_link_is_directory_validator, + "shared_link_is_directory": GetSharedLinkFileError._shared_link_is_directory_validator, } GetSharedLinkFileError._tagmap.update(SharedLinkError._tagmap) -GetSharedLinkFileError.shared_link_is_directory = GetSharedLinkFileError('shared_link_is_directory') +GetSharedLinkFileError.shared_link_is_directory = GetSharedLinkFileError("shared_link_is_directory") GetSharedLinkMetadataArg.url.validator = bv.String() GetSharedLinkMetadataArg.path.validator = bv.Nullable(Path_validator) GetSharedLinkMetadataArg.link_password.validator = bv.Nullable(bv.String()) -GetSharedLinkMetadataArg._all_field_names_ = set([ - 'url', - 'path', - 'link_password', -]) +GetSharedLinkMetadataArg._all_field_names_ = set( + [ + "url", + "path", + "link_password", + ] +) GetSharedLinkMetadataArg._all_fields_ = [ - ('url', GetSharedLinkMetadataArg.url.validator), - ('path', GetSharedLinkMetadataArg.path.validator), - ('link_password', GetSharedLinkMetadataArg.link_password.validator), + ("url", GetSharedLinkMetadataArg.url.validator), + ("path", GetSharedLinkMetadataArg.path.validator), + ("link_password", GetSharedLinkMetadataArg.link_password.validator), ] GetSharedLinksArg.path.validator = bv.Nullable(bv.String()) -GetSharedLinksArg._all_field_names_ = set(['path']) -GetSharedLinksArg._all_fields_ = [('path', GetSharedLinksArg.path.validator)] +GetSharedLinksArg._all_field_names_ = set(["path"]) +GetSharedLinksArg._all_fields_ = [("path", GetSharedLinksArg.path.validator)] GetSharedLinksError._path_validator = files.MalformedPathError_validator GetSharedLinksError._other_validator = bv.Void() GetSharedLinksError._tagmap = { - 'path': GetSharedLinksError._path_validator, - 'other': GetSharedLinksError._other_validator, + "path": GetSharedLinksError._path_validator, + "other": GetSharedLinksError._other_validator, } -GetSharedLinksError.other = GetSharedLinksError('other') +GetSharedLinksError.other = GetSharedLinksError("other") GetSharedLinksResult.links.validator = bv.List(LinkMetadata_validator) -GetSharedLinksResult._all_field_names_ = set(['links']) -GetSharedLinksResult._all_fields_ = [('links', GetSharedLinksResult.links.validator)] +GetSharedLinksResult._all_field_names_ = set(["links"]) +GetSharedLinksResult._all_fields_ = [("links", GetSharedLinksResult.links.validator)] GroupInfo.group_type.validator = team_common.GroupType_validator GroupInfo.is_member.validator = bv.Boolean() GroupInfo.is_owner.validator = bv.Boolean() GroupInfo.same_team.validator = bv.Boolean() -GroupInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union(set([ - 'group_type', - 'is_member', - 'is_owner', - 'same_team', -])) +GroupInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union( + set( + [ + "group_type", + "is_member", + "is_owner", + "same_team", + ] + ) +) GroupInfo._all_fields_ = team_common.GroupSummary._all_fields_ + [ - ('group_type', GroupInfo.group_type.validator), - ('is_member', GroupInfo.is_member.validator), - ('is_owner', GroupInfo.is_owner.validator), - ('same_team', GroupInfo.same_team.validator), + ("group_type", GroupInfo.group_type.validator), + ("is_member", GroupInfo.is_member.validator), + ("is_owner", GroupInfo.is_owner.validator), + ("same_team", GroupInfo.same_team.validator), ] MembershipInfo.access_type.validator = AccessLevel_validator MembershipInfo.permissions.validator = bv.Nullable(bv.List(MemberPermission_validator)) MembershipInfo.initials.validator = bv.Nullable(bv.String()) MembershipInfo.is_inherited.validator = bv.Boolean() -MembershipInfo._all_field_names_ = set([ - 'access_type', - 'permissions', - 'initials', - 'is_inherited', -]) +MembershipInfo._all_field_names_ = set( + [ + "access_type", + "permissions", + "initials", + "is_inherited", + ] +) MembershipInfo._all_fields_ = [ - ('access_type', MembershipInfo.access_type.validator), - ('permissions', MembershipInfo.permissions.validator), - ('initials', MembershipInfo.initials.validator), - ('is_inherited', MembershipInfo.is_inherited.validator), + ("access_type", MembershipInfo.access_type.validator), + ("permissions", MembershipInfo.permissions.validator), + ("initials", MembershipInfo.initials.validator), + ("is_inherited", MembershipInfo.is_inherited.validator), ] GroupMembershipInfo.group.validator = GroupInfo_validator -GroupMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(['group'])) -GroupMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [('group', GroupMembershipInfo.group.validator)] +GroupMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(["group"])) +GroupMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [ + ("group", GroupMembershipInfo.group.validator) +] InsufficientPlan.message.validator = bv.String() InsufficientPlan.upsell_url.validator = bv.Nullable(bv.String()) -InsufficientPlan._all_field_names_ = set([ - 'message', - 'upsell_url', -]) +InsufficientPlan._all_field_names_ = set( + [ + "message", + "upsell_url", + ] +) InsufficientPlan._all_fields_ = [ - ('message', InsufficientPlan.message.validator), - ('upsell_url', InsufficientPlan.upsell_url.validator), + ("message", InsufficientPlan.message.validator), + ("upsell_url", InsufficientPlan.upsell_url.validator), ] InsufficientQuotaAmounts.space_needed.validator = bv.UInt64() InsufficientQuotaAmounts.space_shortage.validator = bv.UInt64() InsufficientQuotaAmounts.space_left.validator = bv.UInt64() -InsufficientQuotaAmounts._all_field_names_ = set([ - 'space_needed', - 'space_shortage', - 'space_left', -]) +InsufficientQuotaAmounts._all_field_names_ = set( + [ + "space_needed", + "space_shortage", + "space_left", + ] +) InsufficientQuotaAmounts._all_fields_ = [ - ('space_needed', InsufficientQuotaAmounts.space_needed.validator), - ('space_shortage', InsufficientQuotaAmounts.space_shortage.validator), - ('space_left', InsufficientQuotaAmounts.space_left.validator), + ("space_needed", InsufficientQuotaAmounts.space_needed.validator), + ("space_shortage", InsufficientQuotaAmounts.space_shortage.validator), + ("space_left", InsufficientQuotaAmounts.space_left.validator), ] InviteeInfo._email_validator = common.EmailAddress_validator InviteeInfo._other_validator = bv.Void() InviteeInfo._tagmap = { - 'email': InviteeInfo._email_validator, - 'other': InviteeInfo._other_validator, + "email": InviteeInfo._email_validator, + "other": InviteeInfo._other_validator, } -InviteeInfo.other = InviteeInfo('other') +InviteeInfo.other = InviteeInfo("other") InviteeMembershipInfo.invitee.validator = InviteeInfo_validator InviteeMembershipInfo.user.validator = bv.Nullable(UserInfo_validator) -InviteeMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set([ - 'invitee', - 'user', -])) +InviteeMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union( + set( + [ + "invitee", + "user", + ] + ) +) InviteeMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [ - ('invitee', InviteeMembershipInfo.invitee.validator), - ('user', InviteeMembershipInfo.user.validator), + ("invitee", InviteeMembershipInfo.invitee.validator), + ("user", InviteeMembershipInfo.user.validator), ] JobError._unshare_folder_error_validator = UnshareFolderError_validator @@ -13101,36 +13735,36 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): JobError._relinquish_folder_membership_error_validator = RelinquishFolderMembershipError_validator JobError._other_validator = bv.Void() JobError._tagmap = { - 'unshare_folder_error': JobError._unshare_folder_error_validator, - 'remove_folder_member_error': JobError._remove_folder_member_error_validator, - 'relinquish_folder_membership_error': JobError._relinquish_folder_membership_error_validator, - 'other': JobError._other_validator, + "unshare_folder_error": JobError._unshare_folder_error_validator, + "remove_folder_member_error": JobError._remove_folder_member_error_validator, + "relinquish_folder_membership_error": JobError._relinquish_folder_membership_error_validator, + "other": JobError._other_validator, } -JobError.other = JobError('other') +JobError.other = JobError("other") JobStatus._complete_validator = bv.Void() JobStatus._failed_validator = JobError_validator JobStatus._tagmap = { - 'complete': JobStatus._complete_validator, - 'failed': JobStatus._failed_validator, + "complete": JobStatus._complete_validator, + "failed": JobStatus._failed_validator, } JobStatus._tagmap.update(async_.PollResultBase._tagmap) -JobStatus.complete = JobStatus('complete') +JobStatus.complete = JobStatus("complete") LinkAccessLevel._viewer_validator = bv.Void() LinkAccessLevel._editor_validator = bv.Void() LinkAccessLevel._other_validator = bv.Void() LinkAccessLevel._tagmap = { - 'viewer': LinkAccessLevel._viewer_validator, - 'editor': LinkAccessLevel._editor_validator, - 'other': LinkAccessLevel._other_validator, + "viewer": LinkAccessLevel._viewer_validator, + "editor": LinkAccessLevel._editor_validator, + "other": LinkAccessLevel._other_validator, } -LinkAccessLevel.viewer = LinkAccessLevel('viewer') -LinkAccessLevel.editor = LinkAccessLevel('editor') -LinkAccessLevel.other = LinkAccessLevel('other') +LinkAccessLevel.viewer = LinkAccessLevel("viewer") +LinkAccessLevel.editor = LinkAccessLevel("editor") +LinkAccessLevel.other = LinkAccessLevel("other") LinkAction._change_access_level_validator = bv.Void() LinkAction._change_audience_validator = bv.Void() @@ -13140,22 +13774,22 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkAction._set_password_validator = bv.Void() LinkAction._other_validator = bv.Void() LinkAction._tagmap = { - 'change_access_level': LinkAction._change_access_level_validator, - 'change_audience': LinkAction._change_audience_validator, - 'remove_expiry': LinkAction._remove_expiry_validator, - 'remove_password': LinkAction._remove_password_validator, - 'set_expiry': LinkAction._set_expiry_validator, - 'set_password': LinkAction._set_password_validator, - 'other': LinkAction._other_validator, + "change_access_level": LinkAction._change_access_level_validator, + "change_audience": LinkAction._change_audience_validator, + "remove_expiry": LinkAction._remove_expiry_validator, + "remove_password": LinkAction._remove_password_validator, + "set_expiry": LinkAction._set_expiry_validator, + "set_password": LinkAction._set_password_validator, + "other": LinkAction._other_validator, } -LinkAction.change_access_level = LinkAction('change_access_level') -LinkAction.change_audience = LinkAction('change_audience') -LinkAction.remove_expiry = LinkAction('remove_expiry') -LinkAction.remove_password = LinkAction('remove_password') -LinkAction.set_expiry = LinkAction('set_expiry') -LinkAction.set_password = LinkAction('set_password') -LinkAction.other = LinkAction('other') +LinkAction.change_access_level = LinkAction("change_access_level") +LinkAction.change_audience = LinkAction("change_audience") +LinkAction.remove_expiry = LinkAction("remove_expiry") +LinkAction.remove_password = LinkAction("remove_password") +LinkAction.set_expiry = LinkAction("set_expiry") +LinkAction.set_password = LinkAction("set_password") +LinkAction.other = LinkAction("other") LinkAudience._public_validator = bv.Void() LinkAudience._team_validator = bv.Void() @@ -13164,20 +13798,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkAudience._members_validator = bv.Void() LinkAudience._other_validator = bv.Void() LinkAudience._tagmap = { - 'public': LinkAudience._public_validator, - 'team': LinkAudience._team_validator, - 'no_one': LinkAudience._no_one_validator, - 'password': LinkAudience._password_validator, - 'members': LinkAudience._members_validator, - 'other': LinkAudience._other_validator, + "public": LinkAudience._public_validator, + "team": LinkAudience._team_validator, + "no_one": LinkAudience._no_one_validator, + "password": LinkAudience._password_validator, + "members": LinkAudience._members_validator, + "other": LinkAudience._other_validator, } -LinkAudience.public = LinkAudience('public') -LinkAudience.team = LinkAudience('team') -LinkAudience.no_one = LinkAudience('no_one') -LinkAudience.password = LinkAudience('password') -LinkAudience.members = LinkAudience('members') -LinkAudience.other = LinkAudience('other') +LinkAudience.public = LinkAudience("public") +LinkAudience.team = LinkAudience("team") +LinkAudience.no_one = LinkAudience("no_one") +LinkAudience.password = LinkAudience("password") +LinkAudience.members = LinkAudience("members") +LinkAudience.other = LinkAudience("other") VisibilityPolicyDisallowedReason._delete_and_recreate_validator = bv.Void() VisibilityPolicyDisallowedReason._restricted_by_shared_folder_validator = bv.Void() @@ -13187,83 +13821,100 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): VisibilityPolicyDisallowedReason._permission_denied_validator = bv.Void() VisibilityPolicyDisallowedReason._other_validator = bv.Void() VisibilityPolicyDisallowedReason._tagmap = { - 'delete_and_recreate': VisibilityPolicyDisallowedReason._delete_and_recreate_validator, - 'restricted_by_shared_folder': VisibilityPolicyDisallowedReason._restricted_by_shared_folder_validator, - 'restricted_by_team': VisibilityPolicyDisallowedReason._restricted_by_team_validator, - 'user_not_on_team': VisibilityPolicyDisallowedReason._user_not_on_team_validator, - 'user_account_type': VisibilityPolicyDisallowedReason._user_account_type_validator, - 'permission_denied': VisibilityPolicyDisallowedReason._permission_denied_validator, - 'other': VisibilityPolicyDisallowedReason._other_validator, + "delete_and_recreate": VisibilityPolicyDisallowedReason._delete_and_recreate_validator, + "restricted_by_shared_folder": VisibilityPolicyDisallowedReason._restricted_by_shared_folder_validator, + "restricted_by_team": VisibilityPolicyDisallowedReason._restricted_by_team_validator, + "user_not_on_team": VisibilityPolicyDisallowedReason._user_not_on_team_validator, + "user_account_type": VisibilityPolicyDisallowedReason._user_account_type_validator, + "permission_denied": VisibilityPolicyDisallowedReason._permission_denied_validator, + "other": VisibilityPolicyDisallowedReason._other_validator, } -VisibilityPolicyDisallowedReason.delete_and_recreate = VisibilityPolicyDisallowedReason('delete_and_recreate') -VisibilityPolicyDisallowedReason.restricted_by_shared_folder = VisibilityPolicyDisallowedReason('restricted_by_shared_folder') -VisibilityPolicyDisallowedReason.restricted_by_team = VisibilityPolicyDisallowedReason('restricted_by_team') -VisibilityPolicyDisallowedReason.user_not_on_team = VisibilityPolicyDisallowedReason('user_not_on_team') -VisibilityPolicyDisallowedReason.user_account_type = VisibilityPolicyDisallowedReason('user_account_type') -VisibilityPolicyDisallowedReason.permission_denied = VisibilityPolicyDisallowedReason('permission_denied') -VisibilityPolicyDisallowedReason.other = VisibilityPolicyDisallowedReason('other') +VisibilityPolicyDisallowedReason.delete_and_recreate = VisibilityPolicyDisallowedReason( + "delete_and_recreate" +) +VisibilityPolicyDisallowedReason.restricted_by_shared_folder = VisibilityPolicyDisallowedReason( + "restricted_by_shared_folder" +) +VisibilityPolicyDisallowedReason.restricted_by_team = VisibilityPolicyDisallowedReason( + "restricted_by_team" +) +VisibilityPolicyDisallowedReason.user_not_on_team = VisibilityPolicyDisallowedReason( + "user_not_on_team" +) +VisibilityPolicyDisallowedReason.user_account_type = VisibilityPolicyDisallowedReason( + "user_account_type" +) +VisibilityPolicyDisallowedReason.permission_denied = VisibilityPolicyDisallowedReason( + "permission_denied" +) +VisibilityPolicyDisallowedReason.other = VisibilityPolicyDisallowedReason("other") -LinkAudienceDisallowedReason._tagmap = { -} +LinkAudienceDisallowedReason._tagmap = {} LinkAudienceDisallowedReason._tagmap.update(VisibilityPolicyDisallowedReason._tagmap) LinkAudienceOption.audience.validator = LinkAudience_validator LinkAudienceOption.allowed.validator = bv.Boolean() LinkAudienceOption.disallowed_reason.validator = bv.Nullable(LinkAudienceDisallowedReason_validator) -LinkAudienceOption._all_field_names_ = set([ - 'audience', - 'allowed', - 'disallowed_reason', -]) +LinkAudienceOption._all_field_names_ = set( + [ + "audience", + "allowed", + "disallowed_reason", + ] +) LinkAudienceOption._all_fields_ = [ - ('audience', LinkAudienceOption.audience.validator), - ('allowed', LinkAudienceOption.allowed.validator), - ('disallowed_reason', LinkAudienceOption.disallowed_reason.validator), + ("audience", LinkAudienceOption.audience.validator), + ("allowed", LinkAudienceOption.allowed.validator), + ("disallowed_reason", LinkAudienceOption.disallowed_reason.validator), ] LinkExpiry._remove_expiry_validator = bv.Void() LinkExpiry._set_expiry_validator = common.DropboxTimestamp_validator LinkExpiry._other_validator = bv.Void() LinkExpiry._tagmap = { - 'remove_expiry': LinkExpiry._remove_expiry_validator, - 'set_expiry': LinkExpiry._set_expiry_validator, - 'other': LinkExpiry._other_validator, + "remove_expiry": LinkExpiry._remove_expiry_validator, + "set_expiry": LinkExpiry._set_expiry_validator, + "other": LinkExpiry._other_validator, } -LinkExpiry.remove_expiry = LinkExpiry('remove_expiry') -LinkExpiry.other = LinkExpiry('other') +LinkExpiry.remove_expiry = LinkExpiry("remove_expiry") +LinkExpiry.other = LinkExpiry("other") LinkPassword._remove_password_validator = bv.Void() LinkPassword._set_password_validator = bv.String() LinkPassword._other_validator = bv.Void() LinkPassword._tagmap = { - 'remove_password': LinkPassword._remove_password_validator, - 'set_password': LinkPassword._set_password_validator, - 'other': LinkPassword._other_validator, + "remove_password": LinkPassword._remove_password_validator, + "set_password": LinkPassword._set_password_validator, + "other": LinkPassword._other_validator, } -LinkPassword.remove_password = LinkPassword('remove_password') -LinkPassword.other = LinkPassword('other') +LinkPassword.remove_password = LinkPassword("remove_password") +LinkPassword.other = LinkPassword("other") LinkPermission.action.validator = LinkAction_validator LinkPermission.allow.validator = bv.Boolean() LinkPermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -LinkPermission._all_field_names_ = set([ - 'action', - 'allow', - 'reason', -]) +LinkPermission._all_field_names_ = set( + [ + "action", + "allow", + "reason", + ] +) LinkPermission._all_fields_ = [ - ('action', LinkPermission.action.validator), - ('allow', LinkPermission.allow.validator), - ('reason', LinkPermission.reason.validator), + ("action", LinkPermission.action.validator), + ("allow", LinkPermission.allow.validator), + ("reason", LinkPermission.reason.validator), ] LinkPermissions.resolved_visibility.validator = bv.Nullable(ResolvedVisibility_validator) LinkPermissions.requested_visibility.validator = bv.Nullable(RequestedVisibility_validator) LinkPermissions.can_revoke.validator = bv.Boolean() -LinkPermissions.revoke_failure_reason.validator = bv.Nullable(SharedLinkAccessFailureReason_validator) +LinkPermissions.revoke_failure_reason.validator = bv.Nullable( + SharedLinkAccessFailureReason_validator +) LinkPermissions.effective_audience.validator = bv.Nullable(LinkAudience_validator) LinkPermissions.link_access_level.validator = bv.Nullable(LinkAccessLevel_validator) LinkPermissions.visibility_policies.validator = bv.List(VisibilityPolicy_validator) @@ -13281,333 +13932,384 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkPermissions.can_use_extended_sharing_controls.validator = bv.Nullable(bv.Boolean()) LinkPermissions.can_sync.validator = bv.Nullable(bv.Boolean()) LinkPermissions.can_request_access.validator = bv.Nullable(bv.Boolean()) -LinkPermissions.enforce_shared_link_password_policy.validator = bv.Nullable(team_policies.EnforceLinkPasswordPolicy_validator) -LinkPermissions.days_to_expire_policy.validator = bv.Nullable(team_policies.DefaultLinkExpirationDaysPolicy_validator) -LinkPermissions.change_shared_link_expiration_policy.validator = bv.Nullable(ChangeLinkExpirationPolicy_validator) -LinkPermissions._all_field_names_ = set([ - 'resolved_visibility', - 'requested_visibility', - 'can_revoke', - 'revoke_failure_reason', - 'effective_audience', - 'link_access_level', - 'visibility_policies', - 'can_set_expiry', - 'can_remove_expiry', - 'allow_download', - 'can_allow_download', - 'can_disallow_download', - 'allow_comments', - 'team_restricts_comments', - 'audience_options', - 'can_set_password', - 'can_remove_password', - 'require_password', - 'can_use_extended_sharing_controls', - 'can_sync', - 'can_request_access', - 'enforce_shared_link_password_policy', - 'days_to_expire_policy', - 'change_shared_link_expiration_policy', -]) +LinkPermissions.enforce_shared_link_password_policy.validator = bv.Nullable( + team_policies.EnforceLinkPasswordPolicy_validator +) +LinkPermissions.days_to_expire_policy.validator = bv.Nullable( + team_policies.DefaultLinkExpirationDaysPolicy_validator +) +LinkPermissions.change_shared_link_expiration_policy.validator = bv.Nullable( + ChangeLinkExpirationPolicy_validator +) +LinkPermissions._all_field_names_ = set( + [ + "resolved_visibility", + "requested_visibility", + "can_revoke", + "revoke_failure_reason", + "effective_audience", + "link_access_level", + "visibility_policies", + "can_set_expiry", + "can_remove_expiry", + "allow_download", + "can_allow_download", + "can_disallow_download", + "allow_comments", + "team_restricts_comments", + "audience_options", + "can_set_password", + "can_remove_password", + "require_password", + "can_use_extended_sharing_controls", + "can_sync", + "can_request_access", + "enforce_shared_link_password_policy", + "days_to_expire_policy", + "change_shared_link_expiration_policy", + ] +) LinkPermissions._all_fields_ = [ - ('resolved_visibility', LinkPermissions.resolved_visibility.validator), - ('requested_visibility', LinkPermissions.requested_visibility.validator), - ('can_revoke', LinkPermissions.can_revoke.validator), - ('revoke_failure_reason', LinkPermissions.revoke_failure_reason.validator), - ('effective_audience', LinkPermissions.effective_audience.validator), - ('link_access_level', LinkPermissions.link_access_level.validator), - ('visibility_policies', LinkPermissions.visibility_policies.validator), - ('can_set_expiry', LinkPermissions.can_set_expiry.validator), - ('can_remove_expiry', LinkPermissions.can_remove_expiry.validator), - ('allow_download', LinkPermissions.allow_download.validator), - ('can_allow_download', LinkPermissions.can_allow_download.validator), - ('can_disallow_download', LinkPermissions.can_disallow_download.validator), - ('allow_comments', LinkPermissions.allow_comments.validator), - ('team_restricts_comments', LinkPermissions.team_restricts_comments.validator), - ('audience_options', LinkPermissions.audience_options.validator), - ('can_set_password', LinkPermissions.can_set_password.validator), - ('can_remove_password', LinkPermissions.can_remove_password.validator), - ('require_password', LinkPermissions.require_password.validator), - ('can_use_extended_sharing_controls', LinkPermissions.can_use_extended_sharing_controls.validator), - ('can_sync', LinkPermissions.can_sync.validator), - ('can_request_access', LinkPermissions.can_request_access.validator), - ('enforce_shared_link_password_policy', LinkPermissions.enforce_shared_link_password_policy.validator), - ('days_to_expire_policy', LinkPermissions.days_to_expire_policy.validator), - ('change_shared_link_expiration_policy', LinkPermissions.change_shared_link_expiration_policy.validator), + ("resolved_visibility", LinkPermissions.resolved_visibility.validator), + ("requested_visibility", LinkPermissions.requested_visibility.validator), + ("can_revoke", LinkPermissions.can_revoke.validator), + ("revoke_failure_reason", LinkPermissions.revoke_failure_reason.validator), + ("effective_audience", LinkPermissions.effective_audience.validator), + ("link_access_level", LinkPermissions.link_access_level.validator), + ("visibility_policies", LinkPermissions.visibility_policies.validator), + ("can_set_expiry", LinkPermissions.can_set_expiry.validator), + ("can_remove_expiry", LinkPermissions.can_remove_expiry.validator), + ("allow_download", LinkPermissions.allow_download.validator), + ("can_allow_download", LinkPermissions.can_allow_download.validator), + ("can_disallow_download", LinkPermissions.can_disallow_download.validator), + ("allow_comments", LinkPermissions.allow_comments.validator), + ("team_restricts_comments", LinkPermissions.team_restricts_comments.validator), + ("audience_options", LinkPermissions.audience_options.validator), + ("can_set_password", LinkPermissions.can_set_password.validator), + ("can_remove_password", LinkPermissions.can_remove_password.validator), + ("require_password", LinkPermissions.require_password.validator), + ( + "can_use_extended_sharing_controls", + LinkPermissions.can_use_extended_sharing_controls.validator, + ), + ("can_sync", LinkPermissions.can_sync.validator), + ("can_request_access", LinkPermissions.can_request_access.validator), + ( + "enforce_shared_link_password_policy", + LinkPermissions.enforce_shared_link_password_policy.validator, + ), + ("days_to_expire_policy", LinkPermissions.days_to_expire_policy.validator), + ( + "change_shared_link_expiration_policy", + LinkPermissions.change_shared_link_expiration_policy.validator, + ), ] LinkSettings.access_level.validator = bv.Nullable(AccessLevel_validator) LinkSettings.audience.validator = bv.Nullable(LinkAudience_validator) LinkSettings.expiry.validator = bv.Nullable(LinkExpiry_validator) LinkSettings.password.validator = bv.Nullable(LinkPassword_validator) -LinkSettings._all_field_names_ = set([ - 'access_level', - 'audience', - 'expiry', - 'password', -]) +LinkSettings._all_field_names_ = set( + [ + "access_level", + "audience", + "expiry", + "password", + ] +) LinkSettings._all_fields_ = [ - ('access_level', LinkSettings.access_level.validator), - ('audience', LinkSettings.audience.validator), - ('expiry', LinkSettings.expiry.validator), - ('password', LinkSettings.password.validator), + ("access_level", LinkSettings.access_level.validator), + ("audience", LinkSettings.audience.validator), + ("expiry", LinkSettings.expiry.validator), + ("password", LinkSettings.password.validator), ] ListFileMembersArg.file.validator = PathOrId_validator ListFileMembersArg.actions.validator = bv.Nullable(bv.List(MemberAction_validator)) ListFileMembersArg.include_inherited.validator = bv.Boolean() ListFileMembersArg.limit.validator = bv.UInt32(min_value=1, max_value=300) -ListFileMembersArg._all_field_names_ = set([ - 'file', - 'actions', - 'include_inherited', - 'limit', -]) +ListFileMembersArg._all_field_names_ = set( + [ + "file", + "actions", + "include_inherited", + "limit", + ] +) ListFileMembersArg._all_fields_ = [ - ('file', ListFileMembersArg.file.validator), - ('actions', ListFileMembersArg.actions.validator), - ('include_inherited', ListFileMembersArg.include_inherited.validator), - ('limit', ListFileMembersArg.limit.validator), + ("file", ListFileMembersArg.file.validator), + ("actions", ListFileMembersArg.actions.validator), + ("include_inherited", ListFileMembersArg.include_inherited.validator), + ("limit", ListFileMembersArg.limit.validator), ] ListFileMembersBatchArg.files.validator = bv.List(PathOrId_validator, max_items=100) ListFileMembersBatchArg.limit.validator = bv.UInt32(max_value=3000) -ListFileMembersBatchArg._all_field_names_ = set([ - 'files', - 'limit', -]) +ListFileMembersBatchArg._all_field_names_ = set( + [ + "files", + "limit", + ] +) ListFileMembersBatchArg._all_fields_ = [ - ('files', ListFileMembersBatchArg.files.validator), - ('limit', ListFileMembersBatchArg.limit.validator), + ("files", ListFileMembersBatchArg.files.validator), + ("limit", ListFileMembersBatchArg.limit.validator), ] ListFileMembersBatchResult.file.validator = PathOrId_validator ListFileMembersBatchResult.result.validator = ListFileMembersIndividualResult_validator -ListFileMembersBatchResult._all_field_names_ = set([ - 'file', - 'result', -]) +ListFileMembersBatchResult._all_field_names_ = set( + [ + "file", + "result", + ] +) ListFileMembersBatchResult._all_fields_ = [ - ('file', ListFileMembersBatchResult.file.validator), - ('result', ListFileMembersBatchResult.result.validator), + ("file", ListFileMembersBatchResult.file.validator), + ("result", ListFileMembersBatchResult.result.validator), ] ListFileMembersContinueArg.cursor.validator = bv.String() -ListFileMembersContinueArg._all_field_names_ = set(['cursor']) -ListFileMembersContinueArg._all_fields_ = [('cursor', ListFileMembersContinueArg.cursor.validator)] +ListFileMembersContinueArg._all_field_names_ = set(["cursor"]) +ListFileMembersContinueArg._all_fields_ = [("cursor", ListFileMembersContinueArg.cursor.validator)] ListFileMembersContinueError._user_error_validator = SharingUserError_validator ListFileMembersContinueError._access_error_validator = SharingFileAccessError_validator ListFileMembersContinueError._invalid_cursor_validator = bv.Void() ListFileMembersContinueError._other_validator = bv.Void() ListFileMembersContinueError._tagmap = { - 'user_error': ListFileMembersContinueError._user_error_validator, - 'access_error': ListFileMembersContinueError._access_error_validator, - 'invalid_cursor': ListFileMembersContinueError._invalid_cursor_validator, - 'other': ListFileMembersContinueError._other_validator, + "user_error": ListFileMembersContinueError._user_error_validator, + "access_error": ListFileMembersContinueError._access_error_validator, + "invalid_cursor": ListFileMembersContinueError._invalid_cursor_validator, + "other": ListFileMembersContinueError._other_validator, } -ListFileMembersContinueError.invalid_cursor = ListFileMembersContinueError('invalid_cursor') -ListFileMembersContinueError.other = ListFileMembersContinueError('other') +ListFileMembersContinueError.invalid_cursor = ListFileMembersContinueError("invalid_cursor") +ListFileMembersContinueError.other = ListFileMembersContinueError("other") ListFileMembersCountResult.members.validator = SharedFileMembers_validator ListFileMembersCountResult.member_count.validator = bv.UInt32() -ListFileMembersCountResult._all_field_names_ = set([ - 'members', - 'member_count', -]) +ListFileMembersCountResult._all_field_names_ = set( + [ + "members", + "member_count", + ] +) ListFileMembersCountResult._all_fields_ = [ - ('members', ListFileMembersCountResult.members.validator), - ('member_count', ListFileMembersCountResult.member_count.validator), + ("members", ListFileMembersCountResult.members.validator), + ("member_count", ListFileMembersCountResult.member_count.validator), ] ListFileMembersError._user_error_validator = SharingUserError_validator ListFileMembersError._access_error_validator = SharingFileAccessError_validator ListFileMembersError._other_validator = bv.Void() ListFileMembersError._tagmap = { - 'user_error': ListFileMembersError._user_error_validator, - 'access_error': ListFileMembersError._access_error_validator, - 'other': ListFileMembersError._other_validator, + "user_error": ListFileMembersError._user_error_validator, + "access_error": ListFileMembersError._access_error_validator, + "other": ListFileMembersError._other_validator, } -ListFileMembersError.other = ListFileMembersError('other') +ListFileMembersError.other = ListFileMembersError("other") ListFileMembersIndividualResult._result_validator = ListFileMembersCountResult_validator ListFileMembersIndividualResult._access_error_validator = SharingFileAccessError_validator ListFileMembersIndividualResult._other_validator = bv.Void() ListFileMembersIndividualResult._tagmap = { - 'result': ListFileMembersIndividualResult._result_validator, - 'access_error': ListFileMembersIndividualResult._access_error_validator, - 'other': ListFileMembersIndividualResult._other_validator, + "result": ListFileMembersIndividualResult._result_validator, + "access_error": ListFileMembersIndividualResult._access_error_validator, + "other": ListFileMembersIndividualResult._other_validator, } -ListFileMembersIndividualResult.other = ListFileMembersIndividualResult('other') +ListFileMembersIndividualResult.other = ListFileMembersIndividualResult("other") ListFilesArg.limit.validator = bv.UInt32(min_value=1, max_value=300) ListFilesArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) -ListFilesArg._all_field_names_ = set([ - 'limit', - 'actions', -]) +ListFilesArg._all_field_names_ = set( + [ + "limit", + "actions", + ] +) ListFilesArg._all_fields_ = [ - ('limit', ListFilesArg.limit.validator), - ('actions', ListFilesArg.actions.validator), + ("limit", ListFilesArg.limit.validator), + ("actions", ListFilesArg.actions.validator), ] ListFilesContinueArg.cursor.validator = bv.String() -ListFilesContinueArg._all_field_names_ = set(['cursor']) -ListFilesContinueArg._all_fields_ = [('cursor', ListFilesContinueArg.cursor.validator)] +ListFilesContinueArg._all_field_names_ = set(["cursor"]) +ListFilesContinueArg._all_fields_ = [("cursor", ListFilesContinueArg.cursor.validator)] ListFilesContinueError._user_error_validator = SharingUserError_validator ListFilesContinueError._invalid_cursor_validator = bv.Void() ListFilesContinueError._other_validator = bv.Void() ListFilesContinueError._tagmap = { - 'user_error': ListFilesContinueError._user_error_validator, - 'invalid_cursor': ListFilesContinueError._invalid_cursor_validator, - 'other': ListFilesContinueError._other_validator, + "user_error": ListFilesContinueError._user_error_validator, + "invalid_cursor": ListFilesContinueError._invalid_cursor_validator, + "other": ListFilesContinueError._other_validator, } -ListFilesContinueError.invalid_cursor = ListFilesContinueError('invalid_cursor') -ListFilesContinueError.other = ListFilesContinueError('other') +ListFilesContinueError.invalid_cursor = ListFilesContinueError("invalid_cursor") +ListFilesContinueError.other = ListFilesContinueError("other") ListFilesResult.entries.validator = bv.List(SharedFileMetadata_validator) ListFilesResult.cursor.validator = bv.Nullable(bv.String()) -ListFilesResult._all_field_names_ = set([ - 'entries', - 'cursor', -]) +ListFilesResult._all_field_names_ = set( + [ + "entries", + "cursor", + ] +) ListFilesResult._all_fields_ = [ - ('entries', ListFilesResult.entries.validator), - ('cursor', ListFilesResult.cursor.validator), + ("entries", ListFilesResult.entries.validator), + ("cursor", ListFilesResult.cursor.validator), ] ListFolderMembersCursorArg.actions.validator = bv.Nullable(bv.List(MemberAction_validator)) ListFolderMembersCursorArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -ListFolderMembersCursorArg._all_field_names_ = set([ - 'actions', - 'limit', -]) +ListFolderMembersCursorArg._all_field_names_ = set( + [ + "actions", + "limit", + ] +) ListFolderMembersCursorArg._all_fields_ = [ - ('actions', ListFolderMembersCursorArg.actions.validator), - ('limit', ListFolderMembersCursorArg.limit.validator), + ("actions", ListFolderMembersCursorArg.actions.validator), + ("limit", ListFolderMembersCursorArg.limit.validator), ] ListFolderMembersArgs.shared_folder_id.validator = common.SharedFolderId_validator ListFolderMembersArgs.path.validator = bv.Nullable(bv.String()) -ListFolderMembersArgs._all_field_names_ = ListFolderMembersCursorArg._all_field_names_.union(set([ - 'shared_folder_id', - 'path', -])) +ListFolderMembersArgs._all_field_names_ = ListFolderMembersCursorArg._all_field_names_.union( + set( + [ + "shared_folder_id", + "path", + ] + ) +) ListFolderMembersArgs._all_fields_ = ListFolderMembersCursorArg._all_fields_ + [ - ('shared_folder_id', ListFolderMembersArgs.shared_folder_id.validator), - ('path', ListFolderMembersArgs.path.validator), + ("shared_folder_id", ListFolderMembersArgs.shared_folder_id.validator), + ("path", ListFolderMembersArgs.path.validator), ] ListFolderMembersContinueArg.cursor.validator = bv.String() -ListFolderMembersContinueArg._all_field_names_ = set(['cursor']) -ListFolderMembersContinueArg._all_fields_ = [('cursor', ListFolderMembersContinueArg.cursor.validator)] +ListFolderMembersContinueArg._all_field_names_ = set(["cursor"]) +ListFolderMembersContinueArg._all_fields_ = [ + ("cursor", ListFolderMembersContinueArg.cursor.validator) +] ListFolderMembersContinueError._access_error_validator = SharedFolderAccessError_validator ListFolderMembersContinueError._invalid_cursor_validator = bv.Void() ListFolderMembersContinueError._other_validator = bv.Void() ListFolderMembersContinueError._tagmap = { - 'access_error': ListFolderMembersContinueError._access_error_validator, - 'invalid_cursor': ListFolderMembersContinueError._invalid_cursor_validator, - 'other': ListFolderMembersContinueError._other_validator, + "access_error": ListFolderMembersContinueError._access_error_validator, + "invalid_cursor": ListFolderMembersContinueError._invalid_cursor_validator, + "other": ListFolderMembersContinueError._other_validator, } -ListFolderMembersContinueError.invalid_cursor = ListFolderMembersContinueError('invalid_cursor') -ListFolderMembersContinueError.other = ListFolderMembersContinueError('other') +ListFolderMembersContinueError.invalid_cursor = ListFolderMembersContinueError("invalid_cursor") +ListFolderMembersContinueError.other = ListFolderMembersContinueError("other") ListFoldersArgs.limit.validator = bv.UInt32(min_value=1, max_value=1000) ListFoldersArgs.actions.validator = bv.Nullable(bv.List(FolderAction_validator)) -ListFoldersArgs._all_field_names_ = set([ - 'limit', - 'actions', -]) +ListFoldersArgs._all_field_names_ = set( + [ + "limit", + "actions", + ] +) ListFoldersArgs._all_fields_ = [ - ('limit', ListFoldersArgs.limit.validator), - ('actions', ListFoldersArgs.actions.validator), + ("limit", ListFoldersArgs.limit.validator), + ("actions", ListFoldersArgs.actions.validator), ] ListFoldersContinueArg.cursor.validator = bv.String() -ListFoldersContinueArg._all_field_names_ = set(['cursor']) -ListFoldersContinueArg._all_fields_ = [('cursor', ListFoldersContinueArg.cursor.validator)] +ListFoldersContinueArg._all_field_names_ = set(["cursor"]) +ListFoldersContinueArg._all_fields_ = [("cursor", ListFoldersContinueArg.cursor.validator)] ListFoldersContinueError._invalid_cursor_validator = bv.Void() ListFoldersContinueError._other_validator = bv.Void() ListFoldersContinueError._tagmap = { - 'invalid_cursor': ListFoldersContinueError._invalid_cursor_validator, - 'other': ListFoldersContinueError._other_validator, + "invalid_cursor": ListFoldersContinueError._invalid_cursor_validator, + "other": ListFoldersContinueError._other_validator, } -ListFoldersContinueError.invalid_cursor = ListFoldersContinueError('invalid_cursor') -ListFoldersContinueError.other = ListFoldersContinueError('other') +ListFoldersContinueError.invalid_cursor = ListFoldersContinueError("invalid_cursor") +ListFoldersContinueError.other = ListFoldersContinueError("other") ListFoldersResult.entries.validator = bv.List(SharedFolderMetadata_validator) ListFoldersResult.cursor.validator = bv.Nullable(bv.String()) -ListFoldersResult._all_field_names_ = set([ - 'entries', - 'cursor', -]) +ListFoldersResult._all_field_names_ = set( + [ + "entries", + "cursor", + ] +) ListFoldersResult._all_fields_ = [ - ('entries', ListFoldersResult.entries.validator), - ('cursor', ListFoldersResult.cursor.validator), + ("entries", ListFoldersResult.entries.validator), + ("cursor", ListFoldersResult.cursor.validator), ] ListSharedLinksArg.path.validator = bv.Nullable(ReadPath_validator) ListSharedLinksArg.cursor.validator = bv.Nullable(bv.String()) ListSharedLinksArg.direct_only.validator = bv.Nullable(bv.Boolean()) -ListSharedLinksArg._all_field_names_ = set([ - 'path', - 'cursor', - 'direct_only', -]) +ListSharedLinksArg._all_field_names_ = set( + [ + "path", + "cursor", + "direct_only", + ] +) ListSharedLinksArg._all_fields_ = [ - ('path', ListSharedLinksArg.path.validator), - ('cursor', ListSharedLinksArg.cursor.validator), - ('direct_only', ListSharedLinksArg.direct_only.validator), + ("path", ListSharedLinksArg.path.validator), + ("cursor", ListSharedLinksArg.cursor.validator), + ("direct_only", ListSharedLinksArg.direct_only.validator), ] ListSharedLinksError._path_validator = files.LookupError_validator ListSharedLinksError._reset_validator = bv.Void() ListSharedLinksError._other_validator = bv.Void() ListSharedLinksError._tagmap = { - 'path': ListSharedLinksError._path_validator, - 'reset': ListSharedLinksError._reset_validator, - 'other': ListSharedLinksError._other_validator, + "path": ListSharedLinksError._path_validator, + "reset": ListSharedLinksError._reset_validator, + "other": ListSharedLinksError._other_validator, } -ListSharedLinksError.reset = ListSharedLinksError('reset') -ListSharedLinksError.other = ListSharedLinksError('other') +ListSharedLinksError.reset = ListSharedLinksError("reset") +ListSharedLinksError.other = ListSharedLinksError("other") ListSharedLinksResult.links.validator = bv.List(SharedLinkMetadata_validator) ListSharedLinksResult.has_more.validator = bv.Boolean() ListSharedLinksResult.cursor.validator = bv.Nullable(bv.String()) -ListSharedLinksResult._all_field_names_ = set([ - 'links', - 'has_more', - 'cursor', -]) +ListSharedLinksResult._all_field_names_ = set( + [ + "links", + "has_more", + "cursor", + ] +) ListSharedLinksResult._all_fields_ = [ - ('links', ListSharedLinksResult.links.validator), - ('has_more', ListSharedLinksResult.has_more.validator), - ('cursor', ListSharedLinksResult.cursor.validator), + ("links", ListSharedLinksResult.links.validator), + ("has_more", ListSharedLinksResult.has_more.validator), + ("cursor", ListSharedLinksResult.cursor.validator), ] MemberAccessLevelResult.access_level.validator = bv.Nullable(AccessLevel_validator) MemberAccessLevelResult.warning.validator = bv.Nullable(bv.String()) -MemberAccessLevelResult.access_details.validator = bv.Nullable(bv.List(ParentFolderAccessInfo_validator)) -MemberAccessLevelResult._all_field_names_ = set([ - 'access_level', - 'warning', - 'access_details', -]) +MemberAccessLevelResult.access_details.validator = bv.Nullable( + bv.List(ParentFolderAccessInfo_validator) +) +MemberAccessLevelResult._all_field_names_ = set( + [ + "access_level", + "warning", + "access_details", + ] +) MemberAccessLevelResult._all_fields_ = [ - ('access_level', MemberAccessLevelResult.access_level.validator), - ('warning', MemberAccessLevelResult.warning.validator), - ('access_details', MemberAccessLevelResult.access_details.validator), + ("access_level", MemberAccessLevelResult.access_level.validator), + ("warning", MemberAccessLevelResult.warning.validator), + ("access_details", MemberAccessLevelResult.access_details.validator), ] MemberAction._leave_a_copy_validator = bv.Void() @@ -13618,35 +14320,37 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberAction._remove_validator = bv.Void() MemberAction._other_validator = bv.Void() MemberAction._tagmap = { - 'leave_a_copy': MemberAction._leave_a_copy_validator, - 'make_editor': MemberAction._make_editor_validator, - 'make_owner': MemberAction._make_owner_validator, - 'make_viewer': MemberAction._make_viewer_validator, - 'make_viewer_no_comment': MemberAction._make_viewer_no_comment_validator, - 'remove': MemberAction._remove_validator, - 'other': MemberAction._other_validator, + "leave_a_copy": MemberAction._leave_a_copy_validator, + "make_editor": MemberAction._make_editor_validator, + "make_owner": MemberAction._make_owner_validator, + "make_viewer": MemberAction._make_viewer_validator, + "make_viewer_no_comment": MemberAction._make_viewer_no_comment_validator, + "remove": MemberAction._remove_validator, + "other": MemberAction._other_validator, } -MemberAction.leave_a_copy = MemberAction('leave_a_copy') -MemberAction.make_editor = MemberAction('make_editor') -MemberAction.make_owner = MemberAction('make_owner') -MemberAction.make_viewer = MemberAction('make_viewer') -MemberAction.make_viewer_no_comment = MemberAction('make_viewer_no_comment') -MemberAction.remove = MemberAction('remove') -MemberAction.other = MemberAction('other') +MemberAction.leave_a_copy = MemberAction("leave_a_copy") +MemberAction.make_editor = MemberAction("make_editor") +MemberAction.make_owner = MemberAction("make_owner") +MemberAction.make_viewer = MemberAction("make_viewer") +MemberAction.make_viewer_no_comment = MemberAction("make_viewer_no_comment") +MemberAction.remove = MemberAction("remove") +MemberAction.other = MemberAction("other") MemberPermission.action.validator = MemberAction_validator MemberPermission.allow.validator = bv.Boolean() MemberPermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -MemberPermission._all_field_names_ = set([ - 'action', - 'allow', - 'reason', -]) +MemberPermission._all_field_names_ = set( + [ + "action", + "allow", + "reason", + ] +) MemberPermission._all_fields_ = [ - ('action', MemberPermission.action.validator), - ('allow', MemberPermission.allow.validator), - ('reason', MemberPermission.reason.validator), + ("action", MemberPermission.action.validator), + ("allow", MemberPermission.allow.validator), + ("reason", MemberPermission.reason.validator), ] MemberPolicy._team_validator = bv.Void() @@ -13654,55 +14358,59 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberPolicy._team_and_approved_validator = bv.Void() MemberPolicy._other_validator = bv.Void() MemberPolicy._tagmap = { - 'team': MemberPolicy._team_validator, - 'anyone': MemberPolicy._anyone_validator, - 'team_and_approved': MemberPolicy._team_and_approved_validator, - 'other': MemberPolicy._other_validator, + "team": MemberPolicy._team_validator, + "anyone": MemberPolicy._anyone_validator, + "team_and_approved": MemberPolicy._team_and_approved_validator, + "other": MemberPolicy._other_validator, } -MemberPolicy.team = MemberPolicy('team') -MemberPolicy.anyone = MemberPolicy('anyone') -MemberPolicy.team_and_approved = MemberPolicy('team_and_approved') -MemberPolicy.other = MemberPolicy('other') +MemberPolicy.team = MemberPolicy("team") +MemberPolicy.anyone = MemberPolicy("anyone") +MemberPolicy.team_and_approved = MemberPolicy("team_and_approved") +MemberPolicy.other = MemberPolicy("other") MemberSelector._dropbox_id_validator = DropboxId_validator MemberSelector._email_validator = common.EmailAddress_validator MemberSelector._other_validator = bv.Void() MemberSelector._tagmap = { - 'dropbox_id': MemberSelector._dropbox_id_validator, - 'email': MemberSelector._email_validator, - 'other': MemberSelector._other_validator, + "dropbox_id": MemberSelector._dropbox_id_validator, + "email": MemberSelector._email_validator, + "other": MemberSelector._other_validator, } -MemberSelector.other = MemberSelector('other') +MemberSelector.other = MemberSelector("other") ModifySharedLinkSettingsArgs.url.validator = bv.String() ModifySharedLinkSettingsArgs.settings.validator = SharedLinkSettings_validator ModifySharedLinkSettingsArgs.remove_expiration.validator = bv.Boolean() -ModifySharedLinkSettingsArgs._all_field_names_ = set([ - 'url', - 'settings', - 'remove_expiration', -]) +ModifySharedLinkSettingsArgs._all_field_names_ = set( + [ + "url", + "settings", + "remove_expiration", + ] +) ModifySharedLinkSettingsArgs._all_fields_ = [ - ('url', ModifySharedLinkSettingsArgs.url.validator), - ('settings', ModifySharedLinkSettingsArgs.settings.validator), - ('remove_expiration', ModifySharedLinkSettingsArgs.remove_expiration.validator), + ("url", ModifySharedLinkSettingsArgs.url.validator), + ("settings", ModifySharedLinkSettingsArgs.settings.validator), + ("remove_expiration", ModifySharedLinkSettingsArgs.remove_expiration.validator), ] ModifySharedLinkSettingsError._settings_error_validator = SharedLinkSettingsError_validator ModifySharedLinkSettingsError._email_not_verified_validator = bv.Void() ModifySharedLinkSettingsError._tagmap = { - 'settings_error': ModifySharedLinkSettingsError._settings_error_validator, - 'email_not_verified': ModifySharedLinkSettingsError._email_not_verified_validator, + "settings_error": ModifySharedLinkSettingsError._settings_error_validator, + "email_not_verified": ModifySharedLinkSettingsError._email_not_verified_validator, } ModifySharedLinkSettingsError._tagmap.update(SharedLinkError._tagmap) -ModifySharedLinkSettingsError.email_not_verified = ModifySharedLinkSettingsError('email_not_verified') +ModifySharedLinkSettingsError.email_not_verified = ModifySharedLinkSettingsError( + "email_not_verified" +) MountFolderArg.shared_folder_id.validator = common.SharedFolderId_validator -MountFolderArg._all_field_names_ = set(['shared_folder_id']) -MountFolderArg._all_fields_ = [('shared_folder_id', MountFolderArg.shared_folder_id.validator)] +MountFolderArg._all_field_names_ = set(["shared_folder_id"]) +MountFolderArg._all_fields_ = [("shared_folder_id", MountFolderArg.shared_folder_id.validator)] MountFolderError._access_error_validator = SharedFolderAccessError_validator MountFolderError._inside_shared_folder_validator = bv.Void() @@ -13713,55 +14421,59 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MountFolderError._must_automount_validator = bv.Void() MountFolderError._other_validator = bv.Void() MountFolderError._tagmap = { - 'access_error': MountFolderError._access_error_validator, - 'inside_shared_folder': MountFolderError._inside_shared_folder_validator, - 'insufficient_quota': MountFolderError._insufficient_quota_validator, - 'already_mounted': MountFolderError._already_mounted_validator, - 'no_permission': MountFolderError._no_permission_validator, - 'not_mountable': MountFolderError._not_mountable_validator, - 'must_automount': MountFolderError._must_automount_validator, - 'other': MountFolderError._other_validator, + "access_error": MountFolderError._access_error_validator, + "inside_shared_folder": MountFolderError._inside_shared_folder_validator, + "insufficient_quota": MountFolderError._insufficient_quota_validator, + "already_mounted": MountFolderError._already_mounted_validator, + "no_permission": MountFolderError._no_permission_validator, + "not_mountable": MountFolderError._not_mountable_validator, + "must_automount": MountFolderError._must_automount_validator, + "other": MountFolderError._other_validator, } -MountFolderError.inside_shared_folder = MountFolderError('inside_shared_folder') -MountFolderError.already_mounted = MountFolderError('already_mounted') -MountFolderError.no_permission = MountFolderError('no_permission') -MountFolderError.not_mountable = MountFolderError('not_mountable') -MountFolderError.must_automount = MountFolderError('must_automount') -MountFolderError.other = MountFolderError('other') +MountFolderError.inside_shared_folder = MountFolderError("inside_shared_folder") +MountFolderError.already_mounted = MountFolderError("already_mounted") +MountFolderError.no_permission = MountFolderError("no_permission") +MountFolderError.not_mountable = MountFolderError("not_mountable") +MountFolderError.must_automount = MountFolderError("must_automount") +MountFolderError.other = MountFolderError("other") ParentFolderAccessInfo.folder_name.validator = bv.String() ParentFolderAccessInfo.shared_folder_id.validator = common.SharedFolderId_validator ParentFolderAccessInfo.permissions.validator = bv.List(MemberPermission_validator) ParentFolderAccessInfo.path.validator = bv.String() -ParentFolderAccessInfo._all_field_names_ = set([ - 'folder_name', - 'shared_folder_id', - 'permissions', - 'path', -]) +ParentFolderAccessInfo._all_field_names_ = set( + [ + "folder_name", + "shared_folder_id", + "permissions", + "path", + ] +) ParentFolderAccessInfo._all_fields_ = [ - ('folder_name', ParentFolderAccessInfo.folder_name.validator), - ('shared_folder_id', ParentFolderAccessInfo.shared_folder_id.validator), - ('permissions', ParentFolderAccessInfo.permissions.validator), - ('path', ParentFolderAccessInfo.path.validator), + ("folder_name", ParentFolderAccessInfo.folder_name.validator), + ("shared_folder_id", ParentFolderAccessInfo.shared_folder_id.validator), + ("permissions", ParentFolderAccessInfo.permissions.validator), + ("path", ParentFolderAccessInfo.path.validator), ] PathLinkMetadata.path.validator = bv.String() -PathLinkMetadata._field_names_ = set(['path']) -PathLinkMetadata._all_field_names_ = LinkMetadata._all_field_names_.union(PathLinkMetadata._field_names_) -PathLinkMetadata._fields_ = [('path', PathLinkMetadata.path.validator)] +PathLinkMetadata._field_names_ = set(["path"]) +PathLinkMetadata._all_field_names_ = LinkMetadata._all_field_names_.union( + PathLinkMetadata._field_names_ +) +PathLinkMetadata._fields_ = [("path", PathLinkMetadata.path.validator)] PathLinkMetadata._all_fields_ = LinkMetadata._all_fields_ + PathLinkMetadata._fields_ PendingUploadMode._file_validator = bv.Void() PendingUploadMode._folder_validator = bv.Void() PendingUploadMode._tagmap = { - 'file': PendingUploadMode._file_validator, - 'folder': PendingUploadMode._folder_validator, + "file": PendingUploadMode._file_validator, + "folder": PendingUploadMode._folder_validator, } -PendingUploadMode.file = PendingUploadMode('file') -PendingUploadMode.folder = PendingUploadMode('folder') +PendingUploadMode.file = PendingUploadMode("file") +PendingUploadMode.folder = PendingUploadMode("folder") PermissionDeniedReason._user_not_same_team_as_owner_validator = bv.Void() PermissionDeniedReason._user_not_allowed_by_owner_validator = bv.Void() @@ -13780,43 +14492,55 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PermissionDeniedReason._insufficient_plan_validator = InsufficientPlan_validator PermissionDeniedReason._other_validator = bv.Void() PermissionDeniedReason._tagmap = { - 'user_not_same_team_as_owner': PermissionDeniedReason._user_not_same_team_as_owner_validator, - 'user_not_allowed_by_owner': PermissionDeniedReason._user_not_allowed_by_owner_validator, - 'target_is_indirect_member': PermissionDeniedReason._target_is_indirect_member_validator, - 'target_is_owner': PermissionDeniedReason._target_is_owner_validator, - 'target_is_self': PermissionDeniedReason._target_is_self_validator, - 'target_not_active': PermissionDeniedReason._target_not_active_validator, - 'folder_is_limited_team_folder': PermissionDeniedReason._folder_is_limited_team_folder_validator, - 'owner_not_on_team': PermissionDeniedReason._owner_not_on_team_validator, - 'permission_denied': PermissionDeniedReason._permission_denied_validator, - 'restricted_by_team': PermissionDeniedReason._restricted_by_team_validator, - 'user_account_type': PermissionDeniedReason._user_account_type_validator, - 'user_not_on_team': PermissionDeniedReason._user_not_on_team_validator, - 'folder_is_inside_shared_folder': PermissionDeniedReason._folder_is_inside_shared_folder_validator, - 'restricted_by_parent_folder': PermissionDeniedReason._restricted_by_parent_folder_validator, - 'insufficient_plan': PermissionDeniedReason._insufficient_plan_validator, - 'other': PermissionDeniedReason._other_validator, + "user_not_same_team_as_owner": PermissionDeniedReason._user_not_same_team_as_owner_validator, + "user_not_allowed_by_owner": PermissionDeniedReason._user_not_allowed_by_owner_validator, + "target_is_indirect_member": PermissionDeniedReason._target_is_indirect_member_validator, + "target_is_owner": PermissionDeniedReason._target_is_owner_validator, + "target_is_self": PermissionDeniedReason._target_is_self_validator, + "target_not_active": PermissionDeniedReason._target_not_active_validator, + "folder_is_limited_team_folder": PermissionDeniedReason._folder_is_limited_team_folder_validator, + "owner_not_on_team": PermissionDeniedReason._owner_not_on_team_validator, + "permission_denied": PermissionDeniedReason._permission_denied_validator, + "restricted_by_team": PermissionDeniedReason._restricted_by_team_validator, + "user_account_type": PermissionDeniedReason._user_account_type_validator, + "user_not_on_team": PermissionDeniedReason._user_not_on_team_validator, + "folder_is_inside_shared_folder": PermissionDeniedReason._folder_is_inside_shared_folder_validator, + "restricted_by_parent_folder": PermissionDeniedReason._restricted_by_parent_folder_validator, + "insufficient_plan": PermissionDeniedReason._insufficient_plan_validator, + "other": PermissionDeniedReason._other_validator, } -PermissionDeniedReason.user_not_same_team_as_owner = PermissionDeniedReason('user_not_same_team_as_owner') -PermissionDeniedReason.user_not_allowed_by_owner = PermissionDeniedReason('user_not_allowed_by_owner') -PermissionDeniedReason.target_is_indirect_member = PermissionDeniedReason('target_is_indirect_member') -PermissionDeniedReason.target_is_owner = PermissionDeniedReason('target_is_owner') -PermissionDeniedReason.target_is_self = PermissionDeniedReason('target_is_self') -PermissionDeniedReason.target_not_active = PermissionDeniedReason('target_not_active') -PermissionDeniedReason.folder_is_limited_team_folder = PermissionDeniedReason('folder_is_limited_team_folder') -PermissionDeniedReason.owner_not_on_team = PermissionDeniedReason('owner_not_on_team') -PermissionDeniedReason.permission_denied = PermissionDeniedReason('permission_denied') -PermissionDeniedReason.restricted_by_team = PermissionDeniedReason('restricted_by_team') -PermissionDeniedReason.user_account_type = PermissionDeniedReason('user_account_type') -PermissionDeniedReason.user_not_on_team = PermissionDeniedReason('user_not_on_team') -PermissionDeniedReason.folder_is_inside_shared_folder = PermissionDeniedReason('folder_is_inside_shared_folder') -PermissionDeniedReason.restricted_by_parent_folder = PermissionDeniedReason('restricted_by_parent_folder') -PermissionDeniedReason.other = PermissionDeniedReason('other') +PermissionDeniedReason.user_not_same_team_as_owner = PermissionDeniedReason( + "user_not_same_team_as_owner" +) +PermissionDeniedReason.user_not_allowed_by_owner = PermissionDeniedReason( + "user_not_allowed_by_owner" +) +PermissionDeniedReason.target_is_indirect_member = PermissionDeniedReason( + "target_is_indirect_member" +) +PermissionDeniedReason.target_is_owner = PermissionDeniedReason("target_is_owner") +PermissionDeniedReason.target_is_self = PermissionDeniedReason("target_is_self") +PermissionDeniedReason.target_not_active = PermissionDeniedReason("target_not_active") +PermissionDeniedReason.folder_is_limited_team_folder = PermissionDeniedReason( + "folder_is_limited_team_folder" +) +PermissionDeniedReason.owner_not_on_team = PermissionDeniedReason("owner_not_on_team") +PermissionDeniedReason.permission_denied = PermissionDeniedReason("permission_denied") +PermissionDeniedReason.restricted_by_team = PermissionDeniedReason("restricted_by_team") +PermissionDeniedReason.user_account_type = PermissionDeniedReason("user_account_type") +PermissionDeniedReason.user_not_on_team = PermissionDeniedReason("user_not_on_team") +PermissionDeniedReason.folder_is_inside_shared_folder = PermissionDeniedReason( + "folder_is_inside_shared_folder" +) +PermissionDeniedReason.restricted_by_parent_folder = PermissionDeniedReason( + "restricted_by_parent_folder" +) +PermissionDeniedReason.other = PermissionDeniedReason("other") RelinquishAccessArg.file_id.validator = bv.String() -RelinquishAccessArg._all_field_names_ = set(['file_id']) -RelinquishAccessArg._all_fields_ = [('file_id', RelinquishAccessArg.file_id.validator)] +RelinquishAccessArg._all_field_names_ = set(["file_id"]) +RelinquishAccessArg._all_fields_ = [("file_id", RelinquishAccessArg.file_id.validator)] RelinquishAccessError._invalid_file_id_validator = bv.Void() RelinquishAccessError._email_unverified_validator = bv.Void() @@ -13826,54 +14550,56 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelinquishAccessError._no_permission_validator = bv.Void() RelinquishAccessError._other_validator = bv.Void() RelinquishAccessError._tagmap = { - 'invalid_file_id': RelinquishAccessError._invalid_file_id_validator, - 'email_unverified': RelinquishAccessError._email_unverified_validator, - 'owner': RelinquishAccessError._owner_validator, - 'no_explicit_access': RelinquishAccessError._no_explicit_access_validator, - 'team_folder': RelinquishAccessError._team_folder_validator, - 'no_permission': RelinquishAccessError._no_permission_validator, - 'other': RelinquishAccessError._other_validator, + "invalid_file_id": RelinquishAccessError._invalid_file_id_validator, + "email_unverified": RelinquishAccessError._email_unverified_validator, + "owner": RelinquishAccessError._owner_validator, + "no_explicit_access": RelinquishAccessError._no_explicit_access_validator, + "team_folder": RelinquishAccessError._team_folder_validator, + "no_permission": RelinquishAccessError._no_permission_validator, + "other": RelinquishAccessError._other_validator, } -RelinquishAccessError.invalid_file_id = RelinquishAccessError('invalid_file_id') -RelinquishAccessError.email_unverified = RelinquishAccessError('email_unverified') -RelinquishAccessError.owner = RelinquishAccessError('owner') -RelinquishAccessError.no_explicit_access = RelinquishAccessError('no_explicit_access') -RelinquishAccessError.team_folder = RelinquishAccessError('team_folder') -RelinquishAccessError.no_permission = RelinquishAccessError('no_permission') -RelinquishAccessError.other = RelinquishAccessError('other') +RelinquishAccessError.invalid_file_id = RelinquishAccessError("invalid_file_id") +RelinquishAccessError.email_unverified = RelinquishAccessError("email_unverified") +RelinquishAccessError.owner = RelinquishAccessError("owner") +RelinquishAccessError.no_explicit_access = RelinquishAccessError("no_explicit_access") +RelinquishAccessError.team_folder = RelinquishAccessError("team_folder") +RelinquishAccessError.no_permission = RelinquishAccessError("no_permission") +RelinquishAccessError.other = RelinquishAccessError("other") RelinquishAccessResult._all_field_names_ = set([]) RelinquishAccessResult._all_fields_ = [] RelinquishFileMembershipArg.file.validator = PathOrId_validator -RelinquishFileMembershipArg._all_field_names_ = set(['file']) -RelinquishFileMembershipArg._all_fields_ = [('file', RelinquishFileMembershipArg.file.validator)] +RelinquishFileMembershipArg._all_field_names_ = set(["file"]) +RelinquishFileMembershipArg._all_fields_ = [("file", RelinquishFileMembershipArg.file.validator)] RelinquishFileMembershipError._access_error_validator = SharingFileAccessError_validator RelinquishFileMembershipError._group_access_validator = bv.Void() RelinquishFileMembershipError._no_permission_validator = bv.Void() RelinquishFileMembershipError._other_validator = bv.Void() RelinquishFileMembershipError._tagmap = { - 'access_error': RelinquishFileMembershipError._access_error_validator, - 'group_access': RelinquishFileMembershipError._group_access_validator, - 'no_permission': RelinquishFileMembershipError._no_permission_validator, - 'other': RelinquishFileMembershipError._other_validator, + "access_error": RelinquishFileMembershipError._access_error_validator, + "group_access": RelinquishFileMembershipError._group_access_validator, + "no_permission": RelinquishFileMembershipError._no_permission_validator, + "other": RelinquishFileMembershipError._other_validator, } -RelinquishFileMembershipError.group_access = RelinquishFileMembershipError('group_access') -RelinquishFileMembershipError.no_permission = RelinquishFileMembershipError('no_permission') -RelinquishFileMembershipError.other = RelinquishFileMembershipError('other') +RelinquishFileMembershipError.group_access = RelinquishFileMembershipError("group_access") +RelinquishFileMembershipError.no_permission = RelinquishFileMembershipError("no_permission") +RelinquishFileMembershipError.other = RelinquishFileMembershipError("other") RelinquishFolderMembershipArg.shared_folder_id.validator = common.SharedFolderId_validator RelinquishFolderMembershipArg.leave_a_copy.validator = bv.Boolean() -RelinquishFolderMembershipArg._all_field_names_ = set([ - 'shared_folder_id', - 'leave_a_copy', -]) +RelinquishFolderMembershipArg._all_field_names_ = set( + [ + "shared_folder_id", + "leave_a_copy", + ] +) RelinquishFolderMembershipArg._all_fields_ = [ - ('shared_folder_id', RelinquishFolderMembershipArg.shared_folder_id.validator), - ('leave_a_copy', RelinquishFolderMembershipArg.leave_a_copy.validator), + ("shared_folder_id", RelinquishFolderMembershipArg.shared_folder_id.validator), + ("leave_a_copy", RelinquishFolderMembershipArg.leave_a_copy.validator), ] RelinquishFolderMembershipError._access_error_validator = SharedFolderAccessError_validator @@ -13885,33 +14611,37 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelinquishFolderMembershipError._no_explicit_access_validator = bv.Void() RelinquishFolderMembershipError._other_validator = bv.Void() RelinquishFolderMembershipError._tagmap = { - 'access_error': RelinquishFolderMembershipError._access_error_validator, - 'folder_owner': RelinquishFolderMembershipError._folder_owner_validator, - 'mounted': RelinquishFolderMembershipError._mounted_validator, - 'group_access': RelinquishFolderMembershipError._group_access_validator, - 'team_folder': RelinquishFolderMembershipError._team_folder_validator, - 'no_permission': RelinquishFolderMembershipError._no_permission_validator, - 'no_explicit_access': RelinquishFolderMembershipError._no_explicit_access_validator, - 'other': RelinquishFolderMembershipError._other_validator, + "access_error": RelinquishFolderMembershipError._access_error_validator, + "folder_owner": RelinquishFolderMembershipError._folder_owner_validator, + "mounted": RelinquishFolderMembershipError._mounted_validator, + "group_access": RelinquishFolderMembershipError._group_access_validator, + "team_folder": RelinquishFolderMembershipError._team_folder_validator, + "no_permission": RelinquishFolderMembershipError._no_permission_validator, + "no_explicit_access": RelinquishFolderMembershipError._no_explicit_access_validator, + "other": RelinquishFolderMembershipError._other_validator, } -RelinquishFolderMembershipError.folder_owner = RelinquishFolderMembershipError('folder_owner') -RelinquishFolderMembershipError.mounted = RelinquishFolderMembershipError('mounted') -RelinquishFolderMembershipError.group_access = RelinquishFolderMembershipError('group_access') -RelinquishFolderMembershipError.team_folder = RelinquishFolderMembershipError('team_folder') -RelinquishFolderMembershipError.no_permission = RelinquishFolderMembershipError('no_permission') -RelinquishFolderMembershipError.no_explicit_access = RelinquishFolderMembershipError('no_explicit_access') -RelinquishFolderMembershipError.other = RelinquishFolderMembershipError('other') +RelinquishFolderMembershipError.folder_owner = RelinquishFolderMembershipError("folder_owner") +RelinquishFolderMembershipError.mounted = RelinquishFolderMembershipError("mounted") +RelinquishFolderMembershipError.group_access = RelinquishFolderMembershipError("group_access") +RelinquishFolderMembershipError.team_folder = RelinquishFolderMembershipError("team_folder") +RelinquishFolderMembershipError.no_permission = RelinquishFolderMembershipError("no_permission") +RelinquishFolderMembershipError.no_explicit_access = RelinquishFolderMembershipError( + "no_explicit_access" +) +RelinquishFolderMembershipError.other = RelinquishFolderMembershipError("other") RemoveFileMemberArg.file.validator = PathOrId_validator RemoveFileMemberArg.member.validator = MemberSelector_validator -RemoveFileMemberArg._all_field_names_ = set([ - 'file', - 'member', -]) +RemoveFileMemberArg._all_field_names_ = set( + [ + "file", + "member", + ] +) RemoveFileMemberArg._all_fields_ = [ - ('file', RemoveFileMemberArg.file.validator), - ('member', RemoveFileMemberArg.member.validator), + ("file", RemoveFileMemberArg.file.validator), + ("member", RemoveFileMemberArg.member.validator), ] RemoveFileMemberError._user_error_validator = SharingUserError_validator @@ -13919,26 +14649,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RemoveFileMemberError._no_explicit_access_validator = MemberAccessLevelResult_validator RemoveFileMemberError._other_validator = bv.Void() RemoveFileMemberError._tagmap = { - 'user_error': RemoveFileMemberError._user_error_validator, - 'access_error': RemoveFileMemberError._access_error_validator, - 'no_explicit_access': RemoveFileMemberError._no_explicit_access_validator, - 'other': RemoveFileMemberError._other_validator, + "user_error": RemoveFileMemberError._user_error_validator, + "access_error": RemoveFileMemberError._access_error_validator, + "no_explicit_access": RemoveFileMemberError._no_explicit_access_validator, + "other": RemoveFileMemberError._other_validator, } -RemoveFileMemberError.other = RemoveFileMemberError('other') +RemoveFileMemberError.other = RemoveFileMemberError("other") RemoveFolderMemberArg.shared_folder_id.validator = common.SharedFolderId_validator RemoveFolderMemberArg.member.validator = MemberSelector_validator RemoveFolderMemberArg.leave_a_copy.validator = bv.Boolean() -RemoveFolderMemberArg._all_field_names_ = set([ - 'shared_folder_id', - 'member', - 'leave_a_copy', -]) +RemoveFolderMemberArg._all_field_names_ = set( + [ + "shared_folder_id", + "member", + "leave_a_copy", + ] +) RemoveFolderMemberArg._all_fields_ = [ - ('shared_folder_id', RemoveFolderMemberArg.shared_folder_id.validator), - ('member', RemoveFolderMemberArg.member.validator), - ('leave_a_copy', RemoveFolderMemberArg.leave_a_copy.validator), + ("shared_folder_id", RemoveFolderMemberArg.shared_folder_id.validator), + ("member", RemoveFolderMemberArg.member.validator), + ("leave_a_copy", RemoveFolderMemberArg.leave_a_copy.validator), ] RemoveFolderMemberError._access_error_validator = SharedFolderAccessError_validator @@ -13950,28 +14682,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RemoveFolderMemberError._too_many_files_validator = bv.Void() RemoveFolderMemberError._other_validator = bv.Void() RemoveFolderMemberError._tagmap = { - 'access_error': RemoveFolderMemberError._access_error_validator, - 'member_error': RemoveFolderMemberError._member_error_validator, - 'folder_owner': RemoveFolderMemberError._folder_owner_validator, - 'group_access': RemoveFolderMemberError._group_access_validator, - 'team_folder': RemoveFolderMemberError._team_folder_validator, - 'no_permission': RemoveFolderMemberError._no_permission_validator, - 'too_many_files': RemoveFolderMemberError._too_many_files_validator, - 'other': RemoveFolderMemberError._other_validator, + "access_error": RemoveFolderMemberError._access_error_validator, + "member_error": RemoveFolderMemberError._member_error_validator, + "folder_owner": RemoveFolderMemberError._folder_owner_validator, + "group_access": RemoveFolderMemberError._group_access_validator, + "team_folder": RemoveFolderMemberError._team_folder_validator, + "no_permission": RemoveFolderMemberError._no_permission_validator, + "too_many_files": RemoveFolderMemberError._too_many_files_validator, + "other": RemoveFolderMemberError._other_validator, } -RemoveFolderMemberError.folder_owner = RemoveFolderMemberError('folder_owner') -RemoveFolderMemberError.group_access = RemoveFolderMemberError('group_access') -RemoveFolderMemberError.team_folder = RemoveFolderMemberError('team_folder') -RemoveFolderMemberError.no_permission = RemoveFolderMemberError('no_permission') -RemoveFolderMemberError.too_many_files = RemoveFolderMemberError('too_many_files') -RemoveFolderMemberError.other = RemoveFolderMemberError('other') +RemoveFolderMemberError.folder_owner = RemoveFolderMemberError("folder_owner") +RemoveFolderMemberError.group_access = RemoveFolderMemberError("group_access") +RemoveFolderMemberError.team_folder = RemoveFolderMemberError("team_folder") +RemoveFolderMemberError.no_permission = RemoveFolderMemberError("no_permission") +RemoveFolderMemberError.too_many_files = RemoveFolderMemberError("too_many_files") +RemoveFolderMemberError.other = RemoveFolderMemberError("other") RemoveMemberJobStatus._complete_validator = MemberAccessLevelResult_validator RemoveMemberJobStatus._failed_validator = RemoveFolderMemberError_validator RemoveMemberJobStatus._tagmap = { - 'complete': RemoveMemberJobStatus._complete_validator, - 'failed': RemoveMemberJobStatus._failed_validator, + "complete": RemoveMemberJobStatus._complete_validator, + "failed": RemoveMemberJobStatus._failed_validator, } RemoveMemberJobStatus._tagmap.update(async_.PollResultBase._tagmap) @@ -13981,53 +14713,55 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RequestedLinkAccessLevel._default_validator = bv.Void() RequestedLinkAccessLevel._other_validator = bv.Void() RequestedLinkAccessLevel._tagmap = { - 'viewer': RequestedLinkAccessLevel._viewer_validator, - 'editor': RequestedLinkAccessLevel._editor_validator, - 'max': RequestedLinkAccessLevel._max_validator, - 'default': RequestedLinkAccessLevel._default_validator, - 'other': RequestedLinkAccessLevel._other_validator, + "viewer": RequestedLinkAccessLevel._viewer_validator, + "editor": RequestedLinkAccessLevel._editor_validator, + "max": RequestedLinkAccessLevel._max_validator, + "default": RequestedLinkAccessLevel._default_validator, + "other": RequestedLinkAccessLevel._other_validator, } -RequestedLinkAccessLevel.viewer = RequestedLinkAccessLevel('viewer') -RequestedLinkAccessLevel.editor = RequestedLinkAccessLevel('editor') -RequestedLinkAccessLevel.max = RequestedLinkAccessLevel('max') -RequestedLinkAccessLevel.default = RequestedLinkAccessLevel('default') -RequestedLinkAccessLevel.other = RequestedLinkAccessLevel('other') +RequestedLinkAccessLevel.viewer = RequestedLinkAccessLevel("viewer") +RequestedLinkAccessLevel.editor = RequestedLinkAccessLevel("editor") +RequestedLinkAccessLevel.max = RequestedLinkAccessLevel("max") +RequestedLinkAccessLevel.default = RequestedLinkAccessLevel("default") +RequestedLinkAccessLevel.other = RequestedLinkAccessLevel("other") RevokeSharedLinkArg.url.validator = bv.String() -RevokeSharedLinkArg._all_field_names_ = set(['url']) -RevokeSharedLinkArg._all_fields_ = [('url', RevokeSharedLinkArg.url.validator)] +RevokeSharedLinkArg._all_field_names_ = set(["url"]) +RevokeSharedLinkArg._all_fields_ = [("url", RevokeSharedLinkArg.url.validator)] RevokeSharedLinkError._shared_link_malformed_validator = bv.Void() RevokeSharedLinkError._tagmap = { - 'shared_link_malformed': RevokeSharedLinkError._shared_link_malformed_validator, + "shared_link_malformed": RevokeSharedLinkError._shared_link_malformed_validator, } RevokeSharedLinkError._tagmap.update(SharedLinkError._tagmap) -RevokeSharedLinkError.shared_link_malformed = RevokeSharedLinkError('shared_link_malformed') +RevokeSharedLinkError.shared_link_malformed = RevokeSharedLinkError("shared_link_malformed") SetAccessInheritanceArg.access_inheritance.validator = AccessInheritance_validator SetAccessInheritanceArg.shared_folder_id.validator = common.SharedFolderId_validator -SetAccessInheritanceArg._all_field_names_ = set([ - 'access_inheritance', - 'shared_folder_id', -]) +SetAccessInheritanceArg._all_field_names_ = set( + [ + "access_inheritance", + "shared_folder_id", + ] +) SetAccessInheritanceArg._all_fields_ = [ - ('access_inheritance', SetAccessInheritanceArg.access_inheritance.validator), - ('shared_folder_id', SetAccessInheritanceArg.shared_folder_id.validator), + ("access_inheritance", SetAccessInheritanceArg.access_inheritance.validator), + ("shared_folder_id", SetAccessInheritanceArg.shared_folder_id.validator), ] SetAccessInheritanceError._access_error_validator = SharedFolderAccessError_validator SetAccessInheritanceError._no_permission_validator = bv.Void() SetAccessInheritanceError._other_validator = bv.Void() SetAccessInheritanceError._tagmap = { - 'access_error': SetAccessInheritanceError._access_error_validator, - 'no_permission': SetAccessInheritanceError._no_permission_validator, - 'other': SetAccessInheritanceError._other_validator, + "access_error": SetAccessInheritanceError._access_error_validator, + "no_permission": SetAccessInheritanceError._no_permission_validator, + "other": SetAccessInheritanceError._other_validator, } -SetAccessInheritanceError.no_permission = SetAccessInheritanceError('no_permission') -SetAccessInheritanceError.other = SetAccessInheritanceError('other') +SetAccessInheritanceError.no_permission = SetAccessInheritanceError("no_permission") +SetAccessInheritanceError.other = SetAccessInheritanceError("other") ShareFolderArgBase.acl_update_policy.validator = bv.Nullable(AclUpdatePolicy_validator) ShareFolderArgBase.force_async.validator = bv.Boolean() @@ -14036,34 +14770,40 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ShareFolderArgBase.shared_link_policy.validator = bv.Nullable(SharedLinkPolicy_validator) ShareFolderArgBase.viewer_info_policy.validator = bv.Nullable(ViewerInfoPolicy_validator) ShareFolderArgBase.access_inheritance.validator = AccessInheritance_validator -ShareFolderArgBase._all_field_names_ = set([ - 'acl_update_policy', - 'force_async', - 'member_policy', - 'path', - 'shared_link_policy', - 'viewer_info_policy', - 'access_inheritance', -]) +ShareFolderArgBase._all_field_names_ = set( + [ + "acl_update_policy", + "force_async", + "member_policy", + "path", + "shared_link_policy", + "viewer_info_policy", + "access_inheritance", + ] +) ShareFolderArgBase._all_fields_ = [ - ('acl_update_policy', ShareFolderArgBase.acl_update_policy.validator), - ('force_async', ShareFolderArgBase.force_async.validator), - ('member_policy', ShareFolderArgBase.member_policy.validator), - ('path', ShareFolderArgBase.path.validator), - ('shared_link_policy', ShareFolderArgBase.shared_link_policy.validator), - ('viewer_info_policy', ShareFolderArgBase.viewer_info_policy.validator), - ('access_inheritance', ShareFolderArgBase.access_inheritance.validator), + ("acl_update_policy", ShareFolderArgBase.acl_update_policy.validator), + ("force_async", ShareFolderArgBase.force_async.validator), + ("member_policy", ShareFolderArgBase.member_policy.validator), + ("path", ShareFolderArgBase.path.validator), + ("shared_link_policy", ShareFolderArgBase.shared_link_policy.validator), + ("viewer_info_policy", ShareFolderArgBase.viewer_info_policy.validator), + ("access_inheritance", ShareFolderArgBase.access_inheritance.validator), ] ShareFolderArg.actions.validator = bv.Nullable(bv.List(FolderAction_validator)) ShareFolderArg.link_settings.validator = bv.Nullable(LinkSettings_validator) -ShareFolderArg._all_field_names_ = ShareFolderArgBase._all_field_names_.union(set([ - 'actions', - 'link_settings', -])) +ShareFolderArg._all_field_names_ = ShareFolderArgBase._all_field_names_.union( + set( + [ + "actions", + "link_settings", + ] + ) +) ShareFolderArg._all_fields_ = ShareFolderArgBase._all_fields_ + [ - ('actions', ShareFolderArg.actions.validator), - ('link_settings', ShareFolderArg.link_settings.validator), + ("actions", ShareFolderArg.actions.validator), + ("link_settings", ShareFolderArg.link_settings.validator), ] ShareFolderErrorBase._email_unverified_validator = bv.Void() @@ -14072,61 +14812,69 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ShareFolderErrorBase._disallowed_shared_link_policy_validator = bv.Void() ShareFolderErrorBase._other_validator = bv.Void() ShareFolderErrorBase._tagmap = { - 'email_unverified': ShareFolderErrorBase._email_unverified_validator, - 'bad_path': ShareFolderErrorBase._bad_path_validator, - 'team_policy_disallows_member_policy': ShareFolderErrorBase._team_policy_disallows_member_policy_validator, - 'disallowed_shared_link_policy': ShareFolderErrorBase._disallowed_shared_link_policy_validator, - 'other': ShareFolderErrorBase._other_validator, + "email_unverified": ShareFolderErrorBase._email_unverified_validator, + "bad_path": ShareFolderErrorBase._bad_path_validator, + "team_policy_disallows_member_policy": ShareFolderErrorBase._team_policy_disallows_member_policy_validator, + "disallowed_shared_link_policy": ShareFolderErrorBase._disallowed_shared_link_policy_validator, + "other": ShareFolderErrorBase._other_validator, } -ShareFolderErrorBase.email_unverified = ShareFolderErrorBase('email_unverified') -ShareFolderErrorBase.team_policy_disallows_member_policy = ShareFolderErrorBase('team_policy_disallows_member_policy') -ShareFolderErrorBase.disallowed_shared_link_policy = ShareFolderErrorBase('disallowed_shared_link_policy') -ShareFolderErrorBase.other = ShareFolderErrorBase('other') +ShareFolderErrorBase.email_unverified = ShareFolderErrorBase("email_unverified") +ShareFolderErrorBase.team_policy_disallows_member_policy = ShareFolderErrorBase( + "team_policy_disallows_member_policy" +) +ShareFolderErrorBase.disallowed_shared_link_policy = ShareFolderErrorBase( + "disallowed_shared_link_policy" +) +ShareFolderErrorBase.other = ShareFolderErrorBase("other") ShareFolderError._no_permission_validator = bv.Void() ShareFolderError._tagmap = { - 'no_permission': ShareFolderError._no_permission_validator, + "no_permission": ShareFolderError._no_permission_validator, } ShareFolderError._tagmap.update(ShareFolderErrorBase._tagmap) -ShareFolderError.no_permission = ShareFolderError('no_permission') +ShareFolderError.no_permission = ShareFolderError("no_permission") ShareFolderErrorBaseV2._email_unverified_validator = bv.Void() ShareFolderErrorBaseV2._team_policy_disallows_member_policy_validator = bv.Void() ShareFolderErrorBaseV2._disallowed_shared_link_policy_validator = bv.Void() ShareFolderErrorBaseV2._other_validator = bv.Void() ShareFolderErrorBaseV2._tagmap = { - 'email_unverified': ShareFolderErrorBaseV2._email_unverified_validator, - 'team_policy_disallows_member_policy': ShareFolderErrorBaseV2._team_policy_disallows_member_policy_validator, - 'disallowed_shared_link_policy': ShareFolderErrorBaseV2._disallowed_shared_link_policy_validator, - 'other': ShareFolderErrorBaseV2._other_validator, + "email_unverified": ShareFolderErrorBaseV2._email_unverified_validator, + "team_policy_disallows_member_policy": ShareFolderErrorBaseV2._team_policy_disallows_member_policy_validator, + "disallowed_shared_link_policy": ShareFolderErrorBaseV2._disallowed_shared_link_policy_validator, + "other": ShareFolderErrorBaseV2._other_validator, } -ShareFolderErrorBaseV2.email_unverified = ShareFolderErrorBaseV2('email_unverified') -ShareFolderErrorBaseV2.team_policy_disallows_member_policy = ShareFolderErrorBaseV2('team_policy_disallows_member_policy') -ShareFolderErrorBaseV2.disallowed_shared_link_policy = ShareFolderErrorBaseV2('disallowed_shared_link_policy') -ShareFolderErrorBaseV2.other = ShareFolderErrorBaseV2('other') +ShareFolderErrorBaseV2.email_unverified = ShareFolderErrorBaseV2("email_unverified") +ShareFolderErrorBaseV2.team_policy_disallows_member_policy = ShareFolderErrorBaseV2( + "team_policy_disallows_member_policy" +) +ShareFolderErrorBaseV2.disallowed_shared_link_policy = ShareFolderErrorBaseV2( + "disallowed_shared_link_policy" +) +ShareFolderErrorBaseV2.other = ShareFolderErrorBaseV2("other") ShareFolderErrorV2._no_permission_validator = bv.Void() ShareFolderErrorV2._tagmap = { - 'no_permission': ShareFolderErrorV2._no_permission_validator, + "no_permission": ShareFolderErrorV2._no_permission_validator, } ShareFolderErrorV2._tagmap.update(ShareFolderErrorBaseV2._tagmap) -ShareFolderErrorV2.no_permission = ShareFolderErrorV2('no_permission') +ShareFolderErrorV2.no_permission = ShareFolderErrorV2("no_permission") ShareFolderJobStatus._complete_validator = SharedFolderMetadata_validator ShareFolderJobStatus._failed_validator = ShareFolderError_validator ShareFolderJobStatus._tagmap = { - 'complete': ShareFolderJobStatus._complete_validator, - 'failed': ShareFolderJobStatus._failed_validator, + "complete": ShareFolderJobStatus._complete_validator, + "failed": ShareFolderJobStatus._failed_validator, } ShareFolderJobStatus._tagmap.update(async_.PollResultBase._tagmap) ShareFolderLaunch._complete_validator = SharedFolderMetadata_validator ShareFolderLaunch._tagmap = { - 'complete': ShareFolderLaunch._complete_validator, + "complete": ShareFolderLaunch._complete_validator, } ShareFolderLaunch._tagmap.update(async_.LaunchResultBase._tagmap) @@ -14148,41 +14896,41 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharePathError._is_family_validator = bv.Void() SharePathError._other_validator = bv.Void() SharePathError._tagmap = { - 'is_file': SharePathError._is_file_validator, - 'inside_shared_folder': SharePathError._inside_shared_folder_validator, - 'contains_shared_folder': SharePathError._contains_shared_folder_validator, - 'contains_app_folder': SharePathError._contains_app_folder_validator, - 'contains_team_folder': SharePathError._contains_team_folder_validator, - 'is_app_folder': SharePathError._is_app_folder_validator, - 'inside_app_folder': SharePathError._inside_app_folder_validator, - 'is_public_folder': SharePathError._is_public_folder_validator, - 'inside_public_folder': SharePathError._inside_public_folder_validator, - 'already_shared': SharePathError._already_shared_validator, - 'invalid_path': SharePathError._invalid_path_validator, - 'is_osx_package': SharePathError._is_osx_package_validator, - 'inside_osx_package': SharePathError._inside_osx_package_validator, - 'is_vault': SharePathError._is_vault_validator, - 'is_vault_locked': SharePathError._is_vault_locked_validator, - 'is_family': SharePathError._is_family_validator, - 'other': SharePathError._other_validator, + "is_file": SharePathError._is_file_validator, + "inside_shared_folder": SharePathError._inside_shared_folder_validator, + "contains_shared_folder": SharePathError._contains_shared_folder_validator, + "contains_app_folder": SharePathError._contains_app_folder_validator, + "contains_team_folder": SharePathError._contains_team_folder_validator, + "is_app_folder": SharePathError._is_app_folder_validator, + "inside_app_folder": SharePathError._inside_app_folder_validator, + "is_public_folder": SharePathError._is_public_folder_validator, + "inside_public_folder": SharePathError._inside_public_folder_validator, + "already_shared": SharePathError._already_shared_validator, + "invalid_path": SharePathError._invalid_path_validator, + "is_osx_package": SharePathError._is_osx_package_validator, + "inside_osx_package": SharePathError._inside_osx_package_validator, + "is_vault": SharePathError._is_vault_validator, + "is_vault_locked": SharePathError._is_vault_locked_validator, + "is_family": SharePathError._is_family_validator, + "other": SharePathError._other_validator, } -SharePathError.is_file = SharePathError('is_file') -SharePathError.inside_shared_folder = SharePathError('inside_shared_folder') -SharePathError.contains_shared_folder = SharePathError('contains_shared_folder') -SharePathError.contains_app_folder = SharePathError('contains_app_folder') -SharePathError.contains_team_folder = SharePathError('contains_team_folder') -SharePathError.is_app_folder = SharePathError('is_app_folder') -SharePathError.inside_app_folder = SharePathError('inside_app_folder') -SharePathError.is_public_folder = SharePathError('is_public_folder') -SharePathError.inside_public_folder = SharePathError('inside_public_folder') -SharePathError.invalid_path = SharePathError('invalid_path') -SharePathError.is_osx_package = SharePathError('is_osx_package') -SharePathError.inside_osx_package = SharePathError('inside_osx_package') -SharePathError.is_vault = SharePathError('is_vault') -SharePathError.is_vault_locked = SharePathError('is_vault_locked') -SharePathError.is_family = SharePathError('is_family') -SharePathError.other = SharePathError('other') +SharePathError.is_file = SharePathError("is_file") +SharePathError.inside_shared_folder = SharePathError("inside_shared_folder") +SharePathError.contains_shared_folder = SharePathError("contains_shared_folder") +SharePathError.contains_app_folder = SharePathError("contains_app_folder") +SharePathError.contains_team_folder = SharePathError("contains_team_folder") +SharePathError.is_app_folder = SharePathError("is_app_folder") +SharePathError.inside_app_folder = SharePathError("inside_app_folder") +SharePathError.is_public_folder = SharePathError("is_public_folder") +SharePathError.inside_public_folder = SharePathError("inside_public_folder") +SharePathError.invalid_path = SharePathError("invalid_path") +SharePathError.is_osx_package = SharePathError("is_osx_package") +SharePathError.inside_osx_package = SharePathError("inside_osx_package") +SharePathError.is_vault = SharePathError("is_vault") +SharePathError.is_vault_locked = SharePathError("is_vault_locked") +SharePathError.is_family = SharePathError("is_family") +SharePathError.other = SharePathError("other") SharePathErrorBaseV2._is_file_validator = bv.Void() SharePathErrorBaseV2._inside_shared_folder_validator = bv.Void() @@ -14200,80 +14948,88 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharePathErrorBaseV2._is_vault_locked_validator = bv.Void() SharePathErrorBaseV2._other_validator = bv.Void() SharePathErrorBaseV2._tagmap = { - 'is_file': SharePathErrorBaseV2._is_file_validator, - 'inside_shared_folder': SharePathErrorBaseV2._inside_shared_folder_validator, - 'contains_shared_folder': SharePathErrorBaseV2._contains_shared_folder_validator, - 'contains_team_folder': SharePathErrorBaseV2._contains_team_folder_validator, - 'is_app_folder': SharePathErrorBaseV2._is_app_folder_validator, - 'inside_app_folder': SharePathErrorBaseV2._inside_app_folder_validator, - 'is_public_folder': SharePathErrorBaseV2._is_public_folder_validator, - 'inside_public_folder': SharePathErrorBaseV2._inside_public_folder_validator, - 'already_shared': SharePathErrorBaseV2._already_shared_validator, - 'invalid_path': SharePathErrorBaseV2._invalid_path_validator, - 'is_osx_package': SharePathErrorBaseV2._is_osx_package_validator, - 'inside_osx_package': SharePathErrorBaseV2._inside_osx_package_validator, - 'is_vault': SharePathErrorBaseV2._is_vault_validator, - 'is_vault_locked': SharePathErrorBaseV2._is_vault_locked_validator, - 'other': SharePathErrorBaseV2._other_validator, + "is_file": SharePathErrorBaseV2._is_file_validator, + "inside_shared_folder": SharePathErrorBaseV2._inside_shared_folder_validator, + "contains_shared_folder": SharePathErrorBaseV2._contains_shared_folder_validator, + "contains_team_folder": SharePathErrorBaseV2._contains_team_folder_validator, + "is_app_folder": SharePathErrorBaseV2._is_app_folder_validator, + "inside_app_folder": SharePathErrorBaseV2._inside_app_folder_validator, + "is_public_folder": SharePathErrorBaseV2._is_public_folder_validator, + "inside_public_folder": SharePathErrorBaseV2._inside_public_folder_validator, + "already_shared": SharePathErrorBaseV2._already_shared_validator, + "invalid_path": SharePathErrorBaseV2._invalid_path_validator, + "is_osx_package": SharePathErrorBaseV2._is_osx_package_validator, + "inside_osx_package": SharePathErrorBaseV2._inside_osx_package_validator, + "is_vault": SharePathErrorBaseV2._is_vault_validator, + "is_vault_locked": SharePathErrorBaseV2._is_vault_locked_validator, + "other": SharePathErrorBaseV2._other_validator, } -SharePathErrorBaseV2.is_file = SharePathErrorBaseV2('is_file') -SharePathErrorBaseV2.inside_shared_folder = SharePathErrorBaseV2('inside_shared_folder') -SharePathErrorBaseV2.contains_shared_folder = SharePathErrorBaseV2('contains_shared_folder') -SharePathErrorBaseV2.contains_team_folder = SharePathErrorBaseV2('contains_team_folder') -SharePathErrorBaseV2.is_app_folder = SharePathErrorBaseV2('is_app_folder') -SharePathErrorBaseV2.inside_app_folder = SharePathErrorBaseV2('inside_app_folder') -SharePathErrorBaseV2.is_public_folder = SharePathErrorBaseV2('is_public_folder') -SharePathErrorBaseV2.inside_public_folder = SharePathErrorBaseV2('inside_public_folder') -SharePathErrorBaseV2.invalid_path = SharePathErrorBaseV2('invalid_path') -SharePathErrorBaseV2.is_osx_package = SharePathErrorBaseV2('is_osx_package') -SharePathErrorBaseV2.inside_osx_package = SharePathErrorBaseV2('inside_osx_package') -SharePathErrorBaseV2.is_vault = SharePathErrorBaseV2('is_vault') -SharePathErrorBaseV2.is_vault_locked = SharePathErrorBaseV2('is_vault_locked') -SharePathErrorBaseV2.other = SharePathErrorBaseV2('other') +SharePathErrorBaseV2.is_file = SharePathErrorBaseV2("is_file") +SharePathErrorBaseV2.inside_shared_folder = SharePathErrorBaseV2("inside_shared_folder") +SharePathErrorBaseV2.contains_shared_folder = SharePathErrorBaseV2("contains_shared_folder") +SharePathErrorBaseV2.contains_team_folder = SharePathErrorBaseV2("contains_team_folder") +SharePathErrorBaseV2.is_app_folder = SharePathErrorBaseV2("is_app_folder") +SharePathErrorBaseV2.inside_app_folder = SharePathErrorBaseV2("inside_app_folder") +SharePathErrorBaseV2.is_public_folder = SharePathErrorBaseV2("is_public_folder") +SharePathErrorBaseV2.inside_public_folder = SharePathErrorBaseV2("inside_public_folder") +SharePathErrorBaseV2.invalid_path = SharePathErrorBaseV2("invalid_path") +SharePathErrorBaseV2.is_osx_package = SharePathErrorBaseV2("is_osx_package") +SharePathErrorBaseV2.inside_osx_package = SharePathErrorBaseV2("inside_osx_package") +SharePathErrorBaseV2.is_vault = SharePathErrorBaseV2("is_vault") +SharePathErrorBaseV2.is_vault_locked = SharePathErrorBaseV2("is_vault_locked") +SharePathErrorBaseV2.other = SharePathErrorBaseV2("other") SharePathErrorV2._is_family_validator = bv.Void() SharePathErrorV2._contains_app_folder_validator = bv.Void() SharePathErrorV2._tagmap = { - 'is_family': SharePathErrorV2._is_family_validator, - 'contains_app_folder': SharePathErrorV2._contains_app_folder_validator, + "is_family": SharePathErrorV2._is_family_validator, + "contains_app_folder": SharePathErrorV2._contains_app_folder_validator, } SharePathErrorV2._tagmap.update(SharePathErrorBaseV2._tagmap) -SharePathErrorV2.is_family = SharePathErrorV2('is_family') -SharePathErrorV2.contains_app_folder = SharePathErrorV2('contains_app_folder') +SharePathErrorV2.is_family = SharePathErrorV2("is_family") +SharePathErrorV2.contains_app_folder = SharePathErrorV2("contains_app_folder") SharedContentLinkMetadata.audience_exceptions.validator = bv.Nullable(AudienceExceptions_validator) SharedContentLinkMetadata.url.validator = bv.String() -SharedContentLinkMetadata._all_field_names_ = SharedContentLinkMetadataBase._all_field_names_.union(set([ - 'audience_exceptions', - 'url', -])) +SharedContentLinkMetadata._all_field_names_ = SharedContentLinkMetadataBase._all_field_names_.union( + set( + [ + "audience_exceptions", + "url", + ] + ) +) SharedContentLinkMetadata._all_fields_ = SharedContentLinkMetadataBase._all_fields_ + [ - ('audience_exceptions', SharedContentLinkMetadata.audience_exceptions.validator), - ('url', SharedContentLinkMetadata.url.validator), + ("audience_exceptions", SharedContentLinkMetadata.audience_exceptions.validator), + ("url", SharedContentLinkMetadata.url.validator), ] SharedFileMembers.users.validator = bv.List(UserFileMembershipInfo_validator) SharedFileMembers.groups.validator = bv.List(GroupMembershipInfo_validator) SharedFileMembers.invitees.validator = bv.List(InviteeMembershipInfo_validator) SharedFileMembers.cursor.validator = bv.Nullable(bv.String()) -SharedFileMembers._all_field_names_ = set([ - 'users', - 'groups', - 'invitees', - 'cursor', -]) +SharedFileMembers._all_field_names_ = set( + [ + "users", + "groups", + "invitees", + "cursor", + ] +) SharedFileMembers._all_fields_ = [ - ('users', SharedFileMembers.users.validator), - ('groups', SharedFileMembers.groups.validator), - ('invitees', SharedFileMembers.invitees.validator), - ('cursor', SharedFileMembers.cursor.validator), + ("users", SharedFileMembers.users.validator), + ("groups", SharedFileMembers.groups.validator), + ("invitees", SharedFileMembers.invitees.validator), + ("cursor", SharedFileMembers.cursor.validator), ] SharedFileMetadata.access_type.validator = bv.Nullable(AccessLevel_validator) SharedFileMetadata.id.validator = files.FileId_validator -SharedFileMetadata.expected_link_metadata.validator = bv.Nullable(ExpectedSharedContentLinkMetadata_validator) +SharedFileMetadata.expected_link_metadata.validator = bv.Nullable( + ExpectedSharedContentLinkMetadata_validator +) SharedFileMetadata.link_metadata.validator = bv.Nullable(SharedContentLinkMetadata_validator) SharedFileMetadata.name.validator = bv.String() SharedFileMetadata.owner_display_names.validator = bv.Nullable(bv.List(bv.String())) @@ -14285,37 +15041,39 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFileMetadata.policy.validator = FolderPolicy_validator SharedFileMetadata.preview_url.validator = bv.String() SharedFileMetadata.time_invited.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedFileMetadata._all_field_names_ = set([ - 'access_type', - 'id', - 'expected_link_metadata', - 'link_metadata', - 'name', - 'owner_display_names', - 'owner_team', - 'parent_shared_folder_id', - 'path_display', - 'path_lower', - 'permissions', - 'policy', - 'preview_url', - 'time_invited', -]) +SharedFileMetadata._all_field_names_ = set( + [ + "access_type", + "id", + "expected_link_metadata", + "link_metadata", + "name", + "owner_display_names", + "owner_team", + "parent_shared_folder_id", + "path_display", + "path_lower", + "permissions", + "policy", + "preview_url", + "time_invited", + ] +) SharedFileMetadata._all_fields_ = [ - ('access_type', SharedFileMetadata.access_type.validator), - ('id', SharedFileMetadata.id.validator), - ('expected_link_metadata', SharedFileMetadata.expected_link_metadata.validator), - ('link_metadata', SharedFileMetadata.link_metadata.validator), - ('name', SharedFileMetadata.name.validator), - ('owner_display_names', SharedFileMetadata.owner_display_names.validator), - ('owner_team', SharedFileMetadata.owner_team.validator), - ('parent_shared_folder_id', SharedFileMetadata.parent_shared_folder_id.validator), - ('path_display', SharedFileMetadata.path_display.validator), - ('path_lower', SharedFileMetadata.path_lower.validator), - ('permissions', SharedFileMetadata.permissions.validator), - ('policy', SharedFileMetadata.policy.validator), - ('preview_url', SharedFileMetadata.preview_url.validator), - ('time_invited', SharedFileMetadata.time_invited.validator), + ("access_type", SharedFileMetadata.access_type.validator), + ("id", SharedFileMetadata.id.validator), + ("expected_link_metadata", SharedFileMetadata.expected_link_metadata.validator), + ("link_metadata", SharedFileMetadata.link_metadata.validator), + ("name", SharedFileMetadata.name.validator), + ("owner_display_names", SharedFileMetadata.owner_display_names.validator), + ("owner_team", SharedFileMetadata.owner_team.validator), + ("parent_shared_folder_id", SharedFileMetadata.parent_shared_folder_id.validator), + ("path_display", SharedFileMetadata.path_display.validator), + ("path_lower", SharedFileMetadata.path_lower.validator), + ("permissions", SharedFileMetadata.permissions.validator), + ("policy", SharedFileMetadata.policy.validator), + ("preview_url", SharedFileMetadata.preview_url.validator), + ("time_invited", SharedFileMetadata.time_invited.validator), ] SharedFolderAccessError._invalid_id_validator = bv.Void() @@ -14325,51 +15083,53 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderAccessError._unmounted_validator = bv.Void() SharedFolderAccessError._other_validator = bv.Void() SharedFolderAccessError._tagmap = { - 'invalid_id': SharedFolderAccessError._invalid_id_validator, - 'not_a_member': SharedFolderAccessError._not_a_member_validator, - 'invalid_member': SharedFolderAccessError._invalid_member_validator, - 'email_unverified': SharedFolderAccessError._email_unverified_validator, - 'unmounted': SharedFolderAccessError._unmounted_validator, - 'other': SharedFolderAccessError._other_validator, + "invalid_id": SharedFolderAccessError._invalid_id_validator, + "not_a_member": SharedFolderAccessError._not_a_member_validator, + "invalid_member": SharedFolderAccessError._invalid_member_validator, + "email_unverified": SharedFolderAccessError._email_unverified_validator, + "unmounted": SharedFolderAccessError._unmounted_validator, + "other": SharedFolderAccessError._other_validator, } -SharedFolderAccessError.invalid_id = SharedFolderAccessError('invalid_id') -SharedFolderAccessError.not_a_member = SharedFolderAccessError('not_a_member') -SharedFolderAccessError.invalid_member = SharedFolderAccessError('invalid_member') -SharedFolderAccessError.email_unverified = SharedFolderAccessError('email_unverified') -SharedFolderAccessError.unmounted = SharedFolderAccessError('unmounted') -SharedFolderAccessError.other = SharedFolderAccessError('other') +SharedFolderAccessError.invalid_id = SharedFolderAccessError("invalid_id") +SharedFolderAccessError.not_a_member = SharedFolderAccessError("not_a_member") +SharedFolderAccessError.invalid_member = SharedFolderAccessError("invalid_member") +SharedFolderAccessError.email_unverified = SharedFolderAccessError("email_unverified") +SharedFolderAccessError.unmounted = SharedFolderAccessError("unmounted") +SharedFolderAccessError.other = SharedFolderAccessError("other") SharedFolderMemberError._invalid_dropbox_id_validator = bv.Void() SharedFolderMemberError._not_a_member_validator = bv.Void() SharedFolderMemberError._no_explicit_access_validator = MemberAccessLevelResult_validator SharedFolderMemberError._other_validator = bv.Void() SharedFolderMemberError._tagmap = { - 'invalid_dropbox_id': SharedFolderMemberError._invalid_dropbox_id_validator, - 'not_a_member': SharedFolderMemberError._not_a_member_validator, - 'no_explicit_access': SharedFolderMemberError._no_explicit_access_validator, - 'other': SharedFolderMemberError._other_validator, + "invalid_dropbox_id": SharedFolderMemberError._invalid_dropbox_id_validator, + "not_a_member": SharedFolderMemberError._not_a_member_validator, + "no_explicit_access": SharedFolderMemberError._no_explicit_access_validator, + "other": SharedFolderMemberError._other_validator, } -SharedFolderMemberError.invalid_dropbox_id = SharedFolderMemberError('invalid_dropbox_id') -SharedFolderMemberError.not_a_member = SharedFolderMemberError('not_a_member') -SharedFolderMemberError.other = SharedFolderMemberError('other') +SharedFolderMemberError.invalid_dropbox_id = SharedFolderMemberError("invalid_dropbox_id") +SharedFolderMemberError.not_a_member = SharedFolderMemberError("not_a_member") +SharedFolderMemberError.other = SharedFolderMemberError("other") SharedFolderMembers.users.validator = bv.List(UserMembershipInfo_validator) SharedFolderMembers.groups.validator = bv.List(GroupMembershipInfo_validator) SharedFolderMembers.invitees.validator = bv.List(InviteeMembershipInfo_validator) SharedFolderMembers.cursor.validator = bv.Nullable(bv.String()) -SharedFolderMembers._all_field_names_ = set([ - 'users', - 'groups', - 'invitees', - 'cursor', -]) +SharedFolderMembers._all_field_names_ = set( + [ + "users", + "groups", + "invitees", + "cursor", + ] +) SharedFolderMembers._all_fields_ = [ - ('users', SharedFolderMembers.users.validator), - ('groups', SharedFolderMembers.groups.validator), - ('invitees', SharedFolderMembers.invitees.validator), - ('cursor', SharedFolderMembers.cursor.validator), + ("users", SharedFolderMembers.users.validator), + ("groups", SharedFolderMembers.groups.validator), + ("invitees", SharedFolderMembers.invitees.validator), + ("cursor", SharedFolderMembers.cursor.validator), ] SharedFolderMetadataBase.access_type.validator = AccessLevel_validator @@ -14377,31 +15137,38 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderMetadataBase.is_team_folder.validator = bv.Boolean() SharedFolderMetadataBase.owner_display_names.validator = bv.Nullable(bv.List(bv.String())) SharedFolderMetadataBase.owner_team.validator = bv.Nullable(users.Team_validator) -SharedFolderMetadataBase.parent_shared_folder_id.validator = bv.Nullable(common.SharedFolderId_validator) +SharedFolderMetadataBase.parent_shared_folder_id.validator = bv.Nullable( + common.SharedFolderId_validator +) SharedFolderMetadataBase.path_display.validator = bv.Nullable(bv.String()) SharedFolderMetadataBase.path_lower.validator = bv.Nullable(bv.String()) SharedFolderMetadataBase.parent_folder_name.validator = bv.Nullable(bv.String()) -SharedFolderMetadataBase._all_field_names_ = set([ - 'access_type', - 'is_inside_team_folder', - 'is_team_folder', - 'owner_display_names', - 'owner_team', - 'parent_shared_folder_id', - 'path_display', - 'path_lower', - 'parent_folder_name', -]) +SharedFolderMetadataBase._all_field_names_ = set( + [ + "access_type", + "is_inside_team_folder", + "is_team_folder", + "owner_display_names", + "owner_team", + "parent_shared_folder_id", + "path_display", + "path_lower", + "parent_folder_name", + ] +) SharedFolderMetadataBase._all_fields_ = [ - ('access_type', SharedFolderMetadataBase.access_type.validator), - ('is_inside_team_folder', SharedFolderMetadataBase.is_inside_team_folder.validator), - ('is_team_folder', SharedFolderMetadataBase.is_team_folder.validator), - ('owner_display_names', SharedFolderMetadataBase.owner_display_names.validator), - ('owner_team', SharedFolderMetadataBase.owner_team.validator), - ('parent_shared_folder_id', SharedFolderMetadataBase.parent_shared_folder_id.validator), - ('path_display', SharedFolderMetadataBase.path_display.validator), - ('path_lower', SharedFolderMetadataBase.path_lower.validator), - ('parent_folder_name', SharedFolderMetadataBase.parent_folder_name.validator), + ("access_type", SharedFolderMetadataBase.access_type.validator), + ("is_inside_team_folder", SharedFolderMetadataBase.is_inside_team_folder.validator), + ("is_team_folder", SharedFolderMetadataBase.is_team_folder.validator), + ("owner_display_names", SharedFolderMetadataBase.owner_display_names.validator), + ("owner_team", SharedFolderMetadataBase.owner_team.validator), + ( + "parent_shared_folder_id", + SharedFolderMetadataBase.parent_shared_folder_id.validator, + ), + ("path_display", SharedFolderMetadataBase.path_display.validator), + ("path_lower", SharedFolderMetadataBase.path_lower.validator), + ("parent_folder_name", SharedFolderMetadataBase.parent_folder_name.validator), ] SharedFolderMetadata.link_metadata.validator = bv.Nullable(SharedContentLinkMetadata_validator) @@ -14413,27 +15180,31 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderMetadata.time_invited.validator = common.DropboxTimestamp_validator SharedFolderMetadata.access_inheritance.validator = AccessInheritance_validator SharedFolderMetadata.folder_id.validator = bv.Nullable(files.FileId_validator) -SharedFolderMetadata._all_field_names_ = SharedFolderMetadataBase._all_field_names_.union(set([ - 'link_metadata', - 'name', - 'permissions', - 'policy', - 'preview_url', - 'shared_folder_id', - 'time_invited', - 'access_inheritance', - 'folder_id', -])) +SharedFolderMetadata._all_field_names_ = SharedFolderMetadataBase._all_field_names_.union( + set( + [ + "link_metadata", + "name", + "permissions", + "policy", + "preview_url", + "shared_folder_id", + "time_invited", + "access_inheritance", + "folder_id", + ] + ) +) SharedFolderMetadata._all_fields_ = SharedFolderMetadataBase._all_fields_ + [ - ('link_metadata', SharedFolderMetadata.link_metadata.validator), - ('name', SharedFolderMetadata.name.validator), - ('permissions', SharedFolderMetadata.permissions.validator), - ('policy', SharedFolderMetadata.policy.validator), - ('preview_url', SharedFolderMetadata.preview_url.validator), - ('shared_folder_id', SharedFolderMetadata.shared_folder_id.validator), - ('time_invited', SharedFolderMetadata.time_invited.validator), - ('access_inheritance', SharedFolderMetadata.access_inheritance.validator), - ('folder_id', SharedFolderMetadata.folder_id.validator), + ("link_metadata", SharedFolderMetadata.link_metadata.validator), + ("name", SharedFolderMetadata.name.validator), + ("permissions", SharedFolderMetadata.permissions.validator), + ("policy", SharedFolderMetadata.policy.validator), + ("preview_url", SharedFolderMetadata.preview_url.validator), + ("shared_folder_id", SharedFolderMetadata.shared_folder_id.validator), + ("time_invited", SharedFolderMetadata.time_invited.validator), + ("access_inheritance", SharedFolderMetadata.access_inheritance.validator), + ("folder_id", SharedFolderMetadata.folder_id.validator), ] SharedLinkAccessFailureReason._login_required_validator = bv.Void() @@ -14443,32 +15214,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkAccessFailureReason._owner_only_validator = bv.Void() SharedLinkAccessFailureReason._other_validator = bv.Void() SharedLinkAccessFailureReason._tagmap = { - 'login_required': SharedLinkAccessFailureReason._login_required_validator, - 'email_verify_required': SharedLinkAccessFailureReason._email_verify_required_validator, - 'password_required': SharedLinkAccessFailureReason._password_required_validator, - 'team_only': SharedLinkAccessFailureReason._team_only_validator, - 'owner_only': SharedLinkAccessFailureReason._owner_only_validator, - 'other': SharedLinkAccessFailureReason._other_validator, + "login_required": SharedLinkAccessFailureReason._login_required_validator, + "email_verify_required": SharedLinkAccessFailureReason._email_verify_required_validator, + "password_required": SharedLinkAccessFailureReason._password_required_validator, + "team_only": SharedLinkAccessFailureReason._team_only_validator, + "owner_only": SharedLinkAccessFailureReason._owner_only_validator, + "other": SharedLinkAccessFailureReason._other_validator, } -SharedLinkAccessFailureReason.login_required = SharedLinkAccessFailureReason('login_required') -SharedLinkAccessFailureReason.email_verify_required = SharedLinkAccessFailureReason('email_verify_required') -SharedLinkAccessFailureReason.password_required = SharedLinkAccessFailureReason('password_required') -SharedLinkAccessFailureReason.team_only = SharedLinkAccessFailureReason('team_only') -SharedLinkAccessFailureReason.owner_only = SharedLinkAccessFailureReason('owner_only') -SharedLinkAccessFailureReason.other = SharedLinkAccessFailureReason('other') +SharedLinkAccessFailureReason.login_required = SharedLinkAccessFailureReason("login_required") +SharedLinkAccessFailureReason.email_verify_required = SharedLinkAccessFailureReason( + "email_verify_required" +) +SharedLinkAccessFailureReason.password_required = SharedLinkAccessFailureReason("password_required") +SharedLinkAccessFailureReason.team_only = SharedLinkAccessFailureReason("team_only") +SharedLinkAccessFailureReason.owner_only = SharedLinkAccessFailureReason("owner_only") +SharedLinkAccessFailureReason.other = SharedLinkAccessFailureReason("other") SharedLinkAlreadyExistsMetadata._metadata_validator = SharedLinkMetadata_validator SharedLinkAlreadyExistsMetadata._other_validator = bv.Void() SharedLinkAlreadyExistsMetadata._tagmap = { - 'metadata': SharedLinkAlreadyExistsMetadata._metadata_validator, - 'other': SharedLinkAlreadyExistsMetadata._other_validator, + "metadata": SharedLinkAlreadyExistsMetadata._metadata_validator, + "other": SharedLinkAlreadyExistsMetadata._other_validator, } -SharedLinkAlreadyExistsMetadata.other = SharedLinkAlreadyExistsMetadata('other') +SharedLinkAlreadyExistsMetadata.other = SharedLinkAlreadyExistsMetadata("other") -SharedLinkMetadataError._tagmap = { -} +SharedLinkMetadataError._tagmap = {} SharedLinkMetadataError._tagmap.update(SharedLinkError._tagmap) SharedLinkPolicy._anyone_validator = bv.Void() @@ -14476,16 +15248,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkPolicy._members_validator = bv.Void() SharedLinkPolicy._other_validator = bv.Void() SharedLinkPolicy._tagmap = { - 'anyone': SharedLinkPolicy._anyone_validator, - 'team': SharedLinkPolicy._team_validator, - 'members': SharedLinkPolicy._members_validator, - 'other': SharedLinkPolicy._other_validator, + "anyone": SharedLinkPolicy._anyone_validator, + "team": SharedLinkPolicy._team_validator, + "members": SharedLinkPolicy._members_validator, + "other": SharedLinkPolicy._other_validator, } -SharedLinkPolicy.anyone = SharedLinkPolicy('anyone') -SharedLinkPolicy.team = SharedLinkPolicy('team') -SharedLinkPolicy.members = SharedLinkPolicy('members') -SharedLinkPolicy.other = SharedLinkPolicy('other') +SharedLinkPolicy.anyone = SharedLinkPolicy("anyone") +SharedLinkPolicy.team = SharedLinkPolicy("team") +SharedLinkPolicy.members = SharedLinkPolicy("members") +SharedLinkPolicy.other = SharedLinkPolicy("other") SharedLinkSettings.require_password.validator = bv.Nullable(bv.Boolean()) SharedLinkSettings.link_password.validator = bv.Nullable(bv.String()) @@ -14494,34 +15266,36 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkSettings.access.validator = bv.Nullable(RequestedLinkAccessLevel_validator) SharedLinkSettings.requested_visibility.validator = bv.Nullable(RequestedVisibility_validator) SharedLinkSettings.allow_download.validator = bv.Nullable(bv.Boolean()) -SharedLinkSettings._all_field_names_ = set([ - 'require_password', - 'link_password', - 'expires', - 'audience', - 'access', - 'requested_visibility', - 'allow_download', -]) +SharedLinkSettings._all_field_names_ = set( + [ + "require_password", + "link_password", + "expires", + "audience", + "access", + "requested_visibility", + "allow_download", + ] +) SharedLinkSettings._all_fields_ = [ - ('require_password', SharedLinkSettings.require_password.validator), - ('link_password', SharedLinkSettings.link_password.validator), - ('expires', SharedLinkSettings.expires.validator), - ('audience', SharedLinkSettings.audience.validator), - ('access', SharedLinkSettings.access.validator), - ('requested_visibility', SharedLinkSettings.requested_visibility.validator), - ('allow_download', SharedLinkSettings.allow_download.validator), + ("require_password", SharedLinkSettings.require_password.validator), + ("link_password", SharedLinkSettings.link_password.validator), + ("expires", SharedLinkSettings.expires.validator), + ("audience", SharedLinkSettings.audience.validator), + ("access", SharedLinkSettings.access.validator), + ("requested_visibility", SharedLinkSettings.requested_visibility.validator), + ("allow_download", SharedLinkSettings.allow_download.validator), ] SharedLinkSettingsError._invalid_settings_validator = bv.Void() SharedLinkSettingsError._not_authorized_validator = bv.Void() SharedLinkSettingsError._tagmap = { - 'invalid_settings': SharedLinkSettingsError._invalid_settings_validator, - 'not_authorized': SharedLinkSettingsError._not_authorized_validator, + "invalid_settings": SharedLinkSettingsError._invalid_settings_validator, + "not_authorized": SharedLinkSettingsError._not_authorized_validator, } -SharedLinkSettingsError.invalid_settings = SharedLinkSettingsError('invalid_settings') -SharedLinkSettingsError.not_authorized = SharedLinkSettingsError('not_authorized') +SharedLinkSettingsError.invalid_settings = SharedLinkSettingsError("invalid_settings") +SharedLinkSettingsError.not_authorized = SharedLinkSettingsError("not_authorized") SharingFileAccessError._no_permission_validator = bv.Void() SharingFileAccessError._invalid_file_validator = bv.Void() @@ -14530,54 +15304,58 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingFileAccessError._inside_osx_package_validator = bv.Void() SharingFileAccessError._other_validator = bv.Void() SharingFileAccessError._tagmap = { - 'no_permission': SharingFileAccessError._no_permission_validator, - 'invalid_file': SharingFileAccessError._invalid_file_validator, - 'is_folder': SharingFileAccessError._is_folder_validator, - 'inside_public_folder': SharingFileAccessError._inside_public_folder_validator, - 'inside_osx_package': SharingFileAccessError._inside_osx_package_validator, - 'other': SharingFileAccessError._other_validator, + "no_permission": SharingFileAccessError._no_permission_validator, + "invalid_file": SharingFileAccessError._invalid_file_validator, + "is_folder": SharingFileAccessError._is_folder_validator, + "inside_public_folder": SharingFileAccessError._inside_public_folder_validator, + "inside_osx_package": SharingFileAccessError._inside_osx_package_validator, + "other": SharingFileAccessError._other_validator, } -SharingFileAccessError.no_permission = SharingFileAccessError('no_permission') -SharingFileAccessError.invalid_file = SharingFileAccessError('invalid_file') -SharingFileAccessError.is_folder = SharingFileAccessError('is_folder') -SharingFileAccessError.inside_public_folder = SharingFileAccessError('inside_public_folder') -SharingFileAccessError.inside_osx_package = SharingFileAccessError('inside_osx_package') -SharingFileAccessError.other = SharingFileAccessError('other') +SharingFileAccessError.no_permission = SharingFileAccessError("no_permission") +SharingFileAccessError.invalid_file = SharingFileAccessError("invalid_file") +SharingFileAccessError.is_folder = SharingFileAccessError("is_folder") +SharingFileAccessError.inside_public_folder = SharingFileAccessError("inside_public_folder") +SharingFileAccessError.inside_osx_package = SharingFileAccessError("inside_osx_package") +SharingFileAccessError.other = SharingFileAccessError("other") SharingUserError._email_unverified_validator = bv.Void() SharingUserError._other_validator = bv.Void() SharingUserError._tagmap = { - 'email_unverified': SharingUserError._email_unverified_validator, - 'other': SharingUserError._other_validator, + "email_unverified": SharingUserError._email_unverified_validator, + "other": SharingUserError._other_validator, } -SharingUserError.email_unverified = SharingUserError('email_unverified') -SharingUserError.other = SharingUserError('other') +SharingUserError.email_unverified = SharingUserError("email_unverified") +SharingUserError.other = SharingUserError("other") TeamMemberInfo.team_info.validator = TeamInfo_validator TeamMemberInfo.display_name.validator = bv.String() TeamMemberInfo.member_id.validator = bv.Nullable(bv.String()) -TeamMemberInfo._all_field_names_ = set([ - 'team_info', - 'display_name', - 'member_id', -]) +TeamMemberInfo._all_field_names_ = set( + [ + "team_info", + "display_name", + "member_id", + ] +) TeamMemberInfo._all_fields_ = [ - ('team_info', TeamMemberInfo.team_info.validator), - ('display_name', TeamMemberInfo.display_name.validator), - ('member_id', TeamMemberInfo.member_id.validator), + ("team_info", TeamMemberInfo.team_info.validator), + ("display_name", TeamMemberInfo.display_name.validator), + ("member_id", TeamMemberInfo.member_id.validator), ] TransferFolderArg.shared_folder_id.validator = common.SharedFolderId_validator TransferFolderArg.to_dropbox_id.validator = DropboxId_validator -TransferFolderArg._all_field_names_ = set([ - 'shared_folder_id', - 'to_dropbox_id', -]) +TransferFolderArg._all_field_names_ = set( + [ + "shared_folder_id", + "to_dropbox_id", + ] +) TransferFolderArg._all_fields_ = [ - ('shared_folder_id', TransferFolderArg.shared_folder_id.validator), - ('to_dropbox_id', TransferFolderArg.to_dropbox_id.validator), + ("shared_folder_id", TransferFolderArg.shared_folder_id.validator), + ("to_dropbox_id", TransferFolderArg.to_dropbox_id.validator), ] TransferFolderError._access_error_validator = SharedFolderAccessError_validator @@ -14589,67 +15367,69 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TransferFolderError._no_permission_validator = bv.Void() TransferFolderError._other_validator = bv.Void() TransferFolderError._tagmap = { - 'access_error': TransferFolderError._access_error_validator, - 'invalid_dropbox_id': TransferFolderError._invalid_dropbox_id_validator, - 'new_owner_not_a_member': TransferFolderError._new_owner_not_a_member_validator, - 'new_owner_unmounted': TransferFolderError._new_owner_unmounted_validator, - 'new_owner_email_unverified': TransferFolderError._new_owner_email_unverified_validator, - 'team_folder': TransferFolderError._team_folder_validator, - 'no_permission': TransferFolderError._no_permission_validator, - 'other': TransferFolderError._other_validator, + "access_error": TransferFolderError._access_error_validator, + "invalid_dropbox_id": TransferFolderError._invalid_dropbox_id_validator, + "new_owner_not_a_member": TransferFolderError._new_owner_not_a_member_validator, + "new_owner_unmounted": TransferFolderError._new_owner_unmounted_validator, + "new_owner_email_unverified": TransferFolderError._new_owner_email_unverified_validator, + "team_folder": TransferFolderError._team_folder_validator, + "no_permission": TransferFolderError._no_permission_validator, + "other": TransferFolderError._other_validator, } -TransferFolderError.invalid_dropbox_id = TransferFolderError('invalid_dropbox_id') -TransferFolderError.new_owner_not_a_member = TransferFolderError('new_owner_not_a_member') -TransferFolderError.new_owner_unmounted = TransferFolderError('new_owner_unmounted') -TransferFolderError.new_owner_email_unverified = TransferFolderError('new_owner_email_unverified') -TransferFolderError.team_folder = TransferFolderError('team_folder') -TransferFolderError.no_permission = TransferFolderError('no_permission') -TransferFolderError.other = TransferFolderError('other') +TransferFolderError.invalid_dropbox_id = TransferFolderError("invalid_dropbox_id") +TransferFolderError.new_owner_not_a_member = TransferFolderError("new_owner_not_a_member") +TransferFolderError.new_owner_unmounted = TransferFolderError("new_owner_unmounted") +TransferFolderError.new_owner_email_unverified = TransferFolderError("new_owner_email_unverified") +TransferFolderError.team_folder = TransferFolderError("team_folder") +TransferFolderError.no_permission = TransferFolderError("no_permission") +TransferFolderError.other = TransferFolderError("other") UnmountFolderArg.shared_folder_id.validator = common.SharedFolderId_validator -UnmountFolderArg._all_field_names_ = set(['shared_folder_id']) -UnmountFolderArg._all_fields_ = [('shared_folder_id', UnmountFolderArg.shared_folder_id.validator)] +UnmountFolderArg._all_field_names_ = set(["shared_folder_id"]) +UnmountFolderArg._all_fields_ = [("shared_folder_id", UnmountFolderArg.shared_folder_id.validator)] UnmountFolderError._access_error_validator = SharedFolderAccessError_validator UnmountFolderError._no_permission_validator = bv.Void() UnmountFolderError._not_unmountable_validator = bv.Void() UnmountFolderError._other_validator = bv.Void() UnmountFolderError._tagmap = { - 'access_error': UnmountFolderError._access_error_validator, - 'no_permission': UnmountFolderError._no_permission_validator, - 'not_unmountable': UnmountFolderError._not_unmountable_validator, - 'other': UnmountFolderError._other_validator, + "access_error": UnmountFolderError._access_error_validator, + "no_permission": UnmountFolderError._no_permission_validator, + "not_unmountable": UnmountFolderError._not_unmountable_validator, + "other": UnmountFolderError._other_validator, } -UnmountFolderError.no_permission = UnmountFolderError('no_permission') -UnmountFolderError.not_unmountable = UnmountFolderError('not_unmountable') -UnmountFolderError.other = UnmountFolderError('other') +UnmountFolderError.no_permission = UnmountFolderError("no_permission") +UnmountFolderError.not_unmountable = UnmountFolderError("not_unmountable") +UnmountFolderError.other = UnmountFolderError("other") UnshareFileArg.file.validator = PathOrId_validator -UnshareFileArg._all_field_names_ = set(['file']) -UnshareFileArg._all_fields_ = [('file', UnshareFileArg.file.validator)] +UnshareFileArg._all_field_names_ = set(["file"]) +UnshareFileArg._all_fields_ = [("file", UnshareFileArg.file.validator)] UnshareFileError._user_error_validator = SharingUserError_validator UnshareFileError._access_error_validator = SharingFileAccessError_validator UnshareFileError._other_validator = bv.Void() UnshareFileError._tagmap = { - 'user_error': UnshareFileError._user_error_validator, - 'access_error': UnshareFileError._access_error_validator, - 'other': UnshareFileError._other_validator, + "user_error": UnshareFileError._user_error_validator, + "access_error": UnshareFileError._access_error_validator, + "other": UnshareFileError._other_validator, } -UnshareFileError.other = UnshareFileError('other') +UnshareFileError.other = UnshareFileError("other") UnshareFolderArg.shared_folder_id.validator = common.SharedFolderId_validator UnshareFolderArg.leave_a_copy.validator = bv.Boolean() -UnshareFolderArg._all_field_names_ = set([ - 'shared_folder_id', - 'leave_a_copy', -]) +UnshareFolderArg._all_field_names_ = set( + [ + "shared_folder_id", + "leave_a_copy", + ] +) UnshareFolderArg._all_fields_ = [ - ('shared_folder_id', UnshareFolderArg.shared_folder_id.validator), - ('leave_a_copy', UnshareFolderArg.leave_a_copy.validator), + ("shared_folder_id", UnshareFolderArg.shared_folder_id.validator), + ("leave_a_copy", UnshareFolderArg.leave_a_copy.validator), ] UnshareFolderError._access_error_validator = SharedFolderAccessError_validator @@ -14658,47 +15438,51 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UnshareFolderError._too_many_files_validator = bv.Void() UnshareFolderError._other_validator = bv.Void() UnshareFolderError._tagmap = { - 'access_error': UnshareFolderError._access_error_validator, - 'team_folder': UnshareFolderError._team_folder_validator, - 'no_permission': UnshareFolderError._no_permission_validator, - 'too_many_files': UnshareFolderError._too_many_files_validator, - 'other': UnshareFolderError._other_validator, + "access_error": UnshareFolderError._access_error_validator, + "team_folder": UnshareFolderError._team_folder_validator, + "no_permission": UnshareFolderError._no_permission_validator, + "too_many_files": UnshareFolderError._too_many_files_validator, + "other": UnshareFolderError._other_validator, } -UnshareFolderError.team_folder = UnshareFolderError('team_folder') -UnshareFolderError.no_permission = UnshareFolderError('no_permission') -UnshareFolderError.too_many_files = UnshareFolderError('too_many_files') -UnshareFolderError.other = UnshareFolderError('other') +UnshareFolderError.team_folder = UnshareFolderError("team_folder") +UnshareFolderError.no_permission = UnshareFolderError("no_permission") +UnshareFolderError.too_many_files = UnshareFolderError("too_many_files") +UnshareFolderError.other = UnshareFolderError("other") UpdateFileMemberArgs.file.validator = PathOrId_validator UpdateFileMemberArgs.member.validator = MemberSelector_validator UpdateFileMemberArgs.access_level.validator = AccessLevel_validator -UpdateFileMemberArgs._all_field_names_ = set([ - 'file', - 'member', - 'access_level', -]) +UpdateFileMemberArgs._all_field_names_ = set( + [ + "file", + "member", + "access_level", + ] +) UpdateFileMemberArgs._all_fields_ = [ - ('file', UpdateFileMemberArgs.file.validator), - ('member', UpdateFileMemberArgs.member.validator), - ('access_level', UpdateFileMemberArgs.access_level.validator), + ("file", UpdateFileMemberArgs.file.validator), + ("member", UpdateFileMemberArgs.member.validator), + ("access_level", UpdateFileMemberArgs.access_level.validator), ] UpdateFilePolicyArg.file.validator = PathOrId_validator UpdateFilePolicyArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) UpdateFilePolicyArg.link_settings.validator = bv.Nullable(LinkSettings_validator) UpdateFilePolicyArg.viewer_info_policy.validator = bv.Nullable(ViewerInfoPolicy_validator) -UpdateFilePolicyArg._all_field_names_ = set([ - 'file', - 'actions', - 'link_settings', - 'viewer_info_policy', -]) +UpdateFilePolicyArg._all_field_names_ = set( + [ + "file", + "actions", + "link_settings", + "viewer_info_policy", + ] +) UpdateFilePolicyArg._all_fields_ = [ - ('file', UpdateFilePolicyArg.file.validator), - ('actions', UpdateFilePolicyArg.actions.validator), - ('link_settings', UpdateFilePolicyArg.link_settings.validator), - ('viewer_info_policy', UpdateFilePolicyArg.viewer_info_policy.validator), + ("file", UpdateFilePolicyArg.file.validator), + ("actions", UpdateFilePolicyArg.actions.validator), + ("link_settings", UpdateFilePolicyArg.link_settings.validator), + ("viewer_info_policy", UpdateFilePolicyArg.viewer_info_policy.validator), ] UpdateFilePolicyError._access_error_validator = SharingFileAccessError_validator @@ -14706,28 +15490,30 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFilePolicyError._no_permission_validator = bv.Void() UpdateFilePolicyError._other_validator = bv.Void() UpdateFilePolicyError._tagmap = { - 'access_error': UpdateFilePolicyError._access_error_validator, - 'invalid_file_settings': UpdateFilePolicyError._invalid_file_settings_validator, - 'no_permission': UpdateFilePolicyError._no_permission_validator, - 'other': UpdateFilePolicyError._other_validator, + "access_error": UpdateFilePolicyError._access_error_validator, + "invalid_file_settings": UpdateFilePolicyError._invalid_file_settings_validator, + "no_permission": UpdateFilePolicyError._no_permission_validator, + "other": UpdateFilePolicyError._other_validator, } -UpdateFilePolicyError.invalid_file_settings = UpdateFilePolicyError('invalid_file_settings') -UpdateFilePolicyError.no_permission = UpdateFilePolicyError('no_permission') -UpdateFilePolicyError.other = UpdateFilePolicyError('other') +UpdateFilePolicyError.invalid_file_settings = UpdateFilePolicyError("invalid_file_settings") +UpdateFilePolicyError.no_permission = UpdateFilePolicyError("no_permission") +UpdateFilePolicyError.other = UpdateFilePolicyError("other") UpdateFolderMemberArg.shared_folder_id.validator = common.SharedFolderId_validator UpdateFolderMemberArg.member.validator = MemberSelector_validator UpdateFolderMemberArg.access_level.validator = AccessLevel_validator -UpdateFolderMemberArg._all_field_names_ = set([ - 'shared_folder_id', - 'member', - 'access_level', -]) +UpdateFolderMemberArg._all_field_names_ = set( + [ + "shared_folder_id", + "member", + "access_level", + ] +) UpdateFolderMemberArg._all_fields_ = [ - ('shared_folder_id', UpdateFolderMemberArg.shared_folder_id.validator), - ('member', UpdateFolderMemberArg.member.validator), - ('access_level', UpdateFolderMemberArg.access_level.validator), + ("shared_folder_id", UpdateFolderMemberArg.shared_folder_id.validator), + ("member", UpdateFolderMemberArg.member.validator), + ("access_level", UpdateFolderMemberArg.access_level.validator), ] UpdateFolderMemberError._access_error_validator = SharedFolderAccessError_validator @@ -14737,17 +15523,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFolderMemberError._no_permission_validator = bv.Void() UpdateFolderMemberError._other_validator = bv.Void() UpdateFolderMemberError._tagmap = { - 'access_error': UpdateFolderMemberError._access_error_validator, - 'member_error': UpdateFolderMemberError._member_error_validator, - 'no_explicit_access': UpdateFolderMemberError._no_explicit_access_validator, - 'insufficient_plan': UpdateFolderMemberError._insufficient_plan_validator, - 'no_permission': UpdateFolderMemberError._no_permission_validator, - 'other': UpdateFolderMemberError._other_validator, + "access_error": UpdateFolderMemberError._access_error_validator, + "member_error": UpdateFolderMemberError._member_error_validator, + "no_explicit_access": UpdateFolderMemberError._no_explicit_access_validator, + "insufficient_plan": UpdateFolderMemberError._insufficient_plan_validator, + "no_permission": UpdateFolderMemberError._no_permission_validator, + "other": UpdateFolderMemberError._other_validator, } -UpdateFolderMemberError.insufficient_plan = UpdateFolderMemberError('insufficient_plan') -UpdateFolderMemberError.no_permission = UpdateFolderMemberError('no_permission') -UpdateFolderMemberError.other = UpdateFolderMemberError('other') +UpdateFolderMemberError.insufficient_plan = UpdateFolderMemberError("insufficient_plan") +UpdateFolderMemberError.no_permission = UpdateFolderMemberError("no_permission") +UpdateFolderMemberError.other = UpdateFolderMemberError("other") UpdateFolderPolicyArg.shared_folder_id.validator = common.SharedFolderId_validator UpdateFolderPolicyArg.member_policy.validator = bv.Nullable(MemberPolicy_validator) @@ -14756,23 +15542,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFolderPolicyArg.shared_link_policy.validator = bv.Nullable(SharedLinkPolicy_validator) UpdateFolderPolicyArg.link_settings.validator = bv.Nullable(LinkSettings_validator) UpdateFolderPolicyArg.actions.validator = bv.Nullable(bv.List(FolderAction_validator)) -UpdateFolderPolicyArg._all_field_names_ = set([ - 'shared_folder_id', - 'member_policy', - 'acl_update_policy', - 'viewer_info_policy', - 'shared_link_policy', - 'link_settings', - 'actions', -]) +UpdateFolderPolicyArg._all_field_names_ = set( + [ + "shared_folder_id", + "member_policy", + "acl_update_policy", + "viewer_info_policy", + "shared_link_policy", + "link_settings", + "actions", + ] +) UpdateFolderPolicyArg._all_fields_ = [ - ('shared_folder_id', UpdateFolderPolicyArg.shared_folder_id.validator), - ('member_policy', UpdateFolderPolicyArg.member_policy.validator), - ('acl_update_policy', UpdateFolderPolicyArg.acl_update_policy.validator), - ('viewer_info_policy', UpdateFolderPolicyArg.viewer_info_policy.validator), - ('shared_link_policy', UpdateFolderPolicyArg.shared_link_policy.validator), - ('link_settings', UpdateFolderPolicyArg.link_settings.validator), - ('actions', UpdateFolderPolicyArg.actions.validator), + ("shared_folder_id", UpdateFolderPolicyArg.shared_folder_id.validator), + ("member_policy", UpdateFolderPolicyArg.member_policy.validator), + ("acl_update_policy", UpdateFolderPolicyArg.acl_update_policy.validator), + ("viewer_info_policy", UpdateFolderPolicyArg.viewer_info_policy.validator), + ("shared_link_policy", UpdateFolderPolicyArg.shared_link_policy.validator), + ("link_settings", UpdateFolderPolicyArg.link_settings.validator), + ("actions", UpdateFolderPolicyArg.actions.validator), ] UpdateFolderPolicyError._access_error_validator = SharedFolderAccessError_validator @@ -14783,35 +15571,45 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFolderPolicyError._team_folder_validator = bv.Void() UpdateFolderPolicyError._other_validator = bv.Void() UpdateFolderPolicyError._tagmap = { - 'access_error': UpdateFolderPolicyError._access_error_validator, - 'not_on_team': UpdateFolderPolicyError._not_on_team_validator, - 'team_policy_disallows_member_policy': UpdateFolderPolicyError._team_policy_disallows_member_policy_validator, - 'disallowed_shared_link_policy': UpdateFolderPolicyError._disallowed_shared_link_policy_validator, - 'no_permission': UpdateFolderPolicyError._no_permission_validator, - 'team_folder': UpdateFolderPolicyError._team_folder_validator, - 'other': UpdateFolderPolicyError._other_validator, + "access_error": UpdateFolderPolicyError._access_error_validator, + "not_on_team": UpdateFolderPolicyError._not_on_team_validator, + "team_policy_disallows_member_policy": UpdateFolderPolicyError._team_policy_disallows_member_policy_validator, + "disallowed_shared_link_policy": UpdateFolderPolicyError._disallowed_shared_link_policy_validator, + "no_permission": UpdateFolderPolicyError._no_permission_validator, + "team_folder": UpdateFolderPolicyError._team_folder_validator, + "other": UpdateFolderPolicyError._other_validator, } -UpdateFolderPolicyError.not_on_team = UpdateFolderPolicyError('not_on_team') -UpdateFolderPolicyError.team_policy_disallows_member_policy = UpdateFolderPolicyError('team_policy_disallows_member_policy') -UpdateFolderPolicyError.disallowed_shared_link_policy = UpdateFolderPolicyError('disallowed_shared_link_policy') -UpdateFolderPolicyError.no_permission = UpdateFolderPolicyError('no_permission') -UpdateFolderPolicyError.team_folder = UpdateFolderPolicyError('team_folder') -UpdateFolderPolicyError.other = UpdateFolderPolicyError('other') +UpdateFolderPolicyError.not_on_team = UpdateFolderPolicyError("not_on_team") +UpdateFolderPolicyError.team_policy_disallows_member_policy = UpdateFolderPolicyError( + "team_policy_disallows_member_policy" +) +UpdateFolderPolicyError.disallowed_shared_link_policy = UpdateFolderPolicyError( + "disallowed_shared_link_policy" +) +UpdateFolderPolicyError.no_permission = UpdateFolderPolicyError("no_permission") +UpdateFolderPolicyError.team_folder = UpdateFolderPolicyError("team_folder") +UpdateFolderPolicyError.other = UpdateFolderPolicyError("other") UserMembershipInfo.user.validator = UserInfo_validator -UserMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(['user'])) -UserMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [('user', UserMembershipInfo.user.validator)] +UserMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(["user"])) +UserMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [ + ("user", UserMembershipInfo.user.validator) +] UserFileMembershipInfo.time_last_seen.validator = bv.Nullable(common.DropboxTimestamp_validator) UserFileMembershipInfo.platform_type.validator = bv.Nullable(seen_state.PlatformType_validator) -UserFileMembershipInfo._all_field_names_ = UserMembershipInfo._all_field_names_.union(set([ - 'time_last_seen', - 'platform_type', -])) +UserFileMembershipInfo._all_field_names_ = UserMembershipInfo._all_field_names_.union( + set( + [ + "time_last_seen", + "platform_type", + ] + ) +) UserFileMembershipInfo._all_fields_ = UserMembershipInfo._all_fields_ + [ - ('time_last_seen', UserFileMembershipInfo.time_last_seen.validator), - ('platform_type', UserFileMembershipInfo.platform_type.validator), + ("time_last_seen", UserFileMembershipInfo.time_last_seen.validator), + ("platform_type", UserFileMembershipInfo.platform_type.validator), ] UserInfo.account_id.validator = users_common.AccountId_validator @@ -14819,33 +15617,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserInfo.display_name.validator = bv.String() UserInfo.same_team.validator = bv.Boolean() UserInfo.team_member_id.validator = bv.Nullable(bv.String()) -UserInfo._all_field_names_ = set([ - 'account_id', - 'email', - 'display_name', - 'same_team', - 'team_member_id', -]) +UserInfo._all_field_names_ = set( + [ + "account_id", + "email", + "display_name", + "same_team", + "team_member_id", + ] +) UserInfo._all_fields_ = [ - ('account_id', UserInfo.account_id.validator), - ('email', UserInfo.email.validator), - ('display_name', UserInfo.display_name.validator), - ('same_team', UserInfo.same_team.validator), - ('team_member_id', UserInfo.team_member_id.validator), + ("account_id", UserInfo.account_id.validator), + ("email", UserInfo.email.validator), + ("display_name", UserInfo.display_name.validator), + ("same_team", UserInfo.same_team.validator), + ("team_member_id", UserInfo.team_member_id.validator), ] ViewerInfoPolicy._enabled_validator = bv.Void() ViewerInfoPolicy._disabled_validator = bv.Void() ViewerInfoPolicy._other_validator = bv.Void() ViewerInfoPolicy._tagmap = { - 'enabled': ViewerInfoPolicy._enabled_validator, - 'disabled': ViewerInfoPolicy._disabled_validator, - 'other': ViewerInfoPolicy._other_validator, + "enabled": ViewerInfoPolicy._enabled_validator, + "disabled": ViewerInfoPolicy._disabled_validator, + "other": ViewerInfoPolicy._other_validator, } -ViewerInfoPolicy.enabled = ViewerInfoPolicy('enabled') -ViewerInfoPolicy.disabled = ViewerInfoPolicy('disabled') -ViewerInfoPolicy.other = ViewerInfoPolicy('other') +ViewerInfoPolicy.enabled = ViewerInfoPolicy("enabled") +ViewerInfoPolicy.disabled = ViewerInfoPolicy("disabled") +ViewerInfoPolicy.other = ViewerInfoPolicy("other") Visibility._public_validator = bv.Void() Visibility._team_only_validator = bv.Void() @@ -14854,36 +15654,40 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Visibility._shared_folder_only_validator = bv.Void() Visibility._other_validator = bv.Void() Visibility._tagmap = { - 'public': Visibility._public_validator, - 'team_only': Visibility._team_only_validator, - 'password': Visibility._password_validator, - 'team_and_password': Visibility._team_and_password_validator, - 'shared_folder_only': Visibility._shared_folder_only_validator, - 'other': Visibility._other_validator, + "public": Visibility._public_validator, + "team_only": Visibility._team_only_validator, + "password": Visibility._password_validator, + "team_and_password": Visibility._team_and_password_validator, + "shared_folder_only": Visibility._shared_folder_only_validator, + "other": Visibility._other_validator, } -Visibility.public = Visibility('public') -Visibility.team_only = Visibility('team_only') -Visibility.password = Visibility('password') -Visibility.team_and_password = Visibility('team_and_password') -Visibility.shared_folder_only = Visibility('shared_folder_only') -Visibility.other = Visibility('other') +Visibility.public = Visibility("public") +Visibility.team_only = Visibility("team_only") +Visibility.password = Visibility("password") +Visibility.team_and_password = Visibility("team_and_password") +Visibility.shared_folder_only = Visibility("shared_folder_only") +Visibility.other = Visibility("other") VisibilityPolicy.policy.validator = RequestedVisibility_validator VisibilityPolicy.resolved_policy.validator = AlphaResolvedVisibility_validator VisibilityPolicy.allowed.validator = bv.Boolean() -VisibilityPolicy.disallowed_reason.validator = bv.Nullable(VisibilityPolicyDisallowedReason_validator) -VisibilityPolicy._all_field_names_ = set([ - 'policy', - 'resolved_policy', - 'allowed', - 'disallowed_reason', -]) +VisibilityPolicy.disallowed_reason.validator = bv.Nullable( + VisibilityPolicyDisallowedReason_validator +) +VisibilityPolicy._all_field_names_ = set( + [ + "policy", + "resolved_policy", + "allowed", + "disallowed_reason", + ] +) VisibilityPolicy._all_fields_ = [ - ('policy', VisibilityPolicy.policy.validator), - ('resolved_policy', VisibilityPolicy.resolved_policy.validator), - ('allowed', VisibilityPolicy.allowed.validator), - ('disallowed_reason', VisibilityPolicy.disallowed_reason.validator), + ("policy", VisibilityPolicy.policy.validator), + ("resolved_policy", VisibilityPolicy.resolved_policy.validator), + ("allowed", VisibilityPolicy.allowed.validator), + ("disallowed_reason", VisibilityPolicy.disallowed_reason.validator), ] AddFileMemberArgs.quiet.default = False @@ -14905,534 +15709,445 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderMetadata.access_inheritance.default = AccessInheritance.inherit UnshareFolderArg.leave_a_copy.default = False add_file_member = bb.Route( - 'add_file_member', + "add_file_member", 1, False, AddFileMemberArgs_validator, bv.List(FileMemberActionResult_validator), AddFileMemberError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) add_folder_member = bb.Route( - 'add_folder_member', + "add_folder_member", 1, False, AddFolderMemberArg_validator, bv.Void(), AddFolderMemberError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) check_job_status = bb.Route( - 'check_job_status', + "check_job_status", 1, False, async_.PollArg_validator, JobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) check_remove_member_job_status = bb.Route( - 'check_remove_member_job_status', + "check_remove_member_job_status", 1, False, async_.PollArg_validator, RemoveMemberJobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) check_share_job_status = bb.Route( - 'check_share_job_status', + "check_share_job_status", 1, False, async_.PollArg_validator, ShareFolderJobStatus_validator, async_.PollError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) create_shared_link = bb.Route( - 'create_shared_link', + "create_shared_link", 1, True, CreateSharedLinkArg_validator, PathLinkMetadata_validator, CreateSharedLinkError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) create_shared_link_with_settings = bb.Route( - 'create_shared_link_with_settings', + "create_shared_link_with_settings", 1, False, CreateSharedLinkWithSettingsArg_validator, SharedLinkMetadata_validator, CreateSharedLinkWithSettingsError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_file_metadata = bb.Route( - 'get_file_metadata', + "get_file_metadata", 1, False, GetFileMetadataArg_validator, SharedFileMetadata_validator, GetFileMetadataError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_file_metadata_batch = bb.Route( - 'get_file_metadata/batch', + "get_file_metadata/batch", 1, False, GetFileMetadataBatchArg_validator, bv.List(GetFileMetadataBatchResult_validator), SharingUserError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_folder_metadata = bb.Route( - 'get_folder_metadata', + "get_folder_metadata", 1, False, GetMetadataArgs_validator, SharedFolderMetadata_validator, SharedFolderAccessError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_shared_link_file = bb.Route( - 'get_shared_link_file', + "get_shared_link_file", 1, False, GetSharedLinkFileArg_validator, SharedLinkMetadata_validator, GetSharedLinkFileError_validator, - {'auth': 'app, user', - 'host': 'content', - 'style': 'download'}, + {"auth": "app, user", "host": "content", "style": "download"}, ) get_shared_link_metadata = bb.Route( - 'get_shared_link_metadata', + "get_shared_link_metadata", 1, False, GetSharedLinkMetadataArg_validator, SharedLinkMetadata_validator, SharedLinkMetadataError_validator, - {'auth': 'app, user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "app, user", "host": "api", "style": "rpc"}, ) get_shared_links = bb.Route( - 'get_shared_links', + "get_shared_links", 1, True, GetSharedLinksArg_validator, GetSharedLinksResult_validator, GetSharedLinksError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_file_members = bb.Route( - 'list_file_members', + "list_file_members", 1, False, ListFileMembersArg_validator, SharedFileMembers_validator, ListFileMembersError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_file_members_batch = bb.Route( - 'list_file_members/batch', + "list_file_members/batch", 1, False, ListFileMembersBatchArg_validator, bv.List(ListFileMembersBatchResult_validator), SharingUserError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_file_members_continue = bb.Route( - 'list_file_members/continue', + "list_file_members/continue", 1, False, ListFileMembersContinueArg_validator, SharedFileMembers_validator, ListFileMembersContinueError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_folder_members = bb.Route( - 'list_folder_members', + "list_folder_members", 1, False, ListFolderMembersArgs_validator, SharedFolderMembers_validator, SharedFolderAccessError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_folder_members_continue = bb.Route( - 'list_folder_members/continue', + "list_folder_members/continue", 1, False, ListFolderMembersContinueArg_validator, SharedFolderMembers_validator, ListFolderMembersContinueError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_folders = bb.Route( - 'list_folders', + "list_folders", 1, False, ListFoldersArgs_validator, ListFoldersResult_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_folders_continue = bb.Route( - 'list_folders/continue', + "list_folders/continue", 1, False, ListFoldersContinueArg_validator, ListFoldersResult_validator, ListFoldersContinueError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_mountable_folders = bb.Route( - 'list_mountable_folders', + "list_mountable_folders", 1, False, ListFoldersArgs_validator, ListFoldersResult_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_mountable_folders_continue = bb.Route( - 'list_mountable_folders/continue', + "list_mountable_folders/continue", 1, False, ListFoldersContinueArg_validator, ListFoldersResult_validator, ListFoldersContinueError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_received_files = bb.Route( - 'list_received_files', + "list_received_files", 1, False, ListFilesArg_validator, ListFilesResult_validator, SharingUserError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_received_files_continue = bb.Route( - 'list_received_files/continue', + "list_received_files/continue", 1, False, ListFilesContinueArg_validator, ListFilesResult_validator, ListFilesContinueError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) list_shared_links = bb.Route( - 'list_shared_links', + "list_shared_links", 1, False, ListSharedLinksArg_validator, ListSharedLinksResult_validator, ListSharedLinksError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) modify_shared_link_settings = bb.Route( - 'modify_shared_link_settings', + "modify_shared_link_settings", 1, False, ModifySharedLinkSettingsArgs_validator, SharedLinkMetadata_validator, ModifySharedLinkSettingsError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) mount_folder = bb.Route( - 'mount_folder', + "mount_folder", 1, False, MountFolderArg_validator, SharedFolderMetadata_validator, MountFolderError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) relinquish_access = bb.Route( - 'relinquish_access', + "relinquish_access", 1, False, RelinquishAccessArg_validator, RelinquishAccessResult_validator, RelinquishAccessError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) relinquish_file_membership = bb.Route( - 'relinquish_file_membership', + "relinquish_file_membership", 1, False, RelinquishFileMembershipArg_validator, bv.Void(), RelinquishFileMembershipError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) relinquish_folder_membership = bb.Route( - 'relinquish_folder_membership', + "relinquish_folder_membership", 1, False, RelinquishFolderMembershipArg_validator, async_.LaunchEmptyResult_validator, RelinquishFolderMembershipError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) remove_file_member = bb.Route( - 'remove_file_member', + "remove_file_member", 1, True, RemoveFileMemberArg_validator, FileMemberActionIndividualResult_validator, RemoveFileMemberError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) remove_file_member_2 = bb.Route( - 'remove_file_member_2', + "remove_file_member_2", 1, False, RemoveFileMemberArg_validator, FileMemberRemoveActionResult_validator, RemoveFileMemberError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) remove_folder_member = bb.Route( - 'remove_folder_member', + "remove_folder_member", 1, False, RemoveFolderMemberArg_validator, async_.LaunchResultBase_validator, RemoveFolderMemberError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) revoke_shared_link = bb.Route( - 'revoke_shared_link', + "revoke_shared_link", 1, False, RevokeSharedLinkArg_validator, bv.Void(), RevokeSharedLinkError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) set_access_inheritance = bb.Route( - 'set_access_inheritance', + "set_access_inheritance", 1, False, SetAccessInheritanceArg_validator, ShareFolderLaunch_validator, SetAccessInheritanceError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) share_folder = bb.Route( - 'share_folder', + "share_folder", 1, False, ShareFolderArg_validator, ShareFolderLaunch_validator, ShareFolderError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) transfer_folder = bb.Route( - 'transfer_folder', + "transfer_folder", 1, False, TransferFolderArg_validator, bv.Void(), TransferFolderError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) unmount_folder = bb.Route( - 'unmount_folder', + "unmount_folder", 1, False, UnmountFolderArg_validator, bv.Void(), UnmountFolderError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) unshare_file = bb.Route( - 'unshare_file', + "unshare_file", 1, False, UnshareFileArg_validator, bv.Void(), UnshareFileError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) unshare_folder = bb.Route( - 'unshare_folder', + "unshare_folder", 1, False, UnshareFolderArg_validator, async_.LaunchEmptyResult_validator, UnshareFolderError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) update_file_member = bb.Route( - 'update_file_member', + "update_file_member", 1, False, UpdateFileMemberArgs_validator, MemberAccessLevelResult_validator, FileMemberActionError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) update_file_policy = bb.Route( - 'update_file_policy', + "update_file_policy", 1, False, UpdateFilePolicyArg_validator, SharedFileMetadata_validator, UpdateFilePolicyError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) update_folder_member = bb.Route( - 'update_folder_member', + "update_folder_member", 1, False, UpdateFolderMemberArg_validator, MemberAccessLevelResult_validator, UpdateFolderMemberError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) update_folder_policy = bb.Route( - 'update_folder_policy', + "update_folder_policy", 1, False, UpdateFolderPolicyArg_validator, SharedFolderMetadata_validator, UpdateFolderPolicyError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'add_file_member': add_file_member, - 'add_folder_member': add_folder_member, - 'check_job_status': check_job_status, - 'check_remove_member_job_status': check_remove_member_job_status, - 'check_share_job_status': check_share_job_status, - 'create_shared_link': create_shared_link, - 'create_shared_link_with_settings': create_shared_link_with_settings, - 'get_file_metadata': get_file_metadata, - 'get_file_metadata/batch': get_file_metadata_batch, - 'get_folder_metadata': get_folder_metadata, - 'get_shared_link_file': get_shared_link_file, - 'get_shared_link_metadata': get_shared_link_metadata, - 'get_shared_links': get_shared_links, - 'list_file_members': list_file_members, - 'list_file_members/batch': list_file_members_batch, - 'list_file_members/continue': list_file_members_continue, - 'list_folder_members': list_folder_members, - 'list_folder_members/continue': list_folder_members_continue, - 'list_folders': list_folders, - 'list_folders/continue': list_folders_continue, - 'list_mountable_folders': list_mountable_folders, - 'list_mountable_folders/continue': list_mountable_folders_continue, - 'list_received_files': list_received_files, - 'list_received_files/continue': list_received_files_continue, - 'list_shared_links': list_shared_links, - 'modify_shared_link_settings': modify_shared_link_settings, - 'mount_folder': mount_folder, - 'relinquish_access': relinquish_access, - 'relinquish_file_membership': relinquish_file_membership, - 'relinquish_folder_membership': relinquish_folder_membership, - 'remove_file_member': remove_file_member, - 'remove_file_member_2': remove_file_member_2, - 'remove_folder_member': remove_folder_member, - 'revoke_shared_link': revoke_shared_link, - 'set_access_inheritance': set_access_inheritance, - 'share_folder': share_folder, - 'transfer_folder': transfer_folder, - 'unmount_folder': unmount_folder, - 'unshare_file': unshare_file, - 'unshare_folder': unshare_folder, - 'update_file_member': update_file_member, - 'update_file_policy': update_file_policy, - 'update_folder_member': update_folder_member, - 'update_folder_policy': update_folder_policy, + "add_file_member": add_file_member, + "add_folder_member": add_folder_member, + "check_job_status": check_job_status, + "check_remove_member_job_status": check_remove_member_job_status, + "check_share_job_status": check_share_job_status, + "create_shared_link": create_shared_link, + "create_shared_link_with_settings": create_shared_link_with_settings, + "get_file_metadata": get_file_metadata, + "get_file_metadata/batch": get_file_metadata_batch, + "get_folder_metadata": get_folder_metadata, + "get_shared_link_file": get_shared_link_file, + "get_shared_link_metadata": get_shared_link_metadata, + "get_shared_links": get_shared_links, + "list_file_members": list_file_members, + "list_file_members/batch": list_file_members_batch, + "list_file_members/continue": list_file_members_continue, + "list_folder_members": list_folder_members, + "list_folder_members/continue": list_folder_members_continue, + "list_folders": list_folders, + "list_folders/continue": list_folders_continue, + "list_mountable_folders": list_mountable_folders, + "list_mountable_folders/continue": list_mountable_folders_continue, + "list_received_files": list_received_files, + "list_received_files/continue": list_received_files_continue, + "list_shared_links": list_shared_links, + "modify_shared_link_settings": modify_shared_link_settings, + "mount_folder": mount_folder, + "relinquish_access": relinquish_access, + "relinquish_file_membership": relinquish_file_membership, + "relinquish_folder_membership": relinquish_folder_membership, + "remove_file_member": remove_file_member, + "remove_file_member_2": remove_file_member_2, + "remove_folder_member": remove_folder_member, + "revoke_shared_link": revoke_shared_link, + "set_access_inheritance": set_access_inheritance, + "share_folder": share_folder, + "transfer_folder": transfer_folder, + "unmount_folder": unmount_folder, + "unshare_file": unshare_file, + "unshare_folder": unshare_folder, + "update_file_member": update_file_member, + "update_file_policy": update_file_policy, + "update_folder_member": update_folder_member, + "update_folder_policy": update_folder_policy, } - diff --git a/dropbox/stone_base.py b/dropbox/stone_base.py index b912eebd..4177f487 100644 --- a/dropbox/stone_base.py +++ b/dropbox/stone_base.py @@ -1 +1 @@ -from stone.backends.python_rsrc.stone_base import * +from stone.backends.python_rsrc.stone_base import * # noqa: F403 diff --git a/dropbox/stone_serializers.py b/dropbox/stone_serializers.py index 669b985d..2ed497c0 100644 --- a/dropbox/stone_serializers.py +++ b/dropbox/stone_serializers.py @@ -1 +1 @@ -from stone.backends.python_rsrc.stone_serializers import * +from stone.backends.python_rsrc.stone_serializers import * # noqa: F403 diff --git a/dropbox/stone_validators.py b/dropbox/stone_validators.py index 2f41d57d..01f76e79 100644 --- a/dropbox/stone_validators.py +++ b/dropbox/stone_validators.py @@ -1 +1 @@ -from stone.backends.python_rsrc.stone_validators import * +from stone.backends.python_rsrc.stone_validators import * # noqa: F403 diff --git a/dropbox/team.py b/dropbox/team.py index 317d5ba8..6c82b976 100644 --- a/dropbox/team.py +++ b/dropbox/team.py @@ -18,6 +18,7 @@ from dropbox import users from dropbox import users_common + class DeviceSession(bb.Struct): """ :ivar DeviceSession.session_id: @@ -33,21 +34,16 @@ class DeviceSession(bb.Struct): """ __slots__ = [ - '_session_id_value', - '_ip_address_value', - '_country_value', - '_created_value', - '_updated_value', + "_session_id_value", + "_ip_address_value", + "_country_value", + "_created_value", + "_updated_value", ] _has_required_fields = True - def __init__(self, - session_id=None, - ip_address=None, - country=None, - created=None, - updated=None): + def __init__(self, session_id=None, ip_address=None, country=None, created=None, updated=None): self._session_id_value = bb.NOT_SET self._ip_address_value = bb.NOT_SET self._country_value = bb.NOT_SET @@ -80,10 +76,14 @@ def __init__(self, updated = bb.Attribute("updated", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSession, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceSession, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceSession_validator = bv.Struct(DeviceSession) + class ActiveWebSession(DeviceSession): """ Information on active web sessions. @@ -99,29 +99,27 @@ class ActiveWebSession(DeviceSession): """ __slots__ = [ - '_user_agent_value', - '_os_value', - '_browser_value', - '_expires_value', + "_user_agent_value", + "_os_value", + "_browser_value", + "_expires_value", ] _has_required_fields = True - def __init__(self, - session_id=None, - user_agent=None, - os=None, - browser=None, - ip_address=None, - country=None, - created=None, - updated=None, - expires=None): - super(ActiveWebSession, self).__init__(session_id, - ip_address, - country, - created, - updated) + def __init__( + self, + session_id=None, + user_agent=None, + os=None, + browser=None, + ip_address=None, + country=None, + created=None, + updated=None, + expires=None, + ): + super(ActiveWebSession, self).__init__(session_id, ip_address, country, created, updated) self._user_agent_value = bb.NOT_SET self._os_value = bb.NOT_SET self._browser_value = bb.NOT_SET @@ -148,10 +146,14 @@ def __init__(self, expires = bb.Attribute("expires", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ActiveWebSession, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ActiveWebSession, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ActiveWebSession_validator = bv.Struct(ActiveWebSession) + class AddSecondaryEmailResult(bb.Union): """ Result of trying to add a secondary email to a user. 'success' is the only @@ -193,7 +195,7 @@ class AddSecondaryEmailResult(bb.Union): :vartype AddSecondaryEmailResult.rate_limited: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -206,7 +208,7 @@ def success(cls, val): :param secondary_emails.SecondaryEmail val: :rtype: AddSecondaryEmailResult """ - return cls('success', val) + return cls("success", val) @classmethod def unavailable(cls, val): @@ -217,7 +219,7 @@ def unavailable(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls('unavailable', val) + return cls("unavailable", val) @classmethod def already_pending(cls, val): @@ -228,7 +230,7 @@ def already_pending(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls('already_pending', val) + return cls("already_pending", val) @classmethod def already_owned_by_user(cls, val): @@ -239,7 +241,7 @@ def already_owned_by_user(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls('already_owned_by_user', val) + return cls("already_owned_by_user", val) @classmethod def reached_limit(cls, val): @@ -250,7 +252,7 @@ def reached_limit(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls('reached_limit', val) + return cls("reached_limit", val) @classmethod def transient_error(cls, val): @@ -261,7 +263,7 @@ def transient_error(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls('transient_error', val) + return cls("transient_error", val) @classmethod def too_many_updates(cls, val): @@ -272,7 +274,7 @@ def too_many_updates(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls('too_many_updates', val) + return cls("too_many_updates", val) @classmethod def unknown_error(cls, val): @@ -283,7 +285,7 @@ def unknown_error(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls('unknown_error', val) + return cls("unknown_error", val) @classmethod def rate_limited(cls, val): @@ -294,7 +296,7 @@ def rate_limited(cls, val): :param str val: :rtype: AddSecondaryEmailResult """ - return cls('rate_limited', val) + return cls("rate_limited", val) def is_success(self): """ @@ -302,7 +304,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_unavailable(self): """ @@ -310,7 +312,7 @@ def is_unavailable(self): :rtype: bool """ - return self._tag == 'unavailable' + return self._tag == "unavailable" def is_already_pending(self): """ @@ -318,7 +320,7 @@ def is_already_pending(self): :rtype: bool """ - return self._tag == 'already_pending' + return self._tag == "already_pending" def is_already_owned_by_user(self): """ @@ -326,7 +328,7 @@ def is_already_owned_by_user(self): :rtype: bool """ - return self._tag == 'already_owned_by_user' + return self._tag == "already_owned_by_user" def is_reached_limit(self): """ @@ -334,7 +336,7 @@ def is_reached_limit(self): :rtype: bool """ - return self._tag == 'reached_limit' + return self._tag == "reached_limit" def is_transient_error(self): """ @@ -342,7 +344,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == 'transient_error' + return self._tag == "transient_error" def is_too_many_updates(self): """ @@ -350,7 +352,7 @@ def is_too_many_updates(self): :rtype: bool """ - return self._tag == 'too_many_updates' + return self._tag == "too_many_updates" def is_unknown_error(self): """ @@ -358,7 +360,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == 'unknown_error' + return self._tag == "unknown_error" def is_rate_limited(self): """ @@ -366,7 +368,7 @@ def is_rate_limited(self): :rtype: bool """ - return self._tag == 'rate_limited' + return self._tag == "rate_limited" def is_other(self): """ @@ -374,7 +376,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -486,10 +488,14 @@ def get_rate_limited(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddSecondaryEmailResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddSecondaryEmailResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddSecondaryEmailResult_validator = bv.Union(AddSecondaryEmailResult) + class AddSecondaryEmailsArg(bb.Struct): """ :ivar AddSecondaryEmailsArg.new_secondary_emails: @@ -497,13 +503,12 @@ class AddSecondaryEmailsArg(bb.Struct): """ __slots__ = [ - '_new_secondary_emails_value', + "_new_secondary_emails_value", ] _has_required_fields = True - def __init__(self, - new_secondary_emails=None): + def __init__(self, new_secondary_emails=None): self._new_secondary_emails_value = bb.NOT_SET if new_secondary_emails is not None: self.new_secondary_emails = new_secondary_emails @@ -512,10 +517,14 @@ def __init__(self, new_secondary_emails = bb.Attribute("new_secondary_emails") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddSecondaryEmailsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddSecondaryEmailsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddSecondaryEmailsArg_validator = bv.Struct(AddSecondaryEmailsArg) + class AddSecondaryEmailsError(bb.Union): """ Error returned when adding secondary emails fails. @@ -530,7 +539,7 @@ class AddSecondaryEmailsError(bb.Union): A maximum of 20 secondary emails can be added in a single call. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition secondary_emails_disabled = None # Attribute is overwritten below the class definition @@ -544,7 +553,7 @@ def is_secondary_emails_disabled(self): :rtype: bool """ - return self._tag == 'secondary_emails_disabled' + return self._tag == "secondary_emails_disabled" def is_too_many_emails(self): """ @@ -552,7 +561,7 @@ def is_too_many_emails(self): :rtype: bool """ - return self._tag == 'too_many_emails' + return self._tag == "too_many_emails" def is_other(self): """ @@ -560,13 +569,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddSecondaryEmailsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddSecondaryEmailsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddSecondaryEmailsError_validator = bv.Union(AddSecondaryEmailsError) + class AddSecondaryEmailsResult(bb.Struct): """ :ivar AddSecondaryEmailsResult.results: @@ -574,13 +587,12 @@ class AddSecondaryEmailsResult(bb.Struct): """ __slots__ = [ - '_results_value', + "_results_value", ] _has_required_fields = True - def __init__(self, - results=None): + def __init__(self, results=None): self._results_value = bb.NOT_SET if results is not None: self.results = results @@ -589,10 +601,14 @@ def __init__(self, results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddSecondaryEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddSecondaryEmailsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddSecondaryEmailsResult_validator = bv.Struct(AddSecondaryEmailsResult) + class AdminTier(bb.Union): """ Describes which team-related admin permissions a user has. @@ -629,7 +645,7 @@ def is_team_admin(self): :rtype: bool """ - return self._tag == 'team_admin' + return self._tag == "team_admin" def is_user_management_admin(self): """ @@ -637,7 +653,7 @@ def is_user_management_admin(self): :rtype: bool """ - return self._tag == 'user_management_admin' + return self._tag == "user_management_admin" def is_support_admin(self): """ @@ -645,7 +661,7 @@ def is_support_admin(self): :rtype: bool """ - return self._tag == 'support_admin' + return self._tag == "support_admin" def is_member_only(self): """ @@ -653,13 +669,15 @@ def is_member_only(self): :rtype: bool """ - return self._tag == 'member_only' + return self._tag == "member_only" def _process_custom_annotations(self, annotation_type, field_path, processor): super(AdminTier, self)._process_custom_annotations(annotation_type, field_path, processor) + AdminTier_validator = bv.Union(AdminTier) + class ApiApp(bb.Struct): """ Information on linked third party applications. @@ -679,23 +697,25 @@ class ApiApp(bb.Struct): """ __slots__ = [ - '_app_id_value', - '_app_name_value', - '_publisher_value', - '_publisher_url_value', - '_linked_value', - '_is_app_folder_value', + "_app_id_value", + "_app_name_value", + "_publisher_value", + "_publisher_url_value", + "_linked_value", + "_is_app_folder_value", ] _has_required_fields = True - def __init__(self, - app_id=None, - app_name=None, - is_app_folder=None, - publisher=None, - publisher_url=None, - linked=None): + def __init__( + self, + app_id=None, + app_name=None, + is_app_folder=None, + publisher=None, + publisher_url=None, + linked=None, + ): self._app_id_value = bb.NOT_SET self._app_name_value = bb.NOT_SET self._publisher_value = bb.NOT_SET @@ -736,8 +756,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(ApiApp, self)._process_custom_annotations(annotation_type, field_path, processor) + ApiApp_validator = bv.Struct(ApiApp) + class BaseDfbReport(bb.Struct): """ Base report structure. @@ -747,13 +769,12 @@ class BaseDfbReport(bb.Struct): """ __slots__ = [ - '_start_date_value', + "_start_date_value", ] _has_required_fields = True - def __init__(self, - start_date=None): + def __init__(self, start_date=None): self._start_date_value = bb.NOT_SET if start_date is not None: self.start_date = start_date @@ -762,10 +783,14 @@ def __init__(self, start_date = bb.Attribute("start_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BaseDfbReport, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BaseDfbReport, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BaseDfbReport_validator = bv.Struct(BaseDfbReport) + class BaseTeamFolderError(bb.Union): """ Base error that all errors for existing team folders should extend. @@ -775,7 +800,7 @@ class BaseTeamFolderError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -788,7 +813,7 @@ def access_error(cls, val): :param TeamFolderAccessError val: :rtype: BaseTeamFolderError """ - return cls('access_error', val) + return cls("access_error", val) @classmethod def status_error(cls, val): @@ -799,7 +824,7 @@ def status_error(cls, val): :param TeamFolderInvalidStatusError val: :rtype: BaseTeamFolderError """ - return cls('status_error', val) + return cls("status_error", val) @classmethod def team_shared_dropbox_error(cls, val): @@ -810,7 +835,7 @@ def team_shared_dropbox_error(cls, val): :param TeamFolderTeamSharedDropboxError val: :rtype: BaseTeamFolderError """ - return cls('team_shared_dropbox_error', val) + return cls("team_shared_dropbox_error", val) def is_access_error(self): """ @@ -818,7 +843,7 @@ def is_access_error(self): :rtype: bool """ - return self._tag == 'access_error' + return self._tag == "access_error" def is_status_error(self): """ @@ -826,7 +851,7 @@ def is_status_error(self): :rtype: bool """ - return self._tag == 'status_error' + return self._tag == "status_error" def is_team_shared_dropbox_error(self): """ @@ -834,7 +859,7 @@ def is_team_shared_dropbox_error(self): :rtype: bool """ - return self._tag == 'team_shared_dropbox_error' + return self._tag == "team_shared_dropbox_error" def is_other(self): """ @@ -842,7 +867,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_access_error(self): """ @@ -875,10 +900,14 @@ def get_team_shared_dropbox_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BaseTeamFolderError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BaseTeamFolderError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BaseTeamFolderError_validator = bv.Union(BaseTeamFolderError) + class CustomQuotaError(bb.Union): """ Error returned when getting member custom quota. @@ -891,7 +920,7 @@ class CustomQuotaError(bb.Union): A maximum of 1000 users can be set for a single call. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition too_many_users = None # Attribute is overwritten below the class definition @@ -903,7 +932,7 @@ def is_too_many_users(self): :rtype: bool """ - return self._tag == 'too_many_users' + return self._tag == "too_many_users" def is_other(self): """ @@ -911,13 +940,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CustomQuotaError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CustomQuotaError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CustomQuotaError_validator = bv.Union(CustomQuotaError) + class CustomQuotaResult(bb.Union): """ User custom quota. @@ -934,7 +967,7 @@ class CustomQuotaResult(bb.Union): :vartype CustomQuotaResult.invalid_user: UserSelectorArg """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -947,7 +980,7 @@ def success(cls, val): :param UserCustomQuotaResult val: :rtype: CustomQuotaResult """ - return cls('success', val) + return cls("success", val) @classmethod def invalid_user(cls, val): @@ -958,7 +991,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: CustomQuotaResult """ - return cls('invalid_user', val) + return cls("invalid_user", val) def is_success(self): """ @@ -966,7 +999,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_invalid_user(self): """ @@ -974,7 +1007,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == 'invalid_user' + return self._tag == "invalid_user" def is_other(self): """ @@ -982,7 +1015,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -1009,10 +1042,14 @@ def get_invalid_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CustomQuotaResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CustomQuotaResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CustomQuotaResult_validator = bv.Union(CustomQuotaResult) + class CustomQuotaUsersArg(bb.Struct): """ :ivar CustomQuotaUsersArg.users: @@ -1020,13 +1057,12 @@ class CustomQuotaUsersArg(bb.Struct): """ __slots__ = [ - '_users_value', + "_users_value", ] _has_required_fields = True - def __init__(self, - users=None): + def __init__(self, users=None): self._users_value = bb.NOT_SET if users is not None: self.users = users @@ -1035,10 +1071,14 @@ def __init__(self, users = bb.Attribute("users") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CustomQuotaUsersArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CustomQuotaUsersArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CustomQuotaUsersArg_validator = bv.Struct(CustomQuotaUsersArg) + class DateRange(bb.Struct): """ Input arguments that can be provided for most reports. @@ -1051,15 +1091,13 @@ class DateRange(bb.Struct): """ __slots__ = [ - '_start_date_value', - '_end_date_value', + "_start_date_value", + "_end_date_value", ] _has_required_fields = False - def __init__(self, - start_date=None, - end_date=None): + def __init__(self, start_date=None, end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -1076,8 +1114,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(DateRange, self)._process_custom_annotations(annotation_type, field_path, processor) + DateRange_validator = bv.Struct(DateRange) + class DateRangeError(bb.Union): """ Errors that can originate from problems in input arguments to reports. @@ -1087,7 +1127,7 @@ class DateRangeError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -1097,13 +1137,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DateRangeError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DateRangeError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DateRangeError_validator = bv.Union(DateRangeError) + class DeleteSecondaryEmailResult(bb.Union): """ Result of trying to delete a secondary email address. 'success' is the only @@ -1127,7 +1171,7 @@ class DeleteSecondaryEmailResult(bb.Union): :vartype DeleteSecondaryEmailResult.cannot_remove_primary: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -1140,7 +1184,7 @@ def success(cls, val): :param str val: :rtype: DeleteSecondaryEmailResult """ - return cls('success', val) + return cls("success", val) @classmethod def not_found(cls, val): @@ -1151,7 +1195,7 @@ def not_found(cls, val): :param str val: :rtype: DeleteSecondaryEmailResult """ - return cls('not_found', val) + return cls("not_found", val) @classmethod def cannot_remove_primary(cls, val): @@ -1162,7 +1206,7 @@ def cannot_remove_primary(cls, val): :param str val: :rtype: DeleteSecondaryEmailResult """ - return cls('cannot_remove_primary', val) + return cls("cannot_remove_primary", val) def is_success(self): """ @@ -1170,7 +1214,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_not_found(self): """ @@ -1178,7 +1222,7 @@ def is_not_found(self): :rtype: bool """ - return self._tag == 'not_found' + return self._tag == "not_found" def is_cannot_remove_primary(self): """ @@ -1186,7 +1230,7 @@ def is_cannot_remove_primary(self): :rtype: bool """ - return self._tag == 'cannot_remove_primary' + return self._tag == "cannot_remove_primary" def is_other(self): """ @@ -1194,7 +1238,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -1234,10 +1278,14 @@ def get_cannot_remove_primary(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteSecondaryEmailResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteSecondaryEmailResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteSecondaryEmailResult_validator = bv.Union(DeleteSecondaryEmailResult) + class DeleteSecondaryEmailsArg(bb.Struct): """ :ivar DeleteSecondaryEmailsArg.emails_to_delete: @@ -1245,13 +1293,12 @@ class DeleteSecondaryEmailsArg(bb.Struct): """ __slots__ = [ - '_emails_to_delete_value', + "_emails_to_delete_value", ] _has_required_fields = True - def __init__(self, - emails_to_delete=None): + def __init__(self, emails_to_delete=None): self._emails_to_delete_value = bb.NOT_SET if emails_to_delete is not None: self.emails_to_delete = emails_to_delete @@ -1260,20 +1307,22 @@ def __init__(self, emails_to_delete = bb.Attribute("emails_to_delete") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteSecondaryEmailsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteSecondaryEmailsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteSecondaryEmailsArg_validator = bv.Struct(DeleteSecondaryEmailsArg) -class DeleteSecondaryEmailsResult(bb.Struct): +class DeleteSecondaryEmailsResult(bb.Struct): __slots__ = [ - '_results_value', + "_results_value", ] _has_required_fields = True - def __init__(self, - results=None): + def __init__(self, results=None): self._results_value = bb.NOT_SET if results is not None: self.results = results @@ -1282,10 +1331,14 @@ def __init__(self, results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteSecondaryEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteSecondaryEmailsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteSecondaryEmailsResult_validator = bv.Struct(DeleteSecondaryEmailsResult) + class DesktopClientSession(DeviceSession): """ Information about linked Dropbox desktop client sessions. @@ -1303,31 +1356,31 @@ class DesktopClientSession(DeviceSession): """ __slots__ = [ - '_host_name_value', - '_client_type_value', - '_client_version_value', - '_platform_value', - '_is_delete_on_unlink_supported_value', + "_host_name_value", + "_client_type_value", + "_client_version_value", + "_platform_value", + "_is_delete_on_unlink_supported_value", ] _has_required_fields = True - def __init__(self, - session_id=None, - host_name=None, - client_type=None, - client_version=None, - platform=None, - is_delete_on_unlink_supported=None, - ip_address=None, - country=None, - created=None, - updated=None): - super(DesktopClientSession, self).__init__(session_id, - ip_address, - country, - created, - updated) + def __init__( + self, + session_id=None, + host_name=None, + client_type=None, + client_version=None, + platform=None, + is_delete_on_unlink_supported=None, + ip_address=None, + country=None, + created=None, + updated=None, + ): + super(DesktopClientSession, self).__init__( + session_id, ip_address, country, created, updated + ) self._host_name_value = bb.NOT_SET self._client_type_value = bb.NOT_SET self._client_version_value = bb.NOT_SET @@ -1360,10 +1413,14 @@ def __init__(self, is_delete_on_unlink_supported = bb.Attribute("is_delete_on_unlink_supported") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DesktopClientSession, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DesktopClientSession, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DesktopClientSession_validator = bv.Struct(DesktopClientSession) + class DesktopPlatform(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1378,7 +1435,7 @@ class DesktopPlatform(bb.Union): Official Linux Dropbox desktop client. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition windows = None # Attribute is overwritten below the class definition @@ -1394,7 +1451,7 @@ def is_windows(self): :rtype: bool """ - return self._tag == 'windows' + return self._tag == "windows" def is_mac(self): """ @@ -1402,7 +1459,7 @@ def is_mac(self): :rtype: bool """ - return self._tag == 'mac' + return self._tag == "mac" def is_linux(self): """ @@ -1410,7 +1467,7 @@ def is_linux(self): :rtype: bool """ - return self._tag == 'linux' + return self._tag == "linux" def is_other(self): """ @@ -1418,13 +1475,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DesktopPlatform, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DesktopPlatform, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DesktopPlatform_validator = bv.Union(DesktopPlatform) + class DeviceSessionArg(bb.Struct): """ :ivar DeviceSessionArg.session_id: @@ -1434,15 +1495,13 @@ class DeviceSessionArg(bb.Struct): """ __slots__ = [ - '_session_id_value', - '_team_member_id_value', + "_session_id_value", + "_team_member_id_value", ] _has_required_fields = True - def __init__(self, - session_id=None, - team_member_id=None): + def __init__(self, session_id=None, team_member_id=None): self._session_id_value = bb.NOT_SET self._team_member_id_value = bb.NOT_SET if session_id is not None: @@ -1457,10 +1516,14 @@ def __init__(self, team_member_id = bb.Attribute("team_member_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSessionArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceSessionArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceSessionArg_validator = bv.Struct(DeviceSessionArg) + class DevicesActive(bb.Struct): """ Each of the items is an array of values, one value per day. The value is the @@ -1485,25 +1548,27 @@ class DevicesActive(bb.Struct): """ __slots__ = [ - '_windows_value', - '_macos_value', - '_linux_value', - '_ios_value', - '_android_value', - '_other_value', - '_total_value', + "_windows_value", + "_macos_value", + "_linux_value", + "_ios_value", + "_android_value", + "_other_value", + "_total_value", ] _has_required_fields = True - def __init__(self, - windows=None, - macos=None, - linux=None, - ios=None, - android=None, - other=None, - total=None): + def __init__( + self, + windows=None, + macos=None, + linux=None, + ios=None, + android=None, + other=None, + total=None, + ): self._windows_value = bb.NOT_SET self._macos_value = bb.NOT_SET self._linux_value = bb.NOT_SET @@ -1548,10 +1613,14 @@ def __init__(self, total = bb.Attribute("total") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DevicesActive, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DevicesActive, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DevicesActive_validator = bv.Struct(DevicesActive) + class ExcludedUsersListArg(bb.Struct): """ Excluded users list argument. @@ -1561,13 +1630,12 @@ class ExcludedUsersListArg(bb.Struct): """ __slots__ = [ - '_limit_value', + "_limit_value", ] _has_required_fields = False - def __init__(self, - limit=None): + def __init__(self, limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -1576,10 +1644,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExcludedUsersListArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExcludedUsersListArg_validator = bv.Struct(ExcludedUsersListArg) + class ExcludedUsersListContinueArg(bb.Struct): """ Excluded users list continue argument. @@ -1589,13 +1661,12 @@ class ExcludedUsersListContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -1604,10 +1675,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExcludedUsersListContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExcludedUsersListContinueArg_validator = bv.Struct(ExcludedUsersListContinueArg) + class ExcludedUsersListContinueError(bb.Union): """ Excluded users list continue error. @@ -1620,7 +1695,7 @@ class ExcludedUsersListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -1632,7 +1707,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -1640,13 +1715,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExcludedUsersListContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExcludedUsersListContinueError_validator = bv.Union(ExcludedUsersListContinueError) + class ExcludedUsersListError(bb.Union): """ Excluded users list error. @@ -1659,7 +1738,7 @@ class ExcludedUsersListError(bb.Union): An error occurred. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition list_error = None # Attribute is overwritten below the class definition @@ -1671,7 +1750,7 @@ def is_list_error(self): :rtype: bool """ - return self._tag == 'list_error' + return self._tag == "list_error" def is_other(self): """ @@ -1679,13 +1758,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExcludedUsersListError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExcludedUsersListError_validator = bv.Union(ExcludedUsersListError) + class ExcludedUsersListResult(bb.Struct): """ Excluded users list result. @@ -1702,17 +1785,14 @@ class ExcludedUsersListResult(bb.Struct): """ __slots__ = [ - '_users_value', - '_cursor_value', - '_has_more_value', + "_users_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - users=None, - has_more=None, - cursor=None): + def __init__(self, users=None, has_more=None, cursor=None): self._users_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -1733,10 +1813,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersListResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExcludedUsersListResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExcludedUsersListResult_validator = bv.Struct(ExcludedUsersListResult) + class ExcludedUsersUpdateArg(bb.Struct): """ Argument of excluded users update operation. Should include a list of users @@ -1748,13 +1832,12 @@ class ExcludedUsersUpdateArg(bb.Struct): """ __slots__ = [ - '_users_value', + "_users_value", ] _has_required_fields = False - def __init__(self, - users=None): + def __init__(self, users=None): self._users_value = bb.NOT_SET if users is not None: self.users = users @@ -1763,10 +1846,14 @@ def __init__(self, users = bb.Attribute("users", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersUpdateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExcludedUsersUpdateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExcludedUsersUpdateArg_validator = bv.Struct(ExcludedUsersUpdateArg) + class ExcludedUsersUpdateError(bb.Union): """ Excluded users update error. @@ -1781,7 +1868,7 @@ class ExcludedUsersUpdateError(bb.Union): A maximum of 1000 users for each of addition/removal can be supplied. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition users_not_in_team = None # Attribute is overwritten below the class definition @@ -1795,7 +1882,7 @@ def is_users_not_in_team(self): :rtype: bool """ - return self._tag == 'users_not_in_team' + return self._tag == "users_not_in_team" def is_too_many_users(self): """ @@ -1803,7 +1890,7 @@ def is_too_many_users(self): :rtype: bool """ - return self._tag == 'too_many_users' + return self._tag == "too_many_users" def is_other(self): """ @@ -1811,13 +1898,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExcludedUsersUpdateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExcludedUsersUpdateError_validator = bv.Union(ExcludedUsersUpdateError) + class ExcludedUsersUpdateResult(bb.Struct): """ Excluded users update result. @@ -1827,13 +1918,12 @@ class ExcludedUsersUpdateResult(bb.Struct): """ __slots__ = [ - '_status_value', + "_status_value", ] _has_required_fields = True - def __init__(self, - status=None): + def __init__(self, status=None): self._status_value = bb.NOT_SET if status is not None: self.status = status @@ -1842,10 +1932,14 @@ def __init__(self, status = bb.Attribute("status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersUpdateResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExcludedUsersUpdateResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExcludedUsersUpdateResult_validator = bv.Struct(ExcludedUsersUpdateResult) + class ExcludedUsersUpdateStatus(bb.Union): """ Excluded users update operation status. @@ -1858,7 +1952,7 @@ class ExcludedUsersUpdateStatus(bb.Union): Update successful. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition success = None # Attribute is overwritten below the class definition @@ -1870,7 +1964,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_other(self): """ @@ -1878,13 +1972,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExcludedUsersUpdateStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExcludedUsersUpdateStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExcludedUsersUpdateStatus_validator = bv.Union(ExcludedUsersUpdateStatus) + class Feature(bb.Union): """ A set of features that a Dropbox Business account may support. @@ -1905,7 +2003,7 @@ class Feature(bb.Union): Does this team have team member folder. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition upload_api_rate_limit = None # Attribute is overwritten below the class definition @@ -1925,7 +2023,7 @@ def is_upload_api_rate_limit(self): :rtype: bool """ - return self._tag == 'upload_api_rate_limit' + return self._tag == "upload_api_rate_limit" def is_has_team_shared_dropbox(self): """ @@ -1933,7 +2031,7 @@ def is_has_team_shared_dropbox(self): :rtype: bool """ - return self._tag == 'has_team_shared_dropbox' + return self._tag == "has_team_shared_dropbox" def is_has_team_file_events(self): """ @@ -1941,7 +2039,7 @@ def is_has_team_file_events(self): :rtype: bool """ - return self._tag == 'has_team_file_events' + return self._tag == "has_team_file_events" def is_has_team_selective_sync(self): """ @@ -1949,7 +2047,7 @@ def is_has_team_selective_sync(self): :rtype: bool """ - return self._tag == 'has_team_selective_sync' + return self._tag == "has_team_selective_sync" def is_has_distinct_member_homes(self): """ @@ -1957,7 +2055,7 @@ def is_has_distinct_member_homes(self): :rtype: bool """ - return self._tag == 'has_distinct_member_homes' + return self._tag == "has_distinct_member_homes" def is_other(self): """ @@ -1965,13 +2063,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(Feature, self)._process_custom_annotations(annotation_type, field_path, processor) + Feature_validator = bv.Union(Feature) + class FeatureValue(bb.Union): """ The values correspond to entries in :class:`Feature`. You may get different @@ -1982,7 +2082,7 @@ class FeatureValue(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -1995,7 +2095,7 @@ def upload_api_rate_limit(cls, val): :param UploadApiRateLimitValue val: :rtype: FeatureValue """ - return cls('upload_api_rate_limit', val) + return cls("upload_api_rate_limit", val) @classmethod def has_team_shared_dropbox(cls, val): @@ -2006,7 +2106,7 @@ def has_team_shared_dropbox(cls, val): :param HasTeamSharedDropboxValue val: :rtype: FeatureValue """ - return cls('has_team_shared_dropbox', val) + return cls("has_team_shared_dropbox", val) @classmethod def has_team_file_events(cls, val): @@ -2017,7 +2117,7 @@ def has_team_file_events(cls, val): :param HasTeamFileEventsValue val: :rtype: FeatureValue """ - return cls('has_team_file_events', val) + return cls("has_team_file_events", val) @classmethod def has_team_selective_sync(cls, val): @@ -2028,7 +2128,7 @@ def has_team_selective_sync(cls, val): :param HasTeamSelectiveSyncValue val: :rtype: FeatureValue """ - return cls('has_team_selective_sync', val) + return cls("has_team_selective_sync", val) @classmethod def has_distinct_member_homes(cls, val): @@ -2039,7 +2139,7 @@ def has_distinct_member_homes(cls, val): :param HasDistinctMemberHomesValue val: :rtype: FeatureValue """ - return cls('has_distinct_member_homes', val) + return cls("has_distinct_member_homes", val) def is_upload_api_rate_limit(self): """ @@ -2047,7 +2147,7 @@ def is_upload_api_rate_limit(self): :rtype: bool """ - return self._tag == 'upload_api_rate_limit' + return self._tag == "upload_api_rate_limit" def is_has_team_shared_dropbox(self): """ @@ -2055,7 +2155,7 @@ def is_has_team_shared_dropbox(self): :rtype: bool """ - return self._tag == 'has_team_shared_dropbox' + return self._tag == "has_team_shared_dropbox" def is_has_team_file_events(self): """ @@ -2063,7 +2163,7 @@ def is_has_team_file_events(self): :rtype: bool """ - return self._tag == 'has_team_file_events' + return self._tag == "has_team_file_events" def is_has_team_selective_sync(self): """ @@ -2071,7 +2171,7 @@ def is_has_team_selective_sync(self): :rtype: bool """ - return self._tag == 'has_team_selective_sync' + return self._tag == "has_team_selective_sync" def is_has_distinct_member_homes(self): """ @@ -2079,7 +2179,7 @@ def is_has_distinct_member_homes(self): :rtype: bool """ - return self._tag == 'has_distinct_member_homes' + return self._tag == "has_distinct_member_homes" def is_other(self): """ @@ -2087,7 +2187,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_upload_api_rate_limit(self): """ @@ -2140,10 +2240,14 @@ def get_has_distinct_member_homes(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FeatureValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FeatureValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FeatureValue_validator = bv.Union(FeatureValue) + class FeaturesGetValuesBatchArg(bb.Struct): """ :ivar FeaturesGetValuesBatchArg.features: @@ -2152,13 +2256,12 @@ class FeaturesGetValuesBatchArg(bb.Struct): """ __slots__ = [ - '_features_value', + "_features_value", ] _has_required_fields = True - def __init__(self, - features=None): + def __init__(self, features=None): self._features_value = bb.NOT_SET if features is not None: self.features = features @@ -2167,10 +2270,14 @@ def __init__(self, features = bb.Attribute("features") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FeaturesGetValuesBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FeaturesGetValuesBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FeaturesGetValuesBatchArg_validator = bv.Struct(FeaturesGetValuesBatchArg) + class FeaturesGetValuesBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2182,7 +2289,7 @@ class FeaturesGetValuesBatchError(bb.Union): :class:`FeaturesGetValuesBatchArg`.features list. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition empty_features_list = None # Attribute is overwritten below the class definition @@ -2194,7 +2301,7 @@ def is_empty_features_list(self): :rtype: bool """ - return self._tag == 'empty_features_list' + return self._tag == "empty_features_list" def is_other(self): """ @@ -2202,23 +2309,25 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FeaturesGetValuesBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FeaturesGetValuesBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FeaturesGetValuesBatchError_validator = bv.Union(FeaturesGetValuesBatchError) -class FeaturesGetValuesBatchResult(bb.Struct): +class FeaturesGetValuesBatchResult(bb.Struct): __slots__ = [ - '_values_value', + "_values_value", ] _has_required_fields = True - def __init__(self, - values=None): + def __init__(self, values=None): self._values_value = bb.NOT_SET if values is not None: self.values = values @@ -2227,10 +2336,14 @@ def __init__(self, values = bb.Attribute("values") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FeaturesGetValuesBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FeaturesGetValuesBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FeaturesGetValuesBatchResult_validator = bv.Struct(FeaturesGetValuesBatchResult) + class GetActivityReport(BaseDfbReport): """ Activity Report Result. Each of the items in the storage report is an array @@ -2275,40 +2388,42 @@ class GetActivityReport(BaseDfbReport): """ __slots__ = [ - '_adds_value', - '_edits_value', - '_deletes_value', - '_active_users_28_day_value', - '_active_users_7_day_value', - '_active_users_1_day_value', - '_active_shared_folders_28_day_value', - '_active_shared_folders_7_day_value', - '_active_shared_folders_1_day_value', - '_shared_links_created_value', - '_shared_links_viewed_by_team_value', - '_shared_links_viewed_by_outside_user_value', - '_shared_links_viewed_by_not_logged_in_value', - '_shared_links_viewed_total_value', + "_adds_value", + "_edits_value", + "_deletes_value", + "_active_users_28_day_value", + "_active_users_7_day_value", + "_active_users_1_day_value", + "_active_shared_folders_28_day_value", + "_active_shared_folders_7_day_value", + "_active_shared_folders_1_day_value", + "_shared_links_created_value", + "_shared_links_viewed_by_team_value", + "_shared_links_viewed_by_outside_user_value", + "_shared_links_viewed_by_not_logged_in_value", + "_shared_links_viewed_total_value", ] _has_required_fields = True - def __init__(self, - start_date=None, - adds=None, - edits=None, - deletes=None, - active_users_28_day=None, - active_users_7_day=None, - active_users_1_day=None, - active_shared_folders_28_day=None, - active_shared_folders_7_day=None, - active_shared_folders_1_day=None, - shared_links_created=None, - shared_links_viewed_by_team=None, - shared_links_viewed_by_outside_user=None, - shared_links_viewed_by_not_logged_in=None, - shared_links_viewed_total=None): + def __init__( + self, + start_date=None, + adds=None, + edits=None, + deletes=None, + active_users_28_day=None, + active_users_7_day=None, + active_users_1_day=None, + active_shared_folders_28_day=None, + active_shared_folders_7_day=None, + active_shared_folders_1_day=None, + shared_links_created=None, + shared_links_viewed_by_team=None, + shared_links_viewed_by_outside_user=None, + shared_links_viewed_by_not_logged_in=None, + shared_links_viewed_total=None, + ): super(GetActivityReport, self).__init__(start_date) self._adds_value = bb.NOT_SET self._edits_value = bb.NOT_SET @@ -2396,10 +2511,14 @@ def __init__(self, shared_links_viewed_total = bb.Attribute("shared_links_viewed_total") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetActivityReport, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetActivityReport, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetActivityReport_validator = bv.Struct(GetActivityReport) + class GetDevicesReport(BaseDfbReport): """ Devices Report Result. Contains subsections for different time ranges of @@ -2416,18 +2535,14 @@ class GetDevicesReport(BaseDfbReport): """ __slots__ = [ - '_active_1_day_value', - '_active_7_day_value', - '_active_28_day_value', + "_active_1_day_value", + "_active_7_day_value", + "_active_28_day_value", ] _has_required_fields = True - def __init__(self, - start_date=None, - active_1_day=None, - active_7_day=None, - active_28_day=None): + def __init__(self, start_date=None, active_1_day=None, active_7_day=None, active_28_day=None): super(GetDevicesReport, self).__init__(start_date) self._active_1_day_value = bb.NOT_SET self._active_7_day_value = bb.NOT_SET @@ -2449,10 +2564,14 @@ def __init__(self, active_28_day = bb.Attribute("active_28_day", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetDevicesReport, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetDevicesReport, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetDevicesReport_validator = bv.Struct(GetDevicesReport) + class GetMembershipReport(BaseDfbReport): """ Membership Report Result. Each of the items in the storage report is an @@ -2472,22 +2591,24 @@ class GetMembershipReport(BaseDfbReport): """ __slots__ = [ - '_team_size_value', - '_pending_invites_value', - '_members_joined_value', - '_suspended_members_value', - '_licenses_value', + "_team_size_value", + "_pending_invites_value", + "_members_joined_value", + "_suspended_members_value", + "_licenses_value", ] _has_required_fields = True - def __init__(self, - start_date=None, - team_size=None, - pending_invites=None, - members_joined=None, - suspended_members=None, - licenses=None): + def __init__( + self, + start_date=None, + team_size=None, + pending_invites=None, + members_joined=None, + suspended_members=None, + licenses=None, + ): super(GetMembershipReport, self).__init__(start_date) self._team_size_value = bb.NOT_SET self._pending_invites_value = bb.NOT_SET @@ -2521,10 +2642,14 @@ def __init__(self, licenses = bb.Attribute("licenses") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetMembershipReport, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetMembershipReport, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetMembershipReport_validator = bv.Struct(GetMembershipReport) + class GetStorageReport(BaseDfbReport): """ Storage Report Result. Each of the items in the storage report is an array @@ -2552,22 +2677,24 @@ class GetStorageReport(BaseDfbReport): """ __slots__ = [ - '_total_usage_value', - '_shared_usage_value', - '_unshared_usage_value', - '_shared_folders_value', - '_member_storage_map_value', + "_total_usage_value", + "_shared_usage_value", + "_unshared_usage_value", + "_shared_folders_value", + "_member_storage_map_value", ] _has_required_fields = True - def __init__(self, - start_date=None, - total_usage=None, - shared_usage=None, - unshared_usage=None, - shared_folders=None, - member_storage_map=None): + def __init__( + self, + start_date=None, + total_usage=None, + shared_usage=None, + unshared_usage=None, + shared_folders=None, + member_storage_map=None, + ): super(GetStorageReport, self).__init__(start_date) self._total_usage_value = bb.NOT_SET self._shared_usage_value = bb.NOT_SET @@ -2601,10 +2728,14 @@ def __init__(self, member_storage_map = bb.Attribute("member_storage_map") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetStorageReport, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetStorageReport, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetStorageReport_validator = bv.Struct(GetStorageReport) + class GroupAccessType(bb.Union): """ Role of a user in group. @@ -2631,7 +2762,7 @@ def is_member(self): :rtype: bool """ - return self._tag == 'member' + return self._tag == "member" def is_owner(self): """ @@ -2639,13 +2770,17 @@ def is_owner(self): :rtype: bool """ - return self._tag == 'owner' + return self._tag == "owner" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupAccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupAccessType_validator = bv.Union(GroupAccessType) + class GroupCreateArg(bb.Struct): """ :ivar GroupCreateArg.group_name: @@ -2661,19 +2796,21 @@ class GroupCreateArg(bb.Struct): """ __slots__ = [ - '_group_name_value', - '_add_creator_as_owner_value', - '_group_external_id_value', - '_group_management_type_value', + "_group_name_value", + "_add_creator_as_owner_value", + "_group_external_id_value", + "_group_management_type_value", ] _has_required_fields = True - def __init__(self, - group_name=None, - add_creator_as_owner=None, - group_external_id=None, - group_management_type=None): + def __init__( + self, + group_name=None, + add_creator_as_owner=None, + group_external_id=None, + group_management_type=None, + ): self._group_name_value = bb.NOT_SET self._add_creator_as_owner_value = bb.NOT_SET self._group_external_id_value = bb.NOT_SET @@ -2700,10 +2837,14 @@ def __init__(self, group_management_type = bb.Attribute("group_management_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupCreateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupCreateArg_validator = bv.Struct(GroupCreateArg) + class GroupCreateError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2720,7 +2861,7 @@ class GroupCreateError(bb.Union): System-managed group cannot be manually created. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition group_name_already_used = None # Attribute is overwritten below the class definition @@ -2738,7 +2879,7 @@ def is_group_name_already_used(self): :rtype: bool """ - return self._tag == 'group_name_already_used' + return self._tag == "group_name_already_used" def is_group_name_invalid(self): """ @@ -2746,7 +2887,7 @@ def is_group_name_invalid(self): :rtype: bool """ - return self._tag == 'group_name_invalid' + return self._tag == "group_name_invalid" def is_external_id_already_in_use(self): """ @@ -2754,7 +2895,7 @@ def is_external_id_already_in_use(self): :rtype: bool """ - return self._tag == 'external_id_already_in_use' + return self._tag == "external_id_already_in_use" def is_system_managed_group_disallowed(self): """ @@ -2762,7 +2903,7 @@ def is_system_managed_group_disallowed(self): :rtype: bool """ - return self._tag == 'system_managed_group_disallowed' + return self._tag == "system_managed_group_disallowed" def is_other(self): """ @@ -2770,13 +2911,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupCreateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupCreateError_validator = bv.Union(GroupCreateError) + class GroupSelectorError(bb.Union): """ Error that can be raised when :class:`GroupSelector` is used. @@ -2789,7 +2934,7 @@ class GroupSelectorError(bb.Union): No matching group found. No groups match the specified group ID. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition group_not_found = None # Attribute is overwritten below the class definition @@ -2801,7 +2946,7 @@ def is_group_not_found(self): :rtype: bool """ - return self._tag == 'group_not_found' + return self._tag == "group_not_found" def is_other(self): """ @@ -2809,13 +2954,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupSelectorError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupSelectorError_validator = bv.Union(GroupSelectorError) + class GroupSelectorWithTeamGroupError(GroupSelectorError): """ Error that can be raised when :class:`GroupSelector` is used and team groups @@ -2838,13 +2987,17 @@ def is_system_managed_group_disallowed(self): :rtype: bool """ - return self._tag == 'system_managed_group_disallowed' + return self._tag == "system_managed_group_disallowed" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupSelectorWithTeamGroupError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupSelectorWithTeamGroupError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupSelectorWithTeamGroupError_validator = bv.Union(GroupSelectorWithTeamGroupError) + class GroupDeleteError(GroupSelectorWithTeamGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2864,13 +3017,17 @@ def is_group_already_deleted(self): :rtype: bool """ - return self._tag == 'group_already_deleted' + return self._tag == "group_already_deleted" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDeleteError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupDeleteError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupDeleteError_validator = bv.Union(GroupDeleteError) + class GroupFullInfo(team_common.GroupSummary): """ Full description of a group. @@ -2883,25 +3040,25 @@ class GroupFullInfo(team_common.GroupSummary): """ __slots__ = [ - '_members_value', - '_created_value', + "_members_value", + "_created_value", ] _has_required_fields = True - def __init__(self, - group_name=None, - group_id=None, - group_management_type=None, - created=None, - group_external_id=None, - member_count=None, - members=None): - super(GroupFullInfo, self).__init__(group_name, - group_id, - group_management_type, - group_external_id, - member_count) + def __init__( + self, + group_name=None, + group_id=None, + group_management_type=None, + created=None, + group_external_id=None, + member_count=None, + members=None, + ): + super(GroupFullInfo, self).__init__( + group_name, group_id, group_management_type, group_external_id, member_count + ) self._members_value = bb.NOT_SET self._created_value = bb.NOT_SET if members is not None: @@ -2916,10 +3073,14 @@ def __init__(self, created = bb.Attribute("created") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupFullInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupFullInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupFullInfo_validator = bv.Struct(GroupFullInfo) + class GroupMemberInfo(bb.Struct): """ Profile of group member, and role in group. @@ -2931,15 +3092,13 @@ class GroupMemberInfo(bb.Struct): """ __slots__ = [ - '_profile_value', - '_access_type_value', + "_profile_value", + "_access_type_value", ] _has_required_fields = True - def __init__(self, - profile=None, - access_type=None): + def __init__(self, profile=None, access_type=None): self._profile_value = bb.NOT_SET self._access_type_value = bb.NOT_SET if profile is not None: @@ -2954,10 +3113,14 @@ def __init__(self, access_type = bb.Attribute("access_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMemberInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMemberInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMemberInfo_validator = bv.Struct(GroupMemberInfo) + class GroupMemberSelector(bb.Struct): """ Argument for selecting a group and a single user. @@ -2969,15 +3132,13 @@ class GroupMemberSelector(bb.Struct): """ __slots__ = [ - '_group_value', - '_user_value', + "_group_value", + "_user_value", ] _has_required_fields = True - def __init__(self, - group=None, - user=None): + def __init__(self, group=None, user=None): self._group_value = bb.NOT_SET self._user_value = bb.NOT_SET if group is not None: @@ -2992,10 +3153,14 @@ def __init__(self, user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMemberSelector, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMemberSelector, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMemberSelector_validator = bv.Struct(GroupMemberSelector) + class GroupMemberSelectorError(GroupSelectorWithTeamGroupError): """ Error that can be raised when :class:`GroupMemberSelector` is used, and the @@ -3018,13 +3183,17 @@ def is_member_not_in_group(self): :rtype: bool """ - return self._tag == 'member_not_in_group' + return self._tag == "member_not_in_group" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMemberSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMemberSelectorError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMemberSelectorError_validator = bv.Union(GroupMemberSelectorError) + class GroupMemberSetAccessTypeError(GroupMemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3044,13 +3213,17 @@ def is_user_cannot_be_manager_of_company_managed_group(self): :rtype: bool """ - return self._tag == 'user_cannot_be_manager_of_company_managed_group' + return self._tag == "user_cannot_be_manager_of_company_managed_group" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMemberSetAccessTypeError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMemberSetAccessTypeError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMemberSetAccessTypeError_validator = bv.Union(GroupMemberSetAccessTypeError) + class IncludeMembersArg(bb.Struct): """ :ivar IncludeMembersArg.return_members: @@ -3060,13 +3233,12 @@ class IncludeMembersArg(bb.Struct): """ __slots__ = [ - '_return_members_value', + "_return_members_value", ] _has_required_fields = False - def __init__(self, - return_members=None): + def __init__(self, return_members=None): self._return_members_value = bb.NOT_SET if return_members is not None: self.return_members = return_members @@ -3075,10 +3247,14 @@ def __init__(self, return_members = bb.Attribute("return_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IncludeMembersArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IncludeMembersArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IncludeMembersArg_validator = bv.Struct(IncludeMembersArg) + class GroupMembersAddArg(IncludeMembersArg): """ :ivar GroupMembersAddArg.group: @@ -3088,16 +3264,13 @@ class GroupMembersAddArg(IncludeMembersArg): """ __slots__ = [ - '_group_value', - '_members_value', + "_group_value", + "_members_value", ] _has_required_fields = True - def __init__(self, - group=None, - members=None, - return_members=None): + def __init__(self, group=None, members=None, return_members=None): super(GroupMembersAddArg, self).__init__(return_members) self._group_value = bb.NOT_SET self._members_value = bb.NOT_SET @@ -3113,10 +3286,14 @@ def __init__(self, members = bb.Attribute("members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersAddArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMembersAddArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMembersAddArg_validator = bv.Struct(GroupMembersAddArg) + class GroupMembersAddError(GroupSelectorWithTeamGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3163,7 +3340,7 @@ def members_not_in_team(cls, val): :param list of [str] val: :rtype: GroupMembersAddError """ - return cls('members_not_in_team', val) + return cls("members_not_in_team", val) @classmethod def users_not_found(cls, val): @@ -3174,7 +3351,7 @@ def users_not_found(cls, val): :param list of [str] val: :rtype: GroupMembersAddError """ - return cls('users_not_found', val) + return cls("users_not_found", val) @classmethod def user_cannot_be_manager_of_company_managed_group(cls, val): @@ -3186,7 +3363,7 @@ def user_cannot_be_manager_of_company_managed_group(cls, val): :param list of [str] val: :rtype: GroupMembersAddError """ - return cls('user_cannot_be_manager_of_company_managed_group', val) + return cls("user_cannot_be_manager_of_company_managed_group", val) def is_duplicate_user(self): """ @@ -3194,7 +3371,7 @@ def is_duplicate_user(self): :rtype: bool """ - return self._tag == 'duplicate_user' + return self._tag == "duplicate_user" def is_group_not_in_team(self): """ @@ -3202,7 +3379,7 @@ def is_group_not_in_team(self): :rtype: bool """ - return self._tag == 'group_not_in_team' + return self._tag == "group_not_in_team" def is_members_not_in_team(self): """ @@ -3210,7 +3387,7 @@ def is_members_not_in_team(self): :rtype: bool """ - return self._tag == 'members_not_in_team' + return self._tag == "members_not_in_team" def is_users_not_found(self): """ @@ -3218,7 +3395,7 @@ def is_users_not_found(self): :rtype: bool """ - return self._tag == 'users_not_found' + return self._tag == "users_not_found" def is_user_must_be_active_to_be_owner(self): """ @@ -3226,7 +3403,7 @@ def is_user_must_be_active_to_be_owner(self): :rtype: bool """ - return self._tag == 'user_must_be_active_to_be_owner' + return self._tag == "user_must_be_active_to_be_owner" def is_user_cannot_be_manager_of_company_managed_group(self): """ @@ -3234,7 +3411,7 @@ def is_user_cannot_be_manager_of_company_managed_group(self): :rtype: bool """ - return self._tag == 'user_cannot_be_manager_of_company_managed_group' + return self._tag == "user_cannot_be_manager_of_company_managed_group" def get_members_not_in_team(self): """ @@ -3277,10 +3454,14 @@ def get_user_cannot_be_manager_of_company_managed_group(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersAddError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMembersAddError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMembersAddError_validator = bv.Union(GroupMembersAddError) + class GroupMembersChangeResult(bb.Struct): """ Result returned by @@ -3297,15 +3478,13 @@ class GroupMembersChangeResult(bb.Struct): """ __slots__ = [ - '_group_info_value', - '_async_job_id_value', + "_group_info_value", + "_async_job_id_value", ] _has_required_fields = True - def __init__(self, - group_info=None, - async_job_id=None): + def __init__(self, group_info=None, async_job_id=None): self._group_info_value = bb.NOT_SET self._async_job_id_value = bb.NOT_SET if group_info is not None: @@ -3320,10 +3499,14 @@ def __init__(self, async_job_id = bb.Attribute("async_job_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersChangeResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMembersChangeResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMembersChangeResult_validator = bv.Struct(GroupMembersChangeResult) + class GroupMembersRemoveArg(IncludeMembersArg): """ :ivar GroupMembersRemoveArg.group: @@ -3333,16 +3516,13 @@ class GroupMembersRemoveArg(IncludeMembersArg): """ __slots__ = [ - '_group_value', - '_users_value', + "_group_value", + "_users_value", ] _has_required_fields = True - def __init__(self, - group=None, - users=None, - return_members=None): + def __init__(self, group=None, users=None, return_members=None): super(GroupMembersRemoveArg, self).__init__(return_members) self._group_value = bb.NOT_SET self._users_value = bb.NOT_SET @@ -3358,10 +3538,14 @@ def __init__(self, users = bb.Attribute("users") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersRemoveArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMembersRemoveArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMembersRemoveArg_validator = bv.Struct(GroupMembersRemoveArg) + class GroupMembersSelectorError(GroupSelectorWithTeamGroupError): """ Error that can be raised when :class:`GroupMembersSelector` is used, and the @@ -3384,13 +3568,17 @@ def is_member_not_in_group(self): :rtype: bool """ - return self._tag == 'member_not_in_group' + return self._tag == "member_not_in_group" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMembersSelectorError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMembersSelectorError_validator = bv.Union(GroupMembersSelectorError) + class GroupMembersRemoveError(GroupMembersSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3420,7 +3608,7 @@ def members_not_in_team(cls, val): :param list of [str] val: :rtype: GroupMembersRemoveError """ - return cls('members_not_in_team', val) + return cls("members_not_in_team", val) @classmethod def users_not_found(cls, val): @@ -3431,7 +3619,7 @@ def users_not_found(cls, val): :param list of [str] val: :rtype: GroupMembersRemoveError """ - return cls('users_not_found', val) + return cls("users_not_found", val) def is_group_not_in_team(self): """ @@ -3439,7 +3627,7 @@ def is_group_not_in_team(self): :rtype: bool """ - return self._tag == 'group_not_in_team' + return self._tag == "group_not_in_team" def is_members_not_in_team(self): """ @@ -3447,7 +3635,7 @@ def is_members_not_in_team(self): :rtype: bool """ - return self._tag == 'members_not_in_team' + return self._tag == "members_not_in_team" def is_users_not_found(self): """ @@ -3455,7 +3643,7 @@ def is_users_not_found(self): :rtype: bool """ - return self._tag == 'users_not_found' + return self._tag == "users_not_found" def get_members_not_in_team(self): """ @@ -3482,10 +3670,14 @@ def get_users_not_found(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersRemoveError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMembersRemoveError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMembersRemoveError_validator = bv.Union(GroupMembersRemoveError) + class GroupMembersSelector(bb.Struct): """ Argument for selecting a group and a list of users. @@ -3497,15 +3689,13 @@ class GroupMembersSelector(bb.Struct): """ __slots__ = [ - '_group_value', - '_users_value', + "_group_value", + "_users_value", ] _has_required_fields = True - def __init__(self, - group=None, - users=None): + def __init__(self, group=None, users=None): self._group_value = bb.NOT_SET self._users_value = bb.NOT_SET if group is not None: @@ -3520,10 +3710,14 @@ def __init__(self, users = bb.Attribute("users", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersSelector, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMembersSelector, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMembersSelector_validator = bv.Struct(GroupMembersSelector) + class GroupMembersSetAccessTypeArg(GroupMemberSelector): """ :ivar GroupMembersSetAccessTypeArg.access_type: @@ -3535,19 +3729,14 @@ class GroupMembersSetAccessTypeArg(GroupMemberSelector): """ __slots__ = [ - '_access_type_value', - '_return_members_value', + "_access_type_value", + "_return_members_value", ] _has_required_fields = True - def __init__(self, - group=None, - user=None, - access_type=None, - return_members=None): - super(GroupMembersSetAccessTypeArg, self).__init__(group, - user) + def __init__(self, group=None, user=None, access_type=None, return_members=None): + super(GroupMembersSetAccessTypeArg, self).__init__(group, user) self._access_type_value = bb.NOT_SET self._return_members_value = bb.NOT_SET if access_type is not None: @@ -3562,10 +3751,14 @@ def __init__(self, return_members = bb.Attribute("return_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMembersSetAccessTypeArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMembersSetAccessTypeArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMembersSetAccessTypeArg_validator = bv.Struct(GroupMembersSetAccessTypeArg) + class GroupSelector(bb.Union): """ Argument for selecting a single group, either by group_id or by external @@ -3594,7 +3787,7 @@ def group_id(cls, val): :param str val: :rtype: GroupSelector """ - return cls('group_id', val) + return cls("group_id", val) @classmethod def group_external_id(cls, val): @@ -3605,7 +3798,7 @@ def group_external_id(cls, val): :param str val: :rtype: GroupSelector """ - return cls('group_external_id', val) + return cls("group_external_id", val) def is_group_id(self): """ @@ -3613,7 +3806,7 @@ def is_group_id(self): :rtype: bool """ - return self._tag == 'group_id' + return self._tag == "group_id" def is_group_external_id(self): """ @@ -3621,7 +3814,7 @@ def is_group_external_id(self): :rtype: bool """ - return self._tag == 'group_external_id' + return self._tag == "group_external_id" def get_group_id(self): """ @@ -3648,10 +3841,14 @@ def get_group_external_id(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupSelector, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupSelector, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupSelector_validator = bv.Union(GroupSelector) + class GroupUpdateArgs(IncludeMembersArg): """ :ivar GroupUpdateArgs.group: @@ -3667,20 +3864,22 @@ class GroupUpdateArgs(IncludeMembersArg): """ __slots__ = [ - '_group_value', - '_new_group_name_value', - '_new_group_external_id_value', - '_new_group_management_type_value', + "_group_value", + "_new_group_name_value", + "_new_group_external_id_value", + "_new_group_management_type_value", ] _has_required_fields = True - def __init__(self, - group=None, - return_members=None, - new_group_name=None, - new_group_external_id=None, - new_group_management_type=None): + def __init__( + self, + group=None, + return_members=None, + new_group_name=None, + new_group_external_id=None, + new_group_management_type=None, + ): super(GroupUpdateArgs, self).__init__(return_members) self._group_value = bb.NOT_SET self._new_group_name_value = bb.NOT_SET @@ -3705,13 +3904,19 @@ def __init__(self, new_group_external_id = bb.Attribute("new_group_external_id", nullable=True) # Instance attribute type: team_common.GroupManagementType (validator is set below) - new_group_management_type = bb.Attribute("new_group_management_type", nullable=True, user_defined=True) + new_group_management_type = bb.Attribute( + "new_group_management_type", nullable=True, user_defined=True + ) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupUpdateArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupUpdateArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupUpdateArgs_validator = bv.Struct(GroupUpdateArgs) + class GroupUpdateError(GroupSelectorWithTeamGroupError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3739,7 +3944,7 @@ def is_group_name_already_used(self): :rtype: bool """ - return self._tag == 'group_name_already_used' + return self._tag == "group_name_already_used" def is_group_name_invalid(self): """ @@ -3747,7 +3952,7 @@ def is_group_name_invalid(self): :rtype: bool """ - return self._tag == 'group_name_invalid' + return self._tag == "group_name_invalid" def is_external_id_already_in_use(self): """ @@ -3755,13 +3960,17 @@ def is_external_id_already_in_use(self): :rtype: bool """ - return self._tag == 'external_id_already_in_use' + return self._tag == "external_id_already_in_use" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupUpdateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupUpdateError_validator = bv.Union(GroupUpdateError) + class GroupsGetInfoError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3772,7 +3981,7 @@ class GroupsGetInfoError(bb.Union): The group is not on your team. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition group_not_on_team = None # Attribute is overwritten below the class definition @@ -3784,7 +3993,7 @@ def is_group_not_on_team(self): :rtype: bool """ - return self._tag == 'group_not_on_team' + return self._tag == "group_not_on_team" def is_other(self): """ @@ -3792,13 +4001,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsGetInfoError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsGetInfoError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsGetInfoError_validator = bv.Union(GroupsGetInfoError) + class GroupsGetInfoItem(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3827,7 +4040,7 @@ def id_not_found(cls, val): :param str val: :rtype: GroupsGetInfoItem """ - return cls('id_not_found', val) + return cls("id_not_found", val) @classmethod def group_info(cls, val): @@ -3838,7 +4051,7 @@ def group_info(cls, val): :param GroupFullInfo val: :rtype: GroupsGetInfoItem """ - return cls('group_info', val) + return cls("group_info", val) def is_id_not_found(self): """ @@ -3846,7 +4059,7 @@ def is_id_not_found(self): :rtype: bool """ - return self._tag == 'id_not_found' + return self._tag == "id_not_found" def is_group_info(self): """ @@ -3854,7 +4067,7 @@ def is_group_info(self): :rtype: bool """ - return self._tag == 'group_info' + return self._tag == "group_info" def get_id_not_found(self): """ @@ -3884,10 +4097,14 @@ def get_group_info(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsGetInfoItem, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsGetInfoItem, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsGetInfoItem_validator = bv.Union(GroupsGetInfoItem) + class GroupsListArg(bb.Struct): """ :ivar GroupsListArg.limit: @@ -3895,13 +4112,12 @@ class GroupsListArg(bb.Struct): """ __slots__ = [ - '_limit_value', + "_limit_value", ] _has_required_fields = False - def __init__(self, - limit=None): + def __init__(self, limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -3910,10 +4126,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsListArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsListArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsListArg_validator = bv.Struct(GroupsListArg) + class GroupsListContinueArg(bb.Struct): """ :ivar GroupsListContinueArg.cursor: @@ -3921,13 +4141,12 @@ class GroupsListContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -3936,10 +4155,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsListContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsListContinueArg_validator = bv.Struct(GroupsListContinueArg) + class GroupsListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -3950,7 +4173,7 @@ class GroupsListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -3962,7 +4185,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -3970,13 +4193,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsListContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsListContinueError_validator = bv.Union(GroupsListContinueError) + class GroupsListResult(bb.Struct): """ :ivar GroupsListResult.cursor: @@ -3991,17 +4218,14 @@ class GroupsListResult(bb.Struct): """ __slots__ = [ - '_groups_value', - '_cursor_value', - '_has_more_value', + "_groups_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - groups=None, - cursor=None, - has_more=None): + def __init__(self, groups=None, cursor=None, has_more=None): self._groups_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -4022,10 +4246,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsListResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsListResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsListResult_validator = bv.Struct(GroupsListResult) + class GroupsMembersListArg(bb.Struct): """ :ivar GroupsMembersListArg.group: @@ -4035,15 +4263,13 @@ class GroupsMembersListArg(bb.Struct): """ __slots__ = [ - '_group_value', - '_limit_value', + "_group_value", + "_limit_value", ] _has_required_fields = True - def __init__(self, - group=None, - limit=None): + def __init__(self, group=None, limit=None): self._group_value = bb.NOT_SET self._limit_value = bb.NOT_SET if group is not None: @@ -4058,10 +4284,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsMembersListArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsMembersListArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsMembersListArg_validator = bv.Struct(GroupsMembersListArg) + class GroupsMembersListContinueArg(bb.Struct): """ :ivar GroupsMembersListContinueArg.cursor: @@ -4069,13 +4299,12 @@ class GroupsMembersListContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -4084,10 +4313,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsMembersListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsMembersListContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsMembersListContinueArg_validator = bv.Struct(GroupsMembersListContinueArg) + class GroupsMembersListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4098,7 +4331,7 @@ class GroupsMembersListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -4110,7 +4343,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -4118,13 +4351,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsMembersListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsMembersListContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsMembersListContinueError_validator = bv.Union(GroupsMembersListContinueError) + class GroupsMembersListResult(bb.Struct): """ :ivar GroupsMembersListResult.cursor: @@ -4139,17 +4376,14 @@ class GroupsMembersListResult(bb.Struct): """ __slots__ = [ - '_members_value', - '_cursor_value', - '_has_more_value', + "_members_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - members=None, - cursor=None, - has_more=None): + def __init__(self, members=None, cursor=None, has_more=None): self._members_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -4170,10 +4404,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsMembersListResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsMembersListResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsMembersListResult_validator = bv.Struct(GroupsMembersListResult) + class GroupsPollError(async_.PollError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4193,13 +4431,17 @@ def is_access_denied(self): :rtype: bool """ - return self._tag == 'access_denied' + return self._tag == "access_denied" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsPollError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsPollError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsPollError_validator = bv.Union(GroupsPollError) + class GroupsSelector(bb.Union): """ Argument for selecting a list of groups, either by group_ids, or external @@ -4228,7 +4470,7 @@ def group_ids(cls, val): :param list of [str] val: :rtype: GroupsSelector """ - return cls('group_ids', val) + return cls("group_ids", val) @classmethod def group_external_ids(cls, val): @@ -4239,7 +4481,7 @@ def group_external_ids(cls, val): :param list of [str] val: :rtype: GroupsSelector """ - return cls('group_external_ids', val) + return cls("group_external_ids", val) def is_group_ids(self): """ @@ -4247,7 +4489,7 @@ def is_group_ids(self): :rtype: bool """ - return self._tag == 'group_ids' + return self._tag == "group_ids" def is_group_external_ids(self): """ @@ -4255,7 +4497,7 @@ def is_group_external_ids(self): :rtype: bool """ - return self._tag == 'group_external_ids' + return self._tag == "group_external_ids" def get_group_ids(self): """ @@ -4282,10 +4524,14 @@ def get_group_external_ids(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupsSelector, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupsSelector, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupsSelector_validator = bv.Union(GroupsSelector) + class HasDistinctMemberHomesValue(bb.Union): """ The value for ``Feature.has_distinct_member_homes``. @@ -4299,7 +4545,7 @@ class HasDistinctMemberHomesValue(bb.Union): :vartype HasDistinctMemberHomesValue.has_distinct_member_homes: bool """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -4312,7 +4558,7 @@ def has_distinct_member_homes(cls, val): :param bool val: :rtype: HasDistinctMemberHomesValue """ - return cls('has_distinct_member_homes', val) + return cls("has_distinct_member_homes", val) def is_has_distinct_member_homes(self): """ @@ -4320,7 +4566,7 @@ def is_has_distinct_member_homes(self): :rtype: bool """ - return self._tag == 'has_distinct_member_homes' + return self._tag == "has_distinct_member_homes" def is_other(self): """ @@ -4328,7 +4574,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_has_distinct_member_homes(self): """ @@ -4343,10 +4589,14 @@ def get_has_distinct_member_homes(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HasDistinctMemberHomesValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(HasDistinctMemberHomesValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + HasDistinctMemberHomesValue_validator = bv.Union(HasDistinctMemberHomesValue) + class HasTeamFileEventsValue(bb.Union): """ The value for ``Feature.has_team_file_events``. @@ -4360,7 +4610,7 @@ class HasTeamFileEventsValue(bb.Union): :vartype HasTeamFileEventsValue.enabled: bool """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -4373,7 +4623,7 @@ def enabled(cls, val): :param bool val: :rtype: HasTeamFileEventsValue """ - return cls('enabled', val) + return cls("enabled", val) def is_enabled(self): """ @@ -4381,7 +4631,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -4389,7 +4639,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_enabled(self): """ @@ -4404,10 +4654,14 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HasTeamFileEventsValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(HasTeamFileEventsValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + HasTeamFileEventsValue_validator = bv.Union(HasTeamFileEventsValue) + class HasTeamSelectiveSyncValue(bb.Union): """ The value for ``Feature.has_team_selective_sync``. @@ -4421,7 +4675,7 @@ class HasTeamSelectiveSyncValue(bb.Union): :vartype HasTeamSelectiveSyncValue.has_team_selective_sync: bool """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -4434,7 +4688,7 @@ def has_team_selective_sync(cls, val): :param bool val: :rtype: HasTeamSelectiveSyncValue """ - return cls('has_team_selective_sync', val) + return cls("has_team_selective_sync", val) def is_has_team_selective_sync(self): """ @@ -4442,7 +4696,7 @@ def is_has_team_selective_sync(self): :rtype: bool """ - return self._tag == 'has_team_selective_sync' + return self._tag == "has_team_selective_sync" def is_other(self): """ @@ -4450,7 +4704,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_has_team_selective_sync(self): """ @@ -4465,10 +4719,14 @@ def get_has_team_selective_sync(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HasTeamSelectiveSyncValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(HasTeamSelectiveSyncValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + HasTeamSelectiveSyncValue_validator = bv.Union(HasTeamSelectiveSyncValue) + class HasTeamSharedDropboxValue(bb.Union): """ The value for ``Feature.has_team_shared_dropbox``. @@ -4482,7 +4740,7 @@ class HasTeamSharedDropboxValue(bb.Union): :vartype HasTeamSharedDropboxValue.has_team_shared_dropbox: bool """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -4495,7 +4753,7 @@ def has_team_shared_dropbox(cls, val): :param bool val: :rtype: HasTeamSharedDropboxValue """ - return cls('has_team_shared_dropbox', val) + return cls("has_team_shared_dropbox", val) def is_has_team_shared_dropbox(self): """ @@ -4503,7 +4761,7 @@ def is_has_team_shared_dropbox(self): :rtype: bool """ - return self._tag == 'has_team_shared_dropbox' + return self._tag == "has_team_shared_dropbox" def is_other(self): """ @@ -4511,7 +4769,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_has_team_shared_dropbox(self): """ @@ -4526,10 +4784,14 @@ def get_has_team_shared_dropbox(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(HasTeamSharedDropboxValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(HasTeamSharedDropboxValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + HasTeamSharedDropboxValue_validator = bv.Union(HasTeamSharedDropboxValue) + class LegalHoldHeldRevisionMetadata(bb.Struct): """ :ivar LegalHoldHeldRevisionMetadata.new_filename: @@ -4557,31 +4819,33 @@ class LegalHoldHeldRevisionMetadata(bb.Struct): """ __slots__ = [ - '_new_filename_value', - '_original_revision_id_value', - '_original_file_path_value', - '_server_modified_value', - '_author_member_id_value', - '_author_member_status_value', - '_author_email_value', - '_file_type_value', - '_size_value', - '_content_hash_value', + "_new_filename_value", + "_original_revision_id_value", + "_original_file_path_value", + "_server_modified_value", + "_author_member_id_value", + "_author_member_status_value", + "_author_email_value", + "_file_type_value", + "_size_value", + "_content_hash_value", ] _has_required_fields = True - def __init__(self, - new_filename=None, - original_revision_id=None, - original_file_path=None, - server_modified=None, - author_member_id=None, - author_member_status=None, - author_email=None, - file_type=None, - size=None, - content_hash=None): + def __init__( + self, + new_filename=None, + original_revision_id=None, + original_file_path=None, + server_modified=None, + author_member_id=None, + author_member_status=None, + author_email=None, + file_type=None, + size=None, + content_hash=None, + ): self._new_filename_value = bb.NOT_SET self._original_revision_id_value = bb.NOT_SET self._original_file_path_value = bb.NOT_SET @@ -4644,10 +4908,14 @@ def __init__(self, content_hash = bb.Attribute("content_hash") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldHeldRevisionMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldHeldRevisionMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldHeldRevisionMetadata_validator = bv.Struct(LegalHoldHeldRevisionMetadata) + class LegalHoldPolicy(bb.Struct): """ :ivar LegalHoldPolicy.id: @@ -4669,27 +4937,29 @@ class LegalHoldPolicy(bb.Struct): """ __slots__ = [ - '_id_value', - '_name_value', - '_description_value', - '_activation_time_value', - '_members_value', - '_status_value', - '_start_date_value', - '_end_date_value', + "_id_value", + "_name_value", + "_description_value", + "_activation_time_value", + "_members_value", + "_status_value", + "_start_date_value", + "_end_date_value", ] _has_required_fields = True - def __init__(self, - id=None, - name=None, - members=None, - status=None, - start_date=None, - description=None, - activation_time=None, - end_date=None): + def __init__( + self, + id=None, + name=None, + members=None, + status=None, + start_date=None, + description=None, + activation_time=None, + end_date=None, + ): self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET @@ -4740,10 +5010,14 @@ def __init__(self, end_date = bb.Attribute("end_date", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldPolicy_validator = bv.Struct(LegalHoldPolicy) + class LegalHoldStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4764,7 +5038,7 @@ class LegalHoldStatus(bb.Union): The legal hold policy is releasing. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -4786,7 +5060,7 @@ def is_active(self): :rtype: bool """ - return self._tag == 'active' + return self._tag == "active" def is_released(self): """ @@ -4794,7 +5068,7 @@ def is_released(self): :rtype: bool """ - return self._tag == 'released' + return self._tag == "released" def is_activating(self): """ @@ -4802,7 +5076,7 @@ def is_activating(self): :rtype: bool """ - return self._tag == 'activating' + return self._tag == "activating" def is_updating(self): """ @@ -4810,7 +5084,7 @@ def is_updating(self): :rtype: bool """ - return self._tag == 'updating' + return self._tag == "updating" def is_exporting(self): """ @@ -4818,7 +5092,7 @@ def is_exporting(self): :rtype: bool """ - return self._tag == 'exporting' + return self._tag == "exporting" def is_releasing(self): """ @@ -4826,7 +5100,7 @@ def is_releasing(self): :rtype: bool """ - return self._tag == 'releasing' + return self._tag == "releasing" def is_other(self): """ @@ -4834,13 +5108,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldStatus_validator = bv.Union(LegalHoldStatus) + class LegalHoldsError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4853,7 +5131,7 @@ class LegalHoldsError(bb.Union): You don't have permissions to perform this action. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unknown_legal_hold_error = None # Attribute is overwritten below the class definition @@ -4867,7 +5145,7 @@ def is_unknown_legal_hold_error(self): :rtype: bool """ - return self._tag == 'unknown_legal_hold_error' + return self._tag == "unknown_legal_hold_error" def is_insufficient_permissions(self): """ @@ -4875,7 +5153,7 @@ def is_insufficient_permissions(self): :rtype: bool """ - return self._tag == 'insufficient_permissions' + return self._tag == "insufficient_permissions" def is_other(self): """ @@ -4883,13 +5161,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsError_validator = bv.Union(LegalHoldsError) + class LegalHoldsGetPolicyArg(bb.Struct): """ :ivar LegalHoldsGetPolicyArg.id: @@ -4897,13 +5179,12 @@ class LegalHoldsGetPolicyArg(bb.Struct): """ __slots__ = [ - '_id_value', + "_id_value", ] _has_required_fields = True - def __init__(self, - id=None): + def __init__(self, id=None): self._id_value = bb.NOT_SET if id is not None: self.id = id @@ -4912,10 +5193,14 @@ def __init__(self, id = bb.Attribute("id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsGetPolicyArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsGetPolicyArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsGetPolicyArg_validator = bv.Struct(LegalHoldsGetPolicyArg) + class LegalHoldsGetPolicyError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -4935,13 +5220,17 @@ def is_legal_hold_policy_not_found(self): :rtype: bool """ - return self._tag == 'legal_hold_policy_not_found' + return self._tag == "legal_hold_policy_not_found" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsGetPolicyError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsGetPolicyError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsGetPolicyError_validator = bv.Union(LegalHoldsGetPolicyError) + class LegalHoldsListHeldRevisionResult(bb.Struct): """ :ivar LegalHoldsListHeldRevisionResult.entries: @@ -4957,17 +5246,14 @@ class LegalHoldsListHeldRevisionResult(bb.Struct): """ __slots__ = [ - '_entries_value', - '_cursor_value', - '_has_more_value', + "_entries_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - entries=None, - has_more=None, - cursor=None): + def __init__(self, entries=None, has_more=None, cursor=None): self._entries_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -4988,10 +5274,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsListHeldRevisionResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsListHeldRevisionResult_validator = bv.Struct(LegalHoldsListHeldRevisionResult) + class LegalHoldsListHeldRevisionsArg(bb.Struct): """ :ivar LegalHoldsListHeldRevisionsArg.id: @@ -4999,13 +5289,12 @@ class LegalHoldsListHeldRevisionsArg(bb.Struct): """ __slots__ = [ - '_id_value', + "_id_value", ] _has_required_fields = True - def __init__(self, - id=None): + def __init__(self, id=None): self._id_value = bb.NOT_SET if id is not None: self.id = id @@ -5014,10 +5303,14 @@ def __init__(self, id = bb.Attribute("id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsListHeldRevisionsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsListHeldRevisionsArg_validator = bv.Struct(LegalHoldsListHeldRevisionsArg) + class LegalHoldsListHeldRevisionsContinueArg(bb.Struct): """ :ivar LegalHoldsListHeldRevisionsContinueArg.id: @@ -5029,15 +5322,13 @@ class LegalHoldsListHeldRevisionsContinueArg(bb.Struct): """ __slots__ = [ - '_id_value', - '_cursor_value', + "_id_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - id=None, - cursor=None): + def __init__(self, id=None, cursor=None): self._id_value = bb.NOT_SET self._cursor_value = bb.NOT_SET if id is not None: @@ -5052,10 +5343,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionsContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsListHeldRevisionsContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsListHeldRevisionsContinueArg_validator = bv.Struct(LegalHoldsListHeldRevisionsContinueArg) + class LegalHoldsListHeldRevisionsContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5072,7 +5367,7 @@ class LegalHoldsListHeldRevisionsContinueError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unknown_legal_hold_error = None # Attribute is overwritten below the class definition @@ -5088,7 +5383,7 @@ def is_unknown_legal_hold_error(self): :rtype: bool """ - return self._tag == 'unknown_legal_hold_error' + return self._tag == "unknown_legal_hold_error" def is_transient_error(self): """ @@ -5096,7 +5391,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == 'transient_error' + return self._tag == "transient_error" def is_reset(self): """ @@ -5104,7 +5399,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -5112,12 +5407,18 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionsContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsListHeldRevisionsContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +LegalHoldsListHeldRevisionsContinueError_validator = bv.Union( + LegalHoldsListHeldRevisionsContinueError +) -LegalHoldsListHeldRevisionsContinueError_validator = bv.Union(LegalHoldsListHeldRevisionsContinueError) class LegalHoldsListHeldRevisionsError(LegalHoldsError): """ @@ -5146,7 +5447,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == 'transient_error' + return self._tag == "transient_error" def is_legal_hold_still_empty(self): """ @@ -5154,7 +5455,7 @@ def is_legal_hold_still_empty(self): :rtype: bool """ - return self._tag == 'legal_hold_still_empty' + return self._tag == "legal_hold_still_empty" def is_inactive_legal_hold(self): """ @@ -5162,13 +5463,17 @@ def is_inactive_legal_hold(self): :rtype: bool """ - return self._tag == 'inactive_legal_hold' + return self._tag == "inactive_legal_hold" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListHeldRevisionsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsListHeldRevisionsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsListHeldRevisionsError_validator = bv.Union(LegalHoldsListHeldRevisionsError) + class LegalHoldsListPoliciesArg(bb.Struct): """ :ivar LegalHoldsListPoliciesArg.include_released: @@ -5176,13 +5481,12 @@ class LegalHoldsListPoliciesArg(bb.Struct): """ __slots__ = [ - '_include_released_value', + "_include_released_value", ] _has_required_fields = False - def __init__(self, - include_released=None): + def __init__(self, include_released=None): self._include_released_value = bb.NOT_SET if include_released is not None: self.include_released = include_released @@ -5191,10 +5495,14 @@ def __init__(self, include_released = bb.Attribute("include_released") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListPoliciesArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsListPoliciesArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsListPoliciesArg_validator = bv.Struct(LegalHoldsListPoliciesArg) + class LegalHoldsListPoliciesError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5214,23 +5522,25 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == 'transient_error' + return self._tag == "transient_error" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListPoliciesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsListPoliciesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsListPoliciesError_validator = bv.Union(LegalHoldsListPoliciesError) -class LegalHoldsListPoliciesResult(bb.Struct): +class LegalHoldsListPoliciesResult(bb.Struct): __slots__ = [ - '_policies_value', + "_policies_value", ] _has_required_fields = True - def __init__(self, - policies=None): + def __init__(self, policies=None): self._policies_value = bb.NOT_SET if policies is not None: self.policies = policies @@ -5239,10 +5549,14 @@ def __init__(self, policies = bb.Attribute("policies") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsListPoliciesResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsListPoliciesResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsListPoliciesResult_validator = bv.Struct(LegalHoldsListPoliciesResult) + class LegalHoldsPolicyCreateArg(bb.Struct): """ :ivar LegalHoldsPolicyCreateArg.name: @@ -5258,21 +5572,16 @@ class LegalHoldsPolicyCreateArg(bb.Struct): """ __slots__ = [ - '_name_value', - '_description_value', - '_members_value', - '_start_date_value', - '_end_date_value', + "_name_value", + "_description_value", + "_members_value", + "_start_date_value", + "_end_date_value", ] _has_required_fields = True - def __init__(self, - name=None, - members=None, - description=None, - start_date=None, - end_date=None): + def __init__(self, name=None, members=None, description=None, start_date=None, end_date=None): self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET self._members_value = bb.NOT_SET @@ -5305,10 +5614,14 @@ def __init__(self, end_date = bb.Attribute("end_date", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsPolicyCreateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsPolicyCreateArg_validator = bv.Struct(LegalHoldsPolicyCreateArg) + class LegalHoldsPolicyCreateError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5357,7 +5670,7 @@ def is_start_date_is_later_than_end_date(self): :rtype: bool """ - return self._tag == 'start_date_is_later_than_end_date' + return self._tag == "start_date_is_later_than_end_date" def is_empty_members_list(self): """ @@ -5365,7 +5678,7 @@ def is_empty_members_list(self): :rtype: bool """ - return self._tag == 'empty_members_list' + return self._tag == "empty_members_list" def is_invalid_members(self): """ @@ -5373,7 +5686,7 @@ def is_invalid_members(self): :rtype: bool """ - return self._tag == 'invalid_members' + return self._tag == "invalid_members" def is_number_of_users_on_hold_is_greater_than_hold_limitation(self): """ @@ -5381,7 +5694,7 @@ def is_number_of_users_on_hold_is_greater_than_hold_limitation(self): :rtype: bool """ - return self._tag == 'number_of_users_on_hold_is_greater_than_hold_limitation' + return self._tag == "number_of_users_on_hold_is_greater_than_hold_limitation" def is_transient_error(self): """ @@ -5389,7 +5702,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == 'transient_error' + return self._tag == "transient_error" def is_name_must_be_unique(self): """ @@ -5397,7 +5710,7 @@ def is_name_must_be_unique(self): :rtype: bool """ - return self._tag == 'name_must_be_unique' + return self._tag == "name_must_be_unique" def is_team_exceeded_legal_hold_quota(self): """ @@ -5405,7 +5718,7 @@ def is_team_exceeded_legal_hold_quota(self): :rtype: bool """ - return self._tag == 'team_exceeded_legal_hold_quota' + return self._tag == "team_exceeded_legal_hold_quota" def is_invalid_date(self): """ @@ -5413,13 +5726,17 @@ def is_invalid_date(self): :rtype: bool """ - return self._tag == 'invalid_date' + return self._tag == "invalid_date" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsPolicyCreateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsPolicyCreateError_validator = bv.Union(LegalHoldsPolicyCreateError) + class LegalHoldsPolicyReleaseArg(bb.Struct): """ :ivar LegalHoldsPolicyReleaseArg.id: @@ -5427,13 +5744,12 @@ class LegalHoldsPolicyReleaseArg(bb.Struct): """ __slots__ = [ - '_id_value', + "_id_value", ] _has_required_fields = True - def __init__(self, - id=None): + def __init__(self, id=None): self._id_value = bb.NOT_SET if id is not None: self.id = id @@ -5442,10 +5758,14 @@ def __init__(self, id = bb.Attribute("id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyReleaseArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsPolicyReleaseArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsPolicyReleaseArg_validator = bv.Struct(LegalHoldsPolicyReleaseArg) + class LegalHoldsPolicyReleaseError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5473,7 +5793,7 @@ def is_legal_hold_performing_another_operation(self): :rtype: bool """ - return self._tag == 'legal_hold_performing_another_operation' + return self._tag == "legal_hold_performing_another_operation" def is_legal_hold_already_releasing(self): """ @@ -5481,7 +5801,7 @@ def is_legal_hold_already_releasing(self): :rtype: bool """ - return self._tag == 'legal_hold_already_releasing' + return self._tag == "legal_hold_already_releasing" def is_legal_hold_policy_not_found(self): """ @@ -5489,13 +5809,17 @@ def is_legal_hold_policy_not_found(self): :rtype: bool """ - return self._tag == 'legal_hold_policy_not_found' + return self._tag == "legal_hold_policy_not_found" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyReleaseError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsPolicyReleaseError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsPolicyReleaseError_validator = bv.Union(LegalHoldsPolicyReleaseError) + class LegalHoldsPolicyUpdateArg(bb.Struct): """ :ivar LegalHoldsPolicyUpdateArg.id: @@ -5509,19 +5833,15 @@ class LegalHoldsPolicyUpdateArg(bb.Struct): """ __slots__ = [ - '_id_value', - '_name_value', - '_description_value', - '_members_value', + "_id_value", + "_name_value", + "_description_value", + "_members_value", ] _has_required_fields = True - def __init__(self, - id=None, - name=None, - description=None, - members=None): + def __init__(self, id=None, name=None, description=None, members=None): self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET @@ -5548,10 +5868,14 @@ def __init__(self, members = bb.Attribute("members", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyUpdateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsPolicyUpdateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsPolicyUpdateArg_validator = bv.Struct(LegalHoldsPolicyUpdateArg) + class LegalHoldsPolicyUpdateError(LegalHoldsError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5600,7 +5924,7 @@ def is_transient_error(self): :rtype: bool """ - return self._tag == 'transient_error' + return self._tag == "transient_error" def is_inactive_legal_hold(self): """ @@ -5608,7 +5932,7 @@ def is_inactive_legal_hold(self): :rtype: bool """ - return self._tag == 'inactive_legal_hold' + return self._tag == "inactive_legal_hold" def is_legal_hold_performing_another_operation(self): """ @@ -5616,7 +5940,7 @@ def is_legal_hold_performing_another_operation(self): :rtype: bool """ - return self._tag == 'legal_hold_performing_another_operation' + return self._tag == "legal_hold_performing_another_operation" def is_invalid_members(self): """ @@ -5624,7 +5948,7 @@ def is_invalid_members(self): :rtype: bool """ - return self._tag == 'invalid_members' + return self._tag == "invalid_members" def is_number_of_users_on_hold_is_greater_than_hold_limitation(self): """ @@ -5632,7 +5956,7 @@ def is_number_of_users_on_hold_is_greater_than_hold_limitation(self): :rtype: bool """ - return self._tag == 'number_of_users_on_hold_is_greater_than_hold_limitation' + return self._tag == "number_of_users_on_hold_is_greater_than_hold_limitation" def is_empty_members_list(self): """ @@ -5640,7 +5964,7 @@ def is_empty_members_list(self): :rtype: bool """ - return self._tag == 'empty_members_list' + return self._tag == "empty_members_list" def is_name_must_be_unique(self): """ @@ -5648,7 +5972,7 @@ def is_name_must_be_unique(self): :rtype: bool """ - return self._tag == 'name_must_be_unique' + return self._tag == "name_must_be_unique" def is_legal_hold_policy_not_found(self): """ @@ -5656,13 +5980,17 @@ def is_legal_hold_policy_not_found(self): :rtype: bool """ - return self._tag == 'legal_hold_policy_not_found' + return self._tag == "legal_hold_policy_not_found" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsPolicyUpdateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsPolicyUpdateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsPolicyUpdateError_validator = bv.Union(LegalHoldsPolicyUpdateError) + class ListMemberAppsArg(bb.Struct): """ :ivar ListMemberAppsArg.team_member_id: @@ -5670,13 +5998,12 @@ class ListMemberAppsArg(bb.Struct): """ __slots__ = [ - '_team_member_id_value', + "_team_member_id_value", ] _has_required_fields = True - def __init__(self, - team_member_id=None): + def __init__(self, team_member_id=None): self._team_member_id_value = bb.NOT_SET if team_member_id is not None: self.team_member_id = team_member_id @@ -5685,10 +6012,14 @@ def __init__(self, team_member_id = bb.Attribute("team_member_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberAppsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMemberAppsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMemberAppsArg_validator = bv.Struct(ListMemberAppsArg) + class ListMemberAppsError(bb.Union): """ Error returned by @@ -5702,7 +6033,7 @@ class ListMemberAppsError(bb.Union): Member not found. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition member_not_found = None # Attribute is overwritten below the class definition @@ -5714,7 +6045,7 @@ def is_member_not_found(self): :rtype: bool """ - return self._tag == 'member_not_found' + return self._tag == "member_not_found" def is_other(self): """ @@ -5722,13 +6053,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberAppsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMemberAppsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMemberAppsError_validator = bv.Union(ListMemberAppsError) + class ListMemberAppsResult(bb.Struct): """ :ivar ListMemberAppsResult.linked_api_apps: @@ -5736,13 +6071,12 @@ class ListMemberAppsResult(bb.Struct): """ __slots__ = [ - '_linked_api_apps_value', + "_linked_api_apps_value", ] _has_required_fields = True - def __init__(self, - linked_api_apps=None): + def __init__(self, linked_api_apps=None): self._linked_api_apps_value = bb.NOT_SET if linked_api_apps is not None: self.linked_api_apps = linked_api_apps @@ -5751,10 +6085,14 @@ def __init__(self, linked_api_apps = bb.Attribute("linked_api_apps") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberAppsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMemberAppsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMemberAppsResult_validator = bv.Struct(ListMemberAppsResult) + class ListMemberDevicesArg(bb.Struct): """ :ivar ListMemberDevicesArg.team_member_id: @@ -5768,19 +6106,21 @@ class ListMemberDevicesArg(bb.Struct): """ __slots__ = [ - '_team_member_id_value', - '_include_web_sessions_value', - '_include_desktop_clients_value', - '_include_mobile_clients_value', + "_team_member_id_value", + "_include_web_sessions_value", + "_include_desktop_clients_value", + "_include_mobile_clients_value", ] _has_required_fields = True - def __init__(self, - team_member_id=None, - include_web_sessions=None, - include_desktop_clients=None, - include_mobile_clients=None): + def __init__( + self, + team_member_id=None, + include_web_sessions=None, + include_desktop_clients=None, + include_mobile_clients=None, + ): self._team_member_id_value = bb.NOT_SET self._include_web_sessions_value = bb.NOT_SET self._include_desktop_clients_value = bb.NOT_SET @@ -5807,10 +6147,14 @@ def __init__(self, include_mobile_clients = bb.Attribute("include_mobile_clients") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberDevicesArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMemberDevicesArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMemberDevicesArg_validator = bv.Struct(ListMemberDevicesArg) + class ListMemberDevicesError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -5821,7 +6165,7 @@ class ListMemberDevicesError(bb.Union): Member not found. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition member_not_found = None # Attribute is overwritten below the class definition @@ -5833,7 +6177,7 @@ def is_member_not_found(self): :rtype: bool """ - return self._tag == 'member_not_found' + return self._tag == "member_not_found" def is_other(self): """ @@ -5841,13 +6185,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberDevicesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMemberDevicesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMemberDevicesError_validator = bv.Union(ListMemberDevicesError) + class ListMemberDevicesResult(bb.Struct): """ :ivar ListMemberDevicesResult.active_web_sessions: @@ -5859,17 +6207,19 @@ class ListMemberDevicesResult(bb.Struct): """ __slots__ = [ - '_active_web_sessions_value', - '_desktop_client_sessions_value', - '_mobile_client_sessions_value', + "_active_web_sessions_value", + "_desktop_client_sessions_value", + "_mobile_client_sessions_value", ] _has_required_fields = False - def __init__(self, - active_web_sessions=None, - desktop_client_sessions=None, - mobile_client_sessions=None): + def __init__( + self, + active_web_sessions=None, + desktop_client_sessions=None, + mobile_client_sessions=None, + ): self._active_web_sessions_value = bb.NOT_SET self._desktop_client_sessions_value = bb.NOT_SET self._mobile_client_sessions_value = bb.NOT_SET @@ -5890,10 +6240,14 @@ def __init__(self, mobile_client_sessions = bb.Attribute("mobile_client_sessions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMemberDevicesResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMemberDevicesResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMemberDevicesResult_validator = bv.Struct(ListMemberDevicesResult) + class ListMembersAppsArg(bb.Struct): """ Arguments for @@ -5908,13 +6262,12 @@ class ListMembersAppsArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = False - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -5923,10 +6276,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersAppsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMembersAppsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMembersAppsArg_validator = bv.Struct(ListMembersAppsArg) + class ListMembersAppsError(bb.Union): """ Error returned by @@ -5942,7 +6299,7 @@ class ListMembersAppsError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -5954,7 +6311,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -5962,13 +6319,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersAppsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMembersAppsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMembersAppsError_validator = bv.Union(ListMembersAppsError) + class ListMembersAppsResult(bb.Struct): """ Information returned by @@ -5987,17 +6348,14 @@ class ListMembersAppsResult(bb.Struct): """ __slots__ = [ - '_apps_value', - '_has_more_value', - '_cursor_value', + "_apps_value", + "_has_more_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - apps=None, - has_more=None, - cursor=None): + def __init__(self, apps=None, has_more=None, cursor=None): self._apps_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6018,10 +6376,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersAppsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMembersAppsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMembersAppsResult_validator = bv.Struct(ListMembersAppsResult) + class ListMembersDevicesArg(bb.Struct): """ :ivar ListMembersDevicesArg.cursor: @@ -6039,19 +6401,21 @@ class ListMembersDevicesArg(bb.Struct): """ __slots__ = [ - '_cursor_value', - '_include_web_sessions_value', - '_include_desktop_clients_value', - '_include_mobile_clients_value', + "_cursor_value", + "_include_web_sessions_value", + "_include_desktop_clients_value", + "_include_mobile_clients_value", ] _has_required_fields = False - def __init__(self, - cursor=None, - include_web_sessions=None, - include_desktop_clients=None, - include_mobile_clients=None): + def __init__( + self, + cursor=None, + include_web_sessions=None, + include_desktop_clients=None, + include_mobile_clients=None, + ): self._cursor_value = bb.NOT_SET self._include_web_sessions_value = bb.NOT_SET self._include_desktop_clients_value = bb.NOT_SET @@ -6078,10 +6442,14 @@ def __init__(self, include_mobile_clients = bb.Attribute("include_mobile_clients") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersDevicesArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMembersDevicesArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMembersDevicesArg_validator = bv.Struct(ListMembersDevicesArg) + class ListMembersDevicesError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6094,7 +6462,7 @@ class ListMembersDevicesError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -6106,7 +6474,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -6114,13 +6482,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersDevicesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMembersDevicesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMembersDevicesError_validator = bv.Union(ListMembersDevicesError) + class ListMembersDevicesResult(bb.Struct): """ :ivar ListMembersDevicesResult.devices: @@ -6136,17 +6508,14 @@ class ListMembersDevicesResult(bb.Struct): """ __slots__ = [ - '_devices_value', - '_has_more_value', - '_cursor_value', + "_devices_value", + "_has_more_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - devices=None, - has_more=None, - cursor=None): + def __init__(self, devices=None, has_more=None, cursor=None): self._devices_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6167,10 +6536,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListMembersDevicesResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListMembersDevicesResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListMembersDevicesResult_validator = bv.Struct(ListMembersDevicesResult) + class ListTeamAppsArg(bb.Struct): """ Arguments for @@ -6185,13 +6558,12 @@ class ListTeamAppsArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = False - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -6200,10 +6572,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamAppsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListTeamAppsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListTeamAppsArg_validator = bv.Struct(ListTeamAppsArg) + class ListTeamAppsError(bb.Union): """ Error returned by @@ -6219,7 +6595,7 @@ class ListTeamAppsError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -6231,7 +6607,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -6239,13 +6615,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamAppsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListTeamAppsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListTeamAppsError_validator = bv.Union(ListTeamAppsError) + class ListTeamAppsResult(bb.Struct): """ Information returned by @@ -6264,17 +6644,14 @@ class ListTeamAppsResult(bb.Struct): """ __slots__ = [ - '_apps_value', - '_has_more_value', - '_cursor_value', + "_apps_value", + "_has_more_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - apps=None, - has_more=None, - cursor=None): + def __init__(self, apps=None, has_more=None, cursor=None): self._apps_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6295,10 +6672,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamAppsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListTeamAppsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListTeamAppsResult_validator = bv.Struct(ListTeamAppsResult) + class ListTeamDevicesArg(bb.Struct): """ :ivar ListTeamDevicesArg.cursor: @@ -6316,19 +6697,21 @@ class ListTeamDevicesArg(bb.Struct): """ __slots__ = [ - '_cursor_value', - '_include_web_sessions_value', - '_include_desktop_clients_value', - '_include_mobile_clients_value', + "_cursor_value", + "_include_web_sessions_value", + "_include_desktop_clients_value", + "_include_mobile_clients_value", ] _has_required_fields = False - def __init__(self, - cursor=None, - include_web_sessions=None, - include_desktop_clients=None, - include_mobile_clients=None): + def __init__( + self, + cursor=None, + include_web_sessions=None, + include_desktop_clients=None, + include_mobile_clients=None, + ): self._cursor_value = bb.NOT_SET self._include_web_sessions_value = bb.NOT_SET self._include_desktop_clients_value = bb.NOT_SET @@ -6355,10 +6738,14 @@ def __init__(self, include_mobile_clients = bb.Attribute("include_mobile_clients") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamDevicesArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListTeamDevicesArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListTeamDevicesArg_validator = bv.Struct(ListTeamDevicesArg) + class ListTeamDevicesError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6371,7 +6758,7 @@ class ListTeamDevicesError(bb.Union): again with an empty cursor to obtain a new cursor. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition reset = None # Attribute is overwritten below the class definition @@ -6383,7 +6770,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -6391,13 +6778,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamDevicesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListTeamDevicesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListTeamDevicesError_validator = bv.Union(ListTeamDevicesError) + class ListTeamDevicesResult(bb.Struct): """ :ivar ListTeamDevicesResult.devices: @@ -6413,17 +6804,14 @@ class ListTeamDevicesResult(bb.Struct): """ __slots__ = [ - '_devices_value', - '_has_more_value', - '_cursor_value', + "_devices_value", + "_has_more_value", + "_cursor_value", ] _has_required_fields = True - def __init__(self, - devices=None, - has_more=None, - cursor=None): + def __init__(self, devices=None, has_more=None, cursor=None): self._devices_value = bb.NOT_SET self._has_more_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -6444,10 +6832,14 @@ def __init__(self, cursor = bb.Attribute("cursor", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListTeamDevicesResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ListTeamDevicesResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ListTeamDevicesResult_validator = bv.Struct(ListTeamDevicesResult) + class MemberAccess(bb.Struct): """ Specify access type a member should have when joined to a group. @@ -6459,15 +6851,13 @@ class MemberAccess(bb.Struct): """ __slots__ = [ - '_user_value', - '_access_type_value', + "_user_value", + "_access_type_value", ] _has_required_fields = True - def __init__(self, - user=None, - access_type=None): + def __init__(self, user=None, access_type=None): self._user_value = bb.NOT_SET self._access_type_value = bb.NOT_SET if user is not None: @@ -6482,10 +6872,14 @@ def __init__(self, access_type = bb.Attribute("access_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccess, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAccess, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAccess_validator = bv.Struct(MemberAccess) + class MemberAddArgBase(bb.Struct): """ :ivar MemberAddArgBase.member_given_name: @@ -6507,25 +6901,27 @@ class MemberAddArgBase(bb.Struct): """ __slots__ = [ - '_member_email_value', - '_member_given_name_value', - '_member_surname_value', - '_member_external_id_value', - '_member_persistent_id_value', - '_send_welcome_email_value', - '_is_directory_restricted_value', + "_member_email_value", + "_member_given_name_value", + "_member_surname_value", + "_member_external_id_value", + "_member_persistent_id_value", + "_send_welcome_email_value", + "_is_directory_restricted_value", ] _has_required_fields = True - def __init__(self, - member_email=None, - member_given_name=None, - member_surname=None, - member_external_id=None, - member_persistent_id=None, - send_welcome_email=None, - is_directory_restricted=None): + def __init__( + self, + member_email=None, + member_given_name=None, + member_surname=None, + member_external_id=None, + member_persistent_id=None, + send_welcome_email=None, + is_directory_restricted=None, + ): self._member_email_value = bb.NOT_SET self._member_given_name_value = bb.NOT_SET self._member_surname_value = bb.NOT_SET @@ -6570,34 +6966,41 @@ def __init__(self, is_directory_restricted = bb.Attribute("is_directory_restricted", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddArgBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddArgBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddArgBase_validator = bv.Struct(MemberAddArgBase) -class MemberAddArg(MemberAddArgBase): +class MemberAddArg(MemberAddArgBase): __slots__ = [ - '_role_value', + "_role_value", ] _has_required_fields = True - def __init__(self, - member_email=None, - member_given_name=None, - member_surname=None, - member_external_id=None, - member_persistent_id=None, - send_welcome_email=None, - is_directory_restricted=None, - role=None): - super(MemberAddArg, self).__init__(member_email, - member_given_name, - member_surname, - member_external_id, - member_persistent_id, - send_welcome_email, - is_directory_restricted) + def __init__( + self, + member_email=None, + member_given_name=None, + member_surname=None, + member_external_id=None, + member_persistent_id=None, + send_welcome_email=None, + is_directory_restricted=None, + role=None, + ): + super(MemberAddArg, self).__init__( + member_email, + member_given_name, + member_surname, + member_external_id, + member_persistent_id, + send_welcome_email, + is_directory_restricted, + ) self._role_value = bb.NOT_SET if role is not None: self.role = role @@ -6606,10 +7009,14 @@ def __init__(self, role = bb.Attribute("role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddArg_validator = bv.Struct(MemberAddArg) + class MemberAddResultBase(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -6666,7 +7073,7 @@ def team_license_limit(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('team_license_limit', val) + return cls("team_license_limit", val) @classmethod def free_team_member_limit_reached(cls, val): @@ -6677,7 +7084,7 @@ def free_team_member_limit_reached(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('free_team_member_limit_reached', val) + return cls("free_team_member_limit_reached", val) @classmethod def user_already_on_team(cls, val): @@ -6688,7 +7095,7 @@ def user_already_on_team(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('user_already_on_team', val) + return cls("user_already_on_team", val) @classmethod def user_on_another_team(cls, val): @@ -6699,7 +7106,7 @@ def user_on_another_team(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('user_on_another_team', val) + return cls("user_on_another_team", val) @classmethod def user_already_paired(cls, val): @@ -6710,7 +7117,7 @@ def user_already_paired(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('user_already_paired', val) + return cls("user_already_paired", val) @classmethod def user_migration_failed(cls, val): @@ -6721,7 +7128,7 @@ def user_migration_failed(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('user_migration_failed', val) + return cls("user_migration_failed", val) @classmethod def duplicate_external_member_id(cls, val): @@ -6732,7 +7139,7 @@ def duplicate_external_member_id(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('duplicate_external_member_id', val) + return cls("duplicate_external_member_id", val) @classmethod def duplicate_member_persistent_id(cls, val): @@ -6743,7 +7150,7 @@ def duplicate_member_persistent_id(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('duplicate_member_persistent_id', val) + return cls("duplicate_member_persistent_id", val) @classmethod def persistent_id_disabled(cls, val): @@ -6754,7 +7161,7 @@ def persistent_id_disabled(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('persistent_id_disabled', val) + return cls("persistent_id_disabled", val) @classmethod def user_creation_failed(cls, val): @@ -6765,7 +7172,7 @@ def user_creation_failed(cls, val): :param str val: :rtype: MemberAddResultBase """ - return cls('user_creation_failed', val) + return cls("user_creation_failed", val) def is_team_license_limit(self): """ @@ -6773,7 +7180,7 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == 'team_license_limit' + return self._tag == "team_license_limit" def is_free_team_member_limit_reached(self): """ @@ -6781,7 +7188,7 @@ def is_free_team_member_limit_reached(self): :rtype: bool """ - return self._tag == 'free_team_member_limit_reached' + return self._tag == "free_team_member_limit_reached" def is_user_already_on_team(self): """ @@ -6789,7 +7196,7 @@ def is_user_already_on_team(self): :rtype: bool """ - return self._tag == 'user_already_on_team' + return self._tag == "user_already_on_team" def is_user_on_another_team(self): """ @@ -6797,7 +7204,7 @@ def is_user_on_another_team(self): :rtype: bool """ - return self._tag == 'user_on_another_team' + return self._tag == "user_on_another_team" def is_user_already_paired(self): """ @@ -6805,7 +7212,7 @@ def is_user_already_paired(self): :rtype: bool """ - return self._tag == 'user_already_paired' + return self._tag == "user_already_paired" def is_user_migration_failed(self): """ @@ -6813,7 +7220,7 @@ def is_user_migration_failed(self): :rtype: bool """ - return self._tag == 'user_migration_failed' + return self._tag == "user_migration_failed" def is_duplicate_external_member_id(self): """ @@ -6821,7 +7228,7 @@ def is_duplicate_external_member_id(self): :rtype: bool """ - return self._tag == 'duplicate_external_member_id' + return self._tag == "duplicate_external_member_id" def is_duplicate_member_persistent_id(self): """ @@ -6829,7 +7236,7 @@ def is_duplicate_member_persistent_id(self): :rtype: bool """ - return self._tag == 'duplicate_member_persistent_id' + return self._tag == "duplicate_member_persistent_id" def is_persistent_id_disabled(self): """ @@ -6837,7 +7244,7 @@ def is_persistent_id_disabled(self): :rtype: bool """ - return self._tag == 'persistent_id_disabled' + return self._tag == "persistent_id_disabled" def is_user_creation_failed(self): """ @@ -6845,7 +7252,7 @@ def is_user_creation_failed(self): :rtype: bool """ - return self._tag == 'user_creation_failed' + return self._tag == "user_creation_failed" def get_team_license_limit(self): """ @@ -6975,10 +7382,14 @@ def get_user_creation_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddResultBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddResultBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddResultBase_validator = bv.Union(MemberAddResultBase) + class MemberAddResult(MemberAddResultBase): """ Describes the result of attempting to add a single user to the team. @@ -7004,7 +7415,7 @@ def success(cls, val): :param TeamMemberInfo val: :rtype: MemberAddResult """ - return cls('success', val) + return cls("success", val) def is_success(self): """ @@ -7012,7 +7423,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def get_success(self): """ @@ -7027,34 +7438,41 @@ def get_success(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddResult_validator = bv.Union(MemberAddResult) -class MemberAddV2Arg(MemberAddArgBase): +class MemberAddV2Arg(MemberAddArgBase): __slots__ = [ - '_role_ids_value', + "_role_ids_value", ] _has_required_fields = True - def __init__(self, - member_email=None, - member_given_name=None, - member_surname=None, - member_external_id=None, - member_persistent_id=None, - send_welcome_email=None, - is_directory_restricted=None, - role_ids=None): - super(MemberAddV2Arg, self).__init__(member_email, - member_given_name, - member_surname, - member_external_id, - member_persistent_id, - send_welcome_email, - is_directory_restricted) + def __init__( + self, + member_email=None, + member_given_name=None, + member_surname=None, + member_external_id=None, + member_persistent_id=None, + send_welcome_email=None, + is_directory_restricted=None, + role_ids=None, + ): + super(MemberAddV2Arg, self).__init__( + member_email, + member_given_name, + member_surname, + member_external_id, + member_persistent_id, + send_welcome_email, + is_directory_restricted, + ) self._role_ids_value = bb.NOT_SET if role_ids is not None: self.role_ids = role_ids @@ -7063,10 +7481,14 @@ def __init__(self, role_ids = bb.Attribute("role_ids", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddV2Arg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddV2Arg_validator = bv.Struct(MemberAddV2Arg) + class MemberAddV2Result(MemberAddResultBase): """ Describes the result of attempting to add a single user to the team. @@ -7083,7 +7505,7 @@ class MemberAddV2Result(MemberAddResultBase): :vartype MemberAddV2Result.success: TeamMemberInfoV2 """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -7096,7 +7518,7 @@ def success(cls, val): :param TeamMemberInfoV2 val: :rtype: MemberAddV2Result """ - return cls('success', val) + return cls("success", val) def is_success(self): """ @@ -7104,7 +7526,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_other(self): """ @@ -7112,7 +7534,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -7127,10 +7549,14 @@ def get_success(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddV2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddV2Result_validator = bv.Union(MemberAddV2Result) + class MemberDevices(bb.Struct): """ Information on devices of a team's member. @@ -7146,19 +7572,21 @@ class MemberDevices(bb.Struct): """ __slots__ = [ - '_team_member_id_value', - '_web_sessions_value', - '_desktop_clients_value', - '_mobile_clients_value', + "_team_member_id_value", + "_web_sessions_value", + "_desktop_clients_value", + "_mobile_clients_value", ] _has_required_fields = True - def __init__(self, - team_member_id=None, - web_sessions=None, - desktop_clients=None, - mobile_clients=None): + def __init__( + self, + team_member_id=None, + web_sessions=None, + desktop_clients=None, + mobile_clients=None, + ): self._team_member_id_value = bb.NOT_SET self._web_sessions_value = bb.NOT_SET self._desktop_clients_value = bb.NOT_SET @@ -7185,10 +7613,14 @@ def __init__(self, mobile_clients = bb.Attribute("mobile_clients", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDevices, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberDevices, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberDevices_validator = bv.Struct(MemberDevices) + class MemberLinkedApps(bb.Struct): """ Information on linked applications of a team member. @@ -7200,15 +7632,13 @@ class MemberLinkedApps(bb.Struct): """ __slots__ = [ - '_team_member_id_value', - '_linked_api_apps_value', + "_team_member_id_value", + "_linked_api_apps_value", ] _has_required_fields = True - def __init__(self, - team_member_id=None, - linked_api_apps=None): + def __init__(self, team_member_id=None, linked_api_apps=None): self._team_member_id_value = bb.NOT_SET self._linked_api_apps_value = bb.NOT_SET if team_member_id is not None: @@ -7223,10 +7653,14 @@ def __init__(self, linked_api_apps = bb.Attribute("linked_api_apps") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberLinkedApps, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberLinkedApps, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberLinkedApps_validator = bv.Struct(MemberLinkedApps) + class MemberProfile(bb.Struct): """ Basic member profile. @@ -7270,41 +7704,43 @@ class MemberProfile(bb.Struct): """ __slots__ = [ - '_team_member_id_value', - '_external_id_value', - '_account_id_value', - '_email_value', - '_email_verified_value', - '_secondary_emails_value', - '_status_value', - '_name_value', - '_membership_type_value', - '_invited_on_value', - '_joined_on_value', - '_suspended_on_value', - '_persistent_id_value', - '_is_directory_restricted_value', - '_profile_photo_url_value', + "_team_member_id_value", + "_external_id_value", + "_account_id_value", + "_email_value", + "_email_verified_value", + "_secondary_emails_value", + "_status_value", + "_name_value", + "_membership_type_value", + "_invited_on_value", + "_joined_on_value", + "_suspended_on_value", + "_persistent_id_value", + "_is_directory_restricted_value", + "_profile_photo_url_value", ] _has_required_fields = True - def __init__(self, - team_member_id=None, - email=None, - email_verified=None, - status=None, - name=None, - membership_type=None, - external_id=None, - account_id=None, - secondary_emails=None, - invited_on=None, - joined_on=None, - suspended_on=None, - persistent_id=None, - is_directory_restricted=None, - profile_photo_url=None): + def __init__( + self, + team_member_id=None, + email=None, + email_verified=None, + status=None, + name=None, + membership_type=None, + external_id=None, + account_id=None, + secondary_emails=None, + invited_on=None, + joined_on=None, + suspended_on=None, + persistent_id=None, + is_directory_restricted=None, + profile_photo_url=None, + ): self._team_member_id_value = bb.NOT_SET self._external_id_value = bb.NOT_SET self._account_id_value = bb.NOT_SET @@ -7397,10 +7833,14 @@ def __init__(self, profile_photo_url = bb.Attribute("profile_photo_url", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberProfile, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberProfile, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberProfile_validator = bv.Struct(MemberProfile) + class UserSelectorError(bb.Union): """ Error that can be returned whenever a struct derived from @@ -7425,13 +7865,17 @@ def is_user_not_found(self): :rtype: bool """ - return self._tag == 'user_not_found' + return self._tag == "user_not_found" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserSelectorError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserSelectorError_validator = bv.Union(UserSelectorError) + class MemberSelectorError(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7451,13 +7895,17 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == 'user_not_in_team' + return self._tag == "user_not_in_team" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSelectorError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSelectorError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSelectorError_validator = bv.Union(MemberSelectorError) + class MembersAddArgBase(bb.Struct): """ :ivar MembersAddArgBase.force_async: @@ -7465,13 +7913,12 @@ class MembersAddArgBase(bb.Struct): """ __slots__ = [ - '_force_async_value', + "_force_async_value", ] _has_required_fields = False - def __init__(self, - force_async=None): + def __init__(self, force_async=None): self._force_async_value = bb.NOT_SET if force_async is not None: self.force_async = force_async @@ -7480,10 +7927,14 @@ def __init__(self, force_async = bb.Attribute("force_async") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddArgBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersAddArgBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersAddArgBase_validator = bv.Struct(MembersAddArgBase) + class MembersAddArg(MembersAddArgBase): """ :ivar MembersAddArg.new_members: @@ -7491,14 +7942,12 @@ class MembersAddArg(MembersAddArgBase): """ __slots__ = [ - '_new_members_value', + "_new_members_value", ] _has_required_fields = True - def __init__(self, - new_members=None, - force_async=None): + def __init__(self, new_members=None, force_async=None): super(MembersAddArg, self).__init__(force_async) self._new_members_value = bb.NOT_SET if new_members is not None: @@ -7508,10 +7957,14 @@ def __init__(self, new_members = bb.Attribute("new_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersAddArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersAddArg_validator = bv.Struct(MembersAddArg) + class MembersAddJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7539,7 +7992,7 @@ def complete(cls, val): :param list of [MemberAddResult] val: :rtype: MembersAddJobStatus """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -7550,7 +8003,7 @@ def failed(cls, val): :param str val: :rtype: MembersAddJobStatus """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -7558,7 +8011,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -7566,7 +8019,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def get_complete(self): """ @@ -7597,10 +8050,14 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersAddJobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersAddJobStatus_validator = bv.Union(MembersAddJobStatus) + class MembersAddJobStatusV2Result(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7619,7 +8076,7 @@ class MembersAddJobStatusV2Result(async_.PollResultBase): :vartype MembersAddJobStatusV2Result.failed: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -7632,7 +8089,7 @@ def complete(cls, val): :param list of [MemberAddV2Result] val: :rtype: MembersAddJobStatusV2Result """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -7643,7 +8100,7 @@ def failed(cls, val): :param str val: :rtype: MembersAddJobStatusV2Result """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -7651,7 +8108,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -7659,7 +8116,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def is_other(self): """ @@ -7667,7 +8124,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -7698,10 +8155,14 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddJobStatusV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersAddJobStatusV2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersAddJobStatusV2Result_validator = bv.Union(MembersAddJobStatusV2Result) + class MembersAddLaunch(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7718,7 +8179,7 @@ def complete(cls, val): :param list of [MemberAddResult] val: :rtype: MembersAddLaunch """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -7726,7 +8187,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def get_complete(self): """ @@ -7739,10 +8200,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersAddLaunch, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersAddLaunch_validator = bv.Union(MembersAddLaunch) + class MembersAddLaunchV2Result(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7750,7 +8215,7 @@ class MembersAddLaunchV2Result(async_.LaunchResultBase): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -7763,7 +8228,7 @@ def complete(cls, val): :param list of [MemberAddV2Result] val: :rtype: MembersAddLaunchV2Result """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -7771,7 +8236,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_other(self): """ @@ -7779,7 +8244,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_complete(self): """ @@ -7792,10 +8257,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddLaunchV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersAddLaunchV2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersAddLaunchV2Result_validator = bv.Union(MembersAddLaunchV2Result) + class MembersAddV2Arg(MembersAddArgBase): """ :ivar MembersAddV2Arg.new_members: @@ -7803,14 +8272,12 @@ class MembersAddV2Arg(MembersAddArgBase): """ __slots__ = [ - '_new_members_value', + "_new_members_value", ] _has_required_fields = True - def __init__(self, - new_members=None, - force_async=None): + def __init__(self, new_members=None, force_async=None): super(MembersAddV2Arg, self).__init__(force_async) self._new_members_value = bb.NOT_SET if new_members is not None: @@ -7820,10 +8287,14 @@ def __init__(self, new_members = bb.Attribute("new_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersAddV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersAddV2Arg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersAddV2Arg_validator = bv.Struct(MembersAddV2Arg) + class MembersDeactivateBaseArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -7834,13 +8305,12 @@ class MembersDeactivateBaseArg(bb.Struct): """ __slots__ = [ - '_user_value', + "_user_value", ] _has_required_fields = True - def __init__(self, - user=None): + def __init__(self, user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -7849,10 +8319,14 @@ def __init__(self, user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeactivateBaseArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersDeactivateBaseArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersDeactivateBaseArg_validator = bv.Struct(MembersDeactivateBaseArg) + class MembersDataTransferArg(MembersDeactivateBaseArg): """ :ivar MembersDataTransferArg.transfer_dest_id: @@ -7862,16 +8336,13 @@ class MembersDataTransferArg(MembersDeactivateBaseArg): """ __slots__ = [ - '_transfer_dest_id_value', - '_transfer_admin_id_value', + "_transfer_dest_id_value", + "_transfer_admin_id_value", ] _has_required_fields = True - def __init__(self, - user=None, - transfer_dest_id=None, - transfer_admin_id=None): + def __init__(self, user=None, transfer_dest_id=None, transfer_admin_id=None): super(MembersDataTransferArg, self).__init__(user) self._transfer_dest_id_value = bb.NOT_SET self._transfer_admin_id_value = bb.NOT_SET @@ -7887,10 +8358,14 @@ def __init__(self, transfer_admin_id = bb.Attribute("transfer_admin_id", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDataTransferArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersDataTransferArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersDataTransferArg_validator = bv.Struct(MembersDataTransferArg) + class MembersDeactivateArg(MembersDeactivateBaseArg): """ :ivar MembersDeactivateArg.wipe_data: @@ -7899,14 +8374,12 @@ class MembersDeactivateArg(MembersDeactivateBaseArg): """ __slots__ = [ - '_wipe_data_value', + "_wipe_data_value", ] _has_required_fields = True - def __init__(self, - user=None, - wipe_data=None): + def __init__(self, user=None, wipe_data=None): super(MembersDeactivateArg, self).__init__(user) self._wipe_data_value = bb.NOT_SET if wipe_data is not None: @@ -7916,10 +8389,14 @@ def __init__(self, wipe_data = bb.Attribute("wipe_data") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeactivateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersDeactivateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersDeactivateArg_validator = bv.Struct(MembersDeactivateArg) + class MembersDeactivateError(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7930,7 +8407,7 @@ class MembersDeactivateError(UserSelectorError): The user is not a member of the team. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition user_not_in_team = None # Attribute is overwritten below the class definition @@ -7942,7 +8419,7 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == 'user_not_in_team' + return self._tag == "user_not_in_team" def is_other(self): """ @@ -7950,13 +8427,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeactivateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersDeactivateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersDeactivateError_validator = bv.Union(MembersDeactivateError) + class MembersPermanentlyDeleteFilesError(MembersDeactivateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -7985,7 +8466,7 @@ def is_transfer_in_progress(self): :rtype: bool """ - return self._tag == 'transfer_in_progress' + return self._tag == "transfer_in_progress" def is_already_transferred(self): """ @@ -7993,7 +8474,7 @@ def is_already_transferred(self): :rtype: bool """ - return self._tag == 'already_transferred' + return self._tag == "already_transferred" def is_already_transferred_or_deleted(self): """ @@ -8001,13 +8482,17 @@ def is_already_transferred_or_deleted(self): :rtype: bool """ - return self._tag == 'already_transferred_or_deleted' + return self._tag == "already_transferred_or_deleted" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersPermanentlyDeleteFilesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersPermanentlyDeleteFilesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersPermanentlyDeleteFilesError_validator = bv.Union(MembersPermanentlyDeleteFilesError) + class MembersDeleteFormerMemberFilesError(MembersPermanentlyDeleteFilesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8027,13 +8512,17 @@ def is_user_not_removed(self): :rtype: bool """ - return self._tag == 'user_not_removed' + return self._tag == "user_not_removed" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeleteFormerMemberFilesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersDeleteFormerMemberFilesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersDeleteFormerMemberFilesError_validator = bv.Union(MembersDeleteFormerMemberFilesError) + class MembersDeleteProfilePhotoArg(bb.Struct): """ :ivar MembersDeleteProfilePhotoArg.user: @@ -8041,13 +8530,12 @@ class MembersDeleteProfilePhotoArg(bb.Struct): """ __slots__ = [ - '_user_value', + "_user_value", ] _has_required_fields = True - def __init__(self, - user=None): + def __init__(self, user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -8056,10 +8544,14 @@ def __init__(self, user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeleteProfilePhotoArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersDeleteProfilePhotoArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersDeleteProfilePhotoArg_validator = bv.Struct(MembersDeleteProfilePhotoArg) + class MembersDeleteProfilePhotoError(MemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8070,7 +8562,7 @@ class MembersDeleteProfilePhotoError(MemberSelectorError): Modifying deleted users is not allowed. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition set_profile_disallowed = None # Attribute is overwritten below the class definition @@ -8082,7 +8574,7 @@ def is_set_profile_disallowed(self): :rtype: bool """ - return self._tag == 'set_profile_disallowed' + return self._tag == "set_profile_disallowed" def is_other(self): """ @@ -8090,13 +8582,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersDeleteProfilePhotoError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersDeleteProfilePhotoError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersDeleteProfilePhotoError_validator = bv.Union(MembersDeleteProfilePhotoError) + class MembersFormerMemberArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -8107,13 +8603,12 @@ class MembersFormerMemberArg(bb.Struct): """ __slots__ = [ - '_user_value', + "_user_value", ] _has_required_fields = True - def __init__(self, - user=None): + def __init__(self, user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -8122,10 +8617,14 @@ def __init__(self, user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersFormerMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersFormerMemberArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersFormerMemberArg_validator = bv.Struct(MembersFormerMemberArg) + class MembersGetAvailableTeamMemberRolesResult(bb.Struct): """ Available TeamMemberRole for the connected team. To be used with @@ -8136,13 +8635,12 @@ class MembersGetAvailableTeamMemberRolesResult(bb.Struct): """ __slots__ = [ - '_roles_value', + "_roles_value", ] _has_required_fields = True - def __init__(self, - roles=None): + def __init__(self, roles=None): self._roles_value = bb.NOT_SET if roles is not None: self.roles = roles @@ -8151,9 +8649,15 @@ def __init__(self, roles = bb.Attribute("roles") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetAvailableTeamMemberRolesResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersGetAvailableTeamMemberRolesResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +MembersGetAvailableTeamMemberRolesResult_validator = bv.Struct( + MembersGetAvailableTeamMemberRolesResult +) -MembersGetAvailableTeamMemberRolesResult_validator = bv.Struct(MembersGetAvailableTeamMemberRolesResult) class MembersGetInfoArgs(bb.Struct): """ @@ -8162,13 +8666,12 @@ class MembersGetInfoArgs(bb.Struct): """ __slots__ = [ - '_members_value', + "_members_value", ] _has_required_fields = True - def __init__(self, - members=None): + def __init__(self, members=None): self._members_value = bb.NOT_SET if members is not None: self.members = members @@ -8177,10 +8680,14 @@ def __init__(self, members = bb.Attribute("members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersGetInfoArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersGetInfoArgs_validator = bv.Struct(MembersGetInfoArgs) + class MembersGetInfoError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8188,7 +8695,7 @@ class MembersGetInfoError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -8198,13 +8705,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersGetInfoError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersGetInfoError_validator = bv.Union(MembersGetInfoError) + class MembersGetInfoItemBase(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8231,7 +8742,7 @@ def id_not_found(cls, val): :param str val: :rtype: MembersGetInfoItemBase """ - return cls('id_not_found', val) + return cls("id_not_found", val) def is_id_not_found(self): """ @@ -8239,7 +8750,7 @@ def is_id_not_found(self): :rtype: bool """ - return self._tag == 'id_not_found' + return self._tag == "id_not_found" def get_id_not_found(self): """ @@ -8258,10 +8769,14 @@ def get_id_not_found(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoItemBase, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersGetInfoItemBase, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersGetInfoItemBase_validator = bv.Union(MembersGetInfoItemBase) + class MembersGetInfoItem(MembersGetInfoItemBase): """ Describes a result obtained for a single user whose id was specified in the @@ -8285,7 +8800,7 @@ def member_info(cls, val): :param TeamMemberInfo val: :rtype: MembersGetInfoItem """ - return cls('member_info', val) + return cls("member_info", val) def is_member_info(self): """ @@ -8293,7 +8808,7 @@ def is_member_info(self): :rtype: bool """ - return self._tag == 'member_info' + return self._tag == "member_info" def get_member_info(self): """ @@ -8308,10 +8823,14 @@ def get_member_info(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoItem, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersGetInfoItem, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersGetInfoItem_validator = bv.Union(MembersGetInfoItem) + class MembersGetInfoItemV2(MembersGetInfoItemBase): """ Describes a result obtained for a single user whose id was specified in the @@ -8326,7 +8845,7 @@ class MembersGetInfoItemV2(MembersGetInfoItemBase): :vartype MembersGetInfoItemV2.member_info: TeamMemberInfoV2 """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -8339,7 +8858,7 @@ def member_info(cls, val): :param TeamMemberInfoV2 val: :rtype: MembersGetInfoItemV2 """ - return cls('member_info', val) + return cls("member_info", val) def is_member_info(self): """ @@ -8347,7 +8866,7 @@ def is_member_info(self): :rtype: bool """ - return self._tag == 'member_info' + return self._tag == "member_info" def is_other(self): """ @@ -8355,7 +8874,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_member_info(self): """ @@ -8370,10 +8889,14 @@ def get_member_info(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoItemV2, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersGetInfoItemV2, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersGetInfoItemV2_validator = bv.Union(MembersGetInfoItemV2) + class MembersGetInfoV2Arg(bb.Struct): """ :ivar MembersGetInfoV2Arg.members: @@ -8381,13 +8904,12 @@ class MembersGetInfoV2Arg(bb.Struct): """ __slots__ = [ - '_members_value', + "_members_value", ] _has_required_fields = True - def __init__(self, - members=None): + def __init__(self, members=None): self._members_value = bb.NOT_SET if members is not None: self.members = members @@ -8396,10 +8918,14 @@ def __init__(self, members = bb.Attribute("members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersGetInfoV2Arg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersGetInfoV2Arg_validator = bv.Struct(MembersGetInfoV2Arg) + class MembersGetInfoV2Result(bb.Struct): """ :ivar MembersGetInfoV2Result.members_info: @@ -8407,13 +8933,12 @@ class MembersGetInfoV2Result(bb.Struct): """ __slots__ = [ - '_members_info_value', + "_members_info_value", ] _has_required_fields = True - def __init__(self, - members_info=None): + def __init__(self, members_info=None): self._members_info_value = bb.NOT_SET if members_info is not None: self.members_info = members_info @@ -8422,10 +8947,14 @@ def __init__(self, members_info = bb.Attribute("members_info") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersGetInfoV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersGetInfoV2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersGetInfoV2Result_validator = bv.Struct(MembersGetInfoV2Result) + class MembersInfo(bb.Struct): """ :ivar MembersInfo.team_member_ids: @@ -8435,15 +8964,13 @@ class MembersInfo(bb.Struct): """ __slots__ = [ - '_team_member_ids_value', - '_permanently_deleted_users_value', + "_team_member_ids_value", + "_permanently_deleted_users_value", ] _has_required_fields = True - def __init__(self, - team_member_ids=None, - permanently_deleted_users=None): + def __init__(self, team_member_ids=None, permanently_deleted_users=None): self._team_member_ids_value = bb.NOT_SET self._permanently_deleted_users_value = bb.NOT_SET if team_member_ids is not None: @@ -8460,8 +8987,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(MembersInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + MembersInfo_validator = bv.Struct(MembersInfo) + class MembersListArg(bb.Struct): """ :ivar MembersListArg.limit: @@ -8471,15 +9000,13 @@ class MembersListArg(bb.Struct): """ __slots__ = [ - '_limit_value', - '_include_removed_value', + "_limit_value", + "_include_removed_value", ] _has_required_fields = False - def __init__(self, - limit=None, - include_removed=None): + def __init__(self, limit=None, include_removed=None): self._limit_value = bb.NOT_SET self._include_removed_value = bb.NOT_SET if limit is not None: @@ -8494,10 +9021,14 @@ def __init__(self, include_removed = bb.Attribute("include_removed") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersListArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersListArg_validator = bv.Struct(MembersListArg) + class MembersListContinueArg(bb.Struct): """ :ivar MembersListContinueArg.cursor: @@ -8505,13 +9036,12 @@ class MembersListContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -8520,10 +9050,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersListContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersListContinueArg_validator = bv.Struct(MembersListContinueArg) + class MembersListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8534,7 +9068,7 @@ class MembersListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -8546,7 +9080,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -8554,13 +9088,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersListContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersListContinueError_validator = bv.Union(MembersListContinueError) + class MembersListError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8568,7 +9106,7 @@ class MembersListError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -8578,13 +9116,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersListError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersListError_validator = bv.Union(MembersListError) + class MembersListResult(bb.Struct): """ :ivar MembersListResult.members: @@ -8601,17 +9143,14 @@ class MembersListResult(bb.Struct): """ __slots__ = [ - '_members_value', - '_cursor_value', - '_has_more_value', + "_members_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - members=None, - cursor=None, - has_more=None): + def __init__(self, members=None, cursor=None, has_more=None): self._members_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -8632,10 +9171,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersListResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersListResult_validator = bv.Struct(MembersListResult) + class MembersListV2Result(bb.Struct): """ :ivar MembersListV2Result.members: @@ -8652,17 +9195,14 @@ class MembersListV2Result(bb.Struct): """ __slots__ = [ - '_members_value', - '_cursor_value', - '_has_more_value', + "_members_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - members=None, - cursor=None, - has_more=None): + def __init__(self, members=None, cursor=None, has_more=None): self._members_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -8683,10 +9223,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersListV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersListV2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersListV2Result_validator = bv.Struct(MembersListV2Result) + class MembersRecoverArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -8697,13 +9241,12 @@ class MembersRecoverArg(bb.Struct): """ __slots__ = [ - '_user_value', + "_user_value", ] _has_required_fields = True - def __init__(self, - user=None): + def __init__(self, user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -8712,10 +9255,14 @@ def __init__(self, user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRecoverArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersRecoverArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersRecoverArg_validator = bv.Struct(MembersRecoverArg) + class MembersRecoverError(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8730,7 +9277,7 @@ class MembersRecoverError(UserSelectorError): Team is full. The organization has no available licenses. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition user_unrecoverable = None # Attribute is overwritten below the class definition @@ -8746,7 +9293,7 @@ def is_user_unrecoverable(self): :rtype: bool """ - return self._tag == 'user_unrecoverable' + return self._tag == "user_unrecoverable" def is_user_not_in_team(self): """ @@ -8754,7 +9301,7 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == 'user_not_in_team' + return self._tag == "user_not_in_team" def is_team_license_limit(self): """ @@ -8762,7 +9309,7 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == 'team_license_limit' + return self._tag == "team_license_limit" def is_other(self): """ @@ -8770,13 +9317,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRecoverError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersRecoverError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersRecoverError_validator = bv.Union(MembersRecoverError) + class MembersRemoveArg(MembersDeactivateArg): """ :ivar MembersRemoveArg.transfer_dest_id: @@ -8805,25 +9356,26 @@ class MembersRemoveArg(MembersDeactivateArg): """ __slots__ = [ - '_transfer_dest_id_value', - '_transfer_admin_id_value', - '_keep_account_value', - '_retain_team_shares_value', - '_permanently_delete_files_value', + "_transfer_dest_id_value", + "_transfer_admin_id_value", + "_keep_account_value", + "_retain_team_shares_value", + "_permanently_delete_files_value", ] _has_required_fields = True - def __init__(self, - user=None, - wipe_data=None, - transfer_dest_id=None, - transfer_admin_id=None, - keep_account=None, - retain_team_shares=None, - permanently_delete_files=None): - super(MembersRemoveArg, self).__init__(user, - wipe_data) + def __init__( + self, + user=None, + wipe_data=None, + transfer_dest_id=None, + transfer_admin_id=None, + keep_account=None, + retain_team_shares=None, + permanently_delete_files=None, + ): + super(MembersRemoveArg, self).__init__(user, wipe_data) self._transfer_dest_id_value = bb.NOT_SET self._transfer_admin_id_value = bb.NOT_SET self._keep_account_value = bb.NOT_SET @@ -8856,10 +9408,14 @@ def __init__(self, permanently_delete_files = bb.Attribute("permanently_delete_files") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRemoveArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersRemoveArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersRemoveArg_validator = bv.Struct(MembersRemoveArg) + class MembersTransferFilesError(MembersPermanentlyDeleteFilesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8912,7 +9468,7 @@ def is_removed_and_transfer_dest_should_differ(self): :rtype: bool """ - return self._tag == 'removed_and_transfer_dest_should_differ' + return self._tag == "removed_and_transfer_dest_should_differ" def is_removed_and_transfer_admin_should_differ(self): """ @@ -8920,7 +9476,7 @@ def is_removed_and_transfer_admin_should_differ(self): :rtype: bool """ - return self._tag == 'removed_and_transfer_admin_should_differ' + return self._tag == "removed_and_transfer_admin_should_differ" def is_transfer_dest_user_not_found(self): """ @@ -8928,7 +9484,7 @@ def is_transfer_dest_user_not_found(self): :rtype: bool """ - return self._tag == 'transfer_dest_user_not_found' + return self._tag == "transfer_dest_user_not_found" def is_transfer_dest_user_not_in_team(self): """ @@ -8936,7 +9492,7 @@ def is_transfer_dest_user_not_in_team(self): :rtype: bool """ - return self._tag == 'transfer_dest_user_not_in_team' + return self._tag == "transfer_dest_user_not_in_team" def is_transfer_admin_user_not_in_team(self): """ @@ -8944,7 +9500,7 @@ def is_transfer_admin_user_not_in_team(self): :rtype: bool """ - return self._tag == 'transfer_admin_user_not_in_team' + return self._tag == "transfer_admin_user_not_in_team" def is_transfer_admin_user_not_found(self): """ @@ -8952,7 +9508,7 @@ def is_transfer_admin_user_not_found(self): :rtype: bool """ - return self._tag == 'transfer_admin_user_not_found' + return self._tag == "transfer_admin_user_not_found" def is_unspecified_transfer_admin_id(self): """ @@ -8960,7 +9516,7 @@ def is_unspecified_transfer_admin_id(self): :rtype: bool """ - return self._tag == 'unspecified_transfer_admin_id' + return self._tag == "unspecified_transfer_admin_id" def is_transfer_admin_is_not_admin(self): """ @@ -8968,7 +9524,7 @@ def is_transfer_admin_is_not_admin(self): :rtype: bool """ - return self._tag == 'transfer_admin_is_not_admin' + return self._tag == "transfer_admin_is_not_admin" def is_recipient_not_verified(self): """ @@ -8976,13 +9532,17 @@ def is_recipient_not_verified(self): :rtype: bool """ - return self._tag == 'recipient_not_verified' + return self._tag == "recipient_not_verified" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersTransferFilesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersTransferFilesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersTransferFilesError_validator = bv.Union(MembersTransferFilesError) + class MembersRemoveError(MembersTransferFilesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9066,7 +9626,7 @@ def is_remove_last_admin(self): :rtype: bool """ - return self._tag == 'remove_last_admin' + return self._tag == "remove_last_admin" def is_cannot_keep_account_and_transfer(self): """ @@ -9074,7 +9634,7 @@ def is_cannot_keep_account_and_transfer(self): :rtype: bool """ - return self._tag == 'cannot_keep_account_and_transfer' + return self._tag == "cannot_keep_account_and_transfer" def is_cannot_keep_account_and_delete_data(self): """ @@ -9082,7 +9642,7 @@ def is_cannot_keep_account_and_delete_data(self): :rtype: bool """ - return self._tag == 'cannot_keep_account_and_delete_data' + return self._tag == "cannot_keep_account_and_delete_data" def is_cannot_keep_account_and_permanently_delete(self): """ @@ -9090,7 +9650,7 @@ def is_cannot_keep_account_and_permanently_delete(self): :rtype: bool """ - return self._tag == 'cannot_keep_account_and_permanently_delete' + return self._tag == "cannot_keep_account_and_permanently_delete" def is_email_address_too_long_to_be_disabled(self): """ @@ -9098,7 +9658,7 @@ def is_email_address_too_long_to_be_disabled(self): :rtype: bool """ - return self._tag == 'email_address_too_long_to_be_disabled' + return self._tag == "email_address_too_long_to_be_disabled" def is_cannot_keep_invited_user_account(self): """ @@ -9106,7 +9666,7 @@ def is_cannot_keep_invited_user_account(self): :rtype: bool """ - return self._tag == 'cannot_keep_invited_user_account' + return self._tag == "cannot_keep_invited_user_account" def is_cannot_retain_shares_when_data_wiped(self): """ @@ -9114,7 +9674,7 @@ def is_cannot_retain_shares_when_data_wiped(self): :rtype: bool """ - return self._tag == 'cannot_retain_shares_when_data_wiped' + return self._tag == "cannot_retain_shares_when_data_wiped" def is_cannot_retain_shares_when_no_account_kept(self): """ @@ -9122,7 +9682,7 @@ def is_cannot_retain_shares_when_no_account_kept(self): :rtype: bool """ - return self._tag == 'cannot_retain_shares_when_no_account_kept' + return self._tag == "cannot_retain_shares_when_no_account_kept" def is_cannot_retain_shares_when_team_external_sharing_off(self): """ @@ -9130,7 +9690,7 @@ def is_cannot_retain_shares_when_team_external_sharing_off(self): :rtype: bool """ - return self._tag == 'cannot_retain_shares_when_team_external_sharing_off' + return self._tag == "cannot_retain_shares_when_team_external_sharing_off" def is_cannot_keep_account(self): """ @@ -9138,7 +9698,7 @@ def is_cannot_keep_account(self): :rtype: bool """ - return self._tag == 'cannot_keep_account' + return self._tag == "cannot_keep_account" def is_cannot_keep_account_under_legal_hold(self): """ @@ -9146,7 +9706,7 @@ def is_cannot_keep_account_under_legal_hold(self): :rtype: bool """ - return self._tag == 'cannot_keep_account_under_legal_hold' + return self._tag == "cannot_keep_account_under_legal_hold" def is_cannot_keep_account_required_to_sign_tos(self): """ @@ -9154,7 +9714,7 @@ def is_cannot_keep_account_required_to_sign_tos(self): :rtype: bool """ - return self._tag == 'cannot_keep_account_required_to_sign_tos' + return self._tag == "cannot_keep_account_required_to_sign_tos" def is_cannot_permanently_delete_and_transfer(self): """ @@ -9162,7 +9722,7 @@ def is_cannot_permanently_delete_and_transfer(self): :rtype: bool """ - return self._tag == 'cannot_permanently_delete_and_transfer' + return self._tag == "cannot_permanently_delete_and_transfer" def is_member_is_transfer_destination(self): """ @@ -9170,13 +9730,17 @@ def is_member_is_transfer_destination(self): :rtype: bool """ - return self._tag == 'member_is_transfer_destination' + return self._tag == "member_is_transfer_destination" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRemoveError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersRemoveError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersRemoveError_validator = bv.Union(MembersRemoveError) + class MembersSendWelcomeError(MemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9184,7 +9748,7 @@ class MembersSendWelcomeError(MemberSelectorError): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -9194,13 +9758,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSendWelcomeError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSendWelcomeError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSendWelcomeError_validator = bv.Union(MembersSendWelcomeError) + class MembersSetPermissions2Arg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -9214,15 +9782,13 @@ class MembersSetPermissions2Arg(bb.Struct): """ __slots__ = [ - '_user_value', - '_new_roles_value', + "_user_value", + "_new_roles_value", ] _has_required_fields = True - def __init__(self, - user=None, - new_roles=None): + def __init__(self, user=None, new_roles=None): self._user_value = bb.NOT_SET self._new_roles_value = bb.NOT_SET if user is not None: @@ -9237,10 +9803,14 @@ def __init__(self, new_roles = bb.Attribute("new_roles", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissions2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetPermissions2Arg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetPermissions2Arg_validator = bv.Struct(MembersSetPermissions2Arg) + class MembersSetPermissions2Error(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9259,7 +9829,7 @@ class MembersSetPermissions2Error(UserSelectorError): exist on this team. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition last_admin = None # Attribute is overwritten below the class definition @@ -9277,7 +9847,7 @@ def is_last_admin(self): :rtype: bool """ - return self._tag == 'last_admin' + return self._tag == "last_admin" def is_user_not_in_team(self): """ @@ -9285,7 +9855,7 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == 'user_not_in_team' + return self._tag == "user_not_in_team" def is_cannot_set_permissions(self): """ @@ -9293,7 +9863,7 @@ def is_cannot_set_permissions(self): :rtype: bool """ - return self._tag == 'cannot_set_permissions' + return self._tag == "cannot_set_permissions" def is_role_not_found(self): """ @@ -9301,7 +9871,7 @@ def is_role_not_found(self): :rtype: bool """ - return self._tag == 'role_not_found' + return self._tag == "role_not_found" def is_other(self): """ @@ -9309,13 +9879,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissions2Error, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetPermissions2Error, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetPermissions2Error_validator = bv.Union(MembersSetPermissions2Error) + class MembersSetPermissions2Result(bb.Struct): """ :ivar MembersSetPermissions2Result.team_member_id: @@ -9325,15 +9899,13 @@ class MembersSetPermissions2Result(bb.Struct): """ __slots__ = [ - '_team_member_id_value', - '_roles_value', + "_team_member_id_value", + "_roles_value", ] _has_required_fields = True - def __init__(self, - team_member_id=None, - roles=None): + def __init__(self, team_member_id=None, roles=None): self._team_member_id_value = bb.NOT_SET self._roles_value = bb.NOT_SET if team_member_id is not None: @@ -9348,10 +9920,14 @@ def __init__(self, roles = bb.Attribute("roles", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissions2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetPermissions2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetPermissions2Result_validator = bv.Struct(MembersSetPermissions2Result) + class MembersSetPermissionsArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -9364,15 +9940,13 @@ class MembersSetPermissionsArg(bb.Struct): """ __slots__ = [ - '_user_value', - '_new_role_value', + "_user_value", + "_new_role_value", ] _has_required_fields = True - def __init__(self, - user=None, - new_role=None): + def __init__(self, user=None, new_role=None): self._user_value = bb.NOT_SET self._new_role_value = bb.NOT_SET if user is not None: @@ -9387,10 +9961,14 @@ def __init__(self, new_role = bb.Attribute("new_role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissionsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetPermissionsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetPermissionsArg_validator = bv.Struct(MembersSetPermissionsArg) + class MembersSetPermissionsError(UserSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9407,7 +9985,7 @@ class MembersSetPermissionsError(UserSelectorError): Team is full. The organization has no available licenses. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition last_admin = None # Attribute is overwritten below the class definition @@ -9425,7 +10003,7 @@ def is_last_admin(self): :rtype: bool """ - return self._tag == 'last_admin' + return self._tag == "last_admin" def is_user_not_in_team(self): """ @@ -9433,7 +10011,7 @@ def is_user_not_in_team(self): :rtype: bool """ - return self._tag == 'user_not_in_team' + return self._tag == "user_not_in_team" def is_cannot_set_permissions(self): """ @@ -9441,7 +10019,7 @@ def is_cannot_set_permissions(self): :rtype: bool """ - return self._tag == 'cannot_set_permissions' + return self._tag == "cannot_set_permissions" def is_team_license_limit(self): """ @@ -9449,7 +10027,7 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == 'team_license_limit' + return self._tag == "team_license_limit" def is_other(self): """ @@ -9457,13 +10035,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissionsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetPermissionsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetPermissionsError_validator = bv.Union(MembersSetPermissionsError) + class MembersSetPermissionsResult(bb.Struct): """ :ivar MembersSetPermissionsResult.team_member_id: @@ -9473,15 +10055,13 @@ class MembersSetPermissionsResult(bb.Struct): """ __slots__ = [ - '_team_member_id_value', - '_role_value', + "_team_member_id_value", + "_role_value", ] _has_required_fields = True - def __init__(self, - team_member_id=None, - role=None): + def __init__(self, team_member_id=None, role=None): self._team_member_id_value = bb.NOT_SET self._role_value = bb.NOT_SET if team_member_id is not None: @@ -9496,10 +10076,14 @@ def __init__(self, role = bb.Attribute("role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetPermissionsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetPermissionsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetPermissionsResult_validator = bv.Struct(MembersSetPermissionsResult) + class MembersSetProfileArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -9524,25 +10108,27 @@ class MembersSetProfileArg(bb.Struct): """ __slots__ = [ - '_user_value', - '_new_email_value', - '_new_external_id_value', - '_new_given_name_value', - '_new_surname_value', - '_new_persistent_id_value', - '_new_is_directory_restricted_value', + "_user_value", + "_new_email_value", + "_new_external_id_value", + "_new_given_name_value", + "_new_surname_value", + "_new_persistent_id_value", + "_new_is_directory_restricted_value", ] _has_required_fields = True - def __init__(self, - user=None, - new_email=None, - new_external_id=None, - new_given_name=None, - new_surname=None, - new_persistent_id=None, - new_is_directory_restricted=None): + def __init__( + self, + user=None, + new_email=None, + new_external_id=None, + new_given_name=None, + new_surname=None, + new_persistent_id=None, + new_is_directory_restricted=None, + ): self._user_value = bb.NOT_SET self._new_email_value = bb.NOT_SET self._new_external_id_value = bb.NOT_SET @@ -9587,10 +10173,14 @@ def __init__(self, new_is_directory_restricted = bb.Attribute("new_is_directory_restricted", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetProfileArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetProfileArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetProfileArg_validator = bv.Struct(MembersSetProfileArg) + class MembersSetProfileError(MemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9619,7 +10209,7 @@ class MembersSetProfileError(MemberSelectorError): Directory Restrictions option is not available. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition external_id_and_new_external_id_unsafe = None # Attribute is overwritten below the class definition @@ -9647,7 +10237,7 @@ def is_external_id_and_new_external_id_unsafe(self): :rtype: bool """ - return self._tag == 'external_id_and_new_external_id_unsafe' + return self._tag == "external_id_and_new_external_id_unsafe" def is_no_new_data_specified(self): """ @@ -9655,7 +10245,7 @@ def is_no_new_data_specified(self): :rtype: bool """ - return self._tag == 'no_new_data_specified' + return self._tag == "no_new_data_specified" def is_email_reserved_for_other_user(self): """ @@ -9663,7 +10253,7 @@ def is_email_reserved_for_other_user(self): :rtype: bool """ - return self._tag == 'email_reserved_for_other_user' + return self._tag == "email_reserved_for_other_user" def is_external_id_used_by_other_user(self): """ @@ -9671,7 +10261,7 @@ def is_external_id_used_by_other_user(self): :rtype: bool """ - return self._tag == 'external_id_used_by_other_user' + return self._tag == "external_id_used_by_other_user" def is_set_profile_disallowed(self): """ @@ -9679,7 +10269,7 @@ def is_set_profile_disallowed(self): :rtype: bool """ - return self._tag == 'set_profile_disallowed' + return self._tag == "set_profile_disallowed" def is_param_cannot_be_empty(self): """ @@ -9687,7 +10277,7 @@ def is_param_cannot_be_empty(self): :rtype: bool """ - return self._tag == 'param_cannot_be_empty' + return self._tag == "param_cannot_be_empty" def is_persistent_id_disabled(self): """ @@ -9695,7 +10285,7 @@ def is_persistent_id_disabled(self): :rtype: bool """ - return self._tag == 'persistent_id_disabled' + return self._tag == "persistent_id_disabled" def is_persistent_id_used_by_other_user(self): """ @@ -9703,7 +10293,7 @@ def is_persistent_id_used_by_other_user(self): :rtype: bool """ - return self._tag == 'persistent_id_used_by_other_user' + return self._tag == "persistent_id_used_by_other_user" def is_directory_restricted_off(self): """ @@ -9711,7 +10301,7 @@ def is_directory_restricted_off(self): :rtype: bool """ - return self._tag == 'directory_restricted_off' + return self._tag == "directory_restricted_off" def is_other(self): """ @@ -9719,13 +10309,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetProfileError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetProfileError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetProfileError_validator = bv.Union(MembersSetProfileError) + class MembersSetProfilePhotoArg(bb.Struct): """ :ivar MembersSetProfilePhotoArg.user: @@ -9735,15 +10329,13 @@ class MembersSetProfilePhotoArg(bb.Struct): """ __slots__ = [ - '_user_value', - '_photo_value', + "_user_value", + "_photo_value", ] _has_required_fields = True - def __init__(self, - user=None, - photo=None): + def __init__(self, user=None, photo=None): self._user_value = bb.NOT_SET self._photo_value = bb.NOT_SET if user is not None: @@ -9758,10 +10350,14 @@ def __init__(self, photo = bb.Attribute("photo", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetProfilePhotoArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetProfilePhotoArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetProfilePhotoArg_validator = bv.Struct(MembersSetProfilePhotoArg) + class MembersSetProfilePhotoError(MemberSelectorError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9772,7 +10368,7 @@ class MembersSetProfilePhotoError(MemberSelectorError): Modifying deleted users is not allowed. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition set_profile_disallowed = None # Attribute is overwritten below the class definition @@ -9787,7 +10383,7 @@ def photo_error(cls, val): :param account.SetProfilePhotoError val: :rtype: MembersSetProfilePhotoError """ - return cls('photo_error', val) + return cls("photo_error", val) def is_set_profile_disallowed(self): """ @@ -9795,7 +10391,7 @@ def is_set_profile_disallowed(self): :rtype: bool """ - return self._tag == 'set_profile_disallowed' + return self._tag == "set_profile_disallowed" def is_photo_error(self): """ @@ -9803,7 +10399,7 @@ def is_photo_error(self): :rtype: bool """ - return self._tag == 'photo_error' + return self._tag == "photo_error" def is_other(self): """ @@ -9811,7 +10407,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_photo_error(self): """ @@ -9824,10 +10420,14 @@ def get_photo_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSetProfilePhotoError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSetProfilePhotoError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSetProfilePhotoError_validator = bv.Union(MembersSetProfilePhotoError) + class MembersSuspendError(MembersDeactivateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9855,7 +10455,7 @@ def is_suspend_inactive_user(self): :rtype: bool """ - return self._tag == 'suspend_inactive_user' + return self._tag == "suspend_inactive_user" def is_suspend_last_admin(self): """ @@ -9863,7 +10463,7 @@ def is_suspend_last_admin(self): :rtype: bool """ - return self._tag == 'suspend_last_admin' + return self._tag == "suspend_last_admin" def is_team_license_limit(self): """ @@ -9871,13 +10471,17 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == 'team_license_limit' + return self._tag == "team_license_limit" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersSuspendError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersSuspendError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersSuspendError_validator = bv.Union(MembersSuspendError) + class MembersTransferFormerMembersFilesError(MembersTransferFilesError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9910,7 +10514,7 @@ def is_user_data_is_being_transferred(self): :rtype: bool """ - return self._tag == 'user_data_is_being_transferred' + return self._tag == "user_data_is_being_transferred" def is_user_not_removed(self): """ @@ -9918,7 +10522,7 @@ def is_user_not_removed(self): :rtype: bool """ - return self._tag == 'user_not_removed' + return self._tag == "user_not_removed" def is_user_data_cannot_be_transferred(self): """ @@ -9926,7 +10530,7 @@ def is_user_data_cannot_be_transferred(self): :rtype: bool """ - return self._tag == 'user_data_cannot_be_transferred' + return self._tag == "user_data_cannot_be_transferred" def is_user_data_already_transferred(self): """ @@ -9934,13 +10538,17 @@ def is_user_data_already_transferred(self): :rtype: bool """ - return self._tag == 'user_data_already_transferred' + return self._tag == "user_data_already_transferred" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersTransferFormerMembersFilesError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersTransferFormerMembersFilesError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersTransferFormerMembersFilesError_validator = bv.Union(MembersTransferFormerMembersFilesError) + class MembersUnsuspendArg(bb.Struct): """ Exactly one of team_member_id, email, or external_id must be provided to @@ -9951,13 +10559,12 @@ class MembersUnsuspendArg(bb.Struct): """ __slots__ = [ - '_user_value', + "_user_value", ] _has_required_fields = True - def __init__(self, - user=None): + def __init__(self, user=None): self._user_value = bb.NOT_SET if user is not None: self.user = user @@ -9966,10 +10573,14 @@ def __init__(self, user = bb.Attribute("user", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersUnsuspendArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersUnsuspendArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersUnsuspendArg_validator = bv.Struct(MembersUnsuspendArg) + class MembersUnsuspendError(MembersDeactivateError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9993,7 +10604,7 @@ def is_unsuspend_non_suspended_member(self): :rtype: bool """ - return self._tag == 'unsuspend_non_suspended_member' + return self._tag == "unsuspend_non_suspended_member" def is_team_license_limit(self): """ @@ -10001,13 +10612,17 @@ def is_team_license_limit(self): :rtype: bool """ - return self._tag == 'team_license_limit' + return self._tag == "team_license_limit" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersUnsuspendError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MembersUnsuspendError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MembersUnsuspendError_validator = bv.Union(MembersUnsuspendError) + class MobileClientPlatform(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10026,7 +10641,7 @@ class MobileClientPlatform(bb.Union): Official Dropbox Blackberry client. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition iphone = None # Attribute is overwritten below the class definition @@ -10046,7 +10661,7 @@ def is_iphone(self): :rtype: bool """ - return self._tag == 'iphone' + return self._tag == "iphone" def is_ipad(self): """ @@ -10054,7 +10669,7 @@ def is_ipad(self): :rtype: bool """ - return self._tag == 'ipad' + return self._tag == "ipad" def is_android(self): """ @@ -10062,7 +10677,7 @@ def is_android(self): :rtype: bool """ - return self._tag == 'android' + return self._tag == "android" def is_windows_phone(self): """ @@ -10070,7 +10685,7 @@ def is_windows_phone(self): :rtype: bool """ - return self._tag == 'windows_phone' + return self._tag == "windows_phone" def is_blackberry(self): """ @@ -10078,7 +10693,7 @@ def is_blackberry(self): :rtype: bool """ - return self._tag == 'blackberry' + return self._tag == "blackberry" def is_other(self): """ @@ -10086,13 +10701,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MobileClientPlatform, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MobileClientPlatform, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MobileClientPlatform_validator = bv.Union(MobileClientPlatform) + class MobileClientSession(DeviceSession): """ Information about linked Dropbox mobile client sessions. @@ -10110,31 +10729,29 @@ class MobileClientSession(DeviceSession): """ __slots__ = [ - '_device_name_value', - '_client_type_value', - '_client_version_value', - '_os_version_value', - '_last_carrier_value', + "_device_name_value", + "_client_type_value", + "_client_version_value", + "_os_version_value", + "_last_carrier_value", ] _has_required_fields = True - def __init__(self, - session_id=None, - device_name=None, - client_type=None, - ip_address=None, - country=None, - created=None, - updated=None, - client_version=None, - os_version=None, - last_carrier=None): - super(MobileClientSession, self).__init__(session_id, - ip_address, - country, - created, - updated) + def __init__( + self, + session_id=None, + device_name=None, + client_type=None, + ip_address=None, + country=None, + created=None, + updated=None, + client_version=None, + os_version=None, + last_carrier=None, + ): + super(MobileClientSession, self).__init__(session_id, ip_address, country, created, updated) self._device_name_value = bb.NOT_SET self._client_type_value = bb.NOT_SET self._client_version_value = bb.NOT_SET @@ -10167,10 +10784,14 @@ def __init__(self, last_carrier = bb.Attribute("last_carrier", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MobileClientSession, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MobileClientSession, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MobileClientSession_validator = bv.Struct(MobileClientSession) + class NamespaceMetadata(bb.Struct): """ Properties of a namespace. @@ -10190,21 +10811,23 @@ class NamespaceMetadata(bb.Struct): """ __slots__ = [ - '_name_value', - '_namespace_id_value', - '_namespace_type_value', - '_team_member_id_value', - '_quota_limit_value', + "_name_value", + "_namespace_id_value", + "_namespace_type_value", + "_team_member_id_value", + "_quota_limit_value", ] _has_required_fields = True - def __init__(self, - name=None, - namespace_id=None, - namespace_type=None, - team_member_id=None, - quota_limit=None): + def __init__( + self, + name=None, + namespace_id=None, + namespace_type=None, + team_member_id=None, + quota_limit=None, + ): self._name_value = bb.NOT_SET self._namespace_id_value = bb.NOT_SET self._namespace_type_value = bb.NOT_SET @@ -10237,10 +10860,14 @@ def __init__(self, quota_limit = bb.Attribute("quota_limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NamespaceMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NamespaceMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NamespaceMetadata_validator = bv.Struct(NamespaceMetadata) + class NamespaceType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10259,7 +10886,7 @@ class NamespaceType(bb.Union): Team member's root folder. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition app_folder = None # Attribute is overwritten below the class definition @@ -10279,7 +10906,7 @@ def is_app_folder(self): :rtype: bool """ - return self._tag == 'app_folder' + return self._tag == "app_folder" def is_shared_folder(self): """ @@ -10287,7 +10914,7 @@ def is_shared_folder(self): :rtype: bool """ - return self._tag == 'shared_folder' + return self._tag == "shared_folder" def is_team_folder(self): """ @@ -10295,7 +10922,7 @@ def is_team_folder(self): :rtype: bool """ - return self._tag == 'team_folder' + return self._tag == "team_folder" def is_team_member_folder(self): """ @@ -10303,7 +10930,7 @@ def is_team_member_folder(self): :rtype: bool """ - return self._tag == 'team_member_folder' + return self._tag == "team_member_folder" def is_team_member_root(self): """ @@ -10311,7 +10938,7 @@ def is_team_member_root(self): :rtype: bool """ - return self._tag == 'team_member_root' + return self._tag == "team_member_root" def is_other(self): """ @@ -10319,13 +10946,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NamespaceType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NamespaceType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NamespaceType_validator = bv.Union(NamespaceType) + class RemoveCustomQuotaResult(bb.Union): """ User result for setting member custom quota. @@ -10342,7 +10973,7 @@ class RemoveCustomQuotaResult(bb.Union): :vartype RemoveCustomQuotaResult.invalid_user: UserSelectorArg """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -10355,7 +10986,7 @@ def success(cls, val): :param UserSelectorArg val: :rtype: RemoveCustomQuotaResult """ - return cls('success', val) + return cls("success", val) @classmethod def invalid_user(cls, val): @@ -10366,7 +10997,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: RemoveCustomQuotaResult """ - return cls('invalid_user', val) + return cls("invalid_user", val) def is_success(self): """ @@ -10374,7 +11005,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_invalid_user(self): """ @@ -10382,7 +11013,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == 'invalid_user' + return self._tag == "invalid_user" def is_other(self): """ @@ -10390,7 +11021,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -10417,10 +11048,14 @@ def get_invalid_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemoveCustomQuotaResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemoveCustomQuotaResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemoveCustomQuotaResult_validator = bv.Union(RemoveCustomQuotaResult) + class RemovedStatus(bb.Struct): """ :ivar RemovedStatus.is_recoverable: @@ -10430,15 +11065,13 @@ class RemovedStatus(bb.Struct): """ __slots__ = [ - '_is_recoverable_value', - '_is_disconnected_value', + "_is_recoverable_value", + "_is_disconnected_value", ] _has_required_fields = True - def __init__(self, - is_recoverable=None, - is_disconnected=None): + def __init__(self, is_recoverable=None, is_disconnected=None): self._is_recoverable_value = bb.NOT_SET self._is_disconnected_value = bb.NOT_SET if is_recoverable is not None: @@ -10453,10 +11086,14 @@ def __init__(self, is_disconnected = bb.Attribute("is_disconnected") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RemovedStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RemovedStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RemovedStatus_validator = bv.Struct(RemovedStatus) + class ResendSecondaryEmailResult(bb.Union): """ Result of trying to resend verification email to a secondary email address. @@ -10481,7 +11118,7 @@ class ResendSecondaryEmailResult(bb.Union): :vartype ResendSecondaryEmailResult.rate_limited: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -10494,7 +11131,7 @@ def success(cls, val): :param str val: :rtype: ResendSecondaryEmailResult """ - return cls('success', val) + return cls("success", val) @classmethod def not_pending(cls, val): @@ -10505,7 +11142,7 @@ def not_pending(cls, val): :param str val: :rtype: ResendSecondaryEmailResult """ - return cls('not_pending', val) + return cls("not_pending", val) @classmethod def rate_limited(cls, val): @@ -10516,7 +11153,7 @@ def rate_limited(cls, val): :param str val: :rtype: ResendSecondaryEmailResult """ - return cls('rate_limited', val) + return cls("rate_limited", val) def is_success(self): """ @@ -10524,7 +11161,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_not_pending(self): """ @@ -10532,7 +11169,7 @@ def is_not_pending(self): :rtype: bool """ - return self._tag == 'not_pending' + return self._tag == "not_pending" def is_rate_limited(self): """ @@ -10540,7 +11177,7 @@ def is_rate_limited(self): :rtype: bool """ - return self._tag == 'rate_limited' + return self._tag == "rate_limited" def is_other(self): """ @@ -10548,7 +11185,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -10589,10 +11226,14 @@ def get_rate_limited(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResendSecondaryEmailResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResendSecondaryEmailResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResendSecondaryEmailResult_validator = bv.Union(ResendSecondaryEmailResult) + class ResendVerificationEmailArg(bb.Struct): """ :ivar ResendVerificationEmailArg.emails_to_resend: @@ -10600,13 +11241,12 @@ class ResendVerificationEmailArg(bb.Struct): """ __slots__ = [ - '_emails_to_resend_value', + "_emails_to_resend_value", ] _has_required_fields = True - def __init__(self, - emails_to_resend=None): + def __init__(self, emails_to_resend=None): self._emails_to_resend_value = bb.NOT_SET if emails_to_resend is not None: self.emails_to_resend = emails_to_resend @@ -10615,23 +11255,26 @@ def __init__(self, emails_to_resend = bb.Attribute("emails_to_resend") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResendVerificationEmailArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResendVerificationEmailArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResendVerificationEmailArg_validator = bv.Struct(ResendVerificationEmailArg) + class ResendVerificationEmailResult(bb.Struct): """ List of users and resend results. """ __slots__ = [ - '_results_value', + "_results_value", ] _has_required_fields = True - def __init__(self, - results=None): + def __init__(self, results=None): self._results_value = bb.NOT_SET if results is not None: self.results = results @@ -10640,10 +11283,14 @@ def __init__(self, results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResendVerificationEmailResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResendVerificationEmailResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResendVerificationEmailResult_validator = bv.Struct(ResendVerificationEmailResult) + class RevokeDesktopClientArg(DeviceSessionArg): """ :ivar RevokeDesktopClientArg.delete_on_unlink: @@ -10653,17 +11300,13 @@ class RevokeDesktopClientArg(DeviceSessionArg): """ __slots__ = [ - '_delete_on_unlink_value', + "_delete_on_unlink_value", ] _has_required_fields = True - def __init__(self, - session_id=None, - team_member_id=None, - delete_on_unlink=None): - super(RevokeDesktopClientArg, self).__init__(session_id, - team_member_id) + def __init__(self, session_id=None, team_member_id=None, delete_on_unlink=None): + super(RevokeDesktopClientArg, self).__init__(session_id, team_member_id) self._delete_on_unlink_value = bb.NOT_SET if delete_on_unlink is not None: self.delete_on_unlink = delete_on_unlink @@ -10672,10 +11315,14 @@ def __init__(self, delete_on_unlink = bb.Attribute("delete_on_unlink") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDesktopClientArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeDesktopClientArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeDesktopClientArg_validator = bv.Struct(RevokeDesktopClientArg) + class RevokeDeviceSessionArg(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10704,7 +11351,7 @@ def web_session(cls, val): :param DeviceSessionArg val: :rtype: RevokeDeviceSessionArg """ - return cls('web_session', val) + return cls("web_session", val) @classmethod def desktop_client(cls, val): @@ -10715,7 +11362,7 @@ def desktop_client(cls, val): :param RevokeDesktopClientArg val: :rtype: RevokeDeviceSessionArg """ - return cls('desktop_client', val) + return cls("desktop_client", val) @classmethod def mobile_client(cls, val): @@ -10726,7 +11373,7 @@ def mobile_client(cls, val): :param DeviceSessionArg val: :rtype: RevokeDeviceSessionArg """ - return cls('mobile_client', val) + return cls("mobile_client", val) def is_web_session(self): """ @@ -10734,7 +11381,7 @@ def is_web_session(self): :rtype: bool """ - return self._tag == 'web_session' + return self._tag == "web_session" def is_desktop_client(self): """ @@ -10742,7 +11389,7 @@ def is_desktop_client(self): :rtype: bool """ - return self._tag == 'desktop_client' + return self._tag == "desktop_client" def is_mobile_client(self): """ @@ -10750,7 +11397,7 @@ def is_mobile_client(self): :rtype: bool """ - return self._tag == 'mobile_client' + return self._tag == "mobile_client" def get_web_session(self): """ @@ -10789,20 +11436,22 @@ def get_mobile_client(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeDeviceSessionArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeDeviceSessionArg_validator = bv.Union(RevokeDeviceSessionArg) -class RevokeDeviceSessionBatchArg(bb.Struct): +class RevokeDeviceSessionBatchArg(bb.Struct): __slots__ = [ - '_revoke_devices_value', + "_revoke_devices_value", ] _has_required_fields = True - def __init__(self, - revoke_devices=None): + def __init__(self, revoke_devices=None): self._revoke_devices_value = bb.NOT_SET if revoke_devices is not None: self.revoke_devices = revoke_devices @@ -10811,10 +11460,14 @@ def __init__(self, revoke_devices = bb.Attribute("revoke_devices") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeDeviceSessionBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeDeviceSessionBatchArg_validator = bv.Struct(RevokeDeviceSessionBatchArg) + class RevokeDeviceSessionBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10822,7 +11475,7 @@ class RevokeDeviceSessionBatchError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -10832,23 +11485,25 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeDeviceSessionBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeDeviceSessionBatchError_validator = bv.Union(RevokeDeviceSessionBatchError) -class RevokeDeviceSessionBatchResult(bb.Struct): +class RevokeDeviceSessionBatchResult(bb.Struct): __slots__ = [ - '_revoke_devices_status_value', + "_revoke_devices_status_value", ] _has_required_fields = True - def __init__(self, - revoke_devices_status=None): + def __init__(self, revoke_devices_status=None): self._revoke_devices_status_value = bb.NOT_SET if revoke_devices_status is not None: self.revoke_devices_status = revoke_devices_status @@ -10857,10 +11512,14 @@ def __init__(self, revoke_devices_status = bb.Attribute("revoke_devices_status") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeDeviceSessionBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeDeviceSessionBatchResult_validator = bv.Struct(RevokeDeviceSessionBatchResult) + class RevokeDeviceSessionError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -10873,7 +11532,7 @@ class RevokeDeviceSessionError(bb.Union): Member not found. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition device_session_not_found = None # Attribute is overwritten below the class definition @@ -10887,7 +11546,7 @@ def is_device_session_not_found(self): :rtype: bool """ - return self._tag == 'device_session_not_found' + return self._tag == "device_session_not_found" def is_member_not_found(self): """ @@ -10895,7 +11554,7 @@ def is_member_not_found(self): :rtype: bool """ - return self._tag == 'member_not_found' + return self._tag == "member_not_found" def is_other(self): """ @@ -10903,13 +11562,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeDeviceSessionError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeDeviceSessionError_validator = bv.Union(RevokeDeviceSessionError) + class RevokeDeviceSessionStatus(bb.Struct): """ :ivar RevokeDeviceSessionStatus.success: @@ -10919,15 +11582,13 @@ class RevokeDeviceSessionStatus(bb.Struct): """ __slots__ = [ - '_success_value', - '_error_type_value', + "_success_value", + "_error_type_value", ] _has_required_fields = True - def __init__(self, - success=None, - error_type=None): + def __init__(self, success=None, error_type=None): self._success_value = bb.NOT_SET self._error_type_value = bb.NOT_SET if success is not None: @@ -10942,10 +11603,14 @@ def __init__(self, error_type = bb.Attribute("error_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeDeviceSessionStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeDeviceSessionStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeDeviceSessionStatus_validator = bv.Struct(RevokeDeviceSessionStatus) + class RevokeLinkedApiAppArg(bb.Struct): """ :ivar RevokeLinkedApiAppArg.app_id: @@ -10958,17 +11623,14 @@ class RevokeLinkedApiAppArg(bb.Struct): """ __slots__ = [ - '_app_id_value', - '_team_member_id_value', - '_keep_app_folder_value', + "_app_id_value", + "_team_member_id_value", + "_keep_app_folder_value", ] _has_required_fields = True - def __init__(self, - app_id=None, - team_member_id=None, - keep_app_folder=None): + def __init__(self, app_id=None, team_member_id=None, keep_app_folder=None): self._app_id_value = bb.NOT_SET self._team_member_id_value = bb.NOT_SET self._keep_app_folder_value = bb.NOT_SET @@ -10989,20 +11651,22 @@ def __init__(self, keep_app_folder = bb.Attribute("keep_app_folder") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedApiAppArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeLinkedApiAppArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeLinkedApiAppArg_validator = bv.Struct(RevokeLinkedApiAppArg) -class RevokeLinkedApiAppBatchArg(bb.Struct): +class RevokeLinkedApiAppBatchArg(bb.Struct): __slots__ = [ - '_revoke_linked_app_value', + "_revoke_linked_app_value", ] _has_required_fields = True - def __init__(self, - revoke_linked_app=None): + def __init__(self, revoke_linked_app=None): self._revoke_linked_app_value = bb.NOT_SET if revoke_linked_app is not None: self.revoke_linked_app = revoke_linked_app @@ -11011,10 +11675,14 @@ def __init__(self, revoke_linked_app = bb.Attribute("revoke_linked_app") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedApiAppBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeLinkedApiAppBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeLinkedApiAppBatchArg_validator = bv.Struct(RevokeLinkedApiAppBatchArg) + class RevokeLinkedAppBatchError(bb.Union): """ Error returned by @@ -11025,7 +11693,7 @@ class RevokeLinkedAppBatchError(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -11035,23 +11703,25 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedAppBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeLinkedAppBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeLinkedAppBatchError_validator = bv.Union(RevokeLinkedAppBatchError) -class RevokeLinkedAppBatchResult(bb.Struct): +class RevokeLinkedAppBatchResult(bb.Struct): __slots__ = [ - '_revoke_linked_app_status_value', + "_revoke_linked_app_status_value", ] _has_required_fields = True - def __init__(self, - revoke_linked_app_status=None): + def __init__(self, revoke_linked_app_status=None): self._revoke_linked_app_status_value = bb.NOT_SET if revoke_linked_app_status is not None: self.revoke_linked_app_status = revoke_linked_app_status @@ -11060,10 +11730,14 @@ def __init__(self, revoke_linked_app_status = bb.Attribute("revoke_linked_app_status") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedAppBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeLinkedAppBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeLinkedAppBatchResult_validator = bv.Struct(RevokeLinkedAppBatchResult) + class RevokeLinkedAppError(bb.Union): """ Error returned by @@ -11081,7 +11755,7 @@ class RevokeLinkedAppError(bb.Union): App folder removal is not supported. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition app_not_found = None # Attribute is overwritten below the class definition @@ -11097,7 +11771,7 @@ def is_app_not_found(self): :rtype: bool """ - return self._tag == 'app_not_found' + return self._tag == "app_not_found" def is_member_not_found(self): """ @@ -11105,7 +11779,7 @@ def is_member_not_found(self): :rtype: bool """ - return self._tag == 'member_not_found' + return self._tag == "member_not_found" def is_app_folder_removal_not_supported(self): """ @@ -11113,7 +11787,7 @@ def is_app_folder_removal_not_supported(self): :rtype: bool """ - return self._tag == 'app_folder_removal_not_supported' + return self._tag == "app_folder_removal_not_supported" def is_other(self): """ @@ -11121,13 +11795,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedAppError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeLinkedAppError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeLinkedAppError_validator = bv.Union(RevokeLinkedAppError) + class RevokeLinkedAppStatus(bb.Struct): """ :ivar RevokeLinkedAppStatus.success: @@ -11137,15 +11815,13 @@ class RevokeLinkedAppStatus(bb.Struct): """ __slots__ = [ - '_success_value', - '_error_type_value', + "_success_value", + "_error_type_value", ] _has_required_fields = True - def __init__(self, - success=None, - error_type=None): + def __init__(self, success=None, error_type=None): self._success_value = bb.NOT_SET self._error_type_value = bb.NOT_SET if success is not None: @@ -11160,10 +11836,14 @@ def __init__(self, error_type = bb.Attribute("error_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RevokeLinkedAppStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RevokeLinkedAppStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RevokeLinkedAppStatus_validator = bv.Struct(RevokeLinkedAppStatus) + class SetCustomQuotaArg(bb.Struct): """ :ivar SetCustomQuotaArg.users_and_quotas: @@ -11171,13 +11851,12 @@ class SetCustomQuotaArg(bb.Struct): """ __slots__ = [ - '_users_and_quotas_value', + "_users_and_quotas_value", ] _has_required_fields = True - def __init__(self, - users_and_quotas=None): + def __init__(self, users_and_quotas=None): self._users_and_quotas_value = bb.NOT_SET if users_and_quotas is not None: self.users_and_quotas = users_and_quotas @@ -11186,10 +11865,14 @@ def __init__(self, users_and_quotas = bb.Attribute("users_and_quotas") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetCustomQuotaArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SetCustomQuotaArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SetCustomQuotaArg_validator = bv.Struct(SetCustomQuotaArg) + class SetCustomQuotaError(CustomQuotaError): """ Error returned when setting member custom quota. @@ -11212,13 +11895,17 @@ def is_some_users_are_excluded(self): :rtype: bool """ - return self._tag == 'some_users_are_excluded' + return self._tag == "some_users_are_excluded" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SetCustomQuotaError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SetCustomQuotaError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SetCustomQuotaError_validator = bv.Union(SetCustomQuotaError) + class SharingAllowlistAddArgs(bb.Struct): """ Structure representing Approve List entries. Domain and emails are @@ -11232,15 +11919,13 @@ class SharingAllowlistAddArgs(bb.Struct): """ __slots__ = [ - '_domains_value', - '_emails_value', + "_domains_value", + "_emails_value", ] _has_required_fields = False - def __init__(self, - domains=None, - emails=None): + def __init__(self, domains=None, emails=None): self._domains_value = bb.NOT_SET self._emails_value = bb.NOT_SET if domains is not None: @@ -11255,10 +11940,14 @@ def __init__(self, emails = bb.Attribute("emails", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistAddArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistAddArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistAddArgs_validator = bv.Struct(SharingAllowlistAddArgs) + class SharingAllowlistAddError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11281,7 +11970,7 @@ class SharingAllowlistAddError(bb.Union): :vartype SharingAllowlistAddError.entries_already_exist: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_entries_provided = None # Attribute is overwritten below the class definition @@ -11302,7 +11991,7 @@ def malformed_entry(cls, val): :param str val: :rtype: SharingAllowlistAddError """ - return cls('malformed_entry', val) + return cls("malformed_entry", val) @classmethod def entries_already_exist(cls, val): @@ -11313,7 +12002,7 @@ def entries_already_exist(cls, val): :param str val: :rtype: SharingAllowlistAddError """ - return cls('entries_already_exist', val) + return cls("entries_already_exist", val) def is_malformed_entry(self): """ @@ -11321,7 +12010,7 @@ def is_malformed_entry(self): :rtype: bool """ - return self._tag == 'malformed_entry' + return self._tag == "malformed_entry" def is_no_entries_provided(self): """ @@ -11329,7 +12018,7 @@ def is_no_entries_provided(self): :rtype: bool """ - return self._tag == 'no_entries_provided' + return self._tag == "no_entries_provided" def is_too_many_entries_provided(self): """ @@ -11337,7 +12026,7 @@ def is_too_many_entries_provided(self): :rtype: bool """ - return self._tag == 'too_many_entries_provided' + return self._tag == "too_many_entries_provided" def is_team_limit_reached(self): """ @@ -11345,7 +12034,7 @@ def is_team_limit_reached(self): :rtype: bool """ - return self._tag == 'team_limit_reached' + return self._tag == "team_limit_reached" def is_unknown_error(self): """ @@ -11353,7 +12042,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == 'unknown_error' + return self._tag == "unknown_error" def is_entries_already_exist(self): """ @@ -11361,7 +12050,7 @@ def is_entries_already_exist(self): :rtype: bool """ - return self._tag == 'entries_already_exist' + return self._tag == "entries_already_exist" def is_other(self): """ @@ -11369,7 +12058,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_malformed_entry(self): """ @@ -11396,18 +12085,21 @@ def get_entries_already_exist(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistAddError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistAddError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistAddError_validator = bv.Union(SharingAllowlistAddError) + class SharingAllowlistAddResponse(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -11415,10 +12107,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistAddResponse, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistAddResponse, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistAddResponse_validator = bv.Struct(SharingAllowlistAddResponse) + class SharingAllowlistListArg(bb.Struct): """ :ivar SharingAllowlistListArg.limit: @@ -11426,13 +12122,12 @@ class SharingAllowlistListArg(bb.Struct): """ __slots__ = [ - '_limit_value', + "_limit_value", ] _has_required_fields = False - def __init__(self, - limit=None): + def __init__(self, limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -11441,10 +12136,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistListArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistListArg_validator = bv.Struct(SharingAllowlistListArg) + class SharingAllowlistListContinueArg(bb.Struct): """ :ivar SharingAllowlistListContinueArg.cursor: @@ -11454,13 +12153,12 @@ class SharingAllowlistListContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -11469,10 +12167,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistListContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistListContinueArg_validator = bv.Struct(SharingAllowlistListContinueArg) + class SharingAllowlistListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11483,7 +12185,7 @@ class SharingAllowlistListContinueError(bb.Union): Provided cursor is not valid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -11495,7 +12197,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -11503,21 +12205,24 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistListContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistListContinueError_validator = bv.Union(SharingAllowlistListContinueError) + class SharingAllowlistListError(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -11525,10 +12230,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistListError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistListError_validator = bv.Struct(SharingAllowlistListError) + class SharingAllowlistListResponse(bb.Struct): """ :ivar SharingAllowlistListResponse.domains: @@ -11545,19 +12254,15 @@ class SharingAllowlistListResponse(bb.Struct): """ __slots__ = [ - '_domains_value', - '_emails_value', - '_cursor_value', - '_has_more_value', + "_domains_value", + "_emails_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - domains=None, - emails=None, - cursor=None, - has_more=None): + def __init__(self, domains=None, emails=None, cursor=None, has_more=None): self._domains_value = bb.NOT_SET self._emails_value = bb.NOT_SET self._cursor_value = bb.NOT_SET @@ -11584,10 +12289,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistListResponse, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistListResponse, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistListResponse_validator = bv.Struct(SharingAllowlistListResponse) + class SharingAllowlistRemoveArgs(bb.Struct): """ :ivar SharingAllowlistRemoveArgs.domains: @@ -11598,15 +12307,13 @@ class SharingAllowlistRemoveArgs(bb.Struct): """ __slots__ = [ - '_domains_value', - '_emails_value', + "_domains_value", + "_emails_value", ] _has_required_fields = False - def __init__(self, - domains=None, - emails=None): + def __init__(self, domains=None, emails=None): self._domains_value = bb.NOT_SET self._emails_value = bb.NOT_SET if domains is not None: @@ -11621,10 +12328,14 @@ def __init__(self, emails = bb.Attribute("emails", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistRemoveArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistRemoveArgs, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistRemoveArgs_validator = bv.Struct(SharingAllowlistRemoveArgs) + class SharingAllowlistRemoveError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11645,7 +12356,7 @@ class SharingAllowlistRemoveError(bb.Union): Unknown error. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_entries_provided = None # Attribute is overwritten below the class definition @@ -11664,7 +12375,7 @@ def malformed_entry(cls, val): :param str val: :rtype: SharingAllowlistRemoveError """ - return cls('malformed_entry', val) + return cls("malformed_entry", val) @classmethod def entries_do_not_exist(cls, val): @@ -11675,7 +12386,7 @@ def entries_do_not_exist(cls, val): :param str val: :rtype: SharingAllowlistRemoveError """ - return cls('entries_do_not_exist', val) + return cls("entries_do_not_exist", val) def is_malformed_entry(self): """ @@ -11683,7 +12394,7 @@ def is_malformed_entry(self): :rtype: bool """ - return self._tag == 'malformed_entry' + return self._tag == "malformed_entry" def is_entries_do_not_exist(self): """ @@ -11691,7 +12402,7 @@ def is_entries_do_not_exist(self): :rtype: bool """ - return self._tag == 'entries_do_not_exist' + return self._tag == "entries_do_not_exist" def is_no_entries_provided(self): """ @@ -11699,7 +12410,7 @@ def is_no_entries_provided(self): :rtype: bool """ - return self._tag == 'no_entries_provided' + return self._tag == "no_entries_provided" def is_too_many_entries_provided(self): """ @@ -11707,7 +12418,7 @@ def is_too_many_entries_provided(self): :rtype: bool """ - return self._tag == 'too_many_entries_provided' + return self._tag == "too_many_entries_provided" def is_unknown_error(self): """ @@ -11715,7 +12426,7 @@ def is_unknown_error(self): :rtype: bool """ - return self._tag == 'unknown_error' + return self._tag == "unknown_error" def is_other(self): """ @@ -11723,7 +12434,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_malformed_entry(self): """ @@ -11750,18 +12461,21 @@ def get_entries_do_not_exist(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistRemoveError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistRemoveError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistRemoveError_validator = bv.Union(SharingAllowlistRemoveError) + class SharingAllowlistRemoveResponse(bb.Struct): """ This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -11769,10 +12483,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingAllowlistRemoveResponse, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingAllowlistRemoveResponse, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingAllowlistRemoveResponse_validator = bv.Struct(SharingAllowlistRemoveResponse) + class StorageBucket(bb.Struct): """ Describes the number of users in a specific storage bucket. @@ -11786,15 +12504,13 @@ class StorageBucket(bb.Struct): """ __slots__ = [ - '_bucket_value', - '_users_value', + "_bucket_value", + "_users_value", ] _has_required_fields = True - def __init__(self, - bucket=None, - users=None): + def __init__(self, bucket=None, users=None): self._bucket_value = bb.NOT_SET self._users_value = bb.NOT_SET if bucket is not None: @@ -11809,10 +12525,14 @@ def __init__(self, users = bb.Attribute("users") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StorageBucket, self)._process_custom_annotations(annotation_type, field_path, processor) + super(StorageBucket, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + StorageBucket_validator = bv.Struct(StorageBucket) + class TeamFolderAccessError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11826,7 +12546,7 @@ class TeamFolderAccessError(bb.Union): folder. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_team_folder_id = None # Attribute is overwritten below the class definition @@ -11840,7 +12560,7 @@ def is_invalid_team_folder_id(self): :rtype: bool """ - return self._tag == 'invalid_team_folder_id' + return self._tag == "invalid_team_folder_id" def is_no_access(self): """ @@ -11848,7 +12568,7 @@ def is_no_access(self): :rtype: bool """ - return self._tag == 'no_access' + return self._tag == "no_access" def is_other(self): """ @@ -11856,13 +12576,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderAccessError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderAccessError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderAccessError_validator = bv.Union(TeamFolderAccessError) + class TeamFolderActivateError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11871,10 +12595,14 @@ class TeamFolderActivateError(BaseTeamFolderError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderActivateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderActivateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderActivateError_validator = bv.Union(TeamFolderActivateError) + class TeamFolderIdArg(bb.Struct): """ :ivar TeamFolderIdArg.team_folder_id: @@ -11882,13 +12610,12 @@ class TeamFolderIdArg(bb.Struct): """ __slots__ = [ - '_team_folder_id_value', + "_team_folder_id_value", ] _has_required_fields = True - def __init__(self, - team_folder_id=None): + def __init__(self, team_folder_id=None): self._team_folder_id_value = bb.NOT_SET if team_folder_id is not None: self.team_folder_id = team_folder_id @@ -11897,10 +12624,14 @@ def __init__(self, team_folder_id = bb.Attribute("team_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderIdArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderIdArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderIdArg_validator = bv.Struct(TeamFolderIdArg) + class TeamFolderArchiveArg(TeamFolderIdArg): """ :ivar TeamFolderArchiveArg.force_async_off: @@ -11908,14 +12639,12 @@ class TeamFolderArchiveArg(TeamFolderIdArg): """ __slots__ = [ - '_force_async_off_value', + "_force_async_off_value", ] _has_required_fields = True - def __init__(self, - team_folder_id=None, - force_async_off=None): + def __init__(self, team_folder_id=None, force_async_off=None): super(TeamFolderArchiveArg, self).__init__(team_folder_id) self._force_async_off_value = bb.NOT_SET if force_async_off is not None: @@ -11925,10 +12654,14 @@ def __init__(self, force_async_off = bb.Attribute("force_async_off") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderArchiveArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderArchiveArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderArchiveArg_validator = bv.Struct(TeamFolderArchiveArg) + class TeamFolderArchiveError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11937,10 +12670,14 @@ class TeamFolderArchiveError(BaseTeamFolderError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderArchiveError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderArchiveError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderArchiveError_validator = bv.Union(TeamFolderArchiveError) + class TeamFolderArchiveJobStatus(async_.PollResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -11966,7 +12703,7 @@ def complete(cls, val): :param TeamFolderMetadata val: :rtype: TeamFolderArchiveJobStatus """ - return cls('complete', val) + return cls("complete", val) @classmethod def failed(cls, val): @@ -11977,7 +12714,7 @@ def failed(cls, val): :param TeamFolderArchiveError val: :rtype: TeamFolderArchiveJobStatus """ - return cls('failed', val) + return cls("failed", val) def is_complete(self): """ @@ -11985,7 +12722,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def is_failed(self): """ @@ -11993,7 +12730,7 @@ def is_failed(self): :rtype: bool """ - return self._tag == 'failed' + return self._tag == "failed" def get_complete(self): """ @@ -12022,10 +12759,14 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderArchiveJobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderArchiveJobStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderArchiveJobStatus_validator = bv.Union(TeamFolderArchiveJobStatus) + class TeamFolderArchiveLaunch(async_.LaunchResultBase): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12042,7 +12783,7 @@ def complete(cls, val): :param TeamFolderMetadata val: :rtype: TeamFolderArchiveLaunch """ - return cls('complete', val) + return cls("complete", val) def is_complete(self): """ @@ -12050,7 +12791,7 @@ def is_complete(self): :rtype: bool """ - return self._tag == 'complete' + return self._tag == "complete" def get_complete(self): """ @@ -12063,10 +12804,14 @@ def get_complete(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderArchiveLaunch, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderArchiveLaunch, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderArchiveLaunch_validator = bv.Union(TeamFolderArchiveLaunch) + class TeamFolderCreateArg(bb.Struct): """ :ivar TeamFolderCreateArg.name: @@ -12077,15 +12822,13 @@ class TeamFolderCreateArg(bb.Struct): """ __slots__ = [ - '_name_value', - '_sync_setting_value', + "_name_value", + "_sync_setting_value", ] _has_required_fields = True - def __init__(self, - name=None, - sync_setting=None): + def __init__(self, name=None, sync_setting=None): self._name_value = bb.NOT_SET self._sync_setting_value = bb.NOT_SET if name is not None: @@ -12100,10 +12843,14 @@ def __init__(self, sync_setting = bb.Attribute("sync_setting", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderCreateArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderCreateArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderCreateArg_validator = bv.Struct(TeamFolderCreateArg) + class TeamFolderCreateError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12124,7 +12871,7 @@ class TeamFolderCreateError(bb.Union): plan. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_folder_name = None # Attribute is overwritten below the class definition @@ -12145,7 +12892,7 @@ def sync_settings_error(cls, val): :param files.SyncSettingsError val: :rtype: TeamFolderCreateError """ - return cls('sync_settings_error', val) + return cls("sync_settings_error", val) def is_invalid_folder_name(self): """ @@ -12153,7 +12900,7 @@ def is_invalid_folder_name(self): :rtype: bool """ - return self._tag == 'invalid_folder_name' + return self._tag == "invalid_folder_name" def is_folder_name_already_used(self): """ @@ -12161,7 +12908,7 @@ def is_folder_name_already_used(self): :rtype: bool """ - return self._tag == 'folder_name_already_used' + return self._tag == "folder_name_already_used" def is_folder_name_reserved(self): """ @@ -12169,7 +12916,7 @@ def is_folder_name_reserved(self): :rtype: bool """ - return self._tag == 'folder_name_reserved' + return self._tag == "folder_name_reserved" def is_sync_settings_error(self): """ @@ -12177,7 +12924,7 @@ def is_sync_settings_error(self): :rtype: bool """ - return self._tag == 'sync_settings_error' + return self._tag == "sync_settings_error" def is_folder_count_limit_exceeded(self): """ @@ -12185,7 +12932,7 @@ def is_folder_count_limit_exceeded(self): :rtype: bool """ - return self._tag == 'folder_count_limit_exceeded' + return self._tag == "folder_count_limit_exceeded" def is_other(self): """ @@ -12193,7 +12940,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_sync_settings_error(self): """ @@ -12208,10 +12955,14 @@ def get_sync_settings_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderCreateError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderCreateError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderCreateError_validator = bv.Union(TeamFolderCreateError) + class TeamFolderGetInfoItem(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12239,7 +12990,7 @@ def id_not_found(cls, val): :param str val: :rtype: TeamFolderGetInfoItem """ - return cls('id_not_found', val) + return cls("id_not_found", val) @classmethod def team_folder_metadata(cls, val): @@ -12250,7 +13001,7 @@ def team_folder_metadata(cls, val): :param TeamFolderMetadata val: :rtype: TeamFolderGetInfoItem """ - return cls('team_folder_metadata', val) + return cls("team_folder_metadata", val) def is_id_not_found(self): """ @@ -12258,7 +13009,7 @@ def is_id_not_found(self): :rtype: bool """ - return self._tag == 'id_not_found' + return self._tag == "id_not_found" def is_team_folder_metadata(self): """ @@ -12266,7 +13017,7 @@ def is_team_folder_metadata(self): :rtype: bool """ - return self._tag == 'team_folder_metadata' + return self._tag == "team_folder_metadata" def get_id_not_found(self): """ @@ -12295,10 +13046,14 @@ def get_team_folder_metadata(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderGetInfoItem, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderGetInfoItem, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderGetInfoItem_validator = bv.Union(TeamFolderGetInfoItem) + class TeamFolderIdListArg(bb.Struct): """ :ivar TeamFolderIdListArg.team_folder_ids: @@ -12306,13 +13061,12 @@ class TeamFolderIdListArg(bb.Struct): """ __slots__ = [ - '_team_folder_ids_value', + "_team_folder_ids_value", ] _has_required_fields = True - def __init__(self, - team_folder_ids=None): + def __init__(self, team_folder_ids=None): self._team_folder_ids_value = bb.NOT_SET if team_folder_ids is not None: self.team_folder_ids = team_folder_ids @@ -12321,10 +13075,14 @@ def __init__(self, team_folder_ids = bb.Attribute("team_folder_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderIdListArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderIdListArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderIdListArg_validator = bv.Struct(TeamFolderIdListArg) + class TeamFolderInvalidStatusError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12339,7 +13097,7 @@ class TeamFolderInvalidStatusError(bb.Union): The folder is being archived and the operation did not succeed. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -12355,7 +13113,7 @@ def is_active(self): :rtype: bool """ - return self._tag == 'active' + return self._tag == "active" def is_archived(self): """ @@ -12363,7 +13121,7 @@ def is_archived(self): :rtype: bool """ - return self._tag == 'archived' + return self._tag == "archived" def is_archive_in_progress(self): """ @@ -12371,7 +13129,7 @@ def is_archive_in_progress(self): :rtype: bool """ - return self._tag == 'archive_in_progress' + return self._tag == "archive_in_progress" def is_other(self): """ @@ -12379,13 +13137,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderInvalidStatusError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderInvalidStatusError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderInvalidStatusError_validator = bv.Union(TeamFolderInvalidStatusError) + class TeamFolderListArg(bb.Struct): """ :ivar TeamFolderListArg.limit: @@ -12393,13 +13155,12 @@ class TeamFolderListArg(bb.Struct): """ __slots__ = [ - '_limit_value', + "_limit_value", ] _has_required_fields = False - def __init__(self, - limit=None): + def __init__(self, limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -12408,10 +13169,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderListArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderListArg_validator = bv.Struct(TeamFolderListArg) + class TeamFolderListContinueArg(bb.Struct): """ :ivar TeamFolderListContinueArg.cursor: @@ -12419,13 +13184,12 @@ class TeamFolderListContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -12434,10 +13198,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderListContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderListContinueArg_validator = bv.Struct(TeamFolderListContinueArg) + class TeamFolderListContinueError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12448,7 +13216,7 @@ class TeamFolderListContinueError(bb.Union): The cursor is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_cursor = None # Attribute is overwritten below the class definition @@ -12460,7 +13228,7 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def is_other(self): """ @@ -12468,23 +13236,25 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderListContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderListContinueError_validator = bv.Union(TeamFolderListContinueError) -class TeamFolderListError(bb.Struct): +class TeamFolderListError(bb.Struct): __slots__ = [ - '_access_error_value', + "_access_error_value", ] _has_required_fields = True - def __init__(self, - access_error=None): + def __init__(self, access_error=None): self._access_error_value = bb.NOT_SET if access_error is not None: self.access_error = access_error @@ -12493,10 +13263,14 @@ def __init__(self, access_error = bb.Attribute("access_error", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderListError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderListError_validator = bv.Struct(TeamFolderListError) + class TeamFolderListResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.team_team_folder_list` and @@ -12516,17 +13290,14 @@ class TeamFolderListResult(bb.Struct): """ __slots__ = [ - '_team_folders_value', - '_cursor_value', - '_has_more_value', + "_team_folders_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - team_folders=None, - cursor=None, - has_more=None): + def __init__(self, team_folders=None, cursor=None, has_more=None): self._team_folders_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -12547,10 +13318,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderListResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderListResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderListResult_validator = bv.Struct(TeamFolderListResult) + class TeamFolderMetadata(bb.Struct): """ Properties of a team folder. @@ -12572,25 +13347,27 @@ class TeamFolderMetadata(bb.Struct): """ __slots__ = [ - '_team_folder_id_value', - '_name_value', - '_status_value', - '_is_team_shared_dropbox_value', - '_sync_setting_value', - '_content_sync_settings_value', - '_quota_limit_value', + "_team_folder_id_value", + "_name_value", + "_status_value", + "_is_team_shared_dropbox_value", + "_sync_setting_value", + "_content_sync_settings_value", + "_quota_limit_value", ] _has_required_fields = True - def __init__(self, - team_folder_id=None, - name=None, - status=None, - is_team_shared_dropbox=None, - sync_setting=None, - content_sync_settings=None, - quota_limit=None): + def __init__( + self, + team_folder_id=None, + name=None, + status=None, + is_team_shared_dropbox=None, + sync_setting=None, + content_sync_settings=None, + quota_limit=None, + ): self._team_folder_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._status_value = bb.NOT_SET @@ -12635,10 +13412,14 @@ def __init__(self, quota_limit = bb.Attribute("quota_limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderMetadata, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderMetadata_validator = bv.Struct(TeamFolderMetadata) + class TeamFolderPermanentlyDeleteError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12647,10 +13428,14 @@ class TeamFolderPermanentlyDeleteError(BaseTeamFolderError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderPermanentlyDeleteError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderPermanentlyDeleteError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderPermanentlyDeleteError_validator = bv.Union(TeamFolderPermanentlyDeleteError) + class TeamFolderRenameArg(TeamFolderIdArg): """ :ivar TeamFolderRenameArg.name: @@ -12658,14 +13443,12 @@ class TeamFolderRenameArg(TeamFolderIdArg): """ __slots__ = [ - '_name_value', + "_name_value", ] _has_required_fields = True - def __init__(self, - team_folder_id=None, - name=None): + def __init__(self, team_folder_id=None, name=None): super(TeamFolderRenameArg, self).__init__(team_folder_id) self._name_value = bb.NOT_SET if name is not None: @@ -12675,10 +13458,14 @@ def __init__(self, name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRenameArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderRenameArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderRenameArg_validator = bv.Struct(TeamFolderRenameArg) + class TeamFolderRenameError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12706,7 +13493,7 @@ def is_invalid_folder_name(self): :rtype: bool """ - return self._tag == 'invalid_folder_name' + return self._tag == "invalid_folder_name" def is_folder_name_already_used(self): """ @@ -12714,7 +13501,7 @@ def is_folder_name_already_used(self): :rtype: bool """ - return self._tag == 'folder_name_already_used' + return self._tag == "folder_name_already_used" def is_folder_name_reserved(self): """ @@ -12722,13 +13509,17 @@ def is_folder_name_reserved(self): :rtype: bool """ - return self._tag == 'folder_name_reserved' + return self._tag == "folder_name_reserved" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRenameError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderRenameError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderRenameError_validator = bv.Union(TeamFolderRenameError) + class TeamFolderRestoreError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12737,10 +13528,14 @@ class TeamFolderRestoreError(BaseTeamFolderError): """ def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRestoreError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderRestoreError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderRestoreError_validator = bv.Union(TeamFolderRestoreError) + class TeamFolderStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12759,7 +13554,7 @@ class TeamFolderStatus(bb.Union): The team folder is unmounted and can be restored. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -12777,7 +13572,7 @@ def is_active(self): :rtype: bool """ - return self._tag == 'active' + return self._tag == "active" def is_archived(self): """ @@ -12785,7 +13580,7 @@ def is_archived(self): :rtype: bool """ - return self._tag == 'archived' + return self._tag == "archived" def is_archive_in_progress(self): """ @@ -12793,7 +13588,7 @@ def is_archive_in_progress(self): :rtype: bool """ - return self._tag == 'archive_in_progress' + return self._tag == "archive_in_progress" def is_inactive(self): """ @@ -12801,7 +13596,7 @@ def is_inactive(self): :rtype: bool """ - return self._tag == 'inactive' + return self._tag == "inactive" def is_other(self): """ @@ -12809,13 +13604,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderStatus_validator = bv.Union(TeamFolderStatus) + class TeamFolderTeamSharedDropboxError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12826,7 +13625,7 @@ class TeamFolderTeamSharedDropboxError(bb.Union): This action is not allowed for a shared team root. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disallowed = None # Attribute is overwritten below the class definition @@ -12838,7 +13637,7 @@ def is_disallowed(self): :rtype: bool """ - return self._tag == 'disallowed' + return self._tag == "disallowed" def is_other(self): """ @@ -12846,13 +13645,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderTeamSharedDropboxError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderTeamSharedDropboxError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderTeamSharedDropboxError_validator = bv.Union(TeamFolderTeamSharedDropboxError) + class TeamFolderUpdateSyncSettingsArg(TeamFolderIdArg): """ :ivar TeamFolderUpdateSyncSettingsArg.sync_setting: @@ -12863,16 +13666,13 @@ class TeamFolderUpdateSyncSettingsArg(TeamFolderIdArg): """ __slots__ = [ - '_sync_setting_value', - '_content_sync_settings_value', + "_sync_setting_value", + "_content_sync_settings_value", ] _has_required_fields = True - def __init__(self, - team_folder_id=None, - sync_setting=None, - content_sync_settings=None): + def __init__(self, team_folder_id=None, sync_setting=None, content_sync_settings=None): super(TeamFolderUpdateSyncSettingsArg, self).__init__(team_folder_id) self._sync_setting_value = bb.NOT_SET self._content_sync_settings_value = bb.NOT_SET @@ -12888,10 +13688,14 @@ def __init__(self, content_sync_settings = bb.Attribute("content_sync_settings", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderUpdateSyncSettingsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderUpdateSyncSettingsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderUpdateSyncSettingsArg_validator = bv.Struct(TeamFolderUpdateSyncSettingsArg) + class TeamFolderUpdateSyncSettingsError(BaseTeamFolderError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -12912,7 +13716,7 @@ def sync_settings_error(cls, val): :param files.SyncSettingsError val: :rtype: TeamFolderUpdateSyncSettingsError """ - return cls('sync_settings_error', val) + return cls("sync_settings_error", val) def is_sync_settings_error(self): """ @@ -12920,7 +13724,7 @@ def is_sync_settings_error(self): :rtype: bool """ - return self._tag == 'sync_settings_error' + return self._tag == "sync_settings_error" def get_sync_settings_error(self): """ @@ -12935,10 +13739,14 @@ def get_sync_settings_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderUpdateSyncSettingsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderUpdateSyncSettingsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderUpdateSyncSettingsError_validator = bv.Union(TeamFolderUpdateSyncSettingsError) + class TeamGetInfoResult(bb.Struct): """ :ivar TeamGetInfoResult.name: @@ -12955,23 +13763,25 @@ class TeamGetInfoResult(bb.Struct): """ __slots__ = [ - '_name_value', - '_team_id_value', - '_num_licensed_users_value', - '_num_provisioned_users_value', - '_num_used_licenses_value', - '_policies_value', + "_name_value", + "_team_id_value", + "_num_licensed_users_value", + "_num_provisioned_users_value", + "_num_used_licenses_value", + "_policies_value", ] _has_required_fields = True - def __init__(self, - name=None, - team_id=None, - num_licensed_users=None, - num_provisioned_users=None, - policies=None, - num_used_licenses=None): + def __init__( + self, + name=None, + team_id=None, + num_licensed_users=None, + num_provisioned_users=None, + policies=None, + num_used_licenses=None, + ): self._name_value = bb.NOT_SET self._team_id_value = bb.NOT_SET self._num_licensed_users_value = bb.NOT_SET @@ -13010,10 +13820,14 @@ def __init__(self, policies = bb.Attribute("policies", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamGetInfoResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamGetInfoResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamGetInfoResult_validator = bv.Struct(TeamGetInfoResult) + class TeamMemberInfo(bb.Struct): """ Information about a team member. @@ -13025,15 +13839,13 @@ class TeamMemberInfo(bb.Struct): """ __slots__ = [ - '_profile_value', - '_role_value', + "_profile_value", + "_role_value", ] _has_required_fields = True - def __init__(self, - profile=None, - role=None): + def __init__(self, profile=None, role=None): self._profile_value = bb.NOT_SET self._role_value = bb.NOT_SET if profile is not None: @@ -13048,10 +13860,14 @@ def __init__(self, role = bb.Attribute("role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberInfo_validator = bv.Struct(TeamMemberInfo) + class TeamMemberInfoV2(bb.Struct): """ Information about a team member. @@ -13063,15 +13879,13 @@ class TeamMemberInfoV2(bb.Struct): """ __slots__ = [ - '_profile_value', - '_roles_value', + "_profile_value", + "_roles_value", ] _has_required_fields = True - def __init__(self, - profile=None, - roles=None): + def __init__(self, profile=None, roles=None): self._profile_value = bb.NOT_SET self._roles_value = bb.NOT_SET if profile is not None: @@ -13086,10 +13900,14 @@ def __init__(self, roles = bb.Attribute("roles", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberInfoV2, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberInfoV2, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberInfoV2_validator = bv.Struct(TeamMemberInfoV2) + class TeamMemberInfoV2Result(bb.Struct): """ Information about a team member, after the change, like at @@ -13100,13 +13918,12 @@ class TeamMemberInfoV2Result(bb.Struct): """ __slots__ = [ - '_member_info_value', + "_member_info_value", ] _has_required_fields = True - def __init__(self, - member_info=None): + def __init__(self, member_info=None): self._member_info_value = bb.NOT_SET if member_info is not None: self.member_info = member_info @@ -13115,10 +13932,14 @@ def __init__(self, member_info = bb.Attribute("member_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberInfoV2Result, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberInfoV2Result, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberInfoV2Result_validator = bv.Struct(TeamMemberInfoV2Result) + class TeamMemberProfile(MemberProfile): """ Profile of a user as a member of a team. @@ -13132,47 +13953,51 @@ class TeamMemberProfile(MemberProfile): """ __slots__ = [ - '_groups_value', - '_member_folder_id_value', - '_root_folder_id_value', + "_groups_value", + "_member_folder_id_value", + "_root_folder_id_value", ] _has_required_fields = True - def __init__(self, - team_member_id=None, - email=None, - email_verified=None, - status=None, - name=None, - membership_type=None, - groups=None, - member_folder_id=None, - root_folder_id=None, - external_id=None, - account_id=None, - secondary_emails=None, - invited_on=None, - joined_on=None, - suspended_on=None, - persistent_id=None, - is_directory_restricted=None, - profile_photo_url=None): - super(TeamMemberProfile, self).__init__(team_member_id, - email, - email_verified, - status, - name, - membership_type, - external_id, - account_id, - secondary_emails, - invited_on, - joined_on, - suspended_on, - persistent_id, - is_directory_restricted, - profile_photo_url) + def __init__( + self, + team_member_id=None, + email=None, + email_verified=None, + status=None, + name=None, + membership_type=None, + groups=None, + member_folder_id=None, + root_folder_id=None, + external_id=None, + account_id=None, + secondary_emails=None, + invited_on=None, + joined_on=None, + suspended_on=None, + persistent_id=None, + is_directory_restricted=None, + profile_photo_url=None, + ): + super(TeamMemberProfile, self).__init__( + team_member_id, + email, + email_verified, + status, + name, + membership_type, + external_id, + account_id, + secondary_emails, + invited_on, + joined_on, + suspended_on, + persistent_id, + is_directory_restricted, + profile_photo_url, + ) self._groups_value = bb.NOT_SET self._member_folder_id_value = bb.NOT_SET self._root_folder_id_value = bb.NOT_SET @@ -13193,10 +14018,14 @@ def __init__(self, root_folder_id = bb.Attribute("root_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberProfile, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberProfile, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberProfile_validator = bv.Struct(TeamMemberProfile) + class TeamMemberRole(bb.Struct): """ A role which can be attached to a team member. This replaces AdminTier; each @@ -13212,17 +14041,14 @@ class TeamMemberRole(bb.Struct): """ __slots__ = [ - '_role_id_value', - '_name_value', - '_description_value', + "_role_id_value", + "_name_value", + "_description_value", ] _has_required_fields = True - def __init__(self, - role_id=None, - name=None, - description=None): + def __init__(self, role_id=None, name=None, description=None): self._role_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._description_value = bb.NOT_SET @@ -13243,10 +14069,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberRole, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberRole, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberRole_validator = bv.Struct(TeamMemberRole) + class TeamMemberStatus(bb.Union): """ The user's status as a member of a specific team. @@ -13285,7 +14115,7 @@ def removed(cls, val): :param RemovedStatus val: :rtype: TeamMemberStatus """ - return cls('removed', val) + return cls("removed", val) def is_active(self): """ @@ -13293,7 +14123,7 @@ def is_active(self): :rtype: bool """ - return self._tag == 'active' + return self._tag == "active" def is_invited(self): """ @@ -13301,7 +14131,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == 'invited' + return self._tag == "invited" def is_suspended(self): """ @@ -13309,7 +14139,7 @@ def is_suspended(self): :rtype: bool """ - return self._tag == 'suspended' + return self._tag == "suspended" def is_removed(self): """ @@ -13317,7 +14147,7 @@ def is_removed(self): :rtype: bool """ - return self._tag == 'removed' + return self._tag == "removed" def get_removed(self): """ @@ -13333,10 +14163,14 @@ def get_removed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberStatus_validator = bv.Union(TeamMemberStatus) + class TeamMembershipType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13363,7 +14197,7 @@ def is_full(self): :rtype: bool """ - return self._tag == 'full' + return self._tag == "full" def is_limited(self): """ @@ -13371,13 +14205,17 @@ def is_limited(self): :rtype: bool """ - return self._tag == 'limited' + return self._tag == "limited" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMembershipType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMembershipType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMembershipType_validator = bv.Union(TeamMembershipType) + class TeamNamespacesListArg(bb.Struct): """ :ivar TeamNamespacesListArg.limit: @@ -13385,13 +14223,12 @@ class TeamNamespacesListArg(bb.Struct): """ __slots__ = [ - '_limit_value', + "_limit_value", ] _has_required_fields = False - def __init__(self, - limit=None): + def __init__(self, limit=None): self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -13400,10 +14237,14 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamNamespacesListArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamNamespacesListArg_validator = bv.Struct(TeamNamespacesListArg) + class TeamNamespacesListContinueArg(bb.Struct): """ :ivar TeamNamespacesListContinueArg.cursor: @@ -13412,13 +14253,12 @@ class TeamNamespacesListContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -13427,10 +14267,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamNamespacesListContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamNamespacesListContinueArg_validator = bv.Struct(TeamNamespacesListContinueArg) + class TeamNamespacesListError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13441,7 +14285,7 @@ class TeamNamespacesListError(bb.Union): Argument passed in is invalid. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invalid_arg = None # Attribute is overwritten below the class definition @@ -13453,7 +14297,7 @@ def is_invalid_arg(self): :rtype: bool """ - return self._tag == 'invalid_arg' + return self._tag == "invalid_arg" def is_other(self): """ @@ -13461,13 +14305,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamNamespacesListError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamNamespacesListError_validator = bv.Union(TeamNamespacesListError) + class TeamNamespacesListContinueError(TeamNamespacesListError): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13487,13 +14335,17 @@ def is_invalid_cursor(self): :rtype: bool """ - return self._tag == 'invalid_cursor' + return self._tag == "invalid_cursor" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamNamespacesListContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamNamespacesListContinueError_validator = bv.Union(TeamNamespacesListContinueError) + class TeamNamespacesListResult(bb.Struct): """ Result for :meth:`dropbox.dropbox_client.Dropbox.team_namespaces_list`. @@ -13511,17 +14363,14 @@ class TeamNamespacesListResult(bb.Struct): """ __slots__ = [ - '_namespaces_value', - '_cursor_value', - '_has_more_value', + "_namespaces_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - namespaces=None, - cursor=None, - has_more=None): + def __init__(self, namespaces=None, cursor=None, has_more=None): self._namespaces_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -13542,10 +14391,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamNamespacesListResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamNamespacesListResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamNamespacesListResult_validator = bv.Struct(TeamNamespacesListResult) + class TeamReportFailureReason(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -13563,7 +14416,7 @@ class TeamReportFailureReason(bb.Union): data. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition temporary_error = None # Attribute is overwritten below the class definition @@ -13579,7 +14432,7 @@ def is_temporary_error(self): :rtype: bool """ - return self._tag == 'temporary_error' + return self._tag == "temporary_error" def is_many_reports_at_once(self): """ @@ -13587,7 +14440,7 @@ def is_many_reports_at_once(self): :rtype: bool """ - return self._tag == 'many_reports_at_once' + return self._tag == "many_reports_at_once" def is_too_much_data(self): """ @@ -13595,7 +14448,7 @@ def is_too_much_data(self): :rtype: bool """ - return self._tag == 'too_much_data' + return self._tag == "too_much_data" def is_other(self): """ @@ -13603,13 +14456,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamReportFailureReason, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamReportFailureReason, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamReportFailureReason_validator = bv.Union(TeamReportFailureReason) + class TokenGetAuthenticatedAdminError(bb.Union): """ Error returned by @@ -13628,7 +14485,7 @@ class TokenGetAuthenticatedAdminError(bb.Union): member of the team or no longer a team admin. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition mapping_not_found = None # Attribute is overwritten below the class definition @@ -13642,7 +14499,7 @@ def is_mapping_not_found(self): :rtype: bool """ - return self._tag == 'mapping_not_found' + return self._tag == "mapping_not_found" def is_admin_not_active(self): """ @@ -13650,7 +14507,7 @@ def is_admin_not_active(self): :rtype: bool """ - return self._tag == 'admin_not_active' + return self._tag == "admin_not_active" def is_other(self): """ @@ -13658,13 +14515,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenGetAuthenticatedAdminError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TokenGetAuthenticatedAdminError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TokenGetAuthenticatedAdminError_validator = bv.Union(TokenGetAuthenticatedAdminError) + class TokenGetAuthenticatedAdminResult(bb.Struct): """ Results for @@ -13675,13 +14536,12 @@ class TokenGetAuthenticatedAdminResult(bb.Struct): """ __slots__ = [ - '_admin_profile_value', + "_admin_profile_value", ] _has_required_fields = True - def __init__(self, - admin_profile=None): + def __init__(self, admin_profile=None): self._admin_profile_value = bb.NOT_SET if admin_profile is not None: self.admin_profile = admin_profile @@ -13690,10 +14550,14 @@ def __init__(self, admin_profile = bb.Attribute("admin_profile", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TokenGetAuthenticatedAdminResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TokenGetAuthenticatedAdminResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TokenGetAuthenticatedAdminResult_validator = bv.Struct(TokenGetAuthenticatedAdminResult) + class UploadApiRateLimitValue(bb.Union): """ The value for ``Feature.upload_api_rate_limit``. @@ -13710,7 +14574,7 @@ class UploadApiRateLimitValue(bb.Union): :vartype UploadApiRateLimitValue.limit: int """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition unlimited = None # Attribute is overwritten below the class definition @@ -13725,7 +14589,7 @@ def limit(cls, val): :param int val: :rtype: UploadApiRateLimitValue """ - return cls('limit', val) + return cls("limit", val) def is_unlimited(self): """ @@ -13733,7 +14597,7 @@ def is_unlimited(self): :rtype: bool """ - return self._tag == 'unlimited' + return self._tag == "unlimited" def is_limit(self): """ @@ -13741,7 +14605,7 @@ def is_limit(self): :rtype: bool """ - return self._tag == 'limit' + return self._tag == "limit" def is_other(self): """ @@ -13749,7 +14613,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_limit(self): """ @@ -13764,10 +14628,14 @@ def get_limit(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadApiRateLimitValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UploadApiRateLimitValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UploadApiRateLimitValue_validator = bv.Union(UploadApiRateLimitValue) + class UserAddResult(bb.Union): """ Result of trying to add secondary emails to a user. 'success' is the only @@ -13794,7 +14662,7 @@ class UserAddResult(bb.Union): :vartype UserAddResult.placeholder_user: UserSelectorArg """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -13807,7 +14675,7 @@ def success(cls, val): :param UserSecondaryEmailsResult val: :rtype: UserAddResult """ - return cls('success', val) + return cls("success", val) @classmethod def invalid_user(cls, val): @@ -13818,7 +14686,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: UserAddResult """ - return cls('invalid_user', val) + return cls("invalid_user", val) @classmethod def unverified(cls, val): @@ -13829,7 +14697,7 @@ def unverified(cls, val): :param UserSelectorArg val: :rtype: UserAddResult """ - return cls('unverified', val) + return cls("unverified", val) @classmethod def placeholder_user(cls, val): @@ -13840,7 +14708,7 @@ def placeholder_user(cls, val): :param UserSelectorArg val: :rtype: UserAddResult """ - return cls('placeholder_user', val) + return cls("placeholder_user", val) def is_success(self): """ @@ -13848,7 +14716,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_invalid_user(self): """ @@ -13856,7 +14724,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == 'invalid_user' + return self._tag == "invalid_user" def is_unverified(self): """ @@ -13864,7 +14732,7 @@ def is_unverified(self): :rtype: bool """ - return self._tag == 'unverified' + return self._tag == "unverified" def is_placeholder_user(self): """ @@ -13872,7 +14740,7 @@ def is_placeholder_user(self): :rtype: bool """ - return self._tag == 'placeholder_user' + return self._tag == "placeholder_user" def is_other(self): """ @@ -13880,7 +14748,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -13932,25 +14800,27 @@ def get_placeholder_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserAddResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserAddResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserAddResult_validator = bv.Union(UserAddResult) + class UserCustomQuotaArg(bb.Struct): """ User and their required custom quota in GB (1 TB = 1024 GB). """ __slots__ = [ - '_user_value', - '_quota_gb_value', + "_user_value", + "_quota_gb_value", ] _has_required_fields = True - def __init__(self, - user=None, - quota_gb=None): + def __init__(self, user=None, quota_gb=None): self._user_value = bb.NOT_SET self._quota_gb_value = bb.NOT_SET if user is not None: @@ -13965,10 +14835,14 @@ def __init__(self, quota_gb = bb.Attribute("quota_gb") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserCustomQuotaArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserCustomQuotaArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserCustomQuotaArg_validator = bv.Struct(UserCustomQuotaArg) + class UserCustomQuotaResult(bb.Struct): """ User and their custom quota in GB (1 TB = 1024 GB). No quota returns if the @@ -13976,15 +14850,13 @@ class UserCustomQuotaResult(bb.Struct): """ __slots__ = [ - '_user_value', - '_quota_gb_value', + "_user_value", + "_quota_gb_value", ] _has_required_fields = True - def __init__(self, - user=None, - quota_gb=None): + def __init__(self, user=None, quota_gb=None): self._user_value = bb.NOT_SET self._quota_gb_value = bb.NOT_SET if user is not None: @@ -13999,22 +14871,23 @@ def __init__(self, quota_gb = bb.Attribute("quota_gb", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserCustomQuotaResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserCustomQuotaResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserCustomQuotaResult_validator = bv.Struct(UserCustomQuotaResult) -class UserDeleteEmailsResult(bb.Struct): +class UserDeleteEmailsResult(bb.Struct): __slots__ = [ - '_user_value', - '_results_value', + "_user_value", + "_results_value", ] _has_required_fields = True - def __init__(self, - user=None, - results=None): + def __init__(self, user=None, results=None): self._user_value = bb.NOT_SET self._results_value = bb.NOT_SET if user is not None: @@ -14029,10 +14902,14 @@ def __init__(self, results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserDeleteEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserDeleteEmailsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserDeleteEmailsResult_validator = bv.Struct(UserDeleteEmailsResult) + class UserDeleteResult(bb.Union): """ Result of trying to delete a user's secondary emails. 'success' is the only @@ -14053,7 +14930,7 @@ class UserDeleteResult(bb.Union): :vartype UserDeleteResult.invalid_user: UserSelectorArg """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -14066,7 +14943,7 @@ def success(cls, val): :param UserDeleteEmailsResult val: :rtype: UserDeleteResult """ - return cls('success', val) + return cls("success", val) @classmethod def invalid_user(cls, val): @@ -14077,7 +14954,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: UserDeleteResult """ - return cls('invalid_user', val) + return cls("invalid_user", val) def is_success(self): """ @@ -14085,7 +14962,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_invalid_user(self): """ @@ -14093,7 +14970,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == 'invalid_user' + return self._tag == "invalid_user" def is_other(self): """ @@ -14101,7 +14978,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -14129,22 +15006,23 @@ def get_invalid_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserDeleteResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserDeleteResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserDeleteResult_validator = bv.Union(UserDeleteResult) -class UserResendEmailsResult(bb.Struct): +class UserResendEmailsResult(bb.Struct): __slots__ = [ - '_user_value', - '_results_value', + "_user_value", + "_results_value", ] _has_required_fields = True - def __init__(self, - user=None, - results=None): + def __init__(self, user=None, results=None): self._user_value = bb.NOT_SET self._results_value = bb.NOT_SET if user is not None: @@ -14159,10 +15037,14 @@ def __init__(self, results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserResendEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserResendEmailsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserResendEmailsResult_validator = bv.Struct(UserResendEmailsResult) + class UserResendResult(bb.Union): """ Result of trying to resend verification emails to a user. 'success' is the @@ -14183,7 +15065,7 @@ class UserResendResult(bb.Union): :vartype UserResendResult.invalid_user: UserSelectorArg """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -14196,7 +15078,7 @@ def success(cls, val): :param UserResendEmailsResult val: :rtype: UserResendResult """ - return cls('success', val) + return cls("success", val) @classmethod def invalid_user(cls, val): @@ -14207,7 +15089,7 @@ def invalid_user(cls, val): :param UserSelectorArg val: :rtype: UserResendResult """ - return cls('invalid_user', val) + return cls("invalid_user", val) def is_success(self): """ @@ -14215,7 +15097,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_invalid_user(self): """ @@ -14223,7 +15105,7 @@ def is_invalid_user(self): :rtype: bool """ - return self._tag == 'invalid_user' + return self._tag == "invalid_user" def is_other(self): """ @@ -14231,7 +15113,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_success(self): """ @@ -14259,25 +15141,27 @@ def get_invalid_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserResendResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserResendResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserResendResult_validator = bv.Union(UserResendResult) + class UserSecondaryEmailsArg(bb.Struct): """ User and a list of secondary emails. """ __slots__ = [ - '_user_value', - '_secondary_emails_value', + "_user_value", + "_secondary_emails_value", ] _has_required_fields = True - def __init__(self, - user=None, - secondary_emails=None): + def __init__(self, user=None, secondary_emails=None): self._user_value = bb.NOT_SET self._secondary_emails_value = bb.NOT_SET if user is not None: @@ -14292,22 +15176,23 @@ def __init__(self, secondary_emails = bb.Attribute("secondary_emails") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserSecondaryEmailsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserSecondaryEmailsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserSecondaryEmailsArg_validator = bv.Struct(UserSecondaryEmailsArg) -class UserSecondaryEmailsResult(bb.Struct): +class UserSecondaryEmailsResult(bb.Struct): __slots__ = [ - '_user_value', - '_results_value', + "_user_value", + "_results_value", ] _has_required_fields = True - def __init__(self, - user=None, - results=None): + def __init__(self, user=None, results=None): self._user_value = bb.NOT_SET self._results_value = bb.NOT_SET if user is not None: @@ -14322,10 +15207,14 @@ def __init__(self, results = bb.Attribute("results") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserSecondaryEmailsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserSecondaryEmailsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserSecondaryEmailsResult_validator = bv.Struct(UserSecondaryEmailsResult) + class UserSelectorArg(bb.Union): """ Argument for selecting a single user, either by team_member_id, external_id @@ -14347,7 +15236,7 @@ def team_member_id(cls, val): :param str val: :rtype: UserSelectorArg """ - return cls('team_member_id', val) + return cls("team_member_id", val) @classmethod def external_id(cls, val): @@ -14358,7 +15247,7 @@ def external_id(cls, val): :param str val: :rtype: UserSelectorArg """ - return cls('external_id', val) + return cls("external_id", val) @classmethod def email(cls, val): @@ -14369,7 +15258,7 @@ def email(cls, val): :param str val: :rtype: UserSelectorArg """ - return cls('email', val) + return cls("email", val) def is_team_member_id(self): """ @@ -14377,7 +15266,7 @@ def is_team_member_id(self): :rtype: bool """ - return self._tag == 'team_member_id' + return self._tag == "team_member_id" def is_external_id(self): """ @@ -14385,7 +15274,7 @@ def is_external_id(self): :rtype: bool """ - return self._tag == 'external_id' + return self._tag == "external_id" def is_email(self): """ @@ -14393,7 +15282,7 @@ def is_email(self): :rtype: bool """ - return self._tag == 'email' + return self._tag == "email" def get_team_member_id(self): """ @@ -14426,10 +15315,14 @@ def get_email(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserSelectorArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserSelectorArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserSelectorArg_validator = bv.Union(UserSelectorArg) + class UsersSelectorArg(bb.Union): """ Argument for selecting a list of users, either by team_member_ids, @@ -14461,7 +15354,7 @@ def team_member_ids(cls, val): :param list of [str] val: :rtype: UsersSelectorArg """ - return cls('team_member_ids', val) + return cls("team_member_ids", val) @classmethod def external_ids(cls, val): @@ -14472,7 +15365,7 @@ def external_ids(cls, val): :param list of [str] val: :rtype: UsersSelectorArg """ - return cls('external_ids', val) + return cls("external_ids", val) @classmethod def emails(cls, val): @@ -14483,7 +15376,7 @@ def emails(cls, val): :param list of [str] val: :rtype: UsersSelectorArg """ - return cls('emails', val) + return cls("emails", val) def is_team_member_ids(self): """ @@ -14491,7 +15384,7 @@ def is_team_member_ids(self): :rtype: bool """ - return self._tag == 'team_member_ids' + return self._tag == "team_member_ids" def is_external_ids(self): """ @@ -14499,7 +15392,7 @@ def is_external_ids(self): :rtype: bool """ - return self._tag == 'external_ids' + return self._tag == "external_ids" def is_emails(self): """ @@ -14507,7 +15400,7 @@ def is_emails(self): :rtype: bool """ - return self._tag == 'emails' + return self._tag == "emails" def get_team_member_ids(self): """ @@ -14546,12 +15439,15 @@ def get_emails(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UsersSelectorArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UsersSelectorArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UsersSelectorArg_validator = bv.Union(UsersSelectorArg) GroupsGetInfoResult_validator = bv.List(GroupsGetInfoItem_validator) -LegalHoldId_validator = bv.String(pattern='^pid_dbhid:.+') +LegalHoldId_validator = bv.String(pattern="^pid_dbhid:.+") LegalHoldPolicyDescription_validator = bv.String(max_length=501) LegalHoldPolicyName_validator = bv.String(max_length=140) LegalHoldsGetPolicyResult_validator = LegalHoldPolicy_validator @@ -14563,44 +15459,50 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListHeldRevisionCursor_validator = bv.String(min_length=1) MembersGetInfoResult_validator = bv.List(MembersGetInfoItem_validator) NumberPerDay_validator = bv.List(bv.Nullable(bv.UInt64())) -Path_validator = bv.String(pattern='(/(.|[\\r\\n])*)?') -TeamMemberRoleId_validator = bv.String(max_length=128, pattern='pid_dbtmr:.*') +Path_validator = bv.String(pattern="(/(.|[\\r\\n])*)?") +TeamMemberRoleId_validator = bv.String(max_length=128, pattern="pid_dbtmr:.*") UserQuota_validator = bv.UInt32(min_value=2) DeviceSession.session_id.validator = bv.String() DeviceSession.ip_address.validator = bv.Nullable(bv.String()) DeviceSession.country.validator = bv.Nullable(bv.String()) DeviceSession.created.validator = bv.Nullable(common.DropboxTimestamp_validator) DeviceSession.updated.validator = bv.Nullable(common.DropboxTimestamp_validator) -DeviceSession._all_field_names_ = set([ - 'session_id', - 'ip_address', - 'country', - 'created', - 'updated', -]) +DeviceSession._all_field_names_ = set( + [ + "session_id", + "ip_address", + "country", + "created", + "updated", + ] +) DeviceSession._all_fields_ = [ - ('session_id', DeviceSession.session_id.validator), - ('ip_address', DeviceSession.ip_address.validator), - ('country', DeviceSession.country.validator), - ('created', DeviceSession.created.validator), - ('updated', DeviceSession.updated.validator), + ("session_id", DeviceSession.session_id.validator), + ("ip_address", DeviceSession.ip_address.validator), + ("country", DeviceSession.country.validator), + ("created", DeviceSession.created.validator), + ("updated", DeviceSession.updated.validator), ] ActiveWebSession.user_agent.validator = bv.String() ActiveWebSession.os.validator = bv.String() ActiveWebSession.browser.validator = bv.String() ActiveWebSession.expires.validator = bv.Nullable(common.DropboxTimestamp_validator) -ActiveWebSession._all_field_names_ = DeviceSession._all_field_names_.union(set([ - 'user_agent', - 'os', - 'browser', - 'expires', -])) +ActiveWebSession._all_field_names_ = DeviceSession._all_field_names_.union( + set( + [ + "user_agent", + "os", + "browser", + "expires", + ] + ) +) ActiveWebSession._all_fields_ = DeviceSession._all_fields_ + [ - ('user_agent', ActiveWebSession.user_agent.validator), - ('os', ActiveWebSession.os.validator), - ('browser', ActiveWebSession.browser.validator), - ('expires', ActiveWebSession.expires.validator), + ("user_agent", ActiveWebSession.user_agent.validator), + ("os", ActiveWebSession.os.validator), + ("browser", ActiveWebSession.browser.validator), + ("expires", ActiveWebSession.expires.validator), ] AddSecondaryEmailResult._success_validator = secondary_emails.SecondaryEmail_validator @@ -14614,56 +15516,60 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddSecondaryEmailResult._rate_limited_validator = common.EmailAddress_validator AddSecondaryEmailResult._other_validator = bv.Void() AddSecondaryEmailResult._tagmap = { - 'success': AddSecondaryEmailResult._success_validator, - 'unavailable': AddSecondaryEmailResult._unavailable_validator, - 'already_pending': AddSecondaryEmailResult._already_pending_validator, - 'already_owned_by_user': AddSecondaryEmailResult._already_owned_by_user_validator, - 'reached_limit': AddSecondaryEmailResult._reached_limit_validator, - 'transient_error': AddSecondaryEmailResult._transient_error_validator, - 'too_many_updates': AddSecondaryEmailResult._too_many_updates_validator, - 'unknown_error': AddSecondaryEmailResult._unknown_error_validator, - 'rate_limited': AddSecondaryEmailResult._rate_limited_validator, - 'other': AddSecondaryEmailResult._other_validator, + "success": AddSecondaryEmailResult._success_validator, + "unavailable": AddSecondaryEmailResult._unavailable_validator, + "already_pending": AddSecondaryEmailResult._already_pending_validator, + "already_owned_by_user": AddSecondaryEmailResult._already_owned_by_user_validator, + "reached_limit": AddSecondaryEmailResult._reached_limit_validator, + "transient_error": AddSecondaryEmailResult._transient_error_validator, + "too_many_updates": AddSecondaryEmailResult._too_many_updates_validator, + "unknown_error": AddSecondaryEmailResult._unknown_error_validator, + "rate_limited": AddSecondaryEmailResult._rate_limited_validator, + "other": AddSecondaryEmailResult._other_validator, } -AddSecondaryEmailResult.other = AddSecondaryEmailResult('other') +AddSecondaryEmailResult.other = AddSecondaryEmailResult("other") AddSecondaryEmailsArg.new_secondary_emails.validator = bv.List(UserSecondaryEmailsArg_validator) -AddSecondaryEmailsArg._all_field_names_ = set(['new_secondary_emails']) -AddSecondaryEmailsArg._all_fields_ = [('new_secondary_emails', AddSecondaryEmailsArg.new_secondary_emails.validator)] +AddSecondaryEmailsArg._all_field_names_ = set(["new_secondary_emails"]) +AddSecondaryEmailsArg._all_fields_ = [ + ("new_secondary_emails", AddSecondaryEmailsArg.new_secondary_emails.validator) +] AddSecondaryEmailsError._secondary_emails_disabled_validator = bv.Void() AddSecondaryEmailsError._too_many_emails_validator = bv.Void() AddSecondaryEmailsError._other_validator = bv.Void() AddSecondaryEmailsError._tagmap = { - 'secondary_emails_disabled': AddSecondaryEmailsError._secondary_emails_disabled_validator, - 'too_many_emails': AddSecondaryEmailsError._too_many_emails_validator, - 'other': AddSecondaryEmailsError._other_validator, + "secondary_emails_disabled": AddSecondaryEmailsError._secondary_emails_disabled_validator, + "too_many_emails": AddSecondaryEmailsError._too_many_emails_validator, + "other": AddSecondaryEmailsError._other_validator, } -AddSecondaryEmailsError.secondary_emails_disabled = AddSecondaryEmailsError('secondary_emails_disabled') -AddSecondaryEmailsError.too_many_emails = AddSecondaryEmailsError('too_many_emails') -AddSecondaryEmailsError.other = AddSecondaryEmailsError('other') +AddSecondaryEmailsError.secondary_emails_disabled = AddSecondaryEmailsError( + "secondary_emails_disabled" +) +AddSecondaryEmailsError.too_many_emails = AddSecondaryEmailsError("too_many_emails") +AddSecondaryEmailsError.other = AddSecondaryEmailsError("other") AddSecondaryEmailsResult.results.validator = bv.List(UserAddResult_validator) -AddSecondaryEmailsResult._all_field_names_ = set(['results']) -AddSecondaryEmailsResult._all_fields_ = [('results', AddSecondaryEmailsResult.results.validator)] +AddSecondaryEmailsResult._all_field_names_ = set(["results"]) +AddSecondaryEmailsResult._all_fields_ = [("results", AddSecondaryEmailsResult.results.validator)] AdminTier._team_admin_validator = bv.Void() AdminTier._user_management_admin_validator = bv.Void() AdminTier._support_admin_validator = bv.Void() AdminTier._member_only_validator = bv.Void() AdminTier._tagmap = { - 'team_admin': AdminTier._team_admin_validator, - 'user_management_admin': AdminTier._user_management_admin_validator, - 'support_admin': AdminTier._support_admin_validator, - 'member_only': AdminTier._member_only_validator, + "team_admin": AdminTier._team_admin_validator, + "user_management_admin": AdminTier._user_management_admin_validator, + "support_admin": AdminTier._support_admin_validator, + "member_only": AdminTier._member_only_validator, } -AdminTier.team_admin = AdminTier('team_admin') -AdminTier.user_management_admin = AdminTier('user_management_admin') -AdminTier.support_admin = AdminTier('support_admin') -AdminTier.member_only = AdminTier('member_only') +AdminTier.team_admin = AdminTier("team_admin") +AdminTier.user_management_admin = AdminTier("user_management_admin") +AdminTier.support_admin = AdminTier("support_admin") +AdminTier.member_only = AdminTier("member_only") ApiApp.app_id.validator = bv.String() ApiApp.app_name.validator = bv.String() @@ -14671,122 +15577,139 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ApiApp.publisher_url.validator = bv.Nullable(bv.String()) ApiApp.linked.validator = bv.Nullable(common.DropboxTimestamp_validator) ApiApp.is_app_folder.validator = bv.Boolean() -ApiApp._all_field_names_ = set([ - 'app_id', - 'app_name', - 'publisher', - 'publisher_url', - 'linked', - 'is_app_folder', -]) +ApiApp._all_field_names_ = set( + [ + "app_id", + "app_name", + "publisher", + "publisher_url", + "linked", + "is_app_folder", + ] +) ApiApp._all_fields_ = [ - ('app_id', ApiApp.app_id.validator), - ('app_name', ApiApp.app_name.validator), - ('publisher', ApiApp.publisher.validator), - ('publisher_url', ApiApp.publisher_url.validator), - ('linked', ApiApp.linked.validator), - ('is_app_folder', ApiApp.is_app_folder.validator), + ("app_id", ApiApp.app_id.validator), + ("app_name", ApiApp.app_name.validator), + ("publisher", ApiApp.publisher.validator), + ("publisher_url", ApiApp.publisher_url.validator), + ("linked", ApiApp.linked.validator), + ("is_app_folder", ApiApp.is_app_folder.validator), ] BaseDfbReport.start_date.validator = bv.String() -BaseDfbReport._all_field_names_ = set(['start_date']) -BaseDfbReport._all_fields_ = [('start_date', BaseDfbReport.start_date.validator)] +BaseDfbReport._all_field_names_ = set(["start_date"]) +BaseDfbReport._all_fields_ = [("start_date", BaseDfbReport.start_date.validator)] BaseTeamFolderError._access_error_validator = TeamFolderAccessError_validator BaseTeamFolderError._status_error_validator = TeamFolderInvalidStatusError_validator -BaseTeamFolderError._team_shared_dropbox_error_validator = TeamFolderTeamSharedDropboxError_validator +BaseTeamFolderError._team_shared_dropbox_error_validator = ( + TeamFolderTeamSharedDropboxError_validator +) BaseTeamFolderError._other_validator = bv.Void() BaseTeamFolderError._tagmap = { - 'access_error': BaseTeamFolderError._access_error_validator, - 'status_error': BaseTeamFolderError._status_error_validator, - 'team_shared_dropbox_error': BaseTeamFolderError._team_shared_dropbox_error_validator, - 'other': BaseTeamFolderError._other_validator, + "access_error": BaseTeamFolderError._access_error_validator, + "status_error": BaseTeamFolderError._status_error_validator, + "team_shared_dropbox_error": BaseTeamFolderError._team_shared_dropbox_error_validator, + "other": BaseTeamFolderError._other_validator, } -BaseTeamFolderError.other = BaseTeamFolderError('other') +BaseTeamFolderError.other = BaseTeamFolderError("other") CustomQuotaError._too_many_users_validator = bv.Void() CustomQuotaError._other_validator = bv.Void() CustomQuotaError._tagmap = { - 'too_many_users': CustomQuotaError._too_many_users_validator, - 'other': CustomQuotaError._other_validator, + "too_many_users": CustomQuotaError._too_many_users_validator, + "other": CustomQuotaError._other_validator, } -CustomQuotaError.too_many_users = CustomQuotaError('too_many_users') -CustomQuotaError.other = CustomQuotaError('other') +CustomQuotaError.too_many_users = CustomQuotaError("too_many_users") +CustomQuotaError.other = CustomQuotaError("other") CustomQuotaResult._success_validator = UserCustomQuotaResult_validator CustomQuotaResult._invalid_user_validator = UserSelectorArg_validator CustomQuotaResult._other_validator = bv.Void() CustomQuotaResult._tagmap = { - 'success': CustomQuotaResult._success_validator, - 'invalid_user': CustomQuotaResult._invalid_user_validator, - 'other': CustomQuotaResult._other_validator, + "success": CustomQuotaResult._success_validator, + "invalid_user": CustomQuotaResult._invalid_user_validator, + "other": CustomQuotaResult._other_validator, } -CustomQuotaResult.other = CustomQuotaResult('other') +CustomQuotaResult.other = CustomQuotaResult("other") CustomQuotaUsersArg.users.validator = bv.List(UserSelectorArg_validator) -CustomQuotaUsersArg._all_field_names_ = set(['users']) -CustomQuotaUsersArg._all_fields_ = [('users', CustomQuotaUsersArg.users.validator)] +CustomQuotaUsersArg._all_field_names_ = set(["users"]) +CustomQuotaUsersArg._all_fields_ = [("users", CustomQuotaUsersArg.users.validator)] DateRange.start_date.validator = bv.Nullable(common.Date_validator) DateRange.end_date.validator = bv.Nullable(common.Date_validator) -DateRange._all_field_names_ = set([ - 'start_date', - 'end_date', -]) +DateRange._all_field_names_ = set( + [ + "start_date", + "end_date", + ] +) DateRange._all_fields_ = [ - ('start_date', DateRange.start_date.validator), - ('end_date', DateRange.end_date.validator), + ("start_date", DateRange.start_date.validator), + ("end_date", DateRange.end_date.validator), ] DateRangeError._other_validator = bv.Void() DateRangeError._tagmap = { - 'other': DateRangeError._other_validator, + "other": DateRangeError._other_validator, } -DateRangeError.other = DateRangeError('other') +DateRangeError.other = DateRangeError("other") DeleteSecondaryEmailResult._success_validator = common.EmailAddress_validator DeleteSecondaryEmailResult._not_found_validator = common.EmailAddress_validator DeleteSecondaryEmailResult._cannot_remove_primary_validator = common.EmailAddress_validator DeleteSecondaryEmailResult._other_validator = bv.Void() DeleteSecondaryEmailResult._tagmap = { - 'success': DeleteSecondaryEmailResult._success_validator, - 'not_found': DeleteSecondaryEmailResult._not_found_validator, - 'cannot_remove_primary': DeleteSecondaryEmailResult._cannot_remove_primary_validator, - 'other': DeleteSecondaryEmailResult._other_validator, + "success": DeleteSecondaryEmailResult._success_validator, + "not_found": DeleteSecondaryEmailResult._not_found_validator, + "cannot_remove_primary": DeleteSecondaryEmailResult._cannot_remove_primary_validator, + "other": DeleteSecondaryEmailResult._other_validator, } -DeleteSecondaryEmailResult.other = DeleteSecondaryEmailResult('other') +DeleteSecondaryEmailResult.other = DeleteSecondaryEmailResult("other") DeleteSecondaryEmailsArg.emails_to_delete.validator = bv.List(UserSecondaryEmailsArg_validator) -DeleteSecondaryEmailsArg._all_field_names_ = set(['emails_to_delete']) -DeleteSecondaryEmailsArg._all_fields_ = [('emails_to_delete', DeleteSecondaryEmailsArg.emails_to_delete.validator)] +DeleteSecondaryEmailsArg._all_field_names_ = set(["emails_to_delete"]) +DeleteSecondaryEmailsArg._all_fields_ = [ + ("emails_to_delete", DeleteSecondaryEmailsArg.emails_to_delete.validator) +] DeleteSecondaryEmailsResult.results.validator = bv.List(UserDeleteResult_validator) -DeleteSecondaryEmailsResult._all_field_names_ = set(['results']) -DeleteSecondaryEmailsResult._all_fields_ = [('results', DeleteSecondaryEmailsResult.results.validator)] +DeleteSecondaryEmailsResult._all_field_names_ = set(["results"]) +DeleteSecondaryEmailsResult._all_fields_ = [ + ("results", DeleteSecondaryEmailsResult.results.validator) +] DesktopClientSession.host_name.validator = bv.String() DesktopClientSession.client_type.validator = DesktopPlatform_validator DesktopClientSession.client_version.validator = bv.String() DesktopClientSession.platform.validator = bv.String() DesktopClientSession.is_delete_on_unlink_supported.validator = bv.Boolean() -DesktopClientSession._all_field_names_ = DeviceSession._all_field_names_.union(set([ - 'host_name', - 'client_type', - 'client_version', - 'platform', - 'is_delete_on_unlink_supported', -])) +DesktopClientSession._all_field_names_ = DeviceSession._all_field_names_.union( + set( + [ + "host_name", + "client_type", + "client_version", + "platform", + "is_delete_on_unlink_supported", + ] + ) +) DesktopClientSession._all_fields_ = DeviceSession._all_fields_ + [ - ('host_name', DesktopClientSession.host_name.validator), - ('client_type', DesktopClientSession.client_type.validator), - ('client_version', DesktopClientSession.client_version.validator), - ('platform', DesktopClientSession.platform.validator), - ('is_delete_on_unlink_supported', DesktopClientSession.is_delete_on_unlink_supported.validator), + ("host_name", DesktopClientSession.host_name.validator), + ("client_type", DesktopClientSession.client_type.validator), + ("client_version", DesktopClientSession.client_version.validator), + ("platform", DesktopClientSession.platform.validator), + ( + "is_delete_on_unlink_supported", + DesktopClientSession.is_delete_on_unlink_supported.validator, + ), ] DesktopPlatform._windows_validator = bv.Void() @@ -14794,26 +15717,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DesktopPlatform._linux_validator = bv.Void() DesktopPlatform._other_validator = bv.Void() DesktopPlatform._tagmap = { - 'windows': DesktopPlatform._windows_validator, - 'mac': DesktopPlatform._mac_validator, - 'linux': DesktopPlatform._linux_validator, - 'other': DesktopPlatform._other_validator, + "windows": DesktopPlatform._windows_validator, + "mac": DesktopPlatform._mac_validator, + "linux": DesktopPlatform._linux_validator, + "other": DesktopPlatform._other_validator, } -DesktopPlatform.windows = DesktopPlatform('windows') -DesktopPlatform.mac = DesktopPlatform('mac') -DesktopPlatform.linux = DesktopPlatform('linux') -DesktopPlatform.other = DesktopPlatform('other') +DesktopPlatform.windows = DesktopPlatform("windows") +DesktopPlatform.mac = DesktopPlatform("mac") +DesktopPlatform.linux = DesktopPlatform("linux") +DesktopPlatform.other = DesktopPlatform("other") DeviceSessionArg.session_id.validator = bv.String() DeviceSessionArg.team_member_id.validator = bv.String() -DeviceSessionArg._all_field_names_ = set([ - 'session_id', - 'team_member_id', -]) +DeviceSessionArg._all_field_names_ = set( + [ + "session_id", + "team_member_id", + ] +) DeviceSessionArg._all_fields_ = [ - ('session_id', DeviceSessionArg.session_id.validator), - ('team_member_id', DeviceSessionArg.team_member_id.validator), + ("session_id", DeviceSessionArg.session_id.validator), + ("team_member_id", DeviceSessionArg.team_member_id.validator), ] DevicesActive.windows.validator = NumberPerDay_validator @@ -14823,97 +15748,103 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DevicesActive.android.validator = NumberPerDay_validator DevicesActive.other.validator = NumberPerDay_validator DevicesActive.total.validator = NumberPerDay_validator -DevicesActive._all_field_names_ = set([ - 'windows', - 'macos', - 'linux', - 'ios', - 'android', - 'other', - 'total', -]) +DevicesActive._all_field_names_ = set( + [ + "windows", + "macos", + "linux", + "ios", + "android", + "other", + "total", + ] +) DevicesActive._all_fields_ = [ - ('windows', DevicesActive.windows.validator), - ('macos', DevicesActive.macos.validator), - ('linux', DevicesActive.linux.validator), - ('ios', DevicesActive.ios.validator), - ('android', DevicesActive.android.validator), - ('other', DevicesActive.other.validator), - ('total', DevicesActive.total.validator), + ("windows", DevicesActive.windows.validator), + ("macos", DevicesActive.macos.validator), + ("linux", DevicesActive.linux.validator), + ("ios", DevicesActive.ios.validator), + ("android", DevicesActive.android.validator), + ("other", DevicesActive.other.validator), + ("total", DevicesActive.total.validator), ] ExcludedUsersListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -ExcludedUsersListArg._all_field_names_ = set(['limit']) -ExcludedUsersListArg._all_fields_ = [('limit', ExcludedUsersListArg.limit.validator)] +ExcludedUsersListArg._all_field_names_ = set(["limit"]) +ExcludedUsersListArg._all_fields_ = [("limit", ExcludedUsersListArg.limit.validator)] ExcludedUsersListContinueArg.cursor.validator = bv.String() -ExcludedUsersListContinueArg._all_field_names_ = set(['cursor']) -ExcludedUsersListContinueArg._all_fields_ = [('cursor', ExcludedUsersListContinueArg.cursor.validator)] +ExcludedUsersListContinueArg._all_field_names_ = set(["cursor"]) +ExcludedUsersListContinueArg._all_fields_ = [ + ("cursor", ExcludedUsersListContinueArg.cursor.validator) +] ExcludedUsersListContinueError._invalid_cursor_validator = bv.Void() ExcludedUsersListContinueError._other_validator = bv.Void() ExcludedUsersListContinueError._tagmap = { - 'invalid_cursor': ExcludedUsersListContinueError._invalid_cursor_validator, - 'other': ExcludedUsersListContinueError._other_validator, + "invalid_cursor": ExcludedUsersListContinueError._invalid_cursor_validator, + "other": ExcludedUsersListContinueError._other_validator, } -ExcludedUsersListContinueError.invalid_cursor = ExcludedUsersListContinueError('invalid_cursor') -ExcludedUsersListContinueError.other = ExcludedUsersListContinueError('other') +ExcludedUsersListContinueError.invalid_cursor = ExcludedUsersListContinueError("invalid_cursor") +ExcludedUsersListContinueError.other = ExcludedUsersListContinueError("other") ExcludedUsersListError._list_error_validator = bv.Void() ExcludedUsersListError._other_validator = bv.Void() ExcludedUsersListError._tagmap = { - 'list_error': ExcludedUsersListError._list_error_validator, - 'other': ExcludedUsersListError._other_validator, + "list_error": ExcludedUsersListError._list_error_validator, + "other": ExcludedUsersListError._other_validator, } -ExcludedUsersListError.list_error = ExcludedUsersListError('list_error') -ExcludedUsersListError.other = ExcludedUsersListError('other') +ExcludedUsersListError.list_error = ExcludedUsersListError("list_error") +ExcludedUsersListError.other = ExcludedUsersListError("other") ExcludedUsersListResult.users.validator = bv.List(MemberProfile_validator) ExcludedUsersListResult.cursor.validator = bv.Nullable(bv.String()) ExcludedUsersListResult.has_more.validator = bv.Boolean() -ExcludedUsersListResult._all_field_names_ = set([ - 'users', - 'cursor', - 'has_more', -]) +ExcludedUsersListResult._all_field_names_ = set( + [ + "users", + "cursor", + "has_more", + ] +) ExcludedUsersListResult._all_fields_ = [ - ('users', ExcludedUsersListResult.users.validator), - ('cursor', ExcludedUsersListResult.cursor.validator), - ('has_more', ExcludedUsersListResult.has_more.validator), + ("users", ExcludedUsersListResult.users.validator), + ("cursor", ExcludedUsersListResult.cursor.validator), + ("has_more", ExcludedUsersListResult.has_more.validator), ] ExcludedUsersUpdateArg.users.validator = bv.Nullable(bv.List(UserSelectorArg_validator)) -ExcludedUsersUpdateArg._all_field_names_ = set(['users']) -ExcludedUsersUpdateArg._all_fields_ = [('users', ExcludedUsersUpdateArg.users.validator)] +ExcludedUsersUpdateArg._all_field_names_ = set(["users"]) +ExcludedUsersUpdateArg._all_fields_ = [("users", ExcludedUsersUpdateArg.users.validator)] ExcludedUsersUpdateError._users_not_in_team_validator = bv.Void() ExcludedUsersUpdateError._too_many_users_validator = bv.Void() ExcludedUsersUpdateError._other_validator = bv.Void() ExcludedUsersUpdateError._tagmap = { - 'users_not_in_team': ExcludedUsersUpdateError._users_not_in_team_validator, - 'too_many_users': ExcludedUsersUpdateError._too_many_users_validator, - 'other': ExcludedUsersUpdateError._other_validator, + "users_not_in_team": ExcludedUsersUpdateError._users_not_in_team_validator, + "too_many_users": ExcludedUsersUpdateError._too_many_users_validator, + "other": ExcludedUsersUpdateError._other_validator, } -ExcludedUsersUpdateError.users_not_in_team = ExcludedUsersUpdateError('users_not_in_team') -ExcludedUsersUpdateError.too_many_users = ExcludedUsersUpdateError('too_many_users') -ExcludedUsersUpdateError.other = ExcludedUsersUpdateError('other') +ExcludedUsersUpdateError.users_not_in_team = ExcludedUsersUpdateError("users_not_in_team") +ExcludedUsersUpdateError.too_many_users = ExcludedUsersUpdateError("too_many_users") +ExcludedUsersUpdateError.other = ExcludedUsersUpdateError("other") ExcludedUsersUpdateResult.status.validator = ExcludedUsersUpdateStatus_validator -ExcludedUsersUpdateResult._all_field_names_ = set(['status']) -ExcludedUsersUpdateResult._all_fields_ = [('status', ExcludedUsersUpdateResult.status.validator)] +ExcludedUsersUpdateResult._all_field_names_ = set(["status"]) +ExcludedUsersUpdateResult._all_fields_ = [("status", ExcludedUsersUpdateResult.status.validator)] ExcludedUsersUpdateStatus._success_validator = bv.Void() ExcludedUsersUpdateStatus._other_validator = bv.Void() ExcludedUsersUpdateStatus._tagmap = { - 'success': ExcludedUsersUpdateStatus._success_validator, - 'other': ExcludedUsersUpdateStatus._other_validator, + "success": ExcludedUsersUpdateStatus._success_validator, + "other": ExcludedUsersUpdateStatus._other_validator, } -ExcludedUsersUpdateStatus.success = ExcludedUsersUpdateStatus('success') -ExcludedUsersUpdateStatus.other = ExcludedUsersUpdateStatus('other') +ExcludedUsersUpdateStatus.success = ExcludedUsersUpdateStatus("success") +ExcludedUsersUpdateStatus.other = ExcludedUsersUpdateStatus("other") Feature._upload_api_rate_limit_validator = bv.Void() Feature._has_team_shared_dropbox_validator = bv.Void() @@ -14922,20 +15853,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Feature._has_distinct_member_homes_validator = bv.Void() Feature._other_validator = bv.Void() Feature._tagmap = { - 'upload_api_rate_limit': Feature._upload_api_rate_limit_validator, - 'has_team_shared_dropbox': Feature._has_team_shared_dropbox_validator, - 'has_team_file_events': Feature._has_team_file_events_validator, - 'has_team_selective_sync': Feature._has_team_selective_sync_validator, - 'has_distinct_member_homes': Feature._has_distinct_member_homes_validator, - 'other': Feature._other_validator, + "upload_api_rate_limit": Feature._upload_api_rate_limit_validator, + "has_team_shared_dropbox": Feature._has_team_shared_dropbox_validator, + "has_team_file_events": Feature._has_team_file_events_validator, + "has_team_selective_sync": Feature._has_team_selective_sync_validator, + "has_distinct_member_homes": Feature._has_distinct_member_homes_validator, + "other": Feature._other_validator, } -Feature.upload_api_rate_limit = Feature('upload_api_rate_limit') -Feature.has_team_shared_dropbox = Feature('has_team_shared_dropbox') -Feature.has_team_file_events = Feature('has_team_file_events') -Feature.has_team_selective_sync = Feature('has_team_selective_sync') -Feature.has_distinct_member_homes = Feature('has_distinct_member_homes') -Feature.other = Feature('other') +Feature.upload_api_rate_limit = Feature("upload_api_rate_limit") +Feature.has_team_shared_dropbox = Feature("has_team_shared_dropbox") +Feature.has_team_file_events = Feature("has_team_file_events") +Feature.has_team_selective_sync = Feature("has_team_selective_sync") +Feature.has_distinct_member_homes = Feature("has_distinct_member_homes") +Feature.other = Feature("other") FeatureValue._upload_api_rate_limit_validator = UploadApiRateLimitValue_validator FeatureValue._has_team_shared_dropbox_validator = HasTeamSharedDropboxValue_validator @@ -14944,33 +15875,37 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FeatureValue._has_distinct_member_homes_validator = HasDistinctMemberHomesValue_validator FeatureValue._other_validator = bv.Void() FeatureValue._tagmap = { - 'upload_api_rate_limit': FeatureValue._upload_api_rate_limit_validator, - 'has_team_shared_dropbox': FeatureValue._has_team_shared_dropbox_validator, - 'has_team_file_events': FeatureValue._has_team_file_events_validator, - 'has_team_selective_sync': FeatureValue._has_team_selective_sync_validator, - 'has_distinct_member_homes': FeatureValue._has_distinct_member_homes_validator, - 'other': FeatureValue._other_validator, + "upload_api_rate_limit": FeatureValue._upload_api_rate_limit_validator, + "has_team_shared_dropbox": FeatureValue._has_team_shared_dropbox_validator, + "has_team_file_events": FeatureValue._has_team_file_events_validator, + "has_team_selective_sync": FeatureValue._has_team_selective_sync_validator, + "has_distinct_member_homes": FeatureValue._has_distinct_member_homes_validator, + "other": FeatureValue._other_validator, } -FeatureValue.other = FeatureValue('other') +FeatureValue.other = FeatureValue("other") FeaturesGetValuesBatchArg.features.validator = bv.List(Feature_validator) -FeaturesGetValuesBatchArg._all_field_names_ = set(['features']) -FeaturesGetValuesBatchArg._all_fields_ = [('features', FeaturesGetValuesBatchArg.features.validator)] +FeaturesGetValuesBatchArg._all_field_names_ = set(["features"]) +FeaturesGetValuesBatchArg._all_fields_ = [ + ("features", FeaturesGetValuesBatchArg.features.validator) +] FeaturesGetValuesBatchError._empty_features_list_validator = bv.Void() FeaturesGetValuesBatchError._other_validator = bv.Void() FeaturesGetValuesBatchError._tagmap = { - 'empty_features_list': FeaturesGetValuesBatchError._empty_features_list_validator, - 'other': FeaturesGetValuesBatchError._other_validator, + "empty_features_list": FeaturesGetValuesBatchError._empty_features_list_validator, + "other": FeaturesGetValuesBatchError._other_validator, } -FeaturesGetValuesBatchError.empty_features_list = FeaturesGetValuesBatchError('empty_features_list') -FeaturesGetValuesBatchError.other = FeaturesGetValuesBatchError('other') +FeaturesGetValuesBatchError.empty_features_list = FeaturesGetValuesBatchError("empty_features_list") +FeaturesGetValuesBatchError.other = FeaturesGetValuesBatchError("other") FeaturesGetValuesBatchResult.values.validator = bv.List(FeatureValue_validator) -FeaturesGetValuesBatchResult._all_field_names_ = set(['values']) -FeaturesGetValuesBatchResult._all_fields_ = [('values', FeaturesGetValuesBatchResult.values.validator)] +FeaturesGetValuesBatchResult._all_field_names_ = set(["values"]) +FeaturesGetValuesBatchResult._all_fields_ = [ + ("values", FeaturesGetValuesBatchResult.values.validator) +] GetActivityReport.adds.validator = NumberPerDay_validator GetActivityReport.edits.validator = NumberPerDay_validator @@ -14986,51 +15921,80 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetActivityReport.shared_links_viewed_by_outside_user.validator = NumberPerDay_validator GetActivityReport.shared_links_viewed_by_not_logged_in.validator = NumberPerDay_validator GetActivityReport.shared_links_viewed_total.validator = NumberPerDay_validator -GetActivityReport._all_field_names_ = BaseDfbReport._all_field_names_.union(set([ - 'adds', - 'edits', - 'deletes', - 'active_users_28_day', - 'active_users_7_day', - 'active_users_1_day', - 'active_shared_folders_28_day', - 'active_shared_folders_7_day', - 'active_shared_folders_1_day', - 'shared_links_created', - 'shared_links_viewed_by_team', - 'shared_links_viewed_by_outside_user', - 'shared_links_viewed_by_not_logged_in', - 'shared_links_viewed_total', -])) +GetActivityReport._all_field_names_ = BaseDfbReport._all_field_names_.union( + set( + [ + "adds", + "edits", + "deletes", + "active_users_28_day", + "active_users_7_day", + "active_users_1_day", + "active_shared_folders_28_day", + "active_shared_folders_7_day", + "active_shared_folders_1_day", + "shared_links_created", + "shared_links_viewed_by_team", + "shared_links_viewed_by_outside_user", + "shared_links_viewed_by_not_logged_in", + "shared_links_viewed_total", + ] + ) +) GetActivityReport._all_fields_ = BaseDfbReport._all_fields_ + [ - ('adds', GetActivityReport.adds.validator), - ('edits', GetActivityReport.edits.validator), - ('deletes', GetActivityReport.deletes.validator), - ('active_users_28_day', GetActivityReport.active_users_28_day.validator), - ('active_users_7_day', GetActivityReport.active_users_7_day.validator), - ('active_users_1_day', GetActivityReport.active_users_1_day.validator), - ('active_shared_folders_28_day', GetActivityReport.active_shared_folders_28_day.validator), - ('active_shared_folders_7_day', GetActivityReport.active_shared_folders_7_day.validator), - ('active_shared_folders_1_day', GetActivityReport.active_shared_folders_1_day.validator), - ('shared_links_created', GetActivityReport.shared_links_created.validator), - ('shared_links_viewed_by_team', GetActivityReport.shared_links_viewed_by_team.validator), - ('shared_links_viewed_by_outside_user', GetActivityReport.shared_links_viewed_by_outside_user.validator), - ('shared_links_viewed_by_not_logged_in', GetActivityReport.shared_links_viewed_by_not_logged_in.validator), - ('shared_links_viewed_total', GetActivityReport.shared_links_viewed_total.validator), + ("adds", GetActivityReport.adds.validator), + ("edits", GetActivityReport.edits.validator), + ("deletes", GetActivityReport.deletes.validator), + ("active_users_28_day", GetActivityReport.active_users_28_day.validator), + ("active_users_7_day", GetActivityReport.active_users_7_day.validator), + ("active_users_1_day", GetActivityReport.active_users_1_day.validator), + ( + "active_shared_folders_28_day", + GetActivityReport.active_shared_folders_28_day.validator, + ), + ( + "active_shared_folders_7_day", + GetActivityReport.active_shared_folders_7_day.validator, + ), + ( + "active_shared_folders_1_day", + GetActivityReport.active_shared_folders_1_day.validator, + ), + ("shared_links_created", GetActivityReport.shared_links_created.validator), + ( + "shared_links_viewed_by_team", + GetActivityReport.shared_links_viewed_by_team.validator, + ), + ( + "shared_links_viewed_by_outside_user", + GetActivityReport.shared_links_viewed_by_outside_user.validator, + ), + ( + "shared_links_viewed_by_not_logged_in", + GetActivityReport.shared_links_viewed_by_not_logged_in.validator, + ), + ( + "shared_links_viewed_total", + GetActivityReport.shared_links_viewed_total.validator, + ), ] GetDevicesReport.active_1_day.validator = DevicesActive_validator GetDevicesReport.active_7_day.validator = DevicesActive_validator GetDevicesReport.active_28_day.validator = DevicesActive_validator -GetDevicesReport._all_field_names_ = BaseDfbReport._all_field_names_.union(set([ - 'active_1_day', - 'active_7_day', - 'active_28_day', -])) +GetDevicesReport._all_field_names_ = BaseDfbReport._all_field_names_.union( + set( + [ + "active_1_day", + "active_7_day", + "active_28_day", + ] + ) +) GetDevicesReport._all_fields_ = BaseDfbReport._all_fields_ + [ - ('active_1_day', GetDevicesReport.active_1_day.validator), - ('active_7_day', GetDevicesReport.active_7_day.validator), - ('active_28_day', GetDevicesReport.active_28_day.validator), + ("active_1_day", GetDevicesReport.active_1_day.validator), + ("active_7_day", GetDevicesReport.active_7_day.validator), + ("active_28_day", GetDevicesReport.active_28_day.validator), ] GetMembershipReport.team_size.validator = NumberPerDay_validator @@ -15038,19 +16002,23 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetMembershipReport.members_joined.validator = NumberPerDay_validator GetMembershipReport.suspended_members.validator = NumberPerDay_validator GetMembershipReport.licenses.validator = NumberPerDay_validator -GetMembershipReport._all_field_names_ = BaseDfbReport._all_field_names_.union(set([ - 'team_size', - 'pending_invites', - 'members_joined', - 'suspended_members', - 'licenses', -])) +GetMembershipReport._all_field_names_ = BaseDfbReport._all_field_names_.union( + set( + [ + "team_size", + "pending_invites", + "members_joined", + "suspended_members", + "licenses", + ] + ) +) GetMembershipReport._all_fields_ = BaseDfbReport._all_fields_ + [ - ('team_size', GetMembershipReport.team_size.validator), - ('pending_invites', GetMembershipReport.pending_invites.validator), - ('members_joined', GetMembershipReport.members_joined.validator), - ('suspended_members', GetMembershipReport.suspended_members.validator), - ('licenses', GetMembershipReport.licenses.validator), + ("team_size", GetMembershipReport.team_size.validator), + ("pending_invites", GetMembershipReport.pending_invites.validator), + ("members_joined", GetMembershipReport.members_joined.validator), + ("suspended_members", GetMembershipReport.suspended_members.validator), + ("licenses", GetMembershipReport.licenses.validator), ] GetStorageReport.total_usage.validator = NumberPerDay_validator @@ -15058,46 +16026,54 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetStorageReport.unshared_usage.validator = NumberPerDay_validator GetStorageReport.shared_folders.validator = NumberPerDay_validator GetStorageReport.member_storage_map.validator = bv.List(bv.List(StorageBucket_validator)) -GetStorageReport._all_field_names_ = BaseDfbReport._all_field_names_.union(set([ - 'total_usage', - 'shared_usage', - 'unshared_usage', - 'shared_folders', - 'member_storage_map', -])) +GetStorageReport._all_field_names_ = BaseDfbReport._all_field_names_.union( + set( + [ + "total_usage", + "shared_usage", + "unshared_usage", + "shared_folders", + "member_storage_map", + ] + ) +) GetStorageReport._all_fields_ = BaseDfbReport._all_fields_ + [ - ('total_usage', GetStorageReport.total_usage.validator), - ('shared_usage', GetStorageReport.shared_usage.validator), - ('unshared_usage', GetStorageReport.unshared_usage.validator), - ('shared_folders', GetStorageReport.shared_folders.validator), - ('member_storage_map', GetStorageReport.member_storage_map.validator), + ("total_usage", GetStorageReport.total_usage.validator), + ("shared_usage", GetStorageReport.shared_usage.validator), + ("unshared_usage", GetStorageReport.unshared_usage.validator), + ("shared_folders", GetStorageReport.shared_folders.validator), + ("member_storage_map", GetStorageReport.member_storage_map.validator), ] GroupAccessType._member_validator = bv.Void() GroupAccessType._owner_validator = bv.Void() GroupAccessType._tagmap = { - 'member': GroupAccessType._member_validator, - 'owner': GroupAccessType._owner_validator, + "member": GroupAccessType._member_validator, + "owner": GroupAccessType._owner_validator, } -GroupAccessType.member = GroupAccessType('member') -GroupAccessType.owner = GroupAccessType('owner') +GroupAccessType.member = GroupAccessType("member") +GroupAccessType.owner = GroupAccessType("owner") GroupCreateArg.group_name.validator = bv.String() GroupCreateArg.add_creator_as_owner.validator = bv.Boolean() GroupCreateArg.group_external_id.validator = bv.Nullable(team_common.GroupExternalId_validator) -GroupCreateArg.group_management_type.validator = bv.Nullable(team_common.GroupManagementType_validator) -GroupCreateArg._all_field_names_ = set([ - 'group_name', - 'add_creator_as_owner', - 'group_external_id', - 'group_management_type', -]) +GroupCreateArg.group_management_type.validator = bv.Nullable( + team_common.GroupManagementType_validator +) +GroupCreateArg._all_field_names_ = set( + [ + "group_name", + "add_creator_as_owner", + "group_external_id", + "group_management_type", + ] +) GroupCreateArg._all_fields_ = [ - ('group_name', GroupCreateArg.group_name.validator), - ('add_creator_as_owner', GroupCreateArg.add_creator_as_owner.validator), - ('group_external_id', GroupCreateArg.group_external_id.validator), - ('group_management_type', GroupCreateArg.group_management_type.validator), + ("group_name", GroupCreateArg.group_name.validator), + ("add_creator_as_owner", GroupCreateArg.add_creator_as_owner.validator), + ("group_external_id", GroupCreateArg.group_external_id.validator), + ("group_management_type", GroupCreateArg.group_management_type.validator), ] GroupCreateError._group_name_already_used_validator = bv.Void() @@ -15106,107 +16082,125 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupCreateError._system_managed_group_disallowed_validator = bv.Void() GroupCreateError._other_validator = bv.Void() GroupCreateError._tagmap = { - 'group_name_already_used': GroupCreateError._group_name_already_used_validator, - 'group_name_invalid': GroupCreateError._group_name_invalid_validator, - 'external_id_already_in_use': GroupCreateError._external_id_already_in_use_validator, - 'system_managed_group_disallowed': GroupCreateError._system_managed_group_disallowed_validator, - 'other': GroupCreateError._other_validator, + "group_name_already_used": GroupCreateError._group_name_already_used_validator, + "group_name_invalid": GroupCreateError._group_name_invalid_validator, + "external_id_already_in_use": GroupCreateError._external_id_already_in_use_validator, + "system_managed_group_disallowed": GroupCreateError._system_managed_group_disallowed_validator, + "other": GroupCreateError._other_validator, } -GroupCreateError.group_name_already_used = GroupCreateError('group_name_already_used') -GroupCreateError.group_name_invalid = GroupCreateError('group_name_invalid') -GroupCreateError.external_id_already_in_use = GroupCreateError('external_id_already_in_use') -GroupCreateError.system_managed_group_disallowed = GroupCreateError('system_managed_group_disallowed') -GroupCreateError.other = GroupCreateError('other') +GroupCreateError.group_name_already_used = GroupCreateError("group_name_already_used") +GroupCreateError.group_name_invalid = GroupCreateError("group_name_invalid") +GroupCreateError.external_id_already_in_use = GroupCreateError("external_id_already_in_use") +GroupCreateError.system_managed_group_disallowed = GroupCreateError( + "system_managed_group_disallowed" +) +GroupCreateError.other = GroupCreateError("other") GroupSelectorError._group_not_found_validator = bv.Void() GroupSelectorError._other_validator = bv.Void() GroupSelectorError._tagmap = { - 'group_not_found': GroupSelectorError._group_not_found_validator, - 'other': GroupSelectorError._other_validator, + "group_not_found": GroupSelectorError._group_not_found_validator, + "other": GroupSelectorError._other_validator, } -GroupSelectorError.group_not_found = GroupSelectorError('group_not_found') -GroupSelectorError.other = GroupSelectorError('other') +GroupSelectorError.group_not_found = GroupSelectorError("group_not_found") +GroupSelectorError.other = GroupSelectorError("other") GroupSelectorWithTeamGroupError._system_managed_group_disallowed_validator = bv.Void() GroupSelectorWithTeamGroupError._tagmap = { - 'system_managed_group_disallowed': GroupSelectorWithTeamGroupError._system_managed_group_disallowed_validator, + "system_managed_group_disallowed": GroupSelectorWithTeamGroupError._system_managed_group_disallowed_validator, } GroupSelectorWithTeamGroupError._tagmap.update(GroupSelectorError._tagmap) -GroupSelectorWithTeamGroupError.system_managed_group_disallowed = GroupSelectorWithTeamGroupError('system_managed_group_disallowed') +GroupSelectorWithTeamGroupError.system_managed_group_disallowed = GroupSelectorWithTeamGroupError( + "system_managed_group_disallowed" +) GroupDeleteError._group_already_deleted_validator = bv.Void() GroupDeleteError._tagmap = { - 'group_already_deleted': GroupDeleteError._group_already_deleted_validator, + "group_already_deleted": GroupDeleteError._group_already_deleted_validator, } GroupDeleteError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupDeleteError.group_already_deleted = GroupDeleteError('group_already_deleted') +GroupDeleteError.group_already_deleted = GroupDeleteError("group_already_deleted") GroupFullInfo.members.validator = bv.Nullable(bv.List(GroupMemberInfo_validator)) GroupFullInfo.created.validator = bv.UInt64() -GroupFullInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union(set([ - 'members', - 'created', -])) +GroupFullInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union( + set( + [ + "members", + "created", + ] + ) +) GroupFullInfo._all_fields_ = team_common.GroupSummary._all_fields_ + [ - ('members', GroupFullInfo.members.validator), - ('created', GroupFullInfo.created.validator), + ("members", GroupFullInfo.members.validator), + ("created", GroupFullInfo.created.validator), ] GroupMemberInfo.profile.validator = MemberProfile_validator GroupMemberInfo.access_type.validator = GroupAccessType_validator -GroupMemberInfo._all_field_names_ = set([ - 'profile', - 'access_type', -]) +GroupMemberInfo._all_field_names_ = set( + [ + "profile", + "access_type", + ] +) GroupMemberInfo._all_fields_ = [ - ('profile', GroupMemberInfo.profile.validator), - ('access_type', GroupMemberInfo.access_type.validator), + ("profile", GroupMemberInfo.profile.validator), + ("access_type", GroupMemberInfo.access_type.validator), ] GroupMemberSelector.group.validator = GroupSelector_validator GroupMemberSelector.user.validator = UserSelectorArg_validator -GroupMemberSelector._all_field_names_ = set([ - 'group', - 'user', -]) +GroupMemberSelector._all_field_names_ = set( + [ + "group", + "user", + ] +) GroupMemberSelector._all_fields_ = [ - ('group', GroupMemberSelector.group.validator), - ('user', GroupMemberSelector.user.validator), + ("group", GroupMemberSelector.group.validator), + ("user", GroupMemberSelector.user.validator), ] GroupMemberSelectorError._member_not_in_group_validator = bv.Void() GroupMemberSelectorError._tagmap = { - 'member_not_in_group': GroupMemberSelectorError._member_not_in_group_validator, + "member_not_in_group": GroupMemberSelectorError._member_not_in_group_validator, } GroupMemberSelectorError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupMemberSelectorError.member_not_in_group = GroupMemberSelectorError('member_not_in_group') +GroupMemberSelectorError.member_not_in_group = GroupMemberSelectorError("member_not_in_group") GroupMemberSetAccessTypeError._user_cannot_be_manager_of_company_managed_group_validator = bv.Void() GroupMemberSetAccessTypeError._tagmap = { - 'user_cannot_be_manager_of_company_managed_group': GroupMemberSetAccessTypeError._user_cannot_be_manager_of_company_managed_group_validator, + "user_cannot_be_manager_of_company_managed_group": GroupMemberSetAccessTypeError._user_cannot_be_manager_of_company_managed_group_validator, } GroupMemberSetAccessTypeError._tagmap.update(GroupMemberSelectorError._tagmap) -GroupMemberSetAccessTypeError.user_cannot_be_manager_of_company_managed_group = GroupMemberSetAccessTypeError('user_cannot_be_manager_of_company_managed_group') +GroupMemberSetAccessTypeError.user_cannot_be_manager_of_company_managed_group = ( + GroupMemberSetAccessTypeError("user_cannot_be_manager_of_company_managed_group") +) IncludeMembersArg.return_members.validator = bv.Boolean() -IncludeMembersArg._all_field_names_ = set(['return_members']) -IncludeMembersArg._all_fields_ = [('return_members', IncludeMembersArg.return_members.validator)] +IncludeMembersArg._all_field_names_ = set(["return_members"]) +IncludeMembersArg._all_fields_ = [("return_members", IncludeMembersArg.return_members.validator)] GroupMembersAddArg.group.validator = GroupSelector_validator GroupMembersAddArg.members.validator = bv.List(MemberAccess_validator) -GroupMembersAddArg._all_field_names_ = IncludeMembersArg._all_field_names_.union(set([ - 'group', - 'members', -])) +GroupMembersAddArg._all_field_names_ = IncludeMembersArg._all_field_names_.union( + set( + [ + "group", + "members", + ] + ) +) GroupMembersAddArg._all_fields_ = IncludeMembersArg._all_fields_ + [ - ('group', GroupMembersAddArg.group.validator), - ('members', GroupMembersAddArg.members.validator), + ("group", GroupMembersAddArg.group.validator), + ("members", GroupMembersAddArg.members.validator), ] GroupMembersAddError._duplicate_user_validator = bv.Void() @@ -15214,261 +16208,291 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupMembersAddError._members_not_in_team_validator = bv.List(bv.String()) GroupMembersAddError._users_not_found_validator = bv.List(bv.String()) GroupMembersAddError._user_must_be_active_to_be_owner_validator = bv.Void() -GroupMembersAddError._user_cannot_be_manager_of_company_managed_group_validator = bv.List(bv.String()) +GroupMembersAddError._user_cannot_be_manager_of_company_managed_group_validator = bv.List( + bv.String() +) GroupMembersAddError._tagmap = { - 'duplicate_user': GroupMembersAddError._duplicate_user_validator, - 'group_not_in_team': GroupMembersAddError._group_not_in_team_validator, - 'members_not_in_team': GroupMembersAddError._members_not_in_team_validator, - 'users_not_found': GroupMembersAddError._users_not_found_validator, - 'user_must_be_active_to_be_owner': GroupMembersAddError._user_must_be_active_to_be_owner_validator, - 'user_cannot_be_manager_of_company_managed_group': GroupMembersAddError._user_cannot_be_manager_of_company_managed_group_validator, + "duplicate_user": GroupMembersAddError._duplicate_user_validator, + "group_not_in_team": GroupMembersAddError._group_not_in_team_validator, + "members_not_in_team": GroupMembersAddError._members_not_in_team_validator, + "users_not_found": GroupMembersAddError._users_not_found_validator, + "user_must_be_active_to_be_owner": GroupMembersAddError._user_must_be_active_to_be_owner_validator, + "user_cannot_be_manager_of_company_managed_group": GroupMembersAddError._user_cannot_be_manager_of_company_managed_group_validator, } GroupMembersAddError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupMembersAddError.duplicate_user = GroupMembersAddError('duplicate_user') -GroupMembersAddError.group_not_in_team = GroupMembersAddError('group_not_in_team') -GroupMembersAddError.user_must_be_active_to_be_owner = GroupMembersAddError('user_must_be_active_to_be_owner') +GroupMembersAddError.duplicate_user = GroupMembersAddError("duplicate_user") +GroupMembersAddError.group_not_in_team = GroupMembersAddError("group_not_in_team") +GroupMembersAddError.user_must_be_active_to_be_owner = GroupMembersAddError( + "user_must_be_active_to_be_owner" +) GroupMembersChangeResult.group_info.validator = GroupFullInfo_validator GroupMembersChangeResult.async_job_id.validator = async_.AsyncJobId_validator -GroupMembersChangeResult._all_field_names_ = set([ - 'group_info', - 'async_job_id', -]) +GroupMembersChangeResult._all_field_names_ = set( + [ + "group_info", + "async_job_id", + ] +) GroupMembersChangeResult._all_fields_ = [ - ('group_info', GroupMembersChangeResult.group_info.validator), - ('async_job_id', GroupMembersChangeResult.async_job_id.validator), + ("group_info", GroupMembersChangeResult.group_info.validator), + ("async_job_id", GroupMembersChangeResult.async_job_id.validator), ] GroupMembersRemoveArg.group.validator = GroupSelector_validator GroupMembersRemoveArg.users.validator = bv.List(UserSelectorArg_validator) -GroupMembersRemoveArg._all_field_names_ = IncludeMembersArg._all_field_names_.union(set([ - 'group', - 'users', -])) +GroupMembersRemoveArg._all_field_names_ = IncludeMembersArg._all_field_names_.union( + set( + [ + "group", + "users", + ] + ) +) GroupMembersRemoveArg._all_fields_ = IncludeMembersArg._all_fields_ + [ - ('group', GroupMembersRemoveArg.group.validator), - ('users', GroupMembersRemoveArg.users.validator), + ("group", GroupMembersRemoveArg.group.validator), + ("users", GroupMembersRemoveArg.users.validator), ] GroupMembersSelectorError._member_not_in_group_validator = bv.Void() GroupMembersSelectorError._tagmap = { - 'member_not_in_group': GroupMembersSelectorError._member_not_in_group_validator, + "member_not_in_group": GroupMembersSelectorError._member_not_in_group_validator, } GroupMembersSelectorError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupMembersSelectorError.member_not_in_group = GroupMembersSelectorError('member_not_in_group') +GroupMembersSelectorError.member_not_in_group = GroupMembersSelectorError("member_not_in_group") GroupMembersRemoveError._group_not_in_team_validator = bv.Void() GroupMembersRemoveError._members_not_in_team_validator = bv.List(bv.String()) GroupMembersRemoveError._users_not_found_validator = bv.List(bv.String()) GroupMembersRemoveError._tagmap = { - 'group_not_in_team': GroupMembersRemoveError._group_not_in_team_validator, - 'members_not_in_team': GroupMembersRemoveError._members_not_in_team_validator, - 'users_not_found': GroupMembersRemoveError._users_not_found_validator, + "group_not_in_team": GroupMembersRemoveError._group_not_in_team_validator, + "members_not_in_team": GroupMembersRemoveError._members_not_in_team_validator, + "users_not_found": GroupMembersRemoveError._users_not_found_validator, } GroupMembersRemoveError._tagmap.update(GroupMembersSelectorError._tagmap) -GroupMembersRemoveError.group_not_in_team = GroupMembersRemoveError('group_not_in_team') +GroupMembersRemoveError.group_not_in_team = GroupMembersRemoveError("group_not_in_team") GroupMembersSelector.group.validator = GroupSelector_validator GroupMembersSelector.users.validator = UsersSelectorArg_validator -GroupMembersSelector._all_field_names_ = set([ - 'group', - 'users', -]) +GroupMembersSelector._all_field_names_ = set( + [ + "group", + "users", + ] +) GroupMembersSelector._all_fields_ = [ - ('group', GroupMembersSelector.group.validator), - ('users', GroupMembersSelector.users.validator), + ("group", GroupMembersSelector.group.validator), + ("users", GroupMembersSelector.users.validator), ] GroupMembersSetAccessTypeArg.access_type.validator = GroupAccessType_validator GroupMembersSetAccessTypeArg.return_members.validator = bv.Boolean() -GroupMembersSetAccessTypeArg._all_field_names_ = GroupMemberSelector._all_field_names_.union(set([ - 'access_type', - 'return_members', -])) +GroupMembersSetAccessTypeArg._all_field_names_ = GroupMemberSelector._all_field_names_.union( + set( + [ + "access_type", + "return_members", + ] + ) +) GroupMembersSetAccessTypeArg._all_fields_ = GroupMemberSelector._all_fields_ + [ - ('access_type', GroupMembersSetAccessTypeArg.access_type.validator), - ('return_members', GroupMembersSetAccessTypeArg.return_members.validator), + ("access_type", GroupMembersSetAccessTypeArg.access_type.validator), + ("return_members", GroupMembersSetAccessTypeArg.return_members.validator), ] GroupSelector._group_id_validator = team_common.GroupId_validator GroupSelector._group_external_id_validator = team_common.GroupExternalId_validator GroupSelector._tagmap = { - 'group_id': GroupSelector._group_id_validator, - 'group_external_id': GroupSelector._group_external_id_validator, + "group_id": GroupSelector._group_id_validator, + "group_external_id": GroupSelector._group_external_id_validator, } GroupUpdateArgs.group.validator = GroupSelector_validator GroupUpdateArgs.new_group_name.validator = bv.Nullable(bv.String()) GroupUpdateArgs.new_group_external_id.validator = bv.Nullable(team_common.GroupExternalId_validator) -GroupUpdateArgs.new_group_management_type.validator = bv.Nullable(team_common.GroupManagementType_validator) -GroupUpdateArgs._all_field_names_ = IncludeMembersArg._all_field_names_.union(set([ - 'group', - 'new_group_name', - 'new_group_external_id', - 'new_group_management_type', -])) +GroupUpdateArgs.new_group_management_type.validator = bv.Nullable( + team_common.GroupManagementType_validator +) +GroupUpdateArgs._all_field_names_ = IncludeMembersArg._all_field_names_.union( + set( + [ + "group", + "new_group_name", + "new_group_external_id", + "new_group_management_type", + ] + ) +) GroupUpdateArgs._all_fields_ = IncludeMembersArg._all_fields_ + [ - ('group', GroupUpdateArgs.group.validator), - ('new_group_name', GroupUpdateArgs.new_group_name.validator), - ('new_group_external_id', GroupUpdateArgs.new_group_external_id.validator), - ('new_group_management_type', GroupUpdateArgs.new_group_management_type.validator), + ("group", GroupUpdateArgs.group.validator), + ("new_group_name", GroupUpdateArgs.new_group_name.validator), + ("new_group_external_id", GroupUpdateArgs.new_group_external_id.validator), + ("new_group_management_type", GroupUpdateArgs.new_group_management_type.validator), ] GroupUpdateError._group_name_already_used_validator = bv.Void() GroupUpdateError._group_name_invalid_validator = bv.Void() GroupUpdateError._external_id_already_in_use_validator = bv.Void() GroupUpdateError._tagmap = { - 'group_name_already_used': GroupUpdateError._group_name_already_used_validator, - 'group_name_invalid': GroupUpdateError._group_name_invalid_validator, - 'external_id_already_in_use': GroupUpdateError._external_id_already_in_use_validator, + "group_name_already_used": GroupUpdateError._group_name_already_used_validator, + "group_name_invalid": GroupUpdateError._group_name_invalid_validator, + "external_id_already_in_use": GroupUpdateError._external_id_already_in_use_validator, } GroupUpdateError._tagmap.update(GroupSelectorWithTeamGroupError._tagmap) -GroupUpdateError.group_name_already_used = GroupUpdateError('group_name_already_used') -GroupUpdateError.group_name_invalid = GroupUpdateError('group_name_invalid') -GroupUpdateError.external_id_already_in_use = GroupUpdateError('external_id_already_in_use') +GroupUpdateError.group_name_already_used = GroupUpdateError("group_name_already_used") +GroupUpdateError.group_name_invalid = GroupUpdateError("group_name_invalid") +GroupUpdateError.external_id_already_in_use = GroupUpdateError("external_id_already_in_use") GroupsGetInfoError._group_not_on_team_validator = bv.Void() GroupsGetInfoError._other_validator = bv.Void() GroupsGetInfoError._tagmap = { - 'group_not_on_team': GroupsGetInfoError._group_not_on_team_validator, - 'other': GroupsGetInfoError._other_validator, + "group_not_on_team": GroupsGetInfoError._group_not_on_team_validator, + "other": GroupsGetInfoError._other_validator, } -GroupsGetInfoError.group_not_on_team = GroupsGetInfoError('group_not_on_team') -GroupsGetInfoError.other = GroupsGetInfoError('other') +GroupsGetInfoError.group_not_on_team = GroupsGetInfoError("group_not_on_team") +GroupsGetInfoError.other = GroupsGetInfoError("other") GroupsGetInfoItem._id_not_found_validator = bv.String() GroupsGetInfoItem._group_info_validator = GroupFullInfo_validator GroupsGetInfoItem._tagmap = { - 'id_not_found': GroupsGetInfoItem._id_not_found_validator, - 'group_info': GroupsGetInfoItem._group_info_validator, + "id_not_found": GroupsGetInfoItem._id_not_found_validator, + "group_info": GroupsGetInfoItem._group_info_validator, } GroupsListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -GroupsListArg._all_field_names_ = set(['limit']) -GroupsListArg._all_fields_ = [('limit', GroupsListArg.limit.validator)] +GroupsListArg._all_field_names_ = set(["limit"]) +GroupsListArg._all_fields_ = [("limit", GroupsListArg.limit.validator)] GroupsListContinueArg.cursor.validator = bv.String() -GroupsListContinueArg._all_field_names_ = set(['cursor']) -GroupsListContinueArg._all_fields_ = [('cursor', GroupsListContinueArg.cursor.validator)] +GroupsListContinueArg._all_field_names_ = set(["cursor"]) +GroupsListContinueArg._all_fields_ = [("cursor", GroupsListContinueArg.cursor.validator)] GroupsListContinueError._invalid_cursor_validator = bv.Void() GroupsListContinueError._other_validator = bv.Void() GroupsListContinueError._tagmap = { - 'invalid_cursor': GroupsListContinueError._invalid_cursor_validator, - 'other': GroupsListContinueError._other_validator, + "invalid_cursor": GroupsListContinueError._invalid_cursor_validator, + "other": GroupsListContinueError._other_validator, } -GroupsListContinueError.invalid_cursor = GroupsListContinueError('invalid_cursor') -GroupsListContinueError.other = GroupsListContinueError('other') +GroupsListContinueError.invalid_cursor = GroupsListContinueError("invalid_cursor") +GroupsListContinueError.other = GroupsListContinueError("other") GroupsListResult.groups.validator = bv.List(team_common.GroupSummary_validator) GroupsListResult.cursor.validator = bv.String() GroupsListResult.has_more.validator = bv.Boolean() -GroupsListResult._all_field_names_ = set([ - 'groups', - 'cursor', - 'has_more', -]) +GroupsListResult._all_field_names_ = set( + [ + "groups", + "cursor", + "has_more", + ] +) GroupsListResult._all_fields_ = [ - ('groups', GroupsListResult.groups.validator), - ('cursor', GroupsListResult.cursor.validator), - ('has_more', GroupsListResult.has_more.validator), + ("groups", GroupsListResult.groups.validator), + ("cursor", GroupsListResult.cursor.validator), + ("has_more", GroupsListResult.has_more.validator), ] GroupsMembersListArg.group.validator = GroupSelector_validator GroupsMembersListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -GroupsMembersListArg._all_field_names_ = set([ - 'group', - 'limit', -]) +GroupsMembersListArg._all_field_names_ = set( + [ + "group", + "limit", + ] +) GroupsMembersListArg._all_fields_ = [ - ('group', GroupsMembersListArg.group.validator), - ('limit', GroupsMembersListArg.limit.validator), + ("group", GroupsMembersListArg.group.validator), + ("limit", GroupsMembersListArg.limit.validator), ] GroupsMembersListContinueArg.cursor.validator = bv.String() -GroupsMembersListContinueArg._all_field_names_ = set(['cursor']) -GroupsMembersListContinueArg._all_fields_ = [('cursor', GroupsMembersListContinueArg.cursor.validator)] +GroupsMembersListContinueArg._all_field_names_ = set(["cursor"]) +GroupsMembersListContinueArg._all_fields_ = [ + ("cursor", GroupsMembersListContinueArg.cursor.validator) +] GroupsMembersListContinueError._invalid_cursor_validator = bv.Void() GroupsMembersListContinueError._other_validator = bv.Void() GroupsMembersListContinueError._tagmap = { - 'invalid_cursor': GroupsMembersListContinueError._invalid_cursor_validator, - 'other': GroupsMembersListContinueError._other_validator, + "invalid_cursor": GroupsMembersListContinueError._invalid_cursor_validator, + "other": GroupsMembersListContinueError._other_validator, } -GroupsMembersListContinueError.invalid_cursor = GroupsMembersListContinueError('invalid_cursor') -GroupsMembersListContinueError.other = GroupsMembersListContinueError('other') +GroupsMembersListContinueError.invalid_cursor = GroupsMembersListContinueError("invalid_cursor") +GroupsMembersListContinueError.other = GroupsMembersListContinueError("other") GroupsMembersListResult.members.validator = bv.List(GroupMemberInfo_validator) GroupsMembersListResult.cursor.validator = bv.String() GroupsMembersListResult.has_more.validator = bv.Boolean() -GroupsMembersListResult._all_field_names_ = set([ - 'members', - 'cursor', - 'has_more', -]) +GroupsMembersListResult._all_field_names_ = set( + [ + "members", + "cursor", + "has_more", + ] +) GroupsMembersListResult._all_fields_ = [ - ('members', GroupsMembersListResult.members.validator), - ('cursor', GroupsMembersListResult.cursor.validator), - ('has_more', GroupsMembersListResult.has_more.validator), + ("members", GroupsMembersListResult.members.validator), + ("cursor", GroupsMembersListResult.cursor.validator), + ("has_more", GroupsMembersListResult.has_more.validator), ] GroupsPollError._access_denied_validator = bv.Void() GroupsPollError._tagmap = { - 'access_denied': GroupsPollError._access_denied_validator, + "access_denied": GroupsPollError._access_denied_validator, } GroupsPollError._tagmap.update(async_.PollError._tagmap) -GroupsPollError.access_denied = GroupsPollError('access_denied') +GroupsPollError.access_denied = GroupsPollError("access_denied") GroupsSelector._group_ids_validator = bv.List(team_common.GroupId_validator) GroupsSelector._group_external_ids_validator = bv.List(bv.String()) GroupsSelector._tagmap = { - 'group_ids': GroupsSelector._group_ids_validator, - 'group_external_ids': GroupsSelector._group_external_ids_validator, + "group_ids": GroupsSelector._group_ids_validator, + "group_external_ids": GroupsSelector._group_external_ids_validator, } HasDistinctMemberHomesValue._has_distinct_member_homes_validator = bv.Boolean() HasDistinctMemberHomesValue._other_validator = bv.Void() HasDistinctMemberHomesValue._tagmap = { - 'has_distinct_member_homes': HasDistinctMemberHomesValue._has_distinct_member_homes_validator, - 'other': HasDistinctMemberHomesValue._other_validator, + "has_distinct_member_homes": HasDistinctMemberHomesValue._has_distinct_member_homes_validator, + "other": HasDistinctMemberHomesValue._other_validator, } -HasDistinctMemberHomesValue.other = HasDistinctMemberHomesValue('other') +HasDistinctMemberHomesValue.other = HasDistinctMemberHomesValue("other") HasTeamFileEventsValue._enabled_validator = bv.Boolean() HasTeamFileEventsValue._other_validator = bv.Void() HasTeamFileEventsValue._tagmap = { - 'enabled': HasTeamFileEventsValue._enabled_validator, - 'other': HasTeamFileEventsValue._other_validator, + "enabled": HasTeamFileEventsValue._enabled_validator, + "other": HasTeamFileEventsValue._other_validator, } -HasTeamFileEventsValue.other = HasTeamFileEventsValue('other') +HasTeamFileEventsValue.other = HasTeamFileEventsValue("other") HasTeamSelectiveSyncValue._has_team_selective_sync_validator = bv.Boolean() HasTeamSelectiveSyncValue._other_validator = bv.Void() HasTeamSelectiveSyncValue._tagmap = { - 'has_team_selective_sync': HasTeamSelectiveSyncValue._has_team_selective_sync_validator, - 'other': HasTeamSelectiveSyncValue._other_validator, + "has_team_selective_sync": HasTeamSelectiveSyncValue._has_team_selective_sync_validator, + "other": HasTeamSelectiveSyncValue._other_validator, } -HasTeamSelectiveSyncValue.other = HasTeamSelectiveSyncValue('other') +HasTeamSelectiveSyncValue.other = HasTeamSelectiveSyncValue("other") HasTeamSharedDropboxValue._has_team_shared_dropbox_validator = bv.Boolean() HasTeamSharedDropboxValue._other_validator = bv.Void() HasTeamSharedDropboxValue._tagmap = { - 'has_team_shared_dropbox': HasTeamSharedDropboxValue._has_team_shared_dropbox_validator, - 'other': HasTeamSharedDropboxValue._other_validator, + "has_team_shared_dropbox": HasTeamSharedDropboxValue._has_team_shared_dropbox_validator, + "other": HasTeamSharedDropboxValue._other_validator, } -HasTeamSharedDropboxValue.other = HasTeamSharedDropboxValue('other') +HasTeamSharedDropboxValue.other = HasTeamSharedDropboxValue("other") LegalHoldHeldRevisionMetadata.new_filename.validator = bv.String() LegalHoldHeldRevisionMetadata.original_revision_id.validator = files.Rev_validator @@ -15480,29 +16504,37 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldHeldRevisionMetadata.file_type.validator = bv.String() LegalHoldHeldRevisionMetadata.size.validator = bv.UInt64() LegalHoldHeldRevisionMetadata.content_hash.validator = files.Sha256HexHash_validator -LegalHoldHeldRevisionMetadata._all_field_names_ = set([ - 'new_filename', - 'original_revision_id', - 'original_file_path', - 'server_modified', - 'author_member_id', - 'author_member_status', - 'author_email', - 'file_type', - 'size', - 'content_hash', -]) +LegalHoldHeldRevisionMetadata._all_field_names_ = set( + [ + "new_filename", + "original_revision_id", + "original_file_path", + "server_modified", + "author_member_id", + "author_member_status", + "author_email", + "file_type", + "size", + "content_hash", + ] +) LegalHoldHeldRevisionMetadata._all_fields_ = [ - ('new_filename', LegalHoldHeldRevisionMetadata.new_filename.validator), - ('original_revision_id', LegalHoldHeldRevisionMetadata.original_revision_id.validator), - ('original_file_path', LegalHoldHeldRevisionMetadata.original_file_path.validator), - ('server_modified', LegalHoldHeldRevisionMetadata.server_modified.validator), - ('author_member_id', LegalHoldHeldRevisionMetadata.author_member_id.validator), - ('author_member_status', LegalHoldHeldRevisionMetadata.author_member_status.validator), - ('author_email', LegalHoldHeldRevisionMetadata.author_email.validator), - ('file_type', LegalHoldHeldRevisionMetadata.file_type.validator), - ('size', LegalHoldHeldRevisionMetadata.size.validator), - ('content_hash', LegalHoldHeldRevisionMetadata.content_hash.validator), + ("new_filename", LegalHoldHeldRevisionMetadata.new_filename.validator), + ( + "original_revision_id", + LegalHoldHeldRevisionMetadata.original_revision_id.validator, + ), + ("original_file_path", LegalHoldHeldRevisionMetadata.original_file_path.validator), + ("server_modified", LegalHoldHeldRevisionMetadata.server_modified.validator), + ("author_member_id", LegalHoldHeldRevisionMetadata.author_member_id.validator), + ( + "author_member_status", + LegalHoldHeldRevisionMetadata.author_member_status.validator, + ), + ("author_email", LegalHoldHeldRevisionMetadata.author_email.validator), + ("file_type", LegalHoldHeldRevisionMetadata.file_type.validator), + ("size", LegalHoldHeldRevisionMetadata.size.validator), + ("content_hash", LegalHoldHeldRevisionMetadata.content_hash.validator), ] LegalHoldPolicy.id.validator = LegalHoldId_validator @@ -15513,25 +16545,27 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldPolicy.status.validator = LegalHoldStatus_validator LegalHoldPolicy.start_date.validator = common.DropboxTimestamp_validator LegalHoldPolicy.end_date.validator = bv.Nullable(common.DropboxTimestamp_validator) -LegalHoldPolicy._all_field_names_ = set([ - 'id', - 'name', - 'description', - 'activation_time', - 'members', - 'status', - 'start_date', - 'end_date', -]) +LegalHoldPolicy._all_field_names_ = set( + [ + "id", + "name", + "description", + "activation_time", + "members", + "status", + "start_date", + "end_date", + ] +) LegalHoldPolicy._all_fields_ = [ - ('id', LegalHoldPolicy.id.validator), - ('name', LegalHoldPolicy.name.validator), - ('description', LegalHoldPolicy.description.validator), - ('activation_time', LegalHoldPolicy.activation_time.validator), - ('members', LegalHoldPolicy.members.validator), - ('status', LegalHoldPolicy.status.validator), - ('start_date', LegalHoldPolicy.start_date.validator), - ('end_date', LegalHoldPolicy.end_date.validator), + ("id", LegalHoldPolicy.id.validator), + ("name", LegalHoldPolicy.name.validator), + ("description", LegalHoldPolicy.description.validator), + ("activation_time", LegalHoldPolicy.activation_time.validator), + ("members", LegalHoldPolicy.members.validator), + ("status", LegalHoldPolicy.status.validator), + ("start_date", LegalHoldPolicy.start_date.validator), + ("end_date", LegalHoldPolicy.end_date.validator), ] LegalHoldStatus._active_validator = bv.Void() @@ -15542,75 +16576,85 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldStatus._releasing_validator = bv.Void() LegalHoldStatus._other_validator = bv.Void() LegalHoldStatus._tagmap = { - 'active': LegalHoldStatus._active_validator, - 'released': LegalHoldStatus._released_validator, - 'activating': LegalHoldStatus._activating_validator, - 'updating': LegalHoldStatus._updating_validator, - 'exporting': LegalHoldStatus._exporting_validator, - 'releasing': LegalHoldStatus._releasing_validator, - 'other': LegalHoldStatus._other_validator, + "active": LegalHoldStatus._active_validator, + "released": LegalHoldStatus._released_validator, + "activating": LegalHoldStatus._activating_validator, + "updating": LegalHoldStatus._updating_validator, + "exporting": LegalHoldStatus._exporting_validator, + "releasing": LegalHoldStatus._releasing_validator, + "other": LegalHoldStatus._other_validator, } -LegalHoldStatus.active = LegalHoldStatus('active') -LegalHoldStatus.released = LegalHoldStatus('released') -LegalHoldStatus.activating = LegalHoldStatus('activating') -LegalHoldStatus.updating = LegalHoldStatus('updating') -LegalHoldStatus.exporting = LegalHoldStatus('exporting') -LegalHoldStatus.releasing = LegalHoldStatus('releasing') -LegalHoldStatus.other = LegalHoldStatus('other') +LegalHoldStatus.active = LegalHoldStatus("active") +LegalHoldStatus.released = LegalHoldStatus("released") +LegalHoldStatus.activating = LegalHoldStatus("activating") +LegalHoldStatus.updating = LegalHoldStatus("updating") +LegalHoldStatus.exporting = LegalHoldStatus("exporting") +LegalHoldStatus.releasing = LegalHoldStatus("releasing") +LegalHoldStatus.other = LegalHoldStatus("other") LegalHoldsError._unknown_legal_hold_error_validator = bv.Void() LegalHoldsError._insufficient_permissions_validator = bv.Void() LegalHoldsError._other_validator = bv.Void() LegalHoldsError._tagmap = { - 'unknown_legal_hold_error': LegalHoldsError._unknown_legal_hold_error_validator, - 'insufficient_permissions': LegalHoldsError._insufficient_permissions_validator, - 'other': LegalHoldsError._other_validator, + "unknown_legal_hold_error": LegalHoldsError._unknown_legal_hold_error_validator, + "insufficient_permissions": LegalHoldsError._insufficient_permissions_validator, + "other": LegalHoldsError._other_validator, } -LegalHoldsError.unknown_legal_hold_error = LegalHoldsError('unknown_legal_hold_error') -LegalHoldsError.insufficient_permissions = LegalHoldsError('insufficient_permissions') -LegalHoldsError.other = LegalHoldsError('other') +LegalHoldsError.unknown_legal_hold_error = LegalHoldsError("unknown_legal_hold_error") +LegalHoldsError.insufficient_permissions = LegalHoldsError("insufficient_permissions") +LegalHoldsError.other = LegalHoldsError("other") LegalHoldsGetPolicyArg.id.validator = LegalHoldId_validator -LegalHoldsGetPolicyArg._all_field_names_ = set(['id']) -LegalHoldsGetPolicyArg._all_fields_ = [('id', LegalHoldsGetPolicyArg.id.validator)] +LegalHoldsGetPolicyArg._all_field_names_ = set(["id"]) +LegalHoldsGetPolicyArg._all_fields_ = [("id", LegalHoldsGetPolicyArg.id.validator)] LegalHoldsGetPolicyError._legal_hold_policy_not_found_validator = bv.Void() LegalHoldsGetPolicyError._tagmap = { - 'legal_hold_policy_not_found': LegalHoldsGetPolicyError._legal_hold_policy_not_found_validator, + "legal_hold_policy_not_found": LegalHoldsGetPolicyError._legal_hold_policy_not_found_validator, } LegalHoldsGetPolicyError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsGetPolicyError.legal_hold_policy_not_found = LegalHoldsGetPolicyError('legal_hold_policy_not_found') +LegalHoldsGetPolicyError.legal_hold_policy_not_found = LegalHoldsGetPolicyError( + "legal_hold_policy_not_found" +) -LegalHoldsListHeldRevisionResult.entries.validator = bv.List(LegalHoldHeldRevisionMetadata_validator) +LegalHoldsListHeldRevisionResult.entries.validator = bv.List( + LegalHoldHeldRevisionMetadata_validator +) LegalHoldsListHeldRevisionResult.cursor.validator = bv.Nullable(ListHeldRevisionCursor_validator) LegalHoldsListHeldRevisionResult.has_more.validator = bv.Boolean() -LegalHoldsListHeldRevisionResult._all_field_names_ = set([ - 'entries', - 'cursor', - 'has_more', -]) +LegalHoldsListHeldRevisionResult._all_field_names_ = set( + [ + "entries", + "cursor", + "has_more", + ] +) LegalHoldsListHeldRevisionResult._all_fields_ = [ - ('entries', LegalHoldsListHeldRevisionResult.entries.validator), - ('cursor', LegalHoldsListHeldRevisionResult.cursor.validator), - ('has_more', LegalHoldsListHeldRevisionResult.has_more.validator), + ("entries", LegalHoldsListHeldRevisionResult.entries.validator), + ("cursor", LegalHoldsListHeldRevisionResult.cursor.validator), + ("has_more", LegalHoldsListHeldRevisionResult.has_more.validator), ] LegalHoldsListHeldRevisionsArg.id.validator = LegalHoldId_validator -LegalHoldsListHeldRevisionsArg._all_field_names_ = set(['id']) -LegalHoldsListHeldRevisionsArg._all_fields_ = [('id', LegalHoldsListHeldRevisionsArg.id.validator)] +LegalHoldsListHeldRevisionsArg._all_field_names_ = set(["id"]) +LegalHoldsListHeldRevisionsArg._all_fields_ = [("id", LegalHoldsListHeldRevisionsArg.id.validator)] LegalHoldsListHeldRevisionsContinueArg.id.validator = LegalHoldId_validator -LegalHoldsListHeldRevisionsContinueArg.cursor.validator = bv.Nullable(ListHeldRevisionCursor_validator) -LegalHoldsListHeldRevisionsContinueArg._all_field_names_ = set([ - 'id', - 'cursor', -]) +LegalHoldsListHeldRevisionsContinueArg.cursor.validator = bv.Nullable( + ListHeldRevisionCursor_validator +) +LegalHoldsListHeldRevisionsContinueArg._all_field_names_ = set( + [ + "id", + "cursor", + ] +) LegalHoldsListHeldRevisionsContinueArg._all_fields_ = [ - ('id', LegalHoldsListHeldRevisionsContinueArg.id.validator), - ('cursor', LegalHoldsListHeldRevisionsContinueArg.cursor.validator), + ("id", LegalHoldsListHeldRevisionsContinueArg.id.validator), + ("cursor", LegalHoldsListHeldRevisionsContinueArg.cursor.validator), ] LegalHoldsListHeldRevisionsContinueError._unknown_legal_hold_error_validator = bv.Void() @@ -15618,366 +16662,443 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldsListHeldRevisionsContinueError._reset_validator = bv.Void() LegalHoldsListHeldRevisionsContinueError._other_validator = bv.Void() LegalHoldsListHeldRevisionsContinueError._tagmap = { - 'unknown_legal_hold_error': LegalHoldsListHeldRevisionsContinueError._unknown_legal_hold_error_validator, - 'transient_error': LegalHoldsListHeldRevisionsContinueError._transient_error_validator, - 'reset': LegalHoldsListHeldRevisionsContinueError._reset_validator, - 'other': LegalHoldsListHeldRevisionsContinueError._other_validator, + "unknown_legal_hold_error": LegalHoldsListHeldRevisionsContinueError._unknown_legal_hold_error_validator, + "transient_error": LegalHoldsListHeldRevisionsContinueError._transient_error_validator, + "reset": LegalHoldsListHeldRevisionsContinueError._reset_validator, + "other": LegalHoldsListHeldRevisionsContinueError._other_validator, } -LegalHoldsListHeldRevisionsContinueError.unknown_legal_hold_error = LegalHoldsListHeldRevisionsContinueError('unknown_legal_hold_error') -LegalHoldsListHeldRevisionsContinueError.transient_error = LegalHoldsListHeldRevisionsContinueError('transient_error') -LegalHoldsListHeldRevisionsContinueError.reset = LegalHoldsListHeldRevisionsContinueError('reset') -LegalHoldsListHeldRevisionsContinueError.other = LegalHoldsListHeldRevisionsContinueError('other') +LegalHoldsListHeldRevisionsContinueError.unknown_legal_hold_error = ( + LegalHoldsListHeldRevisionsContinueError("unknown_legal_hold_error") +) +LegalHoldsListHeldRevisionsContinueError.transient_error = LegalHoldsListHeldRevisionsContinueError( + "transient_error" +) +LegalHoldsListHeldRevisionsContinueError.reset = LegalHoldsListHeldRevisionsContinueError("reset") +LegalHoldsListHeldRevisionsContinueError.other = LegalHoldsListHeldRevisionsContinueError("other") LegalHoldsListHeldRevisionsError._transient_error_validator = bv.Void() LegalHoldsListHeldRevisionsError._legal_hold_still_empty_validator = bv.Void() LegalHoldsListHeldRevisionsError._inactive_legal_hold_validator = bv.Void() LegalHoldsListHeldRevisionsError._tagmap = { - 'transient_error': LegalHoldsListHeldRevisionsError._transient_error_validator, - 'legal_hold_still_empty': LegalHoldsListHeldRevisionsError._legal_hold_still_empty_validator, - 'inactive_legal_hold': LegalHoldsListHeldRevisionsError._inactive_legal_hold_validator, + "transient_error": LegalHoldsListHeldRevisionsError._transient_error_validator, + "legal_hold_still_empty": LegalHoldsListHeldRevisionsError._legal_hold_still_empty_validator, + "inactive_legal_hold": LegalHoldsListHeldRevisionsError._inactive_legal_hold_validator, } LegalHoldsListHeldRevisionsError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsListHeldRevisionsError.transient_error = LegalHoldsListHeldRevisionsError('transient_error') -LegalHoldsListHeldRevisionsError.legal_hold_still_empty = LegalHoldsListHeldRevisionsError('legal_hold_still_empty') -LegalHoldsListHeldRevisionsError.inactive_legal_hold = LegalHoldsListHeldRevisionsError('inactive_legal_hold') +LegalHoldsListHeldRevisionsError.transient_error = LegalHoldsListHeldRevisionsError( + "transient_error" +) +LegalHoldsListHeldRevisionsError.legal_hold_still_empty = LegalHoldsListHeldRevisionsError( + "legal_hold_still_empty" +) +LegalHoldsListHeldRevisionsError.inactive_legal_hold = LegalHoldsListHeldRevisionsError( + "inactive_legal_hold" +) LegalHoldsListPoliciesArg.include_released.validator = bv.Boolean() -LegalHoldsListPoliciesArg._all_field_names_ = set(['include_released']) -LegalHoldsListPoliciesArg._all_fields_ = [('include_released', LegalHoldsListPoliciesArg.include_released.validator)] +LegalHoldsListPoliciesArg._all_field_names_ = set(["include_released"]) +LegalHoldsListPoliciesArg._all_fields_ = [ + ("include_released", LegalHoldsListPoliciesArg.include_released.validator) +] LegalHoldsListPoliciesError._transient_error_validator = bv.Void() LegalHoldsListPoliciesError._tagmap = { - 'transient_error': LegalHoldsListPoliciesError._transient_error_validator, + "transient_error": LegalHoldsListPoliciesError._transient_error_validator, } LegalHoldsListPoliciesError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsListPoliciesError.transient_error = LegalHoldsListPoliciesError('transient_error') +LegalHoldsListPoliciesError.transient_error = LegalHoldsListPoliciesError("transient_error") LegalHoldsListPoliciesResult.policies.validator = bv.List(LegalHoldPolicy_validator) -LegalHoldsListPoliciesResult._all_field_names_ = set(['policies']) -LegalHoldsListPoliciesResult._all_fields_ = [('policies', LegalHoldsListPoliciesResult.policies.validator)] +LegalHoldsListPoliciesResult._all_field_names_ = set(["policies"]) +LegalHoldsListPoliciesResult._all_fields_ = [ + ("policies", LegalHoldsListPoliciesResult.policies.validator) +] LegalHoldsPolicyCreateArg.name.validator = LegalHoldPolicyName_validator LegalHoldsPolicyCreateArg.description.validator = bv.Nullable(LegalHoldPolicyDescription_validator) LegalHoldsPolicyCreateArg.members.validator = bv.List(team_common.TeamMemberId_validator) LegalHoldsPolicyCreateArg.start_date.validator = bv.Nullable(common.DropboxTimestamp_validator) LegalHoldsPolicyCreateArg.end_date.validator = bv.Nullable(common.DropboxTimestamp_validator) -LegalHoldsPolicyCreateArg._all_field_names_ = set([ - 'name', - 'description', - 'members', - 'start_date', - 'end_date', -]) +LegalHoldsPolicyCreateArg._all_field_names_ = set( + [ + "name", + "description", + "members", + "start_date", + "end_date", + ] +) LegalHoldsPolicyCreateArg._all_fields_ = [ - ('name', LegalHoldsPolicyCreateArg.name.validator), - ('description', LegalHoldsPolicyCreateArg.description.validator), - ('members', LegalHoldsPolicyCreateArg.members.validator), - ('start_date', LegalHoldsPolicyCreateArg.start_date.validator), - ('end_date', LegalHoldsPolicyCreateArg.end_date.validator), + ("name", LegalHoldsPolicyCreateArg.name.validator), + ("description", LegalHoldsPolicyCreateArg.description.validator), + ("members", LegalHoldsPolicyCreateArg.members.validator), + ("start_date", LegalHoldsPolicyCreateArg.start_date.validator), + ("end_date", LegalHoldsPolicyCreateArg.end_date.validator), ] LegalHoldsPolicyCreateError._start_date_is_later_than_end_date_validator = bv.Void() LegalHoldsPolicyCreateError._empty_members_list_validator = bv.Void() LegalHoldsPolicyCreateError._invalid_members_validator = bv.Void() -LegalHoldsPolicyCreateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator = bv.Void() +LegalHoldsPolicyCreateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator = ( + bv.Void() +) LegalHoldsPolicyCreateError._transient_error_validator = bv.Void() LegalHoldsPolicyCreateError._name_must_be_unique_validator = bv.Void() LegalHoldsPolicyCreateError._team_exceeded_legal_hold_quota_validator = bv.Void() LegalHoldsPolicyCreateError._invalid_date_validator = bv.Void() LegalHoldsPolicyCreateError._tagmap = { - 'start_date_is_later_than_end_date': LegalHoldsPolicyCreateError._start_date_is_later_than_end_date_validator, - 'empty_members_list': LegalHoldsPolicyCreateError._empty_members_list_validator, - 'invalid_members': LegalHoldsPolicyCreateError._invalid_members_validator, - 'number_of_users_on_hold_is_greater_than_hold_limitation': LegalHoldsPolicyCreateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator, - 'transient_error': LegalHoldsPolicyCreateError._transient_error_validator, - 'name_must_be_unique': LegalHoldsPolicyCreateError._name_must_be_unique_validator, - 'team_exceeded_legal_hold_quota': LegalHoldsPolicyCreateError._team_exceeded_legal_hold_quota_validator, - 'invalid_date': LegalHoldsPolicyCreateError._invalid_date_validator, + "start_date_is_later_than_end_date": LegalHoldsPolicyCreateError._start_date_is_later_than_end_date_validator, + "empty_members_list": LegalHoldsPolicyCreateError._empty_members_list_validator, + "invalid_members": LegalHoldsPolicyCreateError._invalid_members_validator, + "number_of_users_on_hold_is_greater_than_hold_limitation": LegalHoldsPolicyCreateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator, + "transient_error": LegalHoldsPolicyCreateError._transient_error_validator, + "name_must_be_unique": LegalHoldsPolicyCreateError._name_must_be_unique_validator, + "team_exceeded_legal_hold_quota": LegalHoldsPolicyCreateError._team_exceeded_legal_hold_quota_validator, + "invalid_date": LegalHoldsPolicyCreateError._invalid_date_validator, } LegalHoldsPolicyCreateError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsPolicyCreateError.start_date_is_later_than_end_date = LegalHoldsPolicyCreateError('start_date_is_later_than_end_date') -LegalHoldsPolicyCreateError.empty_members_list = LegalHoldsPolicyCreateError('empty_members_list') -LegalHoldsPolicyCreateError.invalid_members = LegalHoldsPolicyCreateError('invalid_members') -LegalHoldsPolicyCreateError.number_of_users_on_hold_is_greater_than_hold_limitation = LegalHoldsPolicyCreateError('number_of_users_on_hold_is_greater_than_hold_limitation') -LegalHoldsPolicyCreateError.transient_error = LegalHoldsPolicyCreateError('transient_error') -LegalHoldsPolicyCreateError.name_must_be_unique = LegalHoldsPolicyCreateError('name_must_be_unique') -LegalHoldsPolicyCreateError.team_exceeded_legal_hold_quota = LegalHoldsPolicyCreateError('team_exceeded_legal_hold_quota') -LegalHoldsPolicyCreateError.invalid_date = LegalHoldsPolicyCreateError('invalid_date') +LegalHoldsPolicyCreateError.start_date_is_later_than_end_date = LegalHoldsPolicyCreateError( + "start_date_is_later_than_end_date" +) +LegalHoldsPolicyCreateError.empty_members_list = LegalHoldsPolicyCreateError("empty_members_list") +LegalHoldsPolicyCreateError.invalid_members = LegalHoldsPolicyCreateError("invalid_members") +LegalHoldsPolicyCreateError.number_of_users_on_hold_is_greater_than_hold_limitation = ( + LegalHoldsPolicyCreateError("number_of_users_on_hold_is_greater_than_hold_limitation") +) +LegalHoldsPolicyCreateError.transient_error = LegalHoldsPolicyCreateError("transient_error") +LegalHoldsPolicyCreateError.name_must_be_unique = LegalHoldsPolicyCreateError("name_must_be_unique") +LegalHoldsPolicyCreateError.team_exceeded_legal_hold_quota = LegalHoldsPolicyCreateError( + "team_exceeded_legal_hold_quota" +) +LegalHoldsPolicyCreateError.invalid_date = LegalHoldsPolicyCreateError("invalid_date") LegalHoldsPolicyReleaseArg.id.validator = LegalHoldId_validator -LegalHoldsPolicyReleaseArg._all_field_names_ = set(['id']) -LegalHoldsPolicyReleaseArg._all_fields_ = [('id', LegalHoldsPolicyReleaseArg.id.validator)] +LegalHoldsPolicyReleaseArg._all_field_names_ = set(["id"]) +LegalHoldsPolicyReleaseArg._all_fields_ = [("id", LegalHoldsPolicyReleaseArg.id.validator)] LegalHoldsPolicyReleaseError._legal_hold_performing_another_operation_validator = bv.Void() LegalHoldsPolicyReleaseError._legal_hold_already_releasing_validator = bv.Void() LegalHoldsPolicyReleaseError._legal_hold_policy_not_found_validator = bv.Void() LegalHoldsPolicyReleaseError._tagmap = { - 'legal_hold_performing_another_operation': LegalHoldsPolicyReleaseError._legal_hold_performing_another_operation_validator, - 'legal_hold_already_releasing': LegalHoldsPolicyReleaseError._legal_hold_already_releasing_validator, - 'legal_hold_policy_not_found': LegalHoldsPolicyReleaseError._legal_hold_policy_not_found_validator, + "legal_hold_performing_another_operation": LegalHoldsPolicyReleaseError._legal_hold_performing_another_operation_validator, + "legal_hold_already_releasing": LegalHoldsPolicyReleaseError._legal_hold_already_releasing_validator, + "legal_hold_policy_not_found": LegalHoldsPolicyReleaseError._legal_hold_policy_not_found_validator, } LegalHoldsPolicyReleaseError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsPolicyReleaseError.legal_hold_performing_another_operation = LegalHoldsPolicyReleaseError('legal_hold_performing_another_operation') -LegalHoldsPolicyReleaseError.legal_hold_already_releasing = LegalHoldsPolicyReleaseError('legal_hold_already_releasing') -LegalHoldsPolicyReleaseError.legal_hold_policy_not_found = LegalHoldsPolicyReleaseError('legal_hold_policy_not_found') +LegalHoldsPolicyReleaseError.legal_hold_performing_another_operation = LegalHoldsPolicyReleaseError( + "legal_hold_performing_another_operation" +) +LegalHoldsPolicyReleaseError.legal_hold_already_releasing = LegalHoldsPolicyReleaseError( + "legal_hold_already_releasing" +) +LegalHoldsPolicyReleaseError.legal_hold_policy_not_found = LegalHoldsPolicyReleaseError( + "legal_hold_policy_not_found" +) LegalHoldsPolicyUpdateArg.id.validator = LegalHoldId_validator LegalHoldsPolicyUpdateArg.name.validator = bv.Nullable(LegalHoldPolicyName_validator) LegalHoldsPolicyUpdateArg.description.validator = bv.Nullable(LegalHoldPolicyDescription_validator) -LegalHoldsPolicyUpdateArg.members.validator = bv.Nullable(bv.List(team_common.TeamMemberId_validator)) -LegalHoldsPolicyUpdateArg._all_field_names_ = set([ - 'id', - 'name', - 'description', - 'members', -]) +LegalHoldsPolicyUpdateArg.members.validator = bv.Nullable( + bv.List(team_common.TeamMemberId_validator) +) +LegalHoldsPolicyUpdateArg._all_field_names_ = set( + [ + "id", + "name", + "description", + "members", + ] +) LegalHoldsPolicyUpdateArg._all_fields_ = [ - ('id', LegalHoldsPolicyUpdateArg.id.validator), - ('name', LegalHoldsPolicyUpdateArg.name.validator), - ('description', LegalHoldsPolicyUpdateArg.description.validator), - ('members', LegalHoldsPolicyUpdateArg.members.validator), + ("id", LegalHoldsPolicyUpdateArg.id.validator), + ("name", LegalHoldsPolicyUpdateArg.name.validator), + ("description", LegalHoldsPolicyUpdateArg.description.validator), + ("members", LegalHoldsPolicyUpdateArg.members.validator), ] LegalHoldsPolicyUpdateError._transient_error_validator = bv.Void() LegalHoldsPolicyUpdateError._inactive_legal_hold_validator = bv.Void() LegalHoldsPolicyUpdateError._legal_hold_performing_another_operation_validator = bv.Void() LegalHoldsPolicyUpdateError._invalid_members_validator = bv.Void() -LegalHoldsPolicyUpdateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator = bv.Void() +LegalHoldsPolicyUpdateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator = ( + bv.Void() +) LegalHoldsPolicyUpdateError._empty_members_list_validator = bv.Void() LegalHoldsPolicyUpdateError._name_must_be_unique_validator = bv.Void() LegalHoldsPolicyUpdateError._legal_hold_policy_not_found_validator = bv.Void() LegalHoldsPolicyUpdateError._tagmap = { - 'transient_error': LegalHoldsPolicyUpdateError._transient_error_validator, - 'inactive_legal_hold': LegalHoldsPolicyUpdateError._inactive_legal_hold_validator, - 'legal_hold_performing_another_operation': LegalHoldsPolicyUpdateError._legal_hold_performing_another_operation_validator, - 'invalid_members': LegalHoldsPolicyUpdateError._invalid_members_validator, - 'number_of_users_on_hold_is_greater_than_hold_limitation': LegalHoldsPolicyUpdateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator, - 'empty_members_list': LegalHoldsPolicyUpdateError._empty_members_list_validator, - 'name_must_be_unique': LegalHoldsPolicyUpdateError._name_must_be_unique_validator, - 'legal_hold_policy_not_found': LegalHoldsPolicyUpdateError._legal_hold_policy_not_found_validator, + "transient_error": LegalHoldsPolicyUpdateError._transient_error_validator, + "inactive_legal_hold": LegalHoldsPolicyUpdateError._inactive_legal_hold_validator, + "legal_hold_performing_another_operation": LegalHoldsPolicyUpdateError._legal_hold_performing_another_operation_validator, + "invalid_members": LegalHoldsPolicyUpdateError._invalid_members_validator, + "number_of_users_on_hold_is_greater_than_hold_limitation": LegalHoldsPolicyUpdateError._number_of_users_on_hold_is_greater_than_hold_limitation_validator, + "empty_members_list": LegalHoldsPolicyUpdateError._empty_members_list_validator, + "name_must_be_unique": LegalHoldsPolicyUpdateError._name_must_be_unique_validator, + "legal_hold_policy_not_found": LegalHoldsPolicyUpdateError._legal_hold_policy_not_found_validator, } LegalHoldsPolicyUpdateError._tagmap.update(LegalHoldsError._tagmap) -LegalHoldsPolicyUpdateError.transient_error = LegalHoldsPolicyUpdateError('transient_error') -LegalHoldsPolicyUpdateError.inactive_legal_hold = LegalHoldsPolicyUpdateError('inactive_legal_hold') -LegalHoldsPolicyUpdateError.legal_hold_performing_another_operation = LegalHoldsPolicyUpdateError('legal_hold_performing_another_operation') -LegalHoldsPolicyUpdateError.invalid_members = LegalHoldsPolicyUpdateError('invalid_members') -LegalHoldsPolicyUpdateError.number_of_users_on_hold_is_greater_than_hold_limitation = LegalHoldsPolicyUpdateError('number_of_users_on_hold_is_greater_than_hold_limitation') -LegalHoldsPolicyUpdateError.empty_members_list = LegalHoldsPolicyUpdateError('empty_members_list') -LegalHoldsPolicyUpdateError.name_must_be_unique = LegalHoldsPolicyUpdateError('name_must_be_unique') -LegalHoldsPolicyUpdateError.legal_hold_policy_not_found = LegalHoldsPolicyUpdateError('legal_hold_policy_not_found') +LegalHoldsPolicyUpdateError.transient_error = LegalHoldsPolicyUpdateError("transient_error") +LegalHoldsPolicyUpdateError.inactive_legal_hold = LegalHoldsPolicyUpdateError("inactive_legal_hold") +LegalHoldsPolicyUpdateError.legal_hold_performing_another_operation = LegalHoldsPolicyUpdateError( + "legal_hold_performing_another_operation" +) +LegalHoldsPolicyUpdateError.invalid_members = LegalHoldsPolicyUpdateError("invalid_members") +LegalHoldsPolicyUpdateError.number_of_users_on_hold_is_greater_than_hold_limitation = ( + LegalHoldsPolicyUpdateError("number_of_users_on_hold_is_greater_than_hold_limitation") +) +LegalHoldsPolicyUpdateError.empty_members_list = LegalHoldsPolicyUpdateError("empty_members_list") +LegalHoldsPolicyUpdateError.name_must_be_unique = LegalHoldsPolicyUpdateError("name_must_be_unique") +LegalHoldsPolicyUpdateError.legal_hold_policy_not_found = LegalHoldsPolicyUpdateError( + "legal_hold_policy_not_found" +) ListMemberAppsArg.team_member_id.validator = bv.String() -ListMemberAppsArg._all_field_names_ = set(['team_member_id']) -ListMemberAppsArg._all_fields_ = [('team_member_id', ListMemberAppsArg.team_member_id.validator)] +ListMemberAppsArg._all_field_names_ = set(["team_member_id"]) +ListMemberAppsArg._all_fields_ = [("team_member_id", ListMemberAppsArg.team_member_id.validator)] ListMemberAppsError._member_not_found_validator = bv.Void() ListMemberAppsError._other_validator = bv.Void() ListMemberAppsError._tagmap = { - 'member_not_found': ListMemberAppsError._member_not_found_validator, - 'other': ListMemberAppsError._other_validator, + "member_not_found": ListMemberAppsError._member_not_found_validator, + "other": ListMemberAppsError._other_validator, } -ListMemberAppsError.member_not_found = ListMemberAppsError('member_not_found') -ListMemberAppsError.other = ListMemberAppsError('other') +ListMemberAppsError.member_not_found = ListMemberAppsError("member_not_found") +ListMemberAppsError.other = ListMemberAppsError("other") ListMemberAppsResult.linked_api_apps.validator = bv.List(ApiApp_validator) -ListMemberAppsResult._all_field_names_ = set(['linked_api_apps']) -ListMemberAppsResult._all_fields_ = [('linked_api_apps', ListMemberAppsResult.linked_api_apps.validator)] +ListMemberAppsResult._all_field_names_ = set(["linked_api_apps"]) +ListMemberAppsResult._all_fields_ = [ + ("linked_api_apps", ListMemberAppsResult.linked_api_apps.validator) +] ListMemberDevicesArg.team_member_id.validator = bv.String() ListMemberDevicesArg.include_web_sessions.validator = bv.Boolean() ListMemberDevicesArg.include_desktop_clients.validator = bv.Boolean() ListMemberDevicesArg.include_mobile_clients.validator = bv.Boolean() -ListMemberDevicesArg._all_field_names_ = set([ - 'team_member_id', - 'include_web_sessions', - 'include_desktop_clients', - 'include_mobile_clients', -]) +ListMemberDevicesArg._all_field_names_ = set( + [ + "team_member_id", + "include_web_sessions", + "include_desktop_clients", + "include_mobile_clients", + ] +) ListMemberDevicesArg._all_fields_ = [ - ('team_member_id', ListMemberDevicesArg.team_member_id.validator), - ('include_web_sessions', ListMemberDevicesArg.include_web_sessions.validator), - ('include_desktop_clients', ListMemberDevicesArg.include_desktop_clients.validator), - ('include_mobile_clients', ListMemberDevicesArg.include_mobile_clients.validator), + ("team_member_id", ListMemberDevicesArg.team_member_id.validator), + ("include_web_sessions", ListMemberDevicesArg.include_web_sessions.validator), + ("include_desktop_clients", ListMemberDevicesArg.include_desktop_clients.validator), + ("include_mobile_clients", ListMemberDevicesArg.include_mobile_clients.validator), ] ListMemberDevicesError._member_not_found_validator = bv.Void() ListMemberDevicesError._other_validator = bv.Void() ListMemberDevicesError._tagmap = { - 'member_not_found': ListMemberDevicesError._member_not_found_validator, - 'other': ListMemberDevicesError._other_validator, + "member_not_found": ListMemberDevicesError._member_not_found_validator, + "other": ListMemberDevicesError._other_validator, } -ListMemberDevicesError.member_not_found = ListMemberDevicesError('member_not_found') -ListMemberDevicesError.other = ListMemberDevicesError('other') - -ListMemberDevicesResult.active_web_sessions.validator = bv.Nullable(bv.List(ActiveWebSession_validator)) -ListMemberDevicesResult.desktop_client_sessions.validator = bv.Nullable(bv.List(DesktopClientSession_validator)) -ListMemberDevicesResult.mobile_client_sessions.validator = bv.Nullable(bv.List(MobileClientSession_validator)) -ListMemberDevicesResult._all_field_names_ = set([ - 'active_web_sessions', - 'desktop_client_sessions', - 'mobile_client_sessions', -]) +ListMemberDevicesError.member_not_found = ListMemberDevicesError("member_not_found") +ListMemberDevicesError.other = ListMemberDevicesError("other") + +ListMemberDevicesResult.active_web_sessions.validator = bv.Nullable( + bv.List(ActiveWebSession_validator) +) +ListMemberDevicesResult.desktop_client_sessions.validator = bv.Nullable( + bv.List(DesktopClientSession_validator) +) +ListMemberDevicesResult.mobile_client_sessions.validator = bv.Nullable( + bv.List(MobileClientSession_validator) +) +ListMemberDevicesResult._all_field_names_ = set( + [ + "active_web_sessions", + "desktop_client_sessions", + "mobile_client_sessions", + ] +) ListMemberDevicesResult._all_fields_ = [ - ('active_web_sessions', ListMemberDevicesResult.active_web_sessions.validator), - ('desktop_client_sessions', ListMemberDevicesResult.desktop_client_sessions.validator), - ('mobile_client_sessions', ListMemberDevicesResult.mobile_client_sessions.validator), + ("active_web_sessions", ListMemberDevicesResult.active_web_sessions.validator), + ( + "desktop_client_sessions", + ListMemberDevicesResult.desktop_client_sessions.validator, + ), + ( + "mobile_client_sessions", + ListMemberDevicesResult.mobile_client_sessions.validator, + ), ] ListMembersAppsArg.cursor.validator = bv.Nullable(bv.String()) -ListMembersAppsArg._all_field_names_ = set(['cursor']) -ListMembersAppsArg._all_fields_ = [('cursor', ListMembersAppsArg.cursor.validator)] +ListMembersAppsArg._all_field_names_ = set(["cursor"]) +ListMembersAppsArg._all_fields_ = [("cursor", ListMembersAppsArg.cursor.validator)] ListMembersAppsError._reset_validator = bv.Void() ListMembersAppsError._other_validator = bv.Void() ListMembersAppsError._tagmap = { - 'reset': ListMembersAppsError._reset_validator, - 'other': ListMembersAppsError._other_validator, + "reset": ListMembersAppsError._reset_validator, + "other": ListMembersAppsError._other_validator, } -ListMembersAppsError.reset = ListMembersAppsError('reset') -ListMembersAppsError.other = ListMembersAppsError('other') +ListMembersAppsError.reset = ListMembersAppsError("reset") +ListMembersAppsError.other = ListMembersAppsError("other") ListMembersAppsResult.apps.validator = bv.List(MemberLinkedApps_validator) ListMembersAppsResult.has_more.validator = bv.Boolean() ListMembersAppsResult.cursor.validator = bv.Nullable(bv.String()) -ListMembersAppsResult._all_field_names_ = set([ - 'apps', - 'has_more', - 'cursor', -]) +ListMembersAppsResult._all_field_names_ = set( + [ + "apps", + "has_more", + "cursor", + ] +) ListMembersAppsResult._all_fields_ = [ - ('apps', ListMembersAppsResult.apps.validator), - ('has_more', ListMembersAppsResult.has_more.validator), - ('cursor', ListMembersAppsResult.cursor.validator), + ("apps", ListMembersAppsResult.apps.validator), + ("has_more", ListMembersAppsResult.has_more.validator), + ("cursor", ListMembersAppsResult.cursor.validator), ] ListMembersDevicesArg.cursor.validator = bv.Nullable(bv.String()) ListMembersDevicesArg.include_web_sessions.validator = bv.Boolean() ListMembersDevicesArg.include_desktop_clients.validator = bv.Boolean() ListMembersDevicesArg.include_mobile_clients.validator = bv.Boolean() -ListMembersDevicesArg._all_field_names_ = set([ - 'cursor', - 'include_web_sessions', - 'include_desktop_clients', - 'include_mobile_clients', -]) +ListMembersDevicesArg._all_field_names_ = set( + [ + "cursor", + "include_web_sessions", + "include_desktop_clients", + "include_mobile_clients", + ] +) ListMembersDevicesArg._all_fields_ = [ - ('cursor', ListMembersDevicesArg.cursor.validator), - ('include_web_sessions', ListMembersDevicesArg.include_web_sessions.validator), - ('include_desktop_clients', ListMembersDevicesArg.include_desktop_clients.validator), - ('include_mobile_clients', ListMembersDevicesArg.include_mobile_clients.validator), + ("cursor", ListMembersDevicesArg.cursor.validator), + ("include_web_sessions", ListMembersDevicesArg.include_web_sessions.validator), + ( + "include_desktop_clients", + ListMembersDevicesArg.include_desktop_clients.validator, + ), + ("include_mobile_clients", ListMembersDevicesArg.include_mobile_clients.validator), ] ListMembersDevicesError._reset_validator = bv.Void() ListMembersDevicesError._other_validator = bv.Void() ListMembersDevicesError._tagmap = { - 'reset': ListMembersDevicesError._reset_validator, - 'other': ListMembersDevicesError._other_validator, + "reset": ListMembersDevicesError._reset_validator, + "other": ListMembersDevicesError._other_validator, } -ListMembersDevicesError.reset = ListMembersDevicesError('reset') -ListMembersDevicesError.other = ListMembersDevicesError('other') +ListMembersDevicesError.reset = ListMembersDevicesError("reset") +ListMembersDevicesError.other = ListMembersDevicesError("other") ListMembersDevicesResult.devices.validator = bv.List(MemberDevices_validator) ListMembersDevicesResult.has_more.validator = bv.Boolean() ListMembersDevicesResult.cursor.validator = bv.Nullable(bv.String()) -ListMembersDevicesResult._all_field_names_ = set([ - 'devices', - 'has_more', - 'cursor', -]) +ListMembersDevicesResult._all_field_names_ = set( + [ + "devices", + "has_more", + "cursor", + ] +) ListMembersDevicesResult._all_fields_ = [ - ('devices', ListMembersDevicesResult.devices.validator), - ('has_more', ListMembersDevicesResult.has_more.validator), - ('cursor', ListMembersDevicesResult.cursor.validator), + ("devices", ListMembersDevicesResult.devices.validator), + ("has_more", ListMembersDevicesResult.has_more.validator), + ("cursor", ListMembersDevicesResult.cursor.validator), ] ListTeamAppsArg.cursor.validator = bv.Nullable(bv.String()) -ListTeamAppsArg._all_field_names_ = set(['cursor']) -ListTeamAppsArg._all_fields_ = [('cursor', ListTeamAppsArg.cursor.validator)] +ListTeamAppsArg._all_field_names_ = set(["cursor"]) +ListTeamAppsArg._all_fields_ = [("cursor", ListTeamAppsArg.cursor.validator)] ListTeamAppsError._reset_validator = bv.Void() ListTeamAppsError._other_validator = bv.Void() ListTeamAppsError._tagmap = { - 'reset': ListTeamAppsError._reset_validator, - 'other': ListTeamAppsError._other_validator, + "reset": ListTeamAppsError._reset_validator, + "other": ListTeamAppsError._other_validator, } -ListTeamAppsError.reset = ListTeamAppsError('reset') -ListTeamAppsError.other = ListTeamAppsError('other') +ListTeamAppsError.reset = ListTeamAppsError("reset") +ListTeamAppsError.other = ListTeamAppsError("other") ListTeamAppsResult.apps.validator = bv.List(MemberLinkedApps_validator) ListTeamAppsResult.has_more.validator = bv.Boolean() ListTeamAppsResult.cursor.validator = bv.Nullable(bv.String()) -ListTeamAppsResult._all_field_names_ = set([ - 'apps', - 'has_more', - 'cursor', -]) +ListTeamAppsResult._all_field_names_ = set( + [ + "apps", + "has_more", + "cursor", + ] +) ListTeamAppsResult._all_fields_ = [ - ('apps', ListTeamAppsResult.apps.validator), - ('has_more', ListTeamAppsResult.has_more.validator), - ('cursor', ListTeamAppsResult.cursor.validator), + ("apps", ListTeamAppsResult.apps.validator), + ("has_more", ListTeamAppsResult.has_more.validator), + ("cursor", ListTeamAppsResult.cursor.validator), ] ListTeamDevicesArg.cursor.validator = bv.Nullable(bv.String()) ListTeamDevicesArg.include_web_sessions.validator = bv.Boolean() ListTeamDevicesArg.include_desktop_clients.validator = bv.Boolean() ListTeamDevicesArg.include_mobile_clients.validator = bv.Boolean() -ListTeamDevicesArg._all_field_names_ = set([ - 'cursor', - 'include_web_sessions', - 'include_desktop_clients', - 'include_mobile_clients', -]) +ListTeamDevicesArg._all_field_names_ = set( + [ + "cursor", + "include_web_sessions", + "include_desktop_clients", + "include_mobile_clients", + ] +) ListTeamDevicesArg._all_fields_ = [ - ('cursor', ListTeamDevicesArg.cursor.validator), - ('include_web_sessions', ListTeamDevicesArg.include_web_sessions.validator), - ('include_desktop_clients', ListTeamDevicesArg.include_desktop_clients.validator), - ('include_mobile_clients', ListTeamDevicesArg.include_mobile_clients.validator), + ("cursor", ListTeamDevicesArg.cursor.validator), + ("include_web_sessions", ListTeamDevicesArg.include_web_sessions.validator), + ("include_desktop_clients", ListTeamDevicesArg.include_desktop_clients.validator), + ("include_mobile_clients", ListTeamDevicesArg.include_mobile_clients.validator), ] ListTeamDevicesError._reset_validator = bv.Void() ListTeamDevicesError._other_validator = bv.Void() ListTeamDevicesError._tagmap = { - 'reset': ListTeamDevicesError._reset_validator, - 'other': ListTeamDevicesError._other_validator, + "reset": ListTeamDevicesError._reset_validator, + "other": ListTeamDevicesError._other_validator, } -ListTeamDevicesError.reset = ListTeamDevicesError('reset') -ListTeamDevicesError.other = ListTeamDevicesError('other') +ListTeamDevicesError.reset = ListTeamDevicesError("reset") +ListTeamDevicesError.other = ListTeamDevicesError("other") ListTeamDevicesResult.devices.validator = bv.List(MemberDevices_validator) ListTeamDevicesResult.has_more.validator = bv.Boolean() ListTeamDevicesResult.cursor.validator = bv.Nullable(bv.String()) -ListTeamDevicesResult._all_field_names_ = set([ - 'devices', - 'has_more', - 'cursor', -]) +ListTeamDevicesResult._all_field_names_ = set( + [ + "devices", + "has_more", + "cursor", + ] +) ListTeamDevicesResult._all_fields_ = [ - ('devices', ListTeamDevicesResult.devices.validator), - ('has_more', ListTeamDevicesResult.has_more.validator), - ('cursor', ListTeamDevicesResult.cursor.validator), + ("devices", ListTeamDevicesResult.devices.validator), + ("has_more", ListTeamDevicesResult.has_more.validator), + ("cursor", ListTeamDevicesResult.cursor.validator), ] MemberAccess.user.validator = UserSelectorArg_validator MemberAccess.access_type.validator = GroupAccessType_validator -MemberAccess._all_field_names_ = set([ - 'user', - 'access_type', -]) +MemberAccess._all_field_names_ = set( + [ + "user", + "access_type", + ] +) MemberAccess._all_fields_ = [ - ('user', MemberAccess.user.validator), - ('access_type', MemberAccess.access_type.validator), + ("user", MemberAccess.user.validator), + ("access_type", MemberAccess.access_type.validator), ] MemberAddArgBase.member_email.validator = common.EmailAddress_validator @@ -15987,28 +17108,30 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberAddArgBase.member_persistent_id.validator = bv.Nullable(bv.String()) MemberAddArgBase.send_welcome_email.validator = bv.Boolean() MemberAddArgBase.is_directory_restricted.validator = bv.Nullable(bv.Boolean()) -MemberAddArgBase._all_field_names_ = set([ - 'member_email', - 'member_given_name', - 'member_surname', - 'member_external_id', - 'member_persistent_id', - 'send_welcome_email', - 'is_directory_restricted', -]) +MemberAddArgBase._all_field_names_ = set( + [ + "member_email", + "member_given_name", + "member_surname", + "member_external_id", + "member_persistent_id", + "send_welcome_email", + "is_directory_restricted", + ] +) MemberAddArgBase._all_fields_ = [ - ('member_email', MemberAddArgBase.member_email.validator), - ('member_given_name', MemberAddArgBase.member_given_name.validator), - ('member_surname', MemberAddArgBase.member_surname.validator), - ('member_external_id', MemberAddArgBase.member_external_id.validator), - ('member_persistent_id', MemberAddArgBase.member_persistent_id.validator), - ('send_welcome_email', MemberAddArgBase.send_welcome_email.validator), - ('is_directory_restricted', MemberAddArgBase.is_directory_restricted.validator), + ("member_email", MemberAddArgBase.member_email.validator), + ("member_given_name", MemberAddArgBase.member_given_name.validator), + ("member_surname", MemberAddArgBase.member_surname.validator), + ("member_external_id", MemberAddArgBase.member_external_id.validator), + ("member_persistent_id", MemberAddArgBase.member_persistent_id.validator), + ("send_welcome_email", MemberAddArgBase.send_welcome_email.validator), + ("is_directory_restricted", MemberAddArgBase.is_directory_restricted.validator), ] MemberAddArg.role.validator = AdminTier_validator -MemberAddArg._all_field_names_ = MemberAddArgBase._all_field_names_.union(set(['role'])) -MemberAddArg._all_fields_ = MemberAddArgBase._all_fields_ + [('role', MemberAddArg.role.validator)] +MemberAddArg._all_field_names_ = MemberAddArgBase._all_field_names_.union(set(["role"])) +MemberAddArg._all_fields_ = MemberAddArgBase._all_fields_ + [("role", MemberAddArg.role.validator)] MemberAddResultBase._team_license_limit_validator = common.EmailAddress_validator MemberAddResultBase._free_team_member_limit_reached_validator = common.EmailAddress_validator @@ -16021,64 +17144,70 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberAddResultBase._persistent_id_disabled_validator = common.EmailAddress_validator MemberAddResultBase._user_creation_failed_validator = common.EmailAddress_validator MemberAddResultBase._tagmap = { - 'team_license_limit': MemberAddResultBase._team_license_limit_validator, - 'free_team_member_limit_reached': MemberAddResultBase._free_team_member_limit_reached_validator, - 'user_already_on_team': MemberAddResultBase._user_already_on_team_validator, - 'user_on_another_team': MemberAddResultBase._user_on_another_team_validator, - 'user_already_paired': MemberAddResultBase._user_already_paired_validator, - 'user_migration_failed': MemberAddResultBase._user_migration_failed_validator, - 'duplicate_external_member_id': MemberAddResultBase._duplicate_external_member_id_validator, - 'duplicate_member_persistent_id': MemberAddResultBase._duplicate_member_persistent_id_validator, - 'persistent_id_disabled': MemberAddResultBase._persistent_id_disabled_validator, - 'user_creation_failed': MemberAddResultBase._user_creation_failed_validator, + "team_license_limit": MemberAddResultBase._team_license_limit_validator, + "free_team_member_limit_reached": MemberAddResultBase._free_team_member_limit_reached_validator, + "user_already_on_team": MemberAddResultBase._user_already_on_team_validator, + "user_on_another_team": MemberAddResultBase._user_on_another_team_validator, + "user_already_paired": MemberAddResultBase._user_already_paired_validator, + "user_migration_failed": MemberAddResultBase._user_migration_failed_validator, + "duplicate_external_member_id": MemberAddResultBase._duplicate_external_member_id_validator, + "duplicate_member_persistent_id": MemberAddResultBase._duplicate_member_persistent_id_validator, + "persistent_id_disabled": MemberAddResultBase._persistent_id_disabled_validator, + "user_creation_failed": MemberAddResultBase._user_creation_failed_validator, } MemberAddResult._success_validator = TeamMemberInfo_validator MemberAddResult._tagmap = { - 'success': MemberAddResult._success_validator, + "success": MemberAddResult._success_validator, } MemberAddResult._tagmap.update(MemberAddResultBase._tagmap) MemberAddV2Arg.role_ids.validator = bv.Nullable(bv.List(TeamMemberRoleId_validator, max_items=1)) -MemberAddV2Arg._all_field_names_ = MemberAddArgBase._all_field_names_.union(set(['role_ids'])) -MemberAddV2Arg._all_fields_ = MemberAddArgBase._all_fields_ + [('role_ids', MemberAddV2Arg.role_ids.validator)] +MemberAddV2Arg._all_field_names_ = MemberAddArgBase._all_field_names_.union(set(["role_ids"])) +MemberAddV2Arg._all_fields_ = MemberAddArgBase._all_fields_ + [ + ("role_ids", MemberAddV2Arg.role_ids.validator) +] MemberAddV2Result._success_validator = TeamMemberInfoV2_validator MemberAddV2Result._other_validator = bv.Void() MemberAddV2Result._tagmap = { - 'success': MemberAddV2Result._success_validator, - 'other': MemberAddV2Result._other_validator, + "success": MemberAddV2Result._success_validator, + "other": MemberAddV2Result._other_validator, } MemberAddV2Result._tagmap.update(MemberAddResultBase._tagmap) -MemberAddV2Result.other = MemberAddV2Result('other') +MemberAddV2Result.other = MemberAddV2Result("other") MemberDevices.team_member_id.validator = bv.String() MemberDevices.web_sessions.validator = bv.Nullable(bv.List(ActiveWebSession_validator)) MemberDevices.desktop_clients.validator = bv.Nullable(bv.List(DesktopClientSession_validator)) MemberDevices.mobile_clients.validator = bv.Nullable(bv.List(MobileClientSession_validator)) -MemberDevices._all_field_names_ = set([ - 'team_member_id', - 'web_sessions', - 'desktop_clients', - 'mobile_clients', -]) +MemberDevices._all_field_names_ = set( + [ + "team_member_id", + "web_sessions", + "desktop_clients", + "mobile_clients", + ] +) MemberDevices._all_fields_ = [ - ('team_member_id', MemberDevices.team_member_id.validator), - ('web_sessions', MemberDevices.web_sessions.validator), - ('desktop_clients', MemberDevices.desktop_clients.validator), - ('mobile_clients', MemberDevices.mobile_clients.validator), + ("team_member_id", MemberDevices.team_member_id.validator), + ("web_sessions", MemberDevices.web_sessions.validator), + ("desktop_clients", MemberDevices.desktop_clients.validator), + ("mobile_clients", MemberDevices.mobile_clients.validator), ] MemberLinkedApps.team_member_id.validator = bv.String() MemberLinkedApps.linked_api_apps.validator = bv.List(ApiApp_validator) -MemberLinkedApps._all_field_names_ = set([ - 'team_member_id', - 'linked_api_apps', -]) +MemberLinkedApps._all_field_names_ = set( + [ + "team_member_id", + "linked_api_apps", + ] +) MemberLinkedApps._all_fields_ = [ - ('team_member_id', MemberLinkedApps.team_member_id.validator), - ('linked_api_apps', MemberLinkedApps.linked_api_apps.validator), + ("team_member_id", MemberLinkedApps.team_member_id.validator), + ("linked_api_apps", MemberLinkedApps.linked_api_apps.validator), ] MemberProfile.team_member_id.validator = team_common.TeamMemberId_validator @@ -16086,7 +17215,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberProfile.account_id.validator = bv.Nullable(users_common.AccountId_validator) MemberProfile.email.validator = bv.String() MemberProfile.email_verified.validator = bv.Boolean() -MemberProfile.secondary_emails.validator = bv.Nullable(bv.List(secondary_emails.SecondaryEmail_validator)) +MemberProfile.secondary_emails.validator = bv.Nullable( + bv.List(secondary_emails.SecondaryEmail_validator) +) MemberProfile.status.validator = TeamMemberStatus_validator MemberProfile.name.validator = users.Name_validator MemberProfile.membership_type.validator = TeamMembershipType_validator @@ -16096,69 +17227,73 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberProfile.persistent_id.validator = bv.Nullable(bv.String()) MemberProfile.is_directory_restricted.validator = bv.Nullable(bv.Boolean()) MemberProfile.profile_photo_url.validator = bv.Nullable(bv.String()) -MemberProfile._all_field_names_ = set([ - 'team_member_id', - 'external_id', - 'account_id', - 'email', - 'email_verified', - 'secondary_emails', - 'status', - 'name', - 'membership_type', - 'invited_on', - 'joined_on', - 'suspended_on', - 'persistent_id', - 'is_directory_restricted', - 'profile_photo_url', -]) +MemberProfile._all_field_names_ = set( + [ + "team_member_id", + "external_id", + "account_id", + "email", + "email_verified", + "secondary_emails", + "status", + "name", + "membership_type", + "invited_on", + "joined_on", + "suspended_on", + "persistent_id", + "is_directory_restricted", + "profile_photo_url", + ] +) MemberProfile._all_fields_ = [ - ('team_member_id', MemberProfile.team_member_id.validator), - ('external_id', MemberProfile.external_id.validator), - ('account_id', MemberProfile.account_id.validator), - ('email', MemberProfile.email.validator), - ('email_verified', MemberProfile.email_verified.validator), - ('secondary_emails', MemberProfile.secondary_emails.validator), - ('status', MemberProfile.status.validator), - ('name', MemberProfile.name.validator), - ('membership_type', MemberProfile.membership_type.validator), - ('invited_on', MemberProfile.invited_on.validator), - ('joined_on', MemberProfile.joined_on.validator), - ('suspended_on', MemberProfile.suspended_on.validator), - ('persistent_id', MemberProfile.persistent_id.validator), - ('is_directory_restricted', MemberProfile.is_directory_restricted.validator), - ('profile_photo_url', MemberProfile.profile_photo_url.validator), + ("team_member_id", MemberProfile.team_member_id.validator), + ("external_id", MemberProfile.external_id.validator), + ("account_id", MemberProfile.account_id.validator), + ("email", MemberProfile.email.validator), + ("email_verified", MemberProfile.email_verified.validator), + ("secondary_emails", MemberProfile.secondary_emails.validator), + ("status", MemberProfile.status.validator), + ("name", MemberProfile.name.validator), + ("membership_type", MemberProfile.membership_type.validator), + ("invited_on", MemberProfile.invited_on.validator), + ("joined_on", MemberProfile.joined_on.validator), + ("suspended_on", MemberProfile.suspended_on.validator), + ("persistent_id", MemberProfile.persistent_id.validator), + ("is_directory_restricted", MemberProfile.is_directory_restricted.validator), + ("profile_photo_url", MemberProfile.profile_photo_url.validator), ] UserSelectorError._user_not_found_validator = bv.Void() UserSelectorError._tagmap = { - 'user_not_found': UserSelectorError._user_not_found_validator, + "user_not_found": UserSelectorError._user_not_found_validator, } -UserSelectorError.user_not_found = UserSelectorError('user_not_found') +UserSelectorError.user_not_found = UserSelectorError("user_not_found") MemberSelectorError._user_not_in_team_validator = bv.Void() MemberSelectorError._tagmap = { - 'user_not_in_team': MemberSelectorError._user_not_in_team_validator, + "user_not_in_team": MemberSelectorError._user_not_in_team_validator, } MemberSelectorError._tagmap.update(UserSelectorError._tagmap) -MemberSelectorError.user_not_in_team = MemberSelectorError('user_not_in_team') +MemberSelectorError.user_not_in_team = MemberSelectorError("user_not_in_team") MembersAddArgBase.force_async.validator = bv.Boolean() -MembersAddArgBase._all_field_names_ = set(['force_async']) -MembersAddArgBase._all_fields_ = [('force_async', MembersAddArgBase.force_async.validator)] +MembersAddArgBase._all_field_names_ = set(["force_async"]) +MembersAddArgBase._all_fields_ = [("force_async", MembersAddArgBase.force_async.validator)] MembersAddArg.new_members.validator = bv.List(MemberAddArg_validator) -MembersAddArg._all_field_names_ = MembersAddArgBase._all_field_names_.union(set(['new_members'])) -MembersAddArg._all_fields_ = MembersAddArgBase._all_fields_ + [('new_members', MembersAddArg.new_members.validator)] +MembersAddArg._all_field_names_ = MembersAddArgBase._all_field_names_.union(set(["new_members"])) +MembersAddArg._all_fields_ = MembersAddArgBase._all_fields_ + [ + ("new_members", MembersAddArg.new_members.validator) +] MembersAddJobStatus._complete_validator = bv.List(MemberAddResult_validator) MembersAddJobStatus._failed_validator = bv.String() MembersAddJobStatus._tagmap = { - 'complete': MembersAddJobStatus._complete_validator, - 'failed': MembersAddJobStatus._failed_validator, + "complete": MembersAddJobStatus._complete_validator, + "failed": MembersAddJobStatus._failed_validator, } MembersAddJobStatus._tagmap.update(async_.PollResultBase._tagmap) @@ -16166,259 +17301,295 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersAddJobStatusV2Result._failed_validator = bv.String() MembersAddJobStatusV2Result._other_validator = bv.Void() MembersAddJobStatusV2Result._tagmap = { - 'complete': MembersAddJobStatusV2Result._complete_validator, - 'failed': MembersAddJobStatusV2Result._failed_validator, - 'other': MembersAddJobStatusV2Result._other_validator, + "complete": MembersAddJobStatusV2Result._complete_validator, + "failed": MembersAddJobStatusV2Result._failed_validator, + "other": MembersAddJobStatusV2Result._other_validator, } MembersAddJobStatusV2Result._tagmap.update(async_.PollResultBase._tagmap) -MembersAddJobStatusV2Result.other = MembersAddJobStatusV2Result('other') +MembersAddJobStatusV2Result.other = MembersAddJobStatusV2Result("other") MembersAddLaunch._complete_validator = bv.List(MemberAddResult_validator) MembersAddLaunch._tagmap = { - 'complete': MembersAddLaunch._complete_validator, + "complete": MembersAddLaunch._complete_validator, } MembersAddLaunch._tagmap.update(async_.LaunchResultBase._tagmap) MembersAddLaunchV2Result._complete_validator = bv.List(MemberAddV2Result_validator) MembersAddLaunchV2Result._other_validator = bv.Void() MembersAddLaunchV2Result._tagmap = { - 'complete': MembersAddLaunchV2Result._complete_validator, - 'other': MembersAddLaunchV2Result._other_validator, + "complete": MembersAddLaunchV2Result._complete_validator, + "other": MembersAddLaunchV2Result._other_validator, } MembersAddLaunchV2Result._tagmap.update(async_.LaunchResultBase._tagmap) -MembersAddLaunchV2Result.other = MembersAddLaunchV2Result('other') +MembersAddLaunchV2Result.other = MembersAddLaunchV2Result("other") MembersAddV2Arg.new_members.validator = bv.List(MemberAddV2Arg_validator) -MembersAddV2Arg._all_field_names_ = MembersAddArgBase._all_field_names_.union(set(['new_members'])) -MembersAddV2Arg._all_fields_ = MembersAddArgBase._all_fields_ + [('new_members', MembersAddV2Arg.new_members.validator)] +MembersAddV2Arg._all_field_names_ = MembersAddArgBase._all_field_names_.union(set(["new_members"])) +MembersAddV2Arg._all_fields_ = MembersAddArgBase._all_fields_ + [ + ("new_members", MembersAddV2Arg.new_members.validator) +] MembersDeactivateBaseArg.user.validator = UserSelectorArg_validator -MembersDeactivateBaseArg._all_field_names_ = set(['user']) -MembersDeactivateBaseArg._all_fields_ = [('user', MembersDeactivateBaseArg.user.validator)] +MembersDeactivateBaseArg._all_field_names_ = set(["user"]) +MembersDeactivateBaseArg._all_fields_ = [("user", MembersDeactivateBaseArg.user.validator)] MembersDataTransferArg.transfer_dest_id.validator = UserSelectorArg_validator MembersDataTransferArg.transfer_admin_id.validator = UserSelectorArg_validator -MembersDataTransferArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union(set([ - 'transfer_dest_id', - 'transfer_admin_id', -])) +MembersDataTransferArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union( + set( + [ + "transfer_dest_id", + "transfer_admin_id", + ] + ) +) MembersDataTransferArg._all_fields_ = MembersDeactivateBaseArg._all_fields_ + [ - ('transfer_dest_id', MembersDataTransferArg.transfer_dest_id.validator), - ('transfer_admin_id', MembersDataTransferArg.transfer_admin_id.validator), + ("transfer_dest_id", MembersDataTransferArg.transfer_dest_id.validator), + ("transfer_admin_id", MembersDataTransferArg.transfer_admin_id.validator), ] MembersDeactivateArg.wipe_data.validator = bv.Boolean() -MembersDeactivateArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union(set(['wipe_data'])) -MembersDeactivateArg._all_fields_ = MembersDeactivateBaseArg._all_fields_ + [('wipe_data', MembersDeactivateArg.wipe_data.validator)] +MembersDeactivateArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union( + set(["wipe_data"]) +) +MembersDeactivateArg._all_fields_ = MembersDeactivateBaseArg._all_fields_ + [ + ("wipe_data", MembersDeactivateArg.wipe_data.validator) +] MembersDeactivateError._user_not_in_team_validator = bv.Void() MembersDeactivateError._other_validator = bv.Void() MembersDeactivateError._tagmap = { - 'user_not_in_team': MembersDeactivateError._user_not_in_team_validator, - 'other': MembersDeactivateError._other_validator, + "user_not_in_team": MembersDeactivateError._user_not_in_team_validator, + "other": MembersDeactivateError._other_validator, } MembersDeactivateError._tagmap.update(UserSelectorError._tagmap) -MembersDeactivateError.user_not_in_team = MembersDeactivateError('user_not_in_team') -MembersDeactivateError.other = MembersDeactivateError('other') +MembersDeactivateError.user_not_in_team = MembersDeactivateError("user_not_in_team") +MembersDeactivateError.other = MembersDeactivateError("other") MembersPermanentlyDeleteFilesError._transfer_in_progress_validator = bv.Void() MembersPermanentlyDeleteFilesError._already_transferred_validator = bv.Void() MembersPermanentlyDeleteFilesError._already_transferred_or_deleted_validator = bv.Void() MembersPermanentlyDeleteFilesError._tagmap = { - 'transfer_in_progress': MembersPermanentlyDeleteFilesError._transfer_in_progress_validator, - 'already_transferred': MembersPermanentlyDeleteFilesError._already_transferred_validator, - 'already_transferred_or_deleted': MembersPermanentlyDeleteFilesError._already_transferred_or_deleted_validator, + "transfer_in_progress": MembersPermanentlyDeleteFilesError._transfer_in_progress_validator, + "already_transferred": MembersPermanentlyDeleteFilesError._already_transferred_validator, + "already_transferred_or_deleted": MembersPermanentlyDeleteFilesError._already_transferred_or_deleted_validator, } MembersPermanentlyDeleteFilesError._tagmap.update(MembersDeactivateError._tagmap) -MembersPermanentlyDeleteFilesError.transfer_in_progress = MembersPermanentlyDeleteFilesError('transfer_in_progress') -MembersPermanentlyDeleteFilesError.already_transferred = MembersPermanentlyDeleteFilesError('already_transferred') -MembersPermanentlyDeleteFilesError.already_transferred_or_deleted = MembersPermanentlyDeleteFilesError('already_transferred_or_deleted') +MembersPermanentlyDeleteFilesError.transfer_in_progress = MembersPermanentlyDeleteFilesError( + "transfer_in_progress" +) +MembersPermanentlyDeleteFilesError.already_transferred = MembersPermanentlyDeleteFilesError( + "already_transferred" +) +MembersPermanentlyDeleteFilesError.already_transferred_or_deleted = ( + MembersPermanentlyDeleteFilesError("already_transferred_or_deleted") +) MembersDeleteFormerMemberFilesError._user_not_removed_validator = bv.Void() MembersDeleteFormerMemberFilesError._tagmap = { - 'user_not_removed': MembersDeleteFormerMemberFilesError._user_not_removed_validator, + "user_not_removed": MembersDeleteFormerMemberFilesError._user_not_removed_validator, } MembersDeleteFormerMemberFilesError._tagmap.update(MembersPermanentlyDeleteFilesError._tagmap) -MembersDeleteFormerMemberFilesError.user_not_removed = MembersDeleteFormerMemberFilesError('user_not_removed') +MembersDeleteFormerMemberFilesError.user_not_removed = MembersDeleteFormerMemberFilesError( + "user_not_removed" +) MembersDeleteProfilePhotoArg.user.validator = UserSelectorArg_validator -MembersDeleteProfilePhotoArg._all_field_names_ = set(['user']) -MembersDeleteProfilePhotoArg._all_fields_ = [('user', MembersDeleteProfilePhotoArg.user.validator)] +MembersDeleteProfilePhotoArg._all_field_names_ = set(["user"]) +MembersDeleteProfilePhotoArg._all_fields_ = [("user", MembersDeleteProfilePhotoArg.user.validator)] MembersDeleteProfilePhotoError._set_profile_disallowed_validator = bv.Void() MembersDeleteProfilePhotoError._other_validator = bv.Void() MembersDeleteProfilePhotoError._tagmap = { - 'set_profile_disallowed': MembersDeleteProfilePhotoError._set_profile_disallowed_validator, - 'other': MembersDeleteProfilePhotoError._other_validator, + "set_profile_disallowed": MembersDeleteProfilePhotoError._set_profile_disallowed_validator, + "other": MembersDeleteProfilePhotoError._other_validator, } MembersDeleteProfilePhotoError._tagmap.update(MemberSelectorError._tagmap) -MembersDeleteProfilePhotoError.set_profile_disallowed = MembersDeleteProfilePhotoError('set_profile_disallowed') -MembersDeleteProfilePhotoError.other = MembersDeleteProfilePhotoError('other') +MembersDeleteProfilePhotoError.set_profile_disallowed = MembersDeleteProfilePhotoError( + "set_profile_disallowed" +) +MembersDeleteProfilePhotoError.other = MembersDeleteProfilePhotoError("other") MembersFormerMemberArg.user.validator = UserSelectorArg_validator -MembersFormerMemberArg._all_field_names_ = set(['user']) -MembersFormerMemberArg._all_fields_ = [('user', MembersFormerMemberArg.user.validator)] +MembersFormerMemberArg._all_field_names_ = set(["user"]) +MembersFormerMemberArg._all_fields_ = [("user", MembersFormerMemberArg.user.validator)] MembersGetAvailableTeamMemberRolesResult.roles.validator = bv.List(TeamMemberRole_validator) -MembersGetAvailableTeamMemberRolesResult._all_field_names_ = set(['roles']) -MembersGetAvailableTeamMemberRolesResult._all_fields_ = [('roles', MembersGetAvailableTeamMemberRolesResult.roles.validator)] +MembersGetAvailableTeamMemberRolesResult._all_field_names_ = set(["roles"]) +MembersGetAvailableTeamMemberRolesResult._all_fields_ = [ + ("roles", MembersGetAvailableTeamMemberRolesResult.roles.validator) +] MembersGetInfoArgs.members.validator = bv.List(UserSelectorArg_validator) -MembersGetInfoArgs._all_field_names_ = set(['members']) -MembersGetInfoArgs._all_fields_ = [('members', MembersGetInfoArgs.members.validator)] +MembersGetInfoArgs._all_field_names_ = set(["members"]) +MembersGetInfoArgs._all_fields_ = [("members", MembersGetInfoArgs.members.validator)] MembersGetInfoError._other_validator = bv.Void() MembersGetInfoError._tagmap = { - 'other': MembersGetInfoError._other_validator, + "other": MembersGetInfoError._other_validator, } -MembersGetInfoError.other = MembersGetInfoError('other') +MembersGetInfoError.other = MembersGetInfoError("other") MembersGetInfoItemBase._id_not_found_validator = bv.String() MembersGetInfoItemBase._tagmap = { - 'id_not_found': MembersGetInfoItemBase._id_not_found_validator, + "id_not_found": MembersGetInfoItemBase._id_not_found_validator, } MembersGetInfoItem._member_info_validator = TeamMemberInfo_validator MembersGetInfoItem._tagmap = { - 'member_info': MembersGetInfoItem._member_info_validator, + "member_info": MembersGetInfoItem._member_info_validator, } MembersGetInfoItem._tagmap.update(MembersGetInfoItemBase._tagmap) MembersGetInfoItemV2._member_info_validator = TeamMemberInfoV2_validator MembersGetInfoItemV2._other_validator = bv.Void() MembersGetInfoItemV2._tagmap = { - 'member_info': MembersGetInfoItemV2._member_info_validator, - 'other': MembersGetInfoItemV2._other_validator, + "member_info": MembersGetInfoItemV2._member_info_validator, + "other": MembersGetInfoItemV2._other_validator, } MembersGetInfoItemV2._tagmap.update(MembersGetInfoItemBase._tagmap) -MembersGetInfoItemV2.other = MembersGetInfoItemV2('other') +MembersGetInfoItemV2.other = MembersGetInfoItemV2("other") MembersGetInfoV2Arg.members.validator = bv.List(UserSelectorArg_validator) -MembersGetInfoV2Arg._all_field_names_ = set(['members']) -MembersGetInfoV2Arg._all_fields_ = [('members', MembersGetInfoV2Arg.members.validator)] +MembersGetInfoV2Arg._all_field_names_ = set(["members"]) +MembersGetInfoV2Arg._all_fields_ = [("members", MembersGetInfoV2Arg.members.validator)] MembersGetInfoV2Result.members_info.validator = bv.List(MembersGetInfoItemV2_validator) -MembersGetInfoV2Result._all_field_names_ = set(['members_info']) -MembersGetInfoV2Result._all_fields_ = [('members_info', MembersGetInfoV2Result.members_info.validator)] +MembersGetInfoV2Result._all_field_names_ = set(["members_info"]) +MembersGetInfoV2Result._all_fields_ = [ + ("members_info", MembersGetInfoV2Result.members_info.validator) +] MembersInfo.team_member_ids.validator = bv.List(team_common.TeamMemberId_validator) MembersInfo.permanently_deleted_users.validator = bv.UInt64() -MembersInfo._all_field_names_ = set([ - 'team_member_ids', - 'permanently_deleted_users', -]) +MembersInfo._all_field_names_ = set( + [ + "team_member_ids", + "permanently_deleted_users", + ] +) MembersInfo._all_fields_ = [ - ('team_member_ids', MembersInfo.team_member_ids.validator), - ('permanently_deleted_users', MembersInfo.permanently_deleted_users.validator), + ("team_member_ids", MembersInfo.team_member_ids.validator), + ("permanently_deleted_users", MembersInfo.permanently_deleted_users.validator), ] MembersListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) MembersListArg.include_removed.validator = bv.Boolean() -MembersListArg._all_field_names_ = set([ - 'limit', - 'include_removed', -]) +MembersListArg._all_field_names_ = set( + [ + "limit", + "include_removed", + ] +) MembersListArg._all_fields_ = [ - ('limit', MembersListArg.limit.validator), - ('include_removed', MembersListArg.include_removed.validator), + ("limit", MembersListArg.limit.validator), + ("include_removed", MembersListArg.include_removed.validator), ] MembersListContinueArg.cursor.validator = bv.String() -MembersListContinueArg._all_field_names_ = set(['cursor']) -MembersListContinueArg._all_fields_ = [('cursor', MembersListContinueArg.cursor.validator)] +MembersListContinueArg._all_field_names_ = set(["cursor"]) +MembersListContinueArg._all_fields_ = [("cursor", MembersListContinueArg.cursor.validator)] MembersListContinueError._invalid_cursor_validator = bv.Void() MembersListContinueError._other_validator = bv.Void() MembersListContinueError._tagmap = { - 'invalid_cursor': MembersListContinueError._invalid_cursor_validator, - 'other': MembersListContinueError._other_validator, + "invalid_cursor": MembersListContinueError._invalid_cursor_validator, + "other": MembersListContinueError._other_validator, } -MembersListContinueError.invalid_cursor = MembersListContinueError('invalid_cursor') -MembersListContinueError.other = MembersListContinueError('other') +MembersListContinueError.invalid_cursor = MembersListContinueError("invalid_cursor") +MembersListContinueError.other = MembersListContinueError("other") MembersListError._other_validator = bv.Void() MembersListError._tagmap = { - 'other': MembersListError._other_validator, + "other": MembersListError._other_validator, } -MembersListError.other = MembersListError('other') +MembersListError.other = MembersListError("other") MembersListResult.members.validator = bv.List(TeamMemberInfo_validator) MembersListResult.cursor.validator = bv.String() MembersListResult.has_more.validator = bv.Boolean() -MembersListResult._all_field_names_ = set([ - 'members', - 'cursor', - 'has_more', -]) +MembersListResult._all_field_names_ = set( + [ + "members", + "cursor", + "has_more", + ] +) MembersListResult._all_fields_ = [ - ('members', MembersListResult.members.validator), - ('cursor', MembersListResult.cursor.validator), - ('has_more', MembersListResult.has_more.validator), + ("members", MembersListResult.members.validator), + ("cursor", MembersListResult.cursor.validator), + ("has_more", MembersListResult.has_more.validator), ] MembersListV2Result.members.validator = bv.List(TeamMemberInfoV2_validator) MembersListV2Result.cursor.validator = bv.String() MembersListV2Result.has_more.validator = bv.Boolean() -MembersListV2Result._all_field_names_ = set([ - 'members', - 'cursor', - 'has_more', -]) +MembersListV2Result._all_field_names_ = set( + [ + "members", + "cursor", + "has_more", + ] +) MembersListV2Result._all_fields_ = [ - ('members', MembersListV2Result.members.validator), - ('cursor', MembersListV2Result.cursor.validator), - ('has_more', MembersListV2Result.has_more.validator), + ("members", MembersListV2Result.members.validator), + ("cursor", MembersListV2Result.cursor.validator), + ("has_more", MembersListV2Result.has_more.validator), ] MembersRecoverArg.user.validator = UserSelectorArg_validator -MembersRecoverArg._all_field_names_ = set(['user']) -MembersRecoverArg._all_fields_ = [('user', MembersRecoverArg.user.validator)] +MembersRecoverArg._all_field_names_ = set(["user"]) +MembersRecoverArg._all_fields_ = [("user", MembersRecoverArg.user.validator)] MembersRecoverError._user_unrecoverable_validator = bv.Void() MembersRecoverError._user_not_in_team_validator = bv.Void() MembersRecoverError._team_license_limit_validator = bv.Void() MembersRecoverError._other_validator = bv.Void() MembersRecoverError._tagmap = { - 'user_unrecoverable': MembersRecoverError._user_unrecoverable_validator, - 'user_not_in_team': MembersRecoverError._user_not_in_team_validator, - 'team_license_limit': MembersRecoverError._team_license_limit_validator, - 'other': MembersRecoverError._other_validator, + "user_unrecoverable": MembersRecoverError._user_unrecoverable_validator, + "user_not_in_team": MembersRecoverError._user_not_in_team_validator, + "team_license_limit": MembersRecoverError._team_license_limit_validator, + "other": MembersRecoverError._other_validator, } MembersRecoverError._tagmap.update(UserSelectorError._tagmap) -MembersRecoverError.user_unrecoverable = MembersRecoverError('user_unrecoverable') -MembersRecoverError.user_not_in_team = MembersRecoverError('user_not_in_team') -MembersRecoverError.team_license_limit = MembersRecoverError('team_license_limit') -MembersRecoverError.other = MembersRecoverError('other') +MembersRecoverError.user_unrecoverable = MembersRecoverError("user_unrecoverable") +MembersRecoverError.user_not_in_team = MembersRecoverError("user_not_in_team") +MembersRecoverError.team_license_limit = MembersRecoverError("team_license_limit") +MembersRecoverError.other = MembersRecoverError("other") MembersRemoveArg.transfer_dest_id.validator = bv.Nullable(UserSelectorArg_validator) MembersRemoveArg.transfer_admin_id.validator = bv.Nullable(UserSelectorArg_validator) MembersRemoveArg.keep_account.validator = bv.Boolean() MembersRemoveArg.retain_team_shares.validator = bv.Boolean() MembersRemoveArg.permanently_delete_files.validator = bv.Boolean() -MembersRemoveArg._all_field_names_ = MembersDeactivateArg._all_field_names_.union(set([ - 'transfer_dest_id', - 'transfer_admin_id', - 'keep_account', - 'retain_team_shares', - 'permanently_delete_files', -])) +MembersRemoveArg._all_field_names_ = MembersDeactivateArg._all_field_names_.union( + set( + [ + "transfer_dest_id", + "transfer_admin_id", + "keep_account", + "retain_team_shares", + "permanently_delete_files", + ] + ) +) MembersRemoveArg._all_fields_ = MembersDeactivateArg._all_fields_ + [ - ('transfer_dest_id', MembersRemoveArg.transfer_dest_id.validator), - ('transfer_admin_id', MembersRemoveArg.transfer_admin_id.validator), - ('keep_account', MembersRemoveArg.keep_account.validator), - ('retain_team_shares', MembersRemoveArg.retain_team_shares.validator), - ('permanently_delete_files', MembersRemoveArg.permanently_delete_files.validator), + ("transfer_dest_id", MembersRemoveArg.transfer_dest_id.validator), + ("transfer_admin_id", MembersRemoveArg.transfer_admin_id.validator), + ("keep_account", MembersRemoveArg.keep_account.validator), + ("retain_team_shares", MembersRemoveArg.retain_team_shares.validator), + ("permanently_delete_files", MembersRemoveArg.permanently_delete_files.validator), ] MembersTransferFilesError._removed_and_transfer_dest_should_differ_validator = bv.Void() @@ -16431,27 +17602,45 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersTransferFilesError._transfer_admin_is_not_admin_validator = bv.Void() MembersTransferFilesError._recipient_not_verified_validator = bv.Void() MembersTransferFilesError._tagmap = { - 'removed_and_transfer_dest_should_differ': MembersTransferFilesError._removed_and_transfer_dest_should_differ_validator, - 'removed_and_transfer_admin_should_differ': MembersTransferFilesError._removed_and_transfer_admin_should_differ_validator, - 'transfer_dest_user_not_found': MembersTransferFilesError._transfer_dest_user_not_found_validator, - 'transfer_dest_user_not_in_team': MembersTransferFilesError._transfer_dest_user_not_in_team_validator, - 'transfer_admin_user_not_in_team': MembersTransferFilesError._transfer_admin_user_not_in_team_validator, - 'transfer_admin_user_not_found': MembersTransferFilesError._transfer_admin_user_not_found_validator, - 'unspecified_transfer_admin_id': MembersTransferFilesError._unspecified_transfer_admin_id_validator, - 'transfer_admin_is_not_admin': MembersTransferFilesError._transfer_admin_is_not_admin_validator, - 'recipient_not_verified': MembersTransferFilesError._recipient_not_verified_validator, + "removed_and_transfer_dest_should_differ": MembersTransferFilesError._removed_and_transfer_dest_should_differ_validator, + "removed_and_transfer_admin_should_differ": MembersTransferFilesError._removed_and_transfer_admin_should_differ_validator, + "transfer_dest_user_not_found": MembersTransferFilesError._transfer_dest_user_not_found_validator, + "transfer_dest_user_not_in_team": MembersTransferFilesError._transfer_dest_user_not_in_team_validator, + "transfer_admin_user_not_in_team": MembersTransferFilesError._transfer_admin_user_not_in_team_validator, + "transfer_admin_user_not_found": MembersTransferFilesError._transfer_admin_user_not_found_validator, + "unspecified_transfer_admin_id": MembersTransferFilesError._unspecified_transfer_admin_id_validator, + "transfer_admin_is_not_admin": MembersTransferFilesError._transfer_admin_is_not_admin_validator, + "recipient_not_verified": MembersTransferFilesError._recipient_not_verified_validator, } MembersTransferFilesError._tagmap.update(MembersPermanentlyDeleteFilesError._tagmap) -MembersTransferFilesError.removed_and_transfer_dest_should_differ = MembersTransferFilesError('removed_and_transfer_dest_should_differ') -MembersTransferFilesError.removed_and_transfer_admin_should_differ = MembersTransferFilesError('removed_and_transfer_admin_should_differ') -MembersTransferFilesError.transfer_dest_user_not_found = MembersTransferFilesError('transfer_dest_user_not_found') -MembersTransferFilesError.transfer_dest_user_not_in_team = MembersTransferFilesError('transfer_dest_user_not_in_team') -MembersTransferFilesError.transfer_admin_user_not_in_team = MembersTransferFilesError('transfer_admin_user_not_in_team') -MembersTransferFilesError.transfer_admin_user_not_found = MembersTransferFilesError('transfer_admin_user_not_found') -MembersTransferFilesError.unspecified_transfer_admin_id = MembersTransferFilesError('unspecified_transfer_admin_id') -MembersTransferFilesError.transfer_admin_is_not_admin = MembersTransferFilesError('transfer_admin_is_not_admin') -MembersTransferFilesError.recipient_not_verified = MembersTransferFilesError('recipient_not_verified') +MembersTransferFilesError.removed_and_transfer_dest_should_differ = MembersTransferFilesError( + "removed_and_transfer_dest_should_differ" +) +MembersTransferFilesError.removed_and_transfer_admin_should_differ = MembersTransferFilesError( + "removed_and_transfer_admin_should_differ" +) +MembersTransferFilesError.transfer_dest_user_not_found = MembersTransferFilesError( + "transfer_dest_user_not_found" +) +MembersTransferFilesError.transfer_dest_user_not_in_team = MembersTransferFilesError( + "transfer_dest_user_not_in_team" +) +MembersTransferFilesError.transfer_admin_user_not_in_team = MembersTransferFilesError( + "transfer_admin_user_not_in_team" +) +MembersTransferFilesError.transfer_admin_user_not_found = MembersTransferFilesError( + "transfer_admin_user_not_found" +) +MembersTransferFilesError.unspecified_transfer_admin_id = MembersTransferFilesError( + "unspecified_transfer_admin_id" +) +MembersTransferFilesError.transfer_admin_is_not_admin = MembersTransferFilesError( + "transfer_admin_is_not_admin" +) +MembersTransferFilesError.recipient_not_verified = MembersTransferFilesError( + "recipient_not_verified" +) MembersRemoveError._remove_last_admin_validator = bv.Void() MembersRemoveError._cannot_keep_account_and_transfer_validator = bv.Void() @@ -16468,55 +17657,83 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersRemoveError._cannot_permanently_delete_and_transfer_validator = bv.Void() MembersRemoveError._member_is_transfer_destination_validator = bv.Void() MembersRemoveError._tagmap = { - 'remove_last_admin': MembersRemoveError._remove_last_admin_validator, - 'cannot_keep_account_and_transfer': MembersRemoveError._cannot_keep_account_and_transfer_validator, - 'cannot_keep_account_and_delete_data': MembersRemoveError._cannot_keep_account_and_delete_data_validator, - 'cannot_keep_account_and_permanently_delete': MembersRemoveError._cannot_keep_account_and_permanently_delete_validator, - 'email_address_too_long_to_be_disabled': MembersRemoveError._email_address_too_long_to_be_disabled_validator, - 'cannot_keep_invited_user_account': MembersRemoveError._cannot_keep_invited_user_account_validator, - 'cannot_retain_shares_when_data_wiped': MembersRemoveError._cannot_retain_shares_when_data_wiped_validator, - 'cannot_retain_shares_when_no_account_kept': MembersRemoveError._cannot_retain_shares_when_no_account_kept_validator, - 'cannot_retain_shares_when_team_external_sharing_off': MembersRemoveError._cannot_retain_shares_when_team_external_sharing_off_validator, - 'cannot_keep_account': MembersRemoveError._cannot_keep_account_validator, - 'cannot_keep_account_under_legal_hold': MembersRemoveError._cannot_keep_account_under_legal_hold_validator, - 'cannot_keep_account_required_to_sign_tos': MembersRemoveError._cannot_keep_account_required_to_sign_tos_validator, - 'cannot_permanently_delete_and_transfer': MembersRemoveError._cannot_permanently_delete_and_transfer_validator, - 'member_is_transfer_destination': MembersRemoveError._member_is_transfer_destination_validator, + "remove_last_admin": MembersRemoveError._remove_last_admin_validator, + "cannot_keep_account_and_transfer": MembersRemoveError._cannot_keep_account_and_transfer_validator, + "cannot_keep_account_and_delete_data": MembersRemoveError._cannot_keep_account_and_delete_data_validator, + "cannot_keep_account_and_permanently_delete": MembersRemoveError._cannot_keep_account_and_permanently_delete_validator, + "email_address_too_long_to_be_disabled": MembersRemoveError._email_address_too_long_to_be_disabled_validator, + "cannot_keep_invited_user_account": MembersRemoveError._cannot_keep_invited_user_account_validator, + "cannot_retain_shares_when_data_wiped": MembersRemoveError._cannot_retain_shares_when_data_wiped_validator, + "cannot_retain_shares_when_no_account_kept": MembersRemoveError._cannot_retain_shares_when_no_account_kept_validator, + "cannot_retain_shares_when_team_external_sharing_off": MembersRemoveError._cannot_retain_shares_when_team_external_sharing_off_validator, + "cannot_keep_account": MembersRemoveError._cannot_keep_account_validator, + "cannot_keep_account_under_legal_hold": MembersRemoveError._cannot_keep_account_under_legal_hold_validator, + "cannot_keep_account_required_to_sign_tos": MembersRemoveError._cannot_keep_account_required_to_sign_tos_validator, + "cannot_permanently_delete_and_transfer": MembersRemoveError._cannot_permanently_delete_and_transfer_validator, + "member_is_transfer_destination": MembersRemoveError._member_is_transfer_destination_validator, } MembersRemoveError._tagmap.update(MembersTransferFilesError._tagmap) -MembersRemoveError.remove_last_admin = MembersRemoveError('remove_last_admin') -MembersRemoveError.cannot_keep_account_and_transfer = MembersRemoveError('cannot_keep_account_and_transfer') -MembersRemoveError.cannot_keep_account_and_delete_data = MembersRemoveError('cannot_keep_account_and_delete_data') -MembersRemoveError.cannot_keep_account_and_permanently_delete = MembersRemoveError('cannot_keep_account_and_permanently_delete') -MembersRemoveError.email_address_too_long_to_be_disabled = MembersRemoveError('email_address_too_long_to_be_disabled') -MembersRemoveError.cannot_keep_invited_user_account = MembersRemoveError('cannot_keep_invited_user_account') -MembersRemoveError.cannot_retain_shares_when_data_wiped = MembersRemoveError('cannot_retain_shares_when_data_wiped') -MembersRemoveError.cannot_retain_shares_when_no_account_kept = MembersRemoveError('cannot_retain_shares_when_no_account_kept') -MembersRemoveError.cannot_retain_shares_when_team_external_sharing_off = MembersRemoveError('cannot_retain_shares_when_team_external_sharing_off') -MembersRemoveError.cannot_keep_account = MembersRemoveError('cannot_keep_account') -MembersRemoveError.cannot_keep_account_under_legal_hold = MembersRemoveError('cannot_keep_account_under_legal_hold') -MembersRemoveError.cannot_keep_account_required_to_sign_tos = MembersRemoveError('cannot_keep_account_required_to_sign_tos') -MembersRemoveError.cannot_permanently_delete_and_transfer = MembersRemoveError('cannot_permanently_delete_and_transfer') -MembersRemoveError.member_is_transfer_destination = MembersRemoveError('member_is_transfer_destination') +MembersRemoveError.remove_last_admin = MembersRemoveError("remove_last_admin") +MembersRemoveError.cannot_keep_account_and_transfer = MembersRemoveError( + "cannot_keep_account_and_transfer" +) +MembersRemoveError.cannot_keep_account_and_delete_data = MembersRemoveError( + "cannot_keep_account_and_delete_data" +) +MembersRemoveError.cannot_keep_account_and_permanently_delete = MembersRemoveError( + "cannot_keep_account_and_permanently_delete" +) +MembersRemoveError.email_address_too_long_to_be_disabled = MembersRemoveError( + "email_address_too_long_to_be_disabled" +) +MembersRemoveError.cannot_keep_invited_user_account = MembersRemoveError( + "cannot_keep_invited_user_account" +) +MembersRemoveError.cannot_retain_shares_when_data_wiped = MembersRemoveError( + "cannot_retain_shares_when_data_wiped" +) +MembersRemoveError.cannot_retain_shares_when_no_account_kept = MembersRemoveError( + "cannot_retain_shares_when_no_account_kept" +) +MembersRemoveError.cannot_retain_shares_when_team_external_sharing_off = MembersRemoveError( + "cannot_retain_shares_when_team_external_sharing_off" +) +MembersRemoveError.cannot_keep_account = MembersRemoveError("cannot_keep_account") +MembersRemoveError.cannot_keep_account_under_legal_hold = MembersRemoveError( + "cannot_keep_account_under_legal_hold" +) +MembersRemoveError.cannot_keep_account_required_to_sign_tos = MembersRemoveError( + "cannot_keep_account_required_to_sign_tos" +) +MembersRemoveError.cannot_permanently_delete_and_transfer = MembersRemoveError( + "cannot_permanently_delete_and_transfer" +) +MembersRemoveError.member_is_transfer_destination = MembersRemoveError( + "member_is_transfer_destination" +) MembersSendWelcomeError._other_validator = bv.Void() MembersSendWelcomeError._tagmap = { - 'other': MembersSendWelcomeError._other_validator, + "other": MembersSendWelcomeError._other_validator, } MembersSendWelcomeError._tagmap.update(MemberSelectorError._tagmap) -MembersSendWelcomeError.other = MembersSendWelcomeError('other') +MembersSendWelcomeError.other = MembersSendWelcomeError("other") MembersSetPermissions2Arg.user.validator = UserSelectorArg_validator -MembersSetPermissions2Arg.new_roles.validator = bv.Nullable(bv.List(TeamMemberRoleId_validator, max_items=1)) -MembersSetPermissions2Arg._all_field_names_ = set([ - 'user', - 'new_roles', -]) +MembersSetPermissions2Arg.new_roles.validator = bv.Nullable( + bv.List(TeamMemberRoleId_validator, max_items=1) +) +MembersSetPermissions2Arg._all_field_names_ = set( + [ + "user", + "new_roles", + ] +) MembersSetPermissions2Arg._all_fields_ = [ - ('user', MembersSetPermissions2Arg.user.validator), - ('new_roles', MembersSetPermissions2Arg.new_roles.validator), + ("user", MembersSetPermissions2Arg.user.validator), + ("new_roles", MembersSetPermissions2Arg.new_roles.validator), ] MembersSetPermissions2Error._last_admin_validator = bv.Void() @@ -16525,40 +17742,46 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetPermissions2Error._role_not_found_validator = bv.Void() MembersSetPermissions2Error._other_validator = bv.Void() MembersSetPermissions2Error._tagmap = { - 'last_admin': MembersSetPermissions2Error._last_admin_validator, - 'user_not_in_team': MembersSetPermissions2Error._user_not_in_team_validator, - 'cannot_set_permissions': MembersSetPermissions2Error._cannot_set_permissions_validator, - 'role_not_found': MembersSetPermissions2Error._role_not_found_validator, - 'other': MembersSetPermissions2Error._other_validator, + "last_admin": MembersSetPermissions2Error._last_admin_validator, + "user_not_in_team": MembersSetPermissions2Error._user_not_in_team_validator, + "cannot_set_permissions": MembersSetPermissions2Error._cannot_set_permissions_validator, + "role_not_found": MembersSetPermissions2Error._role_not_found_validator, + "other": MembersSetPermissions2Error._other_validator, } MembersSetPermissions2Error._tagmap.update(UserSelectorError._tagmap) -MembersSetPermissions2Error.last_admin = MembersSetPermissions2Error('last_admin') -MembersSetPermissions2Error.user_not_in_team = MembersSetPermissions2Error('user_not_in_team') -MembersSetPermissions2Error.cannot_set_permissions = MembersSetPermissions2Error('cannot_set_permissions') -MembersSetPermissions2Error.role_not_found = MembersSetPermissions2Error('role_not_found') -MembersSetPermissions2Error.other = MembersSetPermissions2Error('other') +MembersSetPermissions2Error.last_admin = MembersSetPermissions2Error("last_admin") +MembersSetPermissions2Error.user_not_in_team = MembersSetPermissions2Error("user_not_in_team") +MembersSetPermissions2Error.cannot_set_permissions = MembersSetPermissions2Error( + "cannot_set_permissions" +) +MembersSetPermissions2Error.role_not_found = MembersSetPermissions2Error("role_not_found") +MembersSetPermissions2Error.other = MembersSetPermissions2Error("other") MembersSetPermissions2Result.team_member_id.validator = team_common.TeamMemberId_validator MembersSetPermissions2Result.roles.validator = bv.Nullable(bv.List(TeamMemberRole_validator)) -MembersSetPermissions2Result._all_field_names_ = set([ - 'team_member_id', - 'roles', -]) +MembersSetPermissions2Result._all_field_names_ = set( + [ + "team_member_id", + "roles", + ] +) MembersSetPermissions2Result._all_fields_ = [ - ('team_member_id', MembersSetPermissions2Result.team_member_id.validator), - ('roles', MembersSetPermissions2Result.roles.validator), + ("team_member_id", MembersSetPermissions2Result.team_member_id.validator), + ("roles", MembersSetPermissions2Result.roles.validator), ] MembersSetPermissionsArg.user.validator = UserSelectorArg_validator MembersSetPermissionsArg.new_role.validator = AdminTier_validator -MembersSetPermissionsArg._all_field_names_ = set([ - 'user', - 'new_role', -]) +MembersSetPermissionsArg._all_field_names_ = set( + [ + "user", + "new_role", + ] +) MembersSetPermissionsArg._all_fields_ = [ - ('user', MembersSetPermissionsArg.user.validator), - ('new_role', MembersSetPermissionsArg.new_role.validator), + ("user", MembersSetPermissionsArg.user.validator), + ("new_role", MembersSetPermissionsArg.new_role.validator), ] MembersSetPermissionsError._last_admin_validator = bv.Void() @@ -16567,29 +17790,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetPermissionsError._team_license_limit_validator = bv.Void() MembersSetPermissionsError._other_validator = bv.Void() MembersSetPermissionsError._tagmap = { - 'last_admin': MembersSetPermissionsError._last_admin_validator, - 'user_not_in_team': MembersSetPermissionsError._user_not_in_team_validator, - 'cannot_set_permissions': MembersSetPermissionsError._cannot_set_permissions_validator, - 'team_license_limit': MembersSetPermissionsError._team_license_limit_validator, - 'other': MembersSetPermissionsError._other_validator, + "last_admin": MembersSetPermissionsError._last_admin_validator, + "user_not_in_team": MembersSetPermissionsError._user_not_in_team_validator, + "cannot_set_permissions": MembersSetPermissionsError._cannot_set_permissions_validator, + "team_license_limit": MembersSetPermissionsError._team_license_limit_validator, + "other": MembersSetPermissionsError._other_validator, } MembersSetPermissionsError._tagmap.update(UserSelectorError._tagmap) -MembersSetPermissionsError.last_admin = MembersSetPermissionsError('last_admin') -MembersSetPermissionsError.user_not_in_team = MembersSetPermissionsError('user_not_in_team') -MembersSetPermissionsError.cannot_set_permissions = MembersSetPermissionsError('cannot_set_permissions') -MembersSetPermissionsError.team_license_limit = MembersSetPermissionsError('team_license_limit') -MembersSetPermissionsError.other = MembersSetPermissionsError('other') +MembersSetPermissionsError.last_admin = MembersSetPermissionsError("last_admin") +MembersSetPermissionsError.user_not_in_team = MembersSetPermissionsError("user_not_in_team") +MembersSetPermissionsError.cannot_set_permissions = MembersSetPermissionsError( + "cannot_set_permissions" +) +MembersSetPermissionsError.team_license_limit = MembersSetPermissionsError("team_license_limit") +MembersSetPermissionsError.other = MembersSetPermissionsError("other") MembersSetPermissionsResult.team_member_id.validator = team_common.TeamMemberId_validator MembersSetPermissionsResult.role.validator = AdminTier_validator -MembersSetPermissionsResult._all_field_names_ = set([ - 'team_member_id', - 'role', -]) +MembersSetPermissionsResult._all_field_names_ = set( + [ + "team_member_id", + "role", + ] +) MembersSetPermissionsResult._all_fields_ = [ - ('team_member_id', MembersSetPermissionsResult.team_member_id.validator), - ('role', MembersSetPermissionsResult.role.validator), + ("team_member_id", MembersSetPermissionsResult.team_member_id.validator), + ("role", MembersSetPermissionsResult.role.validator), ] MembersSetProfileArg.user.validator = UserSelectorArg_validator @@ -16599,23 +17826,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetProfileArg.new_surname.validator = bv.Nullable(common.OptionalNamePart_validator) MembersSetProfileArg.new_persistent_id.validator = bv.Nullable(bv.String()) MembersSetProfileArg.new_is_directory_restricted.validator = bv.Nullable(bv.Boolean()) -MembersSetProfileArg._all_field_names_ = set([ - 'user', - 'new_email', - 'new_external_id', - 'new_given_name', - 'new_surname', - 'new_persistent_id', - 'new_is_directory_restricted', -]) +MembersSetProfileArg._all_field_names_ = set( + [ + "user", + "new_email", + "new_external_id", + "new_given_name", + "new_surname", + "new_persistent_id", + "new_is_directory_restricted", + ] +) MembersSetProfileArg._all_fields_ = [ - ('user', MembersSetProfileArg.user.validator), - ('new_email', MembersSetProfileArg.new_email.validator), - ('new_external_id', MembersSetProfileArg.new_external_id.validator), - ('new_given_name', MembersSetProfileArg.new_given_name.validator), - ('new_surname', MembersSetProfileArg.new_surname.validator), - ('new_persistent_id', MembersSetProfileArg.new_persistent_id.validator), - ('new_is_directory_restricted', MembersSetProfileArg.new_is_directory_restricted.validator), + ("user", MembersSetProfileArg.user.validator), + ("new_email", MembersSetProfileArg.new_email.validator), + ("new_external_id", MembersSetProfileArg.new_external_id.validator), + ("new_given_name", MembersSetProfileArg.new_given_name.validator), + ("new_surname", MembersSetProfileArg.new_surname.validator), + ("new_persistent_id", MembersSetProfileArg.new_persistent_id.validator), + ( + "new_is_directory_restricted", + MembersSetProfileArg.new_is_directory_restricted.validator, + ), ] MembersSetProfileError._external_id_and_new_external_id_unsafe_validator = bv.Void() @@ -16629,99 +17861,121 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetProfileError._directory_restricted_off_validator = bv.Void() MembersSetProfileError._other_validator = bv.Void() MembersSetProfileError._tagmap = { - 'external_id_and_new_external_id_unsafe': MembersSetProfileError._external_id_and_new_external_id_unsafe_validator, - 'no_new_data_specified': MembersSetProfileError._no_new_data_specified_validator, - 'email_reserved_for_other_user': MembersSetProfileError._email_reserved_for_other_user_validator, - 'external_id_used_by_other_user': MembersSetProfileError._external_id_used_by_other_user_validator, - 'set_profile_disallowed': MembersSetProfileError._set_profile_disallowed_validator, - 'param_cannot_be_empty': MembersSetProfileError._param_cannot_be_empty_validator, - 'persistent_id_disabled': MembersSetProfileError._persistent_id_disabled_validator, - 'persistent_id_used_by_other_user': MembersSetProfileError._persistent_id_used_by_other_user_validator, - 'directory_restricted_off': MembersSetProfileError._directory_restricted_off_validator, - 'other': MembersSetProfileError._other_validator, + "external_id_and_new_external_id_unsafe": MembersSetProfileError._external_id_and_new_external_id_unsafe_validator, + "no_new_data_specified": MembersSetProfileError._no_new_data_specified_validator, + "email_reserved_for_other_user": MembersSetProfileError._email_reserved_for_other_user_validator, + "external_id_used_by_other_user": MembersSetProfileError._external_id_used_by_other_user_validator, + "set_profile_disallowed": MembersSetProfileError._set_profile_disallowed_validator, + "param_cannot_be_empty": MembersSetProfileError._param_cannot_be_empty_validator, + "persistent_id_disabled": MembersSetProfileError._persistent_id_disabled_validator, + "persistent_id_used_by_other_user": MembersSetProfileError._persistent_id_used_by_other_user_validator, + "directory_restricted_off": MembersSetProfileError._directory_restricted_off_validator, + "other": MembersSetProfileError._other_validator, } MembersSetProfileError._tagmap.update(MemberSelectorError._tagmap) -MembersSetProfileError.external_id_and_new_external_id_unsafe = MembersSetProfileError('external_id_and_new_external_id_unsafe') -MembersSetProfileError.no_new_data_specified = MembersSetProfileError('no_new_data_specified') -MembersSetProfileError.email_reserved_for_other_user = MembersSetProfileError('email_reserved_for_other_user') -MembersSetProfileError.external_id_used_by_other_user = MembersSetProfileError('external_id_used_by_other_user') -MembersSetProfileError.set_profile_disallowed = MembersSetProfileError('set_profile_disallowed') -MembersSetProfileError.param_cannot_be_empty = MembersSetProfileError('param_cannot_be_empty') -MembersSetProfileError.persistent_id_disabled = MembersSetProfileError('persistent_id_disabled') -MembersSetProfileError.persistent_id_used_by_other_user = MembersSetProfileError('persistent_id_used_by_other_user') -MembersSetProfileError.directory_restricted_off = MembersSetProfileError('directory_restricted_off') -MembersSetProfileError.other = MembersSetProfileError('other') +MembersSetProfileError.external_id_and_new_external_id_unsafe = MembersSetProfileError( + "external_id_and_new_external_id_unsafe" +) +MembersSetProfileError.no_new_data_specified = MembersSetProfileError("no_new_data_specified") +MembersSetProfileError.email_reserved_for_other_user = MembersSetProfileError( + "email_reserved_for_other_user" +) +MembersSetProfileError.external_id_used_by_other_user = MembersSetProfileError( + "external_id_used_by_other_user" +) +MembersSetProfileError.set_profile_disallowed = MembersSetProfileError("set_profile_disallowed") +MembersSetProfileError.param_cannot_be_empty = MembersSetProfileError("param_cannot_be_empty") +MembersSetProfileError.persistent_id_disabled = MembersSetProfileError("persistent_id_disabled") +MembersSetProfileError.persistent_id_used_by_other_user = MembersSetProfileError( + "persistent_id_used_by_other_user" +) +MembersSetProfileError.directory_restricted_off = MembersSetProfileError("directory_restricted_off") +MembersSetProfileError.other = MembersSetProfileError("other") MembersSetProfilePhotoArg.user.validator = UserSelectorArg_validator MembersSetProfilePhotoArg.photo.validator = account.PhotoSourceArg_validator -MembersSetProfilePhotoArg._all_field_names_ = set([ - 'user', - 'photo', -]) +MembersSetProfilePhotoArg._all_field_names_ = set( + [ + "user", + "photo", + ] +) MembersSetProfilePhotoArg._all_fields_ = [ - ('user', MembersSetProfilePhotoArg.user.validator), - ('photo', MembersSetProfilePhotoArg.photo.validator), + ("user", MembersSetProfilePhotoArg.user.validator), + ("photo", MembersSetProfilePhotoArg.photo.validator), ] MembersSetProfilePhotoError._set_profile_disallowed_validator = bv.Void() MembersSetProfilePhotoError._photo_error_validator = account.SetProfilePhotoError_validator MembersSetProfilePhotoError._other_validator = bv.Void() MembersSetProfilePhotoError._tagmap = { - 'set_profile_disallowed': MembersSetProfilePhotoError._set_profile_disallowed_validator, - 'photo_error': MembersSetProfilePhotoError._photo_error_validator, - 'other': MembersSetProfilePhotoError._other_validator, + "set_profile_disallowed": MembersSetProfilePhotoError._set_profile_disallowed_validator, + "photo_error": MembersSetProfilePhotoError._photo_error_validator, + "other": MembersSetProfilePhotoError._other_validator, } MembersSetProfilePhotoError._tagmap.update(MemberSelectorError._tagmap) -MembersSetProfilePhotoError.set_profile_disallowed = MembersSetProfilePhotoError('set_profile_disallowed') -MembersSetProfilePhotoError.other = MembersSetProfilePhotoError('other') +MembersSetProfilePhotoError.set_profile_disallowed = MembersSetProfilePhotoError( + "set_profile_disallowed" +) +MembersSetProfilePhotoError.other = MembersSetProfilePhotoError("other") MembersSuspendError._suspend_inactive_user_validator = bv.Void() MembersSuspendError._suspend_last_admin_validator = bv.Void() MembersSuspendError._team_license_limit_validator = bv.Void() MembersSuspendError._tagmap = { - 'suspend_inactive_user': MembersSuspendError._suspend_inactive_user_validator, - 'suspend_last_admin': MembersSuspendError._suspend_last_admin_validator, - 'team_license_limit': MembersSuspendError._team_license_limit_validator, + "suspend_inactive_user": MembersSuspendError._suspend_inactive_user_validator, + "suspend_last_admin": MembersSuspendError._suspend_last_admin_validator, + "team_license_limit": MembersSuspendError._team_license_limit_validator, } MembersSuspendError._tagmap.update(MembersDeactivateError._tagmap) -MembersSuspendError.suspend_inactive_user = MembersSuspendError('suspend_inactive_user') -MembersSuspendError.suspend_last_admin = MembersSuspendError('suspend_last_admin') -MembersSuspendError.team_license_limit = MembersSuspendError('team_license_limit') +MembersSuspendError.suspend_inactive_user = MembersSuspendError("suspend_inactive_user") +MembersSuspendError.suspend_last_admin = MembersSuspendError("suspend_last_admin") +MembersSuspendError.team_license_limit = MembersSuspendError("team_license_limit") MembersTransferFormerMembersFilesError._user_data_is_being_transferred_validator = bv.Void() MembersTransferFormerMembersFilesError._user_not_removed_validator = bv.Void() MembersTransferFormerMembersFilesError._user_data_cannot_be_transferred_validator = bv.Void() MembersTransferFormerMembersFilesError._user_data_already_transferred_validator = bv.Void() MembersTransferFormerMembersFilesError._tagmap = { - 'user_data_is_being_transferred': MembersTransferFormerMembersFilesError._user_data_is_being_transferred_validator, - 'user_not_removed': MembersTransferFormerMembersFilesError._user_not_removed_validator, - 'user_data_cannot_be_transferred': MembersTransferFormerMembersFilesError._user_data_cannot_be_transferred_validator, - 'user_data_already_transferred': MembersTransferFormerMembersFilesError._user_data_already_transferred_validator, + "user_data_is_being_transferred": MembersTransferFormerMembersFilesError._user_data_is_being_transferred_validator, + "user_not_removed": MembersTransferFormerMembersFilesError._user_not_removed_validator, + "user_data_cannot_be_transferred": MembersTransferFormerMembersFilesError._user_data_cannot_be_transferred_validator, + "user_data_already_transferred": MembersTransferFormerMembersFilesError._user_data_already_transferred_validator, } MembersTransferFormerMembersFilesError._tagmap.update(MembersTransferFilesError._tagmap) -MembersTransferFormerMembersFilesError.user_data_is_being_transferred = MembersTransferFormerMembersFilesError('user_data_is_being_transferred') -MembersTransferFormerMembersFilesError.user_not_removed = MembersTransferFormerMembersFilesError('user_not_removed') -MembersTransferFormerMembersFilesError.user_data_cannot_be_transferred = MembersTransferFormerMembersFilesError('user_data_cannot_be_transferred') -MembersTransferFormerMembersFilesError.user_data_already_transferred = MembersTransferFormerMembersFilesError('user_data_already_transferred') +MembersTransferFormerMembersFilesError.user_data_is_being_transferred = ( + MembersTransferFormerMembersFilesError("user_data_is_being_transferred") +) +MembersTransferFormerMembersFilesError.user_not_removed = MembersTransferFormerMembersFilesError( + "user_not_removed" +) +MembersTransferFormerMembersFilesError.user_data_cannot_be_transferred = ( + MembersTransferFormerMembersFilesError("user_data_cannot_be_transferred") +) +MembersTransferFormerMembersFilesError.user_data_already_transferred = ( + MembersTransferFormerMembersFilesError("user_data_already_transferred") +) MembersUnsuspendArg.user.validator = UserSelectorArg_validator -MembersUnsuspendArg._all_field_names_ = set(['user']) -MembersUnsuspendArg._all_fields_ = [('user', MembersUnsuspendArg.user.validator)] +MembersUnsuspendArg._all_field_names_ = set(["user"]) +MembersUnsuspendArg._all_fields_ = [("user", MembersUnsuspendArg.user.validator)] MembersUnsuspendError._unsuspend_non_suspended_member_validator = bv.Void() MembersUnsuspendError._team_license_limit_validator = bv.Void() MembersUnsuspendError._tagmap = { - 'unsuspend_non_suspended_member': MembersUnsuspendError._unsuspend_non_suspended_member_validator, - 'team_license_limit': MembersUnsuspendError._team_license_limit_validator, + "unsuspend_non_suspended_member": MembersUnsuspendError._unsuspend_non_suspended_member_validator, + "team_license_limit": MembersUnsuspendError._team_license_limit_validator, } MembersUnsuspendError._tagmap.update(MembersDeactivateError._tagmap) -MembersUnsuspendError.unsuspend_non_suspended_member = MembersUnsuspendError('unsuspend_non_suspended_member') -MembersUnsuspendError.team_license_limit = MembersUnsuspendError('team_license_limit') +MembersUnsuspendError.unsuspend_non_suspended_member = MembersUnsuspendError( + "unsuspend_non_suspended_member" +) +MembersUnsuspendError.team_license_limit = MembersUnsuspendError("team_license_limit") MobileClientPlatform._iphone_validator = bv.Void() MobileClientPlatform._ipad_validator = bv.Void() @@ -16730,39 +17984,43 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MobileClientPlatform._blackberry_validator = bv.Void() MobileClientPlatform._other_validator = bv.Void() MobileClientPlatform._tagmap = { - 'iphone': MobileClientPlatform._iphone_validator, - 'ipad': MobileClientPlatform._ipad_validator, - 'android': MobileClientPlatform._android_validator, - 'windows_phone': MobileClientPlatform._windows_phone_validator, - 'blackberry': MobileClientPlatform._blackberry_validator, - 'other': MobileClientPlatform._other_validator, + "iphone": MobileClientPlatform._iphone_validator, + "ipad": MobileClientPlatform._ipad_validator, + "android": MobileClientPlatform._android_validator, + "windows_phone": MobileClientPlatform._windows_phone_validator, + "blackberry": MobileClientPlatform._blackberry_validator, + "other": MobileClientPlatform._other_validator, } -MobileClientPlatform.iphone = MobileClientPlatform('iphone') -MobileClientPlatform.ipad = MobileClientPlatform('ipad') -MobileClientPlatform.android = MobileClientPlatform('android') -MobileClientPlatform.windows_phone = MobileClientPlatform('windows_phone') -MobileClientPlatform.blackberry = MobileClientPlatform('blackberry') -MobileClientPlatform.other = MobileClientPlatform('other') +MobileClientPlatform.iphone = MobileClientPlatform("iphone") +MobileClientPlatform.ipad = MobileClientPlatform("ipad") +MobileClientPlatform.android = MobileClientPlatform("android") +MobileClientPlatform.windows_phone = MobileClientPlatform("windows_phone") +MobileClientPlatform.blackberry = MobileClientPlatform("blackberry") +MobileClientPlatform.other = MobileClientPlatform("other") MobileClientSession.device_name.validator = bv.String() MobileClientSession.client_type.validator = MobileClientPlatform_validator MobileClientSession.client_version.validator = bv.Nullable(bv.String()) MobileClientSession.os_version.validator = bv.Nullable(bv.String()) MobileClientSession.last_carrier.validator = bv.Nullable(bv.String()) -MobileClientSession._all_field_names_ = DeviceSession._all_field_names_.union(set([ - 'device_name', - 'client_type', - 'client_version', - 'os_version', - 'last_carrier', -])) +MobileClientSession._all_field_names_ = DeviceSession._all_field_names_.union( + set( + [ + "device_name", + "client_type", + "client_version", + "os_version", + "last_carrier", + ] + ) +) MobileClientSession._all_fields_ = DeviceSession._all_fields_ + [ - ('device_name', MobileClientSession.device_name.validator), - ('client_type', MobileClientSession.client_type.validator), - ('client_version', MobileClientSession.client_version.validator), - ('os_version', MobileClientSession.os_version.validator), - ('last_carrier', MobileClientSession.last_carrier.validator), + ("device_name", MobileClientSession.device_name.validator), + ("client_type", MobileClientSession.client_type.validator), + ("client_version", MobileClientSession.client_version.validator), + ("os_version", MobileClientSession.os_version.validator), + ("last_carrier", MobileClientSession.last_carrier.validator), ] NamespaceMetadata.name.validator = bv.String() @@ -16770,19 +18028,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): NamespaceMetadata.namespace_type.validator = NamespaceType_validator NamespaceMetadata.team_member_id.validator = bv.Nullable(team_common.TeamMemberId_validator) NamespaceMetadata.quota_limit.validator = bv.Int64() -NamespaceMetadata._all_field_names_ = set([ - 'name', - 'namespace_id', - 'namespace_type', - 'team_member_id', - 'quota_limit', -]) +NamespaceMetadata._all_field_names_ = set( + [ + "name", + "namespace_id", + "namespace_type", + "team_member_id", + "quota_limit", + ] +) NamespaceMetadata._all_fields_ = [ - ('name', NamespaceMetadata.name.validator), - ('namespace_id', NamespaceMetadata.namespace_id.validator), - ('namespace_type', NamespaceMetadata.namespace_type.validator), - ('team_member_id', NamespaceMetadata.team_member_id.validator), - ('quota_limit', NamespaceMetadata.quota_limit.validator), + ("name", NamespaceMetadata.name.validator), + ("namespace_id", NamespaceMetadata.namespace_id.validator), + ("namespace_type", NamespaceMetadata.namespace_type.validator), + ("team_member_id", NamespaceMetadata.team_member_id.validator), + ("quota_limit", NamespaceMetadata.quota_limit.validator), ] NamespaceType._app_folder_validator = bv.Void() @@ -16792,41 +18052,43 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): NamespaceType._team_member_root_validator = bv.Void() NamespaceType._other_validator = bv.Void() NamespaceType._tagmap = { - 'app_folder': NamespaceType._app_folder_validator, - 'shared_folder': NamespaceType._shared_folder_validator, - 'team_folder': NamespaceType._team_folder_validator, - 'team_member_folder': NamespaceType._team_member_folder_validator, - 'team_member_root': NamespaceType._team_member_root_validator, - 'other': NamespaceType._other_validator, + "app_folder": NamespaceType._app_folder_validator, + "shared_folder": NamespaceType._shared_folder_validator, + "team_folder": NamespaceType._team_folder_validator, + "team_member_folder": NamespaceType._team_member_folder_validator, + "team_member_root": NamespaceType._team_member_root_validator, + "other": NamespaceType._other_validator, } -NamespaceType.app_folder = NamespaceType('app_folder') -NamespaceType.shared_folder = NamespaceType('shared_folder') -NamespaceType.team_folder = NamespaceType('team_folder') -NamespaceType.team_member_folder = NamespaceType('team_member_folder') -NamespaceType.team_member_root = NamespaceType('team_member_root') -NamespaceType.other = NamespaceType('other') +NamespaceType.app_folder = NamespaceType("app_folder") +NamespaceType.shared_folder = NamespaceType("shared_folder") +NamespaceType.team_folder = NamespaceType("team_folder") +NamespaceType.team_member_folder = NamespaceType("team_member_folder") +NamespaceType.team_member_root = NamespaceType("team_member_root") +NamespaceType.other = NamespaceType("other") RemoveCustomQuotaResult._success_validator = UserSelectorArg_validator RemoveCustomQuotaResult._invalid_user_validator = UserSelectorArg_validator RemoveCustomQuotaResult._other_validator = bv.Void() RemoveCustomQuotaResult._tagmap = { - 'success': RemoveCustomQuotaResult._success_validator, - 'invalid_user': RemoveCustomQuotaResult._invalid_user_validator, - 'other': RemoveCustomQuotaResult._other_validator, + "success": RemoveCustomQuotaResult._success_validator, + "invalid_user": RemoveCustomQuotaResult._invalid_user_validator, + "other": RemoveCustomQuotaResult._other_validator, } -RemoveCustomQuotaResult.other = RemoveCustomQuotaResult('other') +RemoveCustomQuotaResult.other = RemoveCustomQuotaResult("other") RemovedStatus.is_recoverable.validator = bv.Boolean() RemovedStatus.is_disconnected.validator = bv.Boolean() -RemovedStatus._all_field_names_ = set([ - 'is_recoverable', - 'is_disconnected', -]) +RemovedStatus._all_field_names_ = set( + [ + "is_recoverable", + "is_disconnected", + ] +) RemovedStatus._all_fields_ = [ - ('is_recoverable', RemovedStatus.is_recoverable.validator), - ('is_disconnected', RemovedStatus.is_disconnected.validator), + ("is_recoverable", RemovedStatus.is_recoverable.validator), + ("is_disconnected", RemovedStatus.is_disconnected.validator), ] ResendSecondaryEmailResult._success_validator = common.EmailAddress_validator @@ -16834,151 +18096,191 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ResendSecondaryEmailResult._rate_limited_validator = common.EmailAddress_validator ResendSecondaryEmailResult._other_validator = bv.Void() ResendSecondaryEmailResult._tagmap = { - 'success': ResendSecondaryEmailResult._success_validator, - 'not_pending': ResendSecondaryEmailResult._not_pending_validator, - 'rate_limited': ResendSecondaryEmailResult._rate_limited_validator, - 'other': ResendSecondaryEmailResult._other_validator, + "success": ResendSecondaryEmailResult._success_validator, + "not_pending": ResendSecondaryEmailResult._not_pending_validator, + "rate_limited": ResendSecondaryEmailResult._rate_limited_validator, + "other": ResendSecondaryEmailResult._other_validator, } -ResendSecondaryEmailResult.other = ResendSecondaryEmailResult('other') +ResendSecondaryEmailResult.other = ResendSecondaryEmailResult("other") ResendVerificationEmailArg.emails_to_resend.validator = bv.List(UserSecondaryEmailsArg_validator) -ResendVerificationEmailArg._all_field_names_ = set(['emails_to_resend']) -ResendVerificationEmailArg._all_fields_ = [('emails_to_resend', ResendVerificationEmailArg.emails_to_resend.validator)] +ResendVerificationEmailArg._all_field_names_ = set(["emails_to_resend"]) +ResendVerificationEmailArg._all_fields_ = [ + ("emails_to_resend", ResendVerificationEmailArg.emails_to_resend.validator) +] ResendVerificationEmailResult.results.validator = bv.List(UserResendResult_validator) -ResendVerificationEmailResult._all_field_names_ = set(['results']) -ResendVerificationEmailResult._all_fields_ = [('results', ResendVerificationEmailResult.results.validator)] +ResendVerificationEmailResult._all_field_names_ = set(["results"]) +ResendVerificationEmailResult._all_fields_ = [ + ("results", ResendVerificationEmailResult.results.validator) +] RevokeDesktopClientArg.delete_on_unlink.validator = bv.Boolean() -RevokeDesktopClientArg._all_field_names_ = DeviceSessionArg._all_field_names_.union(set(['delete_on_unlink'])) -RevokeDesktopClientArg._all_fields_ = DeviceSessionArg._all_fields_ + [('delete_on_unlink', RevokeDesktopClientArg.delete_on_unlink.validator)] +RevokeDesktopClientArg._all_field_names_ = DeviceSessionArg._all_field_names_.union( + set(["delete_on_unlink"]) +) +RevokeDesktopClientArg._all_fields_ = DeviceSessionArg._all_fields_ + [ + ("delete_on_unlink", RevokeDesktopClientArg.delete_on_unlink.validator) +] RevokeDeviceSessionArg._web_session_validator = DeviceSessionArg_validator RevokeDeviceSessionArg._desktop_client_validator = RevokeDesktopClientArg_validator RevokeDeviceSessionArg._mobile_client_validator = DeviceSessionArg_validator RevokeDeviceSessionArg._tagmap = { - 'web_session': RevokeDeviceSessionArg._web_session_validator, - 'desktop_client': RevokeDeviceSessionArg._desktop_client_validator, - 'mobile_client': RevokeDeviceSessionArg._mobile_client_validator, + "web_session": RevokeDeviceSessionArg._web_session_validator, + "desktop_client": RevokeDeviceSessionArg._desktop_client_validator, + "mobile_client": RevokeDeviceSessionArg._mobile_client_validator, } RevokeDeviceSessionBatchArg.revoke_devices.validator = bv.List(RevokeDeviceSessionArg_validator) -RevokeDeviceSessionBatchArg._all_field_names_ = set(['revoke_devices']) -RevokeDeviceSessionBatchArg._all_fields_ = [('revoke_devices', RevokeDeviceSessionBatchArg.revoke_devices.validator)] +RevokeDeviceSessionBatchArg._all_field_names_ = set(["revoke_devices"]) +RevokeDeviceSessionBatchArg._all_fields_ = [ + ("revoke_devices", RevokeDeviceSessionBatchArg.revoke_devices.validator) +] RevokeDeviceSessionBatchError._other_validator = bv.Void() RevokeDeviceSessionBatchError._tagmap = { - 'other': RevokeDeviceSessionBatchError._other_validator, + "other": RevokeDeviceSessionBatchError._other_validator, } -RevokeDeviceSessionBatchError.other = RevokeDeviceSessionBatchError('other') +RevokeDeviceSessionBatchError.other = RevokeDeviceSessionBatchError("other") -RevokeDeviceSessionBatchResult.revoke_devices_status.validator = bv.List(RevokeDeviceSessionStatus_validator) -RevokeDeviceSessionBatchResult._all_field_names_ = set(['revoke_devices_status']) -RevokeDeviceSessionBatchResult._all_fields_ = [('revoke_devices_status', RevokeDeviceSessionBatchResult.revoke_devices_status.validator)] +RevokeDeviceSessionBatchResult.revoke_devices_status.validator = bv.List( + RevokeDeviceSessionStatus_validator +) +RevokeDeviceSessionBatchResult._all_field_names_ = set(["revoke_devices_status"]) +RevokeDeviceSessionBatchResult._all_fields_ = [ + ( + "revoke_devices_status", + RevokeDeviceSessionBatchResult.revoke_devices_status.validator, + ) +] RevokeDeviceSessionError._device_session_not_found_validator = bv.Void() RevokeDeviceSessionError._member_not_found_validator = bv.Void() RevokeDeviceSessionError._other_validator = bv.Void() RevokeDeviceSessionError._tagmap = { - 'device_session_not_found': RevokeDeviceSessionError._device_session_not_found_validator, - 'member_not_found': RevokeDeviceSessionError._member_not_found_validator, - 'other': RevokeDeviceSessionError._other_validator, + "device_session_not_found": RevokeDeviceSessionError._device_session_not_found_validator, + "member_not_found": RevokeDeviceSessionError._member_not_found_validator, + "other": RevokeDeviceSessionError._other_validator, } -RevokeDeviceSessionError.device_session_not_found = RevokeDeviceSessionError('device_session_not_found') -RevokeDeviceSessionError.member_not_found = RevokeDeviceSessionError('member_not_found') -RevokeDeviceSessionError.other = RevokeDeviceSessionError('other') +RevokeDeviceSessionError.device_session_not_found = RevokeDeviceSessionError( + "device_session_not_found" +) +RevokeDeviceSessionError.member_not_found = RevokeDeviceSessionError("member_not_found") +RevokeDeviceSessionError.other = RevokeDeviceSessionError("other") RevokeDeviceSessionStatus.success.validator = bv.Boolean() RevokeDeviceSessionStatus.error_type.validator = bv.Nullable(RevokeDeviceSessionError_validator) -RevokeDeviceSessionStatus._all_field_names_ = set([ - 'success', - 'error_type', -]) +RevokeDeviceSessionStatus._all_field_names_ = set( + [ + "success", + "error_type", + ] +) RevokeDeviceSessionStatus._all_fields_ = [ - ('success', RevokeDeviceSessionStatus.success.validator), - ('error_type', RevokeDeviceSessionStatus.error_type.validator), + ("success", RevokeDeviceSessionStatus.success.validator), + ("error_type", RevokeDeviceSessionStatus.error_type.validator), ] RevokeLinkedApiAppArg.app_id.validator = bv.String() RevokeLinkedApiAppArg.team_member_id.validator = bv.String() RevokeLinkedApiAppArg.keep_app_folder.validator = bv.Boolean() -RevokeLinkedApiAppArg._all_field_names_ = set([ - 'app_id', - 'team_member_id', - 'keep_app_folder', -]) +RevokeLinkedApiAppArg._all_field_names_ = set( + [ + "app_id", + "team_member_id", + "keep_app_folder", + ] +) RevokeLinkedApiAppArg._all_fields_ = [ - ('app_id', RevokeLinkedApiAppArg.app_id.validator), - ('team_member_id', RevokeLinkedApiAppArg.team_member_id.validator), - ('keep_app_folder', RevokeLinkedApiAppArg.keep_app_folder.validator), + ("app_id", RevokeLinkedApiAppArg.app_id.validator), + ("team_member_id", RevokeLinkedApiAppArg.team_member_id.validator), + ("keep_app_folder", RevokeLinkedApiAppArg.keep_app_folder.validator), ] RevokeLinkedApiAppBatchArg.revoke_linked_app.validator = bv.List(RevokeLinkedApiAppArg_validator) -RevokeLinkedApiAppBatchArg._all_field_names_ = set(['revoke_linked_app']) -RevokeLinkedApiAppBatchArg._all_fields_ = [('revoke_linked_app', RevokeLinkedApiAppBatchArg.revoke_linked_app.validator)] +RevokeLinkedApiAppBatchArg._all_field_names_ = set(["revoke_linked_app"]) +RevokeLinkedApiAppBatchArg._all_fields_ = [ + ("revoke_linked_app", RevokeLinkedApiAppBatchArg.revoke_linked_app.validator) +] RevokeLinkedAppBatchError._other_validator = bv.Void() RevokeLinkedAppBatchError._tagmap = { - 'other': RevokeLinkedAppBatchError._other_validator, + "other": RevokeLinkedAppBatchError._other_validator, } -RevokeLinkedAppBatchError.other = RevokeLinkedAppBatchError('other') +RevokeLinkedAppBatchError.other = RevokeLinkedAppBatchError("other") -RevokeLinkedAppBatchResult.revoke_linked_app_status.validator = bv.List(RevokeLinkedAppStatus_validator) -RevokeLinkedAppBatchResult._all_field_names_ = set(['revoke_linked_app_status']) -RevokeLinkedAppBatchResult._all_fields_ = [('revoke_linked_app_status', RevokeLinkedAppBatchResult.revoke_linked_app_status.validator)] +RevokeLinkedAppBatchResult.revoke_linked_app_status.validator = bv.List( + RevokeLinkedAppStatus_validator +) +RevokeLinkedAppBatchResult._all_field_names_ = set(["revoke_linked_app_status"]) +RevokeLinkedAppBatchResult._all_fields_ = [ + ( + "revoke_linked_app_status", + RevokeLinkedAppBatchResult.revoke_linked_app_status.validator, + ) +] RevokeLinkedAppError._app_not_found_validator = bv.Void() RevokeLinkedAppError._member_not_found_validator = bv.Void() RevokeLinkedAppError._app_folder_removal_not_supported_validator = bv.Void() RevokeLinkedAppError._other_validator = bv.Void() RevokeLinkedAppError._tagmap = { - 'app_not_found': RevokeLinkedAppError._app_not_found_validator, - 'member_not_found': RevokeLinkedAppError._member_not_found_validator, - 'app_folder_removal_not_supported': RevokeLinkedAppError._app_folder_removal_not_supported_validator, - 'other': RevokeLinkedAppError._other_validator, + "app_not_found": RevokeLinkedAppError._app_not_found_validator, + "member_not_found": RevokeLinkedAppError._member_not_found_validator, + "app_folder_removal_not_supported": RevokeLinkedAppError._app_folder_removal_not_supported_validator, + "other": RevokeLinkedAppError._other_validator, } -RevokeLinkedAppError.app_not_found = RevokeLinkedAppError('app_not_found') -RevokeLinkedAppError.member_not_found = RevokeLinkedAppError('member_not_found') -RevokeLinkedAppError.app_folder_removal_not_supported = RevokeLinkedAppError('app_folder_removal_not_supported') -RevokeLinkedAppError.other = RevokeLinkedAppError('other') +RevokeLinkedAppError.app_not_found = RevokeLinkedAppError("app_not_found") +RevokeLinkedAppError.member_not_found = RevokeLinkedAppError("member_not_found") +RevokeLinkedAppError.app_folder_removal_not_supported = RevokeLinkedAppError( + "app_folder_removal_not_supported" +) +RevokeLinkedAppError.other = RevokeLinkedAppError("other") RevokeLinkedAppStatus.success.validator = bv.Boolean() RevokeLinkedAppStatus.error_type.validator = bv.Nullable(RevokeLinkedAppError_validator) -RevokeLinkedAppStatus._all_field_names_ = set([ - 'success', - 'error_type', -]) +RevokeLinkedAppStatus._all_field_names_ = set( + [ + "success", + "error_type", + ] +) RevokeLinkedAppStatus._all_fields_ = [ - ('success', RevokeLinkedAppStatus.success.validator), - ('error_type', RevokeLinkedAppStatus.error_type.validator), + ("success", RevokeLinkedAppStatus.success.validator), + ("error_type", RevokeLinkedAppStatus.error_type.validator), ] SetCustomQuotaArg.users_and_quotas.validator = bv.List(UserCustomQuotaArg_validator) -SetCustomQuotaArg._all_field_names_ = set(['users_and_quotas']) -SetCustomQuotaArg._all_fields_ = [('users_and_quotas', SetCustomQuotaArg.users_and_quotas.validator)] +SetCustomQuotaArg._all_field_names_ = set(["users_and_quotas"]) +SetCustomQuotaArg._all_fields_ = [ + ("users_and_quotas", SetCustomQuotaArg.users_and_quotas.validator) +] SetCustomQuotaError._some_users_are_excluded_validator = bv.Void() SetCustomQuotaError._tagmap = { - 'some_users_are_excluded': SetCustomQuotaError._some_users_are_excluded_validator, + "some_users_are_excluded": SetCustomQuotaError._some_users_are_excluded_validator, } SetCustomQuotaError._tagmap.update(CustomQuotaError._tagmap) -SetCustomQuotaError.some_users_are_excluded = SetCustomQuotaError('some_users_are_excluded') +SetCustomQuotaError.some_users_are_excluded = SetCustomQuotaError("some_users_are_excluded") SharingAllowlistAddArgs.domains.validator = bv.Nullable(bv.List(bv.String())) SharingAllowlistAddArgs.emails.validator = bv.Nullable(bv.List(bv.String())) -SharingAllowlistAddArgs._all_field_names_ = set([ - 'domains', - 'emails', -]) +SharingAllowlistAddArgs._all_field_names_ = set( + [ + "domains", + "emails", + ] +) SharingAllowlistAddArgs._all_fields_ = [ - ('domains', SharingAllowlistAddArgs.domains.validator), - ('emails', SharingAllowlistAddArgs.emails.validator), + ("domains", SharingAllowlistAddArgs.domains.validator), + ("emails", SharingAllowlistAddArgs.emails.validator), ] SharingAllowlistAddError._malformed_entry_validator = bv.String() @@ -16989,41 +18291,47 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistAddError._entries_already_exist_validator = bv.String() SharingAllowlistAddError._other_validator = bv.Void() SharingAllowlistAddError._tagmap = { - 'malformed_entry': SharingAllowlistAddError._malformed_entry_validator, - 'no_entries_provided': SharingAllowlistAddError._no_entries_provided_validator, - 'too_many_entries_provided': SharingAllowlistAddError._too_many_entries_provided_validator, - 'team_limit_reached': SharingAllowlistAddError._team_limit_reached_validator, - 'unknown_error': SharingAllowlistAddError._unknown_error_validator, - 'entries_already_exist': SharingAllowlistAddError._entries_already_exist_validator, - 'other': SharingAllowlistAddError._other_validator, + "malformed_entry": SharingAllowlistAddError._malformed_entry_validator, + "no_entries_provided": SharingAllowlistAddError._no_entries_provided_validator, + "too_many_entries_provided": SharingAllowlistAddError._too_many_entries_provided_validator, + "team_limit_reached": SharingAllowlistAddError._team_limit_reached_validator, + "unknown_error": SharingAllowlistAddError._unknown_error_validator, + "entries_already_exist": SharingAllowlistAddError._entries_already_exist_validator, + "other": SharingAllowlistAddError._other_validator, } -SharingAllowlistAddError.no_entries_provided = SharingAllowlistAddError('no_entries_provided') -SharingAllowlistAddError.too_many_entries_provided = SharingAllowlistAddError('too_many_entries_provided') -SharingAllowlistAddError.team_limit_reached = SharingAllowlistAddError('team_limit_reached') -SharingAllowlistAddError.unknown_error = SharingAllowlistAddError('unknown_error') -SharingAllowlistAddError.other = SharingAllowlistAddError('other') +SharingAllowlistAddError.no_entries_provided = SharingAllowlistAddError("no_entries_provided") +SharingAllowlistAddError.too_many_entries_provided = SharingAllowlistAddError( + "too_many_entries_provided" +) +SharingAllowlistAddError.team_limit_reached = SharingAllowlistAddError("team_limit_reached") +SharingAllowlistAddError.unknown_error = SharingAllowlistAddError("unknown_error") +SharingAllowlistAddError.other = SharingAllowlistAddError("other") SharingAllowlistAddResponse._all_field_names_ = set([]) SharingAllowlistAddResponse._all_fields_ = [] SharingAllowlistListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -SharingAllowlistListArg._all_field_names_ = set(['limit']) -SharingAllowlistListArg._all_fields_ = [('limit', SharingAllowlistListArg.limit.validator)] +SharingAllowlistListArg._all_field_names_ = set(["limit"]) +SharingAllowlistListArg._all_fields_ = [("limit", SharingAllowlistListArg.limit.validator)] SharingAllowlistListContinueArg.cursor.validator = bv.String() -SharingAllowlistListContinueArg._all_field_names_ = set(['cursor']) -SharingAllowlistListContinueArg._all_fields_ = [('cursor', SharingAllowlistListContinueArg.cursor.validator)] +SharingAllowlistListContinueArg._all_field_names_ = set(["cursor"]) +SharingAllowlistListContinueArg._all_fields_ = [ + ("cursor", SharingAllowlistListContinueArg.cursor.validator) +] SharingAllowlistListContinueError._invalid_cursor_validator = bv.Void() SharingAllowlistListContinueError._other_validator = bv.Void() SharingAllowlistListContinueError._tagmap = { - 'invalid_cursor': SharingAllowlistListContinueError._invalid_cursor_validator, - 'other': SharingAllowlistListContinueError._other_validator, + "invalid_cursor": SharingAllowlistListContinueError._invalid_cursor_validator, + "other": SharingAllowlistListContinueError._other_validator, } -SharingAllowlistListContinueError.invalid_cursor = SharingAllowlistListContinueError('invalid_cursor') -SharingAllowlistListContinueError.other = SharingAllowlistListContinueError('other') +SharingAllowlistListContinueError.invalid_cursor = SharingAllowlistListContinueError( + "invalid_cursor" +) +SharingAllowlistListContinueError.other = SharingAllowlistListContinueError("other") SharingAllowlistListError._all_field_names_ = set([]) SharingAllowlistListError._all_fields_ = [] @@ -17032,28 +18340,32 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistListResponse.emails.validator = bv.List(bv.String()) SharingAllowlistListResponse.cursor.validator = bv.String() SharingAllowlistListResponse.has_more.validator = bv.Boolean() -SharingAllowlistListResponse._all_field_names_ = set([ - 'domains', - 'emails', - 'cursor', - 'has_more', -]) +SharingAllowlistListResponse._all_field_names_ = set( + [ + "domains", + "emails", + "cursor", + "has_more", + ] +) SharingAllowlistListResponse._all_fields_ = [ - ('domains', SharingAllowlistListResponse.domains.validator), - ('emails', SharingAllowlistListResponse.emails.validator), - ('cursor', SharingAllowlistListResponse.cursor.validator), - ('has_more', SharingAllowlistListResponse.has_more.validator), + ("domains", SharingAllowlistListResponse.domains.validator), + ("emails", SharingAllowlistListResponse.emails.validator), + ("cursor", SharingAllowlistListResponse.cursor.validator), + ("has_more", SharingAllowlistListResponse.has_more.validator), ] SharingAllowlistRemoveArgs.domains.validator = bv.Nullable(bv.List(bv.String())) SharingAllowlistRemoveArgs.emails.validator = bv.Nullable(bv.List(bv.String())) -SharingAllowlistRemoveArgs._all_field_names_ = set([ - 'domains', - 'emails', -]) +SharingAllowlistRemoveArgs._all_field_names_ = set( + [ + "domains", + "emails", + ] +) SharingAllowlistRemoveArgs._all_fields_ = [ - ('domains', SharingAllowlistRemoveArgs.domains.validator), - ('emails', SharingAllowlistRemoveArgs.emails.validator), + ("domains", SharingAllowlistRemoveArgs.domains.validator), + ("emails", SharingAllowlistRemoveArgs.emails.validator), ] SharingAllowlistRemoveError._malformed_entry_validator = bv.String() @@ -17063,85 +18375,93 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistRemoveError._unknown_error_validator = bv.Void() SharingAllowlistRemoveError._other_validator = bv.Void() SharingAllowlistRemoveError._tagmap = { - 'malformed_entry': SharingAllowlistRemoveError._malformed_entry_validator, - 'entries_do_not_exist': SharingAllowlistRemoveError._entries_do_not_exist_validator, - 'no_entries_provided': SharingAllowlistRemoveError._no_entries_provided_validator, - 'too_many_entries_provided': SharingAllowlistRemoveError._too_many_entries_provided_validator, - 'unknown_error': SharingAllowlistRemoveError._unknown_error_validator, - 'other': SharingAllowlistRemoveError._other_validator, + "malformed_entry": SharingAllowlistRemoveError._malformed_entry_validator, + "entries_do_not_exist": SharingAllowlistRemoveError._entries_do_not_exist_validator, + "no_entries_provided": SharingAllowlistRemoveError._no_entries_provided_validator, + "too_many_entries_provided": SharingAllowlistRemoveError._too_many_entries_provided_validator, + "unknown_error": SharingAllowlistRemoveError._unknown_error_validator, + "other": SharingAllowlistRemoveError._other_validator, } -SharingAllowlistRemoveError.no_entries_provided = SharingAllowlistRemoveError('no_entries_provided') -SharingAllowlistRemoveError.too_many_entries_provided = SharingAllowlistRemoveError('too_many_entries_provided') -SharingAllowlistRemoveError.unknown_error = SharingAllowlistRemoveError('unknown_error') -SharingAllowlistRemoveError.other = SharingAllowlistRemoveError('other') +SharingAllowlistRemoveError.no_entries_provided = SharingAllowlistRemoveError("no_entries_provided") +SharingAllowlistRemoveError.too_many_entries_provided = SharingAllowlistRemoveError( + "too_many_entries_provided" +) +SharingAllowlistRemoveError.unknown_error = SharingAllowlistRemoveError("unknown_error") +SharingAllowlistRemoveError.other = SharingAllowlistRemoveError("other") SharingAllowlistRemoveResponse._all_field_names_ = set([]) SharingAllowlistRemoveResponse._all_fields_ = [] StorageBucket.bucket.validator = bv.String() StorageBucket.users.validator = bv.UInt64() -StorageBucket._all_field_names_ = set([ - 'bucket', - 'users', -]) +StorageBucket._all_field_names_ = set( + [ + "bucket", + "users", + ] +) StorageBucket._all_fields_ = [ - ('bucket', StorageBucket.bucket.validator), - ('users', StorageBucket.users.validator), + ("bucket", StorageBucket.bucket.validator), + ("users", StorageBucket.users.validator), ] TeamFolderAccessError._invalid_team_folder_id_validator = bv.Void() TeamFolderAccessError._no_access_validator = bv.Void() TeamFolderAccessError._other_validator = bv.Void() TeamFolderAccessError._tagmap = { - 'invalid_team_folder_id': TeamFolderAccessError._invalid_team_folder_id_validator, - 'no_access': TeamFolderAccessError._no_access_validator, - 'other': TeamFolderAccessError._other_validator, + "invalid_team_folder_id": TeamFolderAccessError._invalid_team_folder_id_validator, + "no_access": TeamFolderAccessError._no_access_validator, + "other": TeamFolderAccessError._other_validator, } -TeamFolderAccessError.invalid_team_folder_id = TeamFolderAccessError('invalid_team_folder_id') -TeamFolderAccessError.no_access = TeamFolderAccessError('no_access') -TeamFolderAccessError.other = TeamFolderAccessError('other') +TeamFolderAccessError.invalid_team_folder_id = TeamFolderAccessError("invalid_team_folder_id") +TeamFolderAccessError.no_access = TeamFolderAccessError("no_access") +TeamFolderAccessError.other = TeamFolderAccessError("other") -TeamFolderActivateError._tagmap = { -} +TeamFolderActivateError._tagmap = {} TeamFolderActivateError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderIdArg.team_folder_id.validator = common.SharedFolderId_validator -TeamFolderIdArg._all_field_names_ = set(['team_folder_id']) -TeamFolderIdArg._all_fields_ = [('team_folder_id', TeamFolderIdArg.team_folder_id.validator)] +TeamFolderIdArg._all_field_names_ = set(["team_folder_id"]) +TeamFolderIdArg._all_fields_ = [("team_folder_id", TeamFolderIdArg.team_folder_id.validator)] TeamFolderArchiveArg.force_async_off.validator = bv.Boolean() -TeamFolderArchiveArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union(set(['force_async_off'])) -TeamFolderArchiveArg._all_fields_ = TeamFolderIdArg._all_fields_ + [('force_async_off', TeamFolderArchiveArg.force_async_off.validator)] +TeamFolderArchiveArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union( + set(["force_async_off"]) +) +TeamFolderArchiveArg._all_fields_ = TeamFolderIdArg._all_fields_ + [ + ("force_async_off", TeamFolderArchiveArg.force_async_off.validator) +] -TeamFolderArchiveError._tagmap = { -} +TeamFolderArchiveError._tagmap = {} TeamFolderArchiveError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderArchiveJobStatus._complete_validator = TeamFolderMetadata_validator TeamFolderArchiveJobStatus._failed_validator = TeamFolderArchiveError_validator TeamFolderArchiveJobStatus._tagmap = { - 'complete': TeamFolderArchiveJobStatus._complete_validator, - 'failed': TeamFolderArchiveJobStatus._failed_validator, + "complete": TeamFolderArchiveJobStatus._complete_validator, + "failed": TeamFolderArchiveJobStatus._failed_validator, } TeamFolderArchiveJobStatus._tagmap.update(async_.PollResultBase._tagmap) TeamFolderArchiveLaunch._complete_validator = TeamFolderMetadata_validator TeamFolderArchiveLaunch._tagmap = { - 'complete': TeamFolderArchiveLaunch._complete_validator, + "complete": TeamFolderArchiveLaunch._complete_validator, } TeamFolderArchiveLaunch._tagmap.update(async_.LaunchResultBase._tagmap) TeamFolderCreateArg.name.validator = bv.String() TeamFolderCreateArg.sync_setting.validator = bv.Nullable(files.SyncSettingArg_validator) -TeamFolderCreateArg._all_field_names_ = set([ - 'name', - 'sync_setting', -]) +TeamFolderCreateArg._all_field_names_ = set( + [ + "name", + "sync_setting", + ] +) TeamFolderCreateArg._all_fields_ = [ - ('name', TeamFolderCreateArg.name.validator), - ('sync_setting', TeamFolderCreateArg.sync_setting.validator), + ("name", TeamFolderCreateArg.name.validator), + ("sync_setting", TeamFolderCreateArg.sync_setting.validator), ] TeamFolderCreateError._invalid_folder_name_validator = bv.Void() @@ -17151,81 +18471,91 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderCreateError._folder_count_limit_exceeded_validator = bv.Void() TeamFolderCreateError._other_validator = bv.Void() TeamFolderCreateError._tagmap = { - 'invalid_folder_name': TeamFolderCreateError._invalid_folder_name_validator, - 'folder_name_already_used': TeamFolderCreateError._folder_name_already_used_validator, - 'folder_name_reserved': TeamFolderCreateError._folder_name_reserved_validator, - 'sync_settings_error': TeamFolderCreateError._sync_settings_error_validator, - 'folder_count_limit_exceeded': TeamFolderCreateError._folder_count_limit_exceeded_validator, - 'other': TeamFolderCreateError._other_validator, + "invalid_folder_name": TeamFolderCreateError._invalid_folder_name_validator, + "folder_name_already_used": TeamFolderCreateError._folder_name_already_used_validator, + "folder_name_reserved": TeamFolderCreateError._folder_name_reserved_validator, + "sync_settings_error": TeamFolderCreateError._sync_settings_error_validator, + "folder_count_limit_exceeded": TeamFolderCreateError._folder_count_limit_exceeded_validator, + "other": TeamFolderCreateError._other_validator, } -TeamFolderCreateError.invalid_folder_name = TeamFolderCreateError('invalid_folder_name') -TeamFolderCreateError.folder_name_already_used = TeamFolderCreateError('folder_name_already_used') -TeamFolderCreateError.folder_name_reserved = TeamFolderCreateError('folder_name_reserved') -TeamFolderCreateError.folder_count_limit_exceeded = TeamFolderCreateError('folder_count_limit_exceeded') -TeamFolderCreateError.other = TeamFolderCreateError('other') +TeamFolderCreateError.invalid_folder_name = TeamFolderCreateError("invalid_folder_name") +TeamFolderCreateError.folder_name_already_used = TeamFolderCreateError("folder_name_already_used") +TeamFolderCreateError.folder_name_reserved = TeamFolderCreateError("folder_name_reserved") +TeamFolderCreateError.folder_count_limit_exceeded = TeamFolderCreateError( + "folder_count_limit_exceeded" +) +TeamFolderCreateError.other = TeamFolderCreateError("other") TeamFolderGetInfoItem._id_not_found_validator = bv.String() TeamFolderGetInfoItem._team_folder_metadata_validator = TeamFolderMetadata_validator TeamFolderGetInfoItem._tagmap = { - 'id_not_found': TeamFolderGetInfoItem._id_not_found_validator, - 'team_folder_metadata': TeamFolderGetInfoItem._team_folder_metadata_validator, + "id_not_found": TeamFolderGetInfoItem._id_not_found_validator, + "team_folder_metadata": TeamFolderGetInfoItem._team_folder_metadata_validator, } -TeamFolderIdListArg.team_folder_ids.validator = bv.List(common.SharedFolderId_validator, min_items=1) -TeamFolderIdListArg._all_field_names_ = set(['team_folder_ids']) -TeamFolderIdListArg._all_fields_ = [('team_folder_ids', TeamFolderIdListArg.team_folder_ids.validator)] +TeamFolderIdListArg.team_folder_ids.validator = bv.List( + common.SharedFolderId_validator, min_items=1 +) +TeamFolderIdListArg._all_field_names_ = set(["team_folder_ids"]) +TeamFolderIdListArg._all_fields_ = [ + ("team_folder_ids", TeamFolderIdListArg.team_folder_ids.validator) +] TeamFolderInvalidStatusError._active_validator = bv.Void() TeamFolderInvalidStatusError._archived_validator = bv.Void() TeamFolderInvalidStatusError._archive_in_progress_validator = bv.Void() TeamFolderInvalidStatusError._other_validator = bv.Void() TeamFolderInvalidStatusError._tagmap = { - 'active': TeamFolderInvalidStatusError._active_validator, - 'archived': TeamFolderInvalidStatusError._archived_validator, - 'archive_in_progress': TeamFolderInvalidStatusError._archive_in_progress_validator, - 'other': TeamFolderInvalidStatusError._other_validator, + "active": TeamFolderInvalidStatusError._active_validator, + "archived": TeamFolderInvalidStatusError._archived_validator, + "archive_in_progress": TeamFolderInvalidStatusError._archive_in_progress_validator, + "other": TeamFolderInvalidStatusError._other_validator, } -TeamFolderInvalidStatusError.active = TeamFolderInvalidStatusError('active') -TeamFolderInvalidStatusError.archived = TeamFolderInvalidStatusError('archived') -TeamFolderInvalidStatusError.archive_in_progress = TeamFolderInvalidStatusError('archive_in_progress') -TeamFolderInvalidStatusError.other = TeamFolderInvalidStatusError('other') +TeamFolderInvalidStatusError.active = TeamFolderInvalidStatusError("active") +TeamFolderInvalidStatusError.archived = TeamFolderInvalidStatusError("archived") +TeamFolderInvalidStatusError.archive_in_progress = TeamFolderInvalidStatusError( + "archive_in_progress" +) +TeamFolderInvalidStatusError.other = TeamFolderInvalidStatusError("other") TeamFolderListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -TeamFolderListArg._all_field_names_ = set(['limit']) -TeamFolderListArg._all_fields_ = [('limit', TeamFolderListArg.limit.validator)] +TeamFolderListArg._all_field_names_ = set(["limit"]) +TeamFolderListArg._all_fields_ = [("limit", TeamFolderListArg.limit.validator)] TeamFolderListContinueArg.cursor.validator = bv.String() -TeamFolderListContinueArg._all_field_names_ = set(['cursor']) -TeamFolderListContinueArg._all_fields_ = [('cursor', TeamFolderListContinueArg.cursor.validator)] +TeamFolderListContinueArg._all_field_names_ = set(["cursor"]) +TeamFolderListContinueArg._all_fields_ = [("cursor", TeamFolderListContinueArg.cursor.validator)] TeamFolderListContinueError._invalid_cursor_validator = bv.Void() TeamFolderListContinueError._other_validator = bv.Void() TeamFolderListContinueError._tagmap = { - 'invalid_cursor': TeamFolderListContinueError._invalid_cursor_validator, - 'other': TeamFolderListContinueError._other_validator, + "invalid_cursor": TeamFolderListContinueError._invalid_cursor_validator, + "other": TeamFolderListContinueError._other_validator, } -TeamFolderListContinueError.invalid_cursor = TeamFolderListContinueError('invalid_cursor') -TeamFolderListContinueError.other = TeamFolderListContinueError('other') +TeamFolderListContinueError.invalid_cursor = TeamFolderListContinueError("invalid_cursor") +TeamFolderListContinueError.other = TeamFolderListContinueError("other") TeamFolderListError.access_error.validator = TeamFolderAccessError_validator -TeamFolderListError._all_field_names_ = set(['access_error']) -TeamFolderListError._all_fields_ = [('access_error', TeamFolderListError.access_error.validator)] +TeamFolderListError._all_field_names_ = set(["access_error"]) +TeamFolderListError._all_fields_ = [("access_error", TeamFolderListError.access_error.validator)] TeamFolderListResult.team_folders.validator = bv.List(TeamFolderMetadata_validator) TeamFolderListResult.cursor.validator = bv.String() TeamFolderListResult.has_more.validator = bv.Boolean() -TeamFolderListResult._all_field_names_ = set([ - 'team_folders', - 'cursor', - 'has_more', -]) +TeamFolderListResult._all_field_names_ = set( + [ + "team_folders", + "cursor", + "has_more", + ] +) TeamFolderListResult._all_fields_ = [ - ('team_folders', TeamFolderListResult.team_folders.validator), - ('cursor', TeamFolderListResult.cursor.validator), - ('has_more', TeamFolderListResult.has_more.validator), + ("team_folders", TeamFolderListResult.team_folders.validator), + ("cursor", TeamFolderListResult.cursor.validator), + ("has_more", TeamFolderListResult.has_more.validator), ] TeamFolderMetadata.team_folder_id.validator = common.SharedFolderId_validator @@ -17235,49 +18565,51 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderMetadata.sync_setting.validator = files.SyncSetting_validator TeamFolderMetadata.content_sync_settings.validator = bv.List(files.ContentSyncSetting_validator) TeamFolderMetadata.quota_limit.validator = bv.Int64() -TeamFolderMetadata._all_field_names_ = set([ - 'team_folder_id', - 'name', - 'status', - 'is_team_shared_dropbox', - 'sync_setting', - 'content_sync_settings', - 'quota_limit', -]) +TeamFolderMetadata._all_field_names_ = set( + [ + "team_folder_id", + "name", + "status", + "is_team_shared_dropbox", + "sync_setting", + "content_sync_settings", + "quota_limit", + ] +) TeamFolderMetadata._all_fields_ = [ - ('team_folder_id', TeamFolderMetadata.team_folder_id.validator), - ('name', TeamFolderMetadata.name.validator), - ('status', TeamFolderMetadata.status.validator), - ('is_team_shared_dropbox', TeamFolderMetadata.is_team_shared_dropbox.validator), - ('sync_setting', TeamFolderMetadata.sync_setting.validator), - ('content_sync_settings', TeamFolderMetadata.content_sync_settings.validator), - ('quota_limit', TeamFolderMetadata.quota_limit.validator), + ("team_folder_id", TeamFolderMetadata.team_folder_id.validator), + ("name", TeamFolderMetadata.name.validator), + ("status", TeamFolderMetadata.status.validator), + ("is_team_shared_dropbox", TeamFolderMetadata.is_team_shared_dropbox.validator), + ("sync_setting", TeamFolderMetadata.sync_setting.validator), + ("content_sync_settings", TeamFolderMetadata.content_sync_settings.validator), + ("quota_limit", TeamFolderMetadata.quota_limit.validator), ] -TeamFolderPermanentlyDeleteError._tagmap = { -} +TeamFolderPermanentlyDeleteError._tagmap = {} TeamFolderPermanentlyDeleteError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderRenameArg.name.validator = bv.String() -TeamFolderRenameArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union(set(['name'])) -TeamFolderRenameArg._all_fields_ = TeamFolderIdArg._all_fields_ + [('name', TeamFolderRenameArg.name.validator)] +TeamFolderRenameArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union(set(["name"])) +TeamFolderRenameArg._all_fields_ = TeamFolderIdArg._all_fields_ + [ + ("name", TeamFolderRenameArg.name.validator) +] TeamFolderRenameError._invalid_folder_name_validator = bv.Void() TeamFolderRenameError._folder_name_already_used_validator = bv.Void() TeamFolderRenameError._folder_name_reserved_validator = bv.Void() TeamFolderRenameError._tagmap = { - 'invalid_folder_name': TeamFolderRenameError._invalid_folder_name_validator, - 'folder_name_already_used': TeamFolderRenameError._folder_name_already_used_validator, - 'folder_name_reserved': TeamFolderRenameError._folder_name_reserved_validator, + "invalid_folder_name": TeamFolderRenameError._invalid_folder_name_validator, + "folder_name_already_used": TeamFolderRenameError._folder_name_already_used_validator, + "folder_name_reserved": TeamFolderRenameError._folder_name_reserved_validator, } TeamFolderRenameError._tagmap.update(BaseTeamFolderError._tagmap) -TeamFolderRenameError.invalid_folder_name = TeamFolderRenameError('invalid_folder_name') -TeamFolderRenameError.folder_name_already_used = TeamFolderRenameError('folder_name_already_used') -TeamFolderRenameError.folder_name_reserved = TeamFolderRenameError('folder_name_reserved') +TeamFolderRenameError.invalid_folder_name = TeamFolderRenameError("invalid_folder_name") +TeamFolderRenameError.folder_name_already_used = TeamFolderRenameError("folder_name_already_used") +TeamFolderRenameError.folder_name_reserved = TeamFolderRenameError("folder_name_reserved") -TeamFolderRestoreError._tagmap = { -} +TeamFolderRestoreError._tagmap = {} TeamFolderRestoreError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderStatus._active_validator = bv.Void() @@ -17286,43 +18618,52 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderStatus._inactive_validator = bv.Void() TeamFolderStatus._other_validator = bv.Void() TeamFolderStatus._tagmap = { - 'active': TeamFolderStatus._active_validator, - 'archived': TeamFolderStatus._archived_validator, - 'archive_in_progress': TeamFolderStatus._archive_in_progress_validator, - 'inactive': TeamFolderStatus._inactive_validator, - 'other': TeamFolderStatus._other_validator, + "active": TeamFolderStatus._active_validator, + "archived": TeamFolderStatus._archived_validator, + "archive_in_progress": TeamFolderStatus._archive_in_progress_validator, + "inactive": TeamFolderStatus._inactive_validator, + "other": TeamFolderStatus._other_validator, } -TeamFolderStatus.active = TeamFolderStatus('active') -TeamFolderStatus.archived = TeamFolderStatus('archived') -TeamFolderStatus.archive_in_progress = TeamFolderStatus('archive_in_progress') -TeamFolderStatus.inactive = TeamFolderStatus('inactive') -TeamFolderStatus.other = TeamFolderStatus('other') +TeamFolderStatus.active = TeamFolderStatus("active") +TeamFolderStatus.archived = TeamFolderStatus("archived") +TeamFolderStatus.archive_in_progress = TeamFolderStatus("archive_in_progress") +TeamFolderStatus.inactive = TeamFolderStatus("inactive") +TeamFolderStatus.other = TeamFolderStatus("other") TeamFolderTeamSharedDropboxError._disallowed_validator = bv.Void() TeamFolderTeamSharedDropboxError._other_validator = bv.Void() TeamFolderTeamSharedDropboxError._tagmap = { - 'disallowed': TeamFolderTeamSharedDropboxError._disallowed_validator, - 'other': TeamFolderTeamSharedDropboxError._other_validator, + "disallowed": TeamFolderTeamSharedDropboxError._disallowed_validator, + "other": TeamFolderTeamSharedDropboxError._other_validator, } -TeamFolderTeamSharedDropboxError.disallowed = TeamFolderTeamSharedDropboxError('disallowed') -TeamFolderTeamSharedDropboxError.other = TeamFolderTeamSharedDropboxError('other') +TeamFolderTeamSharedDropboxError.disallowed = TeamFolderTeamSharedDropboxError("disallowed") +TeamFolderTeamSharedDropboxError.other = TeamFolderTeamSharedDropboxError("other") TeamFolderUpdateSyncSettingsArg.sync_setting.validator = bv.Nullable(files.SyncSettingArg_validator) -TeamFolderUpdateSyncSettingsArg.content_sync_settings.validator = bv.Nullable(bv.List(files.ContentSyncSettingArg_validator)) -TeamFolderUpdateSyncSettingsArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union(set([ - 'sync_setting', - 'content_sync_settings', -])) +TeamFolderUpdateSyncSettingsArg.content_sync_settings.validator = bv.Nullable( + bv.List(files.ContentSyncSettingArg_validator) +) +TeamFolderUpdateSyncSettingsArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union( + set( + [ + "sync_setting", + "content_sync_settings", + ] + ) +) TeamFolderUpdateSyncSettingsArg._all_fields_ = TeamFolderIdArg._all_fields_ + [ - ('sync_setting', TeamFolderUpdateSyncSettingsArg.sync_setting.validator), - ('content_sync_settings', TeamFolderUpdateSyncSettingsArg.content_sync_settings.validator), + ("sync_setting", TeamFolderUpdateSyncSettingsArg.sync_setting.validator), + ( + "content_sync_settings", + TeamFolderUpdateSyncSettingsArg.content_sync_settings.validator, + ), ] TeamFolderUpdateSyncSettingsError._sync_settings_error_validator = files.SyncSettingsError_validator TeamFolderUpdateSyncSettingsError._tagmap = { - 'sync_settings_error': TeamFolderUpdateSyncSettingsError._sync_settings_error_validator, + "sync_settings_error": TeamFolderUpdateSyncSettingsError._sync_settings_error_validator, } TeamFolderUpdateSyncSettingsError._tagmap.update(BaseTeamFolderError._tagmap) @@ -17332,75 +18673,89 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamGetInfoResult.num_provisioned_users.validator = bv.UInt32() TeamGetInfoResult.num_used_licenses.validator = bv.UInt32() TeamGetInfoResult.policies.validator = team_policies.TeamMemberPolicies_validator -TeamGetInfoResult._all_field_names_ = set([ - 'name', - 'team_id', - 'num_licensed_users', - 'num_provisioned_users', - 'num_used_licenses', - 'policies', -]) +TeamGetInfoResult._all_field_names_ = set( + [ + "name", + "team_id", + "num_licensed_users", + "num_provisioned_users", + "num_used_licenses", + "policies", + ] +) TeamGetInfoResult._all_fields_ = [ - ('name', TeamGetInfoResult.name.validator), - ('team_id', TeamGetInfoResult.team_id.validator), - ('num_licensed_users', TeamGetInfoResult.num_licensed_users.validator), - ('num_provisioned_users', TeamGetInfoResult.num_provisioned_users.validator), - ('num_used_licenses', TeamGetInfoResult.num_used_licenses.validator), - ('policies', TeamGetInfoResult.policies.validator), + ("name", TeamGetInfoResult.name.validator), + ("team_id", TeamGetInfoResult.team_id.validator), + ("num_licensed_users", TeamGetInfoResult.num_licensed_users.validator), + ("num_provisioned_users", TeamGetInfoResult.num_provisioned_users.validator), + ("num_used_licenses", TeamGetInfoResult.num_used_licenses.validator), + ("policies", TeamGetInfoResult.policies.validator), ] TeamMemberInfo.profile.validator = TeamMemberProfile_validator TeamMemberInfo.role.validator = AdminTier_validator -TeamMemberInfo._all_field_names_ = set([ - 'profile', - 'role', -]) +TeamMemberInfo._all_field_names_ = set( + [ + "profile", + "role", + ] +) TeamMemberInfo._all_fields_ = [ - ('profile', TeamMemberInfo.profile.validator), - ('role', TeamMemberInfo.role.validator), + ("profile", TeamMemberInfo.profile.validator), + ("role", TeamMemberInfo.role.validator), ] TeamMemberInfoV2.profile.validator = TeamMemberProfile_validator TeamMemberInfoV2.roles.validator = bv.Nullable(bv.List(TeamMemberRole_validator)) -TeamMemberInfoV2._all_field_names_ = set([ - 'profile', - 'roles', -]) +TeamMemberInfoV2._all_field_names_ = set( + [ + "profile", + "roles", + ] +) TeamMemberInfoV2._all_fields_ = [ - ('profile', TeamMemberInfoV2.profile.validator), - ('roles', TeamMemberInfoV2.roles.validator), + ("profile", TeamMemberInfoV2.profile.validator), + ("roles", TeamMemberInfoV2.roles.validator), ] TeamMemberInfoV2Result.member_info.validator = TeamMemberInfoV2_validator -TeamMemberInfoV2Result._all_field_names_ = set(['member_info']) -TeamMemberInfoV2Result._all_fields_ = [('member_info', TeamMemberInfoV2Result.member_info.validator)] +TeamMemberInfoV2Result._all_field_names_ = set(["member_info"]) +TeamMemberInfoV2Result._all_fields_ = [ + ("member_info", TeamMemberInfoV2Result.member_info.validator) +] TeamMemberProfile.groups.validator = bv.List(team_common.GroupId_validator) TeamMemberProfile.member_folder_id.validator = common.NamespaceId_validator TeamMemberProfile.root_folder_id.validator = common.NamespaceId_validator -TeamMemberProfile._all_field_names_ = MemberProfile._all_field_names_.union(set([ - 'groups', - 'member_folder_id', - 'root_folder_id', -])) +TeamMemberProfile._all_field_names_ = MemberProfile._all_field_names_.union( + set( + [ + "groups", + "member_folder_id", + "root_folder_id", + ] + ) +) TeamMemberProfile._all_fields_ = MemberProfile._all_fields_ + [ - ('groups', TeamMemberProfile.groups.validator), - ('member_folder_id', TeamMemberProfile.member_folder_id.validator), - ('root_folder_id', TeamMemberProfile.root_folder_id.validator), + ("groups", TeamMemberProfile.groups.validator), + ("member_folder_id", TeamMemberProfile.member_folder_id.validator), + ("root_folder_id", TeamMemberProfile.root_folder_id.validator), ] TeamMemberRole.role_id.validator = TeamMemberRoleId_validator TeamMemberRole.name.validator = bv.String(max_length=32) TeamMemberRole.description.validator = bv.String(max_length=256) -TeamMemberRole._all_field_names_ = set([ - 'role_id', - 'name', - 'description', -]) +TeamMemberRole._all_field_names_ = set( + [ + "role_id", + "name", + "description", + ] +) TeamMemberRole._all_fields_ = [ - ('role_id', TeamMemberRole.role_id.validator), - ('name', TeamMemberRole.name.validator), - ('description', TeamMemberRole.description.validator), + ("role_id", TeamMemberRole.role_id.validator), + ("name", TeamMemberRole.name.validator), + ("description", TeamMemberRole.description.validator), ] TeamMemberStatus._active_validator = bv.Void() @@ -17408,64 +18763,68 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMemberStatus._suspended_validator = bv.Void() TeamMemberStatus._removed_validator = RemovedStatus_validator TeamMemberStatus._tagmap = { - 'active': TeamMemberStatus._active_validator, - 'invited': TeamMemberStatus._invited_validator, - 'suspended': TeamMemberStatus._suspended_validator, - 'removed': TeamMemberStatus._removed_validator, + "active": TeamMemberStatus._active_validator, + "invited": TeamMemberStatus._invited_validator, + "suspended": TeamMemberStatus._suspended_validator, + "removed": TeamMemberStatus._removed_validator, } -TeamMemberStatus.active = TeamMemberStatus('active') -TeamMemberStatus.invited = TeamMemberStatus('invited') -TeamMemberStatus.suspended = TeamMemberStatus('suspended') +TeamMemberStatus.active = TeamMemberStatus("active") +TeamMemberStatus.invited = TeamMemberStatus("invited") +TeamMemberStatus.suspended = TeamMemberStatus("suspended") TeamMembershipType._full_validator = bv.Void() TeamMembershipType._limited_validator = bv.Void() TeamMembershipType._tagmap = { - 'full': TeamMembershipType._full_validator, - 'limited': TeamMembershipType._limited_validator, + "full": TeamMembershipType._full_validator, + "limited": TeamMembershipType._limited_validator, } -TeamMembershipType.full = TeamMembershipType('full') -TeamMembershipType.limited = TeamMembershipType('limited') +TeamMembershipType.full = TeamMembershipType("full") +TeamMembershipType.limited = TeamMembershipType("limited") TeamNamespacesListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -TeamNamespacesListArg._all_field_names_ = set(['limit']) -TeamNamespacesListArg._all_fields_ = [('limit', TeamNamespacesListArg.limit.validator)] +TeamNamespacesListArg._all_field_names_ = set(["limit"]) +TeamNamespacesListArg._all_fields_ = [("limit", TeamNamespacesListArg.limit.validator)] TeamNamespacesListContinueArg.cursor.validator = bv.String() -TeamNamespacesListContinueArg._all_field_names_ = set(['cursor']) -TeamNamespacesListContinueArg._all_fields_ = [('cursor', TeamNamespacesListContinueArg.cursor.validator)] +TeamNamespacesListContinueArg._all_field_names_ = set(["cursor"]) +TeamNamespacesListContinueArg._all_fields_ = [ + ("cursor", TeamNamespacesListContinueArg.cursor.validator) +] TeamNamespacesListError._invalid_arg_validator = bv.Void() TeamNamespacesListError._other_validator = bv.Void() TeamNamespacesListError._tagmap = { - 'invalid_arg': TeamNamespacesListError._invalid_arg_validator, - 'other': TeamNamespacesListError._other_validator, + "invalid_arg": TeamNamespacesListError._invalid_arg_validator, + "other": TeamNamespacesListError._other_validator, } -TeamNamespacesListError.invalid_arg = TeamNamespacesListError('invalid_arg') -TeamNamespacesListError.other = TeamNamespacesListError('other') +TeamNamespacesListError.invalid_arg = TeamNamespacesListError("invalid_arg") +TeamNamespacesListError.other = TeamNamespacesListError("other") TeamNamespacesListContinueError._invalid_cursor_validator = bv.Void() TeamNamespacesListContinueError._tagmap = { - 'invalid_cursor': TeamNamespacesListContinueError._invalid_cursor_validator, + "invalid_cursor": TeamNamespacesListContinueError._invalid_cursor_validator, } TeamNamespacesListContinueError._tagmap.update(TeamNamespacesListError._tagmap) -TeamNamespacesListContinueError.invalid_cursor = TeamNamespacesListContinueError('invalid_cursor') +TeamNamespacesListContinueError.invalid_cursor = TeamNamespacesListContinueError("invalid_cursor") TeamNamespacesListResult.namespaces.validator = bv.List(NamespaceMetadata_validator) TeamNamespacesListResult.cursor.validator = bv.String() TeamNamespacesListResult.has_more.validator = bv.Boolean() -TeamNamespacesListResult._all_field_names_ = set([ - 'namespaces', - 'cursor', - 'has_more', -]) +TeamNamespacesListResult._all_field_names_ = set( + [ + "namespaces", + "cursor", + "has_more", + ] +) TeamNamespacesListResult._all_fields_ = [ - ('namespaces', TeamNamespacesListResult.namespaces.validator), - ('cursor', TeamNamespacesListResult.cursor.validator), - ('has_more', TeamNamespacesListResult.has_more.validator), + ("namespaces", TeamNamespacesListResult.namespaces.validator), + ("cursor", TeamNamespacesListResult.cursor.validator), + ("has_more", TeamNamespacesListResult.has_more.validator), ] TeamReportFailureReason._temporary_error_validator = bv.Void() @@ -17473,45 +18832,51 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamReportFailureReason._too_much_data_validator = bv.Void() TeamReportFailureReason._other_validator = bv.Void() TeamReportFailureReason._tagmap = { - 'temporary_error': TeamReportFailureReason._temporary_error_validator, - 'many_reports_at_once': TeamReportFailureReason._many_reports_at_once_validator, - 'too_much_data': TeamReportFailureReason._too_much_data_validator, - 'other': TeamReportFailureReason._other_validator, + "temporary_error": TeamReportFailureReason._temporary_error_validator, + "many_reports_at_once": TeamReportFailureReason._many_reports_at_once_validator, + "too_much_data": TeamReportFailureReason._too_much_data_validator, + "other": TeamReportFailureReason._other_validator, } -TeamReportFailureReason.temporary_error = TeamReportFailureReason('temporary_error') -TeamReportFailureReason.many_reports_at_once = TeamReportFailureReason('many_reports_at_once') -TeamReportFailureReason.too_much_data = TeamReportFailureReason('too_much_data') -TeamReportFailureReason.other = TeamReportFailureReason('other') +TeamReportFailureReason.temporary_error = TeamReportFailureReason("temporary_error") +TeamReportFailureReason.many_reports_at_once = TeamReportFailureReason("many_reports_at_once") +TeamReportFailureReason.too_much_data = TeamReportFailureReason("too_much_data") +TeamReportFailureReason.other = TeamReportFailureReason("other") TokenGetAuthenticatedAdminError._mapping_not_found_validator = bv.Void() TokenGetAuthenticatedAdminError._admin_not_active_validator = bv.Void() TokenGetAuthenticatedAdminError._other_validator = bv.Void() TokenGetAuthenticatedAdminError._tagmap = { - 'mapping_not_found': TokenGetAuthenticatedAdminError._mapping_not_found_validator, - 'admin_not_active': TokenGetAuthenticatedAdminError._admin_not_active_validator, - 'other': TokenGetAuthenticatedAdminError._other_validator, + "mapping_not_found": TokenGetAuthenticatedAdminError._mapping_not_found_validator, + "admin_not_active": TokenGetAuthenticatedAdminError._admin_not_active_validator, + "other": TokenGetAuthenticatedAdminError._other_validator, } -TokenGetAuthenticatedAdminError.mapping_not_found = TokenGetAuthenticatedAdminError('mapping_not_found') -TokenGetAuthenticatedAdminError.admin_not_active = TokenGetAuthenticatedAdminError('admin_not_active') -TokenGetAuthenticatedAdminError.other = TokenGetAuthenticatedAdminError('other') +TokenGetAuthenticatedAdminError.mapping_not_found = TokenGetAuthenticatedAdminError( + "mapping_not_found" +) +TokenGetAuthenticatedAdminError.admin_not_active = TokenGetAuthenticatedAdminError( + "admin_not_active" +) +TokenGetAuthenticatedAdminError.other = TokenGetAuthenticatedAdminError("other") TokenGetAuthenticatedAdminResult.admin_profile.validator = TeamMemberProfile_validator -TokenGetAuthenticatedAdminResult._all_field_names_ = set(['admin_profile']) -TokenGetAuthenticatedAdminResult._all_fields_ = [('admin_profile', TokenGetAuthenticatedAdminResult.admin_profile.validator)] +TokenGetAuthenticatedAdminResult._all_field_names_ = set(["admin_profile"]) +TokenGetAuthenticatedAdminResult._all_fields_ = [ + ("admin_profile", TokenGetAuthenticatedAdminResult.admin_profile.validator) +] UploadApiRateLimitValue._unlimited_validator = bv.Void() UploadApiRateLimitValue._limit_validator = bv.UInt32() UploadApiRateLimitValue._other_validator = bv.Void() UploadApiRateLimitValue._tagmap = { - 'unlimited': UploadApiRateLimitValue._unlimited_validator, - 'limit': UploadApiRateLimitValue._limit_validator, - 'other': UploadApiRateLimitValue._other_validator, + "unlimited": UploadApiRateLimitValue._unlimited_validator, + "limit": UploadApiRateLimitValue._limit_validator, + "other": UploadApiRateLimitValue._other_validator, } -UploadApiRateLimitValue.unlimited = UploadApiRateLimitValue('unlimited') -UploadApiRateLimitValue.other = UploadApiRateLimitValue('other') +UploadApiRateLimitValue.unlimited = UploadApiRateLimitValue("unlimited") +UploadApiRateLimitValue.other = UploadApiRateLimitValue("other") UserAddResult._success_validator = UserSecondaryEmailsResult_validator UserAddResult._invalid_user_validator = UserSelectorArg_validator @@ -17519,119 +18884,131 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserAddResult._placeholder_user_validator = UserSelectorArg_validator UserAddResult._other_validator = bv.Void() UserAddResult._tagmap = { - 'success': UserAddResult._success_validator, - 'invalid_user': UserAddResult._invalid_user_validator, - 'unverified': UserAddResult._unverified_validator, - 'placeholder_user': UserAddResult._placeholder_user_validator, - 'other': UserAddResult._other_validator, + "success": UserAddResult._success_validator, + "invalid_user": UserAddResult._invalid_user_validator, + "unverified": UserAddResult._unverified_validator, + "placeholder_user": UserAddResult._placeholder_user_validator, + "other": UserAddResult._other_validator, } -UserAddResult.other = UserAddResult('other') +UserAddResult.other = UserAddResult("other") UserCustomQuotaArg.user.validator = UserSelectorArg_validator UserCustomQuotaArg.quota_gb.validator = UserQuota_validator -UserCustomQuotaArg._all_field_names_ = set([ - 'user', - 'quota_gb', -]) +UserCustomQuotaArg._all_field_names_ = set( + [ + "user", + "quota_gb", + ] +) UserCustomQuotaArg._all_fields_ = [ - ('user', UserCustomQuotaArg.user.validator), - ('quota_gb', UserCustomQuotaArg.quota_gb.validator), + ("user", UserCustomQuotaArg.user.validator), + ("quota_gb", UserCustomQuotaArg.quota_gb.validator), ] UserCustomQuotaResult.user.validator = UserSelectorArg_validator UserCustomQuotaResult.quota_gb.validator = bv.Nullable(UserQuota_validator) -UserCustomQuotaResult._all_field_names_ = set([ - 'user', - 'quota_gb', -]) +UserCustomQuotaResult._all_field_names_ = set( + [ + "user", + "quota_gb", + ] +) UserCustomQuotaResult._all_fields_ = [ - ('user', UserCustomQuotaResult.user.validator), - ('quota_gb', UserCustomQuotaResult.quota_gb.validator), + ("user", UserCustomQuotaResult.user.validator), + ("quota_gb", UserCustomQuotaResult.quota_gb.validator), ] UserDeleteEmailsResult.user.validator = UserSelectorArg_validator UserDeleteEmailsResult.results.validator = bv.List(DeleteSecondaryEmailResult_validator) -UserDeleteEmailsResult._all_field_names_ = set([ - 'user', - 'results', -]) +UserDeleteEmailsResult._all_field_names_ = set( + [ + "user", + "results", + ] +) UserDeleteEmailsResult._all_fields_ = [ - ('user', UserDeleteEmailsResult.user.validator), - ('results', UserDeleteEmailsResult.results.validator), + ("user", UserDeleteEmailsResult.user.validator), + ("results", UserDeleteEmailsResult.results.validator), ] UserDeleteResult._success_validator = UserDeleteEmailsResult_validator UserDeleteResult._invalid_user_validator = UserSelectorArg_validator UserDeleteResult._other_validator = bv.Void() UserDeleteResult._tagmap = { - 'success': UserDeleteResult._success_validator, - 'invalid_user': UserDeleteResult._invalid_user_validator, - 'other': UserDeleteResult._other_validator, + "success": UserDeleteResult._success_validator, + "invalid_user": UserDeleteResult._invalid_user_validator, + "other": UserDeleteResult._other_validator, } -UserDeleteResult.other = UserDeleteResult('other') +UserDeleteResult.other = UserDeleteResult("other") UserResendEmailsResult.user.validator = UserSelectorArg_validator UserResendEmailsResult.results.validator = bv.List(ResendSecondaryEmailResult_validator) -UserResendEmailsResult._all_field_names_ = set([ - 'user', - 'results', -]) +UserResendEmailsResult._all_field_names_ = set( + [ + "user", + "results", + ] +) UserResendEmailsResult._all_fields_ = [ - ('user', UserResendEmailsResult.user.validator), - ('results', UserResendEmailsResult.results.validator), + ("user", UserResendEmailsResult.user.validator), + ("results", UserResendEmailsResult.results.validator), ] UserResendResult._success_validator = UserResendEmailsResult_validator UserResendResult._invalid_user_validator = UserSelectorArg_validator UserResendResult._other_validator = bv.Void() UserResendResult._tagmap = { - 'success': UserResendResult._success_validator, - 'invalid_user': UserResendResult._invalid_user_validator, - 'other': UserResendResult._other_validator, + "success": UserResendResult._success_validator, + "invalid_user": UserResendResult._invalid_user_validator, + "other": UserResendResult._other_validator, } -UserResendResult.other = UserResendResult('other') +UserResendResult.other = UserResendResult("other") UserSecondaryEmailsArg.user.validator = UserSelectorArg_validator UserSecondaryEmailsArg.secondary_emails.validator = bv.List(common.EmailAddress_validator) -UserSecondaryEmailsArg._all_field_names_ = set([ - 'user', - 'secondary_emails', -]) +UserSecondaryEmailsArg._all_field_names_ = set( + [ + "user", + "secondary_emails", + ] +) UserSecondaryEmailsArg._all_fields_ = [ - ('user', UserSecondaryEmailsArg.user.validator), - ('secondary_emails', UserSecondaryEmailsArg.secondary_emails.validator), + ("user", UserSecondaryEmailsArg.user.validator), + ("secondary_emails", UserSecondaryEmailsArg.secondary_emails.validator), ] UserSecondaryEmailsResult.user.validator = UserSelectorArg_validator UserSecondaryEmailsResult.results.validator = bv.List(AddSecondaryEmailResult_validator) -UserSecondaryEmailsResult._all_field_names_ = set([ - 'user', - 'results', -]) +UserSecondaryEmailsResult._all_field_names_ = set( + [ + "user", + "results", + ] +) UserSecondaryEmailsResult._all_fields_ = [ - ('user', UserSecondaryEmailsResult.user.validator), - ('results', UserSecondaryEmailsResult.results.validator), + ("user", UserSecondaryEmailsResult.user.validator), + ("results", UserSecondaryEmailsResult.results.validator), ] UserSelectorArg._team_member_id_validator = team_common.TeamMemberId_validator UserSelectorArg._external_id_validator = team_common.MemberExternalId_validator UserSelectorArg._email_validator = common.EmailAddress_validator UserSelectorArg._tagmap = { - 'team_member_id': UserSelectorArg._team_member_id_validator, - 'external_id': UserSelectorArg._external_id_validator, - 'email': UserSelectorArg._email_validator, + "team_member_id": UserSelectorArg._team_member_id_validator, + "external_id": UserSelectorArg._external_id_validator, + "email": UserSelectorArg._email_validator, } UsersSelectorArg._team_member_ids_validator = bv.List(team_common.TeamMemberId_validator) UsersSelectorArg._external_ids_validator = bv.List(team_common.MemberExternalId_validator) UsersSelectorArg._emails_validator = bv.List(common.EmailAddress_validator) UsersSelectorArg._tagmap = { - 'team_member_ids': UsersSelectorArg._team_member_ids_validator, - 'external_ids': UsersSelectorArg._external_ids_validator, - 'emails': UsersSelectorArg._emails_validator, + "team_member_ids": UsersSelectorArg._team_member_ids_validator, + "external_ids": UsersSelectorArg._external_ids_validator, + "emails": UsersSelectorArg._emails_validator, } ExcludedUsersListArg.limit.default = 1000 @@ -17663,7 +19040,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RevokeDesktopClientArg.delete_on_unlink.default = False RevokeLinkedApiAppArg.keep_app_folder.default = True SharingAllowlistListArg.limit.default = 1000 -SharingAllowlistListResponse.cursor.default = '' +SharingAllowlistListResponse.cursor.default = "" SharingAllowlistListResponse.has_more.default = False TeamFolderArchiveArg.force_async_off.default = False TeamFolderListArg.limit.default = 1000 @@ -17671,1122 +19048,935 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamGetInfoResult.num_used_licenses.default = 0 TeamNamespacesListArg.limit.default = 1000 devices_list_member_devices = bb.Route( - 'devices/list_member_devices', + "devices/list_member_devices", 1, False, ListMemberDevicesArg_validator, ListMemberDevicesResult_validator, ListMemberDevicesError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) devices_list_members_devices = bb.Route( - 'devices/list_members_devices', + "devices/list_members_devices", 1, False, ListMembersDevicesArg_validator, ListMembersDevicesResult_validator, ListMembersDevicesError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) devices_list_team_devices = bb.Route( - 'devices/list_team_devices', + "devices/list_team_devices", 1, True, ListTeamDevicesArg_validator, ListTeamDevicesResult_validator, ListTeamDevicesError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) devices_revoke_device_session = bb.Route( - 'devices/revoke_device_session', + "devices/revoke_device_session", 1, False, RevokeDeviceSessionArg_validator, bv.Void(), RevokeDeviceSessionError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) devices_revoke_device_session_batch = bb.Route( - 'devices/revoke_device_session_batch', + "devices/revoke_device_session_batch", 1, False, RevokeDeviceSessionBatchArg_validator, RevokeDeviceSessionBatchResult_validator, RevokeDeviceSessionBatchError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) features_get_values = bb.Route( - 'features/get_values', + "features/get_values", 1, False, FeaturesGetValuesBatchArg_validator, FeaturesGetValuesBatchResult_validator, FeaturesGetValuesBatchError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) get_info = bb.Route( - 'get_info', + "get_info", 1, False, bv.Void(), TeamGetInfoResult_validator, bv.Void(), - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_create = bb.Route( - 'groups/create', + "groups/create", 1, False, GroupCreateArg_validator, GroupFullInfo_validator, GroupCreateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_delete = bb.Route( - 'groups/delete', + "groups/delete", 1, False, GroupSelector_validator, async_.LaunchEmptyResult_validator, GroupDeleteError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_get_info = bb.Route( - 'groups/get_info', + "groups/get_info", 1, False, GroupsSelector_validator, GroupsGetInfoResult_validator, GroupsGetInfoError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_job_status_get = bb.Route( - 'groups/job_status/get', + "groups/job_status/get", 1, False, async_.PollArg_validator, async_.PollEmptyResult_validator, GroupsPollError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_list = bb.Route( - 'groups/list', + "groups/list", 1, False, GroupsListArg_validator, GroupsListResult_validator, bv.Void(), - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_list_continue = bb.Route( - 'groups/list/continue', + "groups/list/continue", 1, False, GroupsListContinueArg_validator, GroupsListResult_validator, GroupsListContinueError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_members_add = bb.Route( - 'groups/members/add', + "groups/members/add", 1, False, GroupMembersAddArg_validator, GroupMembersChangeResult_validator, GroupMembersAddError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_members_list = bb.Route( - 'groups/members/list', + "groups/members/list", 1, False, GroupsMembersListArg_validator, GroupsMembersListResult_validator, GroupSelectorError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_members_list_continue = bb.Route( - 'groups/members/list/continue', + "groups/members/list/continue", 1, False, GroupsMembersListContinueArg_validator, GroupsMembersListResult_validator, GroupsMembersListContinueError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_members_remove = bb.Route( - 'groups/members/remove', + "groups/members/remove", 1, False, GroupMembersRemoveArg_validator, GroupMembersChangeResult_validator, GroupMembersRemoveError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_members_set_access_type = bb.Route( - 'groups/members/set_access_type', + "groups/members/set_access_type", 1, False, GroupMembersSetAccessTypeArg_validator, GroupsGetInfoResult_validator, GroupMemberSetAccessTypeError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) groups_update = bb.Route( - 'groups/update', + "groups/update", 1, False, GroupUpdateArgs_validator, GroupFullInfo_validator, GroupUpdateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) legal_holds_create_policy = bb.Route( - 'legal_holds/create_policy', + "legal_holds/create_policy", 1, False, LegalHoldsPolicyCreateArg_validator, LegalHoldsPolicyCreateResult_validator, LegalHoldsPolicyCreateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) legal_holds_get_policy = bb.Route( - 'legal_holds/get_policy', + "legal_holds/get_policy", 1, False, LegalHoldsGetPolicyArg_validator, LegalHoldsGetPolicyResult_validator, LegalHoldsGetPolicyError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) legal_holds_list_held_revisions = bb.Route( - 'legal_holds/list_held_revisions', + "legal_holds/list_held_revisions", 1, False, LegalHoldsListHeldRevisionsArg_validator, LegalHoldsListHeldRevisionResult_validator, LegalHoldsListHeldRevisionsError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) legal_holds_list_held_revisions_continue = bb.Route( - 'legal_holds/list_held_revisions_continue', + "legal_holds/list_held_revisions_continue", 1, False, LegalHoldsListHeldRevisionsContinueArg_validator, LegalHoldsListHeldRevisionResult_validator, LegalHoldsListHeldRevisionsError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) legal_holds_list_policies = bb.Route( - 'legal_holds/list_policies', + "legal_holds/list_policies", 1, False, LegalHoldsListPoliciesArg_validator, LegalHoldsListPoliciesResult_validator, LegalHoldsListPoliciesError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) legal_holds_release_policy = bb.Route( - 'legal_holds/release_policy', + "legal_holds/release_policy", 1, False, LegalHoldsPolicyReleaseArg_validator, bv.Void(), LegalHoldsPolicyReleaseError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) legal_holds_update_policy = bb.Route( - 'legal_holds/update_policy', + "legal_holds/update_policy", 1, False, LegalHoldsPolicyUpdateArg_validator, LegalHoldsPolicyUpdateResult_validator, LegalHoldsPolicyUpdateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) linked_apps_list_member_linked_apps = bb.Route( - 'linked_apps/list_member_linked_apps', + "linked_apps/list_member_linked_apps", 1, False, ListMemberAppsArg_validator, ListMemberAppsResult_validator, ListMemberAppsError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) linked_apps_list_members_linked_apps = bb.Route( - 'linked_apps/list_members_linked_apps', + "linked_apps/list_members_linked_apps", 1, False, ListMembersAppsArg_validator, ListMembersAppsResult_validator, ListMembersAppsError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) linked_apps_list_team_linked_apps = bb.Route( - 'linked_apps/list_team_linked_apps', + "linked_apps/list_team_linked_apps", 1, True, ListTeamAppsArg_validator, ListTeamAppsResult_validator, ListTeamAppsError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) linked_apps_revoke_linked_app = bb.Route( - 'linked_apps/revoke_linked_app', + "linked_apps/revoke_linked_app", 1, False, RevokeLinkedApiAppArg_validator, bv.Void(), RevokeLinkedAppError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) linked_apps_revoke_linked_app_batch = bb.Route( - 'linked_apps/revoke_linked_app_batch', + "linked_apps/revoke_linked_app_batch", 1, False, RevokeLinkedApiAppBatchArg_validator, RevokeLinkedAppBatchResult_validator, RevokeLinkedAppBatchError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) member_space_limits_excluded_users_add = bb.Route( - 'member_space_limits/excluded_users/add', + "member_space_limits/excluded_users/add", 1, False, ExcludedUsersUpdateArg_validator, ExcludedUsersUpdateResult_validator, ExcludedUsersUpdateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) member_space_limits_excluded_users_list = bb.Route( - 'member_space_limits/excluded_users/list', + "member_space_limits/excluded_users/list", 1, False, ExcludedUsersListArg_validator, ExcludedUsersListResult_validator, ExcludedUsersListError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) member_space_limits_excluded_users_list_continue = bb.Route( - 'member_space_limits/excluded_users/list/continue', + "member_space_limits/excluded_users/list/continue", 1, False, ExcludedUsersListContinueArg_validator, ExcludedUsersListResult_validator, ExcludedUsersListContinueError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) member_space_limits_excluded_users_remove = bb.Route( - 'member_space_limits/excluded_users/remove', + "member_space_limits/excluded_users/remove", 1, False, ExcludedUsersUpdateArg_validator, ExcludedUsersUpdateResult_validator, ExcludedUsersUpdateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) member_space_limits_get_custom_quota = bb.Route( - 'member_space_limits/get_custom_quota', + "member_space_limits/get_custom_quota", 1, False, CustomQuotaUsersArg_validator, bv.List(CustomQuotaResult_validator), CustomQuotaError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) member_space_limits_remove_custom_quota = bb.Route( - 'member_space_limits/remove_custom_quota', + "member_space_limits/remove_custom_quota", 1, False, CustomQuotaUsersArg_validator, bv.List(RemoveCustomQuotaResult_validator), CustomQuotaError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) member_space_limits_set_custom_quota = bb.Route( - 'member_space_limits/set_custom_quota', + "member_space_limits/set_custom_quota", 1, False, SetCustomQuotaArg_validator, bv.List(CustomQuotaResult_validator), SetCustomQuotaError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_add = bb.Route( - 'members/add', + "members/add", 1, False, MembersAddArg_validator, MembersAddLaunch_validator, bv.Void(), - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_add_v2 = bb.Route( - 'members/add', + "members/add", 2, False, MembersAddV2Arg_validator, MembersAddLaunchV2Result_validator, bv.Void(), - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_add_job_status_get = bb.Route( - 'members/add/job_status/get', + "members/add/job_status/get", 1, False, async_.PollArg_validator, MembersAddJobStatus_validator, async_.PollError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_add_job_status_get_v2 = bb.Route( - 'members/add/job_status/get', + "members/add/job_status/get", 2, False, async_.PollArg_validator, MembersAddJobStatusV2Result_validator, async_.PollError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_delete_former_member_files = bb.Route( - 'members/delete_former_member_files', + "members/delete_former_member_files", 1, False, MembersFormerMemberArg_validator, bv.Void(), MembersDeleteFormerMemberFilesError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_delete_profile_photo = bb.Route( - 'members/delete_profile_photo', + "members/delete_profile_photo", 1, False, MembersDeleteProfilePhotoArg_validator, TeamMemberInfo_validator, MembersDeleteProfilePhotoError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_delete_profile_photo_v2 = bb.Route( - 'members/delete_profile_photo', + "members/delete_profile_photo", 2, False, MembersDeleteProfilePhotoArg_validator, TeamMemberInfoV2Result_validator, MembersDeleteProfilePhotoError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_get_available_team_member_roles = bb.Route( - 'members/get_available_team_member_roles', + "members/get_available_team_member_roles", 1, False, bv.Void(), MembersGetAvailableTeamMemberRolesResult_validator, bv.Void(), - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_get_info = bb.Route( - 'members/get_info', + "members/get_info", 1, False, MembersGetInfoArgs_validator, MembersGetInfoResult_validator, MembersGetInfoError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_get_info_v2 = bb.Route( - 'members/get_info', + "members/get_info", 2, False, MembersGetInfoV2Arg_validator, MembersGetInfoV2Result_validator, MembersGetInfoError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_list = bb.Route( - 'members/list', + "members/list", 1, False, MembersListArg_validator, MembersListResult_validator, MembersListError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_list_v2 = bb.Route( - 'members/list', + "members/list", 2, False, MembersListArg_validator, MembersListV2Result_validator, MembersListError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_list_continue = bb.Route( - 'members/list/continue', + "members/list/continue", 1, False, MembersListContinueArg_validator, MembersListResult_validator, MembersListContinueError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_list_continue_v2 = bb.Route( - 'members/list/continue', + "members/list/continue", 2, False, MembersListContinueArg_validator, MembersListV2Result_validator, MembersListContinueError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_move_former_member_files = bb.Route( - 'members/move_former_member_files', + "members/move_former_member_files", 1, False, MembersDataTransferArg_validator, async_.LaunchEmptyResult_validator, MembersTransferFormerMembersFilesError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_move_former_member_files_job_status_check = bb.Route( - 'members/move_former_member_files/job_status/check', + "members/move_former_member_files/job_status/check", 1, False, async_.PollArg_validator, async_.PollEmptyResult_validator, async_.PollError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_recover = bb.Route( - 'members/recover', + "members/recover", 1, False, MembersRecoverArg_validator, bv.Void(), MembersRecoverError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_remove = bb.Route( - 'members/remove', + "members/remove", 1, False, MembersRemoveArg_validator, async_.LaunchEmptyResult_validator, MembersRemoveError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_remove_job_status_get = bb.Route( - 'members/remove/job_status/get', + "members/remove/job_status/get", 1, False, async_.PollArg_validator, async_.PollEmptyResult_validator, async_.PollError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_secondary_emails_add = bb.Route( - 'members/secondary_emails/add', + "members/secondary_emails/add", 1, False, AddSecondaryEmailsArg_validator, AddSecondaryEmailsResult_validator, AddSecondaryEmailsError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_secondary_emails_delete = bb.Route( - 'members/secondary_emails/delete', + "members/secondary_emails/delete", 1, False, DeleteSecondaryEmailsArg_validator, DeleteSecondaryEmailsResult_validator, bv.Void(), - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_secondary_emails_resend_verification_emails = bb.Route( - 'members/secondary_emails/resend_verification_emails', + "members/secondary_emails/resend_verification_emails", 1, False, ResendVerificationEmailArg_validator, ResendVerificationEmailResult_validator, bv.Void(), - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_send_welcome_email = bb.Route( - 'members/send_welcome_email', + "members/send_welcome_email", 1, False, UserSelectorArg_validator, bv.Void(), MembersSendWelcomeError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_set_admin_permissions = bb.Route( - 'members/set_admin_permissions', + "members/set_admin_permissions", 1, False, MembersSetPermissionsArg_validator, MembersSetPermissionsResult_validator, MembersSetPermissionsError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_set_admin_permissions_v2 = bb.Route( - 'members/set_admin_permissions', + "members/set_admin_permissions", 2, False, MembersSetPermissions2Arg_validator, MembersSetPermissions2Result_validator, MembersSetPermissions2Error_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_set_profile = bb.Route( - 'members/set_profile', + "members/set_profile", 1, False, MembersSetProfileArg_validator, TeamMemberInfo_validator, MembersSetProfileError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_set_profile_v2 = bb.Route( - 'members/set_profile', + "members/set_profile", 2, False, MembersSetProfileArg_validator, TeamMemberInfoV2Result_validator, MembersSetProfileError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_set_profile_photo = bb.Route( - 'members/set_profile_photo', + "members/set_profile_photo", 1, False, MembersSetProfilePhotoArg_validator, TeamMemberInfo_validator, MembersSetProfilePhotoError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_set_profile_photo_v2 = bb.Route( - 'members/set_profile_photo', + "members/set_profile_photo", 2, False, MembersSetProfilePhotoArg_validator, TeamMemberInfoV2Result_validator, MembersSetProfilePhotoError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_suspend = bb.Route( - 'members/suspend', + "members/suspend", 1, False, MembersDeactivateArg_validator, bv.Void(), MembersSuspendError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) members_unsuspend = bb.Route( - 'members/unsuspend', + "members/unsuspend", 1, False, MembersUnsuspendArg_validator, bv.Void(), MembersUnsuspendError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) namespaces_list = bb.Route( - 'namespaces/list', + "namespaces/list", 1, False, TeamNamespacesListArg_validator, TeamNamespacesListResult_validator, TeamNamespacesListError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) namespaces_list_continue = bb.Route( - 'namespaces/list/continue', + "namespaces/list/continue", 1, False, TeamNamespacesListContinueArg_validator, TeamNamespacesListResult_validator, TeamNamespacesListContinueError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) properties_template_add = bb.Route( - 'properties/template/add', + "properties/template/add", 1, True, file_properties.AddTemplateArg_validator, file_properties.AddTemplateResult_validator, file_properties.ModifyTemplateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) properties_template_get = bb.Route( - 'properties/template/get', + "properties/template/get", 1, True, file_properties.GetTemplateArg_validator, file_properties.GetTemplateResult_validator, file_properties.TemplateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) reports_get_activity = bb.Route( - 'reports/get_activity', + "reports/get_activity", 1, True, DateRange_validator, GetActivityReport_validator, DateRangeError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) reports_get_devices = bb.Route( - 'reports/get_devices', + "reports/get_devices", 1, True, DateRange_validator, GetDevicesReport_validator, DateRangeError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) reports_get_membership = bb.Route( - 'reports/get_membership', + "reports/get_membership", 1, True, DateRange_validator, GetMembershipReport_validator, DateRangeError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) reports_get_storage = bb.Route( - 'reports/get_storage', + "reports/get_storage", 1, True, DateRange_validator, GetStorageReport_validator, DateRangeError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) sharing_allowlist_add = bb.Route( - 'sharing_allowlist/add', + "sharing_allowlist/add", 1, False, SharingAllowlistAddArgs_validator, SharingAllowlistAddResponse_validator, SharingAllowlistAddError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) sharing_allowlist_list = bb.Route( - 'sharing_allowlist/list', + "sharing_allowlist/list", 1, False, SharingAllowlistListArg_validator, SharingAllowlistListResponse_validator, SharingAllowlistListError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) sharing_allowlist_list_continue = bb.Route( - 'sharing_allowlist/list/continue', + "sharing_allowlist/list/continue", 1, False, SharingAllowlistListContinueArg_validator, SharingAllowlistListResponse_validator, SharingAllowlistListContinueError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) sharing_allowlist_remove = bb.Route( - 'sharing_allowlist/remove', + "sharing_allowlist/remove", 1, False, SharingAllowlistRemoveArgs_validator, SharingAllowlistRemoveResponse_validator, SharingAllowlistRemoveError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_activate = bb.Route( - 'team_folder/activate', + "team_folder/activate", 1, False, TeamFolderIdArg_validator, TeamFolderMetadata_validator, TeamFolderActivateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_archive = bb.Route( - 'team_folder/archive', + "team_folder/archive", 1, False, TeamFolderArchiveArg_validator, TeamFolderArchiveLaunch_validator, TeamFolderArchiveError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_archive_check = bb.Route( - 'team_folder/archive/check', + "team_folder/archive/check", 1, False, async_.PollArg_validator, TeamFolderArchiveJobStatus_validator, async_.PollError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_create = bb.Route( - 'team_folder/create', + "team_folder/create", 1, False, TeamFolderCreateArg_validator, TeamFolderMetadata_validator, TeamFolderCreateError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_get_info = bb.Route( - 'team_folder/get_info', + "team_folder/get_info", 1, False, TeamFolderIdListArg_validator, bv.List(TeamFolderGetInfoItem_validator), bv.Void(), - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_list = bb.Route( - 'team_folder/list', + "team_folder/list", 1, False, TeamFolderListArg_validator, TeamFolderListResult_validator, TeamFolderListError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_list_continue = bb.Route( - 'team_folder/list/continue', + "team_folder/list/continue", 1, False, TeamFolderListContinueArg_validator, TeamFolderListResult_validator, TeamFolderListContinueError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_permanently_delete = bb.Route( - 'team_folder/permanently_delete', + "team_folder/permanently_delete", 1, False, TeamFolderIdArg_validator, bv.Void(), TeamFolderPermanentlyDeleteError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_rename = bb.Route( - 'team_folder/rename', + "team_folder/rename", 1, False, TeamFolderRenameArg_validator, TeamFolderMetadata_validator, TeamFolderRenameError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_restore = bb.Route( - 'team_folder/restore', + "team_folder/restore", 1, False, TeamFolderIdArg_validator, TeamFolderMetadata_validator, TeamFolderRestoreError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) team_folder_update_sync_settings = bb.Route( - 'team_folder/update_sync_settings', + "team_folder/update_sync_settings", 1, False, TeamFolderUpdateSyncSettingsArg_validator, TeamFolderMetadata_validator, TeamFolderUpdateSyncSettingsError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) token_get_authenticated_admin = bb.Route( - 'token/get_authenticated_admin', + "token/get_authenticated_admin", 1, False, bv.Void(), TokenGetAuthenticatedAdminResult_validator, TokenGetAuthenticatedAdminError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) ROUTES = { - 'devices/list_member_devices': devices_list_member_devices, - 'devices/list_members_devices': devices_list_members_devices, - 'devices/list_team_devices': devices_list_team_devices, - 'devices/revoke_device_session': devices_revoke_device_session, - 'devices/revoke_device_session_batch': devices_revoke_device_session_batch, - 'features/get_values': features_get_values, - 'get_info': get_info, - 'groups/create': groups_create, - 'groups/delete': groups_delete, - 'groups/get_info': groups_get_info, - 'groups/job_status/get': groups_job_status_get, - 'groups/list': groups_list, - 'groups/list/continue': groups_list_continue, - 'groups/members/add': groups_members_add, - 'groups/members/list': groups_members_list, - 'groups/members/list/continue': groups_members_list_continue, - 'groups/members/remove': groups_members_remove, - 'groups/members/set_access_type': groups_members_set_access_type, - 'groups/update': groups_update, - 'legal_holds/create_policy': legal_holds_create_policy, - 'legal_holds/get_policy': legal_holds_get_policy, - 'legal_holds/list_held_revisions': legal_holds_list_held_revisions, - 'legal_holds/list_held_revisions_continue': legal_holds_list_held_revisions_continue, - 'legal_holds/list_policies': legal_holds_list_policies, - 'legal_holds/release_policy': legal_holds_release_policy, - 'legal_holds/update_policy': legal_holds_update_policy, - 'linked_apps/list_member_linked_apps': linked_apps_list_member_linked_apps, - 'linked_apps/list_members_linked_apps': linked_apps_list_members_linked_apps, - 'linked_apps/list_team_linked_apps': linked_apps_list_team_linked_apps, - 'linked_apps/revoke_linked_app': linked_apps_revoke_linked_app, - 'linked_apps/revoke_linked_app_batch': linked_apps_revoke_linked_app_batch, - 'member_space_limits/excluded_users/add': member_space_limits_excluded_users_add, - 'member_space_limits/excluded_users/list': member_space_limits_excluded_users_list, - 'member_space_limits/excluded_users/list/continue': member_space_limits_excluded_users_list_continue, - 'member_space_limits/excluded_users/remove': member_space_limits_excluded_users_remove, - 'member_space_limits/get_custom_quota': member_space_limits_get_custom_quota, - 'member_space_limits/remove_custom_quota': member_space_limits_remove_custom_quota, - 'member_space_limits/set_custom_quota': member_space_limits_set_custom_quota, - 'members/add': members_add, - 'members/add:2': members_add_v2, - 'members/add/job_status/get': members_add_job_status_get, - 'members/add/job_status/get:2': members_add_job_status_get_v2, - 'members/delete_former_member_files': members_delete_former_member_files, - 'members/delete_profile_photo': members_delete_profile_photo, - 'members/delete_profile_photo:2': members_delete_profile_photo_v2, - 'members/get_available_team_member_roles': members_get_available_team_member_roles, - 'members/get_info': members_get_info, - 'members/get_info:2': members_get_info_v2, - 'members/list': members_list, - 'members/list:2': members_list_v2, - 'members/list/continue': members_list_continue, - 'members/list/continue:2': members_list_continue_v2, - 'members/move_former_member_files': members_move_former_member_files, - 'members/move_former_member_files/job_status/check': members_move_former_member_files_job_status_check, - 'members/recover': members_recover, - 'members/remove': members_remove, - 'members/remove/job_status/get': members_remove_job_status_get, - 'members/secondary_emails/add': members_secondary_emails_add, - 'members/secondary_emails/delete': members_secondary_emails_delete, - 'members/secondary_emails/resend_verification_emails': members_secondary_emails_resend_verification_emails, - 'members/send_welcome_email': members_send_welcome_email, - 'members/set_admin_permissions': members_set_admin_permissions, - 'members/set_admin_permissions:2': members_set_admin_permissions_v2, - 'members/set_profile': members_set_profile, - 'members/set_profile:2': members_set_profile_v2, - 'members/set_profile_photo': members_set_profile_photo, - 'members/set_profile_photo:2': members_set_profile_photo_v2, - 'members/suspend': members_suspend, - 'members/unsuspend': members_unsuspend, - 'namespaces/list': namespaces_list, - 'namespaces/list/continue': namespaces_list_continue, - 'properties/template/add': properties_template_add, - 'properties/template/get': properties_template_get, - 'reports/get_activity': reports_get_activity, - 'reports/get_devices': reports_get_devices, - 'reports/get_membership': reports_get_membership, - 'reports/get_storage': reports_get_storage, - 'sharing_allowlist/add': sharing_allowlist_add, - 'sharing_allowlist/list': sharing_allowlist_list, - 'sharing_allowlist/list/continue': sharing_allowlist_list_continue, - 'sharing_allowlist/remove': sharing_allowlist_remove, - 'team_folder/activate': team_folder_activate, - 'team_folder/archive': team_folder_archive, - 'team_folder/archive/check': team_folder_archive_check, - 'team_folder/create': team_folder_create, - 'team_folder/get_info': team_folder_get_info, - 'team_folder/list': team_folder_list, - 'team_folder/list/continue': team_folder_list_continue, - 'team_folder/permanently_delete': team_folder_permanently_delete, - 'team_folder/rename': team_folder_rename, - 'team_folder/restore': team_folder_restore, - 'team_folder/update_sync_settings': team_folder_update_sync_settings, - 'token/get_authenticated_admin': token_get_authenticated_admin, + "devices/list_member_devices": devices_list_member_devices, + "devices/list_members_devices": devices_list_members_devices, + "devices/list_team_devices": devices_list_team_devices, + "devices/revoke_device_session": devices_revoke_device_session, + "devices/revoke_device_session_batch": devices_revoke_device_session_batch, + "features/get_values": features_get_values, + "get_info": get_info, + "groups/create": groups_create, + "groups/delete": groups_delete, + "groups/get_info": groups_get_info, + "groups/job_status/get": groups_job_status_get, + "groups/list": groups_list, + "groups/list/continue": groups_list_continue, + "groups/members/add": groups_members_add, + "groups/members/list": groups_members_list, + "groups/members/list/continue": groups_members_list_continue, + "groups/members/remove": groups_members_remove, + "groups/members/set_access_type": groups_members_set_access_type, + "groups/update": groups_update, + "legal_holds/create_policy": legal_holds_create_policy, + "legal_holds/get_policy": legal_holds_get_policy, + "legal_holds/list_held_revisions": legal_holds_list_held_revisions, + "legal_holds/list_held_revisions_continue": legal_holds_list_held_revisions_continue, + "legal_holds/list_policies": legal_holds_list_policies, + "legal_holds/release_policy": legal_holds_release_policy, + "legal_holds/update_policy": legal_holds_update_policy, + "linked_apps/list_member_linked_apps": linked_apps_list_member_linked_apps, + "linked_apps/list_members_linked_apps": linked_apps_list_members_linked_apps, + "linked_apps/list_team_linked_apps": linked_apps_list_team_linked_apps, + "linked_apps/revoke_linked_app": linked_apps_revoke_linked_app, + "linked_apps/revoke_linked_app_batch": linked_apps_revoke_linked_app_batch, + "member_space_limits/excluded_users/add": member_space_limits_excluded_users_add, + "member_space_limits/excluded_users/list": member_space_limits_excluded_users_list, + "member_space_limits/excluded_users/list/continue": member_space_limits_excluded_users_list_continue, + "member_space_limits/excluded_users/remove": member_space_limits_excluded_users_remove, + "member_space_limits/get_custom_quota": member_space_limits_get_custom_quota, + "member_space_limits/remove_custom_quota": member_space_limits_remove_custom_quota, + "member_space_limits/set_custom_quota": member_space_limits_set_custom_quota, + "members/add": members_add, + "members/add:2": members_add_v2, + "members/add/job_status/get": members_add_job_status_get, + "members/add/job_status/get:2": members_add_job_status_get_v2, + "members/delete_former_member_files": members_delete_former_member_files, + "members/delete_profile_photo": members_delete_profile_photo, + "members/delete_profile_photo:2": members_delete_profile_photo_v2, + "members/get_available_team_member_roles": members_get_available_team_member_roles, + "members/get_info": members_get_info, + "members/get_info:2": members_get_info_v2, + "members/list": members_list, + "members/list:2": members_list_v2, + "members/list/continue": members_list_continue, + "members/list/continue:2": members_list_continue_v2, + "members/move_former_member_files": members_move_former_member_files, + "members/move_former_member_files/job_status/check": members_move_former_member_files_job_status_check, + "members/recover": members_recover, + "members/remove": members_remove, + "members/remove/job_status/get": members_remove_job_status_get, + "members/secondary_emails/add": members_secondary_emails_add, + "members/secondary_emails/delete": members_secondary_emails_delete, + "members/secondary_emails/resend_verification_emails": members_secondary_emails_resend_verification_emails, + "members/send_welcome_email": members_send_welcome_email, + "members/set_admin_permissions": members_set_admin_permissions, + "members/set_admin_permissions:2": members_set_admin_permissions_v2, + "members/set_profile": members_set_profile, + "members/set_profile:2": members_set_profile_v2, + "members/set_profile_photo": members_set_profile_photo, + "members/set_profile_photo:2": members_set_profile_photo_v2, + "members/suspend": members_suspend, + "members/unsuspend": members_unsuspend, + "namespaces/list": namespaces_list, + "namespaces/list/continue": namespaces_list_continue, + "properties/template/add": properties_template_add, + "properties/template/get": properties_template_get, + "reports/get_activity": reports_get_activity, + "reports/get_devices": reports_get_devices, + "reports/get_membership": reports_get_membership, + "reports/get_storage": reports_get_storage, + "sharing_allowlist/add": sharing_allowlist_add, + "sharing_allowlist/list": sharing_allowlist_list, + "sharing_allowlist/list/continue": sharing_allowlist_list_continue, + "sharing_allowlist/remove": sharing_allowlist_remove, + "team_folder/activate": team_folder_activate, + "team_folder/archive": team_folder_archive, + "team_folder/archive/check": team_folder_archive_check, + "team_folder/create": team_folder_create, + "team_folder/get_info": team_folder_get_info, + "team_folder/list": team_folder_list, + "team_folder/list/continue": team_folder_list_continue, + "team_folder/permanently_delete": team_folder_permanently_delete, + "team_folder/rename": team_folder_rename, + "team_folder/restore": team_folder_restore, + "team_folder/update_sync_settings": team_folder_update_sync_settings, + "token/get_authenticated_admin": token_get_authenticated_admin, } - diff --git a/dropbox/team_common.py b/dropbox/team_common.py index 0ef48480..ae546afc 100644 --- a/dropbox/team_common.py +++ b/dropbox/team_common.py @@ -9,6 +9,7 @@ from dropbox import common + class GroupManagementType(bb.Union): """ The group type determines how a group is managed. @@ -25,7 +26,7 @@ class GroupManagementType(bb.Union): A group which is managed automatically by Dropbox. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition user_managed = None # Attribute is overwritten below the class definition @@ -41,7 +42,7 @@ def is_user_managed(self): :rtype: bool """ - return self._tag == 'user_managed' + return self._tag == "user_managed" def is_company_managed(self): """ @@ -49,7 +50,7 @@ def is_company_managed(self): :rtype: bool """ - return self._tag == 'company_managed' + return self._tag == "company_managed" def is_system_managed(self): """ @@ -57,7 +58,7 @@ def is_system_managed(self): :rtype: bool """ - return self._tag == 'system_managed' + return self._tag == "system_managed" def is_other(self): """ @@ -65,13 +66,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupManagementType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupManagementType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupManagementType_validator = bv.Union(GroupManagementType) + class GroupSummary(bb.Struct): """ Information about a group. @@ -86,21 +91,23 @@ class GroupSummary(bb.Struct): """ __slots__ = [ - '_group_name_value', - '_group_id_value', - '_group_external_id_value', - '_member_count_value', - '_group_management_type_value', + "_group_name_value", + "_group_id_value", + "_group_external_id_value", + "_member_count_value", + "_group_management_type_value", ] _has_required_fields = True - def __init__(self, - group_name=None, - group_id=None, - group_management_type=None, - group_external_id=None, - member_count=None): + def __init__( + self, + group_name=None, + group_id=None, + group_management_type=None, + group_external_id=None, + member_count=None, + ): self._group_name_value = bb.NOT_SET self._group_id_value = bb.NOT_SET self._group_external_id_value = bb.NOT_SET @@ -133,10 +140,14 @@ def __init__(self, group_management_type = bb.Attribute("group_management_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupSummary, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupSummary, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupSummary_validator = bv.Struct(GroupSummary) + class GroupType(bb.Union): """ The group type determines how a group is created and managed. @@ -152,7 +163,7 @@ class GroupType(bb.Union): A group is created and managed by a user. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition team = None # Attribute is overwritten below the class definition @@ -166,7 +177,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_user_managed(self): """ @@ -174,7 +185,7 @@ def is_user_managed(self): :rtype: bool """ - return self._tag == 'user_managed' + return self._tag == "user_managed" def is_other(self): """ @@ -182,13 +193,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(GroupType, self)._process_custom_annotations(annotation_type, field_path, processor) + GroupType_validator = bv.Union(GroupType) + class MemberSpaceLimitType(bb.Union): """ The type of the space limit imposed on a team member. @@ -207,7 +220,7 @@ class MemberSpaceLimitType(bb.Union): stop after the limit is reached. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition off = None # Attribute is overwritten below the class definition @@ -223,7 +236,7 @@ def is_off(self): :rtype: bool """ - return self._tag == 'off' + return self._tag == "off" def is_alert_only(self): """ @@ -231,7 +244,7 @@ def is_alert_only(self): :rtype: bool """ - return self._tag == 'alert_only' + return self._tag == "alert_only" def is_stop_sync(self): """ @@ -239,7 +252,7 @@ def is_stop_sync(self): :rtype: bool """ - return self._tag == 'stop_sync' + return self._tag == "stop_sync" def is_other(self): """ @@ -247,13 +260,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitType_validator = bv.Union(MemberSpaceLimitType) + class TimeRange(bb.Struct): """ Time range. @@ -265,15 +282,13 @@ class TimeRange(bb.Struct): """ __slots__ = [ - '_start_time_value', - '_end_time_value', + "_start_time_value", + "_end_time_value", ] _has_required_fields = False - def __init__(self, - start_time=None, - end_time=None): + def __init__(self, start_time=None, end_time=None): self._start_time_value = bb.NOT_SET self._end_time_value = bb.NOT_SET if start_time is not None: @@ -290,6 +305,7 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(TimeRange, self)._process_custom_annotations(annotation_type, field_path, processor) + TimeRange_validator = bv.Struct(TimeRange) GroupExternalId_validator = bv.String() @@ -303,77 +319,79 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupManagementType._system_managed_validator = bv.Void() GroupManagementType._other_validator = bv.Void() GroupManagementType._tagmap = { - 'user_managed': GroupManagementType._user_managed_validator, - 'company_managed': GroupManagementType._company_managed_validator, - 'system_managed': GroupManagementType._system_managed_validator, - 'other': GroupManagementType._other_validator, + "user_managed": GroupManagementType._user_managed_validator, + "company_managed": GroupManagementType._company_managed_validator, + "system_managed": GroupManagementType._system_managed_validator, + "other": GroupManagementType._other_validator, } -GroupManagementType.user_managed = GroupManagementType('user_managed') -GroupManagementType.company_managed = GroupManagementType('company_managed') -GroupManagementType.system_managed = GroupManagementType('system_managed') -GroupManagementType.other = GroupManagementType('other') +GroupManagementType.user_managed = GroupManagementType("user_managed") +GroupManagementType.company_managed = GroupManagementType("company_managed") +GroupManagementType.system_managed = GroupManagementType("system_managed") +GroupManagementType.other = GroupManagementType("other") GroupSummary.group_name.validator = bv.String() GroupSummary.group_id.validator = GroupId_validator GroupSummary.group_external_id.validator = bv.Nullable(GroupExternalId_validator) GroupSummary.member_count.validator = bv.Nullable(bv.UInt32()) GroupSummary.group_management_type.validator = GroupManagementType_validator -GroupSummary._all_field_names_ = set([ - 'group_name', - 'group_id', - 'group_external_id', - 'member_count', - 'group_management_type', -]) +GroupSummary._all_field_names_ = set( + [ + "group_name", + "group_id", + "group_external_id", + "member_count", + "group_management_type", + ] +) GroupSummary._all_fields_ = [ - ('group_name', GroupSummary.group_name.validator), - ('group_id', GroupSummary.group_id.validator), - ('group_external_id', GroupSummary.group_external_id.validator), - ('member_count', GroupSummary.member_count.validator), - ('group_management_type', GroupSummary.group_management_type.validator), + ("group_name", GroupSummary.group_name.validator), + ("group_id", GroupSummary.group_id.validator), + ("group_external_id", GroupSummary.group_external_id.validator), + ("member_count", GroupSummary.member_count.validator), + ("group_management_type", GroupSummary.group_management_type.validator), ] GroupType._team_validator = bv.Void() GroupType._user_managed_validator = bv.Void() GroupType._other_validator = bv.Void() GroupType._tagmap = { - 'team': GroupType._team_validator, - 'user_managed': GroupType._user_managed_validator, - 'other': GroupType._other_validator, + "team": GroupType._team_validator, + "user_managed": GroupType._user_managed_validator, + "other": GroupType._other_validator, } -GroupType.team = GroupType('team') -GroupType.user_managed = GroupType('user_managed') -GroupType.other = GroupType('other') +GroupType.team = GroupType("team") +GroupType.user_managed = GroupType("user_managed") +GroupType.other = GroupType("other") MemberSpaceLimitType._off_validator = bv.Void() MemberSpaceLimitType._alert_only_validator = bv.Void() MemberSpaceLimitType._stop_sync_validator = bv.Void() MemberSpaceLimitType._other_validator = bv.Void() MemberSpaceLimitType._tagmap = { - 'off': MemberSpaceLimitType._off_validator, - 'alert_only': MemberSpaceLimitType._alert_only_validator, - 'stop_sync': MemberSpaceLimitType._stop_sync_validator, - 'other': MemberSpaceLimitType._other_validator, + "off": MemberSpaceLimitType._off_validator, + "alert_only": MemberSpaceLimitType._alert_only_validator, + "stop_sync": MemberSpaceLimitType._stop_sync_validator, + "other": MemberSpaceLimitType._other_validator, } -MemberSpaceLimitType.off = MemberSpaceLimitType('off') -MemberSpaceLimitType.alert_only = MemberSpaceLimitType('alert_only') -MemberSpaceLimitType.stop_sync = MemberSpaceLimitType('stop_sync') -MemberSpaceLimitType.other = MemberSpaceLimitType('other') +MemberSpaceLimitType.off = MemberSpaceLimitType("off") +MemberSpaceLimitType.alert_only = MemberSpaceLimitType("alert_only") +MemberSpaceLimitType.stop_sync = MemberSpaceLimitType("stop_sync") +MemberSpaceLimitType.other = MemberSpaceLimitType("other") TimeRange.start_time.validator = bv.Nullable(common.DropboxTimestamp_validator) TimeRange.end_time.validator = bv.Nullable(common.DropboxTimestamp_validator) -TimeRange._all_field_names_ = set([ - 'start_time', - 'end_time', -]) +TimeRange._all_field_names_ = set( + [ + "start_time", + "end_time", + ] +) TimeRange._all_fields_ = [ - ('start_time', TimeRange.start_time.validator), - ('end_time', TimeRange.end_time.validator), + ("start_time", TimeRange.start_time.validator), + ("end_time", TimeRange.end_time.validator), ] -ROUTES = { -} - +ROUTES = {} diff --git a/dropbox/team_log.py b/dropbox/team_log.py index ca7ad73c..3c3ccdfd 100644 --- a/dropbox/team_log.py +++ b/dropbox/team_log.py @@ -16,6 +16,7 @@ from dropbox import team_policies from dropbox import users_common + class AccessMethodLogInfo(bb.Union): """ Indicates the method in which the action was performed. @@ -44,7 +45,7 @@ class AccessMethodLogInfo(bb.Union): :vartype AccessMethodLogInfo.sign_in_as: WebSessionLogInfo """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -57,7 +58,7 @@ def admin_console(cls, val): :param WebSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls('admin_console', val) + return cls("admin_console", val) @classmethod def api(cls, val): @@ -68,7 +69,7 @@ def api(cls, val): :param ApiSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls('api', val) + return cls("api", val) @classmethod def content_manager(cls, val): @@ -79,7 +80,7 @@ def content_manager(cls, val): :param WebSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls('content_manager', val) + return cls("content_manager", val) @classmethod def end_user(cls, val): @@ -90,7 +91,7 @@ def end_user(cls, val): :param SessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls('end_user', val) + return cls("end_user", val) @classmethod def enterprise_console(cls, val): @@ -101,7 +102,7 @@ def enterprise_console(cls, val): :param WebSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls('enterprise_console', val) + return cls("enterprise_console", val) @classmethod def sign_in_as(cls, val): @@ -112,7 +113,7 @@ def sign_in_as(cls, val): :param WebSessionLogInfo val: :rtype: AccessMethodLogInfo """ - return cls('sign_in_as', val) + return cls("sign_in_as", val) def is_admin_console(self): """ @@ -120,7 +121,7 @@ def is_admin_console(self): :rtype: bool """ - return self._tag == 'admin_console' + return self._tag == "admin_console" def is_api(self): """ @@ -128,7 +129,7 @@ def is_api(self): :rtype: bool """ - return self._tag == 'api' + return self._tag == "api" def is_content_manager(self): """ @@ -136,7 +137,7 @@ def is_content_manager(self): :rtype: bool """ - return self._tag == 'content_manager' + return self._tag == "content_manager" def is_end_user(self): """ @@ -144,7 +145,7 @@ def is_end_user(self): :rtype: bool """ - return self._tag == 'end_user' + return self._tag == "end_user" def is_enterprise_console(self): """ @@ -152,7 +153,7 @@ def is_enterprise_console(self): :rtype: bool """ - return self._tag == 'enterprise_console' + return self._tag == "enterprise_console" def is_sign_in_as(self): """ @@ -160,7 +161,7 @@ def is_sign_in_as(self): :rtype: bool """ - return self._tag == 'sign_in_as' + return self._tag == "sign_in_as" def is_other(self): """ @@ -168,7 +169,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_admin_console(self): """ @@ -243,10 +244,14 @@ def get_sign_in_as(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccessMethodLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccessMethodLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccessMethodLogInfo_validator = bv.Union(AccessMethodLogInfo) + class AccountCaptureAvailability(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -254,7 +259,7 @@ class AccountCaptureAvailability(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition available = None # Attribute is overwritten below the class definition @@ -268,7 +273,7 @@ def is_available(self): :rtype: bool """ - return self._tag == 'available' + return self._tag == "available" def is_unavailable(self): """ @@ -276,7 +281,7 @@ def is_unavailable(self): :rtype: bool """ - return self._tag == 'unavailable' + return self._tag == "unavailable" def is_other(self): """ @@ -284,13 +289,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureAvailability, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureAvailability, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCaptureAvailability_validator = bv.Union(AccountCaptureAvailability) + class AccountCaptureChangeAvailabilityDetails(bb.Struct): """ Granted/revoked option to enable account capture on team domains. @@ -303,15 +312,13 @@ class AccountCaptureChangeAvailabilityDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -326,20 +333,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureChangeAvailabilityDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureChangeAvailabilityDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -AccountCaptureChangeAvailabilityDetails_validator = bv.Struct(AccountCaptureChangeAvailabilityDetails) -class AccountCaptureChangeAvailabilityType(bb.Struct): +AccountCaptureChangeAvailabilityDetails_validator = bv.Struct( + AccountCaptureChangeAvailabilityDetails +) + +class AccountCaptureChangeAvailabilityType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -348,10 +359,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureChangeAvailabilityType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureChangeAvailabilityType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCaptureChangeAvailabilityType_validator = bv.Struct(AccountCaptureChangeAvailabilityType) + class AccountCaptureChangePolicyDetails(bb.Struct): """ Changed account capture setting on team domain. @@ -364,15 +379,13 @@ class AccountCaptureChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -387,20 +400,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCaptureChangePolicyDetails_validator = bv.Struct(AccountCaptureChangePolicyDetails) -class AccountCaptureChangePolicyType(bb.Struct): +class AccountCaptureChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -409,10 +424,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCaptureChangePolicyType_validator = bv.Struct(AccountCaptureChangePolicyType) + class AccountCaptureMigrateAccountDetails(bb.Struct): """ Account-captured user migrated account to team. @@ -422,13 +441,12 @@ class AccountCaptureMigrateAccountDetails(bb.Struct): """ __slots__ = [ - '_domain_name_value', + "_domain_name_value", ] _has_required_fields = True - def __init__(self, - domain_name=None): + def __init__(self, domain_name=None): self._domain_name_value = bb.NOT_SET if domain_name is not None: self.domain_name = domain_name @@ -437,20 +455,22 @@ def __init__(self, domain_name = bb.Attribute("domain_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureMigrateAccountDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureMigrateAccountDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCaptureMigrateAccountDetails_validator = bv.Struct(AccountCaptureMigrateAccountDetails) -class AccountCaptureMigrateAccountType(bb.Struct): +class AccountCaptureMigrateAccountType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -459,10 +479,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureMigrateAccountType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureMigrateAccountType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCaptureMigrateAccountType_validator = bv.Struct(AccountCaptureMigrateAccountType) + class AccountCaptureNotificationEmailsSentDetails(bb.Struct): """ Sent account capture email to all unmanaged members. @@ -474,15 +498,13 @@ class AccountCaptureNotificationEmailsSentDetails(bb.Struct): """ __slots__ = [ - '_domain_name_value', - '_notification_type_value', + "_domain_name_value", + "_notification_type_value", ] _has_required_fields = True - def __init__(self, - domain_name=None, - notification_type=None): + def __init__(self, domain_name=None, notification_type=None): self._domain_name_value = bb.NOT_SET self._notification_type_value = bb.NOT_SET if domain_name is not None: @@ -497,20 +519,24 @@ def __init__(self, notification_type = bb.Attribute("notification_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureNotificationEmailsSentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureNotificationEmailsSentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -AccountCaptureNotificationEmailsSentDetails_validator = bv.Struct(AccountCaptureNotificationEmailsSentDetails) -class AccountCaptureNotificationEmailsSentType(bb.Struct): +AccountCaptureNotificationEmailsSentDetails_validator = bv.Struct( + AccountCaptureNotificationEmailsSentDetails +) + +class AccountCaptureNotificationEmailsSentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -519,9 +545,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureNotificationEmailsSentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureNotificationEmailsSentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +AccountCaptureNotificationEmailsSentType_validator = bv.Struct( + AccountCaptureNotificationEmailsSentType +) -AccountCaptureNotificationEmailsSentType_validator = bv.Struct(AccountCaptureNotificationEmailsSentType) class AccountCaptureNotificationType(bb.Union): """ @@ -530,7 +562,7 @@ class AccountCaptureNotificationType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition actionable_notification = None # Attribute is overwritten below the class definition @@ -544,7 +576,7 @@ def is_actionable_notification(self): :rtype: bool """ - return self._tag == 'actionable_notification' + return self._tag == "actionable_notification" def is_proactive_warning_notification(self): """ @@ -552,7 +584,7 @@ def is_proactive_warning_notification(self): :rtype: bool """ - return self._tag == 'proactive_warning_notification' + return self._tag == "proactive_warning_notification" def is_other(self): """ @@ -560,13 +592,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureNotificationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureNotificationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCaptureNotificationType_validator = bv.Union(AccountCaptureNotificationType) + class AccountCapturePolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -574,7 +610,7 @@ class AccountCapturePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition all_users = None # Attribute is overwritten below the class definition @@ -590,7 +626,7 @@ def is_all_users(self): :rtype: bool """ - return self._tag == 'all_users' + return self._tag == "all_users" def is_disabled(self): """ @@ -598,7 +634,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_invited_users(self): """ @@ -606,7 +642,7 @@ def is_invited_users(self): :rtype: bool """ - return self._tag == 'invited_users' + return self._tag == "invited_users" def is_other(self): """ @@ -614,13 +650,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCapturePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCapturePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCapturePolicy_validator = bv.Union(AccountCapturePolicy) + class AccountCaptureRelinquishAccountDetails(bb.Struct): """ Account-captured user changed account email to personal email. @@ -630,13 +670,12 @@ class AccountCaptureRelinquishAccountDetails(bb.Struct): """ __slots__ = [ - '_domain_name_value', + "_domain_name_value", ] _has_required_fields = True - def __init__(self, - domain_name=None): + def __init__(self, domain_name=None): self._domain_name_value = bb.NOT_SET if domain_name is not None: self.domain_name = domain_name @@ -645,20 +684,22 @@ def __init__(self, domain_name = bb.Attribute("domain_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureRelinquishAccountDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureRelinquishAccountDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCaptureRelinquishAccountDetails_validator = bv.Struct(AccountCaptureRelinquishAccountDetails) -class AccountCaptureRelinquishAccountType(bb.Struct): +class AccountCaptureRelinquishAccountType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -667,10 +708,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountCaptureRelinquishAccountType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountCaptureRelinquishAccountType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountCaptureRelinquishAccountType_validator = bv.Struct(AccountCaptureRelinquishAccountType) + class AccountLockOrUnlockedDetails(bb.Struct): """ Unlocked/locked account after failed sign in attempts. @@ -682,15 +727,13 @@ class AccountLockOrUnlockedDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -705,20 +748,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountLockOrUnlockedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountLockOrUnlockedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountLockOrUnlockedDetails_validator = bv.Struct(AccountLockOrUnlockedDetails) -class AccountLockOrUnlockedType(bb.Struct): +class AccountLockOrUnlockedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -727,10 +772,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountLockOrUnlockedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountLockOrUnlockedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountLockOrUnlockedType_validator = bv.Struct(AccountLockOrUnlockedType) + class AccountState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -738,7 +787,7 @@ class AccountState(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition locked = None # Attribute is overwritten below the class definition @@ -752,7 +801,7 @@ def is_locked(self): :rtype: bool """ - return self._tag == 'locked' + return self._tag == "locked" def is_unlocked(self): """ @@ -760,7 +809,7 @@ def is_unlocked(self): :rtype: bool """ - return self._tag == 'unlocked' + return self._tag == "unlocked" def is_other(self): """ @@ -768,13 +817,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccountState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AccountState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AccountState_validator = bv.Union(AccountState) + class ActionDetails(bb.Union): """ Additional information indicating the action taken that caused status @@ -795,7 +848,7 @@ class ActionDetails(bb.Union): :vartype ActionDetails.team_join_details: JoinTeamDetails """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -808,7 +861,7 @@ def remove_action(cls, val): :param MemberRemoveActionType val: :rtype: ActionDetails """ - return cls('remove_action', val) + return cls("remove_action", val) @classmethod def team_invite_details(cls, val): @@ -819,7 +872,7 @@ def team_invite_details(cls, val): :param TeamInviteDetails val: :rtype: ActionDetails """ - return cls('team_invite_details', val) + return cls("team_invite_details", val) @classmethod def team_join_details(cls, val): @@ -830,7 +883,7 @@ def team_join_details(cls, val): :param JoinTeamDetails val: :rtype: ActionDetails """ - return cls('team_join_details', val) + return cls("team_join_details", val) def is_remove_action(self): """ @@ -838,7 +891,7 @@ def is_remove_action(self): :rtype: bool """ - return self._tag == 'remove_action' + return self._tag == "remove_action" def is_team_invite_details(self): """ @@ -846,7 +899,7 @@ def is_team_invite_details(self): :rtype: bool """ - return self._tag == 'team_invite_details' + return self._tag == "team_invite_details" def is_team_join_details(self): """ @@ -854,7 +907,7 @@ def is_team_join_details(self): :rtype: bool """ - return self._tag == 'team_join_details' + return self._tag == "team_join_details" def is_other(self): """ @@ -862,7 +915,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_remove_action(self): """ @@ -901,10 +954,14 @@ def get_team_join_details(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ActionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ActionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ActionDetails_validator = bv.Union(ActionDetails) + class ActorLogInfo(bb.Union): """ The entity who performed the action. @@ -931,7 +988,7 @@ class ActorLogInfo(bb.Union): :vartype ActorLogInfo.user: UserLogInfo """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition anonymous = None # Attribute is overwritten below the class definition @@ -948,7 +1005,7 @@ def admin(cls, val): :param UserLogInfo val: :rtype: ActorLogInfo """ - return cls('admin', val) + return cls("admin", val) @classmethod def app(cls, val): @@ -959,7 +1016,7 @@ def app(cls, val): :param AppLogInfo val: :rtype: ActorLogInfo """ - return cls('app', val) + return cls("app", val) @classmethod def reseller(cls, val): @@ -970,7 +1027,7 @@ def reseller(cls, val): :param ResellerLogInfo val: :rtype: ActorLogInfo """ - return cls('reseller', val) + return cls("reseller", val) @classmethod def user(cls, val): @@ -981,7 +1038,7 @@ def user(cls, val): :param UserLogInfo val: :rtype: ActorLogInfo """ - return cls('user', val) + return cls("user", val) def is_admin(self): """ @@ -989,7 +1046,7 @@ def is_admin(self): :rtype: bool """ - return self._tag == 'admin' + return self._tag == "admin" def is_anonymous(self): """ @@ -997,7 +1054,7 @@ def is_anonymous(self): :rtype: bool """ - return self._tag == 'anonymous' + return self._tag == "anonymous" def is_app(self): """ @@ -1005,7 +1062,7 @@ def is_app(self): :rtype: bool """ - return self._tag == 'app' + return self._tag == "app" def is_dropbox(self): """ @@ -1013,7 +1070,7 @@ def is_dropbox(self): :rtype: bool """ - return self._tag == 'dropbox' + return self._tag == "dropbox" def is_reseller(self): """ @@ -1021,7 +1078,7 @@ def is_reseller(self): :rtype: bool """ - return self._tag == 'reseller' + return self._tag == "reseller" def is_user(self): """ @@ -1029,7 +1086,7 @@ def is_user(self): :rtype: bool """ - return self._tag == 'user' + return self._tag == "user" def is_other(self): """ @@ -1037,7 +1094,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_admin(self): """ @@ -1088,10 +1145,14 @@ def get_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ActorLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ActorLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ActorLogInfo_validator = bv.Union(ActorLogInfo) + class AddonAssignedDetails(bb.Struct): """ Add-on Assigned. @@ -1103,15 +1164,13 @@ class AddonAssignedDetails(bb.Struct): """ __slots__ = [ - '_user_name_value', - '_addon_name_value', + "_user_name_value", + "_addon_name_value", ] _has_required_fields = True - def __init__(self, - user_name=None, - addon_name=None): + def __init__(self, user_name=None, addon_name=None): self._user_name_value = bb.NOT_SET self._addon_name_value = bb.NOT_SET if user_name is not None: @@ -1126,20 +1185,22 @@ def __init__(self, addon_name = bb.Attribute("addon_name", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonAssignedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddonAssignedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddonAssignedDetails_validator = bv.Struct(AddonAssignedDetails) -class AddonAssignedType(bb.Struct): +class AddonAssignedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -1148,10 +1209,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonAssignedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddonAssignedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddonAssignedType_validator = bv.Struct(AddonAssignedType) + class AddonLogInfo(bb.Struct): """ Add-on logged information @@ -1161,13 +1226,12 @@ class AddonLogInfo(bb.Struct): """ __slots__ = [ - '_addon_name_value', + "_addon_name_value", ] _has_required_fields = True - def __init__(self, - addon_name=None): + def __init__(self, addon_name=None): self._addon_name_value = bb.NOT_SET if addon_name is not None: self.addon_name = addon_name @@ -1176,10 +1240,14 @@ def __init__(self, addon_name = bb.Attribute("addon_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddonLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddonLogInfo_validator = bv.Struct(AddonLogInfo) + class AddonRemovedDetails(bb.Struct): """ Add-on Removed. @@ -1191,15 +1259,13 @@ class AddonRemovedDetails(bb.Struct): """ __slots__ = [ - '_user_name_value', - '_addon_name_value', + "_user_name_value", + "_addon_name_value", ] _has_required_fields = True - def __init__(self, - user_name=None, - addon_name=None): + def __init__(self, user_name=None, addon_name=None): self._user_name_value = bb.NOT_SET self._addon_name_value = bb.NOT_SET if user_name is not None: @@ -1214,20 +1280,22 @@ def __init__(self, addon_name = bb.Attribute("addon_name", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddonRemovedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddonRemovedDetails_validator = bv.Struct(AddonRemovedDetails) -class AddonRemovedType(bb.Struct): +class AddonRemovedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -1236,10 +1304,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddonRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AddonRemovedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AddonRemovedType_validator = bv.Struct(AddonRemovedType) + class AdminAlertCategoryEnum(bb.Union): """ Alert category @@ -1249,7 +1321,7 @@ class AdminAlertCategoryEnum(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition account_takeover = None # Attribute is overwritten below the class definition @@ -1273,7 +1345,7 @@ def is_account_takeover(self): :rtype: bool """ - return self._tag == 'account_takeover' + return self._tag == "account_takeover" def is_data_loss_protection(self): """ @@ -1281,7 +1353,7 @@ def is_data_loss_protection(self): :rtype: bool """ - return self._tag == 'data_loss_protection' + return self._tag == "data_loss_protection" def is_information_governance(self): """ @@ -1289,7 +1361,7 @@ def is_information_governance(self): :rtype: bool """ - return self._tag == 'information_governance' + return self._tag == "information_governance" def is_malware_sharing(self): """ @@ -1297,7 +1369,7 @@ def is_malware_sharing(self): :rtype: bool """ - return self._tag == 'malware_sharing' + return self._tag == "malware_sharing" def is_massive_file_operation(self): """ @@ -1305,7 +1377,7 @@ def is_massive_file_operation(self): :rtype: bool """ - return self._tag == 'massive_file_operation' + return self._tag == "massive_file_operation" def is_na(self): """ @@ -1313,7 +1385,7 @@ def is_na(self): :rtype: bool """ - return self._tag == 'na' + return self._tag == "na" def is_threat_management(self): """ @@ -1321,7 +1393,7 @@ def is_threat_management(self): :rtype: bool """ - return self._tag == 'threat_management' + return self._tag == "threat_management" def is_other(self): """ @@ -1329,13 +1401,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertCategoryEnum, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertCategoryEnum, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertCategoryEnum_validator = bv.Union(AdminAlertCategoryEnum) + class AdminAlertGeneralStateEnum(bb.Union): """ Alert state @@ -1345,7 +1421,7 @@ class AdminAlertGeneralStateEnum(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -1365,7 +1441,7 @@ def is_active(self): :rtype: bool """ - return self._tag == 'active' + return self._tag == "active" def is_dismissed(self): """ @@ -1373,7 +1449,7 @@ def is_dismissed(self): :rtype: bool """ - return self._tag == 'dismissed' + return self._tag == "dismissed" def is_in_progress(self): """ @@ -1381,7 +1457,7 @@ def is_in_progress(self): :rtype: bool """ - return self._tag == 'in_progress' + return self._tag == "in_progress" def is_na(self): """ @@ -1389,7 +1465,7 @@ def is_na(self): :rtype: bool """ - return self._tag == 'na' + return self._tag == "na" def is_resolved(self): """ @@ -1397,7 +1473,7 @@ def is_resolved(self): :rtype: bool """ - return self._tag == 'resolved' + return self._tag == "resolved" def is_other(self): """ @@ -1405,13 +1481,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertGeneralStateEnum, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertGeneralStateEnum, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertGeneralStateEnum_validator = bv.Union(AdminAlertGeneralStateEnum) + class AdminAlertSeverityEnum(bb.Union): """ Alert severity @@ -1421,7 +1501,7 @@ class AdminAlertSeverityEnum(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition high = None # Attribute is overwritten below the class definition @@ -1441,7 +1521,7 @@ def is_high(self): :rtype: bool """ - return self._tag == 'high' + return self._tag == "high" def is_info(self): """ @@ -1449,7 +1529,7 @@ def is_info(self): :rtype: bool """ - return self._tag == 'info' + return self._tag == "info" def is_low(self): """ @@ -1457,7 +1537,7 @@ def is_low(self): :rtype: bool """ - return self._tag == 'low' + return self._tag == "low" def is_medium(self): """ @@ -1465,7 +1545,7 @@ def is_medium(self): :rtype: bool """ - return self._tag == 'medium' + return self._tag == "medium" def is_na(self): """ @@ -1473,7 +1553,7 @@ def is_na(self): :rtype: bool """ - return self._tag == 'na' + return self._tag == "na" def is_other(self): """ @@ -1481,13 +1561,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertSeverityEnum, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertSeverityEnum, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertSeverityEnum_validator = bv.Union(AdminAlertSeverityEnum) + class AdminAlertingAlertConfiguration(bb.Struct): """ Alert configurations @@ -1507,23 +1591,25 @@ class AdminAlertingAlertConfiguration(bb.Struct): """ __slots__ = [ - '_alert_state_value', - '_sensitivity_level_value', - '_recipients_settings_value', - '_text_value', - '_excluded_file_extensions_value', - '_malware_exclusion_state_value', + "_alert_state_value", + "_sensitivity_level_value", + "_recipients_settings_value", + "_text_value", + "_excluded_file_extensions_value", + "_malware_exclusion_state_value", ] _has_required_fields = False - def __init__(self, - alert_state=None, - sensitivity_level=None, - recipients_settings=None, - text=None, - excluded_file_extensions=None, - malware_exclusion_state=None): + def __init__( + self, + alert_state=None, + sensitivity_level=None, + recipients_settings=None, + text=None, + excluded_file_extensions=None, + malware_exclusion_state=None, + ): self._alert_state_value = bb.NOT_SET self._sensitivity_level_value = bb.NOT_SET self._recipients_settings_value = bb.NOT_SET @@ -1559,13 +1645,19 @@ def __init__(self, excluded_file_extensions = bb.Attribute("excluded_file_extensions", nullable=True) # Instance attribute type: MalwareExclusionState (validator is set below) - malware_exclusion_state = bb.Attribute("malware_exclusion_state", nullable=True, user_defined=True) + malware_exclusion_state = bb.Attribute( + "malware_exclusion_state", nullable=True, user_defined=True + ) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertConfiguration, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertingAlertConfiguration, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertingAlertConfiguration_validator = bv.Struct(AdminAlertingAlertConfiguration) + class AdminAlertingAlertSensitivity(bb.Union): """ Alert sensitivity @@ -1575,7 +1667,7 @@ class AdminAlertingAlertSensitivity(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition high = None # Attribute is overwritten below the class definition @@ -1597,7 +1689,7 @@ def is_high(self): :rtype: bool """ - return self._tag == 'high' + return self._tag == "high" def is_highest(self): """ @@ -1605,7 +1697,7 @@ def is_highest(self): :rtype: bool """ - return self._tag == 'highest' + return self._tag == "highest" def is_invalid(self): """ @@ -1613,7 +1705,7 @@ def is_invalid(self): :rtype: bool """ - return self._tag == 'invalid' + return self._tag == "invalid" def is_low(self): """ @@ -1621,7 +1713,7 @@ def is_low(self): :rtype: bool """ - return self._tag == 'low' + return self._tag == "low" def is_lowest(self): """ @@ -1629,7 +1721,7 @@ def is_lowest(self): :rtype: bool """ - return self._tag == 'lowest' + return self._tag == "lowest" def is_medium(self): """ @@ -1637,7 +1729,7 @@ def is_medium(self): :rtype: bool """ - return self._tag == 'medium' + return self._tag == "medium" def is_other(self): """ @@ -1645,13 +1737,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertSensitivity, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertingAlertSensitivity, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertingAlertSensitivity_validator = bv.Union(AdminAlertingAlertSensitivity) + class AdminAlertingAlertStateChangedDetails(bb.Struct): """ Changed an alert state. @@ -1671,23 +1767,25 @@ class AdminAlertingAlertStateChangedDetails(bb.Struct): """ __slots__ = [ - '_alert_name_value', - '_alert_severity_value', - '_alert_category_value', - '_alert_instance_id_value', - '_previous_value_value', - '_new_value_value', + "_alert_name_value", + "_alert_severity_value", + "_alert_category_value", + "_alert_instance_id_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - alert_name=None, - alert_severity=None, - alert_category=None, - alert_instance_id=None, - previous_value=None, - new_value=None): + def __init__( + self, + alert_name=None, + alert_severity=None, + alert_category=None, + alert_instance_id=None, + previous_value=None, + new_value=None, + ): self._alert_name_value = bb.NOT_SET self._alert_severity_value = bb.NOT_SET self._alert_category_value = bb.NOT_SET @@ -1726,20 +1824,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertStateChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertingAlertStateChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertingAlertStateChangedDetails_validator = bv.Struct(AdminAlertingAlertStateChangedDetails) -class AdminAlertingAlertStateChangedType(bb.Struct): +class AdminAlertingAlertStateChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -1748,10 +1848,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertStateChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertingAlertStateChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertingAlertStateChangedType_validator = bv.Struct(AdminAlertingAlertStateChangedType) + class AdminAlertingAlertStatePolicy(bb.Union): """ Policy for controlling whether an alert can be triggered or not @@ -1761,7 +1865,7 @@ class AdminAlertingAlertStatePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition off = None # Attribute is overwritten below the class definition @@ -1775,7 +1879,7 @@ def is_off(self): :rtype: bool """ - return self._tag == 'off' + return self._tag == "off" def is_on(self): """ @@ -1783,7 +1887,7 @@ def is_on(self): :rtype: bool """ - return self._tag == 'on' + return self._tag == "on" def is_other(self): """ @@ -1791,13 +1895,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertStatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertingAlertStatePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertingAlertStatePolicy_validator = bv.Union(AdminAlertingAlertStatePolicy) + class AdminAlertingChangedAlertConfigDetails(bb.Struct): """ Changed an alert setting. @@ -1811,17 +1919,14 @@ class AdminAlertingChangedAlertConfigDetails(bb.Struct): """ __slots__ = [ - '_alert_name_value', - '_previous_alert_config_value', - '_new_alert_config_value', + "_alert_name_value", + "_previous_alert_config_value", + "_new_alert_config_value", ] _has_required_fields = True - def __init__(self, - alert_name=None, - previous_alert_config=None, - new_alert_config=None): + def __init__(self, alert_name=None, previous_alert_config=None, new_alert_config=None): self._alert_name_value = bb.NOT_SET self._previous_alert_config_value = bb.NOT_SET self._new_alert_config_value = bb.NOT_SET @@ -1842,20 +1947,22 @@ def __init__(self, new_alert_config = bb.Attribute("new_alert_config", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingChangedAlertConfigDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertingChangedAlertConfigDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertingChangedAlertConfigDetails_validator = bv.Struct(AdminAlertingChangedAlertConfigDetails) -class AdminAlertingChangedAlertConfigType(bb.Struct): +class AdminAlertingChangedAlertConfigType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -1864,10 +1971,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingChangedAlertConfigType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertingChangedAlertConfigType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertingChangedAlertConfigType_validator = bv.Struct(AdminAlertingChangedAlertConfigType) + class AdminAlertingTriggeredAlertDetails(bb.Struct): """ Triggered security alert. @@ -1883,19 +1994,21 @@ class AdminAlertingTriggeredAlertDetails(bb.Struct): """ __slots__ = [ - '_alert_name_value', - '_alert_severity_value', - '_alert_category_value', - '_alert_instance_id_value', + "_alert_name_value", + "_alert_severity_value", + "_alert_category_value", + "_alert_instance_id_value", ] _has_required_fields = True - def __init__(self, - alert_name=None, - alert_severity=None, - alert_category=None, - alert_instance_id=None): + def __init__( + self, + alert_name=None, + alert_severity=None, + alert_category=None, + alert_instance_id=None, + ): self._alert_name_value = bb.NOT_SET self._alert_severity_value = bb.NOT_SET self._alert_category_value = bb.NOT_SET @@ -1922,20 +2035,22 @@ def __init__(self, alert_instance_id = bb.Attribute("alert_instance_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingTriggeredAlertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertingTriggeredAlertDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertingTriggeredAlertDetails_validator = bv.Struct(AdminAlertingTriggeredAlertDetails) -class AdminAlertingTriggeredAlertType(bb.Struct): +class AdminAlertingTriggeredAlertType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -1944,10 +2059,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingTriggeredAlertType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminAlertingTriggeredAlertType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminAlertingTriggeredAlertType_validator = bv.Struct(AdminAlertingTriggeredAlertType) + class AdminConsoleAppPermission(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1955,7 +2074,7 @@ class AdminConsoleAppPermission(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default_for_listed_apps = None # Attribute is overwritten below the class definition @@ -1969,7 +2088,7 @@ def is_default_for_listed_apps(self): :rtype: bool """ - return self._tag == 'default_for_listed_apps' + return self._tag == "default_for_listed_apps" def is_default_for_unlisted_apps(self): """ @@ -1977,7 +2096,7 @@ def is_default_for_unlisted_apps(self): :rtype: bool """ - return self._tag == 'default_for_unlisted_apps' + return self._tag == "default_for_unlisted_apps" def is_other(self): """ @@ -1985,13 +2104,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminConsoleAppPermission, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminConsoleAppPermission, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminConsoleAppPermission_validator = bv.Union(AdminConsoleAppPermission) + class AdminConsoleAppPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1999,7 +2122,7 @@ class AdminConsoleAppPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -2015,7 +2138,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == 'allow' + return self._tag == "allow" def is_block(self): """ @@ -2023,7 +2146,7 @@ def is_block(self): :rtype: bool """ - return self._tag == 'block' + return self._tag == "block" def is_default(self): """ @@ -2031,7 +2154,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_other(self): """ @@ -2039,13 +2162,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminConsoleAppPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminConsoleAppPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminConsoleAppPolicy_validator = bv.Union(AdminConsoleAppPolicy) + class AdminEmailRemindersChangedDetails(bb.Struct): """ Changed admin reminder settings for requests to join the team. @@ -2057,15 +2184,13 @@ class AdminEmailRemindersChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -2080,20 +2205,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminEmailRemindersChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminEmailRemindersChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminEmailRemindersChangedDetails_validator = bv.Struct(AdminEmailRemindersChangedDetails) -class AdminEmailRemindersChangedType(bb.Struct): +class AdminEmailRemindersChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2102,10 +2229,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminEmailRemindersChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminEmailRemindersChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminEmailRemindersChangedType_validator = bv.Struct(AdminEmailRemindersChangedType) + class AdminEmailRemindersPolicy(bb.Union): """ Policy for deciding whether team admins receive reminder emails for requests @@ -2116,7 +2247,7 @@ class AdminEmailRemindersPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -2132,7 +2263,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -2140,7 +2271,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -2148,7 +2279,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -2156,13 +2287,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminEmailRemindersPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AdminEmailRemindersPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AdminEmailRemindersPolicy_validator = bv.Union(AdminEmailRemindersPolicy) + class AdminRole(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -2170,7 +2305,7 @@ class AdminRole(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition billing_admin = None # Attribute is overwritten below the class definition @@ -2204,7 +2339,7 @@ def is_billing_admin(self): :rtype: bool """ - return self._tag == 'billing_admin' + return self._tag == "billing_admin" def is_compliance_admin(self): """ @@ -2212,7 +2347,7 @@ def is_compliance_admin(self): :rtype: bool """ - return self._tag == 'compliance_admin' + return self._tag == "compliance_admin" def is_content_admin(self): """ @@ -2220,7 +2355,7 @@ def is_content_admin(self): :rtype: bool """ - return self._tag == 'content_admin' + return self._tag == "content_admin" def is_deprecated_freemium_team_member(self): """ @@ -2228,7 +2363,7 @@ def is_deprecated_freemium_team_member(self): :rtype: bool """ - return self._tag == 'deprecated_freemium_team_member' + return self._tag == "deprecated_freemium_team_member" def is_freemium_team_creator(self): """ @@ -2236,7 +2371,7 @@ def is_freemium_team_creator(self): :rtype: bool """ - return self._tag == 'freemium_team_creator' + return self._tag == "freemium_team_creator" def is_limited_admin(self): """ @@ -2244,7 +2379,7 @@ def is_limited_admin(self): :rtype: bool """ - return self._tag == 'limited_admin' + return self._tag == "limited_admin" def is_member_only(self): """ @@ -2252,7 +2387,7 @@ def is_member_only(self): :rtype: bool """ - return self._tag == 'member_only' + return self._tag == "member_only" def is_reporting_admin(self): """ @@ -2260,7 +2395,7 @@ def is_reporting_admin(self): :rtype: bool """ - return self._tag == 'reporting_admin' + return self._tag == "reporting_admin" def is_security_admin(self): """ @@ -2268,7 +2403,7 @@ def is_security_admin(self): :rtype: bool """ - return self._tag == 'security_admin' + return self._tag == "security_admin" def is_support_admin(self): """ @@ -2276,7 +2411,7 @@ def is_support_admin(self): :rtype: bool """ - return self._tag == 'support_admin' + return self._tag == "support_admin" def is_team_admin(self): """ @@ -2284,7 +2419,7 @@ def is_team_admin(self): :rtype: bool """ - return self._tag == 'team_admin' + return self._tag == "team_admin" def is_user_management_admin(self): """ @@ -2292,7 +2427,7 @@ def is_user_management_admin(self): :rtype: bool """ - return self._tag == 'user_management_admin' + return self._tag == "user_management_admin" def is_other(self): """ @@ -2300,13 +2435,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(AdminRole, self)._process_custom_annotations(annotation_type, field_path, processor) + AdminRole_validator = bv.Union(AdminRole) + class AiThirdPartySharingDropboxBasePolicy(bb.Union): """ Policy for deciding whether team users can use third party AI services @@ -2316,7 +2453,7 @@ class AiThirdPartySharingDropboxBasePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition admins_only = None # Attribute is overwritten below the class definition @@ -2334,7 +2471,7 @@ def is_admins_only(self): :rtype: bool """ - return self._tag == 'admins_only' + return self._tag == "admins_only" def is_default(self): """ @@ -2342,7 +2479,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -2350,7 +2487,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -2358,7 +2495,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -2366,13 +2503,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AiThirdPartySharingDropboxBasePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AiThirdPartySharingDropboxBasePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AiThirdPartySharingDropboxBasePolicy_validator = bv.Union(AiThirdPartySharingDropboxBasePolicy) + class AiThirdPartySharingDropboxBasePolicyChangedDetails(bb.Struct): """ Changed AI third party sharing policy for team. @@ -2384,15 +2525,13 @@ class AiThirdPartySharingDropboxBasePolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -2407,20 +2546,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AiThirdPartySharingDropboxBasePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AiThirdPartySharingDropboxBasePolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -AiThirdPartySharingDropboxBasePolicyChangedDetails_validator = bv.Struct(AiThirdPartySharingDropboxBasePolicyChangedDetails) -class AiThirdPartySharingDropboxBasePolicyChangedType(bb.Struct): +AiThirdPartySharingDropboxBasePolicyChangedDetails_validator = bv.Struct( + AiThirdPartySharingDropboxBasePolicyChangedDetails +) + +class AiThirdPartySharingDropboxBasePolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2429,9 +2572,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AiThirdPartySharingDropboxBasePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AiThirdPartySharingDropboxBasePolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +AiThirdPartySharingDropboxBasePolicyChangedType_validator = bv.Struct( + AiThirdPartySharingDropboxBasePolicyChangedType +) -AiThirdPartySharingDropboxBasePolicyChangedType_validator = bv.Struct(AiThirdPartySharingDropboxBasePolicyChangedType) class AlertRecipientsSettingType(bb.Union): """ @@ -2442,7 +2591,7 @@ class AlertRecipientsSettingType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition custom_list = None # Attribute is overwritten below the class definition @@ -2460,7 +2609,7 @@ def is_custom_list(self): :rtype: bool """ - return self._tag == 'custom_list' + return self._tag == "custom_list" def is_invalid(self): """ @@ -2468,7 +2617,7 @@ def is_invalid(self): :rtype: bool """ - return self._tag == 'invalid' + return self._tag == "invalid" def is_none(self): """ @@ -2476,7 +2625,7 @@ def is_none(self): :rtype: bool """ - return self._tag == 'none' + return self._tag == "none" def is_team_admins(self): """ @@ -2484,7 +2633,7 @@ def is_team_admins(self): :rtype: bool """ - return self._tag == 'team_admins' + return self._tag == "team_admins" def is_other(self): """ @@ -2492,20 +2641,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AlertRecipientsSettingType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AlertRecipientsSettingType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AlertRecipientsSettingType_validator = bv.Union(AlertRecipientsSettingType) + class AllowDownloadDisabledDetails(bb.Struct): """ Disabled downloads. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -2513,20 +2665,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AllowDownloadDisabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AllowDownloadDisabledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AllowDownloadDisabledDetails_validator = bv.Struct(AllowDownloadDisabledDetails) -class AllowDownloadDisabledType(bb.Struct): +class AllowDownloadDisabledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2535,17 +2689,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AllowDownloadDisabledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AllowDownloadDisabledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AllowDownloadDisabledType_validator = bv.Struct(AllowDownloadDisabledType) + class AllowDownloadEnabledDetails(bb.Struct): """ Enabled downloads. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -2553,20 +2710,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AllowDownloadEnabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AllowDownloadEnabledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AllowDownloadEnabledDetails_validator = bv.Struct(AllowDownloadEnabledDetails) -class AllowDownloadEnabledType(bb.Struct): +class AllowDownloadEnabledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2575,10 +2734,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AllowDownloadEnabledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AllowDownloadEnabledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AllowDownloadEnabledType_validator = bv.Struct(AllowDownloadEnabledType) + class ApiSessionLogInfo(bb.Struct): """ Api session. @@ -2588,13 +2751,12 @@ class ApiSessionLogInfo(bb.Struct): """ __slots__ = [ - '_request_id_value', + "_request_id_value", ] _has_required_fields = True - def __init__(self, - request_id=None): + def __init__(self, request_id=None): self._request_id_value = bb.NOT_SET if request_id is not None: self.request_id = request_id @@ -2603,10 +2765,14 @@ def __init__(self, request_id = bb.Attribute("request_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApiSessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApiSessionLogInfo_validator = bv.Struct(ApiSessionLogInfo) + class AppBlockedByPermissionsDetails(bb.Struct): """ Failed to connect app for member. @@ -2616,13 +2782,12 @@ class AppBlockedByPermissionsDetails(bb.Struct): """ __slots__ = [ - '_app_info_value', + "_app_info_value", ] _has_required_fields = True - def __init__(self, - app_info=None): + def __init__(self, app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -2631,20 +2796,22 @@ def __init__(self, app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppBlockedByPermissionsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppBlockedByPermissionsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppBlockedByPermissionsDetails_validator = bv.Struct(AppBlockedByPermissionsDetails) -class AppBlockedByPermissionsType(bb.Struct): +class AppBlockedByPermissionsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2653,10 +2820,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppBlockedByPermissionsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppBlockedByPermissionsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppBlockedByPermissionsType_validator = bv.Struct(AppBlockedByPermissionsType) + class AppLinkTeamDetails(bb.Struct): """ Linked app for team. @@ -2666,13 +2837,12 @@ class AppLinkTeamDetails(bb.Struct): """ __slots__ = [ - '_app_info_value', + "_app_info_value", ] _has_required_fields = True - def __init__(self, - app_info=None): + def __init__(self, app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -2681,20 +2851,22 @@ def __init__(self, app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppLinkTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppLinkTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppLinkTeamDetails_validator = bv.Struct(AppLinkTeamDetails) -class AppLinkTeamType(bb.Struct): +class AppLinkTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2703,10 +2875,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppLinkTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppLinkTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppLinkTeamType_validator = bv.Struct(AppLinkTeamType) + class AppLinkUserDetails(bb.Struct): """ Linked app for member. @@ -2716,13 +2892,12 @@ class AppLinkUserDetails(bb.Struct): """ __slots__ = [ - '_app_info_value', + "_app_info_value", ] _has_required_fields = True - def __init__(self, - app_info=None): + def __init__(self, app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -2731,20 +2906,22 @@ def __init__(self, app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppLinkUserDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppLinkUserDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppLinkUserDetails_validator = bv.Struct(AppLinkUserDetails) -class AppLinkUserType(bb.Struct): +class AppLinkUserType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2753,10 +2930,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppLinkUserType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppLinkUserType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppLinkUserType_validator = bv.Struct(AppLinkUserType) + class AppLogInfo(bb.Struct): """ App's logged information. @@ -2768,15 +2949,13 @@ class AppLogInfo(bb.Struct): """ __slots__ = [ - '_app_id_value', - '_display_name_value', + "_app_id_value", + "_display_name_value", ] _has_required_fields = False - def __init__(self, - app_id=None, - display_name=None): + def __init__(self, app_id=None, display_name=None): self._app_id_value = bb.NOT_SET self._display_name_value = bb.NOT_SET if app_id is not None: @@ -2793,8 +2972,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(AppLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + AppLogInfo_validator = bv.StructTree(AppLogInfo) + class AppPermissionsChangedDetails(bb.Struct): """ Changed app permissions. @@ -2810,19 +2991,15 @@ class AppPermissionsChangedDetails(bb.Struct): """ __slots__ = [ - '_app_name_value', - '_permission_value', - '_previous_value_value', - '_new_value_value', + "_app_name_value", + "_permission_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None, - app_name=None, - permission=None): + def __init__(self, previous_value=None, new_value=None, app_name=None, permission=None): self._app_name_value = bb.NOT_SET self._permission_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -2849,20 +3026,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppPermissionsChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppPermissionsChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppPermissionsChangedDetails_validator = bv.Struct(AppPermissionsChangedDetails) -class AppPermissionsChangedType(bb.Struct): +class AppPermissionsChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2871,10 +3050,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppPermissionsChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppPermissionsChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppPermissionsChangedType_validator = bv.Struct(AppPermissionsChangedType) + class AppUnlinkTeamDetails(bb.Struct): """ Unlinked app for team. @@ -2884,13 +3067,12 @@ class AppUnlinkTeamDetails(bb.Struct): """ __slots__ = [ - '_app_info_value', + "_app_info_value", ] _has_required_fields = True - def __init__(self, - app_info=None): + def __init__(self, app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -2899,20 +3081,22 @@ def __init__(self, app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppUnlinkTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppUnlinkTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppUnlinkTeamDetails_validator = bv.Struct(AppUnlinkTeamDetails) -class AppUnlinkTeamType(bb.Struct): +class AppUnlinkTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2921,10 +3105,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppUnlinkTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppUnlinkTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppUnlinkTeamType_validator = bv.Struct(AppUnlinkTeamType) + class AppUnlinkUserDetails(bb.Struct): """ Unlinked app for member. @@ -2934,13 +3122,12 @@ class AppUnlinkUserDetails(bb.Struct): """ __slots__ = [ - '_app_info_value', + "_app_info_value", ] _has_required_fields = True - def __init__(self, - app_info=None): + def __init__(self, app_info=None): self._app_info_value = bb.NOT_SET if app_info is not None: self.app_info = app_info @@ -2949,20 +3136,22 @@ def __init__(self, app_info = bb.Attribute("app_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppUnlinkUserDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppUnlinkUserDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppUnlinkUserDetails_validator = bv.Struct(AppUnlinkUserDetails) -class AppUnlinkUserType(bb.Struct): +class AppUnlinkUserType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -2971,10 +3160,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppUnlinkUserType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppUnlinkUserType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppUnlinkUserType_validator = bv.Struct(AppUnlinkUserType) + class AppleLoginChangePolicyDetails(bb.Struct): """ Enabled/disabled Apple login for team. @@ -2987,15 +3180,13 @@ class AppleLoginChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -3010,20 +3201,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppleLoginChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppleLoginChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppleLoginChangePolicyDetails_validator = bv.Struct(AppleLoginChangePolicyDetails) -class AppleLoginChangePolicyType(bb.Struct): +class AppleLoginChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3032,10 +3225,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppleLoginChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppleLoginChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppleLoginChangePolicyType_validator = bv.Struct(AppleLoginChangePolicyType) + class AppleLoginPolicy(bb.Union): """ Apple login policy @@ -3045,7 +3242,7 @@ class AppleLoginPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -3061,7 +3258,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -3069,7 +3266,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -3077,7 +3274,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -3085,20 +3282,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppleLoginPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AppleLoginPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AppleLoginPolicy_validator = bv.Union(AppleLoginPolicy) + class ApplyNamingConventionDetails(bb.Struct): """ Applied naming convention. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -3106,20 +3306,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApplyNamingConventionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApplyNamingConventionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApplyNamingConventionDetails_validator = bv.Struct(ApplyNamingConventionDetails) -class ApplyNamingConventionType(bb.Struct): +class ApplyNamingConventionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3128,10 +3330,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApplyNamingConventionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ApplyNamingConventionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ApplyNamingConventionType_validator = bv.Struct(ApplyNamingConventionType) + class AssetLogInfo(bb.Union): """ Asset details. @@ -3157,7 +3363,7 @@ class AssetLogInfo(bb.Union): :vartype AssetLogInfo.showcase_document: ShowcaseDocumentLogInfo """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -3170,7 +3376,7 @@ def file(cls, val): :param FileLogInfo val: :rtype: AssetLogInfo """ - return cls('file', val) + return cls("file", val) @classmethod def folder(cls, val): @@ -3181,7 +3387,7 @@ def folder(cls, val): :param FolderLogInfo val: :rtype: AssetLogInfo """ - return cls('folder', val) + return cls("folder", val) @classmethod def paper_document(cls, val): @@ -3192,7 +3398,7 @@ def paper_document(cls, val): :param PaperDocumentLogInfo val: :rtype: AssetLogInfo """ - return cls('paper_document', val) + return cls("paper_document", val) @classmethod def paper_folder(cls, val): @@ -3203,7 +3409,7 @@ def paper_folder(cls, val): :param PaperFolderLogInfo val: :rtype: AssetLogInfo """ - return cls('paper_folder', val) + return cls("paper_folder", val) @classmethod def showcase_document(cls, val): @@ -3214,7 +3420,7 @@ def showcase_document(cls, val): :param ShowcaseDocumentLogInfo val: :rtype: AssetLogInfo """ - return cls('showcase_document', val) + return cls("showcase_document", val) def is_file(self): """ @@ -3222,7 +3428,7 @@ def is_file(self): :rtype: bool """ - return self._tag == 'file' + return self._tag == "file" def is_folder(self): """ @@ -3230,7 +3436,7 @@ def is_folder(self): :rtype: bool """ - return self._tag == 'folder' + return self._tag == "folder" def is_paper_document(self): """ @@ -3238,7 +3444,7 @@ def is_paper_document(self): :rtype: bool """ - return self._tag == 'paper_document' + return self._tag == "paper_document" def is_paper_folder(self): """ @@ -3246,7 +3452,7 @@ def is_paper_folder(self): :rtype: bool """ - return self._tag == 'paper_folder' + return self._tag == "paper_folder" def is_showcase_document(self): """ @@ -3254,7 +3460,7 @@ def is_showcase_document(self): :rtype: bool """ - return self._tag == 'showcase_document' + return self._tag == "showcase_document" def is_other(self): """ @@ -3262,7 +3468,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_file(self): """ @@ -3325,17 +3531,20 @@ def get_showcase_document(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AssetLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(AssetLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + AssetLogInfo_validator = bv.Union(AssetLogInfo) + class BackupAdminInvitationSentDetails(bb.Struct): """ Invited members to activate Backup. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -3343,20 +3552,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupAdminInvitationSentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BackupAdminInvitationSentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BackupAdminInvitationSentDetails_validator = bv.Struct(BackupAdminInvitationSentDetails) -class BackupAdminInvitationSentType(bb.Struct): +class BackupAdminInvitationSentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3365,17 +3576,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupAdminInvitationSentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BackupAdminInvitationSentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BackupAdminInvitationSentType_validator = bv.Struct(BackupAdminInvitationSentType) + class BackupInvitationOpenedDetails(bb.Struct): """ Opened Backup invite. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -3383,20 +3597,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupInvitationOpenedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BackupInvitationOpenedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BackupInvitationOpenedDetails_validator = bv.Struct(BackupInvitationOpenedDetails) -class BackupInvitationOpenedType(bb.Struct): +class BackupInvitationOpenedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3405,10 +3621,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupInvitationOpenedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BackupInvitationOpenedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BackupInvitationOpenedType_validator = bv.Struct(BackupInvitationOpenedType) + class BackupStatus(bb.Union): """ Backup status @@ -3418,7 +3638,7 @@ class BackupStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -3432,7 +3652,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -3440,7 +3660,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -3448,13 +3668,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BackupStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BackupStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BackupStatus_validator = bv.Union(BackupStatus) + class BinderAddPageDetails(bb.Struct): """ Added Binder page. @@ -3468,17 +3692,14 @@ class BinderAddPageDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_doc_title_value', - '_binder_item_name_value', + "_event_uuid_value", + "_doc_title_value", + "_binder_item_name_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - doc_title=None, - binder_item_name=None): + def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3499,20 +3720,22 @@ def __init__(self, binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderAddPageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderAddPageDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderAddPageDetails_validator = bv.Struct(BinderAddPageDetails) -class BinderAddPageType(bb.Struct): +class BinderAddPageType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3521,10 +3744,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderAddPageType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderAddPageType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderAddPageType_validator = bv.Struct(BinderAddPageType) + class BinderAddSectionDetails(bb.Struct): """ Added Binder section. @@ -3538,17 +3765,14 @@ class BinderAddSectionDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_doc_title_value', - '_binder_item_name_value', + "_event_uuid_value", + "_doc_title_value", + "_binder_item_name_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - doc_title=None, - binder_item_name=None): + def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3569,20 +3793,22 @@ def __init__(self, binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderAddSectionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderAddSectionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderAddSectionDetails_validator = bv.Struct(BinderAddSectionDetails) -class BinderAddSectionType(bb.Struct): +class BinderAddSectionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3591,10 +3817,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderAddSectionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderAddSectionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderAddSectionType_validator = bv.Struct(BinderAddSectionType) + class BinderRemovePageDetails(bb.Struct): """ Removed Binder page. @@ -3608,17 +3838,14 @@ class BinderRemovePageDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_doc_title_value', - '_binder_item_name_value', + "_event_uuid_value", + "_doc_title_value", + "_binder_item_name_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - doc_title=None, - binder_item_name=None): + def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3639,20 +3866,22 @@ def __init__(self, binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRemovePageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderRemovePageDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderRemovePageDetails_validator = bv.Struct(BinderRemovePageDetails) -class BinderRemovePageType(bb.Struct): +class BinderRemovePageType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3661,10 +3890,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRemovePageType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderRemovePageType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderRemovePageType_validator = bv.Struct(BinderRemovePageType) + class BinderRemoveSectionDetails(bb.Struct): """ Removed Binder section. @@ -3678,17 +3911,14 @@ class BinderRemoveSectionDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_doc_title_value', - '_binder_item_name_value', + "_event_uuid_value", + "_doc_title_value", + "_binder_item_name_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - doc_title=None, - binder_item_name=None): + def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3709,20 +3939,22 @@ def __init__(self, binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRemoveSectionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderRemoveSectionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderRemoveSectionDetails_validator = bv.Struct(BinderRemoveSectionDetails) -class BinderRemoveSectionType(bb.Struct): +class BinderRemoveSectionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3731,10 +3963,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRemoveSectionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderRemoveSectionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderRemoveSectionType_validator = bv.Struct(BinderRemoveSectionType) + class BinderRenamePageDetails(bb.Struct): """ Renamed Binder page. @@ -3750,19 +3986,21 @@ class BinderRenamePageDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_doc_title_value', - '_binder_item_name_value', - '_previous_binder_item_name_value', + "_event_uuid_value", + "_doc_title_value", + "_binder_item_name_value", + "_previous_binder_item_name_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - doc_title=None, - binder_item_name=None, - previous_binder_item_name=None): + def __init__( + self, + event_uuid=None, + doc_title=None, + binder_item_name=None, + previous_binder_item_name=None, + ): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3789,20 +4027,22 @@ def __init__(self, previous_binder_item_name = bb.Attribute("previous_binder_item_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRenamePageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderRenamePageDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderRenamePageDetails_validator = bv.Struct(BinderRenamePageDetails) -class BinderRenamePageType(bb.Struct): +class BinderRenamePageType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3811,10 +4051,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRenamePageType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderRenamePageType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderRenamePageType_validator = bv.Struct(BinderRenamePageType) + class BinderRenameSectionDetails(bb.Struct): """ Renamed Binder section. @@ -3830,19 +4074,21 @@ class BinderRenameSectionDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_doc_title_value', - '_binder_item_name_value', - '_previous_binder_item_name_value', + "_event_uuid_value", + "_doc_title_value", + "_binder_item_name_value", + "_previous_binder_item_name_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - doc_title=None, - binder_item_name=None, - previous_binder_item_name=None): + def __init__( + self, + event_uuid=None, + doc_title=None, + binder_item_name=None, + previous_binder_item_name=None, + ): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3869,20 +4115,22 @@ def __init__(self, previous_binder_item_name = bb.Attribute("previous_binder_item_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRenameSectionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderRenameSectionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderRenameSectionDetails_validator = bv.Struct(BinderRenameSectionDetails) -class BinderRenameSectionType(bb.Struct): +class BinderRenameSectionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3891,10 +4139,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderRenameSectionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderRenameSectionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderRenameSectionType_validator = bv.Struct(BinderRenameSectionType) + class BinderReorderPageDetails(bb.Struct): """ Reordered Binder page. @@ -3908,17 +4160,14 @@ class BinderReorderPageDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_doc_title_value', - '_binder_item_name_value', + "_event_uuid_value", + "_doc_title_value", + "_binder_item_name_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - doc_title=None, - binder_item_name=None): + def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -3939,20 +4188,22 @@ def __init__(self, binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderReorderPageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderReorderPageDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderReorderPageDetails_validator = bv.Struct(BinderReorderPageDetails) -class BinderReorderPageType(bb.Struct): +class BinderReorderPageType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -3961,10 +4212,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderReorderPageType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderReorderPageType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderReorderPageType_validator = bv.Struct(BinderReorderPageType) + class BinderReorderSectionDetails(bb.Struct): """ Reordered Binder section. @@ -3978,17 +4233,14 @@ class BinderReorderSectionDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_doc_title_value', - '_binder_item_name_value', + "_event_uuid_value", + "_doc_title_value", + "_binder_item_name_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - doc_title=None, - binder_item_name=None): + def __init__(self, event_uuid=None, doc_title=None, binder_item_name=None): self._event_uuid_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET self._binder_item_name_value = bb.NOT_SET @@ -4009,20 +4261,22 @@ def __init__(self, binder_item_name = bb.Attribute("binder_item_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderReorderSectionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderReorderSectionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderReorderSectionDetails_validator = bv.Struct(BinderReorderSectionDetails) -class BinderReorderSectionType(bb.Struct): +class BinderReorderSectionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4031,10 +4285,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BinderReorderSectionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BinderReorderSectionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BinderReorderSectionType_validator = bv.Struct(BinderReorderSectionType) + class CameraUploadsPolicy(bb.Union): """ Policy for controlling if team members can activate camera uploads @@ -4044,7 +4302,7 @@ class CameraUploadsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -4058,7 +4316,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -4066,7 +4324,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -4074,13 +4332,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CameraUploadsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CameraUploadsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CameraUploadsPolicy_validator = bv.Union(CameraUploadsPolicy) + class CameraUploadsPolicyChangedDetails(bb.Struct): """ Changed camera uploads setting for team. @@ -4092,15 +4354,13 @@ class CameraUploadsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -4115,20 +4375,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CameraUploadsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CameraUploadsPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CameraUploadsPolicyChangedDetails_validator = bv.Struct(CameraUploadsPolicyChangedDetails) -class CameraUploadsPolicyChangedType(bb.Struct): +class CameraUploadsPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4137,10 +4399,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CameraUploadsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CameraUploadsPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CameraUploadsPolicyChangedType_validator = bv.Struct(CameraUploadsPolicyChangedType) + class CaptureTeamSpacePolicy(bb.Union): """ Policy for deciding whether team users have access to the Capture team space @@ -4150,7 +4416,7 @@ class CaptureTeamSpacePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -4164,7 +4430,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -4172,7 +4438,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -4180,13 +4446,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTeamSpacePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CaptureTeamSpacePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CaptureTeamSpacePolicy_validator = bv.Union(CaptureTeamSpacePolicy) + class CaptureTeamSpacePolicyChangedDetails(bb.Struct): """ Changed Capture team space policy for team. @@ -4198,15 +4468,13 @@ class CaptureTeamSpacePolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -4221,20 +4489,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTeamSpacePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CaptureTeamSpacePolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CaptureTeamSpacePolicyChangedDetails_validator = bv.Struct(CaptureTeamSpacePolicyChangedDetails) -class CaptureTeamSpacePolicyChangedType(bb.Struct): +class CaptureTeamSpacePolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4243,10 +4513,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTeamSpacePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CaptureTeamSpacePolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CaptureTeamSpacePolicyChangedType_validator = bv.Struct(CaptureTeamSpacePolicyChangedType) + class CaptureTranscriptPolicy(bb.Union): """ Policy for deciding whether team users can transcription in Capture @@ -4256,7 +4530,7 @@ class CaptureTranscriptPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -4272,7 +4546,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -4280,7 +4554,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -4288,7 +4562,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -4296,13 +4570,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTranscriptPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CaptureTranscriptPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CaptureTranscriptPolicy_validator = bv.Union(CaptureTranscriptPolicy) + class CaptureTranscriptPolicyChangedDetails(bb.Struct): """ Changed Capture transcription policy for team. @@ -4314,15 +4592,13 @@ class CaptureTranscriptPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -4337,20 +4613,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTranscriptPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CaptureTranscriptPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CaptureTranscriptPolicyChangedDetails_validator = bv.Struct(CaptureTranscriptPolicyChangedDetails) -class CaptureTranscriptPolicyChangedType(bb.Struct): +class CaptureTranscriptPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4359,10 +4637,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CaptureTranscriptPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CaptureTranscriptPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CaptureTranscriptPolicyChangedType_validator = bv.Struct(CaptureTranscriptPolicyChangedType) + class Certificate(bb.Struct): """ Certificate details. @@ -4384,25 +4666,27 @@ class Certificate(bb.Struct): """ __slots__ = [ - '_subject_value', - '_issuer_value', - '_issue_date_value', - '_expiration_date_value', - '_serial_number_value', - '_sha1_fingerprint_value', - '_common_name_value', + "_subject_value", + "_issuer_value", + "_issue_date_value", + "_expiration_date_value", + "_serial_number_value", + "_sha1_fingerprint_value", + "_common_name_value", ] _has_required_fields = True - def __init__(self, - subject=None, - issuer=None, - issue_date=None, - expiration_date=None, - serial_number=None, - sha1_fingerprint=None, - common_name=None): + def __init__( + self, + subject=None, + issuer=None, + issue_date=None, + expiration_date=None, + serial_number=None, + sha1_fingerprint=None, + common_name=None, + ): self._subject_value = bb.NOT_SET self._issuer_value = bb.NOT_SET self._issue_date_value = bb.NOT_SET @@ -4449,8 +4733,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(Certificate, self)._process_custom_annotations(annotation_type, field_path, processor) + Certificate_validator = bv.Struct(Certificate) + class ChangeLinkExpirationPolicy(bb.Union): """ Policy for deciding whether the team's default expiration days policy must @@ -4461,7 +4747,7 @@ class ChangeLinkExpirationPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition allowed = None # Attribute is overwritten below the class definition @@ -4475,7 +4761,7 @@ def is_allowed(self): :rtype: bool """ - return self._tag == 'allowed' + return self._tag == "allowed" def is_not_allowed(self): """ @@ -4483,7 +4769,7 @@ def is_not_allowed(self): :rtype: bool """ - return self._tag == 'not_allowed' + return self._tag == "not_allowed" def is_other(self): """ @@ -4491,13 +4777,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangeLinkExpirationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ChangeLinkExpirationPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ChangeLinkExpirationPolicy_validator = bv.Union(ChangeLinkExpirationPolicy) + class ChangedEnterpriseAdminRoleDetails(bb.Struct): """ Changed enterprise admin role. @@ -4511,17 +4801,14 @@ class ChangedEnterpriseAdminRoleDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', - '_team_name_value', + "_previous_value_value", + "_new_value_value", + "_team_name_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None, - team_name=None): + def __init__(self, previous_value=None, new_value=None, team_name=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET self._team_name_value = bb.NOT_SET @@ -4542,20 +4829,22 @@ def __init__(self, team_name = bb.Attribute("team_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangedEnterpriseAdminRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ChangedEnterpriseAdminRoleDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ChangedEnterpriseAdminRoleDetails_validator = bv.Struct(ChangedEnterpriseAdminRoleDetails) -class ChangedEnterpriseAdminRoleType(bb.Struct): +class ChangedEnterpriseAdminRoleType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4564,10 +4853,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangedEnterpriseAdminRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ChangedEnterpriseAdminRoleType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ChangedEnterpriseAdminRoleType_validator = bv.Struct(ChangedEnterpriseAdminRoleType) + class ChangedEnterpriseConnectedTeamStatusDetails(bb.Struct): """ Changed enterprise-connected team status. @@ -4583,19 +4876,15 @@ class ChangedEnterpriseConnectedTeamStatusDetails(bb.Struct): """ __slots__ = [ - '_action_value', - '_additional_info_value', - '_previous_value_value', - '_new_value_value', + "_action_value", + "_additional_info_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - action=None, - additional_info=None, - previous_value=None, - new_value=None): + def __init__(self, action=None, additional_info=None, previous_value=None, new_value=None): self._action_value = bb.NOT_SET self._additional_info_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -4622,20 +4911,24 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangedEnterpriseConnectedTeamStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ChangedEnterpriseConnectedTeamStatusDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -ChangedEnterpriseConnectedTeamStatusDetails_validator = bv.Struct(ChangedEnterpriseConnectedTeamStatusDetails) -class ChangedEnterpriseConnectedTeamStatusType(bb.Struct): +ChangedEnterpriseConnectedTeamStatusDetails_validator = bv.Struct( + ChangedEnterpriseConnectedTeamStatusDetails +) + +class ChangedEnterpriseConnectedTeamStatusType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4644,9 +4937,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ChangedEnterpriseConnectedTeamStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ChangedEnterpriseConnectedTeamStatusType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +ChangedEnterpriseConnectedTeamStatusType_validator = bv.Struct( + ChangedEnterpriseConnectedTeamStatusType +) -ChangedEnterpriseConnectedTeamStatusType_validator = bv.Struct(ChangedEnterpriseConnectedTeamStatusType) class ClassificationChangePolicyDetails(bb.Struct): """ @@ -4661,17 +4960,14 @@ class ClassificationChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', - '_classification_type_value', + "_previous_value_value", + "_new_value_value", + "_classification_type_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None, - classification_type=None): + def __init__(self, previous_value=None, new_value=None, classification_type=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET self._classification_type_value = bb.NOT_SET @@ -4692,20 +4988,22 @@ def __init__(self, classification_type = bb.Attribute("classification_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ClassificationChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ClassificationChangePolicyDetails_validator = bv.Struct(ClassificationChangePolicyDetails) -class ClassificationChangePolicyType(bb.Struct): +class ClassificationChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4714,17 +5012,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ClassificationChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ClassificationChangePolicyType_validator = bv.Struct(ClassificationChangePolicyType) + class ClassificationCreateReportDetails(bb.Struct): """ Created Classification report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -4732,10 +5033,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ClassificationCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ClassificationCreateReportDetails_validator = bv.Struct(ClassificationCreateReportDetails) + class ClassificationCreateReportFailDetails(bb.Struct): """ Couldn't create Classification report. @@ -4745,13 +5050,12 @@ class ClassificationCreateReportFailDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -4760,20 +5064,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationCreateReportFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ClassificationCreateReportFailDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ClassificationCreateReportFailDetails_validator = bv.Struct(ClassificationCreateReportFailDetails) -class ClassificationCreateReportFailType(bb.Struct): +class ClassificationCreateReportFailType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4782,20 +5088,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationCreateReportFailType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ClassificationCreateReportFailType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ClassificationCreateReportFailType_validator = bv.Struct(ClassificationCreateReportFailType) -class ClassificationCreateReportType(bb.Struct): +class ClassificationCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4804,10 +5112,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ClassificationCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ClassificationCreateReportType_validator = bv.Struct(ClassificationCreateReportType) + class ClassificationPolicyEnumWrapper(bb.Union): """ Policy for controlling team access to the classification feature @@ -4817,7 +5129,7 @@ class ClassificationPolicyEnumWrapper(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -4835,7 +5147,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -4843,7 +5155,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_member_and_team_folders(self): """ @@ -4851,7 +5163,7 @@ def is_member_and_team_folders(self): :rtype: bool """ - return self._tag == 'member_and_team_folders' + return self._tag == "member_and_team_folders" def is_team_folders(self): """ @@ -4859,7 +5171,7 @@ def is_team_folders(self): :rtype: bool """ - return self._tag == 'team_folders' + return self._tag == "team_folders" def is_other(self): """ @@ -4867,13 +5179,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationPolicyEnumWrapper, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ClassificationPolicyEnumWrapper, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ClassificationPolicyEnumWrapper_validator = bv.Union(ClassificationPolicyEnumWrapper) + class ClassificationType(bb.Union): """ The type of classification (currently only personal information) @@ -4883,7 +5199,7 @@ class ClassificationType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition personal_information = None # Attribute is overwritten below the class definition @@ -4897,7 +5213,7 @@ def is_personal_information(self): :rtype: bool """ - return self._tag == 'personal_information' + return self._tag == "personal_information" def is_pii(self): """ @@ -4905,7 +5221,7 @@ def is_pii(self): :rtype: bool """ - return self._tag == 'pii' + return self._tag == "pii" def is_other(self): """ @@ -4913,13 +5229,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ClassificationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ClassificationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ClassificationType_validator = bv.Union(ClassificationType) + class CollectionShareDetails(bb.Struct): """ Shared album. @@ -4929,13 +5249,12 @@ class CollectionShareDetails(bb.Struct): """ __slots__ = [ - '_album_name_value', + "_album_name_value", ] _has_required_fields = True - def __init__(self, - album_name=None): + def __init__(self, album_name=None): self._album_name_value = bb.NOT_SET if album_name is not None: self.album_name = album_name @@ -4944,20 +5263,22 @@ def __init__(self, album_name = bb.Attribute("album_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CollectionShareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CollectionShareDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CollectionShareDetails_validator = bv.Struct(CollectionShareDetails) -class CollectionShareType(bb.Struct): +class CollectionShareType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -4966,10 +5287,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CollectionShareType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CollectionShareType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CollectionShareType_validator = bv.Struct(CollectionShareType) + class ComputerBackupPolicy(bb.Union): """ Policy for controlling team access to computer backup feature @@ -4979,7 +5304,7 @@ class ComputerBackupPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -4995,7 +5320,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -5003,7 +5328,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -5011,7 +5336,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -5019,13 +5344,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ComputerBackupPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ComputerBackupPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ComputerBackupPolicy_validator = bv.Union(ComputerBackupPolicy) + class ComputerBackupPolicyChangedDetails(bb.Struct): """ Changed computer backup policy for team. @@ -5037,15 +5366,13 @@ class ComputerBackupPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -5060,20 +5387,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ComputerBackupPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ComputerBackupPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ComputerBackupPolicyChangedDetails_validator = bv.Struct(ComputerBackupPolicyChangedDetails) -class ComputerBackupPolicyChangedType(bb.Struct): +class ComputerBackupPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5082,10 +5411,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ComputerBackupPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ComputerBackupPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ComputerBackupPolicyChangedType_validator = bv.Struct(ComputerBackupPolicyChangedType) + class ConnectedTeamName(bb.Struct): """ The name of the team @@ -5095,13 +5428,12 @@ class ConnectedTeamName(bb.Struct): """ __slots__ = [ - '_team_value', + "_team_value", ] _has_required_fields = True - def __init__(self, - team=None): + def __init__(self, team=None): self._team_value = bb.NOT_SET if team is not None: self.team = team @@ -5110,10 +5442,14 @@ def __init__(self, team = bb.Attribute("team") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ConnectedTeamName, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ConnectedTeamName, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ConnectedTeamName_validator = bv.Struct(ConnectedTeamName) + class ContentAdministrationPolicyChangedDetails(bb.Struct): """ Changed content management setting. @@ -5125,15 +5461,13 @@ class ContentAdministrationPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -5148,20 +5482,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentAdministrationPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContentAdministrationPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -ContentAdministrationPolicyChangedDetails_validator = bv.Struct(ContentAdministrationPolicyChangedDetails) -class ContentAdministrationPolicyChangedType(bb.Struct): +ContentAdministrationPolicyChangedDetails_validator = bv.Struct( + ContentAdministrationPolicyChangedDetails +) + +class ContentAdministrationPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5170,10 +5508,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentAdministrationPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContentAdministrationPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ContentAdministrationPolicyChangedType_validator = bv.Struct(ContentAdministrationPolicyChangedType) + class ContentDeletionProtectionChangePolicyDetails(bb.Struct): """ Changed content deletion protection policy for team. @@ -5192,19 +5534,21 @@ class ContentDeletionProtectionChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_new_threshold_bytes_value', - '_previous_value_value', - '_previous_threshold_bytes_value', + "_new_value_value", + "_new_threshold_bytes_value", + "_previous_value_value", + "_previous_threshold_bytes_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - new_threshold_bytes=None, - previous_value=None, - previous_threshold_bytes=None): + def __init__( + self, + new_value=None, + new_threshold_bytes=None, + previous_value=None, + previous_threshold_bytes=None, + ): self._new_value_value = bb.NOT_SET self._new_threshold_bytes_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -5231,20 +5575,24 @@ def __init__(self, previous_threshold_bytes = bb.Attribute("previous_threshold_bytes", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentDeletionProtectionChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContentDeletionProtectionChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -ContentDeletionProtectionChangePolicyDetails_validator = bv.Struct(ContentDeletionProtectionChangePolicyDetails) -class ContentDeletionProtectionChangePolicyType(bb.Struct): +ContentDeletionProtectionChangePolicyDetails_validator = bv.Struct( + ContentDeletionProtectionChangePolicyDetails +) + +class ContentDeletionProtectionChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5253,9 +5601,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentDeletionProtectionChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContentDeletionProtectionChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +ContentDeletionProtectionChangePolicyType_validator = bv.Struct( + ContentDeletionProtectionChangePolicyType +) -ContentDeletionProtectionChangePolicyType_validator = bv.Struct(ContentDeletionProtectionChangePolicyType) class ContentDeletionProtectionPolicy(bb.Union): """ @@ -5266,7 +5620,7 @@ class ContentDeletionProtectionPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition off = None # Attribute is overwritten below the class definition @@ -5282,7 +5636,7 @@ def is_off(self): :rtype: bool """ - return self._tag == 'off' + return self._tag == "off" def is_on_above_threshold(self): """ @@ -5290,7 +5644,7 @@ def is_on_above_threshold(self): :rtype: bool """ - return self._tag == 'on_above_threshold' + return self._tag == "on_above_threshold" def is_on_all_files(self): """ @@ -5298,7 +5652,7 @@ def is_on_all_files(self): :rtype: bool """ - return self._tag == 'on_all_files' + return self._tag == "on_all_files" def is_other(self): """ @@ -5306,13 +5660,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentDeletionProtectionPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContentDeletionProtectionPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ContentDeletionProtectionPolicy_validator = bv.Union(ContentDeletionProtectionPolicy) + class ContentPermanentDeletePolicy(bb.Union): """ Policy for pemanent content deletion @@ -5322,7 +5680,7 @@ class ContentPermanentDeletePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -5336,7 +5694,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -5344,7 +5702,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -5352,13 +5710,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContentPermanentDeletePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContentPermanentDeletePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ContentPermanentDeletePolicy_validator = bv.Union(ContentPermanentDeletePolicy) + class ContextLogInfo(bb.Union): """ The primary entity on which the action was done. @@ -5385,7 +5747,7 @@ class ContextLogInfo(bb.Union): :vartype ContextLogInfo.trusted_non_team_member: TrustedNonTeamMemberLogInfo """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition anonymous = None # Attribute is overwritten below the class definition @@ -5402,7 +5764,7 @@ def non_team_member(cls, val): :param NonTeamMemberLogInfo val: :rtype: ContextLogInfo """ - return cls('non_team_member', val) + return cls("non_team_member", val) @classmethod def organization_team(cls, val): @@ -5413,7 +5775,7 @@ def organization_team(cls, val): :param TeamLogInfo val: :rtype: ContextLogInfo """ - return cls('organization_team', val) + return cls("organization_team", val) @classmethod def team_member(cls, val): @@ -5424,7 +5786,7 @@ def team_member(cls, val): :param TeamMemberLogInfo val: :rtype: ContextLogInfo """ - return cls('team_member', val) + return cls("team_member", val) @classmethod def trusted_non_team_member(cls, val): @@ -5435,7 +5797,7 @@ def trusted_non_team_member(cls, val): :param TrustedNonTeamMemberLogInfo val: :rtype: ContextLogInfo """ - return cls('trusted_non_team_member', val) + return cls("trusted_non_team_member", val) def is_anonymous(self): """ @@ -5443,7 +5805,7 @@ def is_anonymous(self): :rtype: bool """ - return self._tag == 'anonymous' + return self._tag == "anonymous" def is_non_team_member(self): """ @@ -5451,7 +5813,7 @@ def is_non_team_member(self): :rtype: bool """ - return self._tag == 'non_team_member' + return self._tag == "non_team_member" def is_organization_team(self): """ @@ -5459,7 +5821,7 @@ def is_organization_team(self): :rtype: bool """ - return self._tag == 'organization_team' + return self._tag == "organization_team" def is_team(self): """ @@ -5467,7 +5829,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_team_member(self): """ @@ -5475,7 +5837,7 @@ def is_team_member(self): :rtype: bool """ - return self._tag == 'team_member' + return self._tag == "team_member" def is_trusted_non_team_member(self): """ @@ -5483,7 +5845,7 @@ def is_trusted_non_team_member(self): :rtype: bool """ - return self._tag == 'trusted_non_team_member' + return self._tag == "trusted_non_team_member" def is_other(self): """ @@ -5491,7 +5853,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_non_team_member(self): """ @@ -5542,17 +5904,20 @@ def get_trusted_non_team_member(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ContextLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ContextLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ContextLogInfo_validator = bv.Union(ContextLogInfo) + class CreateFolderDetails(bb.Struct): """ Created folders. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -5560,20 +5925,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderDetails_validator = bv.Struct(CreateFolderDetails) -class CreateFolderType(bb.Struct): +class CreateFolderType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5582,10 +5949,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFolderType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateFolderType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateFolderType_validator = bv.Struct(CreateFolderType) + class CreateTeamInviteLinkDetails(bb.Struct): """ Created team invite link. @@ -5597,15 +5968,13 @@ class CreateTeamInviteLinkDetails(bb.Struct): """ __slots__ = [ - '_link_url_value', - '_expiry_date_value', + "_link_url_value", + "_expiry_date_value", ] _has_required_fields = True - def __init__(self, - link_url=None, - expiry_date=None): + def __init__(self, link_url=None, expiry_date=None): self._link_url_value = bb.NOT_SET self._expiry_date_value = bb.NOT_SET if link_url is not None: @@ -5620,20 +5989,22 @@ def __init__(self, expiry_date = bb.Attribute("expiry_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateTeamInviteLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateTeamInviteLinkDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateTeamInviteLinkDetails_validator = bv.Struct(CreateTeamInviteLinkDetails) -class CreateTeamInviteLinkType(bb.Struct): +class CreateTeamInviteLinkType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5642,10 +6013,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateTeamInviteLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CreateTeamInviteLinkType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CreateTeamInviteLinkType_validator = bv.Struct(CreateTeamInviteLinkType) + class DashAddedCommentToStackDetails(bb.Struct): """ Added a comment to a stack. @@ -5661,19 +6036,15 @@ class DashAddedCommentToStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_item_name_value', - '_comment_text_value', - '_stack_type_value', + "_stack_name_value", + "_stack_item_name_value", + "_comment_text_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_item_name=None, - comment_text=None, - stack_type=None): + def __init__(self, stack_name=None, stack_item_name=None, comment_text=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_name_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET @@ -5700,20 +6071,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedCommentToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAddedCommentToStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAddedCommentToStackDetails_validator = bv.Struct(DashAddedCommentToStackDetails) -class DashAddedCommentToStackType(bb.Struct): +class DashAddedCommentToStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5722,10 +6095,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedCommentToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAddedCommentToStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAddedCommentToStackType_validator = bv.Struct(DashAddedCommentToStackType) + class DashAddedConnectorDetails(bb.Struct): """ Connected to a user connector. @@ -5737,15 +6114,13 @@ class DashAddedConnectorDetails(bb.Struct): """ __slots__ = [ - '_connector_name_value', - '_connector_status_value', + "_connector_name_value", + "_connector_status_value", ] _has_required_fields = True - def __init__(self, - connector_name=None, - connector_status=None): + def __init__(self, connector_name=None, connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -5760,20 +6135,22 @@ def __init__(self, connector_status = bb.Attribute("connector_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAddedConnectorDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAddedConnectorDetails_validator = bv.Struct(DashAddedConnectorDetails) -class DashAddedConnectorType(bb.Struct): +class DashAddedConnectorType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5782,10 +6159,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAddedConnectorType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAddedConnectorType_validator = bv.Struct(DashAddedConnectorType) + class DashAddedLinkToStackDetails(bb.Struct): """ Added a link to a stack. @@ -5799,17 +6180,14 @@ class DashAddedLinkToStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_item_link_value', - '_stack_type_value', + "_stack_name_value", + "_stack_item_link_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_item_link=None, - stack_type=None): + def __init__(self, stack_name=None, stack_item_link=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_link_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET @@ -5830,20 +6208,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAddedLinkToStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAddedLinkToStackDetails_validator = bv.Struct(DashAddedLinkToStackDetails) -class DashAddedLinkToStackType(bb.Struct): +class DashAddedLinkToStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5852,10 +6232,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAddedLinkToStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAddedLinkToStackType_validator = bv.Struct(DashAddedLinkToStackType) + class DashAddedTeamEmailDomainAllowlistDetails(bb.Struct): """ Admin added an email domain to the team allowlist. @@ -5865,13 +6249,12 @@ class DashAddedTeamEmailDomainAllowlistDetails(bb.Struct): """ __slots__ = [ - '_email_domain_value', + "_email_domain_value", ] _has_required_fields = True - def __init__(self, - email_domain=None): + def __init__(self, email_domain=None): self._email_domain_value = bb.NOT_SET if email_domain is not None: self.email_domain = email_domain @@ -5880,20 +6263,24 @@ def __init__(self, email_domain = bb.Attribute("email_domain") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedTeamEmailDomainAllowlistDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAddedTeamEmailDomainAllowlistDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DashAddedTeamEmailDomainAllowlistDetails_validator = bv.Struct(DashAddedTeamEmailDomainAllowlistDetails) -class DashAddedTeamEmailDomainAllowlistType(bb.Struct): +DashAddedTeamEmailDomainAllowlistDetails_validator = bv.Struct( + DashAddedTeamEmailDomainAllowlistDetails +) + +class DashAddedTeamEmailDomainAllowlistType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5902,10 +6289,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAddedTeamEmailDomainAllowlistType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAddedTeamEmailDomainAllowlistType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAddedTeamEmailDomainAllowlistType_validator = bv.Struct(DashAddedTeamEmailDomainAllowlistType) + class DashAdminAddedOrgWideConnectorDetails(bb.Struct): """ Admin added an admin connector. @@ -5917,15 +6308,13 @@ class DashAdminAddedOrgWideConnectorDetails(bb.Struct): """ __slots__ = [ - '_connector_name_value', - '_connector_status_value', + "_connector_name_value", + "_connector_status_value", ] _has_required_fields = True - def __init__(self, - connector_name=None, - connector_status=None): + def __init__(self, connector_name=None, connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -5940,20 +6329,22 @@ def __init__(self, connector_status = bb.Attribute("connector_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminAddedOrgWideConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAdminAddedOrgWideConnectorDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAdminAddedOrgWideConnectorDetails_validator = bv.Struct(DashAdminAddedOrgWideConnectorDetails) -class DashAdminAddedOrgWideConnectorType(bb.Struct): +class DashAdminAddedOrgWideConnectorType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -5962,10 +6353,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminAddedOrgWideConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAdminAddedOrgWideConnectorType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAdminAddedOrgWideConnectorType_validator = bv.Struct(DashAdminAddedOrgWideConnectorType) + class DashAdminDisabledConnectorDetails(bb.Struct): """ Admin disabled a user connector. @@ -5977,15 +6372,13 @@ class DashAdminDisabledConnectorDetails(bb.Struct): """ __slots__ = [ - '_connector_name_value', - '_connector_status_value', + "_connector_name_value", + "_connector_status_value", ] _has_required_fields = True - def __init__(self, - connector_name=None, - connector_status=None): + def __init__(self, connector_name=None, connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -6000,20 +6393,22 @@ def __init__(self, connector_status = bb.Attribute("connector_status", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminDisabledConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAdminDisabledConnectorDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAdminDisabledConnectorDetails_validator = bv.Struct(DashAdminDisabledConnectorDetails) -class DashAdminDisabledConnectorType(bb.Struct): +class DashAdminDisabledConnectorType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6022,10 +6417,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminDisabledConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAdminDisabledConnectorType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAdminDisabledConnectorType_validator = bv.Struct(DashAdminDisabledConnectorType) + class DashAdminEnabledConnectorDetails(bb.Struct): """ Admin enabled a user connector. @@ -6037,15 +6436,13 @@ class DashAdminEnabledConnectorDetails(bb.Struct): """ __slots__ = [ - '_connector_name_value', - '_connector_status_value', + "_connector_name_value", + "_connector_status_value", ] _has_required_fields = True - def __init__(self, - connector_name=None, - connector_status=None): + def __init__(self, connector_name=None, connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -6060,20 +6457,22 @@ def __init__(self, connector_status = bb.Attribute("connector_status", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminEnabledConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAdminEnabledConnectorDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAdminEnabledConnectorDetails_validator = bv.Struct(DashAdminEnabledConnectorDetails) -class DashAdminEnabledConnectorType(bb.Struct): +class DashAdminEnabledConnectorType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6082,10 +6481,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminEnabledConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAdminEnabledConnectorType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAdminEnabledConnectorType_validator = bv.Struct(DashAdminEnabledConnectorType) + class DashAdminRemovedOrgWideConnectorDetails(bb.Struct): """ Admin removed an admin connector. @@ -6097,15 +6500,13 @@ class DashAdminRemovedOrgWideConnectorDetails(bb.Struct): """ __slots__ = [ - '_connector_name_value', - '_connector_status_value', + "_connector_name_value", + "_connector_status_value", ] _has_required_fields = True - def __init__(self, - connector_name=None, - connector_status=None): + def __init__(self, connector_name=None, connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -6120,20 +6521,24 @@ def __init__(self, connector_status = bb.Attribute("connector_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminRemovedOrgWideConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAdminRemovedOrgWideConnectorDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DashAdminRemovedOrgWideConnectorDetails_validator = bv.Struct(DashAdminRemovedOrgWideConnectorDetails) -class DashAdminRemovedOrgWideConnectorType(bb.Struct): +DashAdminRemovedOrgWideConnectorDetails_validator = bv.Struct( + DashAdminRemovedOrgWideConnectorDetails +) + +class DashAdminRemovedOrgWideConnectorType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6142,10 +6547,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashAdminRemovedOrgWideConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashAdminRemovedOrgWideConnectorType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashAdminRemovedOrgWideConnectorType_validator = bv.Struct(DashAdminRemovedOrgWideConnectorType) + class DashArchivedStackDetails(bb.Struct): """ Archived a stack. @@ -6157,15 +6566,13 @@ class DashArchivedStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -6180,20 +6587,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashArchivedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashArchivedStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashArchivedStackDetails_validator = bv.Struct(DashArchivedStackDetails) -class DashArchivedStackType(bb.Struct): +class DashArchivedStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6202,10 +6611,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashArchivedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashArchivedStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashArchivedStackType_validator = bv.Struct(DashArchivedStackType) + class DashChangedAudienceOfSharedLinkToStackDetails(bb.Struct): """ Changed the audience of a shared link to a stack. @@ -6217,15 +6630,13 @@ class DashChangedAudienceOfSharedLinkToStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -6240,20 +6651,24 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashChangedAudienceOfSharedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashChangedAudienceOfSharedLinkToStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DashChangedAudienceOfSharedLinkToStackDetails_validator = bv.Struct(DashChangedAudienceOfSharedLinkToStackDetails) -class DashChangedAudienceOfSharedLinkToStackType(bb.Struct): +DashChangedAudienceOfSharedLinkToStackDetails_validator = bv.Struct( + DashChangedAudienceOfSharedLinkToStackDetails +) + +class DashChangedAudienceOfSharedLinkToStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6262,9 +6677,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashChangedAudienceOfSharedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashChangedAudienceOfSharedLinkToStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DashChangedAudienceOfSharedLinkToStackType_validator = bv.Struct( + DashChangedAudienceOfSharedLinkToStackType +) -DashChangedAudienceOfSharedLinkToStackType_validator = bv.Struct(DashChangedAudienceOfSharedLinkToStackType) class DashClonedStackDetails(bb.Struct): """ @@ -6281,19 +6702,21 @@ class DashClonedStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_actor_email_value', - '_new_cloned_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_actor_email_value", + "_new_cloned_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - actor_email=None, - new_cloned_stack_name=None, - stack_type=None): + def __init__( + self, + stack_name=None, + actor_email=None, + new_cloned_stack_name=None, + stack_type=None, + ): self._stack_name_value = bb.NOT_SET self._actor_email_value = bb.NOT_SET self._new_cloned_stack_name_value = bb.NOT_SET @@ -6320,20 +6743,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashClonedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashClonedStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashClonedStackDetails_validator = bv.Struct(DashClonedStackDetails) -class DashClonedStackType(bb.Struct): +class DashClonedStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6342,10 +6767,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashClonedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashClonedStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashClonedStackType_validator = bv.Struct(DashClonedStackType) + class DashConnectorStatus(bb.Union): """ The status of the Connector @@ -6355,7 +6784,7 @@ class DashConnectorStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition fail = None # Attribute is overwritten below the class definition @@ -6369,7 +6798,7 @@ def is_fail(self): :rtype: bool """ - return self._tag == 'fail' + return self._tag == "fail" def is_success(self): """ @@ -6377,7 +6806,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_other(self): """ @@ -6385,13 +6814,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashConnectorStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashConnectorStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashConnectorStatus_validator = bv.Union(DashConnectorStatus) + class DashConnectorToolsCallDetails(bb.Struct): """ Called a tool on a connector. @@ -6405,17 +6838,14 @@ class DashConnectorToolsCallDetails(bb.Struct): """ __slots__ = [ - '_connector_name_value', - '_tool_name_value', - '_surface_value', + "_connector_name_value", + "_tool_name_value", + "_surface_value", ] _has_required_fields = True - def __init__(self, - connector_name=None, - tool_name=None, - surface=None): + def __init__(self, connector_name=None, tool_name=None, surface=None): self._connector_name_value = bb.NOT_SET self._tool_name_value = bb.NOT_SET self._surface_value = bb.NOT_SET @@ -6436,20 +6866,22 @@ def __init__(self, surface = bb.Attribute("surface", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashConnectorToolsCallDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashConnectorToolsCallDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashConnectorToolsCallDetails_validator = bv.Struct(DashConnectorToolsCallDetails) -class DashConnectorToolsCallType(bb.Struct): +class DashConnectorToolsCallType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6458,10 +6890,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashConnectorToolsCallType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashConnectorToolsCallType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashConnectorToolsCallType_validator = bv.Struct(DashConnectorToolsCallType) + class DashCreatedStackDetails(bb.Struct): """ Created a stack. @@ -6473,15 +6909,13 @@ class DashCreatedStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -6496,20 +6930,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashCreatedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashCreatedStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashCreatedStackDetails_validator = bv.Struct(DashCreatedStackDetails) -class DashCreatedStackType(bb.Struct): +class DashCreatedStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6518,10 +6954,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashCreatedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashCreatedStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashCreatedStackType_validator = bv.Struct(DashCreatedStackType) + class DashDeletedCommentFromStackDetails(bb.Struct): """ Deleted a comment from a stack. @@ -6535,17 +6975,14 @@ class DashDeletedCommentFromStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_item_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_item_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_item_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_item_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET @@ -6566,20 +7003,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashDeletedCommentFromStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashDeletedCommentFromStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashDeletedCommentFromStackDetails_validator = bv.Struct(DashDeletedCommentFromStackDetails) -class DashDeletedCommentFromStackType(bb.Struct): +class DashDeletedCommentFromStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6588,10 +7027,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashDeletedCommentFromStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashDeletedCommentFromStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashDeletedCommentFromStackType_validator = bv.Struct(DashDeletedCommentFromStackType) + class DashDeletedStackDetails(bb.Struct): """ Deleted a stack. @@ -6603,15 +7046,13 @@ class DashDeletedStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -6626,20 +7067,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashDeletedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashDeletedStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashDeletedStackDetails_validator = bv.Struct(DashDeletedStackDetails) -class DashDeletedStackType(bb.Struct): +class DashDeletedStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6648,10 +7091,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashDeletedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashDeletedStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashDeletedStackType_validator = bv.Struct(DashDeletedStackType) + class DashEditedCommentInStackDetails(bb.Struct): """ Edited a comment in a stack. @@ -6667,19 +7114,15 @@ class DashEditedCommentInStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_item_name_value', - '_comment_text_value', - '_stack_type_value', + "_stack_name_value", + "_stack_item_name_value", + "_comment_text_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_item_name=None, - comment_text=None, - stack_type=None): + def __init__(self, stack_name=None, stack_item_name=None, comment_text=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_name_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET @@ -6706,20 +7149,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashEditedCommentInStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashEditedCommentInStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashEditedCommentInStackDetails_validator = bv.Struct(DashEditedCommentInStackDetails) -class DashEditedCommentInStackType(bb.Struct): +class DashEditedCommentInStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6728,10 +7173,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashEditedCommentInStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashEditedCommentInStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashEditedCommentInStackType_validator = bv.Struct(DashEditedCommentInStackType) + class DashExternalSharingPolicy(bb.Union): """ Policy for deciding whether team users can share Dash content externally @@ -6741,7 +7190,7 @@ class DashExternalSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -6757,7 +7206,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -6765,7 +7214,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -6773,7 +7222,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -6781,13 +7230,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashExternalSharingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashExternalSharingPolicy_validator = bv.Union(DashExternalSharingPolicy) + class DashExternalSharingPolicyChangedDetails(bb.Struct): """ Changed Dash external sharing policy for team. @@ -6799,15 +7252,13 @@ class DashExternalSharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -6822,20 +7273,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalSharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashExternalSharingPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DashExternalSharingPolicyChangedDetails_validator = bv.Struct(DashExternalSharingPolicyChangedDetails) -class DashExternalSharingPolicyChangedType(bb.Struct): +DashExternalSharingPolicyChangedDetails_validator = bv.Struct( + DashExternalSharingPolicyChangedDetails +) + +class DashExternalSharingPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6844,10 +7299,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalSharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashExternalSharingPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashExternalSharingPolicyChangedType_validator = bv.Struct(DashExternalSharingPolicyChangedType) + class DashExternalUserOpenedStackDetails(bb.Struct): """ External user opened a stack. @@ -6867,23 +7326,25 @@ class DashExternalUserOpenedStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_sharing_scope_value', - '_is_invited_value', - '_is_verified_value', - '_stack_owner_team_id_value', - '_stack_type_value', + "_stack_name_value", + "_stack_sharing_scope_value", + "_is_invited_value", + "_is_verified_value", + "_stack_owner_team_id_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_sharing_scope=None, - is_invited=None, - is_verified=None, - stack_owner_team_id=None, - stack_type=None): + def __init__( + self, + stack_name=None, + stack_sharing_scope=None, + is_invited=None, + is_verified=None, + stack_owner_team_id=None, + stack_type=None, + ): self._stack_name_value = bb.NOT_SET self._stack_sharing_scope_value = bb.NOT_SET self._is_invited_value = bb.NOT_SET @@ -6922,20 +7383,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalUserOpenedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashExternalUserOpenedStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashExternalUserOpenedStackDetails_validator = bv.Struct(DashExternalUserOpenedStackDetails) -class DashExternalUserOpenedStackType(bb.Struct): +class DashExternalUserOpenedStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6944,10 +7407,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashExternalUserOpenedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashExternalUserOpenedStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashExternalUserOpenedStackType_validator = bv.Struct(DashExternalUserOpenedStackType) + class DashFirstLaunchedDesktopDetails(bb.Struct): """ Opened the desktop app for the first time. @@ -6957,13 +7424,12 @@ class DashFirstLaunchedDesktopDetails(bb.Struct): """ __slots__ = [ - '_os_name_value', + "_os_name_value", ] _has_required_fields = True - def __init__(self, - os_name=None): + def __init__(self, os_name=None): self._os_name_value = bb.NOT_SET if os_name is not None: self.os_name = os_name @@ -6972,20 +7438,22 @@ def __init__(self, os_name = bb.Attribute("os_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedDesktopDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashFirstLaunchedDesktopDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashFirstLaunchedDesktopDetails_validator = bv.Struct(DashFirstLaunchedDesktopDetails) -class DashFirstLaunchedDesktopType(bb.Struct): +class DashFirstLaunchedDesktopType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -6994,10 +7462,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedDesktopType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashFirstLaunchedDesktopType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashFirstLaunchedDesktopType_validator = bv.Struct(DashFirstLaunchedDesktopType) + class DashFirstLaunchedExtensionDetails(bb.Struct): """ Opened the extension for the first time. @@ -7007,13 +7479,12 @@ class DashFirstLaunchedExtensionDetails(bb.Struct): """ __slots__ = [ - '_browser_name_value', + "_browser_name_value", ] _has_required_fields = True - def __init__(self, - browser_name=None): + def __init__(self, browser_name=None): self._browser_name_value = bb.NOT_SET if browser_name is not None: self.browser_name = browser_name @@ -7022,20 +7493,22 @@ def __init__(self, browser_name = bb.Attribute("browser_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedExtensionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashFirstLaunchedExtensionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashFirstLaunchedExtensionDetails_validator = bv.Struct(DashFirstLaunchedExtensionDetails) -class DashFirstLaunchedExtensionType(bb.Struct): +class DashFirstLaunchedExtensionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7044,10 +7517,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedExtensionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashFirstLaunchedExtensionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashFirstLaunchedExtensionType_validator = bv.Struct(DashFirstLaunchedExtensionType) + class DashFirstLaunchedWebStartPageDetails(bb.Struct): """ Opened the web Start Page for the first time. @@ -7057,13 +7534,12 @@ class DashFirstLaunchedWebStartPageDetails(bb.Struct): """ __slots__ = [ - '_browser_name_value', + "_browser_name_value", ] _has_required_fields = True - def __init__(self, - browser_name=None): + def __init__(self, browser_name=None): self._browser_name_value = bb.NOT_SET if browser_name is not None: self.browser_name = browser_name @@ -7072,20 +7548,22 @@ def __init__(self, browser_name = bb.Attribute("browser_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedWebStartPageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashFirstLaunchedWebStartPageDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashFirstLaunchedWebStartPageDetails_validator = bv.Struct(DashFirstLaunchedWebStartPageDetails) -class DashFirstLaunchedWebStartPageType(bb.Struct): +class DashFirstLaunchedWebStartPageType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7094,10 +7572,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashFirstLaunchedWebStartPageType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashFirstLaunchedWebStartPageType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashFirstLaunchedWebStartPageType_validator = bv.Struct(DashFirstLaunchedWebStartPageType) + class DashOpenedSharedLinkToStackDetails(bb.Struct): """ Checked access permissions to a stack. @@ -7109,15 +7591,13 @@ class DashOpenedSharedLinkToStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7132,20 +7612,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashOpenedSharedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashOpenedSharedLinkToStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashOpenedSharedLinkToStackDetails_validator = bv.Struct(DashOpenedSharedLinkToStackDetails) -class DashOpenedSharedLinkToStackType(bb.Struct): +class DashOpenedSharedLinkToStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7154,10 +7636,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashOpenedSharedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashOpenedSharedLinkToStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashOpenedSharedLinkToStackType_validator = bv.Struct(DashOpenedSharedLinkToStackType) + class DashOpenedStackDetails(bb.Struct): """ Opened a stack. @@ -7169,15 +7655,13 @@ class DashOpenedStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7192,20 +7676,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashOpenedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashOpenedStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashOpenedStackDetails_validator = bv.Struct(DashOpenedStackDetails) -class DashOpenedStackType(bb.Struct): +class DashOpenedStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7214,10 +7700,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashOpenedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashOpenedStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashOpenedStackType_validator = bv.Struct(DashOpenedStackType) + class DashPreviewOptOutStatus(bb.Union): """ The new preview opt-out status @@ -7227,7 +7717,7 @@ class DashPreviewOptOutStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition opted_in = None # Attribute is overwritten below the class definition @@ -7241,7 +7731,7 @@ def is_opted_in(self): :rtype: bool """ - return self._tag == 'opted_in' + return self._tag == "opted_in" def is_opted_out(self): """ @@ -7249,7 +7739,7 @@ def is_opted_out(self): :rtype: bool """ - return self._tag == 'opted_out' + return self._tag == "opted_out" def is_other(self): """ @@ -7257,13 +7747,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashPreviewOptOutStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashPreviewOptOutStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashPreviewOptOutStatus_validator = bv.Union(DashPreviewOptOutStatus) + class DashPreviewOptOutStatusChangedDetails(bb.Struct): """ Changed the preview opt-out status. @@ -7273,13 +7767,12 @@ class DashPreviewOptOutStatusChangedDetails(bb.Struct): """ __slots__ = [ - '_opt_out_status_value', + "_opt_out_status_value", ] _has_required_fields = True - def __init__(self, - opt_out_status=None): + def __init__(self, opt_out_status=None): self._opt_out_status_value = bb.NOT_SET if opt_out_status is not None: self.opt_out_status = opt_out_status @@ -7288,20 +7781,22 @@ def __init__(self, opt_out_status = bb.Attribute("opt_out_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashPreviewOptOutStatusChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashPreviewOptOutStatusChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashPreviewOptOutStatusChangedDetails_validator = bv.Struct(DashPreviewOptOutStatusChangedDetails) -class DashPreviewOptOutStatusChangedType(bb.Struct): +class DashPreviewOptOutStatusChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7310,10 +7805,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashPreviewOptOutStatusChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashPreviewOptOutStatusChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashPreviewOptOutStatusChangedType_validator = bv.Struct(DashPreviewOptOutStatusChangedType) + class DashRemovedConnectorDetails(bb.Struct): """ Disconnected a user connector. @@ -7325,15 +7824,13 @@ class DashRemovedConnectorDetails(bb.Struct): """ __slots__ = [ - '_connector_name_value', - '_connector_status_value', + "_connector_name_value", + "_connector_status_value", ] _has_required_fields = True - def __init__(self, - connector_name=None, - connector_status=None): + def __init__(self, connector_name=None, connector_status=None): self._connector_name_value = bb.NOT_SET self._connector_status_value = bb.NOT_SET if connector_name is not None: @@ -7348,20 +7845,22 @@ def __init__(self, connector_status = bb.Attribute("connector_status", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedConnectorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRemovedConnectorDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashRemovedConnectorDetails_validator = bv.Struct(DashRemovedConnectorDetails) -class DashRemovedConnectorType(bb.Struct): +class DashRemovedConnectorType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7370,10 +7869,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedConnectorType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRemovedConnectorType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashRemovedConnectorType_validator = bv.Struct(DashRemovedConnectorType) + class DashRemovedLinkFromStackDetails(bb.Struct): """ Removed a link from a stack. @@ -7387,17 +7890,14 @@ class DashRemovedLinkFromStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_item_link_value', - '_stack_type_value', + "_stack_name_value", + "_stack_item_link_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_item_link=None, - stack_type=None): + def __init__(self, stack_name=None, stack_item_link=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_item_link_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET @@ -7418,20 +7918,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedLinkFromStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRemovedLinkFromStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashRemovedLinkFromStackDetails_validator = bv.Struct(DashRemovedLinkFromStackDetails) -class DashRemovedLinkFromStackType(bb.Struct): +class DashRemovedLinkFromStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7440,10 +7942,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedLinkFromStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRemovedLinkFromStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashRemovedLinkFromStackType_validator = bv.Struct(DashRemovedLinkFromStackType) + class DashRemovedSharedLinkToStackDetails(bb.Struct): """ Removed a shared link to a stack. @@ -7455,15 +7961,13 @@ class DashRemovedSharedLinkToStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7478,20 +7982,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedSharedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRemovedSharedLinkToStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashRemovedSharedLinkToStackDetails_validator = bv.Struct(DashRemovedSharedLinkToStackDetails) -class DashRemovedSharedLinkToStackType(bb.Struct): +class DashRemovedSharedLinkToStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7500,10 +8006,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedSharedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRemovedSharedLinkToStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashRemovedSharedLinkToStackType_validator = bv.Struct(DashRemovedSharedLinkToStackType) + class DashRemovedTeamEmailDomainAllowlistDetails(bb.Struct): """ Admin removed an email domain from the team allowlist. @@ -7513,13 +8023,12 @@ class DashRemovedTeamEmailDomainAllowlistDetails(bb.Struct): """ __slots__ = [ - '_email_domain_value', + "_email_domain_value", ] _has_required_fields = True - def __init__(self, - email_domain=None): + def __init__(self, email_domain=None): self._email_domain_value = bb.NOT_SET if email_domain is not None: self.email_domain = email_domain @@ -7528,20 +8037,24 @@ def __init__(self, email_domain = bb.Attribute("email_domain") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedTeamEmailDomainAllowlistDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRemovedTeamEmailDomainAllowlistDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DashRemovedTeamEmailDomainAllowlistDetails_validator = bv.Struct(DashRemovedTeamEmailDomainAllowlistDetails) -class DashRemovedTeamEmailDomainAllowlistType(bb.Struct): +DashRemovedTeamEmailDomainAllowlistDetails_validator = bv.Struct( + DashRemovedTeamEmailDomainAllowlistDetails +) + +class DashRemovedTeamEmailDomainAllowlistType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7550,9 +8063,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRemovedTeamEmailDomainAllowlistType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRemovedTeamEmailDomainAllowlistType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DashRemovedTeamEmailDomainAllowlistType_validator = bv.Struct( + DashRemovedTeamEmailDomainAllowlistType +) -DashRemovedTeamEmailDomainAllowlistType_validator = bv.Struct(DashRemovedTeamEmailDomainAllowlistType) class DashRenamedStackDetails(bb.Struct): """ @@ -7567,17 +8086,14 @@ class DashRenamedStackDetails(bb.Struct): """ __slots__ = [ - '_old_name_value', - '_new_name_value', - '_stack_type_value', + "_old_name_value", + "_new_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - old_name=None, - new_name=None, - stack_type=None): + def __init__(self, old_name=None, new_name=None, stack_type=None): self._old_name_value = bb.NOT_SET self._new_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET @@ -7598,20 +8114,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRenamedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRenamedStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashRenamedStackDetails_validator = bv.Struct(DashRenamedStackDetails) -class DashRenamedStackType(bb.Struct): +class DashRenamedStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7620,10 +8138,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashRenamedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashRenamedStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashRenamedStackType_validator = bv.Struct(DashRenamedStackType) + class DashSharedLinkToStackDetails(bb.Struct): """ Shared a link to a stack. @@ -7635,15 +8157,13 @@ class DashSharedLinkToStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7658,20 +8178,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashSharedLinkToStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashSharedLinkToStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashSharedLinkToStackDetails_validator = bv.Struct(DashSharedLinkToStackDetails) -class DashSharedLinkToStackType(bb.Struct): +class DashSharedLinkToStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7680,10 +8202,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashSharedLinkToStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashSharedLinkToStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashSharedLinkToStackType_validator = bv.Struct(DashSharedLinkToStackType) + class DashStackSharingScope(bb.Union): """ The stack sharing scope @@ -7693,7 +8219,7 @@ class DashStackSharingScope(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invited = None # Attribute is overwritten below the class definition @@ -7711,7 +8237,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == 'invited' + return self._tag == "invited" def is_public(self): """ @@ -7719,7 +8245,7 @@ def is_public(self): :rtype: bool """ - return self._tag == 'public' + return self._tag == "public" def is_team(self): """ @@ -7727,7 +8253,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_unknown(self): """ @@ -7735,7 +8261,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == 'unknown' + return self._tag == "unknown" def is_other(self): """ @@ -7743,13 +8269,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashStackSharingScope, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashStackSharingScope, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashStackSharingScope_validator = bv.Union(DashStackSharingScope) + class DashStackType(bb.Union): """ The type of stack backend @@ -7759,7 +8289,7 @@ class DashStackType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition cypress = None # Attribute is overwritten below the class definition @@ -7775,7 +8305,7 @@ def is_cypress(self): :rtype: bool """ - return self._tag == 'cypress' + return self._tag == "cypress" def is_reference_container(self): """ @@ -7783,7 +8313,7 @@ def is_reference_container(self): :rtype: bool """ - return self._tag == 'reference_container' + return self._tag == "reference_container" def is_unknown(self): """ @@ -7791,7 +8321,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == 'unknown' + return self._tag == "unknown" def is_other(self): """ @@ -7799,13 +8329,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashStackType_validator = bv.Union(DashStackType) + class DashUnarchivedStackDetails(bb.Struct): """ Unarchived a stack. @@ -7817,15 +8351,13 @@ class DashUnarchivedStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7840,20 +8372,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashUnarchivedStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashUnarchivedStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashUnarchivedStackDetails_validator = bv.Struct(DashUnarchivedStackDetails) -class DashUnarchivedStackType(bb.Struct): +class DashUnarchivedStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7862,10 +8396,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashUnarchivedStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashUnarchivedStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashUnarchivedStackType_validator = bv.Struct(DashUnarchivedStackType) + class DashViewedCompanyStackDetails(bb.Struct): """ Member viewed a company stack. @@ -7877,15 +8415,13 @@ class DashViewedCompanyStackDetails(bb.Struct): """ __slots__ = [ - '_stack_name_value', - '_stack_type_value', + "_stack_name_value", + "_stack_type_value", ] _has_required_fields = True - def __init__(self, - stack_name=None, - stack_type=None): + def __init__(self, stack_name=None, stack_type=None): self._stack_name_value = bb.NOT_SET self._stack_type_value = bb.NOT_SET if stack_name is not None: @@ -7900,20 +8436,22 @@ def __init__(self, stack_type = bb.Attribute("stack_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashViewedCompanyStackDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashViewedCompanyStackDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashViewedCompanyStackDetails_validator = bv.Struct(DashViewedCompanyStackDetails) -class DashViewedCompanyStackType(bb.Struct): +class DashViewedCompanyStackType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7922,17 +8460,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashViewedCompanyStackType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashViewedCompanyStackType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashViewedCompanyStackType_validator = bv.Struct(DashViewedCompanyStackType) + class DashViewedExternalAiActivityReportDetails(bb.Struct): """ Admin viewed the external AI activity report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -7940,20 +8481,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashViewedExternalAiActivityReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashViewedExternalAiActivityReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DashViewedExternalAiActivityReportDetails_validator = bv.Struct(DashViewedExternalAiActivityReportDetails) -class DashViewedExternalAiActivityReportType(bb.Struct): +DashViewedExternalAiActivityReportDetails_validator = bv.Struct( + DashViewedExternalAiActivityReportDetails +) + +class DashViewedExternalAiActivityReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -7962,10 +8507,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DashViewedExternalAiActivityReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DashViewedExternalAiActivityReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DashViewedExternalAiActivityReportType_validator = bv.Struct(DashViewedExternalAiActivityReportType) + class DataPlacementRestrictionChangePolicyDetails(bb.Struct): """ Set restrictions on data center locations where team data resides. @@ -7977,15 +8526,13 @@ class DataPlacementRestrictionChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -8000,20 +8547,24 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DataPlacementRestrictionChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DataPlacementRestrictionChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DataPlacementRestrictionChangePolicyDetails_validator = bv.Struct(DataPlacementRestrictionChangePolicyDetails) -class DataPlacementRestrictionChangePolicyType(bb.Struct): +DataPlacementRestrictionChangePolicyDetails_validator = bv.Struct( + DataPlacementRestrictionChangePolicyDetails +) + +class DataPlacementRestrictionChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8022,9 +8573,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DataPlacementRestrictionChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DataPlacementRestrictionChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DataPlacementRestrictionChangePolicyType_validator = bv.Struct( + DataPlacementRestrictionChangePolicyType +) -DataPlacementRestrictionChangePolicyType_validator = bv.Struct(DataPlacementRestrictionChangePolicyType) class DataPlacementRestrictionSatisfyPolicyDetails(bb.Struct): """ @@ -8035,13 +8592,12 @@ class DataPlacementRestrictionSatisfyPolicyDetails(bb.Struct): """ __slots__ = [ - '_placement_restriction_value', + "_placement_restriction_value", ] _has_required_fields = True - def __init__(self, - placement_restriction=None): + def __init__(self, placement_restriction=None): self._placement_restriction_value = bb.NOT_SET if placement_restriction is not None: self.placement_restriction = placement_restriction @@ -8050,20 +8606,24 @@ def __init__(self, placement_restriction = bb.Attribute("placement_restriction", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DataPlacementRestrictionSatisfyPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DataPlacementRestrictionSatisfyPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DataPlacementRestrictionSatisfyPolicyDetails_validator = bv.Struct(DataPlacementRestrictionSatisfyPolicyDetails) -class DataPlacementRestrictionSatisfyPolicyType(bb.Struct): +DataPlacementRestrictionSatisfyPolicyDetails_validator = bv.Struct( + DataPlacementRestrictionSatisfyPolicyDetails +) + +class DataPlacementRestrictionSatisfyPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8072,17 +8632,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DataPlacementRestrictionSatisfyPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DataPlacementRestrictionSatisfyPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DataPlacementRestrictionSatisfyPolicyType_validator = bv.Struct( + DataPlacementRestrictionSatisfyPolicyType +) -DataPlacementRestrictionSatisfyPolicyType_validator = bv.Struct(DataPlacementRestrictionSatisfyPolicyType) class DataResidencyMigrationRequestSuccessfulDetails(bb.Struct): """ Requested data residency migration for team data. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -8090,20 +8655,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DataResidencyMigrationRequestSuccessfulDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DataResidencyMigrationRequestSuccessfulDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DataResidencyMigrationRequestSuccessfulDetails_validator = bv.Struct(DataResidencyMigrationRequestSuccessfulDetails) -class DataResidencyMigrationRequestSuccessfulType(bb.Struct): +DataResidencyMigrationRequestSuccessfulDetails_validator = bv.Struct( + DataResidencyMigrationRequestSuccessfulDetails +) + +class DataResidencyMigrationRequestSuccessfulType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8112,17 +8681,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DataResidencyMigrationRequestSuccessfulType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DataResidencyMigrationRequestSuccessfulType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DataResidencyMigrationRequestSuccessfulType_validator = bv.Struct( + DataResidencyMigrationRequestSuccessfulType +) -DataResidencyMigrationRequestSuccessfulType_validator = bv.Struct(DataResidencyMigrationRequestSuccessfulType) class DataResidencyMigrationRequestUnsuccessfulDetails(bb.Struct): """ Request for data residency migration for team data has failed. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -8130,20 +8704,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DataResidencyMigrationRequestUnsuccessfulDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DataResidencyMigrationRequestUnsuccessfulDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DataResidencyMigrationRequestUnsuccessfulDetails_validator = bv.Struct(DataResidencyMigrationRequestUnsuccessfulDetails) -class DataResidencyMigrationRequestUnsuccessfulType(bb.Struct): +DataResidencyMigrationRequestUnsuccessfulDetails_validator = bv.Struct( + DataResidencyMigrationRequestUnsuccessfulDetails +) + +class DataResidencyMigrationRequestUnsuccessfulType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8152,9 +8730,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DataResidencyMigrationRequestUnsuccessfulType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DataResidencyMigrationRequestUnsuccessfulType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DataResidencyMigrationRequestUnsuccessfulType_validator = bv.Struct( + DataResidencyMigrationRequestUnsuccessfulType +) -DataResidencyMigrationRequestUnsuccessfulType_validator = bv.Struct(DataResidencyMigrationRequestUnsuccessfulType) class DefaultLinkExpirationDaysPolicy(bb.Union): """ @@ -8166,7 +8750,7 @@ class DefaultLinkExpirationDaysPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition day_1 = None # Attribute is overwritten below the class definition @@ -8192,7 +8776,7 @@ def is_day_1(self): :rtype: bool """ - return self._tag == 'day_1' + return self._tag == "day_1" def is_day_180(self): """ @@ -8200,7 +8784,7 @@ def is_day_180(self): :rtype: bool """ - return self._tag == 'day_180' + return self._tag == "day_180" def is_day_3(self): """ @@ -8208,7 +8792,7 @@ def is_day_3(self): :rtype: bool """ - return self._tag == 'day_3' + return self._tag == "day_3" def is_day_30(self): """ @@ -8216,7 +8800,7 @@ def is_day_30(self): :rtype: bool """ - return self._tag == 'day_30' + return self._tag == "day_30" def is_day_7(self): """ @@ -8224,7 +8808,7 @@ def is_day_7(self): :rtype: bool """ - return self._tag == 'day_7' + return self._tag == "day_7" def is_day_90(self): """ @@ -8232,7 +8816,7 @@ def is_day_90(self): :rtype: bool """ - return self._tag == 'day_90' + return self._tag == "day_90" def is_none(self): """ @@ -8240,7 +8824,7 @@ def is_none(self): :rtype: bool """ - return self._tag == 'none' + return self._tag == "none" def is_year_1(self): """ @@ -8248,7 +8832,7 @@ def is_year_1(self): :rtype: bool """ - return self._tag == 'year_1' + return self._tag == "year_1" def is_other(self): """ @@ -8256,13 +8840,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DefaultLinkExpirationDaysPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DefaultLinkExpirationDaysPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DefaultLinkExpirationDaysPolicy_validator = bv.Union(DefaultLinkExpirationDaysPolicy) + class DeleteTeamInviteLinkDetails(bb.Struct): """ Deleted team invite link. @@ -8272,13 +8860,12 @@ class DeleteTeamInviteLinkDetails(bb.Struct): """ __slots__ = [ - '_link_url_value', + "_link_url_value", ] _has_required_fields = True - def __init__(self, - link_url=None): + def __init__(self, link_url=None): self._link_url_value = bb.NOT_SET if link_url is not None: self.link_url = link_url @@ -8287,20 +8874,22 @@ def __init__(self, link_url = bb.Attribute("link_url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteTeamInviteLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteTeamInviteLinkDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteTeamInviteLinkDetails_validator = bv.Struct(DeleteTeamInviteLinkDetails) -class DeleteTeamInviteLinkType(bb.Struct): +class DeleteTeamInviteLinkType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8309,10 +8898,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteTeamInviteLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeleteTeamInviteLinkType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeleteTeamInviteLinkType_validator = bv.Struct(DeleteTeamInviteLinkType) + class DeviceSessionLogInfo(bb.Struct): """ Device's session logged information. @@ -8326,17 +8919,14 @@ class DeviceSessionLogInfo(bb.Struct): """ __slots__ = [ - '_ip_address_value', - '_created_value', - '_updated_value', + "_ip_address_value", + "_created_value", + "_updated_value", ] _has_required_fields = False - def __init__(self, - ip_address=None, - created=None, - updated=None): + def __init__(self, ip_address=None, created=None, updated=None): self._ip_address_value = bb.NOT_SET self._created_value = bb.NOT_SET self._updated_value = bb.NOT_SET @@ -8357,10 +8947,14 @@ def __init__(self, updated = bb.Attribute("updated", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceSessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceSessionLogInfo_validator = bv.StructTree(DeviceSessionLogInfo) + class DesktopDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information about linked Dropbox desktop client sessions @@ -8381,29 +8975,29 @@ class DesktopDeviceSessionLogInfo(DeviceSessionLogInfo): """ __slots__ = [ - '_session_info_value', - '_host_name_value', - '_client_type_value', - '_client_version_value', - '_platform_value', - '_is_delete_on_unlink_supported_value', + "_session_info_value", + "_host_name_value", + "_client_type_value", + "_client_version_value", + "_platform_value", + "_is_delete_on_unlink_supported_value", ] _has_required_fields = True - def __init__(self, - host_name=None, - client_type=None, - platform=None, - is_delete_on_unlink_supported=None, - ip_address=None, - created=None, - updated=None, - session_info=None, - client_version=None): - super(DesktopDeviceSessionLogInfo, self).__init__(ip_address, - created, - updated) + def __init__( + self, + host_name=None, + client_type=None, + platform=None, + is_delete_on_unlink_supported=None, + ip_address=None, + created=None, + updated=None, + session_info=None, + client_version=None, + ): + super(DesktopDeviceSessionLogInfo, self).__init__(ip_address, created, updated) self._session_info_value = bb.NOT_SET self._host_name_value = bb.NOT_SET self._client_type_value = bb.NOT_SET @@ -8442,10 +9036,14 @@ def __init__(self, is_delete_on_unlink_supported = bb.Attribute("is_delete_on_unlink_supported") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DesktopDeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DesktopDeviceSessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DesktopDeviceSessionLogInfo_validator = bv.Struct(DesktopDeviceSessionLogInfo) + class SessionLogInfo(bb.Struct): """ Session's logged information. @@ -8455,13 +9053,12 @@ class SessionLogInfo(bb.Struct): """ __slots__ = [ - '_session_id_value', + "_session_id_value", ] _has_required_fields = False - def __init__(self, - session_id=None): + def __init__(self, session_id=None): self._session_id_value = bb.NOT_SET if session_id is not None: self.session_id = session_id @@ -8470,36 +9067,41 @@ def __init__(self, session_id = bb.Attribute("session_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SessionLogInfo_validator = bv.StructTree(SessionLogInfo) + class DesktopSessionLogInfo(SessionLogInfo): """ Desktop session. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False - def __init__(self, - session_id=None): + def __init__(self, session_id=None): super(DesktopSessionLogInfo, self).__init__(session_id) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DesktopSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DesktopSessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DesktopSessionLogInfo_validator = bv.Struct(DesktopSessionLogInfo) + class DeviceApprovalsAddExceptionDetails(bb.Struct): """ Added members to device approvals exception list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -8507,20 +9109,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsAddExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsAddExceptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceApprovalsAddExceptionDetails_validator = bv.Struct(DeviceApprovalsAddExceptionDetails) -class DeviceApprovalsAddExceptionType(bb.Struct): +class DeviceApprovalsAddExceptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8529,10 +9133,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsAddExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsAddExceptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceApprovalsAddExceptionType_validator = bv.Struct(DeviceApprovalsAddExceptionType) + class DeviceApprovalsChangeDesktopPolicyDetails(bb.Struct): """ Set/removed limit on number of computers member can link to team Dropbox @@ -8547,15 +9155,13 @@ class DeviceApprovalsChangeDesktopPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -8570,20 +9176,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeDesktopPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsChangeDesktopPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DeviceApprovalsChangeDesktopPolicyDetails_validator = bv.Struct(DeviceApprovalsChangeDesktopPolicyDetails) -class DeviceApprovalsChangeDesktopPolicyType(bb.Struct): +DeviceApprovalsChangeDesktopPolicyDetails_validator = bv.Struct( + DeviceApprovalsChangeDesktopPolicyDetails +) + +class DeviceApprovalsChangeDesktopPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8592,10 +9202,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeDesktopPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsChangeDesktopPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceApprovalsChangeDesktopPolicyType_validator = bv.Struct(DeviceApprovalsChangeDesktopPolicyType) + class DeviceApprovalsChangeMobilePolicyDetails(bb.Struct): """ Set/removed limit on number of mobile devices member can link to team @@ -8610,15 +9224,13 @@ class DeviceApprovalsChangeMobilePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -8633,20 +9245,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeMobilePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsChangeMobilePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DeviceApprovalsChangeMobilePolicyDetails_validator = bv.Struct(DeviceApprovalsChangeMobilePolicyDetails) -class DeviceApprovalsChangeMobilePolicyType(bb.Struct): +DeviceApprovalsChangeMobilePolicyDetails_validator = bv.Struct( + DeviceApprovalsChangeMobilePolicyDetails +) + +class DeviceApprovalsChangeMobilePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8655,10 +9271,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeMobilePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsChangeMobilePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceApprovalsChangeMobilePolicyType_validator = bv.Struct(DeviceApprovalsChangeMobilePolicyType) + class DeviceApprovalsChangeOverageActionDetails(bb.Struct): """ Changed device approvals setting when member is over limit. @@ -8671,15 +9291,13 @@ class DeviceApprovalsChangeOverageActionDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -8694,20 +9312,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeOverageActionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsChangeOverageActionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DeviceApprovalsChangeOverageActionDetails_validator = bv.Struct(DeviceApprovalsChangeOverageActionDetails) -class DeviceApprovalsChangeOverageActionType(bb.Struct): +DeviceApprovalsChangeOverageActionDetails_validator = bv.Struct( + DeviceApprovalsChangeOverageActionDetails +) + +class DeviceApprovalsChangeOverageActionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8716,10 +9338,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeOverageActionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsChangeOverageActionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceApprovalsChangeOverageActionType_validator = bv.Struct(DeviceApprovalsChangeOverageActionType) + class DeviceApprovalsChangeUnlinkActionDetails(bb.Struct): """ Changed device approvals setting when member unlinks approved device. @@ -8732,15 +9358,13 @@ class DeviceApprovalsChangeUnlinkActionDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -8755,20 +9379,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeUnlinkActionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsChangeUnlinkActionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DeviceApprovalsChangeUnlinkActionDetails_validator = bv.Struct(DeviceApprovalsChangeUnlinkActionDetails) -class DeviceApprovalsChangeUnlinkActionType(bb.Struct): +DeviceApprovalsChangeUnlinkActionDetails_validator = bv.Struct( + DeviceApprovalsChangeUnlinkActionDetails +) + +class DeviceApprovalsChangeUnlinkActionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8777,10 +9405,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsChangeUnlinkActionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsChangeUnlinkActionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceApprovalsChangeUnlinkActionType_validator = bv.Struct(DeviceApprovalsChangeUnlinkActionType) + class DeviceApprovalsPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -8788,7 +9420,7 @@ class DeviceApprovalsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition limited = None # Attribute is overwritten below the class definition @@ -8802,7 +9434,7 @@ def is_limited(self): :rtype: bool """ - return self._tag == 'limited' + return self._tag == "limited" def is_unlimited(self): """ @@ -8810,7 +9442,7 @@ def is_unlimited(self): :rtype: bool """ - return self._tag == 'unlimited' + return self._tag == "unlimited" def is_other(self): """ @@ -8818,20 +9450,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceApprovalsPolicy_validator = bv.Union(DeviceApprovalsPolicy) + class DeviceApprovalsRemoveExceptionDetails(bb.Struct): """ Removed members from device approvals exception list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -8839,20 +9474,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsRemoveExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsRemoveExceptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceApprovalsRemoveExceptionDetails_validator = bv.Struct(DeviceApprovalsRemoveExceptionDetails) -class DeviceApprovalsRemoveExceptionType(bb.Struct): +class DeviceApprovalsRemoveExceptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8861,10 +9498,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceApprovalsRemoveExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceApprovalsRemoveExceptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceApprovalsRemoveExceptionType_validator = bv.Struct(DeviceApprovalsRemoveExceptionType) + class DeviceChangeIpDesktopDetails(bb.Struct): """ Changed IP address associated with active desktop session. @@ -8874,13 +9515,12 @@ class DeviceChangeIpDesktopDetails(bb.Struct): """ __slots__ = [ - '_device_session_info_value', + "_device_session_info_value", ] _has_required_fields = True - def __init__(self, - device_session_info=None): + def __init__(self, device_session_info=None): self._device_session_info_value = bb.NOT_SET if device_session_info is not None: self.device_session_info = device_session_info @@ -8889,20 +9529,22 @@ def __init__(self, device_session_info = bb.Attribute("device_session_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpDesktopDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceChangeIpDesktopDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceChangeIpDesktopDetails_validator = bv.Struct(DeviceChangeIpDesktopDetails) -class DeviceChangeIpDesktopType(bb.Struct): +class DeviceChangeIpDesktopType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8911,10 +9553,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpDesktopType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceChangeIpDesktopType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceChangeIpDesktopType_validator = bv.Struct(DeviceChangeIpDesktopType) + class DeviceChangeIpMobileDetails(bb.Struct): """ Changed IP address associated with active mobile session. @@ -8924,13 +9570,12 @@ class DeviceChangeIpMobileDetails(bb.Struct): """ __slots__ = [ - '_device_session_info_value', + "_device_session_info_value", ] _has_required_fields = False - def __init__(self, - device_session_info=None): + def __init__(self, device_session_info=None): self._device_session_info_value = bb.NOT_SET if device_session_info is not None: self.device_session_info = device_session_info @@ -8939,20 +9584,22 @@ def __init__(self, device_session_info = bb.Attribute("device_session_info", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpMobileDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceChangeIpMobileDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceChangeIpMobileDetails_validator = bv.Struct(DeviceChangeIpMobileDetails) -class DeviceChangeIpMobileType(bb.Struct): +class DeviceChangeIpMobileType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -8961,10 +9608,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpMobileType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceChangeIpMobileType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceChangeIpMobileType_validator = bv.Struct(DeviceChangeIpMobileType) + class DeviceChangeIpWebDetails(bb.Struct): """ Changed IP address associated with active web session. @@ -8974,13 +9625,12 @@ class DeviceChangeIpWebDetails(bb.Struct): """ __slots__ = [ - '_user_agent_value', + "_user_agent_value", ] _has_required_fields = True - def __init__(self, - user_agent=None): + def __init__(self, user_agent=None): self._user_agent_value = bb.NOT_SET if user_agent is not None: self.user_agent = user_agent @@ -8989,20 +9639,22 @@ def __init__(self, user_agent = bb.Attribute("user_agent") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpWebDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceChangeIpWebDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceChangeIpWebDetails_validator = bv.Struct(DeviceChangeIpWebDetails) -class DeviceChangeIpWebType(bb.Struct): +class DeviceChangeIpWebType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9011,10 +9663,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceChangeIpWebType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceChangeIpWebType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceChangeIpWebType_validator = bv.Struct(DeviceChangeIpWebType) + class DeviceDeleteOnUnlinkFailDetails(bb.Struct): """ Failed to delete all files from unlinked device. @@ -9028,17 +9684,14 @@ class DeviceDeleteOnUnlinkFailDetails(bb.Struct): """ __slots__ = [ - '_session_info_value', - '_display_name_value', - '_num_failures_value', + "_session_info_value", + "_display_name_value", + "_num_failures_value", ] _has_required_fields = True - def __init__(self, - num_failures=None, - session_info=None, - display_name=None): + def __init__(self, num_failures=None, session_info=None, display_name=None): self._session_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._num_failures_value = bb.NOT_SET @@ -9059,20 +9712,22 @@ def __init__(self, num_failures = bb.Attribute("num_failures") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceDeleteOnUnlinkFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceDeleteOnUnlinkFailDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceDeleteOnUnlinkFailDetails_validator = bv.Struct(DeviceDeleteOnUnlinkFailDetails) -class DeviceDeleteOnUnlinkFailType(bb.Struct): +class DeviceDeleteOnUnlinkFailType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9081,10 +9736,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceDeleteOnUnlinkFailType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceDeleteOnUnlinkFailType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceDeleteOnUnlinkFailType_validator = bv.Struct(DeviceDeleteOnUnlinkFailType) + class DeviceDeleteOnUnlinkSuccessDetails(bb.Struct): """ Deleted all files from unlinked device. @@ -9096,15 +9755,13 @@ class DeviceDeleteOnUnlinkSuccessDetails(bb.Struct): """ __slots__ = [ - '_session_info_value', - '_display_name_value', + "_session_info_value", + "_display_name_value", ] _has_required_fields = False - def __init__(self, - session_info=None, - display_name=None): + def __init__(self, session_info=None, display_name=None): self._session_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET if session_info is not None: @@ -9119,20 +9776,22 @@ def __init__(self, display_name = bb.Attribute("display_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceDeleteOnUnlinkSuccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceDeleteOnUnlinkSuccessDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceDeleteOnUnlinkSuccessDetails_validator = bv.Struct(DeviceDeleteOnUnlinkSuccessDetails) -class DeviceDeleteOnUnlinkSuccessType(bb.Struct): +class DeviceDeleteOnUnlinkSuccessType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9141,10 +9800,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceDeleteOnUnlinkSuccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceDeleteOnUnlinkSuccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceDeleteOnUnlinkSuccessType_validator = bv.Struct(DeviceDeleteOnUnlinkSuccessType) + class DeviceLinkFailDetails(bb.Struct): """ Failed to link device. @@ -9156,15 +9819,13 @@ class DeviceLinkFailDetails(bb.Struct): """ __slots__ = [ - '_ip_address_value', - '_device_type_value', + "_ip_address_value", + "_device_type_value", ] _has_required_fields = True - def __init__(self, - device_type=None, - ip_address=None): + def __init__(self, device_type=None, ip_address=None): self._ip_address_value = bb.NOT_SET self._device_type_value = bb.NOT_SET if ip_address is not None: @@ -9179,20 +9840,22 @@ def __init__(self, device_type = bb.Attribute("device_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceLinkFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceLinkFailDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceLinkFailDetails_validator = bv.Struct(DeviceLinkFailDetails) -class DeviceLinkFailType(bb.Struct): +class DeviceLinkFailType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9201,10 +9864,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceLinkFailType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceLinkFailType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceLinkFailType_validator = bv.Struct(DeviceLinkFailType) + class DeviceLinkSuccessDetails(bb.Struct): """ Linked device. @@ -9214,13 +9881,12 @@ class DeviceLinkSuccessDetails(bb.Struct): """ __slots__ = [ - '_device_session_info_value', + "_device_session_info_value", ] _has_required_fields = False - def __init__(self, - device_session_info=None): + def __init__(self, device_session_info=None): self._device_session_info_value = bb.NOT_SET if device_session_info is not None: self.device_session_info = device_session_info @@ -9229,20 +9895,22 @@ def __init__(self, device_session_info = bb.Attribute("device_session_info", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceLinkSuccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceLinkSuccessDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceLinkSuccessDetails_validator = bv.Struct(DeviceLinkSuccessDetails) -class DeviceLinkSuccessType(bb.Struct): +class DeviceLinkSuccessType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9251,17 +9919,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceLinkSuccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceLinkSuccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceLinkSuccessType_validator = bv.Struct(DeviceLinkSuccessType) + class DeviceManagementDisabledDetails(bb.Struct): """ Disabled device management. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9269,20 +9940,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceManagementDisabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceManagementDisabledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceManagementDisabledDetails_validator = bv.Struct(DeviceManagementDisabledDetails) -class DeviceManagementDisabledType(bb.Struct): +class DeviceManagementDisabledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9291,17 +9964,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceManagementDisabledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceManagementDisabledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceManagementDisabledType_validator = bv.Struct(DeviceManagementDisabledType) + class DeviceManagementEnabledDetails(bb.Struct): """ Enabled device management. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9309,20 +9985,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceManagementEnabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceManagementEnabledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceManagementEnabledDetails_validator = bv.Struct(DeviceManagementEnabledDetails) -class DeviceManagementEnabledType(bb.Struct): +class DeviceManagementEnabledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9331,10 +10009,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceManagementEnabledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceManagementEnabledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceManagementEnabledType_validator = bv.Struct(DeviceManagementEnabledType) + class DeviceSyncBackupStatusChangedDetails(bb.Struct): """ Enabled/disabled backup for computer. @@ -9348,17 +10030,14 @@ class DeviceSyncBackupStatusChangedDetails(bb.Struct): """ __slots__ = [ - '_desktop_device_session_info_value', - '_previous_value_value', - '_new_value_value', + "_desktop_device_session_info_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - desktop_device_session_info=None, - previous_value=None, - new_value=None): + def __init__(self, desktop_device_session_info=None, previous_value=None, new_value=None): self._desktop_device_session_info_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -9379,20 +10058,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSyncBackupStatusChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceSyncBackupStatusChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceSyncBackupStatusChangedDetails_validator = bv.Struct(DeviceSyncBackupStatusChangedDetails) -class DeviceSyncBackupStatusChangedType(bb.Struct): +class DeviceSyncBackupStatusChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9401,10 +10082,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceSyncBackupStatusChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceSyncBackupStatusChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceSyncBackupStatusChangedType_validator = bv.Struct(DeviceSyncBackupStatusChangedType) + class DeviceType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9412,7 +10097,7 @@ class DeviceType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition desktop = None # Attribute is overwritten below the class definition @@ -9426,7 +10111,7 @@ def is_desktop(self): :rtype: bool """ - return self._tag == 'desktop' + return self._tag == "desktop" def is_mobile(self): """ @@ -9434,7 +10119,7 @@ def is_mobile(self): :rtype: bool """ - return self._tag == 'mobile' + return self._tag == "mobile" def is_other(self): """ @@ -9442,13 +10127,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(DeviceType, self)._process_custom_annotations(annotation_type, field_path, processor) + DeviceType_validator = bv.Union(DeviceType) + class DeviceUnlinkDetails(bb.Struct): """ Disconnected device. @@ -9463,17 +10150,14 @@ class DeviceUnlinkDetails(bb.Struct): """ __slots__ = [ - '_session_info_value', - '_display_name_value', - '_delete_data_value', + "_session_info_value", + "_display_name_value", + "_delete_data_value", ] _has_required_fields = True - def __init__(self, - delete_data=None, - session_info=None, - display_name=None): + def __init__(self, delete_data=None, session_info=None, display_name=None): self._session_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._delete_data_value = bb.NOT_SET @@ -9494,10 +10178,14 @@ def __init__(self, delete_data = bb.Attribute("delete_data") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceUnlinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceUnlinkDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceUnlinkDetails_validator = bv.Struct(DeviceUnlinkDetails) + class DeviceUnlinkPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9505,7 +10193,7 @@ class DeviceUnlinkPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition keep = None # Attribute is overwritten below the class definition @@ -9519,7 +10207,7 @@ def is_keep(self): :rtype: bool """ - return self._tag == 'keep' + return self._tag == "keep" def is_remove(self): """ @@ -9527,7 +10215,7 @@ def is_remove(self): :rtype: bool """ - return self._tag == 'remove' + return self._tag == "remove" def is_other(self): """ @@ -9535,23 +10223,25 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceUnlinkPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceUnlinkPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceUnlinkPolicy_validator = bv.Union(DeviceUnlinkPolicy) -class DeviceUnlinkType(bb.Struct): +class DeviceUnlinkType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9560,17 +10250,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeviceUnlinkType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DeviceUnlinkType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DeviceUnlinkType_validator = bv.Struct(DeviceUnlinkType) + class DirectoryRestrictionsAddMembersDetails(bb.Struct): """ Added members to directory restrictions list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9578,20 +10271,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DirectoryRestrictionsAddMembersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DirectoryRestrictionsAddMembersDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DirectoryRestrictionsAddMembersDetails_validator = bv.Struct(DirectoryRestrictionsAddMembersDetails) -class DirectoryRestrictionsAddMembersType(bb.Struct): +class DirectoryRestrictionsAddMembersType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9600,17 +10295,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DirectoryRestrictionsAddMembersType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DirectoryRestrictionsAddMembersType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DirectoryRestrictionsAddMembersType_validator = bv.Struct(DirectoryRestrictionsAddMembersType) + class DirectoryRestrictionsRemoveMembersDetails(bb.Struct): """ Removed members from directory restrictions list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9618,20 +10316,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DirectoryRestrictionsRemoveMembersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DirectoryRestrictionsRemoveMembersDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DirectoryRestrictionsRemoveMembersDetails_validator = bv.Struct(DirectoryRestrictionsRemoveMembersDetails) -class DirectoryRestrictionsRemoveMembersType(bb.Struct): +DirectoryRestrictionsRemoveMembersDetails_validator = bv.Struct( + DirectoryRestrictionsRemoveMembersDetails +) + +class DirectoryRestrictionsRemoveMembersType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9640,17 +10342,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DirectoryRestrictionsRemoveMembersType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DirectoryRestrictionsRemoveMembersType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DirectoryRestrictionsRemoveMembersType_validator = bv.Struct(DirectoryRestrictionsRemoveMembersType) + class DisabledDomainInvitesDetails(bb.Struct): """ Disabled domain invites. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9658,20 +10363,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DisabledDomainInvitesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DisabledDomainInvitesDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DisabledDomainInvitesDetails_validator = bv.Struct(DisabledDomainInvitesDetails) -class DisabledDomainInvitesType(bb.Struct): +class DisabledDomainInvitesType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9680,10 +10387,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DisabledDomainInvitesType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DisabledDomainInvitesType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DisabledDomainInvitesType_validator = bv.Struct(DisabledDomainInvitesType) + class DispositionActionType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -9691,7 +10402,7 @@ class DispositionActionType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition automatic_delete = None # Attribute is overwritten below the class definition @@ -9705,7 +10416,7 @@ def is_automatic_delete(self): :rtype: bool """ - return self._tag == 'automatic_delete' + return self._tag == "automatic_delete" def is_automatic_permanently_delete(self): """ @@ -9713,7 +10424,7 @@ def is_automatic_permanently_delete(self): :rtype: bool """ - return self._tag == 'automatic_permanently_delete' + return self._tag == "automatic_permanently_delete" def is_other(self): """ @@ -9721,20 +10432,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DispositionActionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DispositionActionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DispositionActionType_validator = bv.Union(DispositionActionType) + class DomainInvitesApproveRequestToJoinTeamDetails(bb.Struct): """ Approved user's request to join team. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9742,20 +10456,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesApproveRequestToJoinTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesApproveRequestToJoinTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DomainInvitesApproveRequestToJoinTeamDetails_validator = bv.Struct(DomainInvitesApproveRequestToJoinTeamDetails) -class DomainInvitesApproveRequestToJoinTeamType(bb.Struct): +DomainInvitesApproveRequestToJoinTeamDetails_validator = bv.Struct( + DomainInvitesApproveRequestToJoinTeamDetails +) + +class DomainInvitesApproveRequestToJoinTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9764,17 +10482,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesApproveRequestToJoinTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesApproveRequestToJoinTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DomainInvitesApproveRequestToJoinTeamType_validator = bv.Struct( + DomainInvitesApproveRequestToJoinTeamType +) -DomainInvitesApproveRequestToJoinTeamType_validator = bv.Struct(DomainInvitesApproveRequestToJoinTeamType) class DomainInvitesDeclineRequestToJoinTeamDetails(bb.Struct): """ Declined user's request to join team. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9782,20 +10505,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesDeclineRequestToJoinTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesDeclineRequestToJoinTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DomainInvitesDeclineRequestToJoinTeamDetails_validator = bv.Struct(DomainInvitesDeclineRequestToJoinTeamDetails) -class DomainInvitesDeclineRequestToJoinTeamType(bb.Struct): +DomainInvitesDeclineRequestToJoinTeamDetails_validator = bv.Struct( + DomainInvitesDeclineRequestToJoinTeamDetails +) + +class DomainInvitesDeclineRequestToJoinTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9804,9 +10531,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesDeclineRequestToJoinTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesDeclineRequestToJoinTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DomainInvitesDeclineRequestToJoinTeamType_validator = bv.Struct( + DomainInvitesDeclineRequestToJoinTeamType +) -DomainInvitesDeclineRequestToJoinTeamType_validator = bv.Struct(DomainInvitesDeclineRequestToJoinTeamType) class DomainInvitesEmailExistingUsersDetails(bb.Struct): """ @@ -9819,15 +10552,13 @@ class DomainInvitesEmailExistingUsersDetails(bb.Struct): """ __slots__ = [ - '_domain_name_value', - '_num_recipients_value', + "_domain_name_value", + "_num_recipients_value", ] _has_required_fields = True - def __init__(self, - domain_name=None, - num_recipients=None): + def __init__(self, domain_name=None, num_recipients=None): self._domain_name_value = bb.NOT_SET self._num_recipients_value = bb.NOT_SET if domain_name is not None: @@ -9842,20 +10573,22 @@ def __init__(self, num_recipients = bb.Attribute("num_recipients") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesEmailExistingUsersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesEmailExistingUsersDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DomainInvitesEmailExistingUsersDetails_validator = bv.Struct(DomainInvitesEmailExistingUsersDetails) -class DomainInvitesEmailExistingUsersType(bb.Struct): +class DomainInvitesEmailExistingUsersType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9864,17 +10597,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesEmailExistingUsersType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesEmailExistingUsersType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DomainInvitesEmailExistingUsersType_validator = bv.Struct(DomainInvitesEmailExistingUsersType) + class DomainInvitesRequestToJoinTeamDetails(bb.Struct): """ Requested to join team. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9882,20 +10618,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesRequestToJoinTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesRequestToJoinTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DomainInvitesRequestToJoinTeamDetails_validator = bv.Struct(DomainInvitesRequestToJoinTeamDetails) -class DomainInvitesRequestToJoinTeamType(bb.Struct): +class DomainInvitesRequestToJoinTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9904,17 +10642,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesRequestToJoinTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesRequestToJoinTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DomainInvitesRequestToJoinTeamType_validator = bv.Struct(DomainInvitesRequestToJoinTeamType) + class DomainInvitesSetInviteNewUserPrefToNoDetails(bb.Struct): """ Disabled "Automatically invite new users". """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9922,20 +10663,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesSetInviteNewUserPrefToNoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesSetInviteNewUserPrefToNoDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DomainInvitesSetInviteNewUserPrefToNoDetails_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToNoDetails) -class DomainInvitesSetInviteNewUserPrefToNoType(bb.Struct): +DomainInvitesSetInviteNewUserPrefToNoDetails_validator = bv.Struct( + DomainInvitesSetInviteNewUserPrefToNoDetails +) + +class DomainInvitesSetInviteNewUserPrefToNoType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9944,17 +10689,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesSetInviteNewUserPrefToNoType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesSetInviteNewUserPrefToNoType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DomainInvitesSetInviteNewUserPrefToNoType_validator = bv.Struct( + DomainInvitesSetInviteNewUserPrefToNoType +) -DomainInvitesSetInviteNewUserPrefToNoType_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToNoType) class DomainInvitesSetInviteNewUserPrefToYesDetails(bb.Struct): """ Enabled "Automatically invite new users". """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -9962,20 +10712,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesSetInviteNewUserPrefToYesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesSetInviteNewUserPrefToYesDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DomainInvitesSetInviteNewUserPrefToYesDetails_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToYesDetails) -class DomainInvitesSetInviteNewUserPrefToYesType(bb.Struct): +DomainInvitesSetInviteNewUserPrefToYesDetails_validator = bv.Struct( + DomainInvitesSetInviteNewUserPrefToYesDetails +) + +class DomainInvitesSetInviteNewUserPrefToYesType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -9984,9 +10738,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainInvitesSetInviteNewUserPrefToYesType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainInvitesSetInviteNewUserPrefToYesType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +DomainInvitesSetInviteNewUserPrefToYesType_validator = bv.Struct( + DomainInvitesSetInviteNewUserPrefToYesType +) -DomainInvitesSetInviteNewUserPrefToYesType_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToYesType) class DomainVerificationAddDomainFailDetails(bb.Struct): """ @@ -10000,15 +10760,13 @@ class DomainVerificationAddDomainFailDetails(bb.Struct): """ __slots__ = [ - '_domain_name_value', - '_verification_method_value', + "_domain_name_value", + "_verification_method_value", ] _has_required_fields = True - def __init__(self, - domain_name=None, - verification_method=None): + def __init__(self, domain_name=None, verification_method=None): self._domain_name_value = bb.NOT_SET self._verification_method_value = bb.NOT_SET if domain_name is not None: @@ -10023,20 +10781,22 @@ def __init__(self, verification_method = bb.Attribute("verification_method", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationAddDomainFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainVerificationAddDomainFailDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DomainVerificationAddDomainFailDetails_validator = bv.Struct(DomainVerificationAddDomainFailDetails) -class DomainVerificationAddDomainFailType(bb.Struct): +class DomainVerificationAddDomainFailType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10045,10 +10805,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationAddDomainFailType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainVerificationAddDomainFailType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DomainVerificationAddDomainFailType_validator = bv.Struct(DomainVerificationAddDomainFailType) + class DomainVerificationAddDomainSuccessDetails(bb.Struct): """ Verified team domain. @@ -10061,15 +10825,13 @@ class DomainVerificationAddDomainSuccessDetails(bb.Struct): """ __slots__ = [ - '_domain_names_value', - '_verification_method_value', + "_domain_names_value", + "_verification_method_value", ] _has_required_fields = True - def __init__(self, - domain_names=None, - verification_method=None): + def __init__(self, domain_names=None, verification_method=None): self._domain_names_value = bb.NOT_SET self._verification_method_value = bb.NOT_SET if domain_names is not None: @@ -10084,20 +10846,24 @@ def __init__(self, verification_method = bb.Attribute("verification_method", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationAddDomainSuccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainVerificationAddDomainSuccessDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DomainVerificationAddDomainSuccessDetails_validator = bv.Struct(DomainVerificationAddDomainSuccessDetails) -class DomainVerificationAddDomainSuccessType(bb.Struct): +DomainVerificationAddDomainSuccessDetails_validator = bv.Struct( + DomainVerificationAddDomainSuccessDetails +) + +class DomainVerificationAddDomainSuccessType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10106,10 +10872,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationAddDomainSuccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainVerificationAddDomainSuccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DomainVerificationAddDomainSuccessType_validator = bv.Struct(DomainVerificationAddDomainSuccessType) + class DomainVerificationRemoveDomainDetails(bb.Struct): """ Removed domain from list of verified team domains. @@ -10119,13 +10889,12 @@ class DomainVerificationRemoveDomainDetails(bb.Struct): """ __slots__ = [ - '_domain_names_value', + "_domain_names_value", ] _has_required_fields = True - def __init__(self, - domain_names=None): + def __init__(self, domain_names=None): self._domain_names_value = bb.NOT_SET if domain_names is not None: self.domain_names = domain_names @@ -10134,20 +10903,22 @@ def __init__(self, domain_names = bb.Attribute("domain_names") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationRemoveDomainDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainVerificationRemoveDomainDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DomainVerificationRemoveDomainDetails_validator = bv.Struct(DomainVerificationRemoveDomainDetails) -class DomainVerificationRemoveDomainType(bb.Struct): +class DomainVerificationRemoveDomainType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10156,10 +10927,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DomainVerificationRemoveDomainType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DomainVerificationRemoveDomainType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DomainVerificationRemoveDomainType_validator = bv.Struct(DomainVerificationRemoveDomainType) + class DownloadPolicyType(bb.Union): """ Shared content downloads policy @@ -10169,7 +10944,7 @@ class DownloadPolicyType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -10183,7 +10958,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == 'allow' + return self._tag == "allow" def is_disallow(self): """ @@ -10191,7 +10966,7 @@ def is_disallow(self): :rtype: bool """ - return self._tag == 'disallow' + return self._tag == "disallow" def is_other(self): """ @@ -10199,13 +10974,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DownloadPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DownloadPolicyType_validator = bv.Union(DownloadPolicyType) + class DropboxPasswordsExportedDetails(bb.Struct): """ Exported passwords. @@ -10215,13 +10994,12 @@ class DropboxPasswordsExportedDetails(bb.Struct): """ __slots__ = [ - '_platform_value', + "_platform_value", ] _has_required_fields = True - def __init__(self, - platform=None): + def __init__(self, platform=None): self._platform_value = bb.NOT_SET if platform is not None: self.platform = platform @@ -10230,20 +11008,22 @@ def __init__(self, platform = bb.Attribute("platform") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsExportedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DropboxPasswordsExportedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DropboxPasswordsExportedDetails_validator = bv.Struct(DropboxPasswordsExportedDetails) -class DropboxPasswordsExportedType(bb.Struct): +class DropboxPasswordsExportedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10252,10 +11032,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsExportedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DropboxPasswordsExportedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DropboxPasswordsExportedType_validator = bv.Struct(DropboxPasswordsExportedType) + class DropboxPasswordsNewDeviceEnrolledDetails(bb.Struct): """ Enrolled new Dropbox Passwords device. @@ -10267,15 +11051,13 @@ class DropboxPasswordsNewDeviceEnrolledDetails(bb.Struct): """ __slots__ = [ - '_is_first_device_value', - '_platform_value', + "_is_first_device_value", + "_platform_value", ] _has_required_fields = True - def __init__(self, - is_first_device=None, - platform=None): + def __init__(self, is_first_device=None, platform=None): self._is_first_device_value = bb.NOT_SET self._platform_value = bb.NOT_SET if is_first_device is not None: @@ -10290,20 +11072,24 @@ def __init__(self, platform = bb.Attribute("platform") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsNewDeviceEnrolledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DropboxPasswordsNewDeviceEnrolledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -DropboxPasswordsNewDeviceEnrolledDetails_validator = bv.Struct(DropboxPasswordsNewDeviceEnrolledDetails) -class DropboxPasswordsNewDeviceEnrolledType(bb.Struct): +DropboxPasswordsNewDeviceEnrolledDetails_validator = bv.Struct( + DropboxPasswordsNewDeviceEnrolledDetails +) + +class DropboxPasswordsNewDeviceEnrolledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10312,10 +11098,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsNewDeviceEnrolledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DropboxPasswordsNewDeviceEnrolledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DropboxPasswordsNewDeviceEnrolledType_validator = bv.Struct(DropboxPasswordsNewDeviceEnrolledType) + class DropboxPasswordsPolicy(bb.Union): """ Policy for deciding whether team users can use Dropbox Passwords @@ -10325,7 +11115,7 @@ class DropboxPasswordsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -10341,7 +11131,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -10349,7 +11139,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -10357,7 +11147,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -10365,13 +11155,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DropboxPasswordsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DropboxPasswordsPolicy_validator = bv.Union(DropboxPasswordsPolicy) + class DropboxPasswordsPolicyChangedDetails(bb.Struct): """ Changed Dropbox Passwords policy for team. @@ -10383,15 +11177,13 @@ class DropboxPasswordsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -10406,20 +11198,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DropboxPasswordsPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DropboxPasswordsPolicyChangedDetails_validator = bv.Struct(DropboxPasswordsPolicyChangedDetails) -class DropboxPasswordsPolicyChangedType(bb.Struct): +class DropboxPasswordsPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10428,10 +11222,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DropboxPasswordsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DropboxPasswordsPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DropboxPasswordsPolicyChangedType_validator = bv.Struct(DropboxPasswordsPolicyChangedType) + class DurationLogInfo(bb.Struct): """ Represents a time duration: unit and amount @@ -10443,15 +11241,13 @@ class DurationLogInfo(bb.Struct): """ __slots__ = [ - '_unit_value', - '_amount_value', + "_unit_value", + "_amount_value", ] _has_required_fields = True - def __init__(self, - unit=None, - amount=None): + def __init__(self, unit=None, amount=None): self._unit_value = bb.NOT_SET self._amount_value = bb.NOT_SET if unit is not None: @@ -10466,10 +11262,14 @@ def __init__(self, amount = bb.Attribute("amount") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DurationLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DurationLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DurationLogInfo_validator = bv.Struct(DurationLogInfo) + class EmailIngestPolicy(bb.Union): """ Policy for deciding whether a team can use Email to Dropbox feature @@ -10479,7 +11279,7 @@ class EmailIngestPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -10493,7 +11293,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -10501,7 +11301,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -10509,13 +11309,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmailIngestPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmailIngestPolicy_validator = bv.Union(EmailIngestPolicy) + class EmailIngestPolicyChangedDetails(bb.Struct): """ Changed email to Dropbox policy for team. @@ -10527,15 +11331,13 @@ class EmailIngestPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -10550,20 +11352,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmailIngestPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmailIngestPolicyChangedDetails_validator = bv.Struct(EmailIngestPolicyChangedDetails) -class EmailIngestPolicyChangedType(bb.Struct): +class EmailIngestPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10572,10 +11376,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmailIngestPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmailIngestPolicyChangedType_validator = bv.Struct(EmailIngestPolicyChangedType) + class EmailIngestReceiveFileDetails(bb.Struct): """ Received files via Email to Dropbox. @@ -10593,21 +11401,23 @@ class EmailIngestReceiveFileDetails(bb.Struct): """ __slots__ = [ - '_inbox_name_value', - '_attachment_names_value', - '_subject_value', - '_from_name_value', - '_from_email_value', + "_inbox_name_value", + "_attachment_names_value", + "_subject_value", + "_from_name_value", + "_from_email_value", ] _has_required_fields = True - def __init__(self, - inbox_name=None, - attachment_names=None, - subject=None, - from_name=None, - from_email=None): + def __init__( + self, + inbox_name=None, + attachment_names=None, + subject=None, + from_name=None, + from_email=None, + ): self._inbox_name_value = bb.NOT_SET self._attachment_names_value = bb.NOT_SET self._subject_value = bb.NOT_SET @@ -10640,20 +11450,22 @@ def __init__(self, from_email = bb.Attribute("from_email", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestReceiveFileDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmailIngestReceiveFileDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmailIngestReceiveFileDetails_validator = bv.Struct(EmailIngestReceiveFileDetails) -class EmailIngestReceiveFileType(bb.Struct): +class EmailIngestReceiveFileType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10662,17 +11474,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmailIngestReceiveFileType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmailIngestReceiveFileType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmailIngestReceiveFileType_validator = bv.Struct(EmailIngestReceiveFileType) + class EmmAddExceptionDetails(bb.Struct): """ Added members to EMM exception list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -10680,20 +11495,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmAddExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmAddExceptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmAddExceptionDetails_validator = bv.Struct(EmmAddExceptionDetails) -class EmmAddExceptionType(bb.Struct): +class EmmAddExceptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10702,10 +11519,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmAddExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmAddExceptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmAddExceptionType_validator = bv.Struct(EmmAddExceptionType) + class EmmChangePolicyDetails(bb.Struct): """ Enabled/disabled enterprise mobility management for members. @@ -10718,15 +11539,13 @@ class EmmChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -10741,20 +11560,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmChangePolicyDetails_validator = bv.Struct(EmmChangePolicyDetails) -class EmmChangePolicyType(bb.Struct): +class EmmChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10763,17 +11584,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmChangePolicyType_validator = bv.Struct(EmmChangePolicyType) + class EmmCreateExceptionsReportDetails(bb.Struct): """ Created EMM-excluded users report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -10781,20 +11605,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmCreateExceptionsReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmCreateExceptionsReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmCreateExceptionsReportDetails_validator = bv.Struct(EmmCreateExceptionsReportDetails) -class EmmCreateExceptionsReportType(bb.Struct): +class EmmCreateExceptionsReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10803,17 +11629,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmCreateExceptionsReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmCreateExceptionsReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmCreateExceptionsReportType_validator = bv.Struct(EmmCreateExceptionsReportType) + class EmmCreateUsageReportDetails(bb.Struct): """ Created EMM mobile app usage report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -10821,20 +11650,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmCreateUsageReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmCreateUsageReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmCreateUsageReportDetails_validator = bv.Struct(EmmCreateUsageReportDetails) -class EmmCreateUsageReportType(bb.Struct): +class EmmCreateUsageReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10843,10 +11674,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmCreateUsageReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmCreateUsageReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmCreateUsageReportType_validator = bv.Struct(EmmCreateUsageReportType) + class EmmErrorDetails(bb.Struct): """ Failed to sign in via EMM. @@ -10856,13 +11691,12 @@ class EmmErrorDetails(bb.Struct): """ __slots__ = [ - '_error_details_value', + "_error_details_value", ] _has_required_fields = True - def __init__(self, - error_details=None): + def __init__(self, error_details=None): self._error_details_value = bb.NOT_SET if error_details is not None: self.error_details = error_details @@ -10871,20 +11705,22 @@ def __init__(self, error_details = bb.Attribute("error_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmErrorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmErrorDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmErrorDetails_validator = bv.Struct(EmmErrorDetails) -class EmmErrorType(bb.Struct): +class EmmErrorType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10893,17 +11729,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmErrorType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmErrorType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmErrorType_validator = bv.Struct(EmmErrorType) + class EmmRefreshAuthTokenDetails(bb.Struct): """ Refreshed auth token used for setting up EMM. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -10911,20 +11750,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmRefreshAuthTokenDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmRefreshAuthTokenDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmRefreshAuthTokenDetails_validator = bv.Struct(EmmRefreshAuthTokenDetails) -class EmmRefreshAuthTokenType(bb.Struct): +class EmmRefreshAuthTokenType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10933,17 +11774,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmRefreshAuthTokenType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmRefreshAuthTokenType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmRefreshAuthTokenType_validator = bv.Struct(EmmRefreshAuthTokenType) + class EmmRemoveExceptionDetails(bb.Struct): """ Removed members from EMM exception list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -10951,20 +11795,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmRemoveExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmRemoveExceptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmRemoveExceptionDetails_validator = bv.Struct(EmmRemoveExceptionDetails) -class EmmRemoveExceptionType(bb.Struct): +class EmmRemoveExceptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -10973,17 +11819,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EmmRemoveExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EmmRemoveExceptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EmmRemoveExceptionType_validator = bv.Struct(EmmRemoveExceptionType) + class EnabledDomainInvitesDetails(bb.Struct): """ Enabled domain invites. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -10991,20 +11840,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnabledDomainInvitesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EnabledDomainInvitesDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EnabledDomainInvitesDetails_validator = bv.Struct(EnabledDomainInvitesDetails) -class EnabledDomainInvitesType(bb.Struct): +class EnabledDomainInvitesType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11013,10 +11864,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnabledDomainInvitesType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EnabledDomainInvitesType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EnabledDomainInvitesType_validator = bv.Struct(EnabledDomainInvitesType) + class EncryptedFolderCancelTeamKeyRotationDetails(bb.Struct): """ Canceled team key rotation. @@ -11026,13 +11881,12 @@ class EncryptedFolderCancelTeamKeyRotationDetails(bb.Struct): """ __slots__ = [ - '_team_key_id_value', + "_team_key_id_value", ] _has_required_fields = True - def __init__(self, - team_key_id=None): + def __init__(self, team_key_id=None): self._team_key_id_value = bb.NOT_SET if team_key_id is not None: self.team_key_id = team_key_id @@ -11041,20 +11895,24 @@ def __init__(self, team_key_id = bb.Attribute("team_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderCancelTeamKeyRotationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderCancelTeamKeyRotationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -EncryptedFolderCancelTeamKeyRotationDetails_validator = bv.Struct(EncryptedFolderCancelTeamKeyRotationDetails) -class EncryptedFolderCancelTeamKeyRotationType(bb.Struct): +EncryptedFolderCancelTeamKeyRotationDetails_validator = bv.Struct( + EncryptedFolderCancelTeamKeyRotationDetails +) + +class EncryptedFolderCancelTeamKeyRotationType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11063,9 +11921,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderCancelTeamKeyRotationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderCancelTeamKeyRotationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +EncryptedFolderCancelTeamKeyRotationType_validator = bv.Struct( + EncryptedFolderCancelTeamKeyRotationType +) -EncryptedFolderCancelTeamKeyRotationType_validator = bv.Struct(EncryptedFolderCancelTeamKeyRotationType) class EncryptedFolderEnrollBackupKeyDetails(bb.Struct): """ @@ -11076,13 +11940,12 @@ class EncryptedFolderEnrollBackupKeyDetails(bb.Struct): """ __slots__ = [ - '_backup_key_id_value', + "_backup_key_id_value", ] _has_required_fields = True - def __init__(self, - backup_key_id=None): + def __init__(self, backup_key_id=None): self._backup_key_id_value = bb.NOT_SET if backup_key_id is not None: self.backup_key_id = backup_key_id @@ -11091,20 +11954,22 @@ def __init__(self, backup_key_id = bb.Attribute("backup_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollBackupKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderEnrollBackupKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderEnrollBackupKeyDetails_validator = bv.Struct(EncryptedFolderEnrollBackupKeyDetails) -class EncryptedFolderEnrollBackupKeyType(bb.Struct): +class EncryptedFolderEnrollBackupKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11113,10 +11978,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollBackupKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderEnrollBackupKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderEnrollBackupKeyType_validator = bv.Struct(EncryptedFolderEnrollBackupKeyType) + class EncryptedFolderEnrollClientDetails(bb.Struct): """ Enrolled device. @@ -11126,13 +11995,12 @@ class EncryptedFolderEnrollClientDetails(bb.Struct): """ __slots__ = [ - '_client_key_id_value', + "_client_key_id_value", ] _has_required_fields = True - def __init__(self, - client_key_id=None): + def __init__(self, client_key_id=None): self._client_key_id_value = bb.NOT_SET if client_key_id is not None: self.client_key_id = client_key_id @@ -11141,20 +12009,22 @@ def __init__(self, client_key_id = bb.Attribute("client_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollClientDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderEnrollClientDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderEnrollClientDetails_validator = bv.Struct(EncryptedFolderEnrollClientDetails) -class EncryptedFolderEnrollClientType(bb.Struct): +class EncryptedFolderEnrollClientType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11163,17 +12033,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollClientType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderEnrollClientType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderEnrollClientType_validator = bv.Struct(EncryptedFolderEnrollClientType) + class EncryptedFolderEnrollTeamDetails(bb.Struct): """ Activated team folder encryption. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -11181,20 +12054,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderEnrollTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderEnrollTeamDetails_validator = bv.Struct(EncryptedFolderEnrollTeamDetails) -class EncryptedFolderEnrollTeamType(bb.Struct): +class EncryptedFolderEnrollTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11203,17 +12078,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderEnrollTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderEnrollTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderEnrollTeamType_validator = bv.Struct(EncryptedFolderEnrollTeamType) + class EncryptedFolderFinishTeamUnenrollmentDetails(bb.Struct): """ Deactivated team folder encryption. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -11221,20 +12099,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderFinishTeamUnenrollmentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderFinishTeamUnenrollmentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -EncryptedFolderFinishTeamUnenrollmentDetails_validator = bv.Struct(EncryptedFolderFinishTeamUnenrollmentDetails) -class EncryptedFolderFinishTeamUnenrollmentType(bb.Struct): +EncryptedFolderFinishTeamUnenrollmentDetails_validator = bv.Struct( + EncryptedFolderFinishTeamUnenrollmentDetails +) + +class EncryptedFolderFinishTeamUnenrollmentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11243,9 +12125,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderFinishTeamUnenrollmentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderFinishTeamUnenrollmentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +EncryptedFolderFinishTeamUnenrollmentType_validator = bv.Struct( + EncryptedFolderFinishTeamUnenrollmentType +) -EncryptedFolderFinishTeamUnenrollmentType_validator = bv.Struct(EncryptedFolderFinishTeamUnenrollmentType) class EncryptedFolderInitTeamKeyRotationDetails(bb.Struct): """ @@ -11256,13 +12144,12 @@ class EncryptedFolderInitTeamKeyRotationDetails(bb.Struct): """ __slots__ = [ - '_team_key_id_value', + "_team_key_id_value", ] _has_required_fields = True - def __init__(self, - team_key_id=None): + def __init__(self, team_key_id=None): self._team_key_id_value = bb.NOT_SET if team_key_id is not None: self.team_key_id = team_key_id @@ -11271,20 +12158,24 @@ def __init__(self, team_key_id = bb.Attribute("team_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderInitTeamKeyRotationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderInitTeamKeyRotationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -EncryptedFolderInitTeamKeyRotationDetails_validator = bv.Struct(EncryptedFolderInitTeamKeyRotationDetails) -class EncryptedFolderInitTeamKeyRotationType(bb.Struct): +EncryptedFolderInitTeamKeyRotationDetails_validator = bv.Struct( + EncryptedFolderInitTeamKeyRotationDetails +) + +class EncryptedFolderInitTeamKeyRotationType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11293,17 +12184,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderInitTeamKeyRotationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderInitTeamKeyRotationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderInitTeamKeyRotationType_validator = bv.Struct(EncryptedFolderInitTeamKeyRotationType) + class EncryptedFolderInitTeamUnenrollmentDetails(bb.Struct): """ Initiated deactivation of team folder encryption. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -11311,20 +12205,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderInitTeamUnenrollmentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderInitTeamUnenrollmentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -EncryptedFolderInitTeamUnenrollmentDetails_validator = bv.Struct(EncryptedFolderInitTeamUnenrollmentDetails) -class EncryptedFolderInitTeamUnenrollmentType(bb.Struct): +EncryptedFolderInitTeamUnenrollmentDetails_validator = bv.Struct( + EncryptedFolderInitTeamUnenrollmentDetails +) + +class EncryptedFolderInitTeamUnenrollmentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11333,9 +12231,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderInitTeamUnenrollmentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderInitTeamUnenrollmentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +EncryptedFolderInitTeamUnenrollmentType_validator = bv.Struct( + EncryptedFolderInitTeamUnenrollmentType +) -EncryptedFolderInitTeamUnenrollmentType_validator = bv.Struct(EncryptedFolderInitTeamUnenrollmentType) class EncryptedFolderRemoveBackupKeyDetails(bb.Struct): """ @@ -11346,13 +12250,12 @@ class EncryptedFolderRemoveBackupKeyDetails(bb.Struct): """ __slots__ = [ - '_backup_key_id_value', + "_backup_key_id_value", ] _has_required_fields = True - def __init__(self, - backup_key_id=None): + def __init__(self, backup_key_id=None): self._backup_key_id_value = bb.NOT_SET if backup_key_id is not None: self.backup_key_id = backup_key_id @@ -11361,20 +12264,22 @@ def __init__(self, backup_key_id = bb.Attribute("backup_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderRemoveBackupKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderRemoveBackupKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderRemoveBackupKeyDetails_validator = bv.Struct(EncryptedFolderRemoveBackupKeyDetails) -class EncryptedFolderRemoveBackupKeyType(bb.Struct): +class EncryptedFolderRemoveBackupKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11383,10 +12288,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderRemoveBackupKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderRemoveBackupKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderRemoveBackupKeyType_validator = bv.Struct(EncryptedFolderRemoveBackupKeyType) + class EncryptedFolderRotateTeamKeyDetails(bb.Struct): """ Rotated team key. @@ -11396,13 +12305,12 @@ class EncryptedFolderRotateTeamKeyDetails(bb.Struct): """ __slots__ = [ - '_team_key_id_value', + "_team_key_id_value", ] _has_required_fields = True - def __init__(self, - team_key_id=None): + def __init__(self, team_key_id=None): self._team_key_id_value = bb.NOT_SET if team_key_id is not None: self.team_key_id = team_key_id @@ -11411,20 +12319,22 @@ def __init__(self, team_key_id = bb.Attribute("team_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderRotateTeamKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderRotateTeamKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderRotateTeamKeyDetails_validator = bv.Struct(EncryptedFolderRotateTeamKeyDetails) -class EncryptedFolderRotateTeamKeyType(bb.Struct): +class EncryptedFolderRotateTeamKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11433,10 +12343,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderRotateTeamKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderRotateTeamKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderRotateTeamKeyType_validator = bv.Struct(EncryptedFolderRotateTeamKeyType) + class EncryptedFolderUnenrollClientDetails(bb.Struct): """ Unenrolled device. @@ -11446,13 +12360,12 @@ class EncryptedFolderUnenrollClientDetails(bb.Struct): """ __slots__ = [ - '_client_key_id_value', + "_client_key_id_value", ] _has_required_fields = True - def __init__(self, - client_key_id=None): + def __init__(self, client_key_id=None): self._client_key_id_value = bb.NOT_SET if client_key_id is not None: self.client_key_id = client_key_id @@ -11461,20 +12374,22 @@ def __init__(self, client_key_id = bb.Attribute("client_key_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderUnenrollClientDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderUnenrollClientDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderUnenrollClientDetails_validator = bv.Struct(EncryptedFolderUnenrollClientDetails) -class EncryptedFolderUnenrollClientType(bb.Struct): +class EncryptedFolderUnenrollClientType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11483,10 +12398,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EncryptedFolderUnenrollClientType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EncryptedFolderUnenrollClientType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EncryptedFolderUnenrollClientType_validator = bv.Struct(EncryptedFolderUnenrollClientType) + class EndedEnterpriseAdminSessionDeprecatedDetails(bb.Struct): """ Ended enterprise admin session. @@ -11496,13 +12415,12 @@ class EndedEnterpriseAdminSessionDeprecatedDetails(bb.Struct): """ __slots__ = [ - '_federation_extra_details_value', + "_federation_extra_details_value", ] _has_required_fields = True - def __init__(self, - federation_extra_details=None): + def __init__(self, federation_extra_details=None): self._federation_extra_details_value = bb.NOT_SET if federation_extra_details is not None: self.federation_extra_details = federation_extra_details @@ -11511,20 +12429,24 @@ def __init__(self, federation_extra_details = bb.Attribute("federation_extra_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EndedEnterpriseAdminSessionDeprecatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EndedEnterpriseAdminSessionDeprecatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -EndedEnterpriseAdminSessionDeprecatedDetails_validator = bv.Struct(EndedEnterpriseAdminSessionDeprecatedDetails) -class EndedEnterpriseAdminSessionDeprecatedType(bb.Struct): +EndedEnterpriseAdminSessionDeprecatedDetails_validator = bv.Struct( + EndedEnterpriseAdminSessionDeprecatedDetails +) + +class EndedEnterpriseAdminSessionDeprecatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11533,17 +12455,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EndedEnterpriseAdminSessionDeprecatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EndedEnterpriseAdminSessionDeprecatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +EndedEnterpriseAdminSessionDeprecatedType_validator = bv.Struct( + EndedEnterpriseAdminSessionDeprecatedType +) -EndedEnterpriseAdminSessionDeprecatedType_validator = bv.Struct(EndedEnterpriseAdminSessionDeprecatedType) class EndedEnterpriseAdminSessionDetails(bb.Struct): """ Ended enterprise admin session. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -11551,20 +12478,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EndedEnterpriseAdminSessionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EndedEnterpriseAdminSessionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EndedEnterpriseAdminSessionDetails_validator = bv.Struct(EndedEnterpriseAdminSessionDetails) -class EndedEnterpriseAdminSessionType(bb.Struct): +class EndedEnterpriseAdminSessionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11573,10 +12502,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EndedEnterpriseAdminSessionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EndedEnterpriseAdminSessionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EndedEnterpriseAdminSessionType_validator = bv.Struct(EndedEnterpriseAdminSessionType) + class EnforceLinkPasswordPolicy(bb.Union): """ Policy for deciding whether password must be enforced when an externally @@ -11587,7 +12520,7 @@ class EnforceLinkPasswordPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition optional = None # Attribute is overwritten below the class definition @@ -11601,7 +12534,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == 'optional' + return self._tag == "optional" def is_required(self): """ @@ -11609,7 +12542,7 @@ def is_required(self): :rtype: bool """ - return self._tag == 'required' + return self._tag == "required" def is_other(self): """ @@ -11617,13 +12550,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnforceLinkPasswordPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EnforceLinkPasswordPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EnforceLinkPasswordPolicy_validator = bv.Union(EnforceLinkPasswordPolicy) + class EnterpriseSettingsLockingDetails(bb.Struct): """ Changed who can update a setting. @@ -11639,19 +12576,21 @@ class EnterpriseSettingsLockingDetails(bb.Struct): """ __slots__ = [ - '_team_name_value', - '_settings_page_name_value', - '_previous_settings_page_locking_state_value', - '_new_settings_page_locking_state_value', + "_team_name_value", + "_settings_page_name_value", + "_previous_settings_page_locking_state_value", + "_new_settings_page_locking_state_value", ] _has_required_fields = True - def __init__(self, - team_name=None, - settings_page_name=None, - previous_settings_page_locking_state=None, - new_settings_page_locking_state=None): + def __init__( + self, + team_name=None, + settings_page_name=None, + previous_settings_page_locking_state=None, + new_settings_page_locking_state=None, + ): self._team_name_value = bb.NOT_SET self._settings_page_name_value = bb.NOT_SET self._previous_settings_page_locking_state_value = bb.NOT_SET @@ -11678,20 +12617,22 @@ def __init__(self, new_settings_page_locking_state = bb.Attribute("new_settings_page_locking_state") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnterpriseSettingsLockingDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EnterpriseSettingsLockingDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EnterpriseSettingsLockingDetails_validator = bv.Struct(EnterpriseSettingsLockingDetails) -class EnterpriseSettingsLockingType(bb.Struct): +class EnterpriseSettingsLockingType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -11700,10 +12641,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnterpriseSettingsLockingType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EnterpriseSettingsLockingType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EnterpriseSettingsLockingType_validator = bv.Struct(EnterpriseSettingsLockingType) + class EventCategory(bb.Union): """ Category of events in event audit log. @@ -11772,7 +12717,7 @@ class EventCategory(bb.Union): Events that apply to cross-team trust establishment. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition admin_alerting = None # Attribute is overwritten below the class definition @@ -11834,7 +12779,7 @@ def is_admin_alerting(self): :rtype: bool """ - return self._tag == 'admin_alerting' + return self._tag == "admin_alerting" def is_apps(self): """ @@ -11842,7 +12787,7 @@ def is_apps(self): :rtype: bool """ - return self._tag == 'apps' + return self._tag == "apps" def is_comments(self): """ @@ -11850,7 +12795,7 @@ def is_comments(self): :rtype: bool """ - return self._tag == 'comments' + return self._tag == "comments" def is_dash(self): """ @@ -11858,7 +12803,7 @@ def is_dash(self): :rtype: bool """ - return self._tag == 'dash' + return self._tag == "dash" def is_data_governance(self): """ @@ -11866,7 +12811,7 @@ def is_data_governance(self): :rtype: bool """ - return self._tag == 'data_governance' + return self._tag == "data_governance" def is_devices(self): """ @@ -11874,7 +12819,7 @@ def is_devices(self): :rtype: bool """ - return self._tag == 'devices' + return self._tag == "devices" def is_domains(self): """ @@ -11882,7 +12827,7 @@ def is_domains(self): :rtype: bool """ - return self._tag == 'domains' + return self._tag == "domains" def is_encryption(self): """ @@ -11890,7 +12835,7 @@ def is_encryption(self): :rtype: bool """ - return self._tag == 'encryption' + return self._tag == "encryption" def is_file_operations(self): """ @@ -11898,7 +12843,7 @@ def is_file_operations(self): :rtype: bool """ - return self._tag == 'file_operations' + return self._tag == "file_operations" def is_file_requests(self): """ @@ -11906,7 +12851,7 @@ def is_file_requests(self): :rtype: bool """ - return self._tag == 'file_requests' + return self._tag == "file_requests" def is_groups(self): """ @@ -11914,7 +12859,7 @@ def is_groups(self): :rtype: bool """ - return self._tag == 'groups' + return self._tag == "groups" def is_logins(self): """ @@ -11922,7 +12867,7 @@ def is_logins(self): :rtype: bool """ - return self._tag == 'logins' + return self._tag == "logins" def is_members(self): """ @@ -11930,7 +12875,7 @@ def is_members(self): :rtype: bool """ - return self._tag == 'members' + return self._tag == "members" def is_paper(self): """ @@ -11938,7 +12883,7 @@ def is_paper(self): :rtype: bool """ - return self._tag == 'paper' + return self._tag == "paper" def is_passwords(self): """ @@ -11946,7 +12891,7 @@ def is_passwords(self): :rtype: bool """ - return self._tag == 'passwords' + return self._tag == "passwords" def is_protect(self): """ @@ -11954,7 +12899,7 @@ def is_protect(self): :rtype: bool """ - return self._tag == 'protect' + return self._tag == "protect" def is_reports(self): """ @@ -11962,7 +12907,7 @@ def is_reports(self): :rtype: bool """ - return self._tag == 'reports' + return self._tag == "reports" def is_sharing(self): """ @@ -11970,7 +12915,7 @@ def is_sharing(self): :rtype: bool """ - return self._tag == 'sharing' + return self._tag == "sharing" def is_showcase(self): """ @@ -11978,7 +12923,7 @@ def is_showcase(self): :rtype: bool """ - return self._tag == 'showcase' + return self._tag == "showcase" def is_signatures(self): """ @@ -11986,7 +12931,7 @@ def is_signatures(self): :rtype: bool """ - return self._tag == 'signatures' + return self._tag == "signatures" def is_sso(self): """ @@ -11994,7 +12939,7 @@ def is_sso(self): :rtype: bool """ - return self._tag == 'sso' + return self._tag == "sso" def is_team_folders(self): """ @@ -12002,7 +12947,7 @@ def is_team_folders(self): :rtype: bool """ - return self._tag == 'team_folders' + return self._tag == "team_folders" def is_team_policies(self): """ @@ -12010,7 +12955,7 @@ def is_team_policies(self): :rtype: bool """ - return self._tag == 'team_policies' + return self._tag == "team_policies" def is_team_profile(self): """ @@ -12018,7 +12963,7 @@ def is_team_profile(self): :rtype: bool """ - return self._tag == 'team_profile' + return self._tag == "team_profile" def is_tfa(self): """ @@ -12026,7 +12971,7 @@ def is_tfa(self): :rtype: bool """ - return self._tag == 'tfa' + return self._tag == "tfa" def is_trusted_teams(self): """ @@ -12034,7 +12979,7 @@ def is_trusted_teams(self): :rtype: bool """ - return self._tag == 'trusted_teams' + return self._tag == "trusted_teams" def is_other(self): """ @@ -12042,13 +12987,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EventCategory, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EventCategory, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EventCategory_validator = bv.Union(EventCategory) + class EventDetails(bb.Union): """ Additional fields depending on the event type. @@ -12063,7 +13012,7 @@ class EventDetails(bb.Union): :vartype EventDetails.missing_details: MissingDetails """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -12076,7 +13025,7 @@ def admin_alerting_alert_state_changed_details(cls, val): :param AdminAlertingAlertStateChangedDetails val: :rtype: EventDetails """ - return cls('admin_alerting_alert_state_changed_details', val) + return cls("admin_alerting_alert_state_changed_details", val) @classmethod def admin_alerting_changed_alert_config_details(cls, val): @@ -12087,7 +13036,7 @@ def admin_alerting_changed_alert_config_details(cls, val): :param AdminAlertingChangedAlertConfigDetails val: :rtype: EventDetails """ - return cls('admin_alerting_changed_alert_config_details', val) + return cls("admin_alerting_changed_alert_config_details", val) @classmethod def admin_alerting_triggered_alert_details(cls, val): @@ -12098,7 +13047,7 @@ def admin_alerting_triggered_alert_details(cls, val): :param AdminAlertingTriggeredAlertDetails val: :rtype: EventDetails """ - return cls('admin_alerting_triggered_alert_details', val) + return cls("admin_alerting_triggered_alert_details", val) @classmethod def ransomware_restore_process_completed_details(cls, val): @@ -12109,7 +13058,7 @@ def ransomware_restore_process_completed_details(cls, val): :param RansomwareRestoreProcessCompletedDetails val: :rtype: EventDetails """ - return cls('ransomware_restore_process_completed_details', val) + return cls("ransomware_restore_process_completed_details", val) @classmethod def ransomware_restore_process_started_details(cls, val): @@ -12120,7 +13069,7 @@ def ransomware_restore_process_started_details(cls, val): :param RansomwareRestoreProcessStartedDetails val: :rtype: EventDetails """ - return cls('ransomware_restore_process_started_details', val) + return cls("ransomware_restore_process_started_details", val) @classmethod def app_blocked_by_permissions_details(cls, val): @@ -12131,7 +13080,7 @@ def app_blocked_by_permissions_details(cls, val): :param AppBlockedByPermissionsDetails val: :rtype: EventDetails """ - return cls('app_blocked_by_permissions_details', val) + return cls("app_blocked_by_permissions_details", val) @classmethod def app_link_team_details(cls, val): @@ -12142,7 +13091,7 @@ def app_link_team_details(cls, val): :param AppLinkTeamDetails val: :rtype: EventDetails """ - return cls('app_link_team_details', val) + return cls("app_link_team_details", val) @classmethod def app_link_user_details(cls, val): @@ -12153,7 +13102,7 @@ def app_link_user_details(cls, val): :param AppLinkUserDetails val: :rtype: EventDetails """ - return cls('app_link_user_details', val) + return cls("app_link_user_details", val) @classmethod def app_unlink_team_details(cls, val): @@ -12164,7 +13113,7 @@ def app_unlink_team_details(cls, val): :param AppUnlinkTeamDetails val: :rtype: EventDetails """ - return cls('app_unlink_team_details', val) + return cls("app_unlink_team_details", val) @classmethod def app_unlink_user_details(cls, val): @@ -12175,7 +13124,7 @@ def app_unlink_user_details(cls, val): :param AppUnlinkUserDetails val: :rtype: EventDetails """ - return cls('app_unlink_user_details', val) + return cls("app_unlink_user_details", val) @classmethod def integration_connected_details(cls, val): @@ -12186,7 +13135,7 @@ def integration_connected_details(cls, val): :param IntegrationConnectedDetails val: :rtype: EventDetails """ - return cls('integration_connected_details', val) + return cls("integration_connected_details", val) @classmethod def integration_disconnected_details(cls, val): @@ -12197,7 +13146,7 @@ def integration_disconnected_details(cls, val): :param IntegrationDisconnectedDetails val: :rtype: EventDetails """ - return cls('integration_disconnected_details', val) + return cls("integration_disconnected_details", val) @classmethod def file_add_comment_details(cls, val): @@ -12208,7 +13157,7 @@ def file_add_comment_details(cls, val): :param FileAddCommentDetails val: :rtype: EventDetails """ - return cls('file_add_comment_details', val) + return cls("file_add_comment_details", val) @classmethod def file_change_comment_subscription_details(cls, val): @@ -12219,7 +13168,7 @@ def file_change_comment_subscription_details(cls, val): :param FileChangeCommentSubscriptionDetails val: :rtype: EventDetails """ - return cls('file_change_comment_subscription_details', val) + return cls("file_change_comment_subscription_details", val) @classmethod def file_delete_comment_details(cls, val): @@ -12230,7 +13179,7 @@ def file_delete_comment_details(cls, val): :param FileDeleteCommentDetails val: :rtype: EventDetails """ - return cls('file_delete_comment_details', val) + return cls("file_delete_comment_details", val) @classmethod def file_edit_comment_details(cls, val): @@ -12241,7 +13190,7 @@ def file_edit_comment_details(cls, val): :param FileEditCommentDetails val: :rtype: EventDetails """ - return cls('file_edit_comment_details', val) + return cls("file_edit_comment_details", val) @classmethod def file_like_comment_details(cls, val): @@ -12252,7 +13201,7 @@ def file_like_comment_details(cls, val): :param FileLikeCommentDetails val: :rtype: EventDetails """ - return cls('file_like_comment_details', val) + return cls("file_like_comment_details", val) @classmethod def file_resolve_comment_details(cls, val): @@ -12263,7 +13212,7 @@ def file_resolve_comment_details(cls, val): :param FileResolveCommentDetails val: :rtype: EventDetails """ - return cls('file_resolve_comment_details', val) + return cls("file_resolve_comment_details", val) @classmethod def file_unlike_comment_details(cls, val): @@ -12274,7 +13223,7 @@ def file_unlike_comment_details(cls, val): :param FileUnlikeCommentDetails val: :rtype: EventDetails """ - return cls('file_unlike_comment_details', val) + return cls("file_unlike_comment_details", val) @classmethod def file_unresolve_comment_details(cls, val): @@ -12285,7 +13234,7 @@ def file_unresolve_comment_details(cls, val): :param FileUnresolveCommentDetails val: :rtype: EventDetails """ - return cls('file_unresolve_comment_details', val) + return cls("file_unresolve_comment_details", val) @classmethod def dash_added_comment_to_stack_details(cls, val): @@ -12296,7 +13245,7 @@ def dash_added_comment_to_stack_details(cls, val): :param DashAddedCommentToStackDetails val: :rtype: EventDetails """ - return cls('dash_added_comment_to_stack_details', val) + return cls("dash_added_comment_to_stack_details", val) @classmethod def dash_added_connector_details(cls, val): @@ -12307,7 +13256,7 @@ def dash_added_connector_details(cls, val): :param DashAddedConnectorDetails val: :rtype: EventDetails """ - return cls('dash_added_connector_details', val) + return cls("dash_added_connector_details", val) @classmethod def dash_added_link_to_stack_details(cls, val): @@ -12318,7 +13267,7 @@ def dash_added_link_to_stack_details(cls, val): :param DashAddedLinkToStackDetails val: :rtype: EventDetails """ - return cls('dash_added_link_to_stack_details', val) + return cls("dash_added_link_to_stack_details", val) @classmethod def dash_added_team_email_domain_allowlist_details(cls, val): @@ -12330,7 +13279,7 @@ def dash_added_team_email_domain_allowlist_details(cls, val): :param DashAddedTeamEmailDomainAllowlistDetails val: :rtype: EventDetails """ - return cls('dash_added_team_email_domain_allowlist_details', val) + return cls("dash_added_team_email_domain_allowlist_details", val) @classmethod def dash_admin_added_org_wide_connector_details(cls, val): @@ -12341,7 +13290,7 @@ def dash_admin_added_org_wide_connector_details(cls, val): :param DashAdminAddedOrgWideConnectorDetails val: :rtype: EventDetails """ - return cls('dash_admin_added_org_wide_connector_details', val) + return cls("dash_admin_added_org_wide_connector_details", val) @classmethod def dash_admin_disabled_connector_details(cls, val): @@ -12352,7 +13301,7 @@ def dash_admin_disabled_connector_details(cls, val): :param DashAdminDisabledConnectorDetails val: :rtype: EventDetails """ - return cls('dash_admin_disabled_connector_details', val) + return cls("dash_admin_disabled_connector_details", val) @classmethod def dash_admin_enabled_connector_details(cls, val): @@ -12363,7 +13312,7 @@ def dash_admin_enabled_connector_details(cls, val): :param DashAdminEnabledConnectorDetails val: :rtype: EventDetails """ - return cls('dash_admin_enabled_connector_details', val) + return cls("dash_admin_enabled_connector_details", val) @classmethod def dash_admin_removed_org_wide_connector_details(cls, val): @@ -12375,7 +13324,7 @@ def dash_admin_removed_org_wide_connector_details(cls, val): :param DashAdminRemovedOrgWideConnectorDetails val: :rtype: EventDetails """ - return cls('dash_admin_removed_org_wide_connector_details', val) + return cls("dash_admin_removed_org_wide_connector_details", val) @classmethod def dash_archived_stack_details(cls, val): @@ -12386,7 +13335,7 @@ def dash_archived_stack_details(cls, val): :param DashArchivedStackDetails val: :rtype: EventDetails """ - return cls('dash_archived_stack_details', val) + return cls("dash_archived_stack_details", val) @classmethod def dash_changed_audience_of_shared_link_to_stack_details(cls, val): @@ -12398,7 +13347,7 @@ def dash_changed_audience_of_shared_link_to_stack_details(cls, val): :param DashChangedAudienceOfSharedLinkToStackDetails val: :rtype: EventDetails """ - return cls('dash_changed_audience_of_shared_link_to_stack_details', val) + return cls("dash_changed_audience_of_shared_link_to_stack_details", val) @classmethod def dash_cloned_stack_details(cls, val): @@ -12409,7 +13358,7 @@ def dash_cloned_stack_details(cls, val): :param DashClonedStackDetails val: :rtype: EventDetails """ - return cls('dash_cloned_stack_details', val) + return cls("dash_cloned_stack_details", val) @classmethod def dash_connector_tools_call_details(cls, val): @@ -12420,7 +13369,7 @@ def dash_connector_tools_call_details(cls, val): :param DashConnectorToolsCallDetails val: :rtype: EventDetails """ - return cls('dash_connector_tools_call_details', val) + return cls("dash_connector_tools_call_details", val) @classmethod def dash_created_stack_details(cls, val): @@ -12431,7 +13380,7 @@ def dash_created_stack_details(cls, val): :param DashCreatedStackDetails val: :rtype: EventDetails """ - return cls('dash_created_stack_details', val) + return cls("dash_created_stack_details", val) @classmethod def dash_deleted_comment_from_stack_details(cls, val): @@ -12442,7 +13391,7 @@ def dash_deleted_comment_from_stack_details(cls, val): :param DashDeletedCommentFromStackDetails val: :rtype: EventDetails """ - return cls('dash_deleted_comment_from_stack_details', val) + return cls("dash_deleted_comment_from_stack_details", val) @classmethod def dash_deleted_stack_details(cls, val): @@ -12453,7 +13402,7 @@ def dash_deleted_stack_details(cls, val): :param DashDeletedStackDetails val: :rtype: EventDetails """ - return cls('dash_deleted_stack_details', val) + return cls("dash_deleted_stack_details", val) @classmethod def dash_edited_comment_in_stack_details(cls, val): @@ -12464,7 +13413,7 @@ def dash_edited_comment_in_stack_details(cls, val): :param DashEditedCommentInStackDetails val: :rtype: EventDetails """ - return cls('dash_edited_comment_in_stack_details', val) + return cls("dash_edited_comment_in_stack_details", val) @classmethod def dash_external_user_opened_stack_details(cls, val): @@ -12475,7 +13424,7 @@ def dash_external_user_opened_stack_details(cls, val): :param DashExternalUserOpenedStackDetails val: :rtype: EventDetails """ - return cls('dash_external_user_opened_stack_details', val) + return cls("dash_external_user_opened_stack_details", val) @classmethod def dash_first_launched_desktop_details(cls, val): @@ -12486,7 +13435,7 @@ def dash_first_launched_desktop_details(cls, val): :param DashFirstLaunchedDesktopDetails val: :rtype: EventDetails """ - return cls('dash_first_launched_desktop_details', val) + return cls("dash_first_launched_desktop_details", val) @classmethod def dash_first_launched_extension_details(cls, val): @@ -12497,7 +13446,7 @@ def dash_first_launched_extension_details(cls, val): :param DashFirstLaunchedExtensionDetails val: :rtype: EventDetails """ - return cls('dash_first_launched_extension_details', val) + return cls("dash_first_launched_extension_details", val) @classmethod def dash_first_launched_web_start_page_details(cls, val): @@ -12508,7 +13457,7 @@ def dash_first_launched_web_start_page_details(cls, val): :param DashFirstLaunchedWebStartPageDetails val: :rtype: EventDetails """ - return cls('dash_first_launched_web_start_page_details', val) + return cls("dash_first_launched_web_start_page_details", val) @classmethod def dash_opened_shared_link_to_stack_details(cls, val): @@ -12519,7 +13468,7 @@ def dash_opened_shared_link_to_stack_details(cls, val): :param DashOpenedSharedLinkToStackDetails val: :rtype: EventDetails """ - return cls('dash_opened_shared_link_to_stack_details', val) + return cls("dash_opened_shared_link_to_stack_details", val) @classmethod def dash_opened_stack_details(cls, val): @@ -12530,7 +13479,7 @@ def dash_opened_stack_details(cls, val): :param DashOpenedStackDetails val: :rtype: EventDetails """ - return cls('dash_opened_stack_details', val) + return cls("dash_opened_stack_details", val) @classmethod def dash_preview_opt_out_status_changed_details(cls, val): @@ -12541,7 +13490,7 @@ def dash_preview_opt_out_status_changed_details(cls, val): :param DashPreviewOptOutStatusChangedDetails val: :rtype: EventDetails """ - return cls('dash_preview_opt_out_status_changed_details', val) + return cls("dash_preview_opt_out_status_changed_details", val) @classmethod def dash_removed_connector_details(cls, val): @@ -12552,7 +13501,7 @@ def dash_removed_connector_details(cls, val): :param DashRemovedConnectorDetails val: :rtype: EventDetails """ - return cls('dash_removed_connector_details', val) + return cls("dash_removed_connector_details", val) @classmethod def dash_removed_link_from_stack_details(cls, val): @@ -12563,7 +13512,7 @@ def dash_removed_link_from_stack_details(cls, val): :param DashRemovedLinkFromStackDetails val: :rtype: EventDetails """ - return cls('dash_removed_link_from_stack_details', val) + return cls("dash_removed_link_from_stack_details", val) @classmethod def dash_removed_shared_link_to_stack_details(cls, val): @@ -12574,7 +13523,7 @@ def dash_removed_shared_link_to_stack_details(cls, val): :param DashRemovedSharedLinkToStackDetails val: :rtype: EventDetails """ - return cls('dash_removed_shared_link_to_stack_details', val) + return cls("dash_removed_shared_link_to_stack_details", val) @classmethod def dash_removed_team_email_domain_allowlist_details(cls, val): @@ -12586,7 +13535,7 @@ def dash_removed_team_email_domain_allowlist_details(cls, val): :param DashRemovedTeamEmailDomainAllowlistDetails val: :rtype: EventDetails """ - return cls('dash_removed_team_email_domain_allowlist_details', val) + return cls("dash_removed_team_email_domain_allowlist_details", val) @classmethod def dash_renamed_stack_details(cls, val): @@ -12597,7 +13546,7 @@ def dash_renamed_stack_details(cls, val): :param DashRenamedStackDetails val: :rtype: EventDetails """ - return cls('dash_renamed_stack_details', val) + return cls("dash_renamed_stack_details", val) @classmethod def dash_shared_link_to_stack_details(cls, val): @@ -12608,7 +13557,7 @@ def dash_shared_link_to_stack_details(cls, val): :param DashSharedLinkToStackDetails val: :rtype: EventDetails """ - return cls('dash_shared_link_to_stack_details', val) + return cls("dash_shared_link_to_stack_details", val) @classmethod def dash_unarchived_stack_details(cls, val): @@ -12619,7 +13568,7 @@ def dash_unarchived_stack_details(cls, val): :param DashUnarchivedStackDetails val: :rtype: EventDetails """ - return cls('dash_unarchived_stack_details', val) + return cls("dash_unarchived_stack_details", val) @classmethod def dash_viewed_company_stack_details(cls, val): @@ -12630,7 +13579,7 @@ def dash_viewed_company_stack_details(cls, val): :param DashViewedCompanyStackDetails val: :rtype: EventDetails """ - return cls('dash_viewed_company_stack_details', val) + return cls("dash_viewed_company_stack_details", val) @classmethod def dash_viewed_external_ai_activity_report_details(cls, val): @@ -12642,7 +13591,7 @@ def dash_viewed_external_ai_activity_report_details(cls, val): :param DashViewedExternalAiActivityReportDetails val: :rtype: EventDetails """ - return cls('dash_viewed_external_ai_activity_report_details', val) + return cls("dash_viewed_external_ai_activity_report_details", val) @classmethod def governance_policy_add_folders_details(cls, val): @@ -12653,7 +13602,7 @@ def governance_policy_add_folders_details(cls, val): :param GovernancePolicyAddFoldersDetails val: :rtype: EventDetails """ - return cls('governance_policy_add_folders_details', val) + return cls("governance_policy_add_folders_details", val) @classmethod def governance_policy_add_folder_failed_details(cls, val): @@ -12664,7 +13613,7 @@ def governance_policy_add_folder_failed_details(cls, val): :param GovernancePolicyAddFolderFailedDetails val: :rtype: EventDetails """ - return cls('governance_policy_add_folder_failed_details', val) + return cls("governance_policy_add_folder_failed_details", val) @classmethod def governance_policy_content_disposed_details(cls, val): @@ -12675,7 +13624,7 @@ def governance_policy_content_disposed_details(cls, val): :param GovernancePolicyContentDisposedDetails val: :rtype: EventDetails """ - return cls('governance_policy_content_disposed_details', val) + return cls("governance_policy_content_disposed_details", val) @classmethod def governance_policy_create_details(cls, val): @@ -12686,7 +13635,7 @@ def governance_policy_create_details(cls, val): :param GovernancePolicyCreateDetails val: :rtype: EventDetails """ - return cls('governance_policy_create_details', val) + return cls("governance_policy_create_details", val) @classmethod def governance_policy_delete_details(cls, val): @@ -12697,7 +13646,7 @@ def governance_policy_delete_details(cls, val): :param GovernancePolicyDeleteDetails val: :rtype: EventDetails """ - return cls('governance_policy_delete_details', val) + return cls("governance_policy_delete_details", val) @classmethod def governance_policy_edit_details_details(cls, val): @@ -12708,7 +13657,7 @@ def governance_policy_edit_details_details(cls, val): :param GovernancePolicyEditDetailsDetails val: :rtype: EventDetails """ - return cls('governance_policy_edit_details_details', val) + return cls("governance_policy_edit_details_details", val) @classmethod def governance_policy_edit_duration_details(cls, val): @@ -12719,7 +13668,7 @@ def governance_policy_edit_duration_details(cls, val): :param GovernancePolicyEditDurationDetails val: :rtype: EventDetails """ - return cls('governance_policy_edit_duration_details', val) + return cls("governance_policy_edit_duration_details", val) @classmethod def governance_policy_export_created_details(cls, val): @@ -12730,7 +13679,7 @@ def governance_policy_export_created_details(cls, val): :param GovernancePolicyExportCreatedDetails val: :rtype: EventDetails """ - return cls('governance_policy_export_created_details', val) + return cls("governance_policy_export_created_details", val) @classmethod def governance_policy_export_removed_details(cls, val): @@ -12741,7 +13690,7 @@ def governance_policy_export_removed_details(cls, val): :param GovernancePolicyExportRemovedDetails val: :rtype: EventDetails """ - return cls('governance_policy_export_removed_details', val) + return cls("governance_policy_export_removed_details", val) @classmethod def governance_policy_remove_folders_details(cls, val): @@ -12752,7 +13701,7 @@ def governance_policy_remove_folders_details(cls, val): :param GovernancePolicyRemoveFoldersDetails val: :rtype: EventDetails """ - return cls('governance_policy_remove_folders_details', val) + return cls("governance_policy_remove_folders_details", val) @classmethod def governance_policy_report_created_details(cls, val): @@ -12763,7 +13712,7 @@ def governance_policy_report_created_details(cls, val): :param GovernancePolicyReportCreatedDetails val: :rtype: EventDetails """ - return cls('governance_policy_report_created_details', val) + return cls("governance_policy_report_created_details", val) @classmethod def governance_policy_zip_part_downloaded_details(cls, val): @@ -12775,7 +13724,7 @@ def governance_policy_zip_part_downloaded_details(cls, val): :param GovernancePolicyZipPartDownloadedDetails val: :rtype: EventDetails """ - return cls('governance_policy_zip_part_downloaded_details', val) + return cls("governance_policy_zip_part_downloaded_details", val) @classmethod def legal_holds_activate_a_hold_details(cls, val): @@ -12786,7 +13735,7 @@ def legal_holds_activate_a_hold_details(cls, val): :param LegalHoldsActivateAHoldDetails val: :rtype: EventDetails """ - return cls('legal_holds_activate_a_hold_details', val) + return cls("legal_holds_activate_a_hold_details", val) @classmethod def legal_holds_add_members_details(cls, val): @@ -12797,7 +13746,7 @@ def legal_holds_add_members_details(cls, val): :param LegalHoldsAddMembersDetails val: :rtype: EventDetails """ - return cls('legal_holds_add_members_details', val) + return cls("legal_holds_add_members_details", val) @classmethod def legal_holds_change_hold_details_details(cls, val): @@ -12808,7 +13757,7 @@ def legal_holds_change_hold_details_details(cls, val): :param LegalHoldsChangeHoldDetailsDetails val: :rtype: EventDetails """ - return cls('legal_holds_change_hold_details_details', val) + return cls("legal_holds_change_hold_details_details", val) @classmethod def legal_holds_change_hold_name_details(cls, val): @@ -12819,7 +13768,7 @@ def legal_holds_change_hold_name_details(cls, val): :param LegalHoldsChangeHoldNameDetails val: :rtype: EventDetails """ - return cls('legal_holds_change_hold_name_details', val) + return cls("legal_holds_change_hold_name_details", val) @classmethod def legal_holds_export_a_hold_details(cls, val): @@ -12830,7 +13779,7 @@ def legal_holds_export_a_hold_details(cls, val): :param LegalHoldsExportAHoldDetails val: :rtype: EventDetails """ - return cls('legal_holds_export_a_hold_details', val) + return cls("legal_holds_export_a_hold_details", val) @classmethod def legal_holds_export_cancelled_details(cls, val): @@ -12841,7 +13790,7 @@ def legal_holds_export_cancelled_details(cls, val): :param LegalHoldsExportCancelledDetails val: :rtype: EventDetails """ - return cls('legal_holds_export_cancelled_details', val) + return cls("legal_holds_export_cancelled_details", val) @classmethod def legal_holds_export_downloaded_details(cls, val): @@ -12852,7 +13801,7 @@ def legal_holds_export_downloaded_details(cls, val): :param LegalHoldsExportDownloadedDetails val: :rtype: EventDetails """ - return cls('legal_holds_export_downloaded_details', val) + return cls("legal_holds_export_downloaded_details", val) @classmethod def legal_holds_export_removed_details(cls, val): @@ -12863,7 +13812,7 @@ def legal_holds_export_removed_details(cls, val): :param LegalHoldsExportRemovedDetails val: :rtype: EventDetails """ - return cls('legal_holds_export_removed_details', val) + return cls("legal_holds_export_removed_details", val) @classmethod def legal_holds_release_a_hold_details(cls, val): @@ -12874,7 +13823,7 @@ def legal_holds_release_a_hold_details(cls, val): :param LegalHoldsReleaseAHoldDetails val: :rtype: EventDetails """ - return cls('legal_holds_release_a_hold_details', val) + return cls("legal_holds_release_a_hold_details", val) @classmethod def legal_holds_remove_members_details(cls, val): @@ -12885,7 +13834,7 @@ def legal_holds_remove_members_details(cls, val): :param LegalHoldsRemoveMembersDetails val: :rtype: EventDetails """ - return cls('legal_holds_remove_members_details', val) + return cls("legal_holds_remove_members_details", val) @classmethod def legal_holds_report_a_hold_details(cls, val): @@ -12896,7 +13845,7 @@ def legal_holds_report_a_hold_details(cls, val): :param LegalHoldsReportAHoldDetails val: :rtype: EventDetails """ - return cls('legal_holds_report_a_hold_details', val) + return cls("legal_holds_report_a_hold_details", val) @classmethod def device_change_ip_desktop_details(cls, val): @@ -12907,7 +13856,7 @@ def device_change_ip_desktop_details(cls, val): :param DeviceChangeIpDesktopDetails val: :rtype: EventDetails """ - return cls('device_change_ip_desktop_details', val) + return cls("device_change_ip_desktop_details", val) @classmethod def device_change_ip_mobile_details(cls, val): @@ -12918,7 +13867,7 @@ def device_change_ip_mobile_details(cls, val): :param DeviceChangeIpMobileDetails val: :rtype: EventDetails """ - return cls('device_change_ip_mobile_details', val) + return cls("device_change_ip_mobile_details", val) @classmethod def device_change_ip_web_details(cls, val): @@ -12929,7 +13878,7 @@ def device_change_ip_web_details(cls, val): :param DeviceChangeIpWebDetails val: :rtype: EventDetails """ - return cls('device_change_ip_web_details', val) + return cls("device_change_ip_web_details", val) @classmethod def device_delete_on_unlink_fail_details(cls, val): @@ -12940,7 +13889,7 @@ def device_delete_on_unlink_fail_details(cls, val): :param DeviceDeleteOnUnlinkFailDetails val: :rtype: EventDetails """ - return cls('device_delete_on_unlink_fail_details', val) + return cls("device_delete_on_unlink_fail_details", val) @classmethod def device_delete_on_unlink_success_details(cls, val): @@ -12951,7 +13900,7 @@ def device_delete_on_unlink_success_details(cls, val): :param DeviceDeleteOnUnlinkSuccessDetails val: :rtype: EventDetails """ - return cls('device_delete_on_unlink_success_details', val) + return cls("device_delete_on_unlink_success_details", val) @classmethod def device_link_fail_details(cls, val): @@ -12962,7 +13911,7 @@ def device_link_fail_details(cls, val): :param DeviceLinkFailDetails val: :rtype: EventDetails """ - return cls('device_link_fail_details', val) + return cls("device_link_fail_details", val) @classmethod def device_link_success_details(cls, val): @@ -12973,7 +13922,7 @@ def device_link_success_details(cls, val): :param DeviceLinkSuccessDetails val: :rtype: EventDetails """ - return cls('device_link_success_details', val) + return cls("device_link_success_details", val) @classmethod def device_management_disabled_details(cls, val): @@ -12984,7 +13933,7 @@ def device_management_disabled_details(cls, val): :param DeviceManagementDisabledDetails val: :rtype: EventDetails """ - return cls('device_management_disabled_details', val) + return cls("device_management_disabled_details", val) @classmethod def device_management_enabled_details(cls, val): @@ -12995,7 +13944,7 @@ def device_management_enabled_details(cls, val): :param DeviceManagementEnabledDetails val: :rtype: EventDetails """ - return cls('device_management_enabled_details', val) + return cls("device_management_enabled_details", val) @classmethod def device_sync_backup_status_changed_details(cls, val): @@ -13006,7 +13955,7 @@ def device_sync_backup_status_changed_details(cls, val): :param DeviceSyncBackupStatusChangedDetails val: :rtype: EventDetails """ - return cls('device_sync_backup_status_changed_details', val) + return cls("device_sync_backup_status_changed_details", val) @classmethod def device_unlink_details(cls, val): @@ -13017,7 +13966,7 @@ def device_unlink_details(cls, val): :param DeviceUnlinkDetails val: :rtype: EventDetails """ - return cls('device_unlink_details', val) + return cls("device_unlink_details", val) @classmethod def dropbox_passwords_exported_details(cls, val): @@ -13028,7 +13977,7 @@ def dropbox_passwords_exported_details(cls, val): :param DropboxPasswordsExportedDetails val: :rtype: EventDetails """ - return cls('dropbox_passwords_exported_details', val) + return cls("dropbox_passwords_exported_details", val) @classmethod def dropbox_passwords_new_device_enrolled_details(cls, val): @@ -13040,7 +13989,7 @@ def dropbox_passwords_new_device_enrolled_details(cls, val): :param DropboxPasswordsNewDeviceEnrolledDetails val: :rtype: EventDetails """ - return cls('dropbox_passwords_new_device_enrolled_details', val) + return cls("dropbox_passwords_new_device_enrolled_details", val) @classmethod def emm_refresh_auth_token_details(cls, val): @@ -13051,7 +14000,7 @@ def emm_refresh_auth_token_details(cls, val): :param EmmRefreshAuthTokenDetails val: :rtype: EventDetails """ - return cls('emm_refresh_auth_token_details', val) + return cls("emm_refresh_auth_token_details", val) @classmethod def external_drive_backup_eligibility_status_checked_details(cls, val): @@ -13063,7 +14012,7 @@ def external_drive_backup_eligibility_status_checked_details(cls, val): :param ExternalDriveBackupEligibilityStatusCheckedDetails val: :rtype: EventDetails """ - return cls('external_drive_backup_eligibility_status_checked_details', val) + return cls("external_drive_backup_eligibility_status_checked_details", val) @classmethod def external_drive_backup_status_changed_details(cls, val): @@ -13074,7 +14023,7 @@ def external_drive_backup_status_changed_details(cls, val): :param ExternalDriveBackupStatusChangedDetails val: :rtype: EventDetails """ - return cls('external_drive_backup_status_changed_details', val) + return cls("external_drive_backup_status_changed_details", val) @classmethod def account_capture_change_availability_details(cls, val): @@ -13085,7 +14034,7 @@ def account_capture_change_availability_details(cls, val): :param AccountCaptureChangeAvailabilityDetails val: :rtype: EventDetails """ - return cls('account_capture_change_availability_details', val) + return cls("account_capture_change_availability_details", val) @classmethod def account_capture_migrate_account_details(cls, val): @@ -13096,7 +14045,7 @@ def account_capture_migrate_account_details(cls, val): :param AccountCaptureMigrateAccountDetails val: :rtype: EventDetails """ - return cls('account_capture_migrate_account_details', val) + return cls("account_capture_migrate_account_details", val) @classmethod def account_capture_notification_emails_sent_details(cls, val): @@ -13108,7 +14057,7 @@ def account_capture_notification_emails_sent_details(cls, val): :param AccountCaptureNotificationEmailsSentDetails val: :rtype: EventDetails """ - return cls('account_capture_notification_emails_sent_details', val) + return cls("account_capture_notification_emails_sent_details", val) @classmethod def account_capture_relinquish_account_details(cls, val): @@ -13119,7 +14068,7 @@ def account_capture_relinquish_account_details(cls, val): :param AccountCaptureRelinquishAccountDetails val: :rtype: EventDetails """ - return cls('account_capture_relinquish_account_details', val) + return cls("account_capture_relinquish_account_details", val) @classmethod def disabled_domain_invites_details(cls, val): @@ -13130,7 +14079,7 @@ def disabled_domain_invites_details(cls, val): :param DisabledDomainInvitesDetails val: :rtype: EventDetails """ - return cls('disabled_domain_invites_details', val) + return cls("disabled_domain_invites_details", val) @classmethod def domain_invites_approve_request_to_join_team_details(cls, val): @@ -13142,7 +14091,7 @@ def domain_invites_approve_request_to_join_team_details(cls, val): :param DomainInvitesApproveRequestToJoinTeamDetails val: :rtype: EventDetails """ - return cls('domain_invites_approve_request_to_join_team_details', val) + return cls("domain_invites_approve_request_to_join_team_details", val) @classmethod def domain_invites_decline_request_to_join_team_details(cls, val): @@ -13154,7 +14103,7 @@ def domain_invites_decline_request_to_join_team_details(cls, val): :param DomainInvitesDeclineRequestToJoinTeamDetails val: :rtype: EventDetails """ - return cls('domain_invites_decline_request_to_join_team_details', val) + return cls("domain_invites_decline_request_to_join_team_details", val) @classmethod def domain_invites_email_existing_users_details(cls, val): @@ -13165,7 +14114,7 @@ def domain_invites_email_existing_users_details(cls, val): :param DomainInvitesEmailExistingUsersDetails val: :rtype: EventDetails """ - return cls('domain_invites_email_existing_users_details', val) + return cls("domain_invites_email_existing_users_details", val) @classmethod def domain_invites_request_to_join_team_details(cls, val): @@ -13176,7 +14125,7 @@ def domain_invites_request_to_join_team_details(cls, val): :param DomainInvitesRequestToJoinTeamDetails val: :rtype: EventDetails """ - return cls('domain_invites_request_to_join_team_details', val) + return cls("domain_invites_request_to_join_team_details", val) @classmethod def domain_invites_set_invite_new_user_pref_to_no_details(cls, val): @@ -13188,7 +14137,7 @@ def domain_invites_set_invite_new_user_pref_to_no_details(cls, val): :param DomainInvitesSetInviteNewUserPrefToNoDetails val: :rtype: EventDetails """ - return cls('domain_invites_set_invite_new_user_pref_to_no_details', val) + return cls("domain_invites_set_invite_new_user_pref_to_no_details", val) @classmethod def domain_invites_set_invite_new_user_pref_to_yes_details(cls, val): @@ -13200,7 +14149,7 @@ def domain_invites_set_invite_new_user_pref_to_yes_details(cls, val): :param DomainInvitesSetInviteNewUserPrefToYesDetails val: :rtype: EventDetails """ - return cls('domain_invites_set_invite_new_user_pref_to_yes_details', val) + return cls("domain_invites_set_invite_new_user_pref_to_yes_details", val) @classmethod def domain_verification_add_domain_fail_details(cls, val): @@ -13211,7 +14160,7 @@ def domain_verification_add_domain_fail_details(cls, val): :param DomainVerificationAddDomainFailDetails val: :rtype: EventDetails """ - return cls('domain_verification_add_domain_fail_details', val) + return cls("domain_verification_add_domain_fail_details", val) @classmethod def domain_verification_add_domain_success_details(cls, val): @@ -13223,7 +14172,7 @@ def domain_verification_add_domain_success_details(cls, val): :param DomainVerificationAddDomainSuccessDetails val: :rtype: EventDetails """ - return cls('domain_verification_add_domain_success_details', val) + return cls("domain_verification_add_domain_success_details", val) @classmethod def domain_verification_remove_domain_details(cls, val): @@ -13234,7 +14183,7 @@ def domain_verification_remove_domain_details(cls, val): :param DomainVerificationRemoveDomainDetails val: :rtype: EventDetails """ - return cls('domain_verification_remove_domain_details', val) + return cls("domain_verification_remove_domain_details", val) @classmethod def enabled_domain_invites_details(cls, val): @@ -13245,7 +14194,7 @@ def enabled_domain_invites_details(cls, val): :param EnabledDomainInvitesDetails val: :rtype: EventDetails """ - return cls('enabled_domain_invites_details', val) + return cls("enabled_domain_invites_details", val) @classmethod def encrypted_folder_cancel_team_key_rotation_details(cls, val): @@ -13257,7 +14206,7 @@ def encrypted_folder_cancel_team_key_rotation_details(cls, val): :param EncryptedFolderCancelTeamKeyRotationDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_cancel_team_key_rotation_details', val) + return cls("encrypted_folder_cancel_team_key_rotation_details", val) @classmethod def encrypted_folder_enroll_backup_key_details(cls, val): @@ -13268,7 +14217,7 @@ def encrypted_folder_enroll_backup_key_details(cls, val): :param EncryptedFolderEnrollBackupKeyDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_enroll_backup_key_details', val) + return cls("encrypted_folder_enroll_backup_key_details", val) @classmethod def encrypted_folder_enroll_client_details(cls, val): @@ -13279,7 +14228,7 @@ def encrypted_folder_enroll_client_details(cls, val): :param EncryptedFolderEnrollClientDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_enroll_client_details', val) + return cls("encrypted_folder_enroll_client_details", val) @classmethod def encrypted_folder_enroll_team_details(cls, val): @@ -13290,7 +14239,7 @@ def encrypted_folder_enroll_team_details(cls, val): :param EncryptedFolderEnrollTeamDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_enroll_team_details', val) + return cls("encrypted_folder_enroll_team_details", val) @classmethod def encrypted_folder_finish_team_unenrollment_details(cls, val): @@ -13302,7 +14251,7 @@ def encrypted_folder_finish_team_unenrollment_details(cls, val): :param EncryptedFolderFinishTeamUnenrollmentDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_finish_team_unenrollment_details', val) + return cls("encrypted_folder_finish_team_unenrollment_details", val) @classmethod def encrypted_folder_init_team_key_rotation_details(cls, val): @@ -13314,7 +14263,7 @@ def encrypted_folder_init_team_key_rotation_details(cls, val): :param EncryptedFolderInitTeamKeyRotationDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_init_team_key_rotation_details', val) + return cls("encrypted_folder_init_team_key_rotation_details", val) @classmethod def encrypted_folder_init_team_unenrollment_details(cls, val): @@ -13326,7 +14275,7 @@ def encrypted_folder_init_team_unenrollment_details(cls, val): :param EncryptedFolderInitTeamUnenrollmentDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_init_team_unenrollment_details', val) + return cls("encrypted_folder_init_team_unenrollment_details", val) @classmethod def encrypted_folder_remove_backup_key_details(cls, val): @@ -13337,7 +14286,7 @@ def encrypted_folder_remove_backup_key_details(cls, val): :param EncryptedFolderRemoveBackupKeyDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_remove_backup_key_details', val) + return cls("encrypted_folder_remove_backup_key_details", val) @classmethod def encrypted_folder_rotate_team_key_details(cls, val): @@ -13348,7 +14297,7 @@ def encrypted_folder_rotate_team_key_details(cls, val): :param EncryptedFolderRotateTeamKeyDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_rotate_team_key_details', val) + return cls("encrypted_folder_rotate_team_key_details", val) @classmethod def encrypted_folder_unenroll_client_details(cls, val): @@ -13359,7 +14308,7 @@ def encrypted_folder_unenroll_client_details(cls, val): :param EncryptedFolderUnenrollClientDetails val: :rtype: EventDetails """ - return cls('encrypted_folder_unenroll_client_details', val) + return cls("encrypted_folder_unenroll_client_details", val) @classmethod def team_encryption_key_activate_key_details(cls, val): @@ -13370,7 +14319,7 @@ def team_encryption_key_activate_key_details(cls, val): :param TeamEncryptionKeyActivateKeyDetails val: :rtype: EventDetails """ - return cls('team_encryption_key_activate_key_details', val) + return cls("team_encryption_key_activate_key_details", val) @classmethod def team_encryption_key_cancel_key_deletion_details(cls, val): @@ -13382,7 +14331,7 @@ def team_encryption_key_cancel_key_deletion_details(cls, val): :param TeamEncryptionKeyCancelKeyDeletionDetails val: :rtype: EventDetails """ - return cls('team_encryption_key_cancel_key_deletion_details', val) + return cls("team_encryption_key_cancel_key_deletion_details", val) @classmethod def team_encryption_key_create_key_details(cls, val): @@ -13393,7 +14342,7 @@ def team_encryption_key_create_key_details(cls, val): :param TeamEncryptionKeyCreateKeyDetails val: :rtype: EventDetails """ - return cls('team_encryption_key_create_key_details', val) + return cls("team_encryption_key_create_key_details", val) @classmethod def team_encryption_key_deactivate_key_details(cls, val): @@ -13404,7 +14353,7 @@ def team_encryption_key_deactivate_key_details(cls, val): :param TeamEncryptionKeyDeactivateKeyDetails val: :rtype: EventDetails """ - return cls('team_encryption_key_deactivate_key_details', val) + return cls("team_encryption_key_deactivate_key_details", val) @classmethod def team_encryption_key_delete_key_details(cls, val): @@ -13415,7 +14364,7 @@ def team_encryption_key_delete_key_details(cls, val): :param TeamEncryptionKeyDeleteKeyDetails val: :rtype: EventDetails """ - return cls('team_encryption_key_delete_key_details', val) + return cls("team_encryption_key_delete_key_details", val) @classmethod def team_encryption_key_disable_key_details(cls, val): @@ -13426,7 +14375,7 @@ def team_encryption_key_disable_key_details(cls, val): :param TeamEncryptionKeyDisableKeyDetails val: :rtype: EventDetails """ - return cls('team_encryption_key_disable_key_details', val) + return cls("team_encryption_key_disable_key_details", val) @classmethod def team_encryption_key_enable_key_details(cls, val): @@ -13437,7 +14386,7 @@ def team_encryption_key_enable_key_details(cls, val): :param TeamEncryptionKeyEnableKeyDetails val: :rtype: EventDetails """ - return cls('team_encryption_key_enable_key_details', val) + return cls("team_encryption_key_enable_key_details", val) @classmethod def team_encryption_key_rotate_key_details(cls, val): @@ -13448,7 +14397,7 @@ def team_encryption_key_rotate_key_details(cls, val): :param TeamEncryptionKeyRotateKeyDetails val: :rtype: EventDetails """ - return cls('team_encryption_key_rotate_key_details', val) + return cls("team_encryption_key_rotate_key_details", val) @classmethod def team_encryption_key_schedule_key_deletion_details(cls, val): @@ -13460,7 +14409,7 @@ def team_encryption_key_schedule_key_deletion_details(cls, val): :param TeamEncryptionKeyScheduleKeyDeletionDetails val: :rtype: EventDetails """ - return cls('team_encryption_key_schedule_key_deletion_details', val) + return cls("team_encryption_key_schedule_key_deletion_details", val) @classmethod def apply_naming_convention_details(cls, val): @@ -13471,7 +14420,7 @@ def apply_naming_convention_details(cls, val): :param ApplyNamingConventionDetails val: :rtype: EventDetails """ - return cls('apply_naming_convention_details', val) + return cls("apply_naming_convention_details", val) @classmethod def create_folder_details(cls, val): @@ -13482,7 +14431,7 @@ def create_folder_details(cls, val): :param CreateFolderDetails val: :rtype: EventDetails """ - return cls('create_folder_details', val) + return cls("create_folder_details", val) @classmethod def file_add_details(cls, val): @@ -13493,7 +14442,7 @@ def file_add_details(cls, val): :param FileAddDetails val: :rtype: EventDetails """ - return cls('file_add_details', val) + return cls("file_add_details", val) @classmethod def file_add_from_automation_details(cls, val): @@ -13504,7 +14453,7 @@ def file_add_from_automation_details(cls, val): :param FileAddFromAutomationDetails val: :rtype: EventDetails """ - return cls('file_add_from_automation_details', val) + return cls("file_add_from_automation_details", val) @classmethod def file_copy_details(cls, val): @@ -13515,7 +14464,7 @@ def file_copy_details(cls, val): :param FileCopyDetails val: :rtype: EventDetails """ - return cls('file_copy_details', val) + return cls("file_copy_details", val) @classmethod def file_delete_details(cls, val): @@ -13526,7 +14475,7 @@ def file_delete_details(cls, val): :param FileDeleteDetails val: :rtype: EventDetails """ - return cls('file_delete_details', val) + return cls("file_delete_details", val) @classmethod def file_download_details(cls, val): @@ -13537,7 +14486,7 @@ def file_download_details(cls, val): :param FileDownloadDetails val: :rtype: EventDetails """ - return cls('file_download_details', val) + return cls("file_download_details", val) @classmethod def file_edit_details(cls, val): @@ -13548,7 +14497,7 @@ def file_edit_details(cls, val): :param FileEditDetails val: :rtype: EventDetails """ - return cls('file_edit_details', val) + return cls("file_edit_details", val) @classmethod def file_get_copy_reference_details(cls, val): @@ -13559,7 +14508,7 @@ def file_get_copy_reference_details(cls, val): :param FileGetCopyReferenceDetails val: :rtype: EventDetails """ - return cls('file_get_copy_reference_details', val) + return cls("file_get_copy_reference_details", val) @classmethod def file_locking_lock_status_changed_details(cls, val): @@ -13570,7 +14519,7 @@ def file_locking_lock_status_changed_details(cls, val): :param FileLockingLockStatusChangedDetails val: :rtype: EventDetails """ - return cls('file_locking_lock_status_changed_details', val) + return cls("file_locking_lock_status_changed_details", val) @classmethod def file_move_details(cls, val): @@ -13581,7 +14530,7 @@ def file_move_details(cls, val): :param FileMoveDetails val: :rtype: EventDetails """ - return cls('file_move_details', val) + return cls("file_move_details", val) @classmethod def file_permanently_delete_details(cls, val): @@ -13592,7 +14541,7 @@ def file_permanently_delete_details(cls, val): :param FilePermanentlyDeleteDetails val: :rtype: EventDetails """ - return cls('file_permanently_delete_details', val) + return cls("file_permanently_delete_details", val) @classmethod def file_preview_details(cls, val): @@ -13603,7 +14552,7 @@ def file_preview_details(cls, val): :param FilePreviewDetails val: :rtype: EventDetails """ - return cls('file_preview_details', val) + return cls("file_preview_details", val) @classmethod def file_rename_details(cls, val): @@ -13614,7 +14563,7 @@ def file_rename_details(cls, val): :param FileRenameDetails val: :rtype: EventDetails """ - return cls('file_rename_details', val) + return cls("file_rename_details", val) @classmethod def file_restore_details(cls, val): @@ -13625,7 +14574,7 @@ def file_restore_details(cls, val): :param FileRestoreDetails val: :rtype: EventDetails """ - return cls('file_restore_details', val) + return cls("file_restore_details", val) @classmethod def file_revert_details(cls, val): @@ -13636,7 +14585,7 @@ def file_revert_details(cls, val): :param FileRevertDetails val: :rtype: EventDetails """ - return cls('file_revert_details', val) + return cls("file_revert_details", val) @classmethod def file_rollback_changes_details(cls, val): @@ -13647,7 +14596,7 @@ def file_rollback_changes_details(cls, val): :param FileRollbackChangesDetails val: :rtype: EventDetails """ - return cls('file_rollback_changes_details', val) + return cls("file_rollback_changes_details", val) @classmethod def file_save_copy_reference_details(cls, val): @@ -13658,7 +14607,7 @@ def file_save_copy_reference_details(cls, val): :param FileSaveCopyReferenceDetails val: :rtype: EventDetails """ - return cls('file_save_copy_reference_details', val) + return cls("file_save_copy_reference_details", val) @classmethod def folder_overview_description_changed_details(cls, val): @@ -13669,7 +14618,7 @@ def folder_overview_description_changed_details(cls, val): :param FolderOverviewDescriptionChangedDetails val: :rtype: EventDetails """ - return cls('folder_overview_description_changed_details', val) + return cls("folder_overview_description_changed_details", val) @classmethod def folder_overview_item_pinned_details(cls, val): @@ -13680,7 +14629,7 @@ def folder_overview_item_pinned_details(cls, val): :param FolderOverviewItemPinnedDetails val: :rtype: EventDetails """ - return cls('folder_overview_item_pinned_details', val) + return cls("folder_overview_item_pinned_details", val) @classmethod def folder_overview_item_unpinned_details(cls, val): @@ -13691,7 +14640,7 @@ def folder_overview_item_unpinned_details(cls, val): :param FolderOverviewItemUnpinnedDetails val: :rtype: EventDetails """ - return cls('folder_overview_item_unpinned_details', val) + return cls("folder_overview_item_unpinned_details", val) @classmethod def media_hub_file_downloaded_details(cls, val): @@ -13702,7 +14651,7 @@ def media_hub_file_downloaded_details(cls, val): :param MediaHubFileDownloadedDetails val: :rtype: EventDetails """ - return cls('media_hub_file_downloaded_details', val) + return cls("media_hub_file_downloaded_details", val) @classmethod def object_label_added_details(cls, val): @@ -13713,7 +14662,7 @@ def object_label_added_details(cls, val): :param ObjectLabelAddedDetails val: :rtype: EventDetails """ - return cls('object_label_added_details', val) + return cls("object_label_added_details", val) @classmethod def object_label_removed_details(cls, val): @@ -13724,7 +14673,7 @@ def object_label_removed_details(cls, val): :param ObjectLabelRemovedDetails val: :rtype: EventDetails """ - return cls('object_label_removed_details', val) + return cls("object_label_removed_details", val) @classmethod def object_label_updated_value_details(cls, val): @@ -13735,7 +14684,7 @@ def object_label_updated_value_details(cls, val): :param ObjectLabelUpdatedValueDetails val: :rtype: EventDetails """ - return cls('object_label_updated_value_details', val) + return cls("object_label_updated_value_details", val) @classmethod def organize_folder_with_tidy_details(cls, val): @@ -13746,7 +14695,7 @@ def organize_folder_with_tidy_details(cls, val): :param OrganizeFolderWithTidyDetails val: :rtype: EventDetails """ - return cls('organize_folder_with_tidy_details', val) + return cls("organize_folder_with_tidy_details", val) @classmethod def replay_file_delete_details(cls, val): @@ -13757,7 +14706,7 @@ def replay_file_delete_details(cls, val): :param ReplayFileDeleteDetails val: :rtype: EventDetails """ - return cls('replay_file_delete_details', val) + return cls("replay_file_delete_details", val) @classmethod def replay_file_downloaded_details(cls, val): @@ -13768,7 +14717,7 @@ def replay_file_downloaded_details(cls, val): :param ReplayFileDownloadedDetails val: :rtype: EventDetails """ - return cls('replay_file_downloaded_details', val) + return cls("replay_file_downloaded_details", val) @classmethod def replay_team_project_created_details(cls, val): @@ -13779,7 +14728,7 @@ def replay_team_project_created_details(cls, val): :param ReplayTeamProjectCreatedDetails val: :rtype: EventDetails """ - return cls('replay_team_project_created_details', val) + return cls("replay_team_project_created_details", val) @classmethod def rewind_folder_details(cls, val): @@ -13790,7 +14739,7 @@ def rewind_folder_details(cls, val): :param RewindFolderDetails val: :rtype: EventDetails """ - return cls('rewind_folder_details', val) + return cls("rewind_folder_details", val) @classmethod def undo_naming_convention_details(cls, val): @@ -13801,7 +14750,7 @@ def undo_naming_convention_details(cls, val): :param UndoNamingConventionDetails val: :rtype: EventDetails """ - return cls('undo_naming_convention_details', val) + return cls("undo_naming_convention_details", val) @classmethod def undo_organize_folder_with_tidy_details(cls, val): @@ -13812,7 +14761,7 @@ def undo_organize_folder_with_tidy_details(cls, val): :param UndoOrganizeFolderWithTidyDetails val: :rtype: EventDetails """ - return cls('undo_organize_folder_with_tidy_details', val) + return cls("undo_organize_folder_with_tidy_details", val) @classmethod def user_tags_added_details(cls, val): @@ -13823,7 +14772,7 @@ def user_tags_added_details(cls, val): :param UserTagsAddedDetails val: :rtype: EventDetails """ - return cls('user_tags_added_details', val) + return cls("user_tags_added_details", val) @classmethod def user_tags_removed_details(cls, val): @@ -13834,7 +14783,7 @@ def user_tags_removed_details(cls, val): :param UserTagsRemovedDetails val: :rtype: EventDetails """ - return cls('user_tags_removed_details', val) + return cls("user_tags_removed_details", val) @classmethod def email_ingest_receive_file_details(cls, val): @@ -13845,7 +14794,7 @@ def email_ingest_receive_file_details(cls, val): :param EmailIngestReceiveFileDetails val: :rtype: EventDetails """ - return cls('email_ingest_receive_file_details', val) + return cls("email_ingest_receive_file_details", val) @classmethod def file_request_auto_close_details(cls, val): @@ -13856,7 +14805,7 @@ def file_request_auto_close_details(cls, val): :param FileRequestAutoCloseDetails val: :rtype: EventDetails """ - return cls('file_request_auto_close_details', val) + return cls("file_request_auto_close_details", val) @classmethod def file_request_change_details(cls, val): @@ -13867,7 +14816,7 @@ def file_request_change_details(cls, val): :param FileRequestChangeDetails val: :rtype: EventDetails """ - return cls('file_request_change_details', val) + return cls("file_request_change_details", val) @classmethod def file_request_close_details(cls, val): @@ -13878,7 +14827,7 @@ def file_request_close_details(cls, val): :param FileRequestCloseDetails val: :rtype: EventDetails """ - return cls('file_request_close_details', val) + return cls("file_request_close_details", val) @classmethod def file_request_create_details(cls, val): @@ -13889,7 +14838,7 @@ def file_request_create_details(cls, val): :param FileRequestCreateDetails val: :rtype: EventDetails """ - return cls('file_request_create_details', val) + return cls("file_request_create_details", val) @classmethod def file_request_delete_details(cls, val): @@ -13900,7 +14849,7 @@ def file_request_delete_details(cls, val): :param FileRequestDeleteDetails val: :rtype: EventDetails """ - return cls('file_request_delete_details', val) + return cls("file_request_delete_details", val) @classmethod def file_request_receive_file_details(cls, val): @@ -13911,7 +14860,7 @@ def file_request_receive_file_details(cls, val): :param FileRequestReceiveFileDetails val: :rtype: EventDetails """ - return cls('file_request_receive_file_details', val) + return cls("file_request_receive_file_details", val) @classmethod def group_add_external_id_details(cls, val): @@ -13922,7 +14871,7 @@ def group_add_external_id_details(cls, val): :param GroupAddExternalIdDetails val: :rtype: EventDetails """ - return cls('group_add_external_id_details', val) + return cls("group_add_external_id_details", val) @classmethod def group_add_member_details(cls, val): @@ -13933,7 +14882,7 @@ def group_add_member_details(cls, val): :param GroupAddMemberDetails val: :rtype: EventDetails """ - return cls('group_add_member_details', val) + return cls("group_add_member_details", val) @classmethod def group_change_external_id_details(cls, val): @@ -13944,7 +14893,7 @@ def group_change_external_id_details(cls, val): :param GroupChangeExternalIdDetails val: :rtype: EventDetails """ - return cls('group_change_external_id_details', val) + return cls("group_change_external_id_details", val) @classmethod def group_change_management_type_details(cls, val): @@ -13955,7 +14904,7 @@ def group_change_management_type_details(cls, val): :param GroupChangeManagementTypeDetails val: :rtype: EventDetails """ - return cls('group_change_management_type_details', val) + return cls("group_change_management_type_details", val) @classmethod def group_change_member_role_details(cls, val): @@ -13966,7 +14915,7 @@ def group_change_member_role_details(cls, val): :param GroupChangeMemberRoleDetails val: :rtype: EventDetails """ - return cls('group_change_member_role_details', val) + return cls("group_change_member_role_details", val) @classmethod def group_create_details(cls, val): @@ -13977,7 +14926,7 @@ def group_create_details(cls, val): :param GroupCreateDetails val: :rtype: EventDetails """ - return cls('group_create_details', val) + return cls("group_create_details", val) @classmethod def group_delete_details(cls, val): @@ -13988,7 +14937,7 @@ def group_delete_details(cls, val): :param GroupDeleteDetails val: :rtype: EventDetails """ - return cls('group_delete_details', val) + return cls("group_delete_details", val) @classmethod def group_description_updated_details(cls, val): @@ -13999,7 +14948,7 @@ def group_description_updated_details(cls, val): :param GroupDescriptionUpdatedDetails val: :rtype: EventDetails """ - return cls('group_description_updated_details', val) + return cls("group_description_updated_details", val) @classmethod def group_external_sharing_setting_override_changed_details(cls, val): @@ -14011,7 +14960,7 @@ def group_external_sharing_setting_override_changed_details(cls, val): :param GroupExternalSharingSettingOverrideChangedDetails val: :rtype: EventDetails """ - return cls('group_external_sharing_setting_override_changed_details', val) + return cls("group_external_sharing_setting_override_changed_details", val) @classmethod def group_join_policy_updated_details(cls, val): @@ -14022,7 +14971,7 @@ def group_join_policy_updated_details(cls, val): :param GroupJoinPolicyUpdatedDetails val: :rtype: EventDetails """ - return cls('group_join_policy_updated_details', val) + return cls("group_join_policy_updated_details", val) @classmethod def group_moved_details(cls, val): @@ -14033,7 +14982,7 @@ def group_moved_details(cls, val): :param GroupMovedDetails val: :rtype: EventDetails """ - return cls('group_moved_details', val) + return cls("group_moved_details", val) @classmethod def group_remove_external_id_details(cls, val): @@ -14044,7 +14993,7 @@ def group_remove_external_id_details(cls, val): :param GroupRemoveExternalIdDetails val: :rtype: EventDetails """ - return cls('group_remove_external_id_details', val) + return cls("group_remove_external_id_details", val) @classmethod def group_remove_member_details(cls, val): @@ -14055,7 +15004,7 @@ def group_remove_member_details(cls, val): :param GroupRemoveMemberDetails val: :rtype: EventDetails """ - return cls('group_remove_member_details', val) + return cls("group_remove_member_details", val) @classmethod def group_rename_details(cls, val): @@ -14066,7 +15015,7 @@ def group_rename_details(cls, val): :param GroupRenameDetails val: :rtype: EventDetails """ - return cls('group_rename_details', val) + return cls("group_rename_details", val) @classmethod def account_lock_or_unlocked_details(cls, val): @@ -14077,7 +15026,7 @@ def account_lock_or_unlocked_details(cls, val): :param AccountLockOrUnlockedDetails val: :rtype: EventDetails """ - return cls('account_lock_or_unlocked_details', val) + return cls("account_lock_or_unlocked_details", val) @classmethod def emm_error_details(cls, val): @@ -14088,7 +15037,7 @@ def emm_error_details(cls, val): :param EmmErrorDetails val: :rtype: EventDetails """ - return cls('emm_error_details', val) + return cls("emm_error_details", val) @classmethod def guest_admin_signed_in_via_trusted_teams_details(cls, val): @@ -14100,7 +15049,7 @@ def guest_admin_signed_in_via_trusted_teams_details(cls, val): :param GuestAdminSignedInViaTrustedTeamsDetails val: :rtype: EventDetails """ - return cls('guest_admin_signed_in_via_trusted_teams_details', val) + return cls("guest_admin_signed_in_via_trusted_teams_details", val) @classmethod def guest_admin_signed_out_via_trusted_teams_details(cls, val): @@ -14112,7 +15061,7 @@ def guest_admin_signed_out_via_trusted_teams_details(cls, val): :param GuestAdminSignedOutViaTrustedTeamsDetails val: :rtype: EventDetails """ - return cls('guest_admin_signed_out_via_trusted_teams_details', val) + return cls("guest_admin_signed_out_via_trusted_teams_details", val) @classmethod def login_fail_details(cls, val): @@ -14123,7 +15072,7 @@ def login_fail_details(cls, val): :param LoginFailDetails val: :rtype: EventDetails """ - return cls('login_fail_details', val) + return cls("login_fail_details", val) @classmethod def login_success_details(cls, val): @@ -14134,7 +15083,7 @@ def login_success_details(cls, val): :param LoginSuccessDetails val: :rtype: EventDetails """ - return cls('login_success_details', val) + return cls("login_success_details", val) @classmethod def logout_details(cls, val): @@ -14145,7 +15094,7 @@ def logout_details(cls, val): :param LogoutDetails val: :rtype: EventDetails """ - return cls('logout_details', val) + return cls("logout_details", val) @classmethod def reseller_support_session_end_details(cls, val): @@ -14156,7 +15105,7 @@ def reseller_support_session_end_details(cls, val): :param ResellerSupportSessionEndDetails val: :rtype: EventDetails """ - return cls('reseller_support_session_end_details', val) + return cls("reseller_support_session_end_details", val) @classmethod def reseller_support_session_start_details(cls, val): @@ -14167,7 +15116,7 @@ def reseller_support_session_start_details(cls, val): :param ResellerSupportSessionStartDetails val: :rtype: EventDetails """ - return cls('reseller_support_session_start_details', val) + return cls("reseller_support_session_start_details", val) @classmethod def sign_in_as_session_end_details(cls, val): @@ -14178,7 +15127,7 @@ def sign_in_as_session_end_details(cls, val): :param SignInAsSessionEndDetails val: :rtype: EventDetails """ - return cls('sign_in_as_session_end_details', val) + return cls("sign_in_as_session_end_details", val) @classmethod def sign_in_as_session_start_details(cls, val): @@ -14189,7 +15138,7 @@ def sign_in_as_session_start_details(cls, val): :param SignInAsSessionStartDetails val: :rtype: EventDetails """ - return cls('sign_in_as_session_start_details', val) + return cls("sign_in_as_session_start_details", val) @classmethod def sso_error_details(cls, val): @@ -14200,7 +15149,7 @@ def sso_error_details(cls, val): :param SsoErrorDetails val: :rtype: EventDetails """ - return cls('sso_error_details', val) + return cls("sso_error_details", val) @classmethod def addon_assigned_details(cls, val): @@ -14211,7 +15160,7 @@ def addon_assigned_details(cls, val): :param AddonAssignedDetails val: :rtype: EventDetails """ - return cls('addon_assigned_details', val) + return cls("addon_assigned_details", val) @classmethod def addon_removed_details(cls, val): @@ -14222,7 +15171,7 @@ def addon_removed_details(cls, val): :param AddonRemovedDetails val: :rtype: EventDetails """ - return cls('addon_removed_details', val) + return cls("addon_removed_details", val) @classmethod def backup_admin_invitation_sent_details(cls, val): @@ -14233,7 +15182,7 @@ def backup_admin_invitation_sent_details(cls, val): :param BackupAdminInvitationSentDetails val: :rtype: EventDetails """ - return cls('backup_admin_invitation_sent_details', val) + return cls("backup_admin_invitation_sent_details", val) @classmethod def backup_invitation_opened_details(cls, val): @@ -14244,7 +15193,7 @@ def backup_invitation_opened_details(cls, val): :param BackupInvitationOpenedDetails val: :rtype: EventDetails """ - return cls('backup_invitation_opened_details', val) + return cls("backup_invitation_opened_details", val) @classmethod def create_team_invite_link_details(cls, val): @@ -14255,7 +15204,7 @@ def create_team_invite_link_details(cls, val): :param CreateTeamInviteLinkDetails val: :rtype: EventDetails """ - return cls('create_team_invite_link_details', val) + return cls("create_team_invite_link_details", val) @classmethod def delete_team_invite_link_details(cls, val): @@ -14266,7 +15215,7 @@ def delete_team_invite_link_details(cls, val): :param DeleteTeamInviteLinkDetails val: :rtype: EventDetails """ - return cls('delete_team_invite_link_details', val) + return cls("delete_team_invite_link_details", val) @classmethod def member_add_external_id_details(cls, val): @@ -14277,7 +15226,7 @@ def member_add_external_id_details(cls, val): :param MemberAddExternalIdDetails val: :rtype: EventDetails """ - return cls('member_add_external_id_details', val) + return cls("member_add_external_id_details", val) @classmethod def member_add_name_details(cls, val): @@ -14288,7 +15237,7 @@ def member_add_name_details(cls, val): :param MemberAddNameDetails val: :rtype: EventDetails """ - return cls('member_add_name_details', val) + return cls("member_add_name_details", val) @classmethod def member_change_admin_role_details(cls, val): @@ -14299,7 +15248,7 @@ def member_change_admin_role_details(cls, val): :param MemberChangeAdminRoleDetails val: :rtype: EventDetails """ - return cls('member_change_admin_role_details', val) + return cls("member_change_admin_role_details", val) @classmethod def member_change_email_details(cls, val): @@ -14310,7 +15259,7 @@ def member_change_email_details(cls, val): :param MemberChangeEmailDetails val: :rtype: EventDetails """ - return cls('member_change_email_details', val) + return cls("member_change_email_details", val) @classmethod def member_change_external_id_details(cls, val): @@ -14321,7 +15270,7 @@ def member_change_external_id_details(cls, val): :param MemberChangeExternalIdDetails val: :rtype: EventDetails """ - return cls('member_change_external_id_details', val) + return cls("member_change_external_id_details", val) @classmethod def member_change_membership_type_details(cls, val): @@ -14332,7 +15281,7 @@ def member_change_membership_type_details(cls, val): :param MemberChangeMembershipTypeDetails val: :rtype: EventDetails """ - return cls('member_change_membership_type_details', val) + return cls("member_change_membership_type_details", val) @classmethod def member_change_name_details(cls, val): @@ -14343,7 +15292,7 @@ def member_change_name_details(cls, val): :param MemberChangeNameDetails val: :rtype: EventDetails """ - return cls('member_change_name_details', val) + return cls("member_change_name_details", val) @classmethod def member_change_reseller_role_details(cls, val): @@ -14354,7 +15303,7 @@ def member_change_reseller_role_details(cls, val): :param MemberChangeResellerRoleDetails val: :rtype: EventDetails """ - return cls('member_change_reseller_role_details', val) + return cls("member_change_reseller_role_details", val) @classmethod def member_change_status_details(cls, val): @@ -14365,7 +15314,7 @@ def member_change_status_details(cls, val): :param MemberChangeStatusDetails val: :rtype: EventDetails """ - return cls('member_change_status_details', val) + return cls("member_change_status_details", val) @classmethod def member_delete_manual_contacts_details(cls, val): @@ -14376,7 +15325,7 @@ def member_delete_manual_contacts_details(cls, val): :param MemberDeleteManualContactsDetails val: :rtype: EventDetails """ - return cls('member_delete_manual_contacts_details', val) + return cls("member_delete_manual_contacts_details", val) @classmethod def member_delete_profile_photo_details(cls, val): @@ -14387,7 +15336,7 @@ def member_delete_profile_photo_details(cls, val): :param MemberDeleteProfilePhotoDetails val: :rtype: EventDetails """ - return cls('member_delete_profile_photo_details', val) + return cls("member_delete_profile_photo_details", val) @classmethod def member_permanently_delete_account_contents_details(cls, val): @@ -14399,7 +15348,7 @@ def member_permanently_delete_account_contents_details(cls, val): :param MemberPermanentlyDeleteAccountContentsDetails val: :rtype: EventDetails """ - return cls('member_permanently_delete_account_contents_details', val) + return cls("member_permanently_delete_account_contents_details", val) @classmethod def member_remove_external_id_details(cls, val): @@ -14410,7 +15359,7 @@ def member_remove_external_id_details(cls, val): :param MemberRemoveExternalIdDetails val: :rtype: EventDetails """ - return cls('member_remove_external_id_details', val) + return cls("member_remove_external_id_details", val) @classmethod def member_set_profile_photo_details(cls, val): @@ -14421,7 +15370,7 @@ def member_set_profile_photo_details(cls, val): :param MemberSetProfilePhotoDetails val: :rtype: EventDetails """ - return cls('member_set_profile_photo_details', val) + return cls("member_set_profile_photo_details", val) @classmethod def member_space_limits_add_custom_quota_details(cls, val): @@ -14432,7 +15381,7 @@ def member_space_limits_add_custom_quota_details(cls, val): :param MemberSpaceLimitsAddCustomQuotaDetails val: :rtype: EventDetails """ - return cls('member_space_limits_add_custom_quota_details', val) + return cls("member_space_limits_add_custom_quota_details", val) @classmethod def member_space_limits_change_custom_quota_details(cls, val): @@ -14444,7 +15393,7 @@ def member_space_limits_change_custom_quota_details(cls, val): :param MemberSpaceLimitsChangeCustomQuotaDetails val: :rtype: EventDetails """ - return cls('member_space_limits_change_custom_quota_details', val) + return cls("member_space_limits_change_custom_quota_details", val) @classmethod def member_space_limits_change_status_details(cls, val): @@ -14455,7 +15404,7 @@ def member_space_limits_change_status_details(cls, val): :param MemberSpaceLimitsChangeStatusDetails val: :rtype: EventDetails """ - return cls('member_space_limits_change_status_details', val) + return cls("member_space_limits_change_status_details", val) @classmethod def member_space_limits_remove_custom_quota_details(cls, val): @@ -14467,7 +15416,7 @@ def member_space_limits_remove_custom_quota_details(cls, val): :param MemberSpaceLimitsRemoveCustomQuotaDetails val: :rtype: EventDetails """ - return cls('member_space_limits_remove_custom_quota_details', val) + return cls("member_space_limits_remove_custom_quota_details", val) @classmethod def member_suggest_details(cls, val): @@ -14478,7 +15427,7 @@ def member_suggest_details(cls, val): :param MemberSuggestDetails val: :rtype: EventDetails """ - return cls('member_suggest_details', val) + return cls("member_suggest_details", val) @classmethod def member_transfer_account_contents_details(cls, val): @@ -14489,7 +15438,7 @@ def member_transfer_account_contents_details(cls, val): :param MemberTransferAccountContentsDetails val: :rtype: EventDetails """ - return cls('member_transfer_account_contents_details', val) + return cls("member_transfer_account_contents_details", val) @classmethod def pending_secondary_email_added_details(cls, val): @@ -14500,7 +15449,7 @@ def pending_secondary_email_added_details(cls, val): :param PendingSecondaryEmailAddedDetails val: :rtype: EventDetails """ - return cls('pending_secondary_email_added_details', val) + return cls("pending_secondary_email_added_details", val) @classmethod def product_assigned_to_member_details(cls, val): @@ -14511,7 +15460,7 @@ def product_assigned_to_member_details(cls, val): :param ProductAssignedToMemberDetails val: :rtype: EventDetails """ - return cls('product_assigned_to_member_details', val) + return cls("product_assigned_to_member_details", val) @classmethod def product_removed_from_member_details(cls, val): @@ -14522,7 +15471,7 @@ def product_removed_from_member_details(cls, val): :param ProductRemovedFromMemberDetails val: :rtype: EventDetails """ - return cls('product_removed_from_member_details', val) + return cls("product_removed_from_member_details", val) @classmethod def secondary_email_deleted_details(cls, val): @@ -14533,7 +15482,7 @@ def secondary_email_deleted_details(cls, val): :param SecondaryEmailDeletedDetails val: :rtype: EventDetails """ - return cls('secondary_email_deleted_details', val) + return cls("secondary_email_deleted_details", val) @classmethod def secondary_email_verified_details(cls, val): @@ -14544,7 +15493,7 @@ def secondary_email_verified_details(cls, val): :param SecondaryEmailVerifiedDetails val: :rtype: EventDetails """ - return cls('secondary_email_verified_details', val) + return cls("secondary_email_verified_details", val) @classmethod def secondary_mails_policy_changed_details(cls, val): @@ -14555,7 +15504,7 @@ def secondary_mails_policy_changed_details(cls, val): :param SecondaryMailsPolicyChangedDetails val: :rtype: EventDetails """ - return cls('secondary_mails_policy_changed_details', val) + return cls("secondary_mails_policy_changed_details", val) @classmethod def binder_add_page_details(cls, val): @@ -14566,7 +15515,7 @@ def binder_add_page_details(cls, val): :param BinderAddPageDetails val: :rtype: EventDetails """ - return cls('binder_add_page_details', val) + return cls("binder_add_page_details", val) @classmethod def binder_add_section_details(cls, val): @@ -14577,7 +15526,7 @@ def binder_add_section_details(cls, val): :param BinderAddSectionDetails val: :rtype: EventDetails """ - return cls('binder_add_section_details', val) + return cls("binder_add_section_details", val) @classmethod def binder_remove_page_details(cls, val): @@ -14588,7 +15537,7 @@ def binder_remove_page_details(cls, val): :param BinderRemovePageDetails val: :rtype: EventDetails """ - return cls('binder_remove_page_details', val) + return cls("binder_remove_page_details", val) @classmethod def binder_remove_section_details(cls, val): @@ -14599,7 +15548,7 @@ def binder_remove_section_details(cls, val): :param BinderRemoveSectionDetails val: :rtype: EventDetails """ - return cls('binder_remove_section_details', val) + return cls("binder_remove_section_details", val) @classmethod def binder_rename_page_details(cls, val): @@ -14610,7 +15559,7 @@ def binder_rename_page_details(cls, val): :param BinderRenamePageDetails val: :rtype: EventDetails """ - return cls('binder_rename_page_details', val) + return cls("binder_rename_page_details", val) @classmethod def binder_rename_section_details(cls, val): @@ -14621,7 +15570,7 @@ def binder_rename_section_details(cls, val): :param BinderRenameSectionDetails val: :rtype: EventDetails """ - return cls('binder_rename_section_details', val) + return cls("binder_rename_section_details", val) @classmethod def binder_reorder_page_details(cls, val): @@ -14632,7 +15581,7 @@ def binder_reorder_page_details(cls, val): :param BinderReorderPageDetails val: :rtype: EventDetails """ - return cls('binder_reorder_page_details', val) + return cls("binder_reorder_page_details", val) @classmethod def binder_reorder_section_details(cls, val): @@ -14643,7 +15592,7 @@ def binder_reorder_section_details(cls, val): :param BinderReorderSectionDetails val: :rtype: EventDetails """ - return cls('binder_reorder_section_details', val) + return cls("binder_reorder_section_details", val) @classmethod def paper_content_add_member_details(cls, val): @@ -14654,7 +15603,7 @@ def paper_content_add_member_details(cls, val): :param PaperContentAddMemberDetails val: :rtype: EventDetails """ - return cls('paper_content_add_member_details', val) + return cls("paper_content_add_member_details", val) @classmethod def paper_content_add_to_folder_details(cls, val): @@ -14665,7 +15614,7 @@ def paper_content_add_to_folder_details(cls, val): :param PaperContentAddToFolderDetails val: :rtype: EventDetails """ - return cls('paper_content_add_to_folder_details', val) + return cls("paper_content_add_to_folder_details", val) @classmethod def paper_content_archive_details(cls, val): @@ -14676,7 +15625,7 @@ def paper_content_archive_details(cls, val): :param PaperContentArchiveDetails val: :rtype: EventDetails """ - return cls('paper_content_archive_details', val) + return cls("paper_content_archive_details", val) @classmethod def paper_content_create_details(cls, val): @@ -14687,7 +15636,7 @@ def paper_content_create_details(cls, val): :param PaperContentCreateDetails val: :rtype: EventDetails """ - return cls('paper_content_create_details', val) + return cls("paper_content_create_details", val) @classmethod def paper_content_permanently_delete_details(cls, val): @@ -14698,7 +15647,7 @@ def paper_content_permanently_delete_details(cls, val): :param PaperContentPermanentlyDeleteDetails val: :rtype: EventDetails """ - return cls('paper_content_permanently_delete_details', val) + return cls("paper_content_permanently_delete_details", val) @classmethod def paper_content_remove_from_folder_details(cls, val): @@ -14709,7 +15658,7 @@ def paper_content_remove_from_folder_details(cls, val): :param PaperContentRemoveFromFolderDetails val: :rtype: EventDetails """ - return cls('paper_content_remove_from_folder_details', val) + return cls("paper_content_remove_from_folder_details", val) @classmethod def paper_content_remove_member_details(cls, val): @@ -14720,7 +15669,7 @@ def paper_content_remove_member_details(cls, val): :param PaperContentRemoveMemberDetails val: :rtype: EventDetails """ - return cls('paper_content_remove_member_details', val) + return cls("paper_content_remove_member_details", val) @classmethod def paper_content_rename_details(cls, val): @@ -14731,7 +15680,7 @@ def paper_content_rename_details(cls, val): :param PaperContentRenameDetails val: :rtype: EventDetails """ - return cls('paper_content_rename_details', val) + return cls("paper_content_rename_details", val) @classmethod def paper_content_restore_details(cls, val): @@ -14742,7 +15691,7 @@ def paper_content_restore_details(cls, val): :param PaperContentRestoreDetails val: :rtype: EventDetails """ - return cls('paper_content_restore_details', val) + return cls("paper_content_restore_details", val) @classmethod def paper_doc_add_comment_details(cls, val): @@ -14753,7 +15702,7 @@ def paper_doc_add_comment_details(cls, val): :param PaperDocAddCommentDetails val: :rtype: EventDetails """ - return cls('paper_doc_add_comment_details', val) + return cls("paper_doc_add_comment_details", val) @classmethod def paper_doc_change_member_role_details(cls, val): @@ -14764,7 +15713,7 @@ def paper_doc_change_member_role_details(cls, val): :param PaperDocChangeMemberRoleDetails val: :rtype: EventDetails """ - return cls('paper_doc_change_member_role_details', val) + return cls("paper_doc_change_member_role_details", val) @classmethod def paper_doc_change_sharing_policy_details(cls, val): @@ -14775,7 +15724,7 @@ def paper_doc_change_sharing_policy_details(cls, val): :param PaperDocChangeSharingPolicyDetails val: :rtype: EventDetails """ - return cls('paper_doc_change_sharing_policy_details', val) + return cls("paper_doc_change_sharing_policy_details", val) @classmethod def paper_doc_change_subscription_details(cls, val): @@ -14786,7 +15735,7 @@ def paper_doc_change_subscription_details(cls, val): :param PaperDocChangeSubscriptionDetails val: :rtype: EventDetails """ - return cls('paper_doc_change_subscription_details', val) + return cls("paper_doc_change_subscription_details", val) @classmethod def paper_doc_deleted_details(cls, val): @@ -14797,7 +15746,7 @@ def paper_doc_deleted_details(cls, val): :param PaperDocDeletedDetails val: :rtype: EventDetails """ - return cls('paper_doc_deleted_details', val) + return cls("paper_doc_deleted_details", val) @classmethod def paper_doc_delete_comment_details(cls, val): @@ -14808,7 +15757,7 @@ def paper_doc_delete_comment_details(cls, val): :param PaperDocDeleteCommentDetails val: :rtype: EventDetails """ - return cls('paper_doc_delete_comment_details', val) + return cls("paper_doc_delete_comment_details", val) @classmethod def paper_doc_download_details(cls, val): @@ -14819,7 +15768,7 @@ def paper_doc_download_details(cls, val): :param PaperDocDownloadDetails val: :rtype: EventDetails """ - return cls('paper_doc_download_details', val) + return cls("paper_doc_download_details", val) @classmethod def paper_doc_edit_details(cls, val): @@ -14830,7 +15779,7 @@ def paper_doc_edit_details(cls, val): :param PaperDocEditDetails val: :rtype: EventDetails """ - return cls('paper_doc_edit_details', val) + return cls("paper_doc_edit_details", val) @classmethod def paper_doc_edit_comment_details(cls, val): @@ -14841,7 +15790,7 @@ def paper_doc_edit_comment_details(cls, val): :param PaperDocEditCommentDetails val: :rtype: EventDetails """ - return cls('paper_doc_edit_comment_details', val) + return cls("paper_doc_edit_comment_details", val) @classmethod def paper_doc_followed_details(cls, val): @@ -14852,7 +15801,7 @@ def paper_doc_followed_details(cls, val): :param PaperDocFollowedDetails val: :rtype: EventDetails """ - return cls('paper_doc_followed_details', val) + return cls("paper_doc_followed_details", val) @classmethod def paper_doc_mention_details(cls, val): @@ -14863,7 +15812,7 @@ def paper_doc_mention_details(cls, val): :param PaperDocMentionDetails val: :rtype: EventDetails """ - return cls('paper_doc_mention_details', val) + return cls("paper_doc_mention_details", val) @classmethod def paper_doc_ownership_changed_details(cls, val): @@ -14874,7 +15823,7 @@ def paper_doc_ownership_changed_details(cls, val): :param PaperDocOwnershipChangedDetails val: :rtype: EventDetails """ - return cls('paper_doc_ownership_changed_details', val) + return cls("paper_doc_ownership_changed_details", val) @classmethod def paper_doc_request_access_details(cls, val): @@ -14885,7 +15834,7 @@ def paper_doc_request_access_details(cls, val): :param PaperDocRequestAccessDetails val: :rtype: EventDetails """ - return cls('paper_doc_request_access_details', val) + return cls("paper_doc_request_access_details", val) @classmethod def paper_doc_resolve_comment_details(cls, val): @@ -14896,7 +15845,7 @@ def paper_doc_resolve_comment_details(cls, val): :param PaperDocResolveCommentDetails val: :rtype: EventDetails """ - return cls('paper_doc_resolve_comment_details', val) + return cls("paper_doc_resolve_comment_details", val) @classmethod def paper_doc_revert_details(cls, val): @@ -14907,7 +15856,7 @@ def paper_doc_revert_details(cls, val): :param PaperDocRevertDetails val: :rtype: EventDetails """ - return cls('paper_doc_revert_details', val) + return cls("paper_doc_revert_details", val) @classmethod def paper_doc_slack_share_details(cls, val): @@ -14918,7 +15867,7 @@ def paper_doc_slack_share_details(cls, val): :param PaperDocSlackShareDetails val: :rtype: EventDetails """ - return cls('paper_doc_slack_share_details', val) + return cls("paper_doc_slack_share_details", val) @classmethod def paper_doc_team_invite_details(cls, val): @@ -14929,7 +15878,7 @@ def paper_doc_team_invite_details(cls, val): :param PaperDocTeamInviteDetails val: :rtype: EventDetails """ - return cls('paper_doc_team_invite_details', val) + return cls("paper_doc_team_invite_details", val) @classmethod def paper_doc_trashed_details(cls, val): @@ -14940,7 +15889,7 @@ def paper_doc_trashed_details(cls, val): :param PaperDocTrashedDetails val: :rtype: EventDetails """ - return cls('paper_doc_trashed_details', val) + return cls("paper_doc_trashed_details", val) @classmethod def paper_doc_unresolve_comment_details(cls, val): @@ -14951,7 +15900,7 @@ def paper_doc_unresolve_comment_details(cls, val): :param PaperDocUnresolveCommentDetails val: :rtype: EventDetails """ - return cls('paper_doc_unresolve_comment_details', val) + return cls("paper_doc_unresolve_comment_details", val) @classmethod def paper_doc_untrashed_details(cls, val): @@ -14962,7 +15911,7 @@ def paper_doc_untrashed_details(cls, val): :param PaperDocUntrashedDetails val: :rtype: EventDetails """ - return cls('paper_doc_untrashed_details', val) + return cls("paper_doc_untrashed_details", val) @classmethod def paper_doc_view_details(cls, val): @@ -14973,7 +15922,7 @@ def paper_doc_view_details(cls, val): :param PaperDocViewDetails val: :rtype: EventDetails """ - return cls('paper_doc_view_details', val) + return cls("paper_doc_view_details", val) @classmethod def paper_external_view_allow_details(cls, val): @@ -14984,7 +15933,7 @@ def paper_external_view_allow_details(cls, val): :param PaperExternalViewAllowDetails val: :rtype: EventDetails """ - return cls('paper_external_view_allow_details', val) + return cls("paper_external_view_allow_details", val) @classmethod def paper_external_view_default_team_details(cls, val): @@ -14995,7 +15944,7 @@ def paper_external_view_default_team_details(cls, val): :param PaperExternalViewDefaultTeamDetails val: :rtype: EventDetails """ - return cls('paper_external_view_default_team_details', val) + return cls("paper_external_view_default_team_details", val) @classmethod def paper_external_view_forbid_details(cls, val): @@ -15006,7 +15955,7 @@ def paper_external_view_forbid_details(cls, val): :param PaperExternalViewForbidDetails val: :rtype: EventDetails """ - return cls('paper_external_view_forbid_details', val) + return cls("paper_external_view_forbid_details", val) @classmethod def paper_folder_change_subscription_details(cls, val): @@ -15017,7 +15966,7 @@ def paper_folder_change_subscription_details(cls, val): :param PaperFolderChangeSubscriptionDetails val: :rtype: EventDetails """ - return cls('paper_folder_change_subscription_details', val) + return cls("paper_folder_change_subscription_details", val) @classmethod def paper_folder_deleted_details(cls, val): @@ -15028,7 +15977,7 @@ def paper_folder_deleted_details(cls, val): :param PaperFolderDeletedDetails val: :rtype: EventDetails """ - return cls('paper_folder_deleted_details', val) + return cls("paper_folder_deleted_details", val) @classmethod def paper_folder_followed_details(cls, val): @@ -15039,7 +15988,7 @@ def paper_folder_followed_details(cls, val): :param PaperFolderFollowedDetails val: :rtype: EventDetails """ - return cls('paper_folder_followed_details', val) + return cls("paper_folder_followed_details", val) @classmethod def paper_folder_team_invite_details(cls, val): @@ -15050,7 +15999,7 @@ def paper_folder_team_invite_details(cls, val): :param PaperFolderTeamInviteDetails val: :rtype: EventDetails """ - return cls('paper_folder_team_invite_details', val) + return cls("paper_folder_team_invite_details", val) @classmethod def paper_published_link_change_permission_details(cls, val): @@ -15062,7 +16011,7 @@ def paper_published_link_change_permission_details(cls, val): :param PaperPublishedLinkChangePermissionDetails val: :rtype: EventDetails """ - return cls('paper_published_link_change_permission_details', val) + return cls("paper_published_link_change_permission_details", val) @classmethod def paper_published_link_create_details(cls, val): @@ -15073,7 +16022,7 @@ def paper_published_link_create_details(cls, val): :param PaperPublishedLinkCreateDetails val: :rtype: EventDetails """ - return cls('paper_published_link_create_details', val) + return cls("paper_published_link_create_details", val) @classmethod def paper_published_link_disabled_details(cls, val): @@ -15084,7 +16033,7 @@ def paper_published_link_disabled_details(cls, val): :param PaperPublishedLinkDisabledDetails val: :rtype: EventDetails """ - return cls('paper_published_link_disabled_details', val) + return cls("paper_published_link_disabled_details", val) @classmethod def paper_published_link_view_details(cls, val): @@ -15095,7 +16044,7 @@ def paper_published_link_view_details(cls, val): :param PaperPublishedLinkViewDetails val: :rtype: EventDetails """ - return cls('paper_published_link_view_details', val) + return cls("paper_published_link_view_details", val) @classmethod def password_change_details(cls, val): @@ -15106,7 +16055,7 @@ def password_change_details(cls, val): :param PasswordChangeDetails val: :rtype: EventDetails """ - return cls('password_change_details', val) + return cls("password_change_details", val) @classmethod def password_reset_details(cls, val): @@ -15117,7 +16066,7 @@ def password_reset_details(cls, val): :param PasswordResetDetails val: :rtype: EventDetails """ - return cls('password_reset_details', val) + return cls("password_reset_details", val) @classmethod def password_reset_all_details(cls, val): @@ -15128,7 +16077,7 @@ def password_reset_all_details(cls, val): :param PasswordResetAllDetails val: :rtype: EventDetails """ - return cls('password_reset_all_details', val) + return cls("password_reset_all_details", val) @classmethod def protect_internal_domains_changed_details(cls, val): @@ -15139,7 +16088,7 @@ def protect_internal_domains_changed_details(cls, val): :param ProtectInternalDomainsChangedDetails val: :rtype: EventDetails """ - return cls('protect_internal_domains_changed_details', val) + return cls("protect_internal_domains_changed_details", val) @classmethod def classification_create_report_details(cls, val): @@ -15150,7 +16099,7 @@ def classification_create_report_details(cls, val): :param ClassificationCreateReportDetails val: :rtype: EventDetails """ - return cls('classification_create_report_details', val) + return cls("classification_create_report_details", val) @classmethod def classification_create_report_fail_details(cls, val): @@ -15161,7 +16110,7 @@ def classification_create_report_fail_details(cls, val): :param ClassificationCreateReportFailDetails val: :rtype: EventDetails """ - return cls('classification_create_report_fail_details', val) + return cls("classification_create_report_fail_details", val) @classmethod def emm_create_exceptions_report_details(cls, val): @@ -15172,7 +16121,7 @@ def emm_create_exceptions_report_details(cls, val): :param EmmCreateExceptionsReportDetails val: :rtype: EventDetails """ - return cls('emm_create_exceptions_report_details', val) + return cls("emm_create_exceptions_report_details", val) @classmethod def emm_create_usage_report_details(cls, val): @@ -15183,7 +16132,7 @@ def emm_create_usage_report_details(cls, val): :param EmmCreateUsageReportDetails val: :rtype: EventDetails """ - return cls('emm_create_usage_report_details', val) + return cls("emm_create_usage_report_details", val) @classmethod def export_members_report_details(cls, val): @@ -15194,7 +16143,7 @@ def export_members_report_details(cls, val): :param ExportMembersReportDetails val: :rtype: EventDetails """ - return cls('export_members_report_details', val) + return cls("export_members_report_details", val) @classmethod def export_members_report_fail_details(cls, val): @@ -15205,7 +16154,7 @@ def export_members_report_fail_details(cls, val): :param ExportMembersReportFailDetails val: :rtype: EventDetails """ - return cls('export_members_report_fail_details', val) + return cls("export_members_report_fail_details", val) @classmethod def external_sharing_create_report_details(cls, val): @@ -15216,7 +16165,7 @@ def external_sharing_create_report_details(cls, val): :param ExternalSharingCreateReportDetails val: :rtype: EventDetails """ - return cls('external_sharing_create_report_details', val) + return cls("external_sharing_create_report_details", val) @classmethod def external_sharing_report_failed_details(cls, val): @@ -15227,7 +16176,7 @@ def external_sharing_report_failed_details(cls, val): :param ExternalSharingReportFailedDetails val: :rtype: EventDetails """ - return cls('external_sharing_report_failed_details', val) + return cls("external_sharing_report_failed_details", val) @classmethod def member_access_details_create_report_details(cls, val): @@ -15238,7 +16187,7 @@ def member_access_details_create_report_details(cls, val): :param MemberAccessDetailsCreateReportDetails val: :rtype: EventDetails """ - return cls('member_access_details_create_report_details', val) + return cls("member_access_details_create_report_details", val) @classmethod def member_access_details_create_report_failed_details(cls, val): @@ -15250,7 +16199,7 @@ def member_access_details_create_report_failed_details(cls, val): :param MemberAccessDetailsCreateReportFailedDetails val: :rtype: EventDetails """ - return cls('member_access_details_create_report_failed_details', val) + return cls("member_access_details_create_report_failed_details", val) @classmethod def no_expiration_link_gen_create_report_details(cls, val): @@ -15261,7 +16210,7 @@ def no_expiration_link_gen_create_report_details(cls, val): :param NoExpirationLinkGenCreateReportDetails val: :rtype: EventDetails """ - return cls('no_expiration_link_gen_create_report_details', val) + return cls("no_expiration_link_gen_create_report_details", val) @classmethod def no_expiration_link_gen_report_failed_details(cls, val): @@ -15272,7 +16221,7 @@ def no_expiration_link_gen_report_failed_details(cls, val): :param NoExpirationLinkGenReportFailedDetails val: :rtype: EventDetails """ - return cls('no_expiration_link_gen_report_failed_details', val) + return cls("no_expiration_link_gen_report_failed_details", val) @classmethod def no_password_link_gen_create_report_details(cls, val): @@ -15283,7 +16232,7 @@ def no_password_link_gen_create_report_details(cls, val): :param NoPasswordLinkGenCreateReportDetails val: :rtype: EventDetails """ - return cls('no_password_link_gen_create_report_details', val) + return cls("no_password_link_gen_create_report_details", val) @classmethod def no_password_link_gen_report_failed_details(cls, val): @@ -15294,7 +16243,7 @@ def no_password_link_gen_report_failed_details(cls, val): :param NoPasswordLinkGenReportFailedDetails val: :rtype: EventDetails """ - return cls('no_password_link_gen_report_failed_details', val) + return cls("no_password_link_gen_report_failed_details", val) @classmethod def no_password_link_view_create_report_details(cls, val): @@ -15305,7 +16254,7 @@ def no_password_link_view_create_report_details(cls, val): :param NoPasswordLinkViewCreateReportDetails val: :rtype: EventDetails """ - return cls('no_password_link_view_create_report_details', val) + return cls("no_password_link_view_create_report_details", val) @classmethod def no_password_link_view_report_failed_details(cls, val): @@ -15316,7 +16265,7 @@ def no_password_link_view_report_failed_details(cls, val): :param NoPasswordLinkViewReportFailedDetails val: :rtype: EventDetails """ - return cls('no_password_link_view_report_failed_details', val) + return cls("no_password_link_view_report_failed_details", val) @classmethod def outdated_link_view_create_report_details(cls, val): @@ -15327,7 +16276,7 @@ def outdated_link_view_create_report_details(cls, val): :param OutdatedLinkViewCreateReportDetails val: :rtype: EventDetails """ - return cls('outdated_link_view_create_report_details', val) + return cls("outdated_link_view_create_report_details", val) @classmethod def outdated_link_view_report_failed_details(cls, val): @@ -15338,7 +16287,7 @@ def outdated_link_view_report_failed_details(cls, val): :param OutdatedLinkViewReportFailedDetails val: :rtype: EventDetails """ - return cls('outdated_link_view_report_failed_details', val) + return cls("outdated_link_view_report_failed_details", val) @classmethod def paper_admin_export_start_details(cls, val): @@ -15349,7 +16298,7 @@ def paper_admin_export_start_details(cls, val): :param PaperAdminExportStartDetails val: :rtype: EventDetails """ - return cls('paper_admin_export_start_details', val) + return cls("paper_admin_export_start_details", val) @classmethod def ransomware_alert_create_report_details(cls, val): @@ -15360,7 +16309,7 @@ def ransomware_alert_create_report_details(cls, val): :param RansomwareAlertCreateReportDetails val: :rtype: EventDetails """ - return cls('ransomware_alert_create_report_details', val) + return cls("ransomware_alert_create_report_details", val) @classmethod def ransomware_alert_create_report_failed_details(cls, val): @@ -15372,7 +16321,7 @@ def ransomware_alert_create_report_failed_details(cls, val): :param RansomwareAlertCreateReportFailedDetails val: :rtype: EventDetails """ - return cls('ransomware_alert_create_report_failed_details', val) + return cls("ransomware_alert_create_report_failed_details", val) @classmethod def shared_folders_create_report_details(cls, val): @@ -15383,7 +16332,7 @@ def shared_folders_create_report_details(cls, val): :param SharedFoldersCreateReportDetails val: :rtype: EventDetails """ - return cls('shared_folders_create_report_details', val) + return cls("shared_folders_create_report_details", val) @classmethod def shared_folders_create_report_failed_details(cls, val): @@ -15394,7 +16343,7 @@ def shared_folders_create_report_failed_details(cls, val): :param SharedFoldersCreateReportFailedDetails val: :rtype: EventDetails """ - return cls('shared_folders_create_report_failed_details', val) + return cls("shared_folders_create_report_failed_details", val) @classmethod def smart_sync_create_admin_privilege_report_details(cls, val): @@ -15406,7 +16355,7 @@ def smart_sync_create_admin_privilege_report_details(cls, val): :param SmartSyncCreateAdminPrivilegeReportDetails val: :rtype: EventDetails """ - return cls('smart_sync_create_admin_privilege_report_details', val) + return cls("smart_sync_create_admin_privilege_report_details", val) @classmethod def team_activity_create_report_details(cls, val): @@ -15417,7 +16366,7 @@ def team_activity_create_report_details(cls, val): :param TeamActivityCreateReportDetails val: :rtype: EventDetails """ - return cls('team_activity_create_report_details', val) + return cls("team_activity_create_report_details", val) @classmethod def team_activity_create_report_fail_details(cls, val): @@ -15428,7 +16377,7 @@ def team_activity_create_report_fail_details(cls, val): :param TeamActivityCreateReportFailDetails val: :rtype: EventDetails """ - return cls('team_activity_create_report_fail_details', val) + return cls("team_activity_create_report_fail_details", val) @classmethod def team_folders_create_report_details(cls, val): @@ -15439,7 +16388,7 @@ def team_folders_create_report_details(cls, val): :param TeamFoldersCreateReportDetails val: :rtype: EventDetails """ - return cls('team_folders_create_report_details', val) + return cls("team_folders_create_report_details", val) @classmethod def team_folders_create_report_failed_details(cls, val): @@ -15450,7 +16399,7 @@ def team_folders_create_report_failed_details(cls, val): :param TeamFoldersCreateReportFailedDetails val: :rtype: EventDetails """ - return cls('team_folders_create_report_failed_details', val) + return cls("team_folders_create_report_failed_details", val) @classmethod def team_storage_create_report_details(cls, val): @@ -15461,7 +16410,7 @@ def team_storage_create_report_details(cls, val): :param TeamStorageCreateReportDetails val: :rtype: EventDetails """ - return cls('team_storage_create_report_details', val) + return cls("team_storage_create_report_details", val) @classmethod def team_storage_create_report_failed_details(cls, val): @@ -15472,7 +16421,7 @@ def team_storage_create_report_failed_details(cls, val): :param TeamStorageCreateReportFailedDetails val: :rtype: EventDetails """ - return cls('team_storage_create_report_failed_details', val) + return cls("team_storage_create_report_failed_details", val) @classmethod def collection_share_details(cls, val): @@ -15483,7 +16432,7 @@ def collection_share_details(cls, val): :param CollectionShareDetails val: :rtype: EventDetails """ - return cls('collection_share_details', val) + return cls("collection_share_details", val) @classmethod def file_transfers_file_add_details(cls, val): @@ -15494,7 +16443,7 @@ def file_transfers_file_add_details(cls, val): :param FileTransfersFileAddDetails val: :rtype: EventDetails """ - return cls('file_transfers_file_add_details', val) + return cls("file_transfers_file_add_details", val) @classmethod def file_transfers_transfer_delete_details(cls, val): @@ -15505,7 +16454,7 @@ def file_transfers_transfer_delete_details(cls, val): :param FileTransfersTransferDeleteDetails val: :rtype: EventDetails """ - return cls('file_transfers_transfer_delete_details', val) + return cls("file_transfers_transfer_delete_details", val) @classmethod def file_transfers_transfer_download_details(cls, val): @@ -15516,7 +16465,7 @@ def file_transfers_transfer_download_details(cls, val): :param FileTransfersTransferDownloadDetails val: :rtype: EventDetails """ - return cls('file_transfers_transfer_download_details', val) + return cls("file_transfers_transfer_download_details", val) @classmethod def file_transfers_transfer_send_details(cls, val): @@ -15527,7 +16476,7 @@ def file_transfers_transfer_send_details(cls, val): :param FileTransfersTransferSendDetails val: :rtype: EventDetails """ - return cls('file_transfers_transfer_send_details', val) + return cls("file_transfers_transfer_send_details", val) @classmethod def file_transfers_transfer_view_details(cls, val): @@ -15538,7 +16487,7 @@ def file_transfers_transfer_view_details(cls, val): :param FileTransfersTransferViewDetails val: :rtype: EventDetails """ - return cls('file_transfers_transfer_view_details', val) + return cls("file_transfers_transfer_view_details", val) @classmethod def media_hub_project_team_add_details(cls, val): @@ -15549,7 +16498,7 @@ def media_hub_project_team_add_details(cls, val): :param MediaHubProjectTeamAddDetails val: :rtype: EventDetails """ - return cls('media_hub_project_team_add_details', val) + return cls("media_hub_project_team_add_details", val) @classmethod def media_hub_project_team_delete_details(cls, val): @@ -15560,7 +16509,7 @@ def media_hub_project_team_delete_details(cls, val): :param MediaHubProjectTeamDeleteDetails val: :rtype: EventDetails """ - return cls('media_hub_project_team_delete_details', val) + return cls("media_hub_project_team_delete_details", val) @classmethod def media_hub_project_team_role_changed_details(cls, val): @@ -15571,7 +16520,7 @@ def media_hub_project_team_role_changed_details(cls, val): :param MediaHubProjectTeamRoleChangedDetails val: :rtype: EventDetails """ - return cls('media_hub_project_team_role_changed_details', val) + return cls("media_hub_project_team_role_changed_details", val) @classmethod def media_hub_shared_link_audience_changed_details(cls, val): @@ -15583,7 +16532,7 @@ def media_hub_shared_link_audience_changed_details(cls, val): :param MediaHubSharedLinkAudienceChangedDetails val: :rtype: EventDetails """ - return cls('media_hub_shared_link_audience_changed_details', val) + return cls("media_hub_shared_link_audience_changed_details", val) @classmethod def media_hub_shared_link_created_details(cls, val): @@ -15594,7 +16543,7 @@ def media_hub_shared_link_created_details(cls, val): :param MediaHubSharedLinkCreatedDetails val: :rtype: EventDetails """ - return cls('media_hub_shared_link_created_details', val) + return cls("media_hub_shared_link_created_details", val) @classmethod def media_hub_shared_link_download_setting_changed_details(cls, val): @@ -15606,7 +16555,7 @@ def media_hub_shared_link_download_setting_changed_details(cls, val): :param MediaHubSharedLinkDownloadSettingChangedDetails val: :rtype: EventDetails """ - return cls('media_hub_shared_link_download_setting_changed_details', val) + return cls("media_hub_shared_link_download_setting_changed_details", val) @classmethod def media_hub_shared_link_revoked_details(cls, val): @@ -15617,7 +16566,7 @@ def media_hub_shared_link_revoked_details(cls, val): :param MediaHubSharedLinkRevokedDetails val: :rtype: EventDetails """ - return cls('media_hub_shared_link_revoked_details', val) + return cls("media_hub_shared_link_revoked_details", val) @classmethod def note_acl_invite_only_details(cls, val): @@ -15628,7 +16577,7 @@ def note_acl_invite_only_details(cls, val): :param NoteAclInviteOnlyDetails val: :rtype: EventDetails """ - return cls('note_acl_invite_only_details', val) + return cls("note_acl_invite_only_details", val) @classmethod def note_acl_link_details(cls, val): @@ -15639,7 +16588,7 @@ def note_acl_link_details(cls, val): :param NoteAclLinkDetails val: :rtype: EventDetails """ - return cls('note_acl_link_details', val) + return cls("note_acl_link_details", val) @classmethod def note_acl_team_link_details(cls, val): @@ -15650,7 +16599,7 @@ def note_acl_team_link_details(cls, val): :param NoteAclTeamLinkDetails val: :rtype: EventDetails """ - return cls('note_acl_team_link_details', val) + return cls("note_acl_team_link_details", val) @classmethod def note_shared_details(cls, val): @@ -15661,7 +16610,7 @@ def note_shared_details(cls, val): :param NoteSharedDetails val: :rtype: EventDetails """ - return cls('note_shared_details', val) + return cls("note_shared_details", val) @classmethod def note_share_receive_details(cls, val): @@ -15672,7 +16621,7 @@ def note_share_receive_details(cls, val): :param NoteShareReceiveDetails val: :rtype: EventDetails """ - return cls('note_share_receive_details', val) + return cls("note_share_receive_details", val) @classmethod def open_note_shared_details(cls, val): @@ -15683,7 +16632,7 @@ def open_note_shared_details(cls, val): :param OpenNoteSharedDetails val: :rtype: EventDetails """ - return cls('open_note_shared_details', val) + return cls("open_note_shared_details", val) @classmethod def replay_file_shared_link_created_details(cls, val): @@ -15694,7 +16643,7 @@ def replay_file_shared_link_created_details(cls, val): :param ReplayFileSharedLinkCreatedDetails val: :rtype: EventDetails """ - return cls('replay_file_shared_link_created_details', val) + return cls("replay_file_shared_link_created_details", val) @classmethod def replay_file_shared_link_modified_details(cls, val): @@ -15705,7 +16654,7 @@ def replay_file_shared_link_modified_details(cls, val): :param ReplayFileSharedLinkModifiedDetails val: :rtype: EventDetails """ - return cls('replay_file_shared_link_modified_details', val) + return cls("replay_file_shared_link_modified_details", val) @classmethod def replay_project_team_add_details(cls, val): @@ -15716,7 +16665,7 @@ def replay_project_team_add_details(cls, val): :param ReplayProjectTeamAddDetails val: :rtype: EventDetails """ - return cls('replay_project_team_add_details', val) + return cls("replay_project_team_add_details", val) @classmethod def replay_project_team_delete_details(cls, val): @@ -15727,7 +16676,7 @@ def replay_project_team_delete_details(cls, val): :param ReplayProjectTeamDeleteDetails val: :rtype: EventDetails """ - return cls('replay_project_team_delete_details', val) + return cls("replay_project_team_delete_details", val) @classmethod def send_and_track_file_added_details(cls, val): @@ -15738,7 +16687,7 @@ def send_and_track_file_added_details(cls, val): :param SendAndTrackFileAddedDetails val: :rtype: EventDetails """ - return cls('send_and_track_file_added_details', val) + return cls("send_and_track_file_added_details", val) @classmethod def send_and_track_file_renamed_details(cls, val): @@ -15749,7 +16698,7 @@ def send_and_track_file_renamed_details(cls, val): :param SendAndTrackFileRenamedDetails val: :rtype: EventDetails """ - return cls('send_and_track_file_renamed_details', val) + return cls("send_and_track_file_renamed_details", val) @classmethod def send_and_track_file_updated_details(cls, val): @@ -15760,7 +16709,7 @@ def send_and_track_file_updated_details(cls, val): :param SendAndTrackFileUpdatedDetails val: :rtype: EventDetails """ - return cls('send_and_track_file_updated_details', val) + return cls("send_and_track_file_updated_details", val) @classmethod def send_and_track_link_created_details(cls, val): @@ -15771,7 +16720,7 @@ def send_and_track_link_created_details(cls, val): :param SendAndTrackLinkCreatedDetails val: :rtype: EventDetails """ - return cls('send_and_track_link_created_details', val) + return cls("send_and_track_link_created_details", val) @classmethod def send_and_track_link_deleted_details(cls, val): @@ -15782,7 +16731,7 @@ def send_and_track_link_deleted_details(cls, val): :param SendAndTrackLinkDeletedDetails val: :rtype: EventDetails """ - return cls('send_and_track_link_deleted_details', val) + return cls("send_and_track_link_deleted_details", val) @classmethod def send_and_track_link_updated_details(cls, val): @@ -15793,7 +16742,7 @@ def send_and_track_link_updated_details(cls, val): :param SendAndTrackLinkUpdatedDetails val: :rtype: EventDetails """ - return cls('send_and_track_link_updated_details', val) + return cls("send_and_track_link_updated_details", val) @classmethod def send_and_track_link_viewed_details(cls, val): @@ -15804,7 +16753,7 @@ def send_and_track_link_viewed_details(cls, val): :param SendAndTrackLinkViewedDetails val: :rtype: EventDetails """ - return cls('send_and_track_link_viewed_details', val) + return cls("send_and_track_link_viewed_details", val) @classmethod def send_and_track_removed_file_and_associated_links_details(cls, val): @@ -15816,7 +16765,7 @@ def send_and_track_removed_file_and_associated_links_details(cls, val): :param SendAndTrackRemovedFileAndAssociatedLinksDetails val: :rtype: EventDetails """ - return cls('send_and_track_removed_file_and_associated_links_details', val) + return cls("send_and_track_removed_file_and_associated_links_details", val) @classmethod def sf_add_group_details(cls, val): @@ -15827,7 +16776,7 @@ def sf_add_group_details(cls, val): :param SfAddGroupDetails val: :rtype: EventDetails """ - return cls('sf_add_group_details', val) + return cls("sf_add_group_details", val) @classmethod def sf_allow_non_members_to_view_shared_links_details(cls, val): @@ -15839,7 +16788,7 @@ def sf_allow_non_members_to_view_shared_links_details(cls, val): :param SfAllowNonMembersToViewSharedLinksDetails val: :rtype: EventDetails """ - return cls('sf_allow_non_members_to_view_shared_links_details', val) + return cls("sf_allow_non_members_to_view_shared_links_details", val) @classmethod def sf_external_invite_warn_details(cls, val): @@ -15850,7 +16799,7 @@ def sf_external_invite_warn_details(cls, val): :param SfExternalInviteWarnDetails val: :rtype: EventDetails """ - return cls('sf_external_invite_warn_details', val) + return cls("sf_external_invite_warn_details", val) @classmethod def sf_fb_invite_details(cls, val): @@ -15861,7 +16810,7 @@ def sf_fb_invite_details(cls, val): :param SfFbInviteDetails val: :rtype: EventDetails """ - return cls('sf_fb_invite_details', val) + return cls("sf_fb_invite_details", val) @classmethod def sf_fb_invite_change_role_details(cls, val): @@ -15872,7 +16821,7 @@ def sf_fb_invite_change_role_details(cls, val): :param SfFbInviteChangeRoleDetails val: :rtype: EventDetails """ - return cls('sf_fb_invite_change_role_details', val) + return cls("sf_fb_invite_change_role_details", val) @classmethod def sf_fb_uninvite_details(cls, val): @@ -15883,7 +16832,7 @@ def sf_fb_uninvite_details(cls, val): :param SfFbUninviteDetails val: :rtype: EventDetails """ - return cls('sf_fb_uninvite_details', val) + return cls("sf_fb_uninvite_details", val) @classmethod def sf_invite_group_details(cls, val): @@ -15894,7 +16843,7 @@ def sf_invite_group_details(cls, val): :param SfInviteGroupDetails val: :rtype: EventDetails """ - return cls('sf_invite_group_details', val) + return cls("sf_invite_group_details", val) @classmethod def sf_team_grant_access_details(cls, val): @@ -15905,7 +16854,7 @@ def sf_team_grant_access_details(cls, val): :param SfTeamGrantAccessDetails val: :rtype: EventDetails """ - return cls('sf_team_grant_access_details', val) + return cls("sf_team_grant_access_details", val) @classmethod def sf_team_invite_details(cls, val): @@ -15916,7 +16865,7 @@ def sf_team_invite_details(cls, val): :param SfTeamInviteDetails val: :rtype: EventDetails """ - return cls('sf_team_invite_details', val) + return cls("sf_team_invite_details", val) @classmethod def sf_team_invite_change_role_details(cls, val): @@ -15927,7 +16876,7 @@ def sf_team_invite_change_role_details(cls, val): :param SfTeamInviteChangeRoleDetails val: :rtype: EventDetails """ - return cls('sf_team_invite_change_role_details', val) + return cls("sf_team_invite_change_role_details", val) @classmethod def sf_team_join_details(cls, val): @@ -15938,7 +16887,7 @@ def sf_team_join_details(cls, val): :param SfTeamJoinDetails val: :rtype: EventDetails """ - return cls('sf_team_join_details', val) + return cls("sf_team_join_details", val) @classmethod def sf_team_join_from_oob_link_details(cls, val): @@ -15949,7 +16898,7 @@ def sf_team_join_from_oob_link_details(cls, val): :param SfTeamJoinFromOobLinkDetails val: :rtype: EventDetails """ - return cls('sf_team_join_from_oob_link_details', val) + return cls("sf_team_join_from_oob_link_details", val) @classmethod def sf_team_uninvite_details(cls, val): @@ -15960,7 +16909,7 @@ def sf_team_uninvite_details(cls, val): :param SfTeamUninviteDetails val: :rtype: EventDetails """ - return cls('sf_team_uninvite_details', val) + return cls("sf_team_uninvite_details", val) @classmethod def shared_content_add_invitees_details(cls, val): @@ -15971,7 +16920,7 @@ def shared_content_add_invitees_details(cls, val): :param SharedContentAddInviteesDetails val: :rtype: EventDetails """ - return cls('shared_content_add_invitees_details', val) + return cls("shared_content_add_invitees_details", val) @classmethod def shared_content_add_link_expiry_details(cls, val): @@ -15982,7 +16931,7 @@ def shared_content_add_link_expiry_details(cls, val): :param SharedContentAddLinkExpiryDetails val: :rtype: EventDetails """ - return cls('shared_content_add_link_expiry_details', val) + return cls("shared_content_add_link_expiry_details", val) @classmethod def shared_content_add_link_password_details(cls, val): @@ -15993,7 +16942,7 @@ def shared_content_add_link_password_details(cls, val): :param SharedContentAddLinkPasswordDetails val: :rtype: EventDetails """ - return cls('shared_content_add_link_password_details', val) + return cls("shared_content_add_link_password_details", val) @classmethod def shared_content_add_member_details(cls, val): @@ -16004,7 +16953,7 @@ def shared_content_add_member_details(cls, val): :param SharedContentAddMemberDetails val: :rtype: EventDetails """ - return cls('shared_content_add_member_details', val) + return cls("shared_content_add_member_details", val) @classmethod def shared_content_change_downloads_policy_details(cls, val): @@ -16016,7 +16965,7 @@ def shared_content_change_downloads_policy_details(cls, val): :param SharedContentChangeDownloadsPolicyDetails val: :rtype: EventDetails """ - return cls('shared_content_change_downloads_policy_details', val) + return cls("shared_content_change_downloads_policy_details", val) @classmethod def shared_content_change_invitee_role_details(cls, val): @@ -16027,7 +16976,7 @@ def shared_content_change_invitee_role_details(cls, val): :param SharedContentChangeInviteeRoleDetails val: :rtype: EventDetails """ - return cls('shared_content_change_invitee_role_details', val) + return cls("shared_content_change_invitee_role_details", val) @classmethod def shared_content_change_link_audience_details(cls, val): @@ -16038,7 +16987,7 @@ def shared_content_change_link_audience_details(cls, val): :param SharedContentChangeLinkAudienceDetails val: :rtype: EventDetails """ - return cls('shared_content_change_link_audience_details', val) + return cls("shared_content_change_link_audience_details", val) @classmethod def shared_content_change_link_expiry_details(cls, val): @@ -16049,7 +16998,7 @@ def shared_content_change_link_expiry_details(cls, val): :param SharedContentChangeLinkExpiryDetails val: :rtype: EventDetails """ - return cls('shared_content_change_link_expiry_details', val) + return cls("shared_content_change_link_expiry_details", val) @classmethod def shared_content_change_link_password_details(cls, val): @@ -16060,7 +17009,7 @@ def shared_content_change_link_password_details(cls, val): :param SharedContentChangeLinkPasswordDetails val: :rtype: EventDetails """ - return cls('shared_content_change_link_password_details', val) + return cls("shared_content_change_link_password_details", val) @classmethod def shared_content_change_member_role_details(cls, val): @@ -16071,7 +17020,7 @@ def shared_content_change_member_role_details(cls, val): :param SharedContentChangeMemberRoleDetails val: :rtype: EventDetails """ - return cls('shared_content_change_member_role_details', val) + return cls("shared_content_change_member_role_details", val) @classmethod def shared_content_change_viewer_info_policy_details(cls, val): @@ -16083,7 +17032,7 @@ def shared_content_change_viewer_info_policy_details(cls, val): :param SharedContentChangeViewerInfoPolicyDetails val: :rtype: EventDetails """ - return cls('shared_content_change_viewer_info_policy_details', val) + return cls("shared_content_change_viewer_info_policy_details", val) @classmethod def shared_content_claim_invitation_details(cls, val): @@ -16094,7 +17043,7 @@ def shared_content_claim_invitation_details(cls, val): :param SharedContentClaimInvitationDetails val: :rtype: EventDetails """ - return cls('shared_content_claim_invitation_details', val) + return cls("shared_content_claim_invitation_details", val) @classmethod def shared_content_copy_details(cls, val): @@ -16105,7 +17054,7 @@ def shared_content_copy_details(cls, val): :param SharedContentCopyDetails val: :rtype: EventDetails """ - return cls('shared_content_copy_details', val) + return cls("shared_content_copy_details", val) @classmethod def shared_content_download_details(cls, val): @@ -16116,7 +17065,7 @@ def shared_content_download_details(cls, val): :param SharedContentDownloadDetails val: :rtype: EventDetails """ - return cls('shared_content_download_details', val) + return cls("shared_content_download_details", val) @classmethod def shared_content_relinquish_membership_details(cls, val): @@ -16127,7 +17076,7 @@ def shared_content_relinquish_membership_details(cls, val): :param SharedContentRelinquishMembershipDetails val: :rtype: EventDetails """ - return cls('shared_content_relinquish_membership_details', val) + return cls("shared_content_relinquish_membership_details", val) @classmethod def shared_content_remove_invitees_details(cls, val): @@ -16138,7 +17087,7 @@ def shared_content_remove_invitees_details(cls, val): :param SharedContentRemoveInviteesDetails val: :rtype: EventDetails """ - return cls('shared_content_remove_invitees_details', val) + return cls("shared_content_remove_invitees_details", val) @classmethod def shared_content_remove_link_expiry_details(cls, val): @@ -16149,7 +17098,7 @@ def shared_content_remove_link_expiry_details(cls, val): :param SharedContentRemoveLinkExpiryDetails val: :rtype: EventDetails """ - return cls('shared_content_remove_link_expiry_details', val) + return cls("shared_content_remove_link_expiry_details", val) @classmethod def shared_content_remove_link_password_details(cls, val): @@ -16160,7 +17109,7 @@ def shared_content_remove_link_password_details(cls, val): :param SharedContentRemoveLinkPasswordDetails val: :rtype: EventDetails """ - return cls('shared_content_remove_link_password_details', val) + return cls("shared_content_remove_link_password_details", val) @classmethod def shared_content_remove_member_details(cls, val): @@ -16171,7 +17120,7 @@ def shared_content_remove_member_details(cls, val): :param SharedContentRemoveMemberDetails val: :rtype: EventDetails """ - return cls('shared_content_remove_member_details', val) + return cls("shared_content_remove_member_details", val) @classmethod def shared_content_request_access_details(cls, val): @@ -16182,7 +17131,7 @@ def shared_content_request_access_details(cls, val): :param SharedContentRequestAccessDetails val: :rtype: EventDetails """ - return cls('shared_content_request_access_details', val) + return cls("shared_content_request_access_details", val) @classmethod def shared_content_restore_invitees_details(cls, val): @@ -16193,7 +17142,7 @@ def shared_content_restore_invitees_details(cls, val): :param SharedContentRestoreInviteesDetails val: :rtype: EventDetails """ - return cls('shared_content_restore_invitees_details', val) + return cls("shared_content_restore_invitees_details", val) @classmethod def shared_content_restore_member_details(cls, val): @@ -16204,7 +17153,7 @@ def shared_content_restore_member_details(cls, val): :param SharedContentRestoreMemberDetails val: :rtype: EventDetails """ - return cls('shared_content_restore_member_details', val) + return cls("shared_content_restore_member_details", val) @classmethod def shared_content_unshare_details(cls, val): @@ -16215,7 +17164,7 @@ def shared_content_unshare_details(cls, val): :param SharedContentUnshareDetails val: :rtype: EventDetails """ - return cls('shared_content_unshare_details', val) + return cls("shared_content_unshare_details", val) @classmethod def shared_content_view_details(cls, val): @@ -16226,7 +17175,7 @@ def shared_content_view_details(cls, val): :param SharedContentViewDetails val: :rtype: EventDetails """ - return cls('shared_content_view_details', val) + return cls("shared_content_view_details", val) @classmethod def shared_folder_change_link_policy_details(cls, val): @@ -16237,7 +17186,7 @@ def shared_folder_change_link_policy_details(cls, val): :param SharedFolderChangeLinkPolicyDetails val: :rtype: EventDetails """ - return cls('shared_folder_change_link_policy_details', val) + return cls("shared_folder_change_link_policy_details", val) @classmethod def shared_folder_change_members_inheritance_policy_details(cls, val): @@ -16249,7 +17198,7 @@ def shared_folder_change_members_inheritance_policy_details(cls, val): :param SharedFolderChangeMembersInheritancePolicyDetails val: :rtype: EventDetails """ - return cls('shared_folder_change_members_inheritance_policy_details', val) + return cls("shared_folder_change_members_inheritance_policy_details", val) @classmethod def shared_folder_change_members_management_policy_details(cls, val): @@ -16261,7 +17210,7 @@ def shared_folder_change_members_management_policy_details(cls, val): :param SharedFolderChangeMembersManagementPolicyDetails val: :rtype: EventDetails """ - return cls('shared_folder_change_members_management_policy_details', val) + return cls("shared_folder_change_members_management_policy_details", val) @classmethod def shared_folder_change_members_policy_details(cls, val): @@ -16272,7 +17221,7 @@ def shared_folder_change_members_policy_details(cls, val): :param SharedFolderChangeMembersPolicyDetails val: :rtype: EventDetails """ - return cls('shared_folder_change_members_policy_details', val) + return cls("shared_folder_change_members_policy_details", val) @classmethod def shared_folder_create_details(cls, val): @@ -16283,7 +17232,7 @@ def shared_folder_create_details(cls, val): :param SharedFolderCreateDetails val: :rtype: EventDetails """ - return cls('shared_folder_create_details', val) + return cls("shared_folder_create_details", val) @classmethod def shared_folder_decline_invitation_details(cls, val): @@ -16294,7 +17243,7 @@ def shared_folder_decline_invitation_details(cls, val): :param SharedFolderDeclineInvitationDetails val: :rtype: EventDetails """ - return cls('shared_folder_decline_invitation_details', val) + return cls("shared_folder_decline_invitation_details", val) @classmethod def shared_folder_mount_details(cls, val): @@ -16305,7 +17254,7 @@ def shared_folder_mount_details(cls, val): :param SharedFolderMountDetails val: :rtype: EventDetails """ - return cls('shared_folder_mount_details', val) + return cls("shared_folder_mount_details", val) @classmethod def shared_folder_nest_details(cls, val): @@ -16316,7 +17265,7 @@ def shared_folder_nest_details(cls, val): :param SharedFolderNestDetails val: :rtype: EventDetails """ - return cls('shared_folder_nest_details', val) + return cls("shared_folder_nest_details", val) @classmethod def shared_folder_transfer_ownership_details(cls, val): @@ -16327,7 +17276,7 @@ def shared_folder_transfer_ownership_details(cls, val): :param SharedFolderTransferOwnershipDetails val: :rtype: EventDetails """ - return cls('shared_folder_transfer_ownership_details', val) + return cls("shared_folder_transfer_ownership_details", val) @classmethod def shared_folder_unmount_details(cls, val): @@ -16338,7 +17287,7 @@ def shared_folder_unmount_details(cls, val): :param SharedFolderUnmountDetails val: :rtype: EventDetails """ - return cls('shared_folder_unmount_details', val) + return cls("shared_folder_unmount_details", val) @classmethod def shared_link_add_expiry_details(cls, val): @@ -16349,7 +17298,7 @@ def shared_link_add_expiry_details(cls, val): :param SharedLinkAddExpiryDetails val: :rtype: EventDetails """ - return cls('shared_link_add_expiry_details', val) + return cls("shared_link_add_expiry_details", val) @classmethod def shared_link_change_expiry_details(cls, val): @@ -16360,7 +17309,7 @@ def shared_link_change_expiry_details(cls, val): :param SharedLinkChangeExpiryDetails val: :rtype: EventDetails """ - return cls('shared_link_change_expiry_details', val) + return cls("shared_link_change_expiry_details", val) @classmethod def shared_link_change_visibility_details(cls, val): @@ -16371,7 +17320,7 @@ def shared_link_change_visibility_details(cls, val): :param SharedLinkChangeVisibilityDetails val: :rtype: EventDetails """ - return cls('shared_link_change_visibility_details', val) + return cls("shared_link_change_visibility_details", val) @classmethod def shared_link_copy_details(cls, val): @@ -16382,7 +17331,7 @@ def shared_link_copy_details(cls, val): :param SharedLinkCopyDetails val: :rtype: EventDetails """ - return cls('shared_link_copy_details', val) + return cls("shared_link_copy_details", val) @classmethod def shared_link_create_details(cls, val): @@ -16393,7 +17342,7 @@ def shared_link_create_details(cls, val): :param SharedLinkCreateDetails val: :rtype: EventDetails """ - return cls('shared_link_create_details', val) + return cls("shared_link_create_details", val) @classmethod def shared_link_disable_details(cls, val): @@ -16404,7 +17353,7 @@ def shared_link_disable_details(cls, val): :param SharedLinkDisableDetails val: :rtype: EventDetails """ - return cls('shared_link_disable_details', val) + return cls("shared_link_disable_details", val) @classmethod def shared_link_download_details(cls, val): @@ -16415,7 +17364,7 @@ def shared_link_download_details(cls, val): :param SharedLinkDownloadDetails val: :rtype: EventDetails """ - return cls('shared_link_download_details', val) + return cls("shared_link_download_details", val) @classmethod def shared_link_remove_expiry_details(cls, val): @@ -16426,7 +17375,7 @@ def shared_link_remove_expiry_details(cls, val): :param SharedLinkRemoveExpiryDetails val: :rtype: EventDetails """ - return cls('shared_link_remove_expiry_details', val) + return cls("shared_link_remove_expiry_details", val) @classmethod def shared_link_remove_visitor_details(cls, val): @@ -16437,7 +17386,7 @@ def shared_link_remove_visitor_details(cls, val): :param SharedLinkRemoveVisitorDetails val: :rtype: EventDetails """ - return cls('shared_link_remove_visitor_details', val) + return cls("shared_link_remove_visitor_details", val) @classmethod def shared_link_settings_add_expiration_details(cls, val): @@ -16448,7 +17397,7 @@ def shared_link_settings_add_expiration_details(cls, val): :param SharedLinkSettingsAddExpirationDetails val: :rtype: EventDetails """ - return cls('shared_link_settings_add_expiration_details', val) + return cls("shared_link_settings_add_expiration_details", val) @classmethod def shared_link_settings_add_password_details(cls, val): @@ -16459,7 +17408,7 @@ def shared_link_settings_add_password_details(cls, val): :param SharedLinkSettingsAddPasswordDetails val: :rtype: EventDetails """ - return cls('shared_link_settings_add_password_details', val) + return cls("shared_link_settings_add_password_details", val) @classmethod def shared_link_settings_allow_download_disabled_details(cls, val): @@ -16471,7 +17420,7 @@ def shared_link_settings_allow_download_disabled_details(cls, val): :param SharedLinkSettingsAllowDownloadDisabledDetails val: :rtype: EventDetails """ - return cls('shared_link_settings_allow_download_disabled_details', val) + return cls("shared_link_settings_allow_download_disabled_details", val) @classmethod def shared_link_settings_allow_download_enabled_details(cls, val): @@ -16483,7 +17432,7 @@ def shared_link_settings_allow_download_enabled_details(cls, val): :param SharedLinkSettingsAllowDownloadEnabledDetails val: :rtype: EventDetails """ - return cls('shared_link_settings_allow_download_enabled_details', val) + return cls("shared_link_settings_allow_download_enabled_details", val) @classmethod def shared_link_settings_change_audience_details(cls, val): @@ -16494,7 +17443,7 @@ def shared_link_settings_change_audience_details(cls, val): :param SharedLinkSettingsChangeAudienceDetails val: :rtype: EventDetails """ - return cls('shared_link_settings_change_audience_details', val) + return cls("shared_link_settings_change_audience_details", val) @classmethod def shared_link_settings_change_expiration_details(cls, val): @@ -16506,7 +17455,7 @@ def shared_link_settings_change_expiration_details(cls, val): :param SharedLinkSettingsChangeExpirationDetails val: :rtype: EventDetails """ - return cls('shared_link_settings_change_expiration_details', val) + return cls("shared_link_settings_change_expiration_details", val) @classmethod def shared_link_settings_change_password_details(cls, val): @@ -16517,7 +17466,7 @@ def shared_link_settings_change_password_details(cls, val): :param SharedLinkSettingsChangePasswordDetails val: :rtype: EventDetails """ - return cls('shared_link_settings_change_password_details', val) + return cls("shared_link_settings_change_password_details", val) @classmethod def shared_link_settings_remove_expiration_details(cls, val): @@ -16529,7 +17478,7 @@ def shared_link_settings_remove_expiration_details(cls, val): :param SharedLinkSettingsRemoveExpirationDetails val: :rtype: EventDetails """ - return cls('shared_link_settings_remove_expiration_details', val) + return cls("shared_link_settings_remove_expiration_details", val) @classmethod def shared_link_settings_remove_password_details(cls, val): @@ -16540,7 +17489,7 @@ def shared_link_settings_remove_password_details(cls, val): :param SharedLinkSettingsRemovePasswordDetails val: :rtype: EventDetails """ - return cls('shared_link_settings_remove_password_details', val) + return cls("shared_link_settings_remove_password_details", val) @classmethod def shared_link_share_details(cls, val): @@ -16551,7 +17500,7 @@ def shared_link_share_details(cls, val): :param SharedLinkShareDetails val: :rtype: EventDetails """ - return cls('shared_link_share_details', val) + return cls("shared_link_share_details", val) @classmethod def shared_link_view_details(cls, val): @@ -16562,7 +17511,7 @@ def shared_link_view_details(cls, val): :param SharedLinkViewDetails val: :rtype: EventDetails """ - return cls('shared_link_view_details', val) + return cls("shared_link_view_details", val) @classmethod def shared_note_opened_details(cls, val): @@ -16573,7 +17522,7 @@ def shared_note_opened_details(cls, val): :param SharedNoteOpenedDetails val: :rtype: EventDetails """ - return cls('shared_note_opened_details', val) + return cls("shared_note_opened_details", val) @classmethod def shmodel_disable_downloads_details(cls, val): @@ -16584,7 +17533,7 @@ def shmodel_disable_downloads_details(cls, val): :param ShmodelDisableDownloadsDetails val: :rtype: EventDetails """ - return cls('shmodel_disable_downloads_details', val) + return cls("shmodel_disable_downloads_details", val) @classmethod def shmodel_enable_downloads_details(cls, val): @@ -16595,7 +17544,7 @@ def shmodel_enable_downloads_details(cls, val): :param ShmodelEnableDownloadsDetails val: :rtype: EventDetails """ - return cls('shmodel_enable_downloads_details', val) + return cls("shmodel_enable_downloads_details", val) @classmethod def shmodel_group_share_details(cls, val): @@ -16606,7 +17555,7 @@ def shmodel_group_share_details(cls, val): :param ShmodelGroupShareDetails val: :rtype: EventDetails """ - return cls('shmodel_group_share_details', val) + return cls("shmodel_group_share_details", val) @classmethod def showcase_access_granted_details(cls, val): @@ -16617,7 +17566,7 @@ def showcase_access_granted_details(cls, val): :param ShowcaseAccessGrantedDetails val: :rtype: EventDetails """ - return cls('showcase_access_granted_details', val) + return cls("showcase_access_granted_details", val) @classmethod def showcase_add_member_details(cls, val): @@ -16628,7 +17577,7 @@ def showcase_add_member_details(cls, val): :param ShowcaseAddMemberDetails val: :rtype: EventDetails """ - return cls('showcase_add_member_details', val) + return cls("showcase_add_member_details", val) @classmethod def showcase_archived_details(cls, val): @@ -16639,7 +17588,7 @@ def showcase_archived_details(cls, val): :param ShowcaseArchivedDetails val: :rtype: EventDetails """ - return cls('showcase_archived_details', val) + return cls("showcase_archived_details", val) @classmethod def showcase_created_details(cls, val): @@ -16650,7 +17599,7 @@ def showcase_created_details(cls, val): :param ShowcaseCreatedDetails val: :rtype: EventDetails """ - return cls('showcase_created_details', val) + return cls("showcase_created_details", val) @classmethod def showcase_delete_comment_details(cls, val): @@ -16661,7 +17610,7 @@ def showcase_delete_comment_details(cls, val): :param ShowcaseDeleteCommentDetails val: :rtype: EventDetails """ - return cls('showcase_delete_comment_details', val) + return cls("showcase_delete_comment_details", val) @classmethod def showcase_edited_details(cls, val): @@ -16672,7 +17621,7 @@ def showcase_edited_details(cls, val): :param ShowcaseEditedDetails val: :rtype: EventDetails """ - return cls('showcase_edited_details', val) + return cls("showcase_edited_details", val) @classmethod def showcase_edit_comment_details(cls, val): @@ -16683,7 +17632,7 @@ def showcase_edit_comment_details(cls, val): :param ShowcaseEditCommentDetails val: :rtype: EventDetails """ - return cls('showcase_edit_comment_details', val) + return cls("showcase_edit_comment_details", val) @classmethod def showcase_file_added_details(cls, val): @@ -16694,7 +17643,7 @@ def showcase_file_added_details(cls, val): :param ShowcaseFileAddedDetails val: :rtype: EventDetails """ - return cls('showcase_file_added_details', val) + return cls("showcase_file_added_details", val) @classmethod def showcase_file_download_details(cls, val): @@ -16705,7 +17654,7 @@ def showcase_file_download_details(cls, val): :param ShowcaseFileDownloadDetails val: :rtype: EventDetails """ - return cls('showcase_file_download_details', val) + return cls("showcase_file_download_details", val) @classmethod def showcase_file_removed_details(cls, val): @@ -16716,7 +17665,7 @@ def showcase_file_removed_details(cls, val): :param ShowcaseFileRemovedDetails val: :rtype: EventDetails """ - return cls('showcase_file_removed_details', val) + return cls("showcase_file_removed_details", val) @classmethod def showcase_file_view_details(cls, val): @@ -16727,7 +17676,7 @@ def showcase_file_view_details(cls, val): :param ShowcaseFileViewDetails val: :rtype: EventDetails """ - return cls('showcase_file_view_details', val) + return cls("showcase_file_view_details", val) @classmethod def showcase_permanently_deleted_details(cls, val): @@ -16738,7 +17687,7 @@ def showcase_permanently_deleted_details(cls, val): :param ShowcasePermanentlyDeletedDetails val: :rtype: EventDetails """ - return cls('showcase_permanently_deleted_details', val) + return cls("showcase_permanently_deleted_details", val) @classmethod def showcase_post_comment_details(cls, val): @@ -16749,7 +17698,7 @@ def showcase_post_comment_details(cls, val): :param ShowcasePostCommentDetails val: :rtype: EventDetails """ - return cls('showcase_post_comment_details', val) + return cls("showcase_post_comment_details", val) @classmethod def showcase_remove_member_details(cls, val): @@ -16760,7 +17709,7 @@ def showcase_remove_member_details(cls, val): :param ShowcaseRemoveMemberDetails val: :rtype: EventDetails """ - return cls('showcase_remove_member_details', val) + return cls("showcase_remove_member_details", val) @classmethod def showcase_renamed_details(cls, val): @@ -16771,7 +17720,7 @@ def showcase_renamed_details(cls, val): :param ShowcaseRenamedDetails val: :rtype: EventDetails """ - return cls('showcase_renamed_details', val) + return cls("showcase_renamed_details", val) @classmethod def showcase_request_access_details(cls, val): @@ -16782,7 +17731,7 @@ def showcase_request_access_details(cls, val): :param ShowcaseRequestAccessDetails val: :rtype: EventDetails """ - return cls('showcase_request_access_details', val) + return cls("showcase_request_access_details", val) @classmethod def showcase_resolve_comment_details(cls, val): @@ -16793,7 +17742,7 @@ def showcase_resolve_comment_details(cls, val): :param ShowcaseResolveCommentDetails val: :rtype: EventDetails """ - return cls('showcase_resolve_comment_details', val) + return cls("showcase_resolve_comment_details", val) @classmethod def showcase_restored_details(cls, val): @@ -16804,7 +17753,7 @@ def showcase_restored_details(cls, val): :param ShowcaseRestoredDetails val: :rtype: EventDetails """ - return cls('showcase_restored_details', val) + return cls("showcase_restored_details", val) @classmethod def showcase_trashed_details(cls, val): @@ -16815,7 +17764,7 @@ def showcase_trashed_details(cls, val): :param ShowcaseTrashedDetails val: :rtype: EventDetails """ - return cls('showcase_trashed_details', val) + return cls("showcase_trashed_details", val) @classmethod def showcase_trashed_deprecated_details(cls, val): @@ -16826,7 +17775,7 @@ def showcase_trashed_deprecated_details(cls, val): :param ShowcaseTrashedDeprecatedDetails val: :rtype: EventDetails """ - return cls('showcase_trashed_deprecated_details', val) + return cls("showcase_trashed_deprecated_details", val) @classmethod def showcase_unresolve_comment_details(cls, val): @@ -16837,7 +17786,7 @@ def showcase_unresolve_comment_details(cls, val): :param ShowcaseUnresolveCommentDetails val: :rtype: EventDetails """ - return cls('showcase_unresolve_comment_details', val) + return cls("showcase_unresolve_comment_details", val) @classmethod def showcase_untrashed_details(cls, val): @@ -16848,7 +17797,7 @@ def showcase_untrashed_details(cls, val): :param ShowcaseUntrashedDetails val: :rtype: EventDetails """ - return cls('showcase_untrashed_details', val) + return cls("showcase_untrashed_details", val) @classmethod def showcase_untrashed_deprecated_details(cls, val): @@ -16859,7 +17808,7 @@ def showcase_untrashed_deprecated_details(cls, val): :param ShowcaseUntrashedDeprecatedDetails val: :rtype: EventDetails """ - return cls('showcase_untrashed_deprecated_details', val) + return cls("showcase_untrashed_deprecated_details", val) @classmethod def showcase_view_details(cls, val): @@ -16870,7 +17819,7 @@ def showcase_view_details(cls, val): :param ShowcaseViewDetails val: :rtype: EventDetails """ - return cls('showcase_view_details', val) + return cls("showcase_view_details", val) @classmethod def sign_signature_request_canceled_details(cls, val): @@ -16881,7 +17830,7 @@ def sign_signature_request_canceled_details(cls, val): :param SignSignatureRequestCanceledDetails val: :rtype: EventDetails """ - return cls('sign_signature_request_canceled_details', val) + return cls("sign_signature_request_canceled_details", val) @classmethod def sign_signature_request_completed_details(cls, val): @@ -16892,7 +17841,7 @@ def sign_signature_request_completed_details(cls, val): :param SignSignatureRequestCompletedDetails val: :rtype: EventDetails """ - return cls('sign_signature_request_completed_details', val) + return cls("sign_signature_request_completed_details", val) @classmethod def sign_signature_request_declined_details(cls, val): @@ -16903,7 +17852,7 @@ def sign_signature_request_declined_details(cls, val): :param SignSignatureRequestDeclinedDetails val: :rtype: EventDetails """ - return cls('sign_signature_request_declined_details', val) + return cls("sign_signature_request_declined_details", val) @classmethod def sign_signature_request_opened_details(cls, val): @@ -16914,7 +17863,7 @@ def sign_signature_request_opened_details(cls, val): :param SignSignatureRequestOpenedDetails val: :rtype: EventDetails """ - return cls('sign_signature_request_opened_details', val) + return cls("sign_signature_request_opened_details", val) @classmethod def sign_signature_request_reminder_sent_details(cls, val): @@ -16925,7 +17874,7 @@ def sign_signature_request_reminder_sent_details(cls, val): :param SignSignatureRequestReminderSentDetails val: :rtype: EventDetails """ - return cls('sign_signature_request_reminder_sent_details', val) + return cls("sign_signature_request_reminder_sent_details", val) @classmethod def sign_signature_request_sent_details(cls, val): @@ -16936,7 +17885,7 @@ def sign_signature_request_sent_details(cls, val): :param SignSignatureRequestSentDetails val: :rtype: EventDetails """ - return cls('sign_signature_request_sent_details', val) + return cls("sign_signature_request_sent_details", val) @classmethod def sign_template_created_details(cls, val): @@ -16947,7 +17896,7 @@ def sign_template_created_details(cls, val): :param SignTemplateCreatedDetails val: :rtype: EventDetails """ - return cls('sign_template_created_details', val) + return cls("sign_template_created_details", val) @classmethod def sign_template_shared_details(cls, val): @@ -16958,7 +17907,7 @@ def sign_template_shared_details(cls, val): :param SignTemplateSharedDetails val: :rtype: EventDetails """ - return cls('sign_template_shared_details', val) + return cls("sign_template_shared_details", val) @classmethod def risc_security_event_details(cls, val): @@ -16969,7 +17918,7 @@ def risc_security_event_details(cls, val): :param RiscSecurityEventDetails val: :rtype: EventDetails """ - return cls('risc_security_event_details', val) + return cls("risc_security_event_details", val) @classmethod def sso_add_cert_details(cls, val): @@ -16980,7 +17929,7 @@ def sso_add_cert_details(cls, val): :param SsoAddCertDetails val: :rtype: EventDetails """ - return cls('sso_add_cert_details', val) + return cls("sso_add_cert_details", val) @classmethod def sso_add_login_url_details(cls, val): @@ -16991,7 +17940,7 @@ def sso_add_login_url_details(cls, val): :param SsoAddLoginUrlDetails val: :rtype: EventDetails """ - return cls('sso_add_login_url_details', val) + return cls("sso_add_login_url_details", val) @classmethod def sso_add_logout_url_details(cls, val): @@ -17002,7 +17951,7 @@ def sso_add_logout_url_details(cls, val): :param SsoAddLogoutUrlDetails val: :rtype: EventDetails """ - return cls('sso_add_logout_url_details', val) + return cls("sso_add_logout_url_details", val) @classmethod def sso_change_cert_details(cls, val): @@ -17013,7 +17962,7 @@ def sso_change_cert_details(cls, val): :param SsoChangeCertDetails val: :rtype: EventDetails """ - return cls('sso_change_cert_details', val) + return cls("sso_change_cert_details", val) @classmethod def sso_change_login_url_details(cls, val): @@ -17024,7 +17973,7 @@ def sso_change_login_url_details(cls, val): :param SsoChangeLoginUrlDetails val: :rtype: EventDetails """ - return cls('sso_change_login_url_details', val) + return cls("sso_change_login_url_details", val) @classmethod def sso_change_logout_url_details(cls, val): @@ -17035,7 +17984,7 @@ def sso_change_logout_url_details(cls, val): :param SsoChangeLogoutUrlDetails val: :rtype: EventDetails """ - return cls('sso_change_logout_url_details', val) + return cls("sso_change_logout_url_details", val) @classmethod def sso_change_saml_identity_mode_details(cls, val): @@ -17046,7 +17995,7 @@ def sso_change_saml_identity_mode_details(cls, val): :param SsoChangeSamlIdentityModeDetails val: :rtype: EventDetails """ - return cls('sso_change_saml_identity_mode_details', val) + return cls("sso_change_saml_identity_mode_details", val) @classmethod def sso_remove_cert_details(cls, val): @@ -17057,7 +18006,7 @@ def sso_remove_cert_details(cls, val): :param SsoRemoveCertDetails val: :rtype: EventDetails """ - return cls('sso_remove_cert_details', val) + return cls("sso_remove_cert_details", val) @classmethod def sso_remove_login_url_details(cls, val): @@ -17068,7 +18017,7 @@ def sso_remove_login_url_details(cls, val): :param SsoRemoveLoginUrlDetails val: :rtype: EventDetails """ - return cls('sso_remove_login_url_details', val) + return cls("sso_remove_login_url_details", val) @classmethod def sso_remove_logout_url_details(cls, val): @@ -17079,7 +18028,7 @@ def sso_remove_logout_url_details(cls, val): :param SsoRemoveLogoutUrlDetails val: :rtype: EventDetails """ - return cls('sso_remove_logout_url_details', val) + return cls("sso_remove_logout_url_details", val) @classmethod def team_folder_change_status_details(cls, val): @@ -17090,7 +18039,7 @@ def team_folder_change_status_details(cls, val): :param TeamFolderChangeStatusDetails val: :rtype: EventDetails """ - return cls('team_folder_change_status_details', val) + return cls("team_folder_change_status_details", val) @classmethod def team_folder_create_details(cls, val): @@ -17101,7 +18050,7 @@ def team_folder_create_details(cls, val): :param TeamFolderCreateDetails val: :rtype: EventDetails """ - return cls('team_folder_create_details', val) + return cls("team_folder_create_details", val) @classmethod def team_folder_downgrade_details(cls, val): @@ -17112,7 +18061,7 @@ def team_folder_downgrade_details(cls, val): :param TeamFolderDowngradeDetails val: :rtype: EventDetails """ - return cls('team_folder_downgrade_details', val) + return cls("team_folder_downgrade_details", val) @classmethod def team_folder_permanently_delete_details(cls, val): @@ -17123,7 +18072,7 @@ def team_folder_permanently_delete_details(cls, val): :param TeamFolderPermanentlyDeleteDetails val: :rtype: EventDetails """ - return cls('team_folder_permanently_delete_details', val) + return cls("team_folder_permanently_delete_details", val) @classmethod def team_folder_rename_details(cls, val): @@ -17134,7 +18083,7 @@ def team_folder_rename_details(cls, val): :param TeamFolderRenameDetails val: :rtype: EventDetails """ - return cls('team_folder_rename_details', val) + return cls("team_folder_rename_details", val) @classmethod def team_folder_space_limits_change_caps_type_details(cls, val): @@ -17146,7 +18095,7 @@ def team_folder_space_limits_change_caps_type_details(cls, val): :param TeamFolderSpaceLimitsChangeCapsTypeDetails val: :rtype: EventDetails """ - return cls('team_folder_space_limits_change_caps_type_details', val) + return cls("team_folder_space_limits_change_caps_type_details", val) @classmethod def team_folder_space_limits_change_limit_details(cls, val): @@ -17158,7 +18107,7 @@ def team_folder_space_limits_change_limit_details(cls, val): :param TeamFolderSpaceLimitsChangeLimitDetails val: :rtype: EventDetails """ - return cls('team_folder_space_limits_change_limit_details', val) + return cls("team_folder_space_limits_change_limit_details", val) @classmethod def team_folder_space_limits_change_notification_target_details(cls, val): @@ -17170,7 +18119,7 @@ def team_folder_space_limits_change_notification_target_details(cls, val): :param TeamFolderSpaceLimitsChangeNotificationTargetDetails val: :rtype: EventDetails """ - return cls('team_folder_space_limits_change_notification_target_details', val) + return cls("team_folder_space_limits_change_notification_target_details", val) @classmethod def team_selective_sync_settings_changed_details(cls, val): @@ -17181,7 +18130,7 @@ def team_selective_sync_settings_changed_details(cls, val): :param TeamSelectiveSyncSettingsChangedDetails val: :rtype: EventDetails """ - return cls('team_selective_sync_settings_changed_details', val) + return cls("team_selective_sync_settings_changed_details", val) @classmethod def account_capture_change_policy_details(cls, val): @@ -17192,7 +18141,7 @@ def account_capture_change_policy_details(cls, val): :param AccountCaptureChangePolicyDetails val: :rtype: EventDetails """ - return cls('account_capture_change_policy_details', val) + return cls("account_capture_change_policy_details", val) @classmethod def admin_email_reminders_changed_details(cls, val): @@ -17203,7 +18152,7 @@ def admin_email_reminders_changed_details(cls, val): :param AdminEmailRemindersChangedDetails val: :rtype: EventDetails """ - return cls('admin_email_reminders_changed_details', val) + return cls("admin_email_reminders_changed_details", val) @classmethod def ai_third_party_sharing_dropbox_base_policy_changed_details(cls, val): @@ -17215,7 +18164,7 @@ def ai_third_party_sharing_dropbox_base_policy_changed_details(cls, val): :param AiThirdPartySharingDropboxBasePolicyChangedDetails val: :rtype: EventDetails """ - return cls('ai_third_party_sharing_dropbox_base_policy_changed_details', val) + return cls("ai_third_party_sharing_dropbox_base_policy_changed_details", val) @classmethod def allow_download_disabled_details(cls, val): @@ -17226,7 +18175,7 @@ def allow_download_disabled_details(cls, val): :param AllowDownloadDisabledDetails val: :rtype: EventDetails """ - return cls('allow_download_disabled_details', val) + return cls("allow_download_disabled_details", val) @classmethod def allow_download_enabled_details(cls, val): @@ -17237,7 +18186,7 @@ def allow_download_enabled_details(cls, val): :param AllowDownloadEnabledDetails val: :rtype: EventDetails """ - return cls('allow_download_enabled_details', val) + return cls("allow_download_enabled_details", val) @classmethod def apple_login_change_policy_details(cls, val): @@ -17248,7 +18197,7 @@ def apple_login_change_policy_details(cls, val): :param AppleLoginChangePolicyDetails val: :rtype: EventDetails """ - return cls('apple_login_change_policy_details', val) + return cls("apple_login_change_policy_details", val) @classmethod def app_permissions_changed_details(cls, val): @@ -17259,7 +18208,7 @@ def app_permissions_changed_details(cls, val): :param AppPermissionsChangedDetails val: :rtype: EventDetails """ - return cls('app_permissions_changed_details', val) + return cls("app_permissions_changed_details", val) @classmethod def camera_uploads_policy_changed_details(cls, val): @@ -17270,7 +18219,7 @@ def camera_uploads_policy_changed_details(cls, val): :param CameraUploadsPolicyChangedDetails val: :rtype: EventDetails """ - return cls('camera_uploads_policy_changed_details', val) + return cls("camera_uploads_policy_changed_details", val) @classmethod def capture_team_space_policy_changed_details(cls, val): @@ -17281,7 +18230,7 @@ def capture_team_space_policy_changed_details(cls, val): :param CaptureTeamSpacePolicyChangedDetails val: :rtype: EventDetails """ - return cls('capture_team_space_policy_changed_details', val) + return cls("capture_team_space_policy_changed_details", val) @classmethod def capture_transcript_policy_changed_details(cls, val): @@ -17292,7 +18241,7 @@ def capture_transcript_policy_changed_details(cls, val): :param CaptureTranscriptPolicyChangedDetails val: :rtype: EventDetails """ - return cls('capture_transcript_policy_changed_details', val) + return cls("capture_transcript_policy_changed_details", val) @classmethod def classification_change_policy_details(cls, val): @@ -17303,7 +18252,7 @@ def classification_change_policy_details(cls, val): :param ClassificationChangePolicyDetails val: :rtype: EventDetails """ - return cls('classification_change_policy_details', val) + return cls("classification_change_policy_details", val) @classmethod def computer_backup_policy_changed_details(cls, val): @@ -17314,7 +18263,7 @@ def computer_backup_policy_changed_details(cls, val): :param ComputerBackupPolicyChangedDetails val: :rtype: EventDetails """ - return cls('computer_backup_policy_changed_details', val) + return cls("computer_backup_policy_changed_details", val) @classmethod def content_administration_policy_changed_details(cls, val): @@ -17326,7 +18275,7 @@ def content_administration_policy_changed_details(cls, val): :param ContentAdministrationPolicyChangedDetails val: :rtype: EventDetails """ - return cls('content_administration_policy_changed_details', val) + return cls("content_administration_policy_changed_details", val) @classmethod def content_deletion_protection_change_policy_details(cls, val): @@ -17338,7 +18287,7 @@ def content_deletion_protection_change_policy_details(cls, val): :param ContentDeletionProtectionChangePolicyDetails val: :rtype: EventDetails """ - return cls('content_deletion_protection_change_policy_details', val) + return cls("content_deletion_protection_change_policy_details", val) @classmethod def dash_external_sharing_policy_changed_details(cls, val): @@ -17349,7 +18298,7 @@ def dash_external_sharing_policy_changed_details(cls, val): :param DashExternalSharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls('dash_external_sharing_policy_changed_details', val) + return cls("dash_external_sharing_policy_changed_details", val) @classmethod def data_placement_restriction_change_policy_details(cls, val): @@ -17361,7 +18310,7 @@ def data_placement_restriction_change_policy_details(cls, val): :param DataPlacementRestrictionChangePolicyDetails val: :rtype: EventDetails """ - return cls('data_placement_restriction_change_policy_details', val) + return cls("data_placement_restriction_change_policy_details", val) @classmethod def data_placement_restriction_satisfy_policy_details(cls, val): @@ -17373,7 +18322,7 @@ def data_placement_restriction_satisfy_policy_details(cls, val): :param DataPlacementRestrictionSatisfyPolicyDetails val: :rtype: EventDetails """ - return cls('data_placement_restriction_satisfy_policy_details', val) + return cls("data_placement_restriction_satisfy_policy_details", val) @classmethod def device_approvals_add_exception_details(cls, val): @@ -17384,7 +18333,7 @@ def device_approvals_add_exception_details(cls, val): :param DeviceApprovalsAddExceptionDetails val: :rtype: EventDetails """ - return cls('device_approvals_add_exception_details', val) + return cls("device_approvals_add_exception_details", val) @classmethod def device_approvals_change_desktop_policy_details(cls, val): @@ -17396,7 +18345,7 @@ def device_approvals_change_desktop_policy_details(cls, val): :param DeviceApprovalsChangeDesktopPolicyDetails val: :rtype: EventDetails """ - return cls('device_approvals_change_desktop_policy_details', val) + return cls("device_approvals_change_desktop_policy_details", val) @classmethod def device_approvals_change_mobile_policy_details(cls, val): @@ -17408,7 +18357,7 @@ def device_approvals_change_mobile_policy_details(cls, val): :param DeviceApprovalsChangeMobilePolicyDetails val: :rtype: EventDetails """ - return cls('device_approvals_change_mobile_policy_details', val) + return cls("device_approvals_change_mobile_policy_details", val) @classmethod def device_approvals_change_overage_action_details(cls, val): @@ -17420,7 +18369,7 @@ def device_approvals_change_overage_action_details(cls, val): :param DeviceApprovalsChangeOverageActionDetails val: :rtype: EventDetails """ - return cls('device_approvals_change_overage_action_details', val) + return cls("device_approvals_change_overage_action_details", val) @classmethod def device_approvals_change_unlink_action_details(cls, val): @@ -17432,7 +18381,7 @@ def device_approvals_change_unlink_action_details(cls, val): :param DeviceApprovalsChangeUnlinkActionDetails val: :rtype: EventDetails """ - return cls('device_approvals_change_unlink_action_details', val) + return cls("device_approvals_change_unlink_action_details", val) @classmethod def device_approvals_remove_exception_details(cls, val): @@ -17443,7 +18392,7 @@ def device_approvals_remove_exception_details(cls, val): :param DeviceApprovalsRemoveExceptionDetails val: :rtype: EventDetails """ - return cls('device_approvals_remove_exception_details', val) + return cls("device_approvals_remove_exception_details", val) @classmethod def directory_restrictions_add_members_details(cls, val): @@ -17454,7 +18403,7 @@ def directory_restrictions_add_members_details(cls, val): :param DirectoryRestrictionsAddMembersDetails val: :rtype: EventDetails """ - return cls('directory_restrictions_add_members_details', val) + return cls("directory_restrictions_add_members_details", val) @classmethod def directory_restrictions_remove_members_details(cls, val): @@ -17466,7 +18415,7 @@ def directory_restrictions_remove_members_details(cls, val): :param DirectoryRestrictionsRemoveMembersDetails val: :rtype: EventDetails """ - return cls('directory_restrictions_remove_members_details', val) + return cls("directory_restrictions_remove_members_details", val) @classmethod def dropbox_passwords_policy_changed_details(cls, val): @@ -17477,7 +18426,7 @@ def dropbox_passwords_policy_changed_details(cls, val): :param DropboxPasswordsPolicyChangedDetails val: :rtype: EventDetails """ - return cls('dropbox_passwords_policy_changed_details', val) + return cls("dropbox_passwords_policy_changed_details", val) @classmethod def email_ingest_policy_changed_details(cls, val): @@ -17488,7 +18437,7 @@ def email_ingest_policy_changed_details(cls, val): :param EmailIngestPolicyChangedDetails val: :rtype: EventDetails """ - return cls('email_ingest_policy_changed_details', val) + return cls("email_ingest_policy_changed_details", val) @classmethod def emm_add_exception_details(cls, val): @@ -17499,7 +18448,7 @@ def emm_add_exception_details(cls, val): :param EmmAddExceptionDetails val: :rtype: EventDetails """ - return cls('emm_add_exception_details', val) + return cls("emm_add_exception_details", val) @classmethod def emm_change_policy_details(cls, val): @@ -17510,7 +18459,7 @@ def emm_change_policy_details(cls, val): :param EmmChangePolicyDetails val: :rtype: EventDetails """ - return cls('emm_change_policy_details', val) + return cls("emm_change_policy_details", val) @classmethod def emm_remove_exception_details(cls, val): @@ -17521,7 +18470,7 @@ def emm_remove_exception_details(cls, val): :param EmmRemoveExceptionDetails val: :rtype: EventDetails """ - return cls('emm_remove_exception_details', val) + return cls("emm_remove_exception_details", val) @classmethod def extended_version_history_change_policy_details(cls, val): @@ -17533,7 +18482,7 @@ def extended_version_history_change_policy_details(cls, val): :param ExtendedVersionHistoryChangePolicyDetails val: :rtype: EventDetails """ - return cls('extended_version_history_change_policy_details', val) + return cls("extended_version_history_change_policy_details", val) @classmethod def external_drive_backup_policy_changed_details(cls, val): @@ -17544,7 +18493,7 @@ def external_drive_backup_policy_changed_details(cls, val): :param ExternalDriveBackupPolicyChangedDetails val: :rtype: EventDetails """ - return cls('external_drive_backup_policy_changed_details', val) + return cls("external_drive_backup_policy_changed_details", val) @classmethod def file_comments_change_policy_details(cls, val): @@ -17555,7 +18504,7 @@ def file_comments_change_policy_details(cls, val): :param FileCommentsChangePolicyDetails val: :rtype: EventDetails """ - return cls('file_comments_change_policy_details', val) + return cls("file_comments_change_policy_details", val) @classmethod def file_locking_policy_changed_details(cls, val): @@ -17566,7 +18515,7 @@ def file_locking_policy_changed_details(cls, val): :param FileLockingPolicyChangedDetails val: :rtype: EventDetails """ - return cls('file_locking_policy_changed_details', val) + return cls("file_locking_policy_changed_details", val) @classmethod def file_provider_migration_policy_changed_details(cls, val): @@ -17578,7 +18527,7 @@ def file_provider_migration_policy_changed_details(cls, val): :param FileProviderMigrationPolicyChangedDetails val: :rtype: EventDetails """ - return cls('file_provider_migration_policy_changed_details', val) + return cls("file_provider_migration_policy_changed_details", val) @classmethod def file_requests_change_policy_details(cls, val): @@ -17589,7 +18538,7 @@ def file_requests_change_policy_details(cls, val): :param FileRequestsChangePolicyDetails val: :rtype: EventDetails """ - return cls('file_requests_change_policy_details', val) + return cls("file_requests_change_policy_details", val) @classmethod def file_requests_emails_enabled_details(cls, val): @@ -17600,7 +18549,7 @@ def file_requests_emails_enabled_details(cls, val): :param FileRequestsEmailsEnabledDetails val: :rtype: EventDetails """ - return cls('file_requests_emails_enabled_details', val) + return cls("file_requests_emails_enabled_details", val) @classmethod def file_requests_emails_restricted_to_team_only_details(cls, val): @@ -17612,7 +18561,7 @@ def file_requests_emails_restricted_to_team_only_details(cls, val): :param FileRequestsEmailsRestrictedToTeamOnlyDetails val: :rtype: EventDetails """ - return cls('file_requests_emails_restricted_to_team_only_details', val) + return cls("file_requests_emails_restricted_to_team_only_details", val) @classmethod def file_transfers_policy_changed_details(cls, val): @@ -17623,7 +18572,7 @@ def file_transfers_policy_changed_details(cls, val): :param FileTransfersPolicyChangedDetails val: :rtype: EventDetails """ - return cls('file_transfers_policy_changed_details', val) + return cls("file_transfers_policy_changed_details", val) @classmethod def flexible_file_names_policy_changed_details(cls, val): @@ -17634,7 +18583,7 @@ def flexible_file_names_policy_changed_details(cls, val): :param FlexibleFileNamesPolicyChangedDetails val: :rtype: EventDetails """ - return cls('flexible_file_names_policy_changed_details', val) + return cls("flexible_file_names_policy_changed_details", val) @classmethod def folder_link_restriction_policy_changed_details(cls, val): @@ -17646,7 +18595,7 @@ def folder_link_restriction_policy_changed_details(cls, val): :param FolderLinkRestrictionPolicyChangedDetails val: :rtype: EventDetails """ - return cls('folder_link_restriction_policy_changed_details', val) + return cls("folder_link_restriction_policy_changed_details", val) @classmethod def google_sso_change_policy_details(cls, val): @@ -17657,7 +18606,7 @@ def google_sso_change_policy_details(cls, val): :param GoogleSsoChangePolicyDetails val: :rtype: EventDetails """ - return cls('google_sso_change_policy_details', val) + return cls("google_sso_change_policy_details", val) @classmethod def group_user_management_change_policy_details(cls, val): @@ -17668,7 +18617,7 @@ def group_user_management_change_policy_details(cls, val): :param GroupUserManagementChangePolicyDetails val: :rtype: EventDetails """ - return cls('group_user_management_change_policy_details', val) + return cls("group_user_management_change_policy_details", val) @classmethod def integration_policy_changed_details(cls, val): @@ -17679,7 +18628,7 @@ def integration_policy_changed_details(cls, val): :param IntegrationPolicyChangedDetails val: :rtype: EventDetails """ - return cls('integration_policy_changed_details', val) + return cls("integration_policy_changed_details", val) @classmethod def invite_acceptance_email_policy_changed_details(cls, val): @@ -17691,7 +18640,7 @@ def invite_acceptance_email_policy_changed_details(cls, val): :param InviteAcceptanceEmailPolicyChangedDetails val: :rtype: EventDetails """ - return cls('invite_acceptance_email_policy_changed_details', val) + return cls("invite_acceptance_email_policy_changed_details", val) @classmethod def media_hub_adding_people_policy_changed_details(cls, val): @@ -17703,7 +18652,7 @@ def media_hub_adding_people_policy_changed_details(cls, val): :param MediaHubAddingPeoplePolicyChangedDetails val: :rtype: EventDetails """ - return cls('media_hub_adding_people_policy_changed_details', val) + return cls("media_hub_adding_people_policy_changed_details", val) @classmethod def media_hub_download_policy_changed_details(cls, val): @@ -17714,7 +18663,7 @@ def media_hub_download_policy_changed_details(cls, val): :param MediaHubDownloadPolicyChangedDetails val: :rtype: EventDetails """ - return cls('media_hub_download_policy_changed_details', val) + return cls("media_hub_download_policy_changed_details", val) @classmethod def media_hub_link_sharing_policy_changed_details(cls, val): @@ -17726,7 +18675,7 @@ def media_hub_link_sharing_policy_changed_details(cls, val): :param MediaHubLinkSharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls('media_hub_link_sharing_policy_changed_details', val) + return cls("media_hub_link_sharing_policy_changed_details", val) @classmethod def member_requests_change_policy_details(cls, val): @@ -17737,7 +18686,7 @@ def member_requests_change_policy_details(cls, val): :param MemberRequestsChangePolicyDetails val: :rtype: EventDetails """ - return cls('member_requests_change_policy_details', val) + return cls("member_requests_change_policy_details", val) @classmethod def member_send_invite_policy_changed_details(cls, val): @@ -17748,7 +18697,7 @@ def member_send_invite_policy_changed_details(cls, val): :param MemberSendInvitePolicyChangedDetails val: :rtype: EventDetails """ - return cls('member_send_invite_policy_changed_details', val) + return cls("member_send_invite_policy_changed_details", val) @classmethod def member_space_limits_add_exception_details(cls, val): @@ -17759,7 +18708,7 @@ def member_space_limits_add_exception_details(cls, val): :param MemberSpaceLimitsAddExceptionDetails val: :rtype: EventDetails """ - return cls('member_space_limits_add_exception_details', val) + return cls("member_space_limits_add_exception_details", val) @classmethod def member_space_limits_change_caps_type_policy_details(cls, val): @@ -17771,7 +18720,7 @@ def member_space_limits_change_caps_type_policy_details(cls, val): :param MemberSpaceLimitsChangeCapsTypePolicyDetails val: :rtype: EventDetails """ - return cls('member_space_limits_change_caps_type_policy_details', val) + return cls("member_space_limits_change_caps_type_policy_details", val) @classmethod def member_space_limits_change_policy_details(cls, val): @@ -17782,7 +18731,7 @@ def member_space_limits_change_policy_details(cls, val): :param MemberSpaceLimitsChangePolicyDetails val: :rtype: EventDetails """ - return cls('member_space_limits_change_policy_details', val) + return cls("member_space_limits_change_policy_details", val) @classmethod def member_space_limits_remove_exception_details(cls, val): @@ -17793,7 +18742,7 @@ def member_space_limits_remove_exception_details(cls, val): :param MemberSpaceLimitsRemoveExceptionDetails val: :rtype: EventDetails """ - return cls('member_space_limits_remove_exception_details', val) + return cls("member_space_limits_remove_exception_details", val) @classmethod def member_suggestions_change_policy_details(cls, val): @@ -17804,7 +18753,7 @@ def member_suggestions_change_policy_details(cls, val): :param MemberSuggestionsChangePolicyDetails val: :rtype: EventDetails """ - return cls('member_suggestions_change_policy_details', val) + return cls("member_suggestions_change_policy_details", val) @classmethod def microsoft_login_change_policy_details(cls, val): @@ -17815,7 +18764,7 @@ def microsoft_login_change_policy_details(cls, val): :param MicrosoftLoginChangePolicyDetails val: :rtype: EventDetails """ - return cls('microsoft_login_change_policy_details', val) + return cls("microsoft_login_change_policy_details", val) @classmethod def microsoft_office_addin_change_policy_details(cls, val): @@ -17826,7 +18775,7 @@ def microsoft_office_addin_change_policy_details(cls, val): :param MicrosoftOfficeAddinChangePolicyDetails val: :rtype: EventDetails """ - return cls('microsoft_office_addin_change_policy_details', val) + return cls("microsoft_office_addin_change_policy_details", val) @classmethod def multi_team_identity_policy_changed_details(cls, val): @@ -17837,7 +18786,7 @@ def multi_team_identity_policy_changed_details(cls, val): :param MultiTeamIdentityPolicyChangedDetails val: :rtype: EventDetails """ - return cls('multi_team_identity_policy_changed_details', val) + return cls("multi_team_identity_policy_changed_details", val) @classmethod def network_control_change_policy_details(cls, val): @@ -17848,7 +18797,7 @@ def network_control_change_policy_details(cls, val): :param NetworkControlChangePolicyDetails val: :rtype: EventDetails """ - return cls('network_control_change_policy_details', val) + return cls("network_control_change_policy_details", val) @classmethod def paper_change_deployment_policy_details(cls, val): @@ -17859,7 +18808,7 @@ def paper_change_deployment_policy_details(cls, val): :param PaperChangeDeploymentPolicyDetails val: :rtype: EventDetails """ - return cls('paper_change_deployment_policy_details', val) + return cls("paper_change_deployment_policy_details", val) @classmethod def paper_change_member_link_policy_details(cls, val): @@ -17870,7 +18819,7 @@ def paper_change_member_link_policy_details(cls, val): :param PaperChangeMemberLinkPolicyDetails val: :rtype: EventDetails """ - return cls('paper_change_member_link_policy_details', val) + return cls("paper_change_member_link_policy_details", val) @classmethod def paper_change_member_policy_details(cls, val): @@ -17881,7 +18830,7 @@ def paper_change_member_policy_details(cls, val): :param PaperChangeMemberPolicyDetails val: :rtype: EventDetails """ - return cls('paper_change_member_policy_details', val) + return cls("paper_change_member_policy_details", val) @classmethod def paper_change_policy_details(cls, val): @@ -17892,7 +18841,7 @@ def paper_change_policy_details(cls, val): :param PaperChangePolicyDetails val: :rtype: EventDetails """ - return cls('paper_change_policy_details', val) + return cls("paper_change_policy_details", val) @classmethod def paper_default_folder_policy_changed_details(cls, val): @@ -17903,7 +18852,7 @@ def paper_default_folder_policy_changed_details(cls, val): :param PaperDefaultFolderPolicyChangedDetails val: :rtype: EventDetails """ - return cls('paper_default_folder_policy_changed_details', val) + return cls("paper_default_folder_policy_changed_details", val) @classmethod def paper_desktop_policy_changed_details(cls, val): @@ -17914,7 +18863,7 @@ def paper_desktop_policy_changed_details(cls, val): :param PaperDesktopPolicyChangedDetails val: :rtype: EventDetails """ - return cls('paper_desktop_policy_changed_details', val) + return cls("paper_desktop_policy_changed_details", val) @classmethod def paper_enabled_users_group_addition_details(cls, val): @@ -17925,7 +18874,7 @@ def paper_enabled_users_group_addition_details(cls, val): :param PaperEnabledUsersGroupAdditionDetails val: :rtype: EventDetails """ - return cls('paper_enabled_users_group_addition_details', val) + return cls("paper_enabled_users_group_addition_details", val) @classmethod def paper_enabled_users_group_removal_details(cls, val): @@ -17936,7 +18885,7 @@ def paper_enabled_users_group_removal_details(cls, val): :param PaperEnabledUsersGroupRemovalDetails val: :rtype: EventDetails """ - return cls('paper_enabled_users_group_removal_details', val) + return cls("paper_enabled_users_group_removal_details", val) @classmethod def passkey_login_policy_changed_details(cls, val): @@ -17947,7 +18896,7 @@ def passkey_login_policy_changed_details(cls, val): :param PasskeyLoginPolicyChangedDetails val: :rtype: EventDetails """ - return cls('passkey_login_policy_changed_details', val) + return cls("passkey_login_policy_changed_details", val) @classmethod def password_strength_requirements_change_policy_details(cls, val): @@ -17959,7 +18908,7 @@ def password_strength_requirements_change_policy_details(cls, val): :param PasswordStrengthRequirementsChangePolicyDetails val: :rtype: EventDetails """ - return cls('password_strength_requirements_change_policy_details', val) + return cls("password_strength_requirements_change_policy_details", val) @classmethod def permanent_delete_change_policy_details(cls, val): @@ -17970,7 +18919,7 @@ def permanent_delete_change_policy_details(cls, val): :param PermanentDeleteChangePolicyDetails val: :rtype: EventDetails """ - return cls('permanent_delete_change_policy_details', val) + return cls("permanent_delete_change_policy_details", val) @classmethod def previews_ai_policy_changed_details(cls, val): @@ -17981,7 +18930,7 @@ def previews_ai_policy_changed_details(cls, val): :param PreviewsAiPolicyChangedDetails val: :rtype: EventDetails """ - return cls('previews_ai_policy_changed_details', val) + return cls("previews_ai_policy_changed_details", val) @classmethod def replay_adding_people_policy_changed_details(cls, val): @@ -17992,7 +18941,7 @@ def replay_adding_people_policy_changed_details(cls, val): :param ReplayAddingPeoplePolicyChangedDetails val: :rtype: EventDetails """ - return cls('replay_adding_people_policy_changed_details', val) + return cls("replay_adding_people_policy_changed_details", val) @classmethod def replay_sharing_policy_changed_details(cls, val): @@ -18003,7 +18952,7 @@ def replay_sharing_policy_changed_details(cls, val): :param ReplaySharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls('replay_sharing_policy_changed_details', val) + return cls("replay_sharing_policy_changed_details", val) @classmethod def reseller_support_change_policy_details(cls, val): @@ -18014,7 +18963,7 @@ def reseller_support_change_policy_details(cls, val): :param ResellerSupportChangePolicyDetails val: :rtype: EventDetails """ - return cls('reseller_support_change_policy_details', val) + return cls("reseller_support_change_policy_details", val) @classmethod def rewind_policy_changed_details(cls, val): @@ -18025,7 +18974,7 @@ def rewind_policy_changed_details(cls, val): :param RewindPolicyChangedDetails val: :rtype: EventDetails """ - return cls('rewind_policy_changed_details', val) + return cls("rewind_policy_changed_details", val) @classmethod def send_and_track_policy_changed_details(cls, val): @@ -18036,7 +18985,7 @@ def send_and_track_policy_changed_details(cls, val): :param SendAndTrackPolicyChangedDetails val: :rtype: EventDetails """ - return cls('send_and_track_policy_changed_details', val) + return cls("send_and_track_policy_changed_details", val) @classmethod def send_external_sharing_policy_changed_details(cls, val): @@ -18047,7 +18996,7 @@ def send_external_sharing_policy_changed_details(cls, val): :param SendExternalSharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls('send_external_sharing_policy_changed_details', val) + return cls("send_external_sharing_policy_changed_details", val) @classmethod def send_for_signature_policy_changed_details(cls, val): @@ -18058,7 +19007,7 @@ def send_for_signature_policy_changed_details(cls, val): :param SendForSignaturePolicyChangedDetails val: :rtype: EventDetails """ - return cls('send_for_signature_policy_changed_details', val) + return cls("send_for_signature_policy_changed_details", val) @classmethod def shared_link_default_permissions_policy_changed_details(cls, val): @@ -18070,7 +19019,7 @@ def shared_link_default_permissions_policy_changed_details(cls, val): :param SharedLinkDefaultPermissionsPolicyChangedDetails val: :rtype: EventDetails """ - return cls('shared_link_default_permissions_policy_changed_details', val) + return cls("shared_link_default_permissions_policy_changed_details", val) @classmethod def sharing_change_folder_join_policy_details(cls, val): @@ -18081,7 +19030,7 @@ def sharing_change_folder_join_policy_details(cls, val): :param SharingChangeFolderJoinPolicyDetails val: :rtype: EventDetails """ - return cls('sharing_change_folder_join_policy_details', val) + return cls("sharing_change_folder_join_policy_details", val) @classmethod def sharing_change_link_allow_change_expiration_policy_details(cls, val): @@ -18093,7 +19042,7 @@ def sharing_change_link_allow_change_expiration_policy_details(cls, val): :param SharingChangeLinkAllowChangeExpirationPolicyDetails val: :rtype: EventDetails """ - return cls('sharing_change_link_allow_change_expiration_policy_details', val) + return cls("sharing_change_link_allow_change_expiration_policy_details", val) @classmethod def sharing_change_link_default_expiration_policy_details(cls, val): @@ -18105,7 +19054,7 @@ def sharing_change_link_default_expiration_policy_details(cls, val): :param SharingChangeLinkDefaultExpirationPolicyDetails val: :rtype: EventDetails """ - return cls('sharing_change_link_default_expiration_policy_details', val) + return cls("sharing_change_link_default_expiration_policy_details", val) @classmethod def sharing_change_link_enforce_password_policy_details(cls, val): @@ -18117,7 +19066,7 @@ def sharing_change_link_enforce_password_policy_details(cls, val): :param SharingChangeLinkEnforcePasswordPolicyDetails val: :rtype: EventDetails """ - return cls('sharing_change_link_enforce_password_policy_details', val) + return cls("sharing_change_link_enforce_password_policy_details", val) @classmethod def sharing_change_link_policy_details(cls, val): @@ -18128,7 +19077,7 @@ def sharing_change_link_policy_details(cls, val): :param SharingChangeLinkPolicyDetails val: :rtype: EventDetails """ - return cls('sharing_change_link_policy_details', val) + return cls("sharing_change_link_policy_details", val) @classmethod def sharing_change_member_policy_details(cls, val): @@ -18139,7 +19088,7 @@ def sharing_change_member_policy_details(cls, val): :param SharingChangeMemberPolicyDetails val: :rtype: EventDetails """ - return cls('sharing_change_member_policy_details', val) + return cls("sharing_change_member_policy_details", val) @classmethod def showcase_change_download_policy_details(cls, val): @@ -18150,7 +19099,7 @@ def showcase_change_download_policy_details(cls, val): :param ShowcaseChangeDownloadPolicyDetails val: :rtype: EventDetails """ - return cls('showcase_change_download_policy_details', val) + return cls("showcase_change_download_policy_details", val) @classmethod def showcase_change_enabled_policy_details(cls, val): @@ -18161,7 +19110,7 @@ def showcase_change_enabled_policy_details(cls, val): :param ShowcaseChangeEnabledPolicyDetails val: :rtype: EventDetails """ - return cls('showcase_change_enabled_policy_details', val) + return cls("showcase_change_enabled_policy_details", val) @classmethod def showcase_change_external_sharing_policy_details(cls, val): @@ -18173,7 +19122,7 @@ def showcase_change_external_sharing_policy_details(cls, val): :param ShowcaseChangeExternalSharingPolicyDetails val: :rtype: EventDetails """ - return cls('showcase_change_external_sharing_policy_details', val) + return cls("showcase_change_external_sharing_policy_details", val) @classmethod def sign_external_sharing_policy_changed_details(cls, val): @@ -18184,7 +19133,7 @@ def sign_external_sharing_policy_changed_details(cls, val): :param SignExternalSharingPolicyChangedDetails val: :rtype: EventDetails """ - return cls('sign_external_sharing_policy_changed_details', val) + return cls("sign_external_sharing_policy_changed_details", val) @classmethod def sign_template_creation_permission_changed_details(cls, val): @@ -18196,7 +19145,7 @@ def sign_template_creation_permission_changed_details(cls, val): :param SignTemplateCreationPermissionChangedDetails val: :rtype: EventDetails """ - return cls('sign_template_creation_permission_changed_details', val) + return cls("sign_template_creation_permission_changed_details", val) @classmethod def smarter_smart_sync_policy_changed_details(cls, val): @@ -18207,7 +19156,7 @@ def smarter_smart_sync_policy_changed_details(cls, val): :param SmarterSmartSyncPolicyChangedDetails val: :rtype: EventDetails """ - return cls('smarter_smart_sync_policy_changed_details', val) + return cls("smarter_smart_sync_policy_changed_details", val) @classmethod def smart_sync_change_policy_details(cls, val): @@ -18218,7 +19167,7 @@ def smart_sync_change_policy_details(cls, val): :param SmartSyncChangePolicyDetails val: :rtype: EventDetails """ - return cls('smart_sync_change_policy_details', val) + return cls("smart_sync_change_policy_details", val) @classmethod def smart_sync_not_opt_out_details(cls, val): @@ -18229,7 +19178,7 @@ def smart_sync_not_opt_out_details(cls, val): :param SmartSyncNotOptOutDetails val: :rtype: EventDetails """ - return cls('smart_sync_not_opt_out_details', val) + return cls("smart_sync_not_opt_out_details", val) @classmethod def smart_sync_opt_out_details(cls, val): @@ -18240,7 +19189,7 @@ def smart_sync_opt_out_details(cls, val): :param SmartSyncOptOutDetails val: :rtype: EventDetails """ - return cls('smart_sync_opt_out_details', val) + return cls("smart_sync_opt_out_details", val) @classmethod def sso_change_policy_details(cls, val): @@ -18251,7 +19200,7 @@ def sso_change_policy_details(cls, val): :param SsoChangePolicyDetails val: :rtype: EventDetails """ - return cls('sso_change_policy_details', val) + return cls("sso_change_policy_details", val) @classmethod def stack_cross_team_access_policy_changed_details(cls, val): @@ -18263,7 +19212,7 @@ def stack_cross_team_access_policy_changed_details(cls, val): :param StackCrossTeamAccessPolicyChangedDetails val: :rtype: EventDetails """ - return cls('stack_cross_team_access_policy_changed_details', val) + return cls("stack_cross_team_access_policy_changed_details", val) @classmethod def team_branding_policy_changed_details(cls, val): @@ -18274,7 +19223,7 @@ def team_branding_policy_changed_details(cls, val): :param TeamBrandingPolicyChangedDetails val: :rtype: EventDetails """ - return cls('team_branding_policy_changed_details', val) + return cls("team_branding_policy_changed_details", val) @classmethod def team_extensions_policy_changed_details(cls, val): @@ -18285,7 +19234,7 @@ def team_extensions_policy_changed_details(cls, val): :param TeamExtensionsPolicyChangedDetails val: :rtype: EventDetails """ - return cls('team_extensions_policy_changed_details', val) + return cls("team_extensions_policy_changed_details", val) @classmethod def team_member_storage_request_policy_changed_details(cls, val): @@ -18297,7 +19246,7 @@ def team_member_storage_request_policy_changed_details(cls, val): :param TeamMemberStorageRequestPolicyChangedDetails val: :rtype: EventDetails """ - return cls('team_member_storage_request_policy_changed_details', val) + return cls("team_member_storage_request_policy_changed_details", val) @classmethod def team_selective_sync_policy_changed_details(cls, val): @@ -18308,7 +19257,7 @@ def team_selective_sync_policy_changed_details(cls, val): :param TeamSelectiveSyncPolicyChangedDetails val: :rtype: EventDetails """ - return cls('team_selective_sync_policy_changed_details', val) + return cls("team_selective_sync_policy_changed_details", val) @classmethod def team_sharing_whitelist_subjects_changed_details(cls, val): @@ -18320,7 +19269,7 @@ def team_sharing_whitelist_subjects_changed_details(cls, val): :param TeamSharingWhitelistSubjectsChangedDetails val: :rtype: EventDetails """ - return cls('team_sharing_whitelist_subjects_changed_details', val) + return cls("team_sharing_whitelist_subjects_changed_details", val) @classmethod def tfa_add_exception_details(cls, val): @@ -18331,7 +19280,7 @@ def tfa_add_exception_details(cls, val): :param TfaAddExceptionDetails val: :rtype: EventDetails """ - return cls('tfa_add_exception_details', val) + return cls("tfa_add_exception_details", val) @classmethod def tfa_change_policy_details(cls, val): @@ -18342,7 +19291,7 @@ def tfa_change_policy_details(cls, val): :param TfaChangePolicyDetails val: :rtype: EventDetails """ - return cls('tfa_change_policy_details', val) + return cls("tfa_change_policy_details", val) @classmethod def tfa_remove_exception_details(cls, val): @@ -18353,7 +19302,7 @@ def tfa_remove_exception_details(cls, val): :param TfaRemoveExceptionDetails val: :rtype: EventDetails """ - return cls('tfa_remove_exception_details', val) + return cls("tfa_remove_exception_details", val) @classmethod def top_level_content_policy_changed_details(cls, val): @@ -18364,7 +19313,7 @@ def top_level_content_policy_changed_details(cls, val): :param TopLevelContentPolicyChangedDetails val: :rtype: EventDetails """ - return cls('top_level_content_policy_changed_details', val) + return cls("top_level_content_policy_changed_details", val) @classmethod def two_account_change_policy_details(cls, val): @@ -18375,7 +19324,7 @@ def two_account_change_policy_details(cls, val): :param TwoAccountChangePolicyDetails val: :rtype: EventDetails """ - return cls('two_account_change_policy_details', val) + return cls("two_account_change_policy_details", val) @classmethod def viewer_info_policy_changed_details(cls, val): @@ -18386,7 +19335,7 @@ def viewer_info_policy_changed_details(cls, val): :param ViewerInfoPolicyChangedDetails val: :rtype: EventDetails """ - return cls('viewer_info_policy_changed_details', val) + return cls("viewer_info_policy_changed_details", val) @classmethod def watermarking_policy_changed_details(cls, val): @@ -18397,7 +19346,7 @@ def watermarking_policy_changed_details(cls, val): :param WatermarkingPolicyChangedDetails val: :rtype: EventDetails """ - return cls('watermarking_policy_changed_details', val) + return cls("watermarking_policy_changed_details", val) @classmethod def web_sessions_change_active_session_limit_details(cls, val): @@ -18409,7 +19358,7 @@ def web_sessions_change_active_session_limit_details(cls, val): :param WebSessionsChangeActiveSessionLimitDetails val: :rtype: EventDetails """ - return cls('web_sessions_change_active_session_limit_details', val) + return cls("web_sessions_change_active_session_limit_details", val) @classmethod def web_sessions_change_fixed_length_policy_details(cls, val): @@ -18421,7 +19370,7 @@ def web_sessions_change_fixed_length_policy_details(cls, val): :param WebSessionsChangeFixedLengthPolicyDetails val: :rtype: EventDetails """ - return cls('web_sessions_change_fixed_length_policy_details', val) + return cls("web_sessions_change_fixed_length_policy_details", val) @classmethod def web_sessions_change_idle_length_policy_details(cls, val): @@ -18433,7 +19382,7 @@ def web_sessions_change_idle_length_policy_details(cls, val): :param WebSessionsChangeIdleLengthPolicyDetails val: :rtype: EventDetails """ - return cls('web_sessions_change_idle_length_policy_details', val) + return cls("web_sessions_change_idle_length_policy_details", val) @classmethod def data_residency_migration_request_successful_details(cls, val): @@ -18445,7 +19394,7 @@ def data_residency_migration_request_successful_details(cls, val): :param DataResidencyMigrationRequestSuccessfulDetails val: :rtype: EventDetails """ - return cls('data_residency_migration_request_successful_details', val) + return cls("data_residency_migration_request_successful_details", val) @classmethod def data_residency_migration_request_unsuccessful_details(cls, val): @@ -18457,7 +19406,7 @@ def data_residency_migration_request_unsuccessful_details(cls, val): :param DataResidencyMigrationRequestUnsuccessfulDetails val: :rtype: EventDetails """ - return cls('data_residency_migration_request_unsuccessful_details', val) + return cls("data_residency_migration_request_unsuccessful_details", val) @classmethod def team_merge_from_details(cls, val): @@ -18468,7 +19417,7 @@ def team_merge_from_details(cls, val): :param TeamMergeFromDetails val: :rtype: EventDetails """ - return cls('team_merge_from_details', val) + return cls("team_merge_from_details", val) @classmethod def team_merge_to_details(cls, val): @@ -18479,7 +19428,7 @@ def team_merge_to_details(cls, val): :param TeamMergeToDetails val: :rtype: EventDetails """ - return cls('team_merge_to_details', val) + return cls("team_merge_to_details", val) @classmethod def team_profile_add_background_details(cls, val): @@ -18490,7 +19439,7 @@ def team_profile_add_background_details(cls, val): :param TeamProfileAddBackgroundDetails val: :rtype: EventDetails """ - return cls('team_profile_add_background_details', val) + return cls("team_profile_add_background_details", val) @classmethod def team_profile_add_logo_details(cls, val): @@ -18501,7 +19450,7 @@ def team_profile_add_logo_details(cls, val): :param TeamProfileAddLogoDetails val: :rtype: EventDetails """ - return cls('team_profile_add_logo_details', val) + return cls("team_profile_add_logo_details", val) @classmethod def team_profile_change_background_details(cls, val): @@ -18512,7 +19461,7 @@ def team_profile_change_background_details(cls, val): :param TeamProfileChangeBackgroundDetails val: :rtype: EventDetails """ - return cls('team_profile_change_background_details', val) + return cls("team_profile_change_background_details", val) @classmethod def team_profile_change_default_language_details(cls, val): @@ -18523,7 +19472,7 @@ def team_profile_change_default_language_details(cls, val): :param TeamProfileChangeDefaultLanguageDetails val: :rtype: EventDetails """ - return cls('team_profile_change_default_language_details', val) + return cls("team_profile_change_default_language_details", val) @classmethod def team_profile_change_logo_details(cls, val): @@ -18534,7 +19483,7 @@ def team_profile_change_logo_details(cls, val): :param TeamProfileChangeLogoDetails val: :rtype: EventDetails """ - return cls('team_profile_change_logo_details', val) + return cls("team_profile_change_logo_details", val) @classmethod def team_profile_change_name_details(cls, val): @@ -18545,7 +19494,7 @@ def team_profile_change_name_details(cls, val): :param TeamProfileChangeNameDetails val: :rtype: EventDetails """ - return cls('team_profile_change_name_details', val) + return cls("team_profile_change_name_details", val) @classmethod def team_profile_remove_background_details(cls, val): @@ -18556,7 +19505,7 @@ def team_profile_remove_background_details(cls, val): :param TeamProfileRemoveBackgroundDetails val: :rtype: EventDetails """ - return cls('team_profile_remove_background_details', val) + return cls("team_profile_remove_background_details", val) @classmethod def team_profile_remove_logo_details(cls, val): @@ -18567,7 +19516,7 @@ def team_profile_remove_logo_details(cls, val): :param TeamProfileRemoveLogoDetails val: :rtype: EventDetails """ - return cls('team_profile_remove_logo_details', val) + return cls("team_profile_remove_logo_details", val) @classmethod def passkey_add_details(cls, val): @@ -18578,7 +19527,7 @@ def passkey_add_details(cls, val): :param PasskeyAddDetails val: :rtype: EventDetails """ - return cls('passkey_add_details', val) + return cls("passkey_add_details", val) @classmethod def passkey_remove_details(cls, val): @@ -18589,7 +19538,7 @@ def passkey_remove_details(cls, val): :param PasskeyRemoveDetails val: :rtype: EventDetails """ - return cls('passkey_remove_details', val) + return cls("passkey_remove_details", val) @classmethod def tfa_add_backup_phone_details(cls, val): @@ -18600,7 +19549,7 @@ def tfa_add_backup_phone_details(cls, val): :param TfaAddBackupPhoneDetails val: :rtype: EventDetails """ - return cls('tfa_add_backup_phone_details', val) + return cls("tfa_add_backup_phone_details", val) @classmethod def tfa_add_security_key_details(cls, val): @@ -18611,7 +19560,7 @@ def tfa_add_security_key_details(cls, val): :param TfaAddSecurityKeyDetails val: :rtype: EventDetails """ - return cls('tfa_add_security_key_details', val) + return cls("tfa_add_security_key_details", val) @classmethod def tfa_change_backup_phone_details(cls, val): @@ -18622,7 +19571,7 @@ def tfa_change_backup_phone_details(cls, val): :param TfaChangeBackupPhoneDetails val: :rtype: EventDetails """ - return cls('tfa_change_backup_phone_details', val) + return cls("tfa_change_backup_phone_details", val) @classmethod def tfa_change_status_details(cls, val): @@ -18633,7 +19582,7 @@ def tfa_change_status_details(cls, val): :param TfaChangeStatusDetails val: :rtype: EventDetails """ - return cls('tfa_change_status_details', val) + return cls("tfa_change_status_details", val) @classmethod def tfa_remove_backup_phone_details(cls, val): @@ -18644,7 +19593,7 @@ def tfa_remove_backup_phone_details(cls, val): :param TfaRemoveBackupPhoneDetails val: :rtype: EventDetails """ - return cls('tfa_remove_backup_phone_details', val) + return cls("tfa_remove_backup_phone_details", val) @classmethod def tfa_remove_security_key_details(cls, val): @@ -18655,7 +19604,7 @@ def tfa_remove_security_key_details(cls, val): :param TfaRemoveSecurityKeyDetails val: :rtype: EventDetails """ - return cls('tfa_remove_security_key_details', val) + return cls("tfa_remove_security_key_details", val) @classmethod def tfa_reset_details(cls, val): @@ -18666,7 +19615,7 @@ def tfa_reset_details(cls, val): :param TfaResetDetails val: :rtype: EventDetails """ - return cls('tfa_reset_details', val) + return cls("tfa_reset_details", val) @classmethod def changed_enterprise_admin_role_details(cls, val): @@ -18677,7 +19626,7 @@ def changed_enterprise_admin_role_details(cls, val): :param ChangedEnterpriseAdminRoleDetails val: :rtype: EventDetails """ - return cls('changed_enterprise_admin_role_details', val) + return cls("changed_enterprise_admin_role_details", val) @classmethod def changed_enterprise_connected_team_status_details(cls, val): @@ -18689,7 +19638,7 @@ def changed_enterprise_connected_team_status_details(cls, val): :param ChangedEnterpriseConnectedTeamStatusDetails val: :rtype: EventDetails """ - return cls('changed_enterprise_connected_team_status_details', val) + return cls("changed_enterprise_connected_team_status_details", val) @classmethod def ended_enterprise_admin_session_details(cls, val): @@ -18700,7 +19649,7 @@ def ended_enterprise_admin_session_details(cls, val): :param EndedEnterpriseAdminSessionDetails val: :rtype: EventDetails """ - return cls('ended_enterprise_admin_session_details', val) + return cls("ended_enterprise_admin_session_details", val) @classmethod def ended_enterprise_admin_session_deprecated_details(cls, val): @@ -18712,7 +19661,7 @@ def ended_enterprise_admin_session_deprecated_details(cls, val): :param EndedEnterpriseAdminSessionDeprecatedDetails val: :rtype: EventDetails """ - return cls('ended_enterprise_admin_session_deprecated_details', val) + return cls("ended_enterprise_admin_session_deprecated_details", val) @classmethod def enterprise_settings_locking_details(cls, val): @@ -18723,7 +19672,7 @@ def enterprise_settings_locking_details(cls, val): :param EnterpriseSettingsLockingDetails val: :rtype: EventDetails """ - return cls('enterprise_settings_locking_details', val) + return cls("enterprise_settings_locking_details", val) @classmethod def guest_admin_change_status_details(cls, val): @@ -18734,7 +19683,7 @@ def guest_admin_change_status_details(cls, val): :param GuestAdminChangeStatusDetails val: :rtype: EventDetails """ - return cls('guest_admin_change_status_details', val) + return cls("guest_admin_change_status_details", val) @classmethod def started_enterprise_admin_session_details(cls, val): @@ -18745,7 +19694,7 @@ def started_enterprise_admin_session_details(cls, val): :param StartedEnterpriseAdminSessionDetails val: :rtype: EventDetails """ - return cls('started_enterprise_admin_session_details', val) + return cls("started_enterprise_admin_session_details", val) @classmethod def team_merge_request_accepted_details(cls, val): @@ -18756,7 +19705,7 @@ def team_merge_request_accepted_details(cls, val): :param TeamMergeRequestAcceptedDetails val: :rtype: EventDetails """ - return cls('team_merge_request_accepted_details', val) + return cls("team_merge_request_accepted_details", val) @classmethod def team_merge_request_accepted_shown_to_primary_team_details(cls, val): @@ -18768,7 +19717,7 @@ def team_merge_request_accepted_shown_to_primary_team_details(cls, val): :param TeamMergeRequestAcceptedShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_accepted_shown_to_primary_team_details', val) + return cls("team_merge_request_accepted_shown_to_primary_team_details", val) @classmethod def team_merge_request_accepted_shown_to_secondary_team_details(cls, val): @@ -18780,7 +19729,7 @@ def team_merge_request_accepted_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestAcceptedShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_accepted_shown_to_secondary_team_details', val) + return cls("team_merge_request_accepted_shown_to_secondary_team_details", val) @classmethod def team_merge_request_auto_canceled_details(cls, val): @@ -18791,7 +19740,7 @@ def team_merge_request_auto_canceled_details(cls, val): :param TeamMergeRequestAutoCanceledDetails val: :rtype: EventDetails """ - return cls('team_merge_request_auto_canceled_details', val) + return cls("team_merge_request_auto_canceled_details", val) @classmethod def team_merge_request_canceled_details(cls, val): @@ -18802,7 +19751,7 @@ def team_merge_request_canceled_details(cls, val): :param TeamMergeRequestCanceledDetails val: :rtype: EventDetails """ - return cls('team_merge_request_canceled_details', val) + return cls("team_merge_request_canceled_details", val) @classmethod def team_merge_request_canceled_shown_to_primary_team_details(cls, val): @@ -18814,7 +19763,7 @@ def team_merge_request_canceled_shown_to_primary_team_details(cls, val): :param TeamMergeRequestCanceledShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_canceled_shown_to_primary_team_details', val) + return cls("team_merge_request_canceled_shown_to_primary_team_details", val) @classmethod def team_merge_request_canceled_shown_to_secondary_team_details(cls, val): @@ -18826,7 +19775,7 @@ def team_merge_request_canceled_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestCanceledShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_canceled_shown_to_secondary_team_details', val) + return cls("team_merge_request_canceled_shown_to_secondary_team_details", val) @classmethod def team_merge_request_expired_details(cls, val): @@ -18837,7 +19786,7 @@ def team_merge_request_expired_details(cls, val): :param TeamMergeRequestExpiredDetails val: :rtype: EventDetails """ - return cls('team_merge_request_expired_details', val) + return cls("team_merge_request_expired_details", val) @classmethod def team_merge_request_expired_shown_to_primary_team_details(cls, val): @@ -18849,7 +19798,7 @@ def team_merge_request_expired_shown_to_primary_team_details(cls, val): :param TeamMergeRequestExpiredShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_expired_shown_to_primary_team_details', val) + return cls("team_merge_request_expired_shown_to_primary_team_details", val) @classmethod def team_merge_request_expired_shown_to_secondary_team_details(cls, val): @@ -18861,7 +19810,7 @@ def team_merge_request_expired_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestExpiredShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_expired_shown_to_secondary_team_details', val) + return cls("team_merge_request_expired_shown_to_secondary_team_details", val) @classmethod def team_merge_request_rejected_shown_to_primary_team_details(cls, val): @@ -18873,7 +19822,7 @@ def team_merge_request_rejected_shown_to_primary_team_details(cls, val): :param TeamMergeRequestRejectedShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_rejected_shown_to_primary_team_details', val) + return cls("team_merge_request_rejected_shown_to_primary_team_details", val) @classmethod def team_merge_request_rejected_shown_to_secondary_team_details(cls, val): @@ -18885,7 +19834,7 @@ def team_merge_request_rejected_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestRejectedShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_rejected_shown_to_secondary_team_details', val) + return cls("team_merge_request_rejected_shown_to_secondary_team_details", val) @classmethod def team_merge_request_reminder_details(cls, val): @@ -18896,7 +19845,7 @@ def team_merge_request_reminder_details(cls, val): :param TeamMergeRequestReminderDetails val: :rtype: EventDetails """ - return cls('team_merge_request_reminder_details', val) + return cls("team_merge_request_reminder_details", val) @classmethod def team_merge_request_reminder_shown_to_primary_team_details(cls, val): @@ -18908,7 +19857,7 @@ def team_merge_request_reminder_shown_to_primary_team_details(cls, val): :param TeamMergeRequestReminderShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_reminder_shown_to_primary_team_details', val) + return cls("team_merge_request_reminder_shown_to_primary_team_details", val) @classmethod def team_merge_request_reminder_shown_to_secondary_team_details(cls, val): @@ -18920,7 +19869,7 @@ def team_merge_request_reminder_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestReminderShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_reminder_shown_to_secondary_team_details', val) + return cls("team_merge_request_reminder_shown_to_secondary_team_details", val) @classmethod def team_merge_request_revoked_details(cls, val): @@ -18931,7 +19880,7 @@ def team_merge_request_revoked_details(cls, val): :param TeamMergeRequestRevokedDetails val: :rtype: EventDetails """ - return cls('team_merge_request_revoked_details', val) + return cls("team_merge_request_revoked_details", val) @classmethod def team_merge_request_sent_shown_to_primary_team_details(cls, val): @@ -18943,7 +19892,7 @@ def team_merge_request_sent_shown_to_primary_team_details(cls, val): :param TeamMergeRequestSentShownToPrimaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_sent_shown_to_primary_team_details', val) + return cls("team_merge_request_sent_shown_to_primary_team_details", val) @classmethod def team_merge_request_sent_shown_to_secondary_team_details(cls, val): @@ -18955,7 +19904,7 @@ def team_merge_request_sent_shown_to_secondary_team_details(cls, val): :param TeamMergeRequestSentShownToSecondaryTeamDetails val: :rtype: EventDetails """ - return cls('team_merge_request_sent_shown_to_secondary_team_details', val) + return cls("team_merge_request_sent_shown_to_secondary_team_details", val) @classmethod def missing_details(cls, val): @@ -18966,7 +19915,7 @@ def missing_details(cls, val): :param MissingDetails val: :rtype: EventDetails """ - return cls('missing_details', val) + return cls("missing_details", val) def is_admin_alerting_alert_state_changed_details(self): """ @@ -18974,7 +19923,7 @@ def is_admin_alerting_alert_state_changed_details(self): :rtype: bool """ - return self._tag == 'admin_alerting_alert_state_changed_details' + return self._tag == "admin_alerting_alert_state_changed_details" def is_admin_alerting_changed_alert_config_details(self): """ @@ -18982,7 +19931,7 @@ def is_admin_alerting_changed_alert_config_details(self): :rtype: bool """ - return self._tag == 'admin_alerting_changed_alert_config_details' + return self._tag == "admin_alerting_changed_alert_config_details" def is_admin_alerting_triggered_alert_details(self): """ @@ -18990,7 +19939,7 @@ def is_admin_alerting_triggered_alert_details(self): :rtype: bool """ - return self._tag == 'admin_alerting_triggered_alert_details' + return self._tag == "admin_alerting_triggered_alert_details" def is_ransomware_restore_process_completed_details(self): """ @@ -18998,7 +19947,7 @@ def is_ransomware_restore_process_completed_details(self): :rtype: bool """ - return self._tag == 'ransomware_restore_process_completed_details' + return self._tag == "ransomware_restore_process_completed_details" def is_ransomware_restore_process_started_details(self): """ @@ -19006,7 +19955,7 @@ def is_ransomware_restore_process_started_details(self): :rtype: bool """ - return self._tag == 'ransomware_restore_process_started_details' + return self._tag == "ransomware_restore_process_started_details" def is_app_blocked_by_permissions_details(self): """ @@ -19014,7 +19963,7 @@ def is_app_blocked_by_permissions_details(self): :rtype: bool """ - return self._tag == 'app_blocked_by_permissions_details' + return self._tag == "app_blocked_by_permissions_details" def is_app_link_team_details(self): """ @@ -19022,7 +19971,7 @@ def is_app_link_team_details(self): :rtype: bool """ - return self._tag == 'app_link_team_details' + return self._tag == "app_link_team_details" def is_app_link_user_details(self): """ @@ -19030,7 +19979,7 @@ def is_app_link_user_details(self): :rtype: bool """ - return self._tag == 'app_link_user_details' + return self._tag == "app_link_user_details" def is_app_unlink_team_details(self): """ @@ -19038,7 +19987,7 @@ def is_app_unlink_team_details(self): :rtype: bool """ - return self._tag == 'app_unlink_team_details' + return self._tag == "app_unlink_team_details" def is_app_unlink_user_details(self): """ @@ -19046,7 +19995,7 @@ def is_app_unlink_user_details(self): :rtype: bool """ - return self._tag == 'app_unlink_user_details' + return self._tag == "app_unlink_user_details" def is_integration_connected_details(self): """ @@ -19054,7 +20003,7 @@ def is_integration_connected_details(self): :rtype: bool """ - return self._tag == 'integration_connected_details' + return self._tag == "integration_connected_details" def is_integration_disconnected_details(self): """ @@ -19062,7 +20011,7 @@ def is_integration_disconnected_details(self): :rtype: bool """ - return self._tag == 'integration_disconnected_details' + return self._tag == "integration_disconnected_details" def is_file_add_comment_details(self): """ @@ -19070,7 +20019,7 @@ def is_file_add_comment_details(self): :rtype: bool """ - return self._tag == 'file_add_comment_details' + return self._tag == "file_add_comment_details" def is_file_change_comment_subscription_details(self): """ @@ -19078,7 +20027,7 @@ def is_file_change_comment_subscription_details(self): :rtype: bool """ - return self._tag == 'file_change_comment_subscription_details' + return self._tag == "file_change_comment_subscription_details" def is_file_delete_comment_details(self): """ @@ -19086,7 +20035,7 @@ def is_file_delete_comment_details(self): :rtype: bool """ - return self._tag == 'file_delete_comment_details' + return self._tag == "file_delete_comment_details" def is_file_edit_comment_details(self): """ @@ -19094,7 +20043,7 @@ def is_file_edit_comment_details(self): :rtype: bool """ - return self._tag == 'file_edit_comment_details' + return self._tag == "file_edit_comment_details" def is_file_like_comment_details(self): """ @@ -19102,7 +20051,7 @@ def is_file_like_comment_details(self): :rtype: bool """ - return self._tag == 'file_like_comment_details' + return self._tag == "file_like_comment_details" def is_file_resolve_comment_details(self): """ @@ -19110,7 +20059,7 @@ def is_file_resolve_comment_details(self): :rtype: bool """ - return self._tag == 'file_resolve_comment_details' + return self._tag == "file_resolve_comment_details" def is_file_unlike_comment_details(self): """ @@ -19118,7 +20067,7 @@ def is_file_unlike_comment_details(self): :rtype: bool """ - return self._tag == 'file_unlike_comment_details' + return self._tag == "file_unlike_comment_details" def is_file_unresolve_comment_details(self): """ @@ -19126,7 +20075,7 @@ def is_file_unresolve_comment_details(self): :rtype: bool """ - return self._tag == 'file_unresolve_comment_details' + return self._tag == "file_unresolve_comment_details" def is_dash_added_comment_to_stack_details(self): """ @@ -19134,7 +20083,7 @@ def is_dash_added_comment_to_stack_details(self): :rtype: bool """ - return self._tag == 'dash_added_comment_to_stack_details' + return self._tag == "dash_added_comment_to_stack_details" def is_dash_added_connector_details(self): """ @@ -19142,7 +20091,7 @@ def is_dash_added_connector_details(self): :rtype: bool """ - return self._tag == 'dash_added_connector_details' + return self._tag == "dash_added_connector_details" def is_dash_added_link_to_stack_details(self): """ @@ -19150,7 +20099,7 @@ def is_dash_added_link_to_stack_details(self): :rtype: bool """ - return self._tag == 'dash_added_link_to_stack_details' + return self._tag == "dash_added_link_to_stack_details" def is_dash_added_team_email_domain_allowlist_details(self): """ @@ -19158,7 +20107,7 @@ def is_dash_added_team_email_domain_allowlist_details(self): :rtype: bool """ - return self._tag == 'dash_added_team_email_domain_allowlist_details' + return self._tag == "dash_added_team_email_domain_allowlist_details" def is_dash_admin_added_org_wide_connector_details(self): """ @@ -19166,7 +20115,7 @@ def is_dash_admin_added_org_wide_connector_details(self): :rtype: bool """ - return self._tag == 'dash_admin_added_org_wide_connector_details' + return self._tag == "dash_admin_added_org_wide_connector_details" def is_dash_admin_disabled_connector_details(self): """ @@ -19174,7 +20123,7 @@ def is_dash_admin_disabled_connector_details(self): :rtype: bool """ - return self._tag == 'dash_admin_disabled_connector_details' + return self._tag == "dash_admin_disabled_connector_details" def is_dash_admin_enabled_connector_details(self): """ @@ -19182,7 +20131,7 @@ def is_dash_admin_enabled_connector_details(self): :rtype: bool """ - return self._tag == 'dash_admin_enabled_connector_details' + return self._tag == "dash_admin_enabled_connector_details" def is_dash_admin_removed_org_wide_connector_details(self): """ @@ -19190,7 +20139,7 @@ def is_dash_admin_removed_org_wide_connector_details(self): :rtype: bool """ - return self._tag == 'dash_admin_removed_org_wide_connector_details' + return self._tag == "dash_admin_removed_org_wide_connector_details" def is_dash_archived_stack_details(self): """ @@ -19198,7 +20147,7 @@ def is_dash_archived_stack_details(self): :rtype: bool """ - return self._tag == 'dash_archived_stack_details' + return self._tag == "dash_archived_stack_details" def is_dash_changed_audience_of_shared_link_to_stack_details(self): """ @@ -19206,7 +20155,7 @@ def is_dash_changed_audience_of_shared_link_to_stack_details(self): :rtype: bool """ - return self._tag == 'dash_changed_audience_of_shared_link_to_stack_details' + return self._tag == "dash_changed_audience_of_shared_link_to_stack_details" def is_dash_cloned_stack_details(self): """ @@ -19214,7 +20163,7 @@ def is_dash_cloned_stack_details(self): :rtype: bool """ - return self._tag == 'dash_cloned_stack_details' + return self._tag == "dash_cloned_stack_details" def is_dash_connector_tools_call_details(self): """ @@ -19222,7 +20171,7 @@ def is_dash_connector_tools_call_details(self): :rtype: bool """ - return self._tag == 'dash_connector_tools_call_details' + return self._tag == "dash_connector_tools_call_details" def is_dash_created_stack_details(self): """ @@ -19230,7 +20179,7 @@ def is_dash_created_stack_details(self): :rtype: bool """ - return self._tag == 'dash_created_stack_details' + return self._tag == "dash_created_stack_details" def is_dash_deleted_comment_from_stack_details(self): """ @@ -19238,7 +20187,7 @@ def is_dash_deleted_comment_from_stack_details(self): :rtype: bool """ - return self._tag == 'dash_deleted_comment_from_stack_details' + return self._tag == "dash_deleted_comment_from_stack_details" def is_dash_deleted_stack_details(self): """ @@ -19246,7 +20195,7 @@ def is_dash_deleted_stack_details(self): :rtype: bool """ - return self._tag == 'dash_deleted_stack_details' + return self._tag == "dash_deleted_stack_details" def is_dash_edited_comment_in_stack_details(self): """ @@ -19254,7 +20203,7 @@ def is_dash_edited_comment_in_stack_details(self): :rtype: bool """ - return self._tag == 'dash_edited_comment_in_stack_details' + return self._tag == "dash_edited_comment_in_stack_details" def is_dash_external_user_opened_stack_details(self): """ @@ -19262,7 +20211,7 @@ def is_dash_external_user_opened_stack_details(self): :rtype: bool """ - return self._tag == 'dash_external_user_opened_stack_details' + return self._tag == "dash_external_user_opened_stack_details" def is_dash_first_launched_desktop_details(self): """ @@ -19270,7 +20219,7 @@ def is_dash_first_launched_desktop_details(self): :rtype: bool """ - return self._tag == 'dash_first_launched_desktop_details' + return self._tag == "dash_first_launched_desktop_details" def is_dash_first_launched_extension_details(self): """ @@ -19278,7 +20227,7 @@ def is_dash_first_launched_extension_details(self): :rtype: bool """ - return self._tag == 'dash_first_launched_extension_details' + return self._tag == "dash_first_launched_extension_details" def is_dash_first_launched_web_start_page_details(self): """ @@ -19286,7 +20235,7 @@ def is_dash_first_launched_web_start_page_details(self): :rtype: bool """ - return self._tag == 'dash_first_launched_web_start_page_details' + return self._tag == "dash_first_launched_web_start_page_details" def is_dash_opened_shared_link_to_stack_details(self): """ @@ -19294,7 +20243,7 @@ def is_dash_opened_shared_link_to_stack_details(self): :rtype: bool """ - return self._tag == 'dash_opened_shared_link_to_stack_details' + return self._tag == "dash_opened_shared_link_to_stack_details" def is_dash_opened_stack_details(self): """ @@ -19302,7 +20251,7 @@ def is_dash_opened_stack_details(self): :rtype: bool """ - return self._tag == 'dash_opened_stack_details' + return self._tag == "dash_opened_stack_details" def is_dash_preview_opt_out_status_changed_details(self): """ @@ -19310,7 +20259,7 @@ def is_dash_preview_opt_out_status_changed_details(self): :rtype: bool """ - return self._tag == 'dash_preview_opt_out_status_changed_details' + return self._tag == "dash_preview_opt_out_status_changed_details" def is_dash_removed_connector_details(self): """ @@ -19318,7 +20267,7 @@ def is_dash_removed_connector_details(self): :rtype: bool """ - return self._tag == 'dash_removed_connector_details' + return self._tag == "dash_removed_connector_details" def is_dash_removed_link_from_stack_details(self): """ @@ -19326,7 +20275,7 @@ def is_dash_removed_link_from_stack_details(self): :rtype: bool """ - return self._tag == 'dash_removed_link_from_stack_details' + return self._tag == "dash_removed_link_from_stack_details" def is_dash_removed_shared_link_to_stack_details(self): """ @@ -19334,7 +20283,7 @@ def is_dash_removed_shared_link_to_stack_details(self): :rtype: bool """ - return self._tag == 'dash_removed_shared_link_to_stack_details' + return self._tag == "dash_removed_shared_link_to_stack_details" def is_dash_removed_team_email_domain_allowlist_details(self): """ @@ -19342,7 +20291,7 @@ def is_dash_removed_team_email_domain_allowlist_details(self): :rtype: bool """ - return self._tag == 'dash_removed_team_email_domain_allowlist_details' + return self._tag == "dash_removed_team_email_domain_allowlist_details" def is_dash_renamed_stack_details(self): """ @@ -19350,7 +20299,7 @@ def is_dash_renamed_stack_details(self): :rtype: bool """ - return self._tag == 'dash_renamed_stack_details' + return self._tag == "dash_renamed_stack_details" def is_dash_shared_link_to_stack_details(self): """ @@ -19358,7 +20307,7 @@ def is_dash_shared_link_to_stack_details(self): :rtype: bool """ - return self._tag == 'dash_shared_link_to_stack_details' + return self._tag == "dash_shared_link_to_stack_details" def is_dash_unarchived_stack_details(self): """ @@ -19366,7 +20315,7 @@ def is_dash_unarchived_stack_details(self): :rtype: bool """ - return self._tag == 'dash_unarchived_stack_details' + return self._tag == "dash_unarchived_stack_details" def is_dash_viewed_company_stack_details(self): """ @@ -19374,7 +20323,7 @@ def is_dash_viewed_company_stack_details(self): :rtype: bool """ - return self._tag == 'dash_viewed_company_stack_details' + return self._tag == "dash_viewed_company_stack_details" def is_dash_viewed_external_ai_activity_report_details(self): """ @@ -19382,7 +20331,7 @@ def is_dash_viewed_external_ai_activity_report_details(self): :rtype: bool """ - return self._tag == 'dash_viewed_external_ai_activity_report_details' + return self._tag == "dash_viewed_external_ai_activity_report_details" def is_governance_policy_add_folders_details(self): """ @@ -19390,7 +20339,7 @@ def is_governance_policy_add_folders_details(self): :rtype: bool """ - return self._tag == 'governance_policy_add_folders_details' + return self._tag == "governance_policy_add_folders_details" def is_governance_policy_add_folder_failed_details(self): """ @@ -19398,7 +20347,7 @@ def is_governance_policy_add_folder_failed_details(self): :rtype: bool """ - return self._tag == 'governance_policy_add_folder_failed_details' + return self._tag == "governance_policy_add_folder_failed_details" def is_governance_policy_content_disposed_details(self): """ @@ -19406,7 +20355,7 @@ def is_governance_policy_content_disposed_details(self): :rtype: bool """ - return self._tag == 'governance_policy_content_disposed_details' + return self._tag == "governance_policy_content_disposed_details" def is_governance_policy_create_details(self): """ @@ -19414,7 +20363,7 @@ def is_governance_policy_create_details(self): :rtype: bool """ - return self._tag == 'governance_policy_create_details' + return self._tag == "governance_policy_create_details" def is_governance_policy_delete_details(self): """ @@ -19422,7 +20371,7 @@ def is_governance_policy_delete_details(self): :rtype: bool """ - return self._tag == 'governance_policy_delete_details' + return self._tag == "governance_policy_delete_details" def is_governance_policy_edit_details_details(self): """ @@ -19430,7 +20379,7 @@ def is_governance_policy_edit_details_details(self): :rtype: bool """ - return self._tag == 'governance_policy_edit_details_details' + return self._tag == "governance_policy_edit_details_details" def is_governance_policy_edit_duration_details(self): """ @@ -19438,7 +20387,7 @@ def is_governance_policy_edit_duration_details(self): :rtype: bool """ - return self._tag == 'governance_policy_edit_duration_details' + return self._tag == "governance_policy_edit_duration_details" def is_governance_policy_export_created_details(self): """ @@ -19446,7 +20395,7 @@ def is_governance_policy_export_created_details(self): :rtype: bool """ - return self._tag == 'governance_policy_export_created_details' + return self._tag == "governance_policy_export_created_details" def is_governance_policy_export_removed_details(self): """ @@ -19454,7 +20403,7 @@ def is_governance_policy_export_removed_details(self): :rtype: bool """ - return self._tag == 'governance_policy_export_removed_details' + return self._tag == "governance_policy_export_removed_details" def is_governance_policy_remove_folders_details(self): """ @@ -19462,7 +20411,7 @@ def is_governance_policy_remove_folders_details(self): :rtype: bool """ - return self._tag == 'governance_policy_remove_folders_details' + return self._tag == "governance_policy_remove_folders_details" def is_governance_policy_report_created_details(self): """ @@ -19470,7 +20419,7 @@ def is_governance_policy_report_created_details(self): :rtype: bool """ - return self._tag == 'governance_policy_report_created_details' + return self._tag == "governance_policy_report_created_details" def is_governance_policy_zip_part_downloaded_details(self): """ @@ -19478,7 +20427,7 @@ def is_governance_policy_zip_part_downloaded_details(self): :rtype: bool """ - return self._tag == 'governance_policy_zip_part_downloaded_details' + return self._tag == "governance_policy_zip_part_downloaded_details" def is_legal_holds_activate_a_hold_details(self): """ @@ -19486,7 +20435,7 @@ def is_legal_holds_activate_a_hold_details(self): :rtype: bool """ - return self._tag == 'legal_holds_activate_a_hold_details' + return self._tag == "legal_holds_activate_a_hold_details" def is_legal_holds_add_members_details(self): """ @@ -19494,7 +20443,7 @@ def is_legal_holds_add_members_details(self): :rtype: bool """ - return self._tag == 'legal_holds_add_members_details' + return self._tag == "legal_holds_add_members_details" def is_legal_holds_change_hold_details_details(self): """ @@ -19502,7 +20451,7 @@ def is_legal_holds_change_hold_details_details(self): :rtype: bool """ - return self._tag == 'legal_holds_change_hold_details_details' + return self._tag == "legal_holds_change_hold_details_details" def is_legal_holds_change_hold_name_details(self): """ @@ -19510,7 +20459,7 @@ def is_legal_holds_change_hold_name_details(self): :rtype: bool """ - return self._tag == 'legal_holds_change_hold_name_details' + return self._tag == "legal_holds_change_hold_name_details" def is_legal_holds_export_a_hold_details(self): """ @@ -19518,7 +20467,7 @@ def is_legal_holds_export_a_hold_details(self): :rtype: bool """ - return self._tag == 'legal_holds_export_a_hold_details' + return self._tag == "legal_holds_export_a_hold_details" def is_legal_holds_export_cancelled_details(self): """ @@ -19526,7 +20475,7 @@ def is_legal_holds_export_cancelled_details(self): :rtype: bool """ - return self._tag == 'legal_holds_export_cancelled_details' + return self._tag == "legal_holds_export_cancelled_details" def is_legal_holds_export_downloaded_details(self): """ @@ -19534,7 +20483,7 @@ def is_legal_holds_export_downloaded_details(self): :rtype: bool """ - return self._tag == 'legal_holds_export_downloaded_details' + return self._tag == "legal_holds_export_downloaded_details" def is_legal_holds_export_removed_details(self): """ @@ -19542,7 +20491,7 @@ def is_legal_holds_export_removed_details(self): :rtype: bool """ - return self._tag == 'legal_holds_export_removed_details' + return self._tag == "legal_holds_export_removed_details" def is_legal_holds_release_a_hold_details(self): """ @@ -19550,7 +20499,7 @@ def is_legal_holds_release_a_hold_details(self): :rtype: bool """ - return self._tag == 'legal_holds_release_a_hold_details' + return self._tag == "legal_holds_release_a_hold_details" def is_legal_holds_remove_members_details(self): """ @@ -19558,7 +20507,7 @@ def is_legal_holds_remove_members_details(self): :rtype: bool """ - return self._tag == 'legal_holds_remove_members_details' + return self._tag == "legal_holds_remove_members_details" def is_legal_holds_report_a_hold_details(self): """ @@ -19566,7 +20515,7 @@ def is_legal_holds_report_a_hold_details(self): :rtype: bool """ - return self._tag == 'legal_holds_report_a_hold_details' + return self._tag == "legal_holds_report_a_hold_details" def is_device_change_ip_desktop_details(self): """ @@ -19574,7 +20523,7 @@ def is_device_change_ip_desktop_details(self): :rtype: bool """ - return self._tag == 'device_change_ip_desktop_details' + return self._tag == "device_change_ip_desktop_details" def is_device_change_ip_mobile_details(self): """ @@ -19582,7 +20531,7 @@ def is_device_change_ip_mobile_details(self): :rtype: bool """ - return self._tag == 'device_change_ip_mobile_details' + return self._tag == "device_change_ip_mobile_details" def is_device_change_ip_web_details(self): """ @@ -19590,7 +20539,7 @@ def is_device_change_ip_web_details(self): :rtype: bool """ - return self._tag == 'device_change_ip_web_details' + return self._tag == "device_change_ip_web_details" def is_device_delete_on_unlink_fail_details(self): """ @@ -19598,7 +20547,7 @@ def is_device_delete_on_unlink_fail_details(self): :rtype: bool """ - return self._tag == 'device_delete_on_unlink_fail_details' + return self._tag == "device_delete_on_unlink_fail_details" def is_device_delete_on_unlink_success_details(self): """ @@ -19606,7 +20555,7 @@ def is_device_delete_on_unlink_success_details(self): :rtype: bool """ - return self._tag == 'device_delete_on_unlink_success_details' + return self._tag == "device_delete_on_unlink_success_details" def is_device_link_fail_details(self): """ @@ -19614,7 +20563,7 @@ def is_device_link_fail_details(self): :rtype: bool """ - return self._tag == 'device_link_fail_details' + return self._tag == "device_link_fail_details" def is_device_link_success_details(self): """ @@ -19622,7 +20571,7 @@ def is_device_link_success_details(self): :rtype: bool """ - return self._tag == 'device_link_success_details' + return self._tag == "device_link_success_details" def is_device_management_disabled_details(self): """ @@ -19630,7 +20579,7 @@ def is_device_management_disabled_details(self): :rtype: bool """ - return self._tag == 'device_management_disabled_details' + return self._tag == "device_management_disabled_details" def is_device_management_enabled_details(self): """ @@ -19638,7 +20587,7 @@ def is_device_management_enabled_details(self): :rtype: bool """ - return self._tag == 'device_management_enabled_details' + return self._tag == "device_management_enabled_details" def is_device_sync_backup_status_changed_details(self): """ @@ -19646,7 +20595,7 @@ def is_device_sync_backup_status_changed_details(self): :rtype: bool """ - return self._tag == 'device_sync_backup_status_changed_details' + return self._tag == "device_sync_backup_status_changed_details" def is_device_unlink_details(self): """ @@ -19654,7 +20603,7 @@ def is_device_unlink_details(self): :rtype: bool """ - return self._tag == 'device_unlink_details' + return self._tag == "device_unlink_details" def is_dropbox_passwords_exported_details(self): """ @@ -19662,7 +20611,7 @@ def is_dropbox_passwords_exported_details(self): :rtype: bool """ - return self._tag == 'dropbox_passwords_exported_details' + return self._tag == "dropbox_passwords_exported_details" def is_dropbox_passwords_new_device_enrolled_details(self): """ @@ -19670,7 +20619,7 @@ def is_dropbox_passwords_new_device_enrolled_details(self): :rtype: bool """ - return self._tag == 'dropbox_passwords_new_device_enrolled_details' + return self._tag == "dropbox_passwords_new_device_enrolled_details" def is_emm_refresh_auth_token_details(self): """ @@ -19678,7 +20627,7 @@ def is_emm_refresh_auth_token_details(self): :rtype: bool """ - return self._tag == 'emm_refresh_auth_token_details' + return self._tag == "emm_refresh_auth_token_details" def is_external_drive_backup_eligibility_status_checked_details(self): """ @@ -19686,7 +20635,7 @@ def is_external_drive_backup_eligibility_status_checked_details(self): :rtype: bool """ - return self._tag == 'external_drive_backup_eligibility_status_checked_details' + return self._tag == "external_drive_backup_eligibility_status_checked_details" def is_external_drive_backup_status_changed_details(self): """ @@ -19694,7 +20643,7 @@ def is_external_drive_backup_status_changed_details(self): :rtype: bool """ - return self._tag == 'external_drive_backup_status_changed_details' + return self._tag == "external_drive_backup_status_changed_details" def is_account_capture_change_availability_details(self): """ @@ -19702,7 +20651,7 @@ def is_account_capture_change_availability_details(self): :rtype: bool """ - return self._tag == 'account_capture_change_availability_details' + return self._tag == "account_capture_change_availability_details" def is_account_capture_migrate_account_details(self): """ @@ -19710,7 +20659,7 @@ def is_account_capture_migrate_account_details(self): :rtype: bool """ - return self._tag == 'account_capture_migrate_account_details' + return self._tag == "account_capture_migrate_account_details" def is_account_capture_notification_emails_sent_details(self): """ @@ -19718,7 +20667,7 @@ def is_account_capture_notification_emails_sent_details(self): :rtype: bool """ - return self._tag == 'account_capture_notification_emails_sent_details' + return self._tag == "account_capture_notification_emails_sent_details" def is_account_capture_relinquish_account_details(self): """ @@ -19726,7 +20675,7 @@ def is_account_capture_relinquish_account_details(self): :rtype: bool """ - return self._tag == 'account_capture_relinquish_account_details' + return self._tag == "account_capture_relinquish_account_details" def is_disabled_domain_invites_details(self): """ @@ -19734,7 +20683,7 @@ def is_disabled_domain_invites_details(self): :rtype: bool """ - return self._tag == 'disabled_domain_invites_details' + return self._tag == "disabled_domain_invites_details" def is_domain_invites_approve_request_to_join_team_details(self): """ @@ -19742,7 +20691,7 @@ def is_domain_invites_approve_request_to_join_team_details(self): :rtype: bool """ - return self._tag == 'domain_invites_approve_request_to_join_team_details' + return self._tag == "domain_invites_approve_request_to_join_team_details" def is_domain_invites_decline_request_to_join_team_details(self): """ @@ -19750,7 +20699,7 @@ def is_domain_invites_decline_request_to_join_team_details(self): :rtype: bool """ - return self._tag == 'domain_invites_decline_request_to_join_team_details' + return self._tag == "domain_invites_decline_request_to_join_team_details" def is_domain_invites_email_existing_users_details(self): """ @@ -19758,7 +20707,7 @@ def is_domain_invites_email_existing_users_details(self): :rtype: bool """ - return self._tag == 'domain_invites_email_existing_users_details' + return self._tag == "domain_invites_email_existing_users_details" def is_domain_invites_request_to_join_team_details(self): """ @@ -19766,7 +20715,7 @@ def is_domain_invites_request_to_join_team_details(self): :rtype: bool """ - return self._tag == 'domain_invites_request_to_join_team_details' + return self._tag == "domain_invites_request_to_join_team_details" def is_domain_invites_set_invite_new_user_pref_to_no_details(self): """ @@ -19774,7 +20723,7 @@ def is_domain_invites_set_invite_new_user_pref_to_no_details(self): :rtype: bool """ - return self._tag == 'domain_invites_set_invite_new_user_pref_to_no_details' + return self._tag == "domain_invites_set_invite_new_user_pref_to_no_details" def is_domain_invites_set_invite_new_user_pref_to_yes_details(self): """ @@ -19782,7 +20731,7 @@ def is_domain_invites_set_invite_new_user_pref_to_yes_details(self): :rtype: bool """ - return self._tag == 'domain_invites_set_invite_new_user_pref_to_yes_details' + return self._tag == "domain_invites_set_invite_new_user_pref_to_yes_details" def is_domain_verification_add_domain_fail_details(self): """ @@ -19790,7 +20739,7 @@ def is_domain_verification_add_domain_fail_details(self): :rtype: bool """ - return self._tag == 'domain_verification_add_domain_fail_details' + return self._tag == "domain_verification_add_domain_fail_details" def is_domain_verification_add_domain_success_details(self): """ @@ -19798,7 +20747,7 @@ def is_domain_verification_add_domain_success_details(self): :rtype: bool """ - return self._tag == 'domain_verification_add_domain_success_details' + return self._tag == "domain_verification_add_domain_success_details" def is_domain_verification_remove_domain_details(self): """ @@ -19806,7 +20755,7 @@ def is_domain_verification_remove_domain_details(self): :rtype: bool """ - return self._tag == 'domain_verification_remove_domain_details' + return self._tag == "domain_verification_remove_domain_details" def is_enabled_domain_invites_details(self): """ @@ -19814,7 +20763,7 @@ def is_enabled_domain_invites_details(self): :rtype: bool """ - return self._tag == 'enabled_domain_invites_details' + return self._tag == "enabled_domain_invites_details" def is_encrypted_folder_cancel_team_key_rotation_details(self): """ @@ -19822,7 +20771,7 @@ def is_encrypted_folder_cancel_team_key_rotation_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_cancel_team_key_rotation_details' + return self._tag == "encrypted_folder_cancel_team_key_rotation_details" def is_encrypted_folder_enroll_backup_key_details(self): """ @@ -19830,7 +20779,7 @@ def is_encrypted_folder_enroll_backup_key_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_enroll_backup_key_details' + return self._tag == "encrypted_folder_enroll_backup_key_details" def is_encrypted_folder_enroll_client_details(self): """ @@ -19838,7 +20787,7 @@ def is_encrypted_folder_enroll_client_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_enroll_client_details' + return self._tag == "encrypted_folder_enroll_client_details" def is_encrypted_folder_enroll_team_details(self): """ @@ -19846,7 +20795,7 @@ def is_encrypted_folder_enroll_team_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_enroll_team_details' + return self._tag == "encrypted_folder_enroll_team_details" def is_encrypted_folder_finish_team_unenrollment_details(self): """ @@ -19854,7 +20803,7 @@ def is_encrypted_folder_finish_team_unenrollment_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_finish_team_unenrollment_details' + return self._tag == "encrypted_folder_finish_team_unenrollment_details" def is_encrypted_folder_init_team_key_rotation_details(self): """ @@ -19862,7 +20811,7 @@ def is_encrypted_folder_init_team_key_rotation_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_init_team_key_rotation_details' + return self._tag == "encrypted_folder_init_team_key_rotation_details" def is_encrypted_folder_init_team_unenrollment_details(self): """ @@ -19870,7 +20819,7 @@ def is_encrypted_folder_init_team_unenrollment_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_init_team_unenrollment_details' + return self._tag == "encrypted_folder_init_team_unenrollment_details" def is_encrypted_folder_remove_backup_key_details(self): """ @@ -19878,7 +20827,7 @@ def is_encrypted_folder_remove_backup_key_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_remove_backup_key_details' + return self._tag == "encrypted_folder_remove_backup_key_details" def is_encrypted_folder_rotate_team_key_details(self): """ @@ -19886,7 +20835,7 @@ def is_encrypted_folder_rotate_team_key_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_rotate_team_key_details' + return self._tag == "encrypted_folder_rotate_team_key_details" def is_encrypted_folder_unenroll_client_details(self): """ @@ -19894,7 +20843,7 @@ def is_encrypted_folder_unenroll_client_details(self): :rtype: bool """ - return self._tag == 'encrypted_folder_unenroll_client_details' + return self._tag == "encrypted_folder_unenroll_client_details" def is_team_encryption_key_activate_key_details(self): """ @@ -19902,7 +20851,7 @@ def is_team_encryption_key_activate_key_details(self): :rtype: bool """ - return self._tag == 'team_encryption_key_activate_key_details' + return self._tag == "team_encryption_key_activate_key_details" def is_team_encryption_key_cancel_key_deletion_details(self): """ @@ -19910,7 +20859,7 @@ def is_team_encryption_key_cancel_key_deletion_details(self): :rtype: bool """ - return self._tag == 'team_encryption_key_cancel_key_deletion_details' + return self._tag == "team_encryption_key_cancel_key_deletion_details" def is_team_encryption_key_create_key_details(self): """ @@ -19918,7 +20867,7 @@ def is_team_encryption_key_create_key_details(self): :rtype: bool """ - return self._tag == 'team_encryption_key_create_key_details' + return self._tag == "team_encryption_key_create_key_details" def is_team_encryption_key_deactivate_key_details(self): """ @@ -19926,7 +20875,7 @@ def is_team_encryption_key_deactivate_key_details(self): :rtype: bool """ - return self._tag == 'team_encryption_key_deactivate_key_details' + return self._tag == "team_encryption_key_deactivate_key_details" def is_team_encryption_key_delete_key_details(self): """ @@ -19934,7 +20883,7 @@ def is_team_encryption_key_delete_key_details(self): :rtype: bool """ - return self._tag == 'team_encryption_key_delete_key_details' + return self._tag == "team_encryption_key_delete_key_details" def is_team_encryption_key_disable_key_details(self): """ @@ -19942,7 +20891,7 @@ def is_team_encryption_key_disable_key_details(self): :rtype: bool """ - return self._tag == 'team_encryption_key_disable_key_details' + return self._tag == "team_encryption_key_disable_key_details" def is_team_encryption_key_enable_key_details(self): """ @@ -19950,7 +20899,7 @@ def is_team_encryption_key_enable_key_details(self): :rtype: bool """ - return self._tag == 'team_encryption_key_enable_key_details' + return self._tag == "team_encryption_key_enable_key_details" def is_team_encryption_key_rotate_key_details(self): """ @@ -19958,7 +20907,7 @@ def is_team_encryption_key_rotate_key_details(self): :rtype: bool """ - return self._tag == 'team_encryption_key_rotate_key_details' + return self._tag == "team_encryption_key_rotate_key_details" def is_team_encryption_key_schedule_key_deletion_details(self): """ @@ -19966,7 +20915,7 @@ def is_team_encryption_key_schedule_key_deletion_details(self): :rtype: bool """ - return self._tag == 'team_encryption_key_schedule_key_deletion_details' + return self._tag == "team_encryption_key_schedule_key_deletion_details" def is_apply_naming_convention_details(self): """ @@ -19974,7 +20923,7 @@ def is_apply_naming_convention_details(self): :rtype: bool """ - return self._tag == 'apply_naming_convention_details' + return self._tag == "apply_naming_convention_details" def is_create_folder_details(self): """ @@ -19982,7 +20931,7 @@ def is_create_folder_details(self): :rtype: bool """ - return self._tag == 'create_folder_details' + return self._tag == "create_folder_details" def is_file_add_details(self): """ @@ -19990,7 +20939,7 @@ def is_file_add_details(self): :rtype: bool """ - return self._tag == 'file_add_details' + return self._tag == "file_add_details" def is_file_add_from_automation_details(self): """ @@ -19998,7 +20947,7 @@ def is_file_add_from_automation_details(self): :rtype: bool """ - return self._tag == 'file_add_from_automation_details' + return self._tag == "file_add_from_automation_details" def is_file_copy_details(self): """ @@ -20006,7 +20955,7 @@ def is_file_copy_details(self): :rtype: bool """ - return self._tag == 'file_copy_details' + return self._tag == "file_copy_details" def is_file_delete_details(self): """ @@ -20014,7 +20963,7 @@ def is_file_delete_details(self): :rtype: bool """ - return self._tag == 'file_delete_details' + return self._tag == "file_delete_details" def is_file_download_details(self): """ @@ -20022,7 +20971,7 @@ def is_file_download_details(self): :rtype: bool """ - return self._tag == 'file_download_details' + return self._tag == "file_download_details" def is_file_edit_details(self): """ @@ -20030,7 +20979,7 @@ def is_file_edit_details(self): :rtype: bool """ - return self._tag == 'file_edit_details' + return self._tag == "file_edit_details" def is_file_get_copy_reference_details(self): """ @@ -20038,7 +20987,7 @@ def is_file_get_copy_reference_details(self): :rtype: bool """ - return self._tag == 'file_get_copy_reference_details' + return self._tag == "file_get_copy_reference_details" def is_file_locking_lock_status_changed_details(self): """ @@ -20046,7 +20995,7 @@ def is_file_locking_lock_status_changed_details(self): :rtype: bool """ - return self._tag == 'file_locking_lock_status_changed_details' + return self._tag == "file_locking_lock_status_changed_details" def is_file_move_details(self): """ @@ -20054,7 +21003,7 @@ def is_file_move_details(self): :rtype: bool """ - return self._tag == 'file_move_details' + return self._tag == "file_move_details" def is_file_permanently_delete_details(self): """ @@ -20062,7 +21011,7 @@ def is_file_permanently_delete_details(self): :rtype: bool """ - return self._tag == 'file_permanently_delete_details' + return self._tag == "file_permanently_delete_details" def is_file_preview_details(self): """ @@ -20070,7 +21019,7 @@ def is_file_preview_details(self): :rtype: bool """ - return self._tag == 'file_preview_details' + return self._tag == "file_preview_details" def is_file_rename_details(self): """ @@ -20078,7 +21027,7 @@ def is_file_rename_details(self): :rtype: bool """ - return self._tag == 'file_rename_details' + return self._tag == "file_rename_details" def is_file_restore_details(self): """ @@ -20086,7 +21035,7 @@ def is_file_restore_details(self): :rtype: bool """ - return self._tag == 'file_restore_details' + return self._tag == "file_restore_details" def is_file_revert_details(self): """ @@ -20094,7 +21043,7 @@ def is_file_revert_details(self): :rtype: bool """ - return self._tag == 'file_revert_details' + return self._tag == "file_revert_details" def is_file_rollback_changes_details(self): """ @@ -20102,7 +21051,7 @@ def is_file_rollback_changes_details(self): :rtype: bool """ - return self._tag == 'file_rollback_changes_details' + return self._tag == "file_rollback_changes_details" def is_file_save_copy_reference_details(self): """ @@ -20110,7 +21059,7 @@ def is_file_save_copy_reference_details(self): :rtype: bool """ - return self._tag == 'file_save_copy_reference_details' + return self._tag == "file_save_copy_reference_details" def is_folder_overview_description_changed_details(self): """ @@ -20118,7 +21067,7 @@ def is_folder_overview_description_changed_details(self): :rtype: bool """ - return self._tag == 'folder_overview_description_changed_details' + return self._tag == "folder_overview_description_changed_details" def is_folder_overview_item_pinned_details(self): """ @@ -20126,7 +21075,7 @@ def is_folder_overview_item_pinned_details(self): :rtype: bool """ - return self._tag == 'folder_overview_item_pinned_details' + return self._tag == "folder_overview_item_pinned_details" def is_folder_overview_item_unpinned_details(self): """ @@ -20134,7 +21083,7 @@ def is_folder_overview_item_unpinned_details(self): :rtype: bool """ - return self._tag == 'folder_overview_item_unpinned_details' + return self._tag == "folder_overview_item_unpinned_details" def is_media_hub_file_downloaded_details(self): """ @@ -20142,7 +21091,7 @@ def is_media_hub_file_downloaded_details(self): :rtype: bool """ - return self._tag == 'media_hub_file_downloaded_details' + return self._tag == "media_hub_file_downloaded_details" def is_object_label_added_details(self): """ @@ -20150,7 +21099,7 @@ def is_object_label_added_details(self): :rtype: bool """ - return self._tag == 'object_label_added_details' + return self._tag == "object_label_added_details" def is_object_label_removed_details(self): """ @@ -20158,7 +21107,7 @@ def is_object_label_removed_details(self): :rtype: bool """ - return self._tag == 'object_label_removed_details' + return self._tag == "object_label_removed_details" def is_object_label_updated_value_details(self): """ @@ -20166,7 +21115,7 @@ def is_object_label_updated_value_details(self): :rtype: bool """ - return self._tag == 'object_label_updated_value_details' + return self._tag == "object_label_updated_value_details" def is_organize_folder_with_tidy_details(self): """ @@ -20174,7 +21123,7 @@ def is_organize_folder_with_tidy_details(self): :rtype: bool """ - return self._tag == 'organize_folder_with_tidy_details' + return self._tag == "organize_folder_with_tidy_details" def is_replay_file_delete_details(self): """ @@ -20182,7 +21131,7 @@ def is_replay_file_delete_details(self): :rtype: bool """ - return self._tag == 'replay_file_delete_details' + return self._tag == "replay_file_delete_details" def is_replay_file_downloaded_details(self): """ @@ -20190,7 +21139,7 @@ def is_replay_file_downloaded_details(self): :rtype: bool """ - return self._tag == 'replay_file_downloaded_details' + return self._tag == "replay_file_downloaded_details" def is_replay_team_project_created_details(self): """ @@ -20198,7 +21147,7 @@ def is_replay_team_project_created_details(self): :rtype: bool """ - return self._tag == 'replay_team_project_created_details' + return self._tag == "replay_team_project_created_details" def is_rewind_folder_details(self): """ @@ -20206,7 +21155,7 @@ def is_rewind_folder_details(self): :rtype: bool """ - return self._tag == 'rewind_folder_details' + return self._tag == "rewind_folder_details" def is_undo_naming_convention_details(self): """ @@ -20214,7 +21163,7 @@ def is_undo_naming_convention_details(self): :rtype: bool """ - return self._tag == 'undo_naming_convention_details' + return self._tag == "undo_naming_convention_details" def is_undo_organize_folder_with_tidy_details(self): """ @@ -20222,7 +21171,7 @@ def is_undo_organize_folder_with_tidy_details(self): :rtype: bool """ - return self._tag == 'undo_organize_folder_with_tidy_details' + return self._tag == "undo_organize_folder_with_tidy_details" def is_user_tags_added_details(self): """ @@ -20230,7 +21179,7 @@ def is_user_tags_added_details(self): :rtype: bool """ - return self._tag == 'user_tags_added_details' + return self._tag == "user_tags_added_details" def is_user_tags_removed_details(self): """ @@ -20238,7 +21187,7 @@ def is_user_tags_removed_details(self): :rtype: bool """ - return self._tag == 'user_tags_removed_details' + return self._tag == "user_tags_removed_details" def is_email_ingest_receive_file_details(self): """ @@ -20246,7 +21195,7 @@ def is_email_ingest_receive_file_details(self): :rtype: bool """ - return self._tag == 'email_ingest_receive_file_details' + return self._tag == "email_ingest_receive_file_details" def is_file_request_auto_close_details(self): """ @@ -20254,7 +21203,7 @@ def is_file_request_auto_close_details(self): :rtype: bool """ - return self._tag == 'file_request_auto_close_details' + return self._tag == "file_request_auto_close_details" def is_file_request_change_details(self): """ @@ -20262,7 +21211,7 @@ def is_file_request_change_details(self): :rtype: bool """ - return self._tag == 'file_request_change_details' + return self._tag == "file_request_change_details" def is_file_request_close_details(self): """ @@ -20270,7 +21219,7 @@ def is_file_request_close_details(self): :rtype: bool """ - return self._tag == 'file_request_close_details' + return self._tag == "file_request_close_details" def is_file_request_create_details(self): """ @@ -20278,7 +21227,7 @@ def is_file_request_create_details(self): :rtype: bool """ - return self._tag == 'file_request_create_details' + return self._tag == "file_request_create_details" def is_file_request_delete_details(self): """ @@ -20286,7 +21235,7 @@ def is_file_request_delete_details(self): :rtype: bool """ - return self._tag == 'file_request_delete_details' + return self._tag == "file_request_delete_details" def is_file_request_receive_file_details(self): """ @@ -20294,7 +21243,7 @@ def is_file_request_receive_file_details(self): :rtype: bool """ - return self._tag == 'file_request_receive_file_details' + return self._tag == "file_request_receive_file_details" def is_group_add_external_id_details(self): """ @@ -20302,7 +21251,7 @@ def is_group_add_external_id_details(self): :rtype: bool """ - return self._tag == 'group_add_external_id_details' + return self._tag == "group_add_external_id_details" def is_group_add_member_details(self): """ @@ -20310,7 +21259,7 @@ def is_group_add_member_details(self): :rtype: bool """ - return self._tag == 'group_add_member_details' + return self._tag == "group_add_member_details" def is_group_change_external_id_details(self): """ @@ -20318,7 +21267,7 @@ def is_group_change_external_id_details(self): :rtype: bool """ - return self._tag == 'group_change_external_id_details' + return self._tag == "group_change_external_id_details" def is_group_change_management_type_details(self): """ @@ -20326,7 +21275,7 @@ def is_group_change_management_type_details(self): :rtype: bool """ - return self._tag == 'group_change_management_type_details' + return self._tag == "group_change_management_type_details" def is_group_change_member_role_details(self): """ @@ -20334,7 +21283,7 @@ def is_group_change_member_role_details(self): :rtype: bool """ - return self._tag == 'group_change_member_role_details' + return self._tag == "group_change_member_role_details" def is_group_create_details(self): """ @@ -20342,7 +21291,7 @@ def is_group_create_details(self): :rtype: bool """ - return self._tag == 'group_create_details' + return self._tag == "group_create_details" def is_group_delete_details(self): """ @@ -20350,7 +21299,7 @@ def is_group_delete_details(self): :rtype: bool """ - return self._tag == 'group_delete_details' + return self._tag == "group_delete_details" def is_group_description_updated_details(self): """ @@ -20358,7 +21307,7 @@ def is_group_description_updated_details(self): :rtype: bool """ - return self._tag == 'group_description_updated_details' + return self._tag == "group_description_updated_details" def is_group_external_sharing_setting_override_changed_details(self): """ @@ -20366,7 +21315,7 @@ def is_group_external_sharing_setting_override_changed_details(self): :rtype: bool """ - return self._tag == 'group_external_sharing_setting_override_changed_details' + return self._tag == "group_external_sharing_setting_override_changed_details" def is_group_join_policy_updated_details(self): """ @@ -20374,7 +21323,7 @@ def is_group_join_policy_updated_details(self): :rtype: bool """ - return self._tag == 'group_join_policy_updated_details' + return self._tag == "group_join_policy_updated_details" def is_group_moved_details(self): """ @@ -20382,7 +21331,7 @@ def is_group_moved_details(self): :rtype: bool """ - return self._tag == 'group_moved_details' + return self._tag == "group_moved_details" def is_group_remove_external_id_details(self): """ @@ -20390,7 +21339,7 @@ def is_group_remove_external_id_details(self): :rtype: bool """ - return self._tag == 'group_remove_external_id_details' + return self._tag == "group_remove_external_id_details" def is_group_remove_member_details(self): """ @@ -20398,7 +21347,7 @@ def is_group_remove_member_details(self): :rtype: bool """ - return self._tag == 'group_remove_member_details' + return self._tag == "group_remove_member_details" def is_group_rename_details(self): """ @@ -20406,7 +21355,7 @@ def is_group_rename_details(self): :rtype: bool """ - return self._tag == 'group_rename_details' + return self._tag == "group_rename_details" def is_account_lock_or_unlocked_details(self): """ @@ -20414,7 +21363,7 @@ def is_account_lock_or_unlocked_details(self): :rtype: bool """ - return self._tag == 'account_lock_or_unlocked_details' + return self._tag == "account_lock_or_unlocked_details" def is_emm_error_details(self): """ @@ -20422,7 +21371,7 @@ def is_emm_error_details(self): :rtype: bool """ - return self._tag == 'emm_error_details' + return self._tag == "emm_error_details" def is_guest_admin_signed_in_via_trusted_teams_details(self): """ @@ -20430,7 +21379,7 @@ def is_guest_admin_signed_in_via_trusted_teams_details(self): :rtype: bool """ - return self._tag == 'guest_admin_signed_in_via_trusted_teams_details' + return self._tag == "guest_admin_signed_in_via_trusted_teams_details" def is_guest_admin_signed_out_via_trusted_teams_details(self): """ @@ -20438,7 +21387,7 @@ def is_guest_admin_signed_out_via_trusted_teams_details(self): :rtype: bool """ - return self._tag == 'guest_admin_signed_out_via_trusted_teams_details' + return self._tag == "guest_admin_signed_out_via_trusted_teams_details" def is_login_fail_details(self): """ @@ -20446,7 +21395,7 @@ def is_login_fail_details(self): :rtype: bool """ - return self._tag == 'login_fail_details' + return self._tag == "login_fail_details" def is_login_success_details(self): """ @@ -20454,7 +21403,7 @@ def is_login_success_details(self): :rtype: bool """ - return self._tag == 'login_success_details' + return self._tag == "login_success_details" def is_logout_details(self): """ @@ -20462,7 +21411,7 @@ def is_logout_details(self): :rtype: bool """ - return self._tag == 'logout_details' + return self._tag == "logout_details" def is_reseller_support_session_end_details(self): """ @@ -20470,7 +21419,7 @@ def is_reseller_support_session_end_details(self): :rtype: bool """ - return self._tag == 'reseller_support_session_end_details' + return self._tag == "reseller_support_session_end_details" def is_reseller_support_session_start_details(self): """ @@ -20478,7 +21427,7 @@ def is_reseller_support_session_start_details(self): :rtype: bool """ - return self._tag == 'reseller_support_session_start_details' + return self._tag == "reseller_support_session_start_details" def is_sign_in_as_session_end_details(self): """ @@ -20486,7 +21435,7 @@ def is_sign_in_as_session_end_details(self): :rtype: bool """ - return self._tag == 'sign_in_as_session_end_details' + return self._tag == "sign_in_as_session_end_details" def is_sign_in_as_session_start_details(self): """ @@ -20494,7 +21443,7 @@ def is_sign_in_as_session_start_details(self): :rtype: bool """ - return self._tag == 'sign_in_as_session_start_details' + return self._tag == "sign_in_as_session_start_details" def is_sso_error_details(self): """ @@ -20502,7 +21451,7 @@ def is_sso_error_details(self): :rtype: bool """ - return self._tag == 'sso_error_details' + return self._tag == "sso_error_details" def is_addon_assigned_details(self): """ @@ -20510,7 +21459,7 @@ def is_addon_assigned_details(self): :rtype: bool """ - return self._tag == 'addon_assigned_details' + return self._tag == "addon_assigned_details" def is_addon_removed_details(self): """ @@ -20518,7 +21467,7 @@ def is_addon_removed_details(self): :rtype: bool """ - return self._tag == 'addon_removed_details' + return self._tag == "addon_removed_details" def is_backup_admin_invitation_sent_details(self): """ @@ -20526,7 +21475,7 @@ def is_backup_admin_invitation_sent_details(self): :rtype: bool """ - return self._tag == 'backup_admin_invitation_sent_details' + return self._tag == "backup_admin_invitation_sent_details" def is_backup_invitation_opened_details(self): """ @@ -20534,7 +21483,7 @@ def is_backup_invitation_opened_details(self): :rtype: bool """ - return self._tag == 'backup_invitation_opened_details' + return self._tag == "backup_invitation_opened_details" def is_create_team_invite_link_details(self): """ @@ -20542,7 +21491,7 @@ def is_create_team_invite_link_details(self): :rtype: bool """ - return self._tag == 'create_team_invite_link_details' + return self._tag == "create_team_invite_link_details" def is_delete_team_invite_link_details(self): """ @@ -20550,7 +21499,7 @@ def is_delete_team_invite_link_details(self): :rtype: bool """ - return self._tag == 'delete_team_invite_link_details' + return self._tag == "delete_team_invite_link_details" def is_member_add_external_id_details(self): """ @@ -20558,7 +21507,7 @@ def is_member_add_external_id_details(self): :rtype: bool """ - return self._tag == 'member_add_external_id_details' + return self._tag == "member_add_external_id_details" def is_member_add_name_details(self): """ @@ -20566,7 +21515,7 @@ def is_member_add_name_details(self): :rtype: bool """ - return self._tag == 'member_add_name_details' + return self._tag == "member_add_name_details" def is_member_change_admin_role_details(self): """ @@ -20574,7 +21523,7 @@ def is_member_change_admin_role_details(self): :rtype: bool """ - return self._tag == 'member_change_admin_role_details' + return self._tag == "member_change_admin_role_details" def is_member_change_email_details(self): """ @@ -20582,7 +21531,7 @@ def is_member_change_email_details(self): :rtype: bool """ - return self._tag == 'member_change_email_details' + return self._tag == "member_change_email_details" def is_member_change_external_id_details(self): """ @@ -20590,7 +21539,7 @@ def is_member_change_external_id_details(self): :rtype: bool """ - return self._tag == 'member_change_external_id_details' + return self._tag == "member_change_external_id_details" def is_member_change_membership_type_details(self): """ @@ -20598,7 +21547,7 @@ def is_member_change_membership_type_details(self): :rtype: bool """ - return self._tag == 'member_change_membership_type_details' + return self._tag == "member_change_membership_type_details" def is_member_change_name_details(self): """ @@ -20606,7 +21555,7 @@ def is_member_change_name_details(self): :rtype: bool """ - return self._tag == 'member_change_name_details' + return self._tag == "member_change_name_details" def is_member_change_reseller_role_details(self): """ @@ -20614,7 +21563,7 @@ def is_member_change_reseller_role_details(self): :rtype: bool """ - return self._tag == 'member_change_reseller_role_details' + return self._tag == "member_change_reseller_role_details" def is_member_change_status_details(self): """ @@ -20622,7 +21571,7 @@ def is_member_change_status_details(self): :rtype: bool """ - return self._tag == 'member_change_status_details' + return self._tag == "member_change_status_details" def is_member_delete_manual_contacts_details(self): """ @@ -20630,7 +21579,7 @@ def is_member_delete_manual_contacts_details(self): :rtype: bool """ - return self._tag == 'member_delete_manual_contacts_details' + return self._tag == "member_delete_manual_contacts_details" def is_member_delete_profile_photo_details(self): """ @@ -20638,7 +21587,7 @@ def is_member_delete_profile_photo_details(self): :rtype: bool """ - return self._tag == 'member_delete_profile_photo_details' + return self._tag == "member_delete_profile_photo_details" def is_member_permanently_delete_account_contents_details(self): """ @@ -20646,7 +21595,7 @@ def is_member_permanently_delete_account_contents_details(self): :rtype: bool """ - return self._tag == 'member_permanently_delete_account_contents_details' + return self._tag == "member_permanently_delete_account_contents_details" def is_member_remove_external_id_details(self): """ @@ -20654,7 +21603,7 @@ def is_member_remove_external_id_details(self): :rtype: bool """ - return self._tag == 'member_remove_external_id_details' + return self._tag == "member_remove_external_id_details" def is_member_set_profile_photo_details(self): """ @@ -20662,7 +21611,7 @@ def is_member_set_profile_photo_details(self): :rtype: bool """ - return self._tag == 'member_set_profile_photo_details' + return self._tag == "member_set_profile_photo_details" def is_member_space_limits_add_custom_quota_details(self): """ @@ -20670,7 +21619,7 @@ def is_member_space_limits_add_custom_quota_details(self): :rtype: bool """ - return self._tag == 'member_space_limits_add_custom_quota_details' + return self._tag == "member_space_limits_add_custom_quota_details" def is_member_space_limits_change_custom_quota_details(self): """ @@ -20678,7 +21627,7 @@ def is_member_space_limits_change_custom_quota_details(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_custom_quota_details' + return self._tag == "member_space_limits_change_custom_quota_details" def is_member_space_limits_change_status_details(self): """ @@ -20686,7 +21635,7 @@ def is_member_space_limits_change_status_details(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_status_details' + return self._tag == "member_space_limits_change_status_details" def is_member_space_limits_remove_custom_quota_details(self): """ @@ -20694,7 +21643,7 @@ def is_member_space_limits_remove_custom_quota_details(self): :rtype: bool """ - return self._tag == 'member_space_limits_remove_custom_quota_details' + return self._tag == "member_space_limits_remove_custom_quota_details" def is_member_suggest_details(self): """ @@ -20702,7 +21651,7 @@ def is_member_suggest_details(self): :rtype: bool """ - return self._tag == 'member_suggest_details' + return self._tag == "member_suggest_details" def is_member_transfer_account_contents_details(self): """ @@ -20710,7 +21659,7 @@ def is_member_transfer_account_contents_details(self): :rtype: bool """ - return self._tag == 'member_transfer_account_contents_details' + return self._tag == "member_transfer_account_contents_details" def is_pending_secondary_email_added_details(self): """ @@ -20718,7 +21667,7 @@ def is_pending_secondary_email_added_details(self): :rtype: bool """ - return self._tag == 'pending_secondary_email_added_details' + return self._tag == "pending_secondary_email_added_details" def is_product_assigned_to_member_details(self): """ @@ -20726,7 +21675,7 @@ def is_product_assigned_to_member_details(self): :rtype: bool """ - return self._tag == 'product_assigned_to_member_details' + return self._tag == "product_assigned_to_member_details" def is_product_removed_from_member_details(self): """ @@ -20734,7 +21683,7 @@ def is_product_removed_from_member_details(self): :rtype: bool """ - return self._tag == 'product_removed_from_member_details' + return self._tag == "product_removed_from_member_details" def is_secondary_email_deleted_details(self): """ @@ -20742,7 +21691,7 @@ def is_secondary_email_deleted_details(self): :rtype: bool """ - return self._tag == 'secondary_email_deleted_details' + return self._tag == "secondary_email_deleted_details" def is_secondary_email_verified_details(self): """ @@ -20750,7 +21699,7 @@ def is_secondary_email_verified_details(self): :rtype: bool """ - return self._tag == 'secondary_email_verified_details' + return self._tag == "secondary_email_verified_details" def is_secondary_mails_policy_changed_details(self): """ @@ -20758,7 +21707,7 @@ def is_secondary_mails_policy_changed_details(self): :rtype: bool """ - return self._tag == 'secondary_mails_policy_changed_details' + return self._tag == "secondary_mails_policy_changed_details" def is_binder_add_page_details(self): """ @@ -20766,7 +21715,7 @@ def is_binder_add_page_details(self): :rtype: bool """ - return self._tag == 'binder_add_page_details' + return self._tag == "binder_add_page_details" def is_binder_add_section_details(self): """ @@ -20774,7 +21723,7 @@ def is_binder_add_section_details(self): :rtype: bool """ - return self._tag == 'binder_add_section_details' + return self._tag == "binder_add_section_details" def is_binder_remove_page_details(self): """ @@ -20782,7 +21731,7 @@ def is_binder_remove_page_details(self): :rtype: bool """ - return self._tag == 'binder_remove_page_details' + return self._tag == "binder_remove_page_details" def is_binder_remove_section_details(self): """ @@ -20790,7 +21739,7 @@ def is_binder_remove_section_details(self): :rtype: bool """ - return self._tag == 'binder_remove_section_details' + return self._tag == "binder_remove_section_details" def is_binder_rename_page_details(self): """ @@ -20798,7 +21747,7 @@ def is_binder_rename_page_details(self): :rtype: bool """ - return self._tag == 'binder_rename_page_details' + return self._tag == "binder_rename_page_details" def is_binder_rename_section_details(self): """ @@ -20806,7 +21755,7 @@ def is_binder_rename_section_details(self): :rtype: bool """ - return self._tag == 'binder_rename_section_details' + return self._tag == "binder_rename_section_details" def is_binder_reorder_page_details(self): """ @@ -20814,7 +21763,7 @@ def is_binder_reorder_page_details(self): :rtype: bool """ - return self._tag == 'binder_reorder_page_details' + return self._tag == "binder_reorder_page_details" def is_binder_reorder_section_details(self): """ @@ -20822,7 +21771,7 @@ def is_binder_reorder_section_details(self): :rtype: bool """ - return self._tag == 'binder_reorder_section_details' + return self._tag == "binder_reorder_section_details" def is_paper_content_add_member_details(self): """ @@ -20830,7 +21779,7 @@ def is_paper_content_add_member_details(self): :rtype: bool """ - return self._tag == 'paper_content_add_member_details' + return self._tag == "paper_content_add_member_details" def is_paper_content_add_to_folder_details(self): """ @@ -20838,7 +21787,7 @@ def is_paper_content_add_to_folder_details(self): :rtype: bool """ - return self._tag == 'paper_content_add_to_folder_details' + return self._tag == "paper_content_add_to_folder_details" def is_paper_content_archive_details(self): """ @@ -20846,7 +21795,7 @@ def is_paper_content_archive_details(self): :rtype: bool """ - return self._tag == 'paper_content_archive_details' + return self._tag == "paper_content_archive_details" def is_paper_content_create_details(self): """ @@ -20854,7 +21803,7 @@ def is_paper_content_create_details(self): :rtype: bool """ - return self._tag == 'paper_content_create_details' + return self._tag == "paper_content_create_details" def is_paper_content_permanently_delete_details(self): """ @@ -20862,7 +21811,7 @@ def is_paper_content_permanently_delete_details(self): :rtype: bool """ - return self._tag == 'paper_content_permanently_delete_details' + return self._tag == "paper_content_permanently_delete_details" def is_paper_content_remove_from_folder_details(self): """ @@ -20870,7 +21819,7 @@ def is_paper_content_remove_from_folder_details(self): :rtype: bool """ - return self._tag == 'paper_content_remove_from_folder_details' + return self._tag == "paper_content_remove_from_folder_details" def is_paper_content_remove_member_details(self): """ @@ -20878,7 +21827,7 @@ def is_paper_content_remove_member_details(self): :rtype: bool """ - return self._tag == 'paper_content_remove_member_details' + return self._tag == "paper_content_remove_member_details" def is_paper_content_rename_details(self): """ @@ -20886,7 +21835,7 @@ def is_paper_content_rename_details(self): :rtype: bool """ - return self._tag == 'paper_content_rename_details' + return self._tag == "paper_content_rename_details" def is_paper_content_restore_details(self): """ @@ -20894,7 +21843,7 @@ def is_paper_content_restore_details(self): :rtype: bool """ - return self._tag == 'paper_content_restore_details' + return self._tag == "paper_content_restore_details" def is_paper_doc_add_comment_details(self): """ @@ -20902,7 +21851,7 @@ def is_paper_doc_add_comment_details(self): :rtype: bool """ - return self._tag == 'paper_doc_add_comment_details' + return self._tag == "paper_doc_add_comment_details" def is_paper_doc_change_member_role_details(self): """ @@ -20910,7 +21859,7 @@ def is_paper_doc_change_member_role_details(self): :rtype: bool """ - return self._tag == 'paper_doc_change_member_role_details' + return self._tag == "paper_doc_change_member_role_details" def is_paper_doc_change_sharing_policy_details(self): """ @@ -20918,7 +21867,7 @@ def is_paper_doc_change_sharing_policy_details(self): :rtype: bool """ - return self._tag == 'paper_doc_change_sharing_policy_details' + return self._tag == "paper_doc_change_sharing_policy_details" def is_paper_doc_change_subscription_details(self): """ @@ -20926,7 +21875,7 @@ def is_paper_doc_change_subscription_details(self): :rtype: bool """ - return self._tag == 'paper_doc_change_subscription_details' + return self._tag == "paper_doc_change_subscription_details" def is_paper_doc_deleted_details(self): """ @@ -20934,7 +21883,7 @@ def is_paper_doc_deleted_details(self): :rtype: bool """ - return self._tag == 'paper_doc_deleted_details' + return self._tag == "paper_doc_deleted_details" def is_paper_doc_delete_comment_details(self): """ @@ -20942,7 +21891,7 @@ def is_paper_doc_delete_comment_details(self): :rtype: bool """ - return self._tag == 'paper_doc_delete_comment_details' + return self._tag == "paper_doc_delete_comment_details" def is_paper_doc_download_details(self): """ @@ -20950,7 +21899,7 @@ def is_paper_doc_download_details(self): :rtype: bool """ - return self._tag == 'paper_doc_download_details' + return self._tag == "paper_doc_download_details" def is_paper_doc_edit_details(self): """ @@ -20958,7 +21907,7 @@ def is_paper_doc_edit_details(self): :rtype: bool """ - return self._tag == 'paper_doc_edit_details' + return self._tag == "paper_doc_edit_details" def is_paper_doc_edit_comment_details(self): """ @@ -20966,7 +21915,7 @@ def is_paper_doc_edit_comment_details(self): :rtype: bool """ - return self._tag == 'paper_doc_edit_comment_details' + return self._tag == "paper_doc_edit_comment_details" def is_paper_doc_followed_details(self): """ @@ -20974,7 +21923,7 @@ def is_paper_doc_followed_details(self): :rtype: bool """ - return self._tag == 'paper_doc_followed_details' + return self._tag == "paper_doc_followed_details" def is_paper_doc_mention_details(self): """ @@ -20982,7 +21931,7 @@ def is_paper_doc_mention_details(self): :rtype: bool """ - return self._tag == 'paper_doc_mention_details' + return self._tag == "paper_doc_mention_details" def is_paper_doc_ownership_changed_details(self): """ @@ -20990,7 +21939,7 @@ def is_paper_doc_ownership_changed_details(self): :rtype: bool """ - return self._tag == 'paper_doc_ownership_changed_details' + return self._tag == "paper_doc_ownership_changed_details" def is_paper_doc_request_access_details(self): """ @@ -20998,7 +21947,7 @@ def is_paper_doc_request_access_details(self): :rtype: bool """ - return self._tag == 'paper_doc_request_access_details' + return self._tag == "paper_doc_request_access_details" def is_paper_doc_resolve_comment_details(self): """ @@ -21006,7 +21955,7 @@ def is_paper_doc_resolve_comment_details(self): :rtype: bool """ - return self._tag == 'paper_doc_resolve_comment_details' + return self._tag == "paper_doc_resolve_comment_details" def is_paper_doc_revert_details(self): """ @@ -21014,7 +21963,7 @@ def is_paper_doc_revert_details(self): :rtype: bool """ - return self._tag == 'paper_doc_revert_details' + return self._tag == "paper_doc_revert_details" def is_paper_doc_slack_share_details(self): """ @@ -21022,7 +21971,7 @@ def is_paper_doc_slack_share_details(self): :rtype: bool """ - return self._tag == 'paper_doc_slack_share_details' + return self._tag == "paper_doc_slack_share_details" def is_paper_doc_team_invite_details(self): """ @@ -21030,7 +21979,7 @@ def is_paper_doc_team_invite_details(self): :rtype: bool """ - return self._tag == 'paper_doc_team_invite_details' + return self._tag == "paper_doc_team_invite_details" def is_paper_doc_trashed_details(self): """ @@ -21038,7 +21987,7 @@ def is_paper_doc_trashed_details(self): :rtype: bool """ - return self._tag == 'paper_doc_trashed_details' + return self._tag == "paper_doc_trashed_details" def is_paper_doc_unresolve_comment_details(self): """ @@ -21046,7 +21995,7 @@ def is_paper_doc_unresolve_comment_details(self): :rtype: bool """ - return self._tag == 'paper_doc_unresolve_comment_details' + return self._tag == "paper_doc_unresolve_comment_details" def is_paper_doc_untrashed_details(self): """ @@ -21054,7 +22003,7 @@ def is_paper_doc_untrashed_details(self): :rtype: bool """ - return self._tag == 'paper_doc_untrashed_details' + return self._tag == "paper_doc_untrashed_details" def is_paper_doc_view_details(self): """ @@ -21062,7 +22011,7 @@ def is_paper_doc_view_details(self): :rtype: bool """ - return self._tag == 'paper_doc_view_details' + return self._tag == "paper_doc_view_details" def is_paper_external_view_allow_details(self): """ @@ -21070,7 +22019,7 @@ def is_paper_external_view_allow_details(self): :rtype: bool """ - return self._tag == 'paper_external_view_allow_details' + return self._tag == "paper_external_view_allow_details" def is_paper_external_view_default_team_details(self): """ @@ -21078,7 +22027,7 @@ def is_paper_external_view_default_team_details(self): :rtype: bool """ - return self._tag == 'paper_external_view_default_team_details' + return self._tag == "paper_external_view_default_team_details" def is_paper_external_view_forbid_details(self): """ @@ -21086,7 +22035,7 @@ def is_paper_external_view_forbid_details(self): :rtype: bool """ - return self._tag == 'paper_external_view_forbid_details' + return self._tag == "paper_external_view_forbid_details" def is_paper_folder_change_subscription_details(self): """ @@ -21094,7 +22043,7 @@ def is_paper_folder_change_subscription_details(self): :rtype: bool """ - return self._tag == 'paper_folder_change_subscription_details' + return self._tag == "paper_folder_change_subscription_details" def is_paper_folder_deleted_details(self): """ @@ -21102,7 +22051,7 @@ def is_paper_folder_deleted_details(self): :rtype: bool """ - return self._tag == 'paper_folder_deleted_details' + return self._tag == "paper_folder_deleted_details" def is_paper_folder_followed_details(self): """ @@ -21110,7 +22059,7 @@ def is_paper_folder_followed_details(self): :rtype: bool """ - return self._tag == 'paper_folder_followed_details' + return self._tag == "paper_folder_followed_details" def is_paper_folder_team_invite_details(self): """ @@ -21118,7 +22067,7 @@ def is_paper_folder_team_invite_details(self): :rtype: bool """ - return self._tag == 'paper_folder_team_invite_details' + return self._tag == "paper_folder_team_invite_details" def is_paper_published_link_change_permission_details(self): """ @@ -21126,7 +22075,7 @@ def is_paper_published_link_change_permission_details(self): :rtype: bool """ - return self._tag == 'paper_published_link_change_permission_details' + return self._tag == "paper_published_link_change_permission_details" def is_paper_published_link_create_details(self): """ @@ -21134,7 +22083,7 @@ def is_paper_published_link_create_details(self): :rtype: bool """ - return self._tag == 'paper_published_link_create_details' + return self._tag == "paper_published_link_create_details" def is_paper_published_link_disabled_details(self): """ @@ -21142,7 +22091,7 @@ def is_paper_published_link_disabled_details(self): :rtype: bool """ - return self._tag == 'paper_published_link_disabled_details' + return self._tag == "paper_published_link_disabled_details" def is_paper_published_link_view_details(self): """ @@ -21150,7 +22099,7 @@ def is_paper_published_link_view_details(self): :rtype: bool """ - return self._tag == 'paper_published_link_view_details' + return self._tag == "paper_published_link_view_details" def is_password_change_details(self): """ @@ -21158,7 +22107,7 @@ def is_password_change_details(self): :rtype: bool """ - return self._tag == 'password_change_details' + return self._tag == "password_change_details" def is_password_reset_details(self): """ @@ -21166,7 +22115,7 @@ def is_password_reset_details(self): :rtype: bool """ - return self._tag == 'password_reset_details' + return self._tag == "password_reset_details" def is_password_reset_all_details(self): """ @@ -21174,7 +22123,7 @@ def is_password_reset_all_details(self): :rtype: bool """ - return self._tag == 'password_reset_all_details' + return self._tag == "password_reset_all_details" def is_protect_internal_domains_changed_details(self): """ @@ -21182,7 +22131,7 @@ def is_protect_internal_domains_changed_details(self): :rtype: bool """ - return self._tag == 'protect_internal_domains_changed_details' + return self._tag == "protect_internal_domains_changed_details" def is_classification_create_report_details(self): """ @@ -21190,7 +22139,7 @@ def is_classification_create_report_details(self): :rtype: bool """ - return self._tag == 'classification_create_report_details' + return self._tag == "classification_create_report_details" def is_classification_create_report_fail_details(self): """ @@ -21198,7 +22147,7 @@ def is_classification_create_report_fail_details(self): :rtype: bool """ - return self._tag == 'classification_create_report_fail_details' + return self._tag == "classification_create_report_fail_details" def is_emm_create_exceptions_report_details(self): """ @@ -21206,7 +22155,7 @@ def is_emm_create_exceptions_report_details(self): :rtype: bool """ - return self._tag == 'emm_create_exceptions_report_details' + return self._tag == "emm_create_exceptions_report_details" def is_emm_create_usage_report_details(self): """ @@ -21214,7 +22163,7 @@ def is_emm_create_usage_report_details(self): :rtype: bool """ - return self._tag == 'emm_create_usage_report_details' + return self._tag == "emm_create_usage_report_details" def is_export_members_report_details(self): """ @@ -21222,7 +22171,7 @@ def is_export_members_report_details(self): :rtype: bool """ - return self._tag == 'export_members_report_details' + return self._tag == "export_members_report_details" def is_export_members_report_fail_details(self): """ @@ -21230,7 +22179,7 @@ def is_export_members_report_fail_details(self): :rtype: bool """ - return self._tag == 'export_members_report_fail_details' + return self._tag == "export_members_report_fail_details" def is_external_sharing_create_report_details(self): """ @@ -21238,7 +22187,7 @@ def is_external_sharing_create_report_details(self): :rtype: bool """ - return self._tag == 'external_sharing_create_report_details' + return self._tag == "external_sharing_create_report_details" def is_external_sharing_report_failed_details(self): """ @@ -21246,7 +22195,7 @@ def is_external_sharing_report_failed_details(self): :rtype: bool """ - return self._tag == 'external_sharing_report_failed_details' + return self._tag == "external_sharing_report_failed_details" def is_member_access_details_create_report_details(self): """ @@ -21254,7 +22203,7 @@ def is_member_access_details_create_report_details(self): :rtype: bool """ - return self._tag == 'member_access_details_create_report_details' + return self._tag == "member_access_details_create_report_details" def is_member_access_details_create_report_failed_details(self): """ @@ -21262,7 +22211,7 @@ def is_member_access_details_create_report_failed_details(self): :rtype: bool """ - return self._tag == 'member_access_details_create_report_failed_details' + return self._tag == "member_access_details_create_report_failed_details" def is_no_expiration_link_gen_create_report_details(self): """ @@ -21270,7 +22219,7 @@ def is_no_expiration_link_gen_create_report_details(self): :rtype: bool """ - return self._tag == 'no_expiration_link_gen_create_report_details' + return self._tag == "no_expiration_link_gen_create_report_details" def is_no_expiration_link_gen_report_failed_details(self): """ @@ -21278,7 +22227,7 @@ def is_no_expiration_link_gen_report_failed_details(self): :rtype: bool """ - return self._tag == 'no_expiration_link_gen_report_failed_details' + return self._tag == "no_expiration_link_gen_report_failed_details" def is_no_password_link_gen_create_report_details(self): """ @@ -21286,7 +22235,7 @@ def is_no_password_link_gen_create_report_details(self): :rtype: bool """ - return self._tag == 'no_password_link_gen_create_report_details' + return self._tag == "no_password_link_gen_create_report_details" def is_no_password_link_gen_report_failed_details(self): """ @@ -21294,7 +22243,7 @@ def is_no_password_link_gen_report_failed_details(self): :rtype: bool """ - return self._tag == 'no_password_link_gen_report_failed_details' + return self._tag == "no_password_link_gen_report_failed_details" def is_no_password_link_view_create_report_details(self): """ @@ -21302,7 +22251,7 @@ def is_no_password_link_view_create_report_details(self): :rtype: bool """ - return self._tag == 'no_password_link_view_create_report_details' + return self._tag == "no_password_link_view_create_report_details" def is_no_password_link_view_report_failed_details(self): """ @@ -21310,7 +22259,7 @@ def is_no_password_link_view_report_failed_details(self): :rtype: bool """ - return self._tag == 'no_password_link_view_report_failed_details' + return self._tag == "no_password_link_view_report_failed_details" def is_outdated_link_view_create_report_details(self): """ @@ -21318,7 +22267,7 @@ def is_outdated_link_view_create_report_details(self): :rtype: bool """ - return self._tag == 'outdated_link_view_create_report_details' + return self._tag == "outdated_link_view_create_report_details" def is_outdated_link_view_report_failed_details(self): """ @@ -21326,7 +22275,7 @@ def is_outdated_link_view_report_failed_details(self): :rtype: bool """ - return self._tag == 'outdated_link_view_report_failed_details' + return self._tag == "outdated_link_view_report_failed_details" def is_paper_admin_export_start_details(self): """ @@ -21334,7 +22283,7 @@ def is_paper_admin_export_start_details(self): :rtype: bool """ - return self._tag == 'paper_admin_export_start_details' + return self._tag == "paper_admin_export_start_details" def is_ransomware_alert_create_report_details(self): """ @@ -21342,7 +22291,7 @@ def is_ransomware_alert_create_report_details(self): :rtype: bool """ - return self._tag == 'ransomware_alert_create_report_details' + return self._tag == "ransomware_alert_create_report_details" def is_ransomware_alert_create_report_failed_details(self): """ @@ -21350,7 +22299,7 @@ def is_ransomware_alert_create_report_failed_details(self): :rtype: bool """ - return self._tag == 'ransomware_alert_create_report_failed_details' + return self._tag == "ransomware_alert_create_report_failed_details" def is_shared_folders_create_report_details(self): """ @@ -21358,7 +22307,7 @@ def is_shared_folders_create_report_details(self): :rtype: bool """ - return self._tag == 'shared_folders_create_report_details' + return self._tag == "shared_folders_create_report_details" def is_shared_folders_create_report_failed_details(self): """ @@ -21366,7 +22315,7 @@ def is_shared_folders_create_report_failed_details(self): :rtype: bool """ - return self._tag == 'shared_folders_create_report_failed_details' + return self._tag == "shared_folders_create_report_failed_details" def is_smart_sync_create_admin_privilege_report_details(self): """ @@ -21374,7 +22323,7 @@ def is_smart_sync_create_admin_privilege_report_details(self): :rtype: bool """ - return self._tag == 'smart_sync_create_admin_privilege_report_details' + return self._tag == "smart_sync_create_admin_privilege_report_details" def is_team_activity_create_report_details(self): """ @@ -21382,7 +22331,7 @@ def is_team_activity_create_report_details(self): :rtype: bool """ - return self._tag == 'team_activity_create_report_details' + return self._tag == "team_activity_create_report_details" def is_team_activity_create_report_fail_details(self): """ @@ -21390,7 +22339,7 @@ def is_team_activity_create_report_fail_details(self): :rtype: bool """ - return self._tag == 'team_activity_create_report_fail_details' + return self._tag == "team_activity_create_report_fail_details" def is_team_folders_create_report_details(self): """ @@ -21398,7 +22347,7 @@ def is_team_folders_create_report_details(self): :rtype: bool """ - return self._tag == 'team_folders_create_report_details' + return self._tag == "team_folders_create_report_details" def is_team_folders_create_report_failed_details(self): """ @@ -21406,7 +22355,7 @@ def is_team_folders_create_report_failed_details(self): :rtype: bool """ - return self._tag == 'team_folders_create_report_failed_details' + return self._tag == "team_folders_create_report_failed_details" def is_team_storage_create_report_details(self): """ @@ -21414,7 +22363,7 @@ def is_team_storage_create_report_details(self): :rtype: bool """ - return self._tag == 'team_storage_create_report_details' + return self._tag == "team_storage_create_report_details" def is_team_storage_create_report_failed_details(self): """ @@ -21422,7 +22371,7 @@ def is_team_storage_create_report_failed_details(self): :rtype: bool """ - return self._tag == 'team_storage_create_report_failed_details' + return self._tag == "team_storage_create_report_failed_details" def is_collection_share_details(self): """ @@ -21430,7 +22379,7 @@ def is_collection_share_details(self): :rtype: bool """ - return self._tag == 'collection_share_details' + return self._tag == "collection_share_details" def is_file_transfers_file_add_details(self): """ @@ -21438,7 +22387,7 @@ def is_file_transfers_file_add_details(self): :rtype: bool """ - return self._tag == 'file_transfers_file_add_details' + return self._tag == "file_transfers_file_add_details" def is_file_transfers_transfer_delete_details(self): """ @@ -21446,7 +22395,7 @@ def is_file_transfers_transfer_delete_details(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_delete_details' + return self._tag == "file_transfers_transfer_delete_details" def is_file_transfers_transfer_download_details(self): """ @@ -21454,7 +22403,7 @@ def is_file_transfers_transfer_download_details(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_download_details' + return self._tag == "file_transfers_transfer_download_details" def is_file_transfers_transfer_send_details(self): """ @@ -21462,7 +22411,7 @@ def is_file_transfers_transfer_send_details(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_send_details' + return self._tag == "file_transfers_transfer_send_details" def is_file_transfers_transfer_view_details(self): """ @@ -21470,7 +22419,7 @@ def is_file_transfers_transfer_view_details(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_view_details' + return self._tag == "file_transfers_transfer_view_details" def is_media_hub_project_team_add_details(self): """ @@ -21478,7 +22427,7 @@ def is_media_hub_project_team_add_details(self): :rtype: bool """ - return self._tag == 'media_hub_project_team_add_details' + return self._tag == "media_hub_project_team_add_details" def is_media_hub_project_team_delete_details(self): """ @@ -21486,7 +22435,7 @@ def is_media_hub_project_team_delete_details(self): :rtype: bool """ - return self._tag == 'media_hub_project_team_delete_details' + return self._tag == "media_hub_project_team_delete_details" def is_media_hub_project_team_role_changed_details(self): """ @@ -21494,7 +22443,7 @@ def is_media_hub_project_team_role_changed_details(self): :rtype: bool """ - return self._tag == 'media_hub_project_team_role_changed_details' + return self._tag == "media_hub_project_team_role_changed_details" def is_media_hub_shared_link_audience_changed_details(self): """ @@ -21502,7 +22451,7 @@ def is_media_hub_shared_link_audience_changed_details(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_audience_changed_details' + return self._tag == "media_hub_shared_link_audience_changed_details" def is_media_hub_shared_link_created_details(self): """ @@ -21510,7 +22459,7 @@ def is_media_hub_shared_link_created_details(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_created_details' + return self._tag == "media_hub_shared_link_created_details" def is_media_hub_shared_link_download_setting_changed_details(self): """ @@ -21518,7 +22467,7 @@ def is_media_hub_shared_link_download_setting_changed_details(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_download_setting_changed_details' + return self._tag == "media_hub_shared_link_download_setting_changed_details" def is_media_hub_shared_link_revoked_details(self): """ @@ -21526,7 +22475,7 @@ def is_media_hub_shared_link_revoked_details(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_revoked_details' + return self._tag == "media_hub_shared_link_revoked_details" def is_note_acl_invite_only_details(self): """ @@ -21534,7 +22483,7 @@ def is_note_acl_invite_only_details(self): :rtype: bool """ - return self._tag == 'note_acl_invite_only_details' + return self._tag == "note_acl_invite_only_details" def is_note_acl_link_details(self): """ @@ -21542,7 +22491,7 @@ def is_note_acl_link_details(self): :rtype: bool """ - return self._tag == 'note_acl_link_details' + return self._tag == "note_acl_link_details" def is_note_acl_team_link_details(self): """ @@ -21550,7 +22499,7 @@ def is_note_acl_team_link_details(self): :rtype: bool """ - return self._tag == 'note_acl_team_link_details' + return self._tag == "note_acl_team_link_details" def is_note_shared_details(self): """ @@ -21558,7 +22507,7 @@ def is_note_shared_details(self): :rtype: bool """ - return self._tag == 'note_shared_details' + return self._tag == "note_shared_details" def is_note_share_receive_details(self): """ @@ -21566,7 +22515,7 @@ def is_note_share_receive_details(self): :rtype: bool """ - return self._tag == 'note_share_receive_details' + return self._tag == "note_share_receive_details" def is_open_note_shared_details(self): """ @@ -21574,7 +22523,7 @@ def is_open_note_shared_details(self): :rtype: bool """ - return self._tag == 'open_note_shared_details' + return self._tag == "open_note_shared_details" def is_replay_file_shared_link_created_details(self): """ @@ -21582,7 +22531,7 @@ def is_replay_file_shared_link_created_details(self): :rtype: bool """ - return self._tag == 'replay_file_shared_link_created_details' + return self._tag == "replay_file_shared_link_created_details" def is_replay_file_shared_link_modified_details(self): """ @@ -21590,7 +22539,7 @@ def is_replay_file_shared_link_modified_details(self): :rtype: bool """ - return self._tag == 'replay_file_shared_link_modified_details' + return self._tag == "replay_file_shared_link_modified_details" def is_replay_project_team_add_details(self): """ @@ -21598,7 +22547,7 @@ def is_replay_project_team_add_details(self): :rtype: bool """ - return self._tag == 'replay_project_team_add_details' + return self._tag == "replay_project_team_add_details" def is_replay_project_team_delete_details(self): """ @@ -21606,7 +22555,7 @@ def is_replay_project_team_delete_details(self): :rtype: bool """ - return self._tag == 'replay_project_team_delete_details' + return self._tag == "replay_project_team_delete_details" def is_send_and_track_file_added_details(self): """ @@ -21614,7 +22563,7 @@ def is_send_and_track_file_added_details(self): :rtype: bool """ - return self._tag == 'send_and_track_file_added_details' + return self._tag == "send_and_track_file_added_details" def is_send_and_track_file_renamed_details(self): """ @@ -21622,7 +22571,7 @@ def is_send_and_track_file_renamed_details(self): :rtype: bool """ - return self._tag == 'send_and_track_file_renamed_details' + return self._tag == "send_and_track_file_renamed_details" def is_send_and_track_file_updated_details(self): """ @@ -21630,7 +22579,7 @@ def is_send_and_track_file_updated_details(self): :rtype: bool """ - return self._tag == 'send_and_track_file_updated_details' + return self._tag == "send_and_track_file_updated_details" def is_send_and_track_link_created_details(self): """ @@ -21638,7 +22587,7 @@ def is_send_and_track_link_created_details(self): :rtype: bool """ - return self._tag == 'send_and_track_link_created_details' + return self._tag == "send_and_track_link_created_details" def is_send_and_track_link_deleted_details(self): """ @@ -21646,7 +22595,7 @@ def is_send_and_track_link_deleted_details(self): :rtype: bool """ - return self._tag == 'send_and_track_link_deleted_details' + return self._tag == "send_and_track_link_deleted_details" def is_send_and_track_link_updated_details(self): """ @@ -21654,7 +22603,7 @@ def is_send_and_track_link_updated_details(self): :rtype: bool """ - return self._tag == 'send_and_track_link_updated_details' + return self._tag == "send_and_track_link_updated_details" def is_send_and_track_link_viewed_details(self): """ @@ -21662,7 +22611,7 @@ def is_send_and_track_link_viewed_details(self): :rtype: bool """ - return self._tag == 'send_and_track_link_viewed_details' + return self._tag == "send_and_track_link_viewed_details" def is_send_and_track_removed_file_and_associated_links_details(self): """ @@ -21670,7 +22619,7 @@ def is_send_and_track_removed_file_and_associated_links_details(self): :rtype: bool """ - return self._tag == 'send_and_track_removed_file_and_associated_links_details' + return self._tag == "send_and_track_removed_file_and_associated_links_details" def is_sf_add_group_details(self): """ @@ -21678,7 +22627,7 @@ def is_sf_add_group_details(self): :rtype: bool """ - return self._tag == 'sf_add_group_details' + return self._tag == "sf_add_group_details" def is_sf_allow_non_members_to_view_shared_links_details(self): """ @@ -21686,7 +22635,7 @@ def is_sf_allow_non_members_to_view_shared_links_details(self): :rtype: bool """ - return self._tag == 'sf_allow_non_members_to_view_shared_links_details' + return self._tag == "sf_allow_non_members_to_view_shared_links_details" def is_sf_external_invite_warn_details(self): """ @@ -21694,7 +22643,7 @@ def is_sf_external_invite_warn_details(self): :rtype: bool """ - return self._tag == 'sf_external_invite_warn_details' + return self._tag == "sf_external_invite_warn_details" def is_sf_fb_invite_details(self): """ @@ -21702,7 +22651,7 @@ def is_sf_fb_invite_details(self): :rtype: bool """ - return self._tag == 'sf_fb_invite_details' + return self._tag == "sf_fb_invite_details" def is_sf_fb_invite_change_role_details(self): """ @@ -21710,7 +22659,7 @@ def is_sf_fb_invite_change_role_details(self): :rtype: bool """ - return self._tag == 'sf_fb_invite_change_role_details' + return self._tag == "sf_fb_invite_change_role_details" def is_sf_fb_uninvite_details(self): """ @@ -21718,7 +22667,7 @@ def is_sf_fb_uninvite_details(self): :rtype: bool """ - return self._tag == 'sf_fb_uninvite_details' + return self._tag == "sf_fb_uninvite_details" def is_sf_invite_group_details(self): """ @@ -21726,7 +22675,7 @@ def is_sf_invite_group_details(self): :rtype: bool """ - return self._tag == 'sf_invite_group_details' + return self._tag == "sf_invite_group_details" def is_sf_team_grant_access_details(self): """ @@ -21734,7 +22683,7 @@ def is_sf_team_grant_access_details(self): :rtype: bool """ - return self._tag == 'sf_team_grant_access_details' + return self._tag == "sf_team_grant_access_details" def is_sf_team_invite_details(self): """ @@ -21742,7 +22691,7 @@ def is_sf_team_invite_details(self): :rtype: bool """ - return self._tag == 'sf_team_invite_details' + return self._tag == "sf_team_invite_details" def is_sf_team_invite_change_role_details(self): """ @@ -21750,7 +22699,7 @@ def is_sf_team_invite_change_role_details(self): :rtype: bool """ - return self._tag == 'sf_team_invite_change_role_details' + return self._tag == "sf_team_invite_change_role_details" def is_sf_team_join_details(self): """ @@ -21758,7 +22707,7 @@ def is_sf_team_join_details(self): :rtype: bool """ - return self._tag == 'sf_team_join_details' + return self._tag == "sf_team_join_details" def is_sf_team_join_from_oob_link_details(self): """ @@ -21766,7 +22715,7 @@ def is_sf_team_join_from_oob_link_details(self): :rtype: bool """ - return self._tag == 'sf_team_join_from_oob_link_details' + return self._tag == "sf_team_join_from_oob_link_details" def is_sf_team_uninvite_details(self): """ @@ -21774,7 +22723,7 @@ def is_sf_team_uninvite_details(self): :rtype: bool """ - return self._tag == 'sf_team_uninvite_details' + return self._tag == "sf_team_uninvite_details" def is_shared_content_add_invitees_details(self): """ @@ -21782,7 +22731,7 @@ def is_shared_content_add_invitees_details(self): :rtype: bool """ - return self._tag == 'shared_content_add_invitees_details' + return self._tag == "shared_content_add_invitees_details" def is_shared_content_add_link_expiry_details(self): """ @@ -21790,7 +22739,7 @@ def is_shared_content_add_link_expiry_details(self): :rtype: bool """ - return self._tag == 'shared_content_add_link_expiry_details' + return self._tag == "shared_content_add_link_expiry_details" def is_shared_content_add_link_password_details(self): """ @@ -21798,7 +22747,7 @@ def is_shared_content_add_link_password_details(self): :rtype: bool """ - return self._tag == 'shared_content_add_link_password_details' + return self._tag == "shared_content_add_link_password_details" def is_shared_content_add_member_details(self): """ @@ -21806,7 +22755,7 @@ def is_shared_content_add_member_details(self): :rtype: bool """ - return self._tag == 'shared_content_add_member_details' + return self._tag == "shared_content_add_member_details" def is_shared_content_change_downloads_policy_details(self): """ @@ -21814,7 +22763,7 @@ def is_shared_content_change_downloads_policy_details(self): :rtype: bool """ - return self._tag == 'shared_content_change_downloads_policy_details' + return self._tag == "shared_content_change_downloads_policy_details" def is_shared_content_change_invitee_role_details(self): """ @@ -21822,7 +22771,7 @@ def is_shared_content_change_invitee_role_details(self): :rtype: bool """ - return self._tag == 'shared_content_change_invitee_role_details' + return self._tag == "shared_content_change_invitee_role_details" def is_shared_content_change_link_audience_details(self): """ @@ -21830,7 +22779,7 @@ def is_shared_content_change_link_audience_details(self): :rtype: bool """ - return self._tag == 'shared_content_change_link_audience_details' + return self._tag == "shared_content_change_link_audience_details" def is_shared_content_change_link_expiry_details(self): """ @@ -21838,7 +22787,7 @@ def is_shared_content_change_link_expiry_details(self): :rtype: bool """ - return self._tag == 'shared_content_change_link_expiry_details' + return self._tag == "shared_content_change_link_expiry_details" def is_shared_content_change_link_password_details(self): """ @@ -21846,7 +22795,7 @@ def is_shared_content_change_link_password_details(self): :rtype: bool """ - return self._tag == 'shared_content_change_link_password_details' + return self._tag == "shared_content_change_link_password_details" def is_shared_content_change_member_role_details(self): """ @@ -21854,7 +22803,7 @@ def is_shared_content_change_member_role_details(self): :rtype: bool """ - return self._tag == 'shared_content_change_member_role_details' + return self._tag == "shared_content_change_member_role_details" def is_shared_content_change_viewer_info_policy_details(self): """ @@ -21862,7 +22811,7 @@ def is_shared_content_change_viewer_info_policy_details(self): :rtype: bool """ - return self._tag == 'shared_content_change_viewer_info_policy_details' + return self._tag == "shared_content_change_viewer_info_policy_details" def is_shared_content_claim_invitation_details(self): """ @@ -21870,7 +22819,7 @@ def is_shared_content_claim_invitation_details(self): :rtype: bool """ - return self._tag == 'shared_content_claim_invitation_details' + return self._tag == "shared_content_claim_invitation_details" def is_shared_content_copy_details(self): """ @@ -21878,7 +22827,7 @@ def is_shared_content_copy_details(self): :rtype: bool """ - return self._tag == 'shared_content_copy_details' + return self._tag == "shared_content_copy_details" def is_shared_content_download_details(self): """ @@ -21886,7 +22835,7 @@ def is_shared_content_download_details(self): :rtype: bool """ - return self._tag == 'shared_content_download_details' + return self._tag == "shared_content_download_details" def is_shared_content_relinquish_membership_details(self): """ @@ -21894,7 +22843,7 @@ def is_shared_content_relinquish_membership_details(self): :rtype: bool """ - return self._tag == 'shared_content_relinquish_membership_details' + return self._tag == "shared_content_relinquish_membership_details" def is_shared_content_remove_invitees_details(self): """ @@ -21902,7 +22851,7 @@ def is_shared_content_remove_invitees_details(self): :rtype: bool """ - return self._tag == 'shared_content_remove_invitees_details' + return self._tag == "shared_content_remove_invitees_details" def is_shared_content_remove_link_expiry_details(self): """ @@ -21910,7 +22859,7 @@ def is_shared_content_remove_link_expiry_details(self): :rtype: bool """ - return self._tag == 'shared_content_remove_link_expiry_details' + return self._tag == "shared_content_remove_link_expiry_details" def is_shared_content_remove_link_password_details(self): """ @@ -21918,7 +22867,7 @@ def is_shared_content_remove_link_password_details(self): :rtype: bool """ - return self._tag == 'shared_content_remove_link_password_details' + return self._tag == "shared_content_remove_link_password_details" def is_shared_content_remove_member_details(self): """ @@ -21926,7 +22875,7 @@ def is_shared_content_remove_member_details(self): :rtype: bool """ - return self._tag == 'shared_content_remove_member_details' + return self._tag == "shared_content_remove_member_details" def is_shared_content_request_access_details(self): """ @@ -21934,7 +22883,7 @@ def is_shared_content_request_access_details(self): :rtype: bool """ - return self._tag == 'shared_content_request_access_details' + return self._tag == "shared_content_request_access_details" def is_shared_content_restore_invitees_details(self): """ @@ -21942,7 +22891,7 @@ def is_shared_content_restore_invitees_details(self): :rtype: bool """ - return self._tag == 'shared_content_restore_invitees_details' + return self._tag == "shared_content_restore_invitees_details" def is_shared_content_restore_member_details(self): """ @@ -21950,7 +22899,7 @@ def is_shared_content_restore_member_details(self): :rtype: bool """ - return self._tag == 'shared_content_restore_member_details' + return self._tag == "shared_content_restore_member_details" def is_shared_content_unshare_details(self): """ @@ -21958,7 +22907,7 @@ def is_shared_content_unshare_details(self): :rtype: bool """ - return self._tag == 'shared_content_unshare_details' + return self._tag == "shared_content_unshare_details" def is_shared_content_view_details(self): """ @@ -21966,7 +22915,7 @@ def is_shared_content_view_details(self): :rtype: bool """ - return self._tag == 'shared_content_view_details' + return self._tag == "shared_content_view_details" def is_shared_folder_change_link_policy_details(self): """ @@ -21974,7 +22923,7 @@ def is_shared_folder_change_link_policy_details(self): :rtype: bool """ - return self._tag == 'shared_folder_change_link_policy_details' + return self._tag == "shared_folder_change_link_policy_details" def is_shared_folder_change_members_inheritance_policy_details(self): """ @@ -21982,7 +22931,7 @@ def is_shared_folder_change_members_inheritance_policy_details(self): :rtype: bool """ - return self._tag == 'shared_folder_change_members_inheritance_policy_details' + return self._tag == "shared_folder_change_members_inheritance_policy_details" def is_shared_folder_change_members_management_policy_details(self): """ @@ -21990,7 +22939,7 @@ def is_shared_folder_change_members_management_policy_details(self): :rtype: bool """ - return self._tag == 'shared_folder_change_members_management_policy_details' + return self._tag == "shared_folder_change_members_management_policy_details" def is_shared_folder_change_members_policy_details(self): """ @@ -21998,7 +22947,7 @@ def is_shared_folder_change_members_policy_details(self): :rtype: bool """ - return self._tag == 'shared_folder_change_members_policy_details' + return self._tag == "shared_folder_change_members_policy_details" def is_shared_folder_create_details(self): """ @@ -22006,7 +22955,7 @@ def is_shared_folder_create_details(self): :rtype: bool """ - return self._tag == 'shared_folder_create_details' + return self._tag == "shared_folder_create_details" def is_shared_folder_decline_invitation_details(self): """ @@ -22014,7 +22963,7 @@ def is_shared_folder_decline_invitation_details(self): :rtype: bool """ - return self._tag == 'shared_folder_decline_invitation_details' + return self._tag == "shared_folder_decline_invitation_details" def is_shared_folder_mount_details(self): """ @@ -22022,7 +22971,7 @@ def is_shared_folder_mount_details(self): :rtype: bool """ - return self._tag == 'shared_folder_mount_details' + return self._tag == "shared_folder_mount_details" def is_shared_folder_nest_details(self): """ @@ -22030,7 +22979,7 @@ def is_shared_folder_nest_details(self): :rtype: bool """ - return self._tag == 'shared_folder_nest_details' + return self._tag == "shared_folder_nest_details" def is_shared_folder_transfer_ownership_details(self): """ @@ -22038,7 +22987,7 @@ def is_shared_folder_transfer_ownership_details(self): :rtype: bool """ - return self._tag == 'shared_folder_transfer_ownership_details' + return self._tag == "shared_folder_transfer_ownership_details" def is_shared_folder_unmount_details(self): """ @@ -22046,7 +22995,7 @@ def is_shared_folder_unmount_details(self): :rtype: bool """ - return self._tag == 'shared_folder_unmount_details' + return self._tag == "shared_folder_unmount_details" def is_shared_link_add_expiry_details(self): """ @@ -22054,7 +23003,7 @@ def is_shared_link_add_expiry_details(self): :rtype: bool """ - return self._tag == 'shared_link_add_expiry_details' + return self._tag == "shared_link_add_expiry_details" def is_shared_link_change_expiry_details(self): """ @@ -22062,7 +23011,7 @@ def is_shared_link_change_expiry_details(self): :rtype: bool """ - return self._tag == 'shared_link_change_expiry_details' + return self._tag == "shared_link_change_expiry_details" def is_shared_link_change_visibility_details(self): """ @@ -22070,7 +23019,7 @@ def is_shared_link_change_visibility_details(self): :rtype: bool """ - return self._tag == 'shared_link_change_visibility_details' + return self._tag == "shared_link_change_visibility_details" def is_shared_link_copy_details(self): """ @@ -22078,7 +23027,7 @@ def is_shared_link_copy_details(self): :rtype: bool """ - return self._tag == 'shared_link_copy_details' + return self._tag == "shared_link_copy_details" def is_shared_link_create_details(self): """ @@ -22086,7 +23035,7 @@ def is_shared_link_create_details(self): :rtype: bool """ - return self._tag == 'shared_link_create_details' + return self._tag == "shared_link_create_details" def is_shared_link_disable_details(self): """ @@ -22094,7 +23043,7 @@ def is_shared_link_disable_details(self): :rtype: bool """ - return self._tag == 'shared_link_disable_details' + return self._tag == "shared_link_disable_details" def is_shared_link_download_details(self): """ @@ -22102,7 +23051,7 @@ def is_shared_link_download_details(self): :rtype: bool """ - return self._tag == 'shared_link_download_details' + return self._tag == "shared_link_download_details" def is_shared_link_remove_expiry_details(self): """ @@ -22110,7 +23059,7 @@ def is_shared_link_remove_expiry_details(self): :rtype: bool """ - return self._tag == 'shared_link_remove_expiry_details' + return self._tag == "shared_link_remove_expiry_details" def is_shared_link_remove_visitor_details(self): """ @@ -22118,7 +23067,7 @@ def is_shared_link_remove_visitor_details(self): :rtype: bool """ - return self._tag == 'shared_link_remove_visitor_details' + return self._tag == "shared_link_remove_visitor_details" def is_shared_link_settings_add_expiration_details(self): """ @@ -22126,7 +23075,7 @@ def is_shared_link_settings_add_expiration_details(self): :rtype: bool """ - return self._tag == 'shared_link_settings_add_expiration_details' + return self._tag == "shared_link_settings_add_expiration_details" def is_shared_link_settings_add_password_details(self): """ @@ -22134,7 +23083,7 @@ def is_shared_link_settings_add_password_details(self): :rtype: bool """ - return self._tag == 'shared_link_settings_add_password_details' + return self._tag == "shared_link_settings_add_password_details" def is_shared_link_settings_allow_download_disabled_details(self): """ @@ -22142,7 +23091,7 @@ def is_shared_link_settings_allow_download_disabled_details(self): :rtype: bool """ - return self._tag == 'shared_link_settings_allow_download_disabled_details' + return self._tag == "shared_link_settings_allow_download_disabled_details" def is_shared_link_settings_allow_download_enabled_details(self): """ @@ -22150,7 +23099,7 @@ def is_shared_link_settings_allow_download_enabled_details(self): :rtype: bool """ - return self._tag == 'shared_link_settings_allow_download_enabled_details' + return self._tag == "shared_link_settings_allow_download_enabled_details" def is_shared_link_settings_change_audience_details(self): """ @@ -22158,7 +23107,7 @@ def is_shared_link_settings_change_audience_details(self): :rtype: bool """ - return self._tag == 'shared_link_settings_change_audience_details' + return self._tag == "shared_link_settings_change_audience_details" def is_shared_link_settings_change_expiration_details(self): """ @@ -22166,7 +23115,7 @@ def is_shared_link_settings_change_expiration_details(self): :rtype: bool """ - return self._tag == 'shared_link_settings_change_expiration_details' + return self._tag == "shared_link_settings_change_expiration_details" def is_shared_link_settings_change_password_details(self): """ @@ -22174,7 +23123,7 @@ def is_shared_link_settings_change_password_details(self): :rtype: bool """ - return self._tag == 'shared_link_settings_change_password_details' + return self._tag == "shared_link_settings_change_password_details" def is_shared_link_settings_remove_expiration_details(self): """ @@ -22182,7 +23131,7 @@ def is_shared_link_settings_remove_expiration_details(self): :rtype: bool """ - return self._tag == 'shared_link_settings_remove_expiration_details' + return self._tag == "shared_link_settings_remove_expiration_details" def is_shared_link_settings_remove_password_details(self): """ @@ -22190,7 +23139,7 @@ def is_shared_link_settings_remove_password_details(self): :rtype: bool """ - return self._tag == 'shared_link_settings_remove_password_details' + return self._tag == "shared_link_settings_remove_password_details" def is_shared_link_share_details(self): """ @@ -22198,7 +23147,7 @@ def is_shared_link_share_details(self): :rtype: bool """ - return self._tag == 'shared_link_share_details' + return self._tag == "shared_link_share_details" def is_shared_link_view_details(self): """ @@ -22206,7 +23155,7 @@ def is_shared_link_view_details(self): :rtype: bool """ - return self._tag == 'shared_link_view_details' + return self._tag == "shared_link_view_details" def is_shared_note_opened_details(self): """ @@ -22214,7 +23163,7 @@ def is_shared_note_opened_details(self): :rtype: bool """ - return self._tag == 'shared_note_opened_details' + return self._tag == "shared_note_opened_details" def is_shmodel_disable_downloads_details(self): """ @@ -22222,7 +23171,7 @@ def is_shmodel_disable_downloads_details(self): :rtype: bool """ - return self._tag == 'shmodel_disable_downloads_details' + return self._tag == "shmodel_disable_downloads_details" def is_shmodel_enable_downloads_details(self): """ @@ -22230,7 +23179,7 @@ def is_shmodel_enable_downloads_details(self): :rtype: bool """ - return self._tag == 'shmodel_enable_downloads_details' + return self._tag == "shmodel_enable_downloads_details" def is_shmodel_group_share_details(self): """ @@ -22238,7 +23187,7 @@ def is_shmodel_group_share_details(self): :rtype: bool """ - return self._tag == 'shmodel_group_share_details' + return self._tag == "shmodel_group_share_details" def is_showcase_access_granted_details(self): """ @@ -22246,7 +23195,7 @@ def is_showcase_access_granted_details(self): :rtype: bool """ - return self._tag == 'showcase_access_granted_details' + return self._tag == "showcase_access_granted_details" def is_showcase_add_member_details(self): """ @@ -22254,7 +23203,7 @@ def is_showcase_add_member_details(self): :rtype: bool """ - return self._tag == 'showcase_add_member_details' + return self._tag == "showcase_add_member_details" def is_showcase_archived_details(self): """ @@ -22262,7 +23211,7 @@ def is_showcase_archived_details(self): :rtype: bool """ - return self._tag == 'showcase_archived_details' + return self._tag == "showcase_archived_details" def is_showcase_created_details(self): """ @@ -22270,7 +23219,7 @@ def is_showcase_created_details(self): :rtype: bool """ - return self._tag == 'showcase_created_details' + return self._tag == "showcase_created_details" def is_showcase_delete_comment_details(self): """ @@ -22278,7 +23227,7 @@ def is_showcase_delete_comment_details(self): :rtype: bool """ - return self._tag == 'showcase_delete_comment_details' + return self._tag == "showcase_delete_comment_details" def is_showcase_edited_details(self): """ @@ -22286,7 +23235,7 @@ def is_showcase_edited_details(self): :rtype: bool """ - return self._tag == 'showcase_edited_details' + return self._tag == "showcase_edited_details" def is_showcase_edit_comment_details(self): """ @@ -22294,7 +23243,7 @@ def is_showcase_edit_comment_details(self): :rtype: bool """ - return self._tag == 'showcase_edit_comment_details' + return self._tag == "showcase_edit_comment_details" def is_showcase_file_added_details(self): """ @@ -22302,7 +23251,7 @@ def is_showcase_file_added_details(self): :rtype: bool """ - return self._tag == 'showcase_file_added_details' + return self._tag == "showcase_file_added_details" def is_showcase_file_download_details(self): """ @@ -22310,7 +23259,7 @@ def is_showcase_file_download_details(self): :rtype: bool """ - return self._tag == 'showcase_file_download_details' + return self._tag == "showcase_file_download_details" def is_showcase_file_removed_details(self): """ @@ -22318,7 +23267,7 @@ def is_showcase_file_removed_details(self): :rtype: bool """ - return self._tag == 'showcase_file_removed_details' + return self._tag == "showcase_file_removed_details" def is_showcase_file_view_details(self): """ @@ -22326,7 +23275,7 @@ def is_showcase_file_view_details(self): :rtype: bool """ - return self._tag == 'showcase_file_view_details' + return self._tag == "showcase_file_view_details" def is_showcase_permanently_deleted_details(self): """ @@ -22334,7 +23283,7 @@ def is_showcase_permanently_deleted_details(self): :rtype: bool """ - return self._tag == 'showcase_permanently_deleted_details' + return self._tag == "showcase_permanently_deleted_details" def is_showcase_post_comment_details(self): """ @@ -22342,7 +23291,7 @@ def is_showcase_post_comment_details(self): :rtype: bool """ - return self._tag == 'showcase_post_comment_details' + return self._tag == "showcase_post_comment_details" def is_showcase_remove_member_details(self): """ @@ -22350,7 +23299,7 @@ def is_showcase_remove_member_details(self): :rtype: bool """ - return self._tag == 'showcase_remove_member_details' + return self._tag == "showcase_remove_member_details" def is_showcase_renamed_details(self): """ @@ -22358,7 +23307,7 @@ def is_showcase_renamed_details(self): :rtype: bool """ - return self._tag == 'showcase_renamed_details' + return self._tag == "showcase_renamed_details" def is_showcase_request_access_details(self): """ @@ -22366,7 +23315,7 @@ def is_showcase_request_access_details(self): :rtype: bool """ - return self._tag == 'showcase_request_access_details' + return self._tag == "showcase_request_access_details" def is_showcase_resolve_comment_details(self): """ @@ -22374,7 +23323,7 @@ def is_showcase_resolve_comment_details(self): :rtype: bool """ - return self._tag == 'showcase_resolve_comment_details' + return self._tag == "showcase_resolve_comment_details" def is_showcase_restored_details(self): """ @@ -22382,7 +23331,7 @@ def is_showcase_restored_details(self): :rtype: bool """ - return self._tag == 'showcase_restored_details' + return self._tag == "showcase_restored_details" def is_showcase_trashed_details(self): """ @@ -22390,7 +23339,7 @@ def is_showcase_trashed_details(self): :rtype: bool """ - return self._tag == 'showcase_trashed_details' + return self._tag == "showcase_trashed_details" def is_showcase_trashed_deprecated_details(self): """ @@ -22398,7 +23347,7 @@ def is_showcase_trashed_deprecated_details(self): :rtype: bool """ - return self._tag == 'showcase_trashed_deprecated_details' + return self._tag == "showcase_trashed_deprecated_details" def is_showcase_unresolve_comment_details(self): """ @@ -22406,7 +23355,7 @@ def is_showcase_unresolve_comment_details(self): :rtype: bool """ - return self._tag == 'showcase_unresolve_comment_details' + return self._tag == "showcase_unresolve_comment_details" def is_showcase_untrashed_details(self): """ @@ -22414,7 +23363,7 @@ def is_showcase_untrashed_details(self): :rtype: bool """ - return self._tag == 'showcase_untrashed_details' + return self._tag == "showcase_untrashed_details" def is_showcase_untrashed_deprecated_details(self): """ @@ -22422,7 +23371,7 @@ def is_showcase_untrashed_deprecated_details(self): :rtype: bool """ - return self._tag == 'showcase_untrashed_deprecated_details' + return self._tag == "showcase_untrashed_deprecated_details" def is_showcase_view_details(self): """ @@ -22430,7 +23379,7 @@ def is_showcase_view_details(self): :rtype: bool """ - return self._tag == 'showcase_view_details' + return self._tag == "showcase_view_details" def is_sign_signature_request_canceled_details(self): """ @@ -22438,7 +23387,7 @@ def is_sign_signature_request_canceled_details(self): :rtype: bool """ - return self._tag == 'sign_signature_request_canceled_details' + return self._tag == "sign_signature_request_canceled_details" def is_sign_signature_request_completed_details(self): """ @@ -22446,7 +23395,7 @@ def is_sign_signature_request_completed_details(self): :rtype: bool """ - return self._tag == 'sign_signature_request_completed_details' + return self._tag == "sign_signature_request_completed_details" def is_sign_signature_request_declined_details(self): """ @@ -22454,7 +23403,7 @@ def is_sign_signature_request_declined_details(self): :rtype: bool """ - return self._tag == 'sign_signature_request_declined_details' + return self._tag == "sign_signature_request_declined_details" def is_sign_signature_request_opened_details(self): """ @@ -22462,7 +23411,7 @@ def is_sign_signature_request_opened_details(self): :rtype: bool """ - return self._tag == 'sign_signature_request_opened_details' + return self._tag == "sign_signature_request_opened_details" def is_sign_signature_request_reminder_sent_details(self): """ @@ -22470,7 +23419,7 @@ def is_sign_signature_request_reminder_sent_details(self): :rtype: bool """ - return self._tag == 'sign_signature_request_reminder_sent_details' + return self._tag == "sign_signature_request_reminder_sent_details" def is_sign_signature_request_sent_details(self): """ @@ -22478,7 +23427,7 @@ def is_sign_signature_request_sent_details(self): :rtype: bool """ - return self._tag == 'sign_signature_request_sent_details' + return self._tag == "sign_signature_request_sent_details" def is_sign_template_created_details(self): """ @@ -22486,7 +23435,7 @@ def is_sign_template_created_details(self): :rtype: bool """ - return self._tag == 'sign_template_created_details' + return self._tag == "sign_template_created_details" def is_sign_template_shared_details(self): """ @@ -22494,7 +23443,7 @@ def is_sign_template_shared_details(self): :rtype: bool """ - return self._tag == 'sign_template_shared_details' + return self._tag == "sign_template_shared_details" def is_risc_security_event_details(self): """ @@ -22502,7 +23451,7 @@ def is_risc_security_event_details(self): :rtype: bool """ - return self._tag == 'risc_security_event_details' + return self._tag == "risc_security_event_details" def is_sso_add_cert_details(self): """ @@ -22510,7 +23459,7 @@ def is_sso_add_cert_details(self): :rtype: bool """ - return self._tag == 'sso_add_cert_details' + return self._tag == "sso_add_cert_details" def is_sso_add_login_url_details(self): """ @@ -22518,7 +23467,7 @@ def is_sso_add_login_url_details(self): :rtype: bool """ - return self._tag == 'sso_add_login_url_details' + return self._tag == "sso_add_login_url_details" def is_sso_add_logout_url_details(self): """ @@ -22526,7 +23475,7 @@ def is_sso_add_logout_url_details(self): :rtype: bool """ - return self._tag == 'sso_add_logout_url_details' + return self._tag == "sso_add_logout_url_details" def is_sso_change_cert_details(self): """ @@ -22534,7 +23483,7 @@ def is_sso_change_cert_details(self): :rtype: bool """ - return self._tag == 'sso_change_cert_details' + return self._tag == "sso_change_cert_details" def is_sso_change_login_url_details(self): """ @@ -22542,7 +23491,7 @@ def is_sso_change_login_url_details(self): :rtype: bool """ - return self._tag == 'sso_change_login_url_details' + return self._tag == "sso_change_login_url_details" def is_sso_change_logout_url_details(self): """ @@ -22550,7 +23499,7 @@ def is_sso_change_logout_url_details(self): :rtype: bool """ - return self._tag == 'sso_change_logout_url_details' + return self._tag == "sso_change_logout_url_details" def is_sso_change_saml_identity_mode_details(self): """ @@ -22558,7 +23507,7 @@ def is_sso_change_saml_identity_mode_details(self): :rtype: bool """ - return self._tag == 'sso_change_saml_identity_mode_details' + return self._tag == "sso_change_saml_identity_mode_details" def is_sso_remove_cert_details(self): """ @@ -22566,7 +23515,7 @@ def is_sso_remove_cert_details(self): :rtype: bool """ - return self._tag == 'sso_remove_cert_details' + return self._tag == "sso_remove_cert_details" def is_sso_remove_login_url_details(self): """ @@ -22574,7 +23523,7 @@ def is_sso_remove_login_url_details(self): :rtype: bool """ - return self._tag == 'sso_remove_login_url_details' + return self._tag == "sso_remove_login_url_details" def is_sso_remove_logout_url_details(self): """ @@ -22582,7 +23531,7 @@ def is_sso_remove_logout_url_details(self): :rtype: bool """ - return self._tag == 'sso_remove_logout_url_details' + return self._tag == "sso_remove_logout_url_details" def is_team_folder_change_status_details(self): """ @@ -22590,7 +23539,7 @@ def is_team_folder_change_status_details(self): :rtype: bool """ - return self._tag == 'team_folder_change_status_details' + return self._tag == "team_folder_change_status_details" def is_team_folder_create_details(self): """ @@ -22598,7 +23547,7 @@ def is_team_folder_create_details(self): :rtype: bool """ - return self._tag == 'team_folder_create_details' + return self._tag == "team_folder_create_details" def is_team_folder_downgrade_details(self): """ @@ -22606,7 +23555,7 @@ def is_team_folder_downgrade_details(self): :rtype: bool """ - return self._tag == 'team_folder_downgrade_details' + return self._tag == "team_folder_downgrade_details" def is_team_folder_permanently_delete_details(self): """ @@ -22614,7 +23563,7 @@ def is_team_folder_permanently_delete_details(self): :rtype: bool """ - return self._tag == 'team_folder_permanently_delete_details' + return self._tag == "team_folder_permanently_delete_details" def is_team_folder_rename_details(self): """ @@ -22622,7 +23571,7 @@ def is_team_folder_rename_details(self): :rtype: bool """ - return self._tag == 'team_folder_rename_details' + return self._tag == "team_folder_rename_details" def is_team_folder_space_limits_change_caps_type_details(self): """ @@ -22630,7 +23579,7 @@ def is_team_folder_space_limits_change_caps_type_details(self): :rtype: bool """ - return self._tag == 'team_folder_space_limits_change_caps_type_details' + return self._tag == "team_folder_space_limits_change_caps_type_details" def is_team_folder_space_limits_change_limit_details(self): """ @@ -22638,7 +23587,7 @@ def is_team_folder_space_limits_change_limit_details(self): :rtype: bool """ - return self._tag == 'team_folder_space_limits_change_limit_details' + return self._tag == "team_folder_space_limits_change_limit_details" def is_team_folder_space_limits_change_notification_target_details(self): """ @@ -22646,7 +23595,7 @@ def is_team_folder_space_limits_change_notification_target_details(self): :rtype: bool """ - return self._tag == 'team_folder_space_limits_change_notification_target_details' + return self._tag == "team_folder_space_limits_change_notification_target_details" def is_team_selective_sync_settings_changed_details(self): """ @@ -22654,7 +23603,7 @@ def is_team_selective_sync_settings_changed_details(self): :rtype: bool """ - return self._tag == 'team_selective_sync_settings_changed_details' + return self._tag == "team_selective_sync_settings_changed_details" def is_account_capture_change_policy_details(self): """ @@ -22662,7 +23611,7 @@ def is_account_capture_change_policy_details(self): :rtype: bool """ - return self._tag == 'account_capture_change_policy_details' + return self._tag == "account_capture_change_policy_details" def is_admin_email_reminders_changed_details(self): """ @@ -22670,7 +23619,7 @@ def is_admin_email_reminders_changed_details(self): :rtype: bool """ - return self._tag == 'admin_email_reminders_changed_details' + return self._tag == "admin_email_reminders_changed_details" def is_ai_third_party_sharing_dropbox_base_policy_changed_details(self): """ @@ -22678,7 +23627,7 @@ def is_ai_third_party_sharing_dropbox_base_policy_changed_details(self): :rtype: bool """ - return self._tag == 'ai_third_party_sharing_dropbox_base_policy_changed_details' + return self._tag == "ai_third_party_sharing_dropbox_base_policy_changed_details" def is_allow_download_disabled_details(self): """ @@ -22686,7 +23635,7 @@ def is_allow_download_disabled_details(self): :rtype: bool """ - return self._tag == 'allow_download_disabled_details' + return self._tag == "allow_download_disabled_details" def is_allow_download_enabled_details(self): """ @@ -22694,7 +23643,7 @@ def is_allow_download_enabled_details(self): :rtype: bool """ - return self._tag == 'allow_download_enabled_details' + return self._tag == "allow_download_enabled_details" def is_apple_login_change_policy_details(self): """ @@ -22702,7 +23651,7 @@ def is_apple_login_change_policy_details(self): :rtype: bool """ - return self._tag == 'apple_login_change_policy_details' + return self._tag == "apple_login_change_policy_details" def is_app_permissions_changed_details(self): """ @@ -22710,7 +23659,7 @@ def is_app_permissions_changed_details(self): :rtype: bool """ - return self._tag == 'app_permissions_changed_details' + return self._tag == "app_permissions_changed_details" def is_camera_uploads_policy_changed_details(self): """ @@ -22718,7 +23667,7 @@ def is_camera_uploads_policy_changed_details(self): :rtype: bool """ - return self._tag == 'camera_uploads_policy_changed_details' + return self._tag == "camera_uploads_policy_changed_details" def is_capture_team_space_policy_changed_details(self): """ @@ -22726,7 +23675,7 @@ def is_capture_team_space_policy_changed_details(self): :rtype: bool """ - return self._tag == 'capture_team_space_policy_changed_details' + return self._tag == "capture_team_space_policy_changed_details" def is_capture_transcript_policy_changed_details(self): """ @@ -22734,7 +23683,7 @@ def is_capture_transcript_policy_changed_details(self): :rtype: bool """ - return self._tag == 'capture_transcript_policy_changed_details' + return self._tag == "capture_transcript_policy_changed_details" def is_classification_change_policy_details(self): """ @@ -22742,7 +23691,7 @@ def is_classification_change_policy_details(self): :rtype: bool """ - return self._tag == 'classification_change_policy_details' + return self._tag == "classification_change_policy_details" def is_computer_backup_policy_changed_details(self): """ @@ -22750,7 +23699,7 @@ def is_computer_backup_policy_changed_details(self): :rtype: bool """ - return self._tag == 'computer_backup_policy_changed_details' + return self._tag == "computer_backup_policy_changed_details" def is_content_administration_policy_changed_details(self): """ @@ -22758,7 +23707,7 @@ def is_content_administration_policy_changed_details(self): :rtype: bool """ - return self._tag == 'content_administration_policy_changed_details' + return self._tag == "content_administration_policy_changed_details" def is_content_deletion_protection_change_policy_details(self): """ @@ -22766,7 +23715,7 @@ def is_content_deletion_protection_change_policy_details(self): :rtype: bool """ - return self._tag == 'content_deletion_protection_change_policy_details' + return self._tag == "content_deletion_protection_change_policy_details" def is_dash_external_sharing_policy_changed_details(self): """ @@ -22774,7 +23723,7 @@ def is_dash_external_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == 'dash_external_sharing_policy_changed_details' + return self._tag == "dash_external_sharing_policy_changed_details" def is_data_placement_restriction_change_policy_details(self): """ @@ -22782,7 +23731,7 @@ def is_data_placement_restriction_change_policy_details(self): :rtype: bool """ - return self._tag == 'data_placement_restriction_change_policy_details' + return self._tag == "data_placement_restriction_change_policy_details" def is_data_placement_restriction_satisfy_policy_details(self): """ @@ -22790,7 +23739,7 @@ def is_data_placement_restriction_satisfy_policy_details(self): :rtype: bool """ - return self._tag == 'data_placement_restriction_satisfy_policy_details' + return self._tag == "data_placement_restriction_satisfy_policy_details" def is_device_approvals_add_exception_details(self): """ @@ -22798,7 +23747,7 @@ def is_device_approvals_add_exception_details(self): :rtype: bool """ - return self._tag == 'device_approvals_add_exception_details' + return self._tag == "device_approvals_add_exception_details" def is_device_approvals_change_desktop_policy_details(self): """ @@ -22806,7 +23755,7 @@ def is_device_approvals_change_desktop_policy_details(self): :rtype: bool """ - return self._tag == 'device_approvals_change_desktop_policy_details' + return self._tag == "device_approvals_change_desktop_policy_details" def is_device_approvals_change_mobile_policy_details(self): """ @@ -22814,7 +23763,7 @@ def is_device_approvals_change_mobile_policy_details(self): :rtype: bool """ - return self._tag == 'device_approvals_change_mobile_policy_details' + return self._tag == "device_approvals_change_mobile_policy_details" def is_device_approvals_change_overage_action_details(self): """ @@ -22822,7 +23771,7 @@ def is_device_approvals_change_overage_action_details(self): :rtype: bool """ - return self._tag == 'device_approvals_change_overage_action_details' + return self._tag == "device_approvals_change_overage_action_details" def is_device_approvals_change_unlink_action_details(self): """ @@ -22830,7 +23779,7 @@ def is_device_approvals_change_unlink_action_details(self): :rtype: bool """ - return self._tag == 'device_approvals_change_unlink_action_details' + return self._tag == "device_approvals_change_unlink_action_details" def is_device_approvals_remove_exception_details(self): """ @@ -22838,7 +23787,7 @@ def is_device_approvals_remove_exception_details(self): :rtype: bool """ - return self._tag == 'device_approvals_remove_exception_details' + return self._tag == "device_approvals_remove_exception_details" def is_directory_restrictions_add_members_details(self): """ @@ -22846,7 +23795,7 @@ def is_directory_restrictions_add_members_details(self): :rtype: bool """ - return self._tag == 'directory_restrictions_add_members_details' + return self._tag == "directory_restrictions_add_members_details" def is_directory_restrictions_remove_members_details(self): """ @@ -22854,7 +23803,7 @@ def is_directory_restrictions_remove_members_details(self): :rtype: bool """ - return self._tag == 'directory_restrictions_remove_members_details' + return self._tag == "directory_restrictions_remove_members_details" def is_dropbox_passwords_policy_changed_details(self): """ @@ -22862,7 +23811,7 @@ def is_dropbox_passwords_policy_changed_details(self): :rtype: bool """ - return self._tag == 'dropbox_passwords_policy_changed_details' + return self._tag == "dropbox_passwords_policy_changed_details" def is_email_ingest_policy_changed_details(self): """ @@ -22870,7 +23819,7 @@ def is_email_ingest_policy_changed_details(self): :rtype: bool """ - return self._tag == 'email_ingest_policy_changed_details' + return self._tag == "email_ingest_policy_changed_details" def is_emm_add_exception_details(self): """ @@ -22878,7 +23827,7 @@ def is_emm_add_exception_details(self): :rtype: bool """ - return self._tag == 'emm_add_exception_details' + return self._tag == "emm_add_exception_details" def is_emm_change_policy_details(self): """ @@ -22886,7 +23835,7 @@ def is_emm_change_policy_details(self): :rtype: bool """ - return self._tag == 'emm_change_policy_details' + return self._tag == "emm_change_policy_details" def is_emm_remove_exception_details(self): """ @@ -22894,7 +23843,7 @@ def is_emm_remove_exception_details(self): :rtype: bool """ - return self._tag == 'emm_remove_exception_details' + return self._tag == "emm_remove_exception_details" def is_extended_version_history_change_policy_details(self): """ @@ -22902,7 +23851,7 @@ def is_extended_version_history_change_policy_details(self): :rtype: bool """ - return self._tag == 'extended_version_history_change_policy_details' + return self._tag == "extended_version_history_change_policy_details" def is_external_drive_backup_policy_changed_details(self): """ @@ -22910,7 +23859,7 @@ def is_external_drive_backup_policy_changed_details(self): :rtype: bool """ - return self._tag == 'external_drive_backup_policy_changed_details' + return self._tag == "external_drive_backup_policy_changed_details" def is_file_comments_change_policy_details(self): """ @@ -22918,7 +23867,7 @@ def is_file_comments_change_policy_details(self): :rtype: bool """ - return self._tag == 'file_comments_change_policy_details' + return self._tag == "file_comments_change_policy_details" def is_file_locking_policy_changed_details(self): """ @@ -22926,7 +23875,7 @@ def is_file_locking_policy_changed_details(self): :rtype: bool """ - return self._tag == 'file_locking_policy_changed_details' + return self._tag == "file_locking_policy_changed_details" def is_file_provider_migration_policy_changed_details(self): """ @@ -22934,7 +23883,7 @@ def is_file_provider_migration_policy_changed_details(self): :rtype: bool """ - return self._tag == 'file_provider_migration_policy_changed_details' + return self._tag == "file_provider_migration_policy_changed_details" def is_file_requests_change_policy_details(self): """ @@ -22942,7 +23891,7 @@ def is_file_requests_change_policy_details(self): :rtype: bool """ - return self._tag == 'file_requests_change_policy_details' + return self._tag == "file_requests_change_policy_details" def is_file_requests_emails_enabled_details(self): """ @@ -22950,7 +23899,7 @@ def is_file_requests_emails_enabled_details(self): :rtype: bool """ - return self._tag == 'file_requests_emails_enabled_details' + return self._tag == "file_requests_emails_enabled_details" def is_file_requests_emails_restricted_to_team_only_details(self): """ @@ -22958,7 +23907,7 @@ def is_file_requests_emails_restricted_to_team_only_details(self): :rtype: bool """ - return self._tag == 'file_requests_emails_restricted_to_team_only_details' + return self._tag == "file_requests_emails_restricted_to_team_only_details" def is_file_transfers_policy_changed_details(self): """ @@ -22966,7 +23915,7 @@ def is_file_transfers_policy_changed_details(self): :rtype: bool """ - return self._tag == 'file_transfers_policy_changed_details' + return self._tag == "file_transfers_policy_changed_details" def is_flexible_file_names_policy_changed_details(self): """ @@ -22974,7 +23923,7 @@ def is_flexible_file_names_policy_changed_details(self): :rtype: bool """ - return self._tag == 'flexible_file_names_policy_changed_details' + return self._tag == "flexible_file_names_policy_changed_details" def is_folder_link_restriction_policy_changed_details(self): """ @@ -22982,7 +23931,7 @@ def is_folder_link_restriction_policy_changed_details(self): :rtype: bool """ - return self._tag == 'folder_link_restriction_policy_changed_details' + return self._tag == "folder_link_restriction_policy_changed_details" def is_google_sso_change_policy_details(self): """ @@ -22990,7 +23939,7 @@ def is_google_sso_change_policy_details(self): :rtype: bool """ - return self._tag == 'google_sso_change_policy_details' + return self._tag == "google_sso_change_policy_details" def is_group_user_management_change_policy_details(self): """ @@ -22998,7 +23947,7 @@ def is_group_user_management_change_policy_details(self): :rtype: bool """ - return self._tag == 'group_user_management_change_policy_details' + return self._tag == "group_user_management_change_policy_details" def is_integration_policy_changed_details(self): """ @@ -23006,7 +23955,7 @@ def is_integration_policy_changed_details(self): :rtype: bool """ - return self._tag == 'integration_policy_changed_details' + return self._tag == "integration_policy_changed_details" def is_invite_acceptance_email_policy_changed_details(self): """ @@ -23014,7 +23963,7 @@ def is_invite_acceptance_email_policy_changed_details(self): :rtype: bool """ - return self._tag == 'invite_acceptance_email_policy_changed_details' + return self._tag == "invite_acceptance_email_policy_changed_details" def is_media_hub_adding_people_policy_changed_details(self): """ @@ -23022,7 +23971,7 @@ def is_media_hub_adding_people_policy_changed_details(self): :rtype: bool """ - return self._tag == 'media_hub_adding_people_policy_changed_details' + return self._tag == "media_hub_adding_people_policy_changed_details" def is_media_hub_download_policy_changed_details(self): """ @@ -23030,7 +23979,7 @@ def is_media_hub_download_policy_changed_details(self): :rtype: bool """ - return self._tag == 'media_hub_download_policy_changed_details' + return self._tag == "media_hub_download_policy_changed_details" def is_media_hub_link_sharing_policy_changed_details(self): """ @@ -23038,7 +23987,7 @@ def is_media_hub_link_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == 'media_hub_link_sharing_policy_changed_details' + return self._tag == "media_hub_link_sharing_policy_changed_details" def is_member_requests_change_policy_details(self): """ @@ -23046,7 +23995,7 @@ def is_member_requests_change_policy_details(self): :rtype: bool """ - return self._tag == 'member_requests_change_policy_details' + return self._tag == "member_requests_change_policy_details" def is_member_send_invite_policy_changed_details(self): """ @@ -23054,7 +24003,7 @@ def is_member_send_invite_policy_changed_details(self): :rtype: bool """ - return self._tag == 'member_send_invite_policy_changed_details' + return self._tag == "member_send_invite_policy_changed_details" def is_member_space_limits_add_exception_details(self): """ @@ -23062,7 +24011,7 @@ def is_member_space_limits_add_exception_details(self): :rtype: bool """ - return self._tag == 'member_space_limits_add_exception_details' + return self._tag == "member_space_limits_add_exception_details" def is_member_space_limits_change_caps_type_policy_details(self): """ @@ -23070,7 +24019,7 @@ def is_member_space_limits_change_caps_type_policy_details(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_caps_type_policy_details' + return self._tag == "member_space_limits_change_caps_type_policy_details" def is_member_space_limits_change_policy_details(self): """ @@ -23078,7 +24027,7 @@ def is_member_space_limits_change_policy_details(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_policy_details' + return self._tag == "member_space_limits_change_policy_details" def is_member_space_limits_remove_exception_details(self): """ @@ -23086,7 +24035,7 @@ def is_member_space_limits_remove_exception_details(self): :rtype: bool """ - return self._tag == 'member_space_limits_remove_exception_details' + return self._tag == "member_space_limits_remove_exception_details" def is_member_suggestions_change_policy_details(self): """ @@ -23094,7 +24043,7 @@ def is_member_suggestions_change_policy_details(self): :rtype: bool """ - return self._tag == 'member_suggestions_change_policy_details' + return self._tag == "member_suggestions_change_policy_details" def is_microsoft_login_change_policy_details(self): """ @@ -23102,7 +24051,7 @@ def is_microsoft_login_change_policy_details(self): :rtype: bool """ - return self._tag == 'microsoft_login_change_policy_details' + return self._tag == "microsoft_login_change_policy_details" def is_microsoft_office_addin_change_policy_details(self): """ @@ -23110,7 +24059,7 @@ def is_microsoft_office_addin_change_policy_details(self): :rtype: bool """ - return self._tag == 'microsoft_office_addin_change_policy_details' + return self._tag == "microsoft_office_addin_change_policy_details" def is_multi_team_identity_policy_changed_details(self): """ @@ -23118,7 +24067,7 @@ def is_multi_team_identity_policy_changed_details(self): :rtype: bool """ - return self._tag == 'multi_team_identity_policy_changed_details' + return self._tag == "multi_team_identity_policy_changed_details" def is_network_control_change_policy_details(self): """ @@ -23126,7 +24075,7 @@ def is_network_control_change_policy_details(self): :rtype: bool """ - return self._tag == 'network_control_change_policy_details' + return self._tag == "network_control_change_policy_details" def is_paper_change_deployment_policy_details(self): """ @@ -23134,7 +24083,7 @@ def is_paper_change_deployment_policy_details(self): :rtype: bool """ - return self._tag == 'paper_change_deployment_policy_details' + return self._tag == "paper_change_deployment_policy_details" def is_paper_change_member_link_policy_details(self): """ @@ -23142,7 +24091,7 @@ def is_paper_change_member_link_policy_details(self): :rtype: bool """ - return self._tag == 'paper_change_member_link_policy_details' + return self._tag == "paper_change_member_link_policy_details" def is_paper_change_member_policy_details(self): """ @@ -23150,7 +24099,7 @@ def is_paper_change_member_policy_details(self): :rtype: bool """ - return self._tag == 'paper_change_member_policy_details' + return self._tag == "paper_change_member_policy_details" def is_paper_change_policy_details(self): """ @@ -23158,7 +24107,7 @@ def is_paper_change_policy_details(self): :rtype: bool """ - return self._tag == 'paper_change_policy_details' + return self._tag == "paper_change_policy_details" def is_paper_default_folder_policy_changed_details(self): """ @@ -23166,7 +24115,7 @@ def is_paper_default_folder_policy_changed_details(self): :rtype: bool """ - return self._tag == 'paper_default_folder_policy_changed_details' + return self._tag == "paper_default_folder_policy_changed_details" def is_paper_desktop_policy_changed_details(self): """ @@ -23174,7 +24123,7 @@ def is_paper_desktop_policy_changed_details(self): :rtype: bool """ - return self._tag == 'paper_desktop_policy_changed_details' + return self._tag == "paper_desktop_policy_changed_details" def is_paper_enabled_users_group_addition_details(self): """ @@ -23182,7 +24131,7 @@ def is_paper_enabled_users_group_addition_details(self): :rtype: bool """ - return self._tag == 'paper_enabled_users_group_addition_details' + return self._tag == "paper_enabled_users_group_addition_details" def is_paper_enabled_users_group_removal_details(self): """ @@ -23190,7 +24139,7 @@ def is_paper_enabled_users_group_removal_details(self): :rtype: bool """ - return self._tag == 'paper_enabled_users_group_removal_details' + return self._tag == "paper_enabled_users_group_removal_details" def is_passkey_login_policy_changed_details(self): """ @@ -23198,7 +24147,7 @@ def is_passkey_login_policy_changed_details(self): :rtype: bool """ - return self._tag == 'passkey_login_policy_changed_details' + return self._tag == "passkey_login_policy_changed_details" def is_password_strength_requirements_change_policy_details(self): """ @@ -23206,7 +24155,7 @@ def is_password_strength_requirements_change_policy_details(self): :rtype: bool """ - return self._tag == 'password_strength_requirements_change_policy_details' + return self._tag == "password_strength_requirements_change_policy_details" def is_permanent_delete_change_policy_details(self): """ @@ -23214,7 +24163,7 @@ def is_permanent_delete_change_policy_details(self): :rtype: bool """ - return self._tag == 'permanent_delete_change_policy_details' + return self._tag == "permanent_delete_change_policy_details" def is_previews_ai_policy_changed_details(self): """ @@ -23222,7 +24171,7 @@ def is_previews_ai_policy_changed_details(self): :rtype: bool """ - return self._tag == 'previews_ai_policy_changed_details' + return self._tag == "previews_ai_policy_changed_details" def is_replay_adding_people_policy_changed_details(self): """ @@ -23230,7 +24179,7 @@ def is_replay_adding_people_policy_changed_details(self): :rtype: bool """ - return self._tag == 'replay_adding_people_policy_changed_details' + return self._tag == "replay_adding_people_policy_changed_details" def is_replay_sharing_policy_changed_details(self): """ @@ -23238,7 +24187,7 @@ def is_replay_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == 'replay_sharing_policy_changed_details' + return self._tag == "replay_sharing_policy_changed_details" def is_reseller_support_change_policy_details(self): """ @@ -23246,7 +24195,7 @@ def is_reseller_support_change_policy_details(self): :rtype: bool """ - return self._tag == 'reseller_support_change_policy_details' + return self._tag == "reseller_support_change_policy_details" def is_rewind_policy_changed_details(self): """ @@ -23254,7 +24203,7 @@ def is_rewind_policy_changed_details(self): :rtype: bool """ - return self._tag == 'rewind_policy_changed_details' + return self._tag == "rewind_policy_changed_details" def is_send_and_track_policy_changed_details(self): """ @@ -23262,7 +24211,7 @@ def is_send_and_track_policy_changed_details(self): :rtype: bool """ - return self._tag == 'send_and_track_policy_changed_details' + return self._tag == "send_and_track_policy_changed_details" def is_send_external_sharing_policy_changed_details(self): """ @@ -23270,7 +24219,7 @@ def is_send_external_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == 'send_external_sharing_policy_changed_details' + return self._tag == "send_external_sharing_policy_changed_details" def is_send_for_signature_policy_changed_details(self): """ @@ -23278,7 +24227,7 @@ def is_send_for_signature_policy_changed_details(self): :rtype: bool """ - return self._tag == 'send_for_signature_policy_changed_details' + return self._tag == "send_for_signature_policy_changed_details" def is_shared_link_default_permissions_policy_changed_details(self): """ @@ -23286,7 +24235,7 @@ def is_shared_link_default_permissions_policy_changed_details(self): :rtype: bool """ - return self._tag == 'shared_link_default_permissions_policy_changed_details' + return self._tag == "shared_link_default_permissions_policy_changed_details" def is_sharing_change_folder_join_policy_details(self): """ @@ -23294,7 +24243,7 @@ def is_sharing_change_folder_join_policy_details(self): :rtype: bool """ - return self._tag == 'sharing_change_folder_join_policy_details' + return self._tag == "sharing_change_folder_join_policy_details" def is_sharing_change_link_allow_change_expiration_policy_details(self): """ @@ -23302,7 +24251,7 @@ def is_sharing_change_link_allow_change_expiration_policy_details(self): :rtype: bool """ - return self._tag == 'sharing_change_link_allow_change_expiration_policy_details' + return self._tag == "sharing_change_link_allow_change_expiration_policy_details" def is_sharing_change_link_default_expiration_policy_details(self): """ @@ -23310,7 +24259,7 @@ def is_sharing_change_link_default_expiration_policy_details(self): :rtype: bool """ - return self._tag == 'sharing_change_link_default_expiration_policy_details' + return self._tag == "sharing_change_link_default_expiration_policy_details" def is_sharing_change_link_enforce_password_policy_details(self): """ @@ -23318,7 +24267,7 @@ def is_sharing_change_link_enforce_password_policy_details(self): :rtype: bool """ - return self._tag == 'sharing_change_link_enforce_password_policy_details' + return self._tag == "sharing_change_link_enforce_password_policy_details" def is_sharing_change_link_policy_details(self): """ @@ -23326,7 +24275,7 @@ def is_sharing_change_link_policy_details(self): :rtype: bool """ - return self._tag == 'sharing_change_link_policy_details' + return self._tag == "sharing_change_link_policy_details" def is_sharing_change_member_policy_details(self): """ @@ -23334,7 +24283,7 @@ def is_sharing_change_member_policy_details(self): :rtype: bool """ - return self._tag == 'sharing_change_member_policy_details' + return self._tag == "sharing_change_member_policy_details" def is_showcase_change_download_policy_details(self): """ @@ -23342,7 +24291,7 @@ def is_showcase_change_download_policy_details(self): :rtype: bool """ - return self._tag == 'showcase_change_download_policy_details' + return self._tag == "showcase_change_download_policy_details" def is_showcase_change_enabled_policy_details(self): """ @@ -23350,7 +24299,7 @@ def is_showcase_change_enabled_policy_details(self): :rtype: bool """ - return self._tag == 'showcase_change_enabled_policy_details' + return self._tag == "showcase_change_enabled_policy_details" def is_showcase_change_external_sharing_policy_details(self): """ @@ -23358,7 +24307,7 @@ def is_showcase_change_external_sharing_policy_details(self): :rtype: bool """ - return self._tag == 'showcase_change_external_sharing_policy_details' + return self._tag == "showcase_change_external_sharing_policy_details" def is_sign_external_sharing_policy_changed_details(self): """ @@ -23366,7 +24315,7 @@ def is_sign_external_sharing_policy_changed_details(self): :rtype: bool """ - return self._tag == 'sign_external_sharing_policy_changed_details' + return self._tag == "sign_external_sharing_policy_changed_details" def is_sign_template_creation_permission_changed_details(self): """ @@ -23374,7 +24323,7 @@ def is_sign_template_creation_permission_changed_details(self): :rtype: bool """ - return self._tag == 'sign_template_creation_permission_changed_details' + return self._tag == "sign_template_creation_permission_changed_details" def is_smarter_smart_sync_policy_changed_details(self): """ @@ -23382,7 +24331,7 @@ def is_smarter_smart_sync_policy_changed_details(self): :rtype: bool """ - return self._tag == 'smarter_smart_sync_policy_changed_details' + return self._tag == "smarter_smart_sync_policy_changed_details" def is_smart_sync_change_policy_details(self): """ @@ -23390,7 +24339,7 @@ def is_smart_sync_change_policy_details(self): :rtype: bool """ - return self._tag == 'smart_sync_change_policy_details' + return self._tag == "smart_sync_change_policy_details" def is_smart_sync_not_opt_out_details(self): """ @@ -23398,7 +24347,7 @@ def is_smart_sync_not_opt_out_details(self): :rtype: bool """ - return self._tag == 'smart_sync_not_opt_out_details' + return self._tag == "smart_sync_not_opt_out_details" def is_smart_sync_opt_out_details(self): """ @@ -23406,7 +24355,7 @@ def is_smart_sync_opt_out_details(self): :rtype: bool """ - return self._tag == 'smart_sync_opt_out_details' + return self._tag == "smart_sync_opt_out_details" def is_sso_change_policy_details(self): """ @@ -23414,7 +24363,7 @@ def is_sso_change_policy_details(self): :rtype: bool """ - return self._tag == 'sso_change_policy_details' + return self._tag == "sso_change_policy_details" def is_stack_cross_team_access_policy_changed_details(self): """ @@ -23422,7 +24371,7 @@ def is_stack_cross_team_access_policy_changed_details(self): :rtype: bool """ - return self._tag == 'stack_cross_team_access_policy_changed_details' + return self._tag == "stack_cross_team_access_policy_changed_details" def is_team_branding_policy_changed_details(self): """ @@ -23430,7 +24379,7 @@ def is_team_branding_policy_changed_details(self): :rtype: bool """ - return self._tag == 'team_branding_policy_changed_details' + return self._tag == "team_branding_policy_changed_details" def is_team_extensions_policy_changed_details(self): """ @@ -23438,7 +24387,7 @@ def is_team_extensions_policy_changed_details(self): :rtype: bool """ - return self._tag == 'team_extensions_policy_changed_details' + return self._tag == "team_extensions_policy_changed_details" def is_team_member_storage_request_policy_changed_details(self): """ @@ -23446,7 +24395,7 @@ def is_team_member_storage_request_policy_changed_details(self): :rtype: bool """ - return self._tag == 'team_member_storage_request_policy_changed_details' + return self._tag == "team_member_storage_request_policy_changed_details" def is_team_selective_sync_policy_changed_details(self): """ @@ -23454,7 +24403,7 @@ def is_team_selective_sync_policy_changed_details(self): :rtype: bool """ - return self._tag == 'team_selective_sync_policy_changed_details' + return self._tag == "team_selective_sync_policy_changed_details" def is_team_sharing_whitelist_subjects_changed_details(self): """ @@ -23462,7 +24411,7 @@ def is_team_sharing_whitelist_subjects_changed_details(self): :rtype: bool """ - return self._tag == 'team_sharing_whitelist_subjects_changed_details' + return self._tag == "team_sharing_whitelist_subjects_changed_details" def is_tfa_add_exception_details(self): """ @@ -23470,7 +24419,7 @@ def is_tfa_add_exception_details(self): :rtype: bool """ - return self._tag == 'tfa_add_exception_details' + return self._tag == "tfa_add_exception_details" def is_tfa_change_policy_details(self): """ @@ -23478,7 +24427,7 @@ def is_tfa_change_policy_details(self): :rtype: bool """ - return self._tag == 'tfa_change_policy_details' + return self._tag == "tfa_change_policy_details" def is_tfa_remove_exception_details(self): """ @@ -23486,7 +24435,7 @@ def is_tfa_remove_exception_details(self): :rtype: bool """ - return self._tag == 'tfa_remove_exception_details' + return self._tag == "tfa_remove_exception_details" def is_top_level_content_policy_changed_details(self): """ @@ -23494,7 +24443,7 @@ def is_top_level_content_policy_changed_details(self): :rtype: bool """ - return self._tag == 'top_level_content_policy_changed_details' + return self._tag == "top_level_content_policy_changed_details" def is_two_account_change_policy_details(self): """ @@ -23502,7 +24451,7 @@ def is_two_account_change_policy_details(self): :rtype: bool """ - return self._tag == 'two_account_change_policy_details' + return self._tag == "two_account_change_policy_details" def is_viewer_info_policy_changed_details(self): """ @@ -23510,7 +24459,7 @@ def is_viewer_info_policy_changed_details(self): :rtype: bool """ - return self._tag == 'viewer_info_policy_changed_details' + return self._tag == "viewer_info_policy_changed_details" def is_watermarking_policy_changed_details(self): """ @@ -23518,7 +24467,7 @@ def is_watermarking_policy_changed_details(self): :rtype: bool """ - return self._tag == 'watermarking_policy_changed_details' + return self._tag == "watermarking_policy_changed_details" def is_web_sessions_change_active_session_limit_details(self): """ @@ -23526,7 +24475,7 @@ def is_web_sessions_change_active_session_limit_details(self): :rtype: bool """ - return self._tag == 'web_sessions_change_active_session_limit_details' + return self._tag == "web_sessions_change_active_session_limit_details" def is_web_sessions_change_fixed_length_policy_details(self): """ @@ -23534,7 +24483,7 @@ def is_web_sessions_change_fixed_length_policy_details(self): :rtype: bool """ - return self._tag == 'web_sessions_change_fixed_length_policy_details' + return self._tag == "web_sessions_change_fixed_length_policy_details" def is_web_sessions_change_idle_length_policy_details(self): """ @@ -23542,7 +24491,7 @@ def is_web_sessions_change_idle_length_policy_details(self): :rtype: bool """ - return self._tag == 'web_sessions_change_idle_length_policy_details' + return self._tag == "web_sessions_change_idle_length_policy_details" def is_data_residency_migration_request_successful_details(self): """ @@ -23550,7 +24499,7 @@ def is_data_residency_migration_request_successful_details(self): :rtype: bool """ - return self._tag == 'data_residency_migration_request_successful_details' + return self._tag == "data_residency_migration_request_successful_details" def is_data_residency_migration_request_unsuccessful_details(self): """ @@ -23558,7 +24507,7 @@ def is_data_residency_migration_request_unsuccessful_details(self): :rtype: bool """ - return self._tag == 'data_residency_migration_request_unsuccessful_details' + return self._tag == "data_residency_migration_request_unsuccessful_details" def is_team_merge_from_details(self): """ @@ -23566,7 +24515,7 @@ def is_team_merge_from_details(self): :rtype: bool """ - return self._tag == 'team_merge_from_details' + return self._tag == "team_merge_from_details" def is_team_merge_to_details(self): """ @@ -23574,7 +24523,7 @@ def is_team_merge_to_details(self): :rtype: bool """ - return self._tag == 'team_merge_to_details' + return self._tag == "team_merge_to_details" def is_team_profile_add_background_details(self): """ @@ -23582,7 +24531,7 @@ def is_team_profile_add_background_details(self): :rtype: bool """ - return self._tag == 'team_profile_add_background_details' + return self._tag == "team_profile_add_background_details" def is_team_profile_add_logo_details(self): """ @@ -23590,7 +24539,7 @@ def is_team_profile_add_logo_details(self): :rtype: bool """ - return self._tag == 'team_profile_add_logo_details' + return self._tag == "team_profile_add_logo_details" def is_team_profile_change_background_details(self): """ @@ -23598,7 +24547,7 @@ def is_team_profile_change_background_details(self): :rtype: bool """ - return self._tag == 'team_profile_change_background_details' + return self._tag == "team_profile_change_background_details" def is_team_profile_change_default_language_details(self): """ @@ -23606,7 +24555,7 @@ def is_team_profile_change_default_language_details(self): :rtype: bool """ - return self._tag == 'team_profile_change_default_language_details' + return self._tag == "team_profile_change_default_language_details" def is_team_profile_change_logo_details(self): """ @@ -23614,7 +24563,7 @@ def is_team_profile_change_logo_details(self): :rtype: bool """ - return self._tag == 'team_profile_change_logo_details' + return self._tag == "team_profile_change_logo_details" def is_team_profile_change_name_details(self): """ @@ -23622,7 +24571,7 @@ def is_team_profile_change_name_details(self): :rtype: bool """ - return self._tag == 'team_profile_change_name_details' + return self._tag == "team_profile_change_name_details" def is_team_profile_remove_background_details(self): """ @@ -23630,7 +24579,7 @@ def is_team_profile_remove_background_details(self): :rtype: bool """ - return self._tag == 'team_profile_remove_background_details' + return self._tag == "team_profile_remove_background_details" def is_team_profile_remove_logo_details(self): """ @@ -23638,7 +24587,7 @@ def is_team_profile_remove_logo_details(self): :rtype: bool """ - return self._tag == 'team_profile_remove_logo_details' + return self._tag == "team_profile_remove_logo_details" def is_passkey_add_details(self): """ @@ -23646,7 +24595,7 @@ def is_passkey_add_details(self): :rtype: bool """ - return self._tag == 'passkey_add_details' + return self._tag == "passkey_add_details" def is_passkey_remove_details(self): """ @@ -23654,7 +24603,7 @@ def is_passkey_remove_details(self): :rtype: bool """ - return self._tag == 'passkey_remove_details' + return self._tag == "passkey_remove_details" def is_tfa_add_backup_phone_details(self): """ @@ -23662,7 +24611,7 @@ def is_tfa_add_backup_phone_details(self): :rtype: bool """ - return self._tag == 'tfa_add_backup_phone_details' + return self._tag == "tfa_add_backup_phone_details" def is_tfa_add_security_key_details(self): """ @@ -23670,7 +24619,7 @@ def is_tfa_add_security_key_details(self): :rtype: bool """ - return self._tag == 'tfa_add_security_key_details' + return self._tag == "tfa_add_security_key_details" def is_tfa_change_backup_phone_details(self): """ @@ -23678,7 +24627,7 @@ def is_tfa_change_backup_phone_details(self): :rtype: bool """ - return self._tag == 'tfa_change_backup_phone_details' + return self._tag == "tfa_change_backup_phone_details" def is_tfa_change_status_details(self): """ @@ -23686,7 +24635,7 @@ def is_tfa_change_status_details(self): :rtype: bool """ - return self._tag == 'tfa_change_status_details' + return self._tag == "tfa_change_status_details" def is_tfa_remove_backup_phone_details(self): """ @@ -23694,7 +24643,7 @@ def is_tfa_remove_backup_phone_details(self): :rtype: bool """ - return self._tag == 'tfa_remove_backup_phone_details' + return self._tag == "tfa_remove_backup_phone_details" def is_tfa_remove_security_key_details(self): """ @@ -23702,7 +24651,7 @@ def is_tfa_remove_security_key_details(self): :rtype: bool """ - return self._tag == 'tfa_remove_security_key_details' + return self._tag == "tfa_remove_security_key_details" def is_tfa_reset_details(self): """ @@ -23710,7 +24659,7 @@ def is_tfa_reset_details(self): :rtype: bool """ - return self._tag == 'tfa_reset_details' + return self._tag == "tfa_reset_details" def is_changed_enterprise_admin_role_details(self): """ @@ -23718,7 +24667,7 @@ def is_changed_enterprise_admin_role_details(self): :rtype: bool """ - return self._tag == 'changed_enterprise_admin_role_details' + return self._tag == "changed_enterprise_admin_role_details" def is_changed_enterprise_connected_team_status_details(self): """ @@ -23726,7 +24675,7 @@ def is_changed_enterprise_connected_team_status_details(self): :rtype: bool """ - return self._tag == 'changed_enterprise_connected_team_status_details' + return self._tag == "changed_enterprise_connected_team_status_details" def is_ended_enterprise_admin_session_details(self): """ @@ -23734,7 +24683,7 @@ def is_ended_enterprise_admin_session_details(self): :rtype: bool """ - return self._tag == 'ended_enterprise_admin_session_details' + return self._tag == "ended_enterprise_admin_session_details" def is_ended_enterprise_admin_session_deprecated_details(self): """ @@ -23742,7 +24691,7 @@ def is_ended_enterprise_admin_session_deprecated_details(self): :rtype: bool """ - return self._tag == 'ended_enterprise_admin_session_deprecated_details' + return self._tag == "ended_enterprise_admin_session_deprecated_details" def is_enterprise_settings_locking_details(self): """ @@ -23750,7 +24699,7 @@ def is_enterprise_settings_locking_details(self): :rtype: bool """ - return self._tag == 'enterprise_settings_locking_details' + return self._tag == "enterprise_settings_locking_details" def is_guest_admin_change_status_details(self): """ @@ -23758,7 +24707,7 @@ def is_guest_admin_change_status_details(self): :rtype: bool """ - return self._tag == 'guest_admin_change_status_details' + return self._tag == "guest_admin_change_status_details" def is_started_enterprise_admin_session_details(self): """ @@ -23766,7 +24715,7 @@ def is_started_enterprise_admin_session_details(self): :rtype: bool """ - return self._tag == 'started_enterprise_admin_session_details' + return self._tag == "started_enterprise_admin_session_details" def is_team_merge_request_accepted_details(self): """ @@ -23774,7 +24723,7 @@ def is_team_merge_request_accepted_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_accepted_details' + return self._tag == "team_merge_request_accepted_details" def is_team_merge_request_accepted_shown_to_primary_team_details(self): """ @@ -23782,7 +24731,7 @@ def is_team_merge_request_accepted_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_accepted_shown_to_primary_team_details' + return self._tag == "team_merge_request_accepted_shown_to_primary_team_details" def is_team_merge_request_accepted_shown_to_secondary_team_details(self): """ @@ -23790,7 +24739,7 @@ def is_team_merge_request_accepted_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_accepted_shown_to_secondary_team_details' + return self._tag == "team_merge_request_accepted_shown_to_secondary_team_details" def is_team_merge_request_auto_canceled_details(self): """ @@ -23798,7 +24747,7 @@ def is_team_merge_request_auto_canceled_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_auto_canceled_details' + return self._tag == "team_merge_request_auto_canceled_details" def is_team_merge_request_canceled_details(self): """ @@ -23806,7 +24755,7 @@ def is_team_merge_request_canceled_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_canceled_details' + return self._tag == "team_merge_request_canceled_details" def is_team_merge_request_canceled_shown_to_primary_team_details(self): """ @@ -23814,7 +24763,7 @@ def is_team_merge_request_canceled_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_canceled_shown_to_primary_team_details' + return self._tag == "team_merge_request_canceled_shown_to_primary_team_details" def is_team_merge_request_canceled_shown_to_secondary_team_details(self): """ @@ -23822,7 +24771,7 @@ def is_team_merge_request_canceled_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_canceled_shown_to_secondary_team_details' + return self._tag == "team_merge_request_canceled_shown_to_secondary_team_details" def is_team_merge_request_expired_details(self): """ @@ -23830,7 +24779,7 @@ def is_team_merge_request_expired_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_expired_details' + return self._tag == "team_merge_request_expired_details" def is_team_merge_request_expired_shown_to_primary_team_details(self): """ @@ -23838,7 +24787,7 @@ def is_team_merge_request_expired_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_expired_shown_to_primary_team_details' + return self._tag == "team_merge_request_expired_shown_to_primary_team_details" def is_team_merge_request_expired_shown_to_secondary_team_details(self): """ @@ -23846,7 +24795,7 @@ def is_team_merge_request_expired_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_expired_shown_to_secondary_team_details' + return self._tag == "team_merge_request_expired_shown_to_secondary_team_details" def is_team_merge_request_rejected_shown_to_primary_team_details(self): """ @@ -23854,7 +24803,7 @@ def is_team_merge_request_rejected_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_rejected_shown_to_primary_team_details' + return self._tag == "team_merge_request_rejected_shown_to_primary_team_details" def is_team_merge_request_rejected_shown_to_secondary_team_details(self): """ @@ -23862,7 +24811,7 @@ def is_team_merge_request_rejected_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_rejected_shown_to_secondary_team_details' + return self._tag == "team_merge_request_rejected_shown_to_secondary_team_details" def is_team_merge_request_reminder_details(self): """ @@ -23870,7 +24819,7 @@ def is_team_merge_request_reminder_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_reminder_details' + return self._tag == "team_merge_request_reminder_details" def is_team_merge_request_reminder_shown_to_primary_team_details(self): """ @@ -23878,7 +24827,7 @@ def is_team_merge_request_reminder_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_reminder_shown_to_primary_team_details' + return self._tag == "team_merge_request_reminder_shown_to_primary_team_details" def is_team_merge_request_reminder_shown_to_secondary_team_details(self): """ @@ -23886,7 +24835,7 @@ def is_team_merge_request_reminder_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_reminder_shown_to_secondary_team_details' + return self._tag == "team_merge_request_reminder_shown_to_secondary_team_details" def is_team_merge_request_revoked_details(self): """ @@ -23894,7 +24843,7 @@ def is_team_merge_request_revoked_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_revoked_details' + return self._tag == "team_merge_request_revoked_details" def is_team_merge_request_sent_shown_to_primary_team_details(self): """ @@ -23902,7 +24851,7 @@ def is_team_merge_request_sent_shown_to_primary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_sent_shown_to_primary_team_details' + return self._tag == "team_merge_request_sent_shown_to_primary_team_details" def is_team_merge_request_sent_shown_to_secondary_team_details(self): """ @@ -23910,7 +24859,7 @@ def is_team_merge_request_sent_shown_to_secondary_team_details(self): :rtype: bool """ - return self._tag == 'team_merge_request_sent_shown_to_secondary_team_details' + return self._tag == "team_merge_request_sent_shown_to_secondary_team_details" def is_missing_details(self): """ @@ -23918,7 +24867,7 @@ def is_missing_details(self): :rtype: bool """ - return self._tag == 'missing_details' + return self._tag == "missing_details" def is_other(self): """ @@ -23926,7 +24875,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_admin_alerting_alert_state_changed_details(self): """ @@ -24225,7 +25174,9 @@ def get_dash_changed_audience_of_shared_link_to_stack_details(self): :rtype: DashChangedAudienceOfSharedLinkToStackDetails """ if not self.is_dash_changed_audience_of_shared_link_to_stack_details(): - raise AttributeError("tag 'dash_changed_audience_of_shared_link_to_stack_details' not set") + raise AttributeError( + "tag 'dash_changed_audience_of_shared_link_to_stack_details' not set" + ) return self._value def get_dash_cloned_stack_details(self): @@ -24825,7 +25776,9 @@ def get_external_drive_backup_eligibility_status_checked_details(self): :rtype: ExternalDriveBackupEligibilityStatusCheckedDetails """ if not self.is_external_drive_backup_eligibility_status_checked_details(): - raise AttributeError("tag 'external_drive_backup_eligibility_status_checked_details' not set") + raise AttributeError( + "tag 'external_drive_backup_eligibility_status_checked_details' not set" + ) return self._value def get_external_drive_backup_status_changed_details(self): @@ -24895,7 +25848,9 @@ def get_domain_invites_approve_request_to_join_team_details(self): :rtype: 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") + raise AttributeError( + "tag 'domain_invites_approve_request_to_join_team_details' not set" + ) return self._value def get_domain_invites_decline_request_to_join_team_details(self): @@ -24905,7 +25860,9 @@ def get_domain_invites_decline_request_to_join_team_details(self): :rtype: 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") + raise AttributeError( + "tag 'domain_invites_decline_request_to_join_team_details' not set" + ) return self._value def get_domain_invites_email_existing_users_details(self): @@ -24935,7 +25892,9 @@ def get_domain_invites_set_invite_new_user_pref_to_no_details(self): :rtype: 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") + raise AttributeError( + "tag 'domain_invites_set_invite_new_user_pref_to_no_details' not set" + ) return self._value def get_domain_invites_set_invite_new_user_pref_to_yes_details(self): @@ -24945,7 +25904,9 @@ def get_domain_invites_set_invite_new_user_pref_to_yes_details(self): :rtype: 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") + raise AttributeError( + "tag 'domain_invites_set_invite_new_user_pref_to_yes_details' not set" + ) return self._value def get_domain_verification_add_domain_fail_details(self): @@ -25675,7 +26636,9 @@ def get_group_external_sharing_setting_override_changed_details(self): :rtype: GroupExternalSharingSettingOverrideChangedDetails """ if not self.is_group_external_sharing_setting_override_changed_details(): - raise AttributeError("tag 'group_external_sharing_setting_override_changed_details' not set") + raise AttributeError( + "tag 'group_external_sharing_setting_override_changed_details' not set" + ) return self._value def get_group_join_policy_updated_details(self): @@ -27115,7 +28078,9 @@ def get_media_hub_shared_link_download_setting_changed_details(self): :rtype: MediaHubSharedLinkDownloadSettingChangedDetails """ if not self.is_media_hub_shared_link_download_setting_changed_details(): - raise AttributeError("tag 'media_hub_shared_link_download_setting_changed_details' not set") + raise AttributeError( + "tag 'media_hub_shared_link_download_setting_changed_details' not set" + ) return self._value def get_media_hub_shared_link_revoked_details(self): @@ -27305,7 +28270,9 @@ def get_send_and_track_removed_file_and_associated_links_details(self): :rtype: SendAndTrackRemovedFileAndAssociatedLinksDetails """ if not self.is_send_and_track_removed_file_and_associated_links_details(): - raise AttributeError("tag 'send_and_track_removed_file_and_associated_links_details' not set") + raise AttributeError( + "tag 'send_and_track_removed_file_and_associated_links_details' not set" + ) return self._value def get_sf_add_group_details(self): @@ -27695,7 +28662,9 @@ def get_shared_folder_change_members_inheritance_policy_details(self): :rtype: SharedFolderChangeMembersInheritancePolicyDetails """ if not self.is_shared_folder_change_members_inheritance_policy_details(): - raise AttributeError("tag 'shared_folder_change_members_inheritance_policy_details' not set") + raise AttributeError( + "tag 'shared_folder_change_members_inheritance_policy_details' not set" + ) return self._value def get_shared_folder_change_members_management_policy_details(self): @@ -27705,7 +28674,9 @@ def get_shared_folder_change_members_management_policy_details(self): :rtype: SharedFolderChangeMembersManagementPolicyDetails """ if not self.is_shared_folder_change_members_management_policy_details(): - raise AttributeError("tag 'shared_folder_change_members_management_policy_details' not set") + raise AttributeError( + "tag 'shared_folder_change_members_management_policy_details' not set" + ) return self._value def get_shared_folder_change_members_policy_details(self): @@ -27895,7 +28866,9 @@ def get_shared_link_settings_allow_download_disabled_details(self): :rtype: SharedLinkSettingsAllowDownloadDisabledDetails """ if not self.is_shared_link_settings_allow_download_disabled_details(): - raise AttributeError("tag 'shared_link_settings_allow_download_disabled_details' not set") + raise AttributeError( + "tag 'shared_link_settings_allow_download_disabled_details' not set" + ) return self._value def get_shared_link_settings_allow_download_enabled_details(self): @@ -27905,7 +28878,9 @@ def get_shared_link_settings_allow_download_enabled_details(self): :rtype: SharedLinkSettingsAllowDownloadEnabledDetails """ if not self.is_shared_link_settings_allow_download_enabled_details(): - raise AttributeError("tag 'shared_link_settings_allow_download_enabled_details' not set") + raise AttributeError( + "tag 'shared_link_settings_allow_download_enabled_details' not set" + ) return self._value def get_shared_link_settings_change_audience_details(self): @@ -28525,7 +29500,9 @@ def get_team_folder_space_limits_change_notification_target_details(self): :rtype: TeamFolderSpaceLimitsChangeNotificationTargetDetails """ if not self.is_team_folder_space_limits_change_notification_target_details(): - raise AttributeError("tag 'team_folder_space_limits_change_notification_target_details' not set") + raise AttributeError( + "tag 'team_folder_space_limits_change_notification_target_details' not set" + ) return self._value def get_team_selective_sync_settings_changed_details(self): @@ -28565,7 +29542,9 @@ def get_ai_third_party_sharing_dropbox_base_policy_changed_details(self): :rtype: AiThirdPartySharingDropboxBasePolicyChangedDetails """ if not self.is_ai_third_party_sharing_dropbox_base_policy_changed_details(): - raise AttributeError("tag 'ai_third_party_sharing_dropbox_base_policy_changed_details' not set") + raise AttributeError( + "tag 'ai_third_party_sharing_dropbox_base_policy_changed_details' not set" + ) return self._value def get_allow_download_disabled_details(self): @@ -28915,7 +29894,9 @@ def get_file_requests_emails_restricted_to_team_only_details(self): :rtype: 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") + raise AttributeError( + "tag 'file_requests_emails_restricted_to_team_only_details' not set" + ) return self._value def get_file_transfers_policy_changed_details(self): @@ -29055,7 +30036,9 @@ def get_member_space_limits_change_caps_type_policy_details(self): :rtype: 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") + raise AttributeError( + "tag 'member_space_limits_change_caps_type_policy_details' not set" + ) return self._value def get_member_space_limits_change_policy_details(self): @@ -29225,7 +30208,9 @@ def get_password_strength_requirements_change_policy_details(self): :rtype: PasswordStrengthRequirementsChangePolicyDetails """ if not self.is_password_strength_requirements_change_policy_details(): - raise AttributeError("tag 'password_strength_requirements_change_policy_details' not set") + raise AttributeError( + "tag 'password_strength_requirements_change_policy_details' not set" + ) return self._value def get_permanent_delete_change_policy_details(self): @@ -29325,7 +30310,9 @@ def get_shared_link_default_permissions_policy_changed_details(self): :rtype: SharedLinkDefaultPermissionsPolicyChangedDetails """ if not self.is_shared_link_default_permissions_policy_changed_details(): - raise AttributeError("tag 'shared_link_default_permissions_policy_changed_details' not set") + raise AttributeError( + "tag 'shared_link_default_permissions_policy_changed_details' not set" + ) return self._value def get_sharing_change_folder_join_policy_details(self): @@ -29345,7 +30332,9 @@ def get_sharing_change_link_allow_change_expiration_policy_details(self): :rtype: SharingChangeLinkAllowChangeExpirationPolicyDetails """ if not self.is_sharing_change_link_allow_change_expiration_policy_details(): - raise AttributeError("tag 'sharing_change_link_allow_change_expiration_policy_details' not set") + raise AttributeError( + "tag 'sharing_change_link_allow_change_expiration_policy_details' not set" + ) return self._value def get_sharing_change_link_default_expiration_policy_details(self): @@ -29355,7 +30344,9 @@ def get_sharing_change_link_default_expiration_policy_details(self): :rtype: SharingChangeLinkDefaultExpirationPolicyDetails """ if not self.is_sharing_change_link_default_expiration_policy_details(): - raise AttributeError("tag 'sharing_change_link_default_expiration_policy_details' not set") + raise AttributeError( + "tag 'sharing_change_link_default_expiration_policy_details' not set" + ) return self._value def get_sharing_change_link_enforce_password_policy_details(self): @@ -29365,7 +30356,9 @@ def get_sharing_change_link_enforce_password_policy_details(self): :rtype: SharingChangeLinkEnforcePasswordPolicyDetails """ if not self.is_sharing_change_link_enforce_password_policy_details(): - raise AttributeError("tag 'sharing_change_link_enforce_password_policy_details' not set") + raise AttributeError( + "tag 'sharing_change_link_enforce_password_policy_details' not set" + ) return self._value def get_sharing_change_link_policy_details(self): @@ -29655,7 +30648,9 @@ def get_data_residency_migration_request_successful_details(self): :rtype: DataResidencyMigrationRequestSuccessfulDetails """ if not self.is_data_residency_migration_request_successful_details(): - raise AttributeError("tag 'data_residency_migration_request_successful_details' not set") + raise AttributeError( + "tag 'data_residency_migration_request_successful_details' not set" + ) return self._value def get_data_residency_migration_request_unsuccessful_details(self): @@ -29665,7 +30660,9 @@ def get_data_residency_migration_request_unsuccessful_details(self): :rtype: DataResidencyMigrationRequestUnsuccessfulDetails """ if not self.is_data_residency_migration_request_unsuccessful_details(): - raise AttributeError("tag 'data_residency_migration_request_unsuccessful_details' not set") + raise AttributeError( + "tag 'data_residency_migration_request_unsuccessful_details' not set" + ) return self._value def get_team_merge_from_details(self): @@ -29945,7 +30942,9 @@ def get_team_merge_request_accepted_shown_to_primary_team_details(self): :rtype: TeamMergeRequestAcceptedShownToPrimaryTeamDetails """ if not self.is_team_merge_request_accepted_shown_to_primary_team_details(): - raise AttributeError("tag 'team_merge_request_accepted_shown_to_primary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_accepted_shown_to_primary_team_details' not set" + ) return self._value def get_team_merge_request_accepted_shown_to_secondary_team_details(self): @@ -29955,7 +30954,9 @@ def get_team_merge_request_accepted_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestAcceptedShownToSecondaryTeamDetails """ if not self.is_team_merge_request_accepted_shown_to_secondary_team_details(): - raise AttributeError("tag 'team_merge_request_accepted_shown_to_secondary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_accepted_shown_to_secondary_team_details' not set" + ) return self._value def get_team_merge_request_auto_canceled_details(self): @@ -29985,7 +30986,9 @@ def get_team_merge_request_canceled_shown_to_primary_team_details(self): :rtype: TeamMergeRequestCanceledShownToPrimaryTeamDetails """ if not self.is_team_merge_request_canceled_shown_to_primary_team_details(): - raise AttributeError("tag 'team_merge_request_canceled_shown_to_primary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_canceled_shown_to_primary_team_details' not set" + ) return self._value def get_team_merge_request_canceled_shown_to_secondary_team_details(self): @@ -29995,7 +30998,9 @@ def get_team_merge_request_canceled_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestCanceledShownToSecondaryTeamDetails """ if not self.is_team_merge_request_canceled_shown_to_secondary_team_details(): - raise AttributeError("tag 'team_merge_request_canceled_shown_to_secondary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_canceled_shown_to_secondary_team_details' not set" + ) return self._value def get_team_merge_request_expired_details(self): @@ -30015,7 +31020,9 @@ def get_team_merge_request_expired_shown_to_primary_team_details(self): :rtype: TeamMergeRequestExpiredShownToPrimaryTeamDetails """ if not self.is_team_merge_request_expired_shown_to_primary_team_details(): - raise AttributeError("tag 'team_merge_request_expired_shown_to_primary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_expired_shown_to_primary_team_details' not set" + ) return self._value def get_team_merge_request_expired_shown_to_secondary_team_details(self): @@ -30025,7 +31032,9 @@ def get_team_merge_request_expired_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestExpiredShownToSecondaryTeamDetails """ if not self.is_team_merge_request_expired_shown_to_secondary_team_details(): - raise AttributeError("tag 'team_merge_request_expired_shown_to_secondary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_expired_shown_to_secondary_team_details' not set" + ) return self._value def get_team_merge_request_rejected_shown_to_primary_team_details(self): @@ -30035,7 +31044,9 @@ def get_team_merge_request_rejected_shown_to_primary_team_details(self): :rtype: TeamMergeRequestRejectedShownToPrimaryTeamDetails """ if not self.is_team_merge_request_rejected_shown_to_primary_team_details(): - raise AttributeError("tag 'team_merge_request_rejected_shown_to_primary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_rejected_shown_to_primary_team_details' not set" + ) return self._value def get_team_merge_request_rejected_shown_to_secondary_team_details(self): @@ -30045,7 +31056,9 @@ def get_team_merge_request_rejected_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestRejectedShownToSecondaryTeamDetails """ if not self.is_team_merge_request_rejected_shown_to_secondary_team_details(): - raise AttributeError("tag 'team_merge_request_rejected_shown_to_secondary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_rejected_shown_to_secondary_team_details' not set" + ) return self._value def get_team_merge_request_reminder_details(self): @@ -30065,7 +31078,9 @@ def get_team_merge_request_reminder_shown_to_primary_team_details(self): :rtype: TeamMergeRequestReminderShownToPrimaryTeamDetails """ if not self.is_team_merge_request_reminder_shown_to_primary_team_details(): - raise AttributeError("tag 'team_merge_request_reminder_shown_to_primary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_reminder_shown_to_primary_team_details' not set" + ) return self._value def get_team_merge_request_reminder_shown_to_secondary_team_details(self): @@ -30075,7 +31090,9 @@ def get_team_merge_request_reminder_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestReminderShownToSecondaryTeamDetails """ if not self.is_team_merge_request_reminder_shown_to_secondary_team_details(): - raise AttributeError("tag 'team_merge_request_reminder_shown_to_secondary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_reminder_shown_to_secondary_team_details' not set" + ) return self._value def get_team_merge_request_revoked_details(self): @@ -30095,7 +31112,9 @@ def get_team_merge_request_sent_shown_to_primary_team_details(self): :rtype: TeamMergeRequestSentShownToPrimaryTeamDetails """ if not self.is_team_merge_request_sent_shown_to_primary_team_details(): - raise AttributeError("tag 'team_merge_request_sent_shown_to_primary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_sent_shown_to_primary_team_details' not set" + ) return self._value def get_team_merge_request_sent_shown_to_secondary_team_details(self): @@ -30105,7 +31124,9 @@ def get_team_merge_request_sent_shown_to_secondary_team_details(self): :rtype: TeamMergeRequestSentShownToSecondaryTeamDetails """ if not self.is_team_merge_request_sent_shown_to_secondary_team_details(): - raise AttributeError("tag 'team_merge_request_sent_shown_to_secondary_team_details' not set") + raise AttributeError( + "tag 'team_merge_request_sent_shown_to_secondary_team_details' not set" + ) return self._value def get_missing_details(self): @@ -30122,10 +31143,14 @@ def get_missing_details(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EventDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EventDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EventDetails_validator = bv.Union(EventDetails) + class EventType(bb.Union): """ The type of the event with description. @@ -32077,7 +33102,7 @@ class EventType(bb.Union): :vartype EventType.team_merge_request_sent_shown_to_secondary_team: TeamMergeRequestSentShownToSecondaryTeamType """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -32090,7 +33115,7 @@ def admin_alerting_alert_state_changed(cls, val): :param AdminAlertingAlertStateChangedType val: :rtype: EventType """ - return cls('admin_alerting_alert_state_changed', val) + return cls("admin_alerting_alert_state_changed", val) @classmethod def admin_alerting_changed_alert_config(cls, val): @@ -32101,7 +33126,7 @@ def admin_alerting_changed_alert_config(cls, val): :param AdminAlertingChangedAlertConfigType val: :rtype: EventType """ - return cls('admin_alerting_changed_alert_config', val) + return cls("admin_alerting_changed_alert_config", val) @classmethod def admin_alerting_triggered_alert(cls, val): @@ -32112,7 +33137,7 @@ def admin_alerting_triggered_alert(cls, val): :param AdminAlertingTriggeredAlertType val: :rtype: EventType """ - return cls('admin_alerting_triggered_alert', val) + return cls("admin_alerting_triggered_alert", val) @classmethod def ransomware_restore_process_completed(cls, val): @@ -32123,7 +33148,7 @@ def ransomware_restore_process_completed(cls, val): :param RansomwareRestoreProcessCompletedType val: :rtype: EventType """ - return cls('ransomware_restore_process_completed', val) + return cls("ransomware_restore_process_completed", val) @classmethod def ransomware_restore_process_started(cls, val): @@ -32134,7 +33159,7 @@ def ransomware_restore_process_started(cls, val): :param RansomwareRestoreProcessStartedType val: :rtype: EventType """ - return cls('ransomware_restore_process_started', val) + return cls("ransomware_restore_process_started", val) @classmethod def app_blocked_by_permissions(cls, val): @@ -32145,7 +33170,7 @@ def app_blocked_by_permissions(cls, val): :param AppBlockedByPermissionsType val: :rtype: EventType """ - return cls('app_blocked_by_permissions', val) + return cls("app_blocked_by_permissions", val) @classmethod def app_link_team(cls, val): @@ -32156,7 +33181,7 @@ def app_link_team(cls, val): :param AppLinkTeamType val: :rtype: EventType """ - return cls('app_link_team', val) + return cls("app_link_team", val) @classmethod def app_link_user(cls, val): @@ -32167,7 +33192,7 @@ def app_link_user(cls, val): :param AppLinkUserType val: :rtype: EventType """ - return cls('app_link_user', val) + return cls("app_link_user", val) @classmethod def app_unlink_team(cls, val): @@ -32178,7 +33203,7 @@ def app_unlink_team(cls, val): :param AppUnlinkTeamType val: :rtype: EventType """ - return cls('app_unlink_team', val) + return cls("app_unlink_team", val) @classmethod def app_unlink_user(cls, val): @@ -32189,7 +33214,7 @@ def app_unlink_user(cls, val): :param AppUnlinkUserType val: :rtype: EventType """ - return cls('app_unlink_user', val) + return cls("app_unlink_user", val) @classmethod def integration_connected(cls, val): @@ -32200,7 +33225,7 @@ def integration_connected(cls, val): :param IntegrationConnectedType val: :rtype: EventType """ - return cls('integration_connected', val) + return cls("integration_connected", val) @classmethod def integration_disconnected(cls, val): @@ -32211,7 +33236,7 @@ def integration_disconnected(cls, val): :param IntegrationDisconnectedType val: :rtype: EventType """ - return cls('integration_disconnected', val) + return cls("integration_disconnected", val) @classmethod def file_add_comment(cls, val): @@ -32222,7 +33247,7 @@ def file_add_comment(cls, val): :param FileAddCommentType val: :rtype: EventType """ - return cls('file_add_comment', val) + return cls("file_add_comment", val) @classmethod def file_change_comment_subscription(cls, val): @@ -32233,7 +33258,7 @@ def file_change_comment_subscription(cls, val): :param FileChangeCommentSubscriptionType val: :rtype: EventType """ - return cls('file_change_comment_subscription', val) + return cls("file_change_comment_subscription", val) @classmethod def file_delete_comment(cls, val): @@ -32244,7 +33269,7 @@ def file_delete_comment(cls, val): :param FileDeleteCommentType val: :rtype: EventType """ - return cls('file_delete_comment', val) + return cls("file_delete_comment", val) @classmethod def file_edit_comment(cls, val): @@ -32255,7 +33280,7 @@ def file_edit_comment(cls, val): :param FileEditCommentType val: :rtype: EventType """ - return cls('file_edit_comment', val) + return cls("file_edit_comment", val) @classmethod def file_like_comment(cls, val): @@ -32266,7 +33291,7 @@ def file_like_comment(cls, val): :param FileLikeCommentType val: :rtype: EventType """ - return cls('file_like_comment', val) + return cls("file_like_comment", val) @classmethod def file_resolve_comment(cls, val): @@ -32277,7 +33302,7 @@ def file_resolve_comment(cls, val): :param FileResolveCommentType val: :rtype: EventType """ - return cls('file_resolve_comment', val) + return cls("file_resolve_comment", val) @classmethod def file_unlike_comment(cls, val): @@ -32288,7 +33313,7 @@ def file_unlike_comment(cls, val): :param FileUnlikeCommentType val: :rtype: EventType """ - return cls('file_unlike_comment', val) + return cls("file_unlike_comment", val) @classmethod def file_unresolve_comment(cls, val): @@ -32299,7 +33324,7 @@ def file_unresolve_comment(cls, val): :param FileUnresolveCommentType val: :rtype: EventType """ - return cls('file_unresolve_comment', val) + return cls("file_unresolve_comment", val) @classmethod def dash_added_comment_to_stack(cls, val): @@ -32310,7 +33335,7 @@ def dash_added_comment_to_stack(cls, val): :param DashAddedCommentToStackType val: :rtype: EventType """ - return cls('dash_added_comment_to_stack', val) + return cls("dash_added_comment_to_stack", val) @classmethod def dash_added_connector(cls, val): @@ -32321,7 +33346,7 @@ def dash_added_connector(cls, val): :param DashAddedConnectorType val: :rtype: EventType """ - return cls('dash_added_connector', val) + return cls("dash_added_connector", val) @classmethod def dash_added_link_to_stack(cls, val): @@ -32332,7 +33357,7 @@ def dash_added_link_to_stack(cls, val): :param DashAddedLinkToStackType val: :rtype: EventType """ - return cls('dash_added_link_to_stack', val) + return cls("dash_added_link_to_stack", val) @classmethod def dash_added_team_email_domain_allowlist(cls, val): @@ -32343,7 +33368,7 @@ def dash_added_team_email_domain_allowlist(cls, val): :param DashAddedTeamEmailDomainAllowlistType val: :rtype: EventType """ - return cls('dash_added_team_email_domain_allowlist', val) + return cls("dash_added_team_email_domain_allowlist", val) @classmethod def dash_admin_added_org_wide_connector(cls, val): @@ -32354,7 +33379,7 @@ def dash_admin_added_org_wide_connector(cls, val): :param DashAdminAddedOrgWideConnectorType val: :rtype: EventType """ - return cls('dash_admin_added_org_wide_connector', val) + return cls("dash_admin_added_org_wide_connector", val) @classmethod def dash_admin_disabled_connector(cls, val): @@ -32365,7 +33390,7 @@ def dash_admin_disabled_connector(cls, val): :param DashAdminDisabledConnectorType val: :rtype: EventType """ - return cls('dash_admin_disabled_connector', val) + return cls("dash_admin_disabled_connector", val) @classmethod def dash_admin_enabled_connector(cls, val): @@ -32376,7 +33401,7 @@ def dash_admin_enabled_connector(cls, val): :param DashAdminEnabledConnectorType val: :rtype: EventType """ - return cls('dash_admin_enabled_connector', val) + return cls("dash_admin_enabled_connector", val) @classmethod def dash_admin_removed_org_wide_connector(cls, val): @@ -32387,7 +33412,7 @@ def dash_admin_removed_org_wide_connector(cls, val): :param DashAdminRemovedOrgWideConnectorType val: :rtype: EventType """ - return cls('dash_admin_removed_org_wide_connector', val) + return cls("dash_admin_removed_org_wide_connector", val) @classmethod def dash_archived_stack(cls, val): @@ -32398,7 +33423,7 @@ def dash_archived_stack(cls, val): :param DashArchivedStackType val: :rtype: EventType """ - return cls('dash_archived_stack', val) + return cls("dash_archived_stack", val) @classmethod def dash_changed_audience_of_shared_link_to_stack(cls, val): @@ -32410,7 +33435,7 @@ def dash_changed_audience_of_shared_link_to_stack(cls, val): :param DashChangedAudienceOfSharedLinkToStackType val: :rtype: EventType """ - return cls('dash_changed_audience_of_shared_link_to_stack', val) + return cls("dash_changed_audience_of_shared_link_to_stack", val) @classmethod def dash_cloned_stack(cls, val): @@ -32421,7 +33446,7 @@ def dash_cloned_stack(cls, val): :param DashClonedStackType val: :rtype: EventType """ - return cls('dash_cloned_stack', val) + return cls("dash_cloned_stack", val) @classmethod def dash_connector_tools_call(cls, val): @@ -32432,7 +33457,7 @@ def dash_connector_tools_call(cls, val): :param DashConnectorToolsCallType val: :rtype: EventType """ - return cls('dash_connector_tools_call', val) + return cls("dash_connector_tools_call", val) @classmethod def dash_created_stack(cls, val): @@ -32443,7 +33468,7 @@ def dash_created_stack(cls, val): :param DashCreatedStackType val: :rtype: EventType """ - return cls('dash_created_stack', val) + return cls("dash_created_stack", val) @classmethod def dash_deleted_comment_from_stack(cls, val): @@ -32454,7 +33479,7 @@ def dash_deleted_comment_from_stack(cls, val): :param DashDeletedCommentFromStackType val: :rtype: EventType """ - return cls('dash_deleted_comment_from_stack', val) + return cls("dash_deleted_comment_from_stack", val) @classmethod def dash_deleted_stack(cls, val): @@ -32465,7 +33490,7 @@ def dash_deleted_stack(cls, val): :param DashDeletedStackType val: :rtype: EventType """ - return cls('dash_deleted_stack', val) + return cls("dash_deleted_stack", val) @classmethod def dash_edited_comment_in_stack(cls, val): @@ -32476,7 +33501,7 @@ def dash_edited_comment_in_stack(cls, val): :param DashEditedCommentInStackType val: :rtype: EventType """ - return cls('dash_edited_comment_in_stack', val) + return cls("dash_edited_comment_in_stack", val) @classmethod def dash_external_user_opened_stack(cls, val): @@ -32487,7 +33512,7 @@ def dash_external_user_opened_stack(cls, val): :param DashExternalUserOpenedStackType val: :rtype: EventType """ - return cls('dash_external_user_opened_stack', val) + return cls("dash_external_user_opened_stack", val) @classmethod def dash_first_launched_desktop(cls, val): @@ -32498,7 +33523,7 @@ def dash_first_launched_desktop(cls, val): :param DashFirstLaunchedDesktopType val: :rtype: EventType """ - return cls('dash_first_launched_desktop', val) + return cls("dash_first_launched_desktop", val) @classmethod def dash_first_launched_extension(cls, val): @@ -32509,7 +33534,7 @@ def dash_first_launched_extension(cls, val): :param DashFirstLaunchedExtensionType val: :rtype: EventType """ - return cls('dash_first_launched_extension', val) + return cls("dash_first_launched_extension", val) @classmethod def dash_first_launched_web_start_page(cls, val): @@ -32520,7 +33545,7 @@ def dash_first_launched_web_start_page(cls, val): :param DashFirstLaunchedWebStartPageType val: :rtype: EventType """ - return cls('dash_first_launched_web_start_page', val) + return cls("dash_first_launched_web_start_page", val) @classmethod def dash_opened_shared_link_to_stack(cls, val): @@ -32531,7 +33556,7 @@ def dash_opened_shared_link_to_stack(cls, val): :param DashOpenedSharedLinkToStackType val: :rtype: EventType """ - return cls('dash_opened_shared_link_to_stack', val) + return cls("dash_opened_shared_link_to_stack", val) @classmethod def dash_opened_stack(cls, val): @@ -32542,7 +33567,7 @@ def dash_opened_stack(cls, val): :param DashOpenedStackType val: :rtype: EventType """ - return cls('dash_opened_stack', val) + return cls("dash_opened_stack", val) @classmethod def dash_preview_opt_out_status_changed(cls, val): @@ -32553,7 +33578,7 @@ def dash_preview_opt_out_status_changed(cls, val): :param DashPreviewOptOutStatusChangedType val: :rtype: EventType """ - return cls('dash_preview_opt_out_status_changed', val) + return cls("dash_preview_opt_out_status_changed", val) @classmethod def dash_removed_connector(cls, val): @@ -32564,7 +33589,7 @@ def dash_removed_connector(cls, val): :param DashRemovedConnectorType val: :rtype: EventType """ - return cls('dash_removed_connector', val) + return cls("dash_removed_connector", val) @classmethod def dash_removed_link_from_stack(cls, val): @@ -32575,7 +33600,7 @@ def dash_removed_link_from_stack(cls, val): :param DashRemovedLinkFromStackType val: :rtype: EventType """ - return cls('dash_removed_link_from_stack', val) + return cls("dash_removed_link_from_stack", val) @classmethod def dash_removed_shared_link_to_stack(cls, val): @@ -32586,7 +33611,7 @@ def dash_removed_shared_link_to_stack(cls, val): :param DashRemovedSharedLinkToStackType val: :rtype: EventType """ - return cls('dash_removed_shared_link_to_stack', val) + return cls("dash_removed_shared_link_to_stack", val) @classmethod def dash_removed_team_email_domain_allowlist(cls, val): @@ -32597,7 +33622,7 @@ def dash_removed_team_email_domain_allowlist(cls, val): :param DashRemovedTeamEmailDomainAllowlistType val: :rtype: EventType """ - return cls('dash_removed_team_email_domain_allowlist', val) + return cls("dash_removed_team_email_domain_allowlist", val) @classmethod def dash_renamed_stack(cls, val): @@ -32608,7 +33633,7 @@ def dash_renamed_stack(cls, val): :param DashRenamedStackType val: :rtype: EventType """ - return cls('dash_renamed_stack', val) + return cls("dash_renamed_stack", val) @classmethod def dash_shared_link_to_stack(cls, val): @@ -32619,7 +33644,7 @@ def dash_shared_link_to_stack(cls, val): :param DashSharedLinkToStackType val: :rtype: EventType """ - return cls('dash_shared_link_to_stack', val) + return cls("dash_shared_link_to_stack", val) @classmethod def dash_unarchived_stack(cls, val): @@ -32630,7 +33655,7 @@ def dash_unarchived_stack(cls, val): :param DashUnarchivedStackType val: :rtype: EventType """ - return cls('dash_unarchived_stack', val) + return cls("dash_unarchived_stack", val) @classmethod def dash_viewed_company_stack(cls, val): @@ -32641,7 +33666,7 @@ def dash_viewed_company_stack(cls, val): :param DashViewedCompanyStackType val: :rtype: EventType """ - return cls('dash_viewed_company_stack', val) + return cls("dash_viewed_company_stack", val) @classmethod def dash_viewed_external_ai_activity_report(cls, val): @@ -32652,7 +33677,7 @@ def dash_viewed_external_ai_activity_report(cls, val): :param DashViewedExternalAiActivityReportType val: :rtype: EventType """ - return cls('dash_viewed_external_ai_activity_report', val) + return cls("dash_viewed_external_ai_activity_report", val) @classmethod def governance_policy_add_folders(cls, val): @@ -32663,7 +33688,7 @@ def governance_policy_add_folders(cls, val): :param GovernancePolicyAddFoldersType val: :rtype: EventType """ - return cls('governance_policy_add_folders', val) + return cls("governance_policy_add_folders", val) @classmethod def governance_policy_add_folder_failed(cls, val): @@ -32674,7 +33699,7 @@ def governance_policy_add_folder_failed(cls, val): :param GovernancePolicyAddFolderFailedType val: :rtype: EventType """ - return cls('governance_policy_add_folder_failed', val) + return cls("governance_policy_add_folder_failed", val) @classmethod def governance_policy_content_disposed(cls, val): @@ -32685,7 +33710,7 @@ def governance_policy_content_disposed(cls, val): :param GovernancePolicyContentDisposedType val: :rtype: EventType """ - return cls('governance_policy_content_disposed', val) + return cls("governance_policy_content_disposed", val) @classmethod def governance_policy_create(cls, val): @@ -32696,7 +33721,7 @@ def governance_policy_create(cls, val): :param GovernancePolicyCreateType val: :rtype: EventType """ - return cls('governance_policy_create', val) + return cls("governance_policy_create", val) @classmethod def governance_policy_delete(cls, val): @@ -32707,7 +33732,7 @@ def governance_policy_delete(cls, val): :param GovernancePolicyDeleteType val: :rtype: EventType """ - return cls('governance_policy_delete', val) + return cls("governance_policy_delete", val) @classmethod def governance_policy_edit_details(cls, val): @@ -32718,7 +33743,7 @@ def governance_policy_edit_details(cls, val): :param GovernancePolicyEditDetailsType val: :rtype: EventType """ - return cls('governance_policy_edit_details', val) + return cls("governance_policy_edit_details", val) @classmethod def governance_policy_edit_duration(cls, val): @@ -32729,7 +33754,7 @@ def governance_policy_edit_duration(cls, val): :param GovernancePolicyEditDurationType val: :rtype: EventType """ - return cls('governance_policy_edit_duration', val) + return cls("governance_policy_edit_duration", val) @classmethod def governance_policy_export_created(cls, val): @@ -32740,7 +33765,7 @@ def governance_policy_export_created(cls, val): :param GovernancePolicyExportCreatedType val: :rtype: EventType """ - return cls('governance_policy_export_created', val) + return cls("governance_policy_export_created", val) @classmethod def governance_policy_export_removed(cls, val): @@ -32751,7 +33776,7 @@ def governance_policy_export_removed(cls, val): :param GovernancePolicyExportRemovedType val: :rtype: EventType """ - return cls('governance_policy_export_removed', val) + return cls("governance_policy_export_removed", val) @classmethod def governance_policy_remove_folders(cls, val): @@ -32762,7 +33787,7 @@ def governance_policy_remove_folders(cls, val): :param GovernancePolicyRemoveFoldersType val: :rtype: EventType """ - return cls('governance_policy_remove_folders', val) + return cls("governance_policy_remove_folders", val) @classmethod def governance_policy_report_created(cls, val): @@ -32773,7 +33798,7 @@ def governance_policy_report_created(cls, val): :param GovernancePolicyReportCreatedType val: :rtype: EventType """ - return cls('governance_policy_report_created', val) + return cls("governance_policy_report_created", val) @classmethod def governance_policy_zip_part_downloaded(cls, val): @@ -32784,7 +33809,7 @@ def governance_policy_zip_part_downloaded(cls, val): :param GovernancePolicyZipPartDownloadedType val: :rtype: EventType """ - return cls('governance_policy_zip_part_downloaded', val) + return cls("governance_policy_zip_part_downloaded", val) @classmethod def legal_holds_activate_a_hold(cls, val): @@ -32795,7 +33820,7 @@ def legal_holds_activate_a_hold(cls, val): :param LegalHoldsActivateAHoldType val: :rtype: EventType """ - return cls('legal_holds_activate_a_hold', val) + return cls("legal_holds_activate_a_hold", val) @classmethod def legal_holds_add_members(cls, val): @@ -32806,7 +33831,7 @@ def legal_holds_add_members(cls, val): :param LegalHoldsAddMembersType val: :rtype: EventType """ - return cls('legal_holds_add_members', val) + return cls("legal_holds_add_members", val) @classmethod def legal_holds_change_hold_details(cls, val): @@ -32817,7 +33842,7 @@ def legal_holds_change_hold_details(cls, val): :param LegalHoldsChangeHoldDetailsType val: :rtype: EventType """ - return cls('legal_holds_change_hold_details', val) + return cls("legal_holds_change_hold_details", val) @classmethod def legal_holds_change_hold_name(cls, val): @@ -32828,7 +33853,7 @@ def legal_holds_change_hold_name(cls, val): :param LegalHoldsChangeHoldNameType val: :rtype: EventType """ - return cls('legal_holds_change_hold_name', val) + return cls("legal_holds_change_hold_name", val) @classmethod def legal_holds_export_a_hold(cls, val): @@ -32839,7 +33864,7 @@ def legal_holds_export_a_hold(cls, val): :param LegalHoldsExportAHoldType val: :rtype: EventType """ - return cls('legal_holds_export_a_hold', val) + return cls("legal_holds_export_a_hold", val) @classmethod def legal_holds_export_cancelled(cls, val): @@ -32850,7 +33875,7 @@ def legal_holds_export_cancelled(cls, val): :param LegalHoldsExportCancelledType val: :rtype: EventType """ - return cls('legal_holds_export_cancelled', val) + return cls("legal_holds_export_cancelled", val) @classmethod def legal_holds_export_downloaded(cls, val): @@ -32861,7 +33886,7 @@ def legal_holds_export_downloaded(cls, val): :param LegalHoldsExportDownloadedType val: :rtype: EventType """ - return cls('legal_holds_export_downloaded', val) + return cls("legal_holds_export_downloaded", val) @classmethod def legal_holds_export_removed(cls, val): @@ -32872,7 +33897,7 @@ def legal_holds_export_removed(cls, val): :param LegalHoldsExportRemovedType val: :rtype: EventType """ - return cls('legal_holds_export_removed', val) + return cls("legal_holds_export_removed", val) @classmethod def legal_holds_release_a_hold(cls, val): @@ -32883,7 +33908,7 @@ def legal_holds_release_a_hold(cls, val): :param LegalHoldsReleaseAHoldType val: :rtype: EventType """ - return cls('legal_holds_release_a_hold', val) + return cls("legal_holds_release_a_hold", val) @classmethod def legal_holds_remove_members(cls, val): @@ -32894,7 +33919,7 @@ def legal_holds_remove_members(cls, val): :param LegalHoldsRemoveMembersType val: :rtype: EventType """ - return cls('legal_holds_remove_members', val) + return cls("legal_holds_remove_members", val) @classmethod def legal_holds_report_a_hold(cls, val): @@ -32905,7 +33930,7 @@ def legal_holds_report_a_hold(cls, val): :param LegalHoldsReportAHoldType val: :rtype: EventType """ - return cls('legal_holds_report_a_hold', val) + return cls("legal_holds_report_a_hold", val) @classmethod def device_change_ip_desktop(cls, val): @@ -32916,7 +33941,7 @@ def device_change_ip_desktop(cls, val): :param DeviceChangeIpDesktopType val: :rtype: EventType """ - return cls('device_change_ip_desktop', val) + return cls("device_change_ip_desktop", val) @classmethod def device_change_ip_mobile(cls, val): @@ -32927,7 +33952,7 @@ def device_change_ip_mobile(cls, val): :param DeviceChangeIpMobileType val: :rtype: EventType """ - return cls('device_change_ip_mobile', val) + return cls("device_change_ip_mobile", val) @classmethod def device_change_ip_web(cls, val): @@ -32938,7 +33963,7 @@ def device_change_ip_web(cls, val): :param DeviceChangeIpWebType val: :rtype: EventType """ - return cls('device_change_ip_web', val) + return cls("device_change_ip_web", val) @classmethod def device_delete_on_unlink_fail(cls, val): @@ -32949,7 +33974,7 @@ def device_delete_on_unlink_fail(cls, val): :param DeviceDeleteOnUnlinkFailType val: :rtype: EventType """ - return cls('device_delete_on_unlink_fail', val) + return cls("device_delete_on_unlink_fail", val) @classmethod def device_delete_on_unlink_success(cls, val): @@ -32960,7 +33985,7 @@ def device_delete_on_unlink_success(cls, val): :param DeviceDeleteOnUnlinkSuccessType val: :rtype: EventType """ - return cls('device_delete_on_unlink_success', val) + return cls("device_delete_on_unlink_success", val) @classmethod def device_link_fail(cls, val): @@ -32971,7 +33996,7 @@ def device_link_fail(cls, val): :param DeviceLinkFailType val: :rtype: EventType """ - return cls('device_link_fail', val) + return cls("device_link_fail", val) @classmethod def device_link_success(cls, val): @@ -32982,7 +34007,7 @@ def device_link_success(cls, val): :param DeviceLinkSuccessType val: :rtype: EventType """ - return cls('device_link_success', val) + return cls("device_link_success", val) @classmethod def device_management_disabled(cls, val): @@ -32993,7 +34018,7 @@ def device_management_disabled(cls, val): :param DeviceManagementDisabledType val: :rtype: EventType """ - return cls('device_management_disabled', val) + return cls("device_management_disabled", val) @classmethod def device_management_enabled(cls, val): @@ -33004,7 +34029,7 @@ def device_management_enabled(cls, val): :param DeviceManagementEnabledType val: :rtype: EventType """ - return cls('device_management_enabled', val) + return cls("device_management_enabled", val) @classmethod def device_sync_backup_status_changed(cls, val): @@ -33015,7 +34040,7 @@ def device_sync_backup_status_changed(cls, val): :param DeviceSyncBackupStatusChangedType val: :rtype: EventType """ - return cls('device_sync_backup_status_changed', val) + return cls("device_sync_backup_status_changed", val) @classmethod def device_unlink(cls, val): @@ -33026,7 +34051,7 @@ def device_unlink(cls, val): :param DeviceUnlinkType val: :rtype: EventType """ - return cls('device_unlink', val) + return cls("device_unlink", val) @classmethod def dropbox_passwords_exported(cls, val): @@ -33037,7 +34062,7 @@ def dropbox_passwords_exported(cls, val): :param DropboxPasswordsExportedType val: :rtype: EventType """ - return cls('dropbox_passwords_exported', val) + return cls("dropbox_passwords_exported", val) @classmethod def dropbox_passwords_new_device_enrolled(cls, val): @@ -33048,7 +34073,7 @@ def dropbox_passwords_new_device_enrolled(cls, val): :param DropboxPasswordsNewDeviceEnrolledType val: :rtype: EventType """ - return cls('dropbox_passwords_new_device_enrolled', val) + return cls("dropbox_passwords_new_device_enrolled", val) @classmethod def emm_refresh_auth_token(cls, val): @@ -33059,7 +34084,7 @@ def emm_refresh_auth_token(cls, val): :param EmmRefreshAuthTokenType val: :rtype: EventType """ - return cls('emm_refresh_auth_token', val) + return cls("emm_refresh_auth_token", val) @classmethod def external_drive_backup_eligibility_status_checked(cls, val): @@ -33071,7 +34096,7 @@ def external_drive_backup_eligibility_status_checked(cls, val): :param ExternalDriveBackupEligibilityStatusCheckedType val: :rtype: EventType """ - return cls('external_drive_backup_eligibility_status_checked', val) + return cls("external_drive_backup_eligibility_status_checked", val) @classmethod def external_drive_backup_status_changed(cls, val): @@ -33082,7 +34107,7 @@ def external_drive_backup_status_changed(cls, val): :param ExternalDriveBackupStatusChangedType val: :rtype: EventType """ - return cls('external_drive_backup_status_changed', val) + return cls("external_drive_backup_status_changed", val) @classmethod def account_capture_change_availability(cls, val): @@ -33093,7 +34118,7 @@ def account_capture_change_availability(cls, val): :param AccountCaptureChangeAvailabilityType val: :rtype: EventType """ - return cls('account_capture_change_availability', val) + return cls("account_capture_change_availability", val) @classmethod def account_capture_migrate_account(cls, val): @@ -33104,7 +34129,7 @@ def account_capture_migrate_account(cls, val): :param AccountCaptureMigrateAccountType val: :rtype: EventType """ - return cls('account_capture_migrate_account', val) + return cls("account_capture_migrate_account", val) @classmethod def account_capture_notification_emails_sent(cls, val): @@ -33115,7 +34140,7 @@ def account_capture_notification_emails_sent(cls, val): :param AccountCaptureNotificationEmailsSentType val: :rtype: EventType """ - return cls('account_capture_notification_emails_sent', val) + return cls("account_capture_notification_emails_sent", val) @classmethod def account_capture_relinquish_account(cls, val): @@ -33126,7 +34151,7 @@ def account_capture_relinquish_account(cls, val): :param AccountCaptureRelinquishAccountType val: :rtype: EventType """ - return cls('account_capture_relinquish_account', val) + return cls("account_capture_relinquish_account", val) @classmethod def disabled_domain_invites(cls, val): @@ -33137,7 +34162,7 @@ def disabled_domain_invites(cls, val): :param DisabledDomainInvitesType val: :rtype: EventType """ - return cls('disabled_domain_invites', val) + return cls("disabled_domain_invites", val) @classmethod def domain_invites_approve_request_to_join_team(cls, val): @@ -33148,7 +34173,7 @@ def domain_invites_approve_request_to_join_team(cls, val): :param DomainInvitesApproveRequestToJoinTeamType val: :rtype: EventType """ - return cls('domain_invites_approve_request_to_join_team', val) + return cls("domain_invites_approve_request_to_join_team", val) @classmethod def domain_invites_decline_request_to_join_team(cls, val): @@ -33159,7 +34184,7 @@ def domain_invites_decline_request_to_join_team(cls, val): :param DomainInvitesDeclineRequestToJoinTeamType val: :rtype: EventType """ - return cls('domain_invites_decline_request_to_join_team', val) + return cls("domain_invites_decline_request_to_join_team", val) @classmethod def domain_invites_email_existing_users(cls, val): @@ -33170,7 +34195,7 @@ def domain_invites_email_existing_users(cls, val): :param DomainInvitesEmailExistingUsersType val: :rtype: EventType """ - return cls('domain_invites_email_existing_users', val) + return cls("domain_invites_email_existing_users", val) @classmethod def domain_invites_request_to_join_team(cls, val): @@ -33181,7 +34206,7 @@ def domain_invites_request_to_join_team(cls, val): :param DomainInvitesRequestToJoinTeamType val: :rtype: EventType """ - return cls('domain_invites_request_to_join_team', val) + return cls("domain_invites_request_to_join_team", val) @classmethod def domain_invites_set_invite_new_user_pref_to_no(cls, val): @@ -33193,7 +34218,7 @@ def domain_invites_set_invite_new_user_pref_to_no(cls, val): :param DomainInvitesSetInviteNewUserPrefToNoType val: :rtype: EventType """ - return cls('domain_invites_set_invite_new_user_pref_to_no', val) + return cls("domain_invites_set_invite_new_user_pref_to_no", val) @classmethod def domain_invites_set_invite_new_user_pref_to_yes(cls, val): @@ -33205,7 +34230,7 @@ def domain_invites_set_invite_new_user_pref_to_yes(cls, val): :param DomainInvitesSetInviteNewUserPrefToYesType val: :rtype: EventType """ - return cls('domain_invites_set_invite_new_user_pref_to_yes', val) + return cls("domain_invites_set_invite_new_user_pref_to_yes", val) @classmethod def domain_verification_add_domain_fail(cls, val): @@ -33216,7 +34241,7 @@ def domain_verification_add_domain_fail(cls, val): :param DomainVerificationAddDomainFailType val: :rtype: EventType """ - return cls('domain_verification_add_domain_fail', val) + return cls("domain_verification_add_domain_fail", val) @classmethod def domain_verification_add_domain_success(cls, val): @@ -33227,7 +34252,7 @@ def domain_verification_add_domain_success(cls, val): :param DomainVerificationAddDomainSuccessType val: :rtype: EventType """ - return cls('domain_verification_add_domain_success', val) + return cls("domain_verification_add_domain_success", val) @classmethod def domain_verification_remove_domain(cls, val): @@ -33238,7 +34263,7 @@ def domain_verification_remove_domain(cls, val): :param DomainVerificationRemoveDomainType val: :rtype: EventType """ - return cls('domain_verification_remove_domain', val) + return cls("domain_verification_remove_domain", val) @classmethod def enabled_domain_invites(cls, val): @@ -33249,7 +34274,7 @@ def enabled_domain_invites(cls, val): :param EnabledDomainInvitesType val: :rtype: EventType """ - return cls('enabled_domain_invites', val) + return cls("enabled_domain_invites", val) @classmethod def encrypted_folder_cancel_team_key_rotation(cls, val): @@ -33260,7 +34285,7 @@ def encrypted_folder_cancel_team_key_rotation(cls, val): :param EncryptedFolderCancelTeamKeyRotationType val: :rtype: EventType """ - return cls('encrypted_folder_cancel_team_key_rotation', val) + return cls("encrypted_folder_cancel_team_key_rotation", val) @classmethod def encrypted_folder_enroll_backup_key(cls, val): @@ -33271,7 +34296,7 @@ def encrypted_folder_enroll_backup_key(cls, val): :param EncryptedFolderEnrollBackupKeyType val: :rtype: EventType """ - return cls('encrypted_folder_enroll_backup_key', val) + return cls("encrypted_folder_enroll_backup_key", val) @classmethod def encrypted_folder_enroll_client(cls, val): @@ -33282,7 +34307,7 @@ def encrypted_folder_enroll_client(cls, val): :param EncryptedFolderEnrollClientType val: :rtype: EventType """ - return cls('encrypted_folder_enroll_client', val) + return cls("encrypted_folder_enroll_client", val) @classmethod def encrypted_folder_enroll_team(cls, val): @@ -33293,7 +34318,7 @@ def encrypted_folder_enroll_team(cls, val): :param EncryptedFolderEnrollTeamType val: :rtype: EventType """ - return cls('encrypted_folder_enroll_team', val) + return cls("encrypted_folder_enroll_team", val) @classmethod def encrypted_folder_finish_team_unenrollment(cls, val): @@ -33304,7 +34329,7 @@ def encrypted_folder_finish_team_unenrollment(cls, val): :param EncryptedFolderFinishTeamUnenrollmentType val: :rtype: EventType """ - return cls('encrypted_folder_finish_team_unenrollment', val) + return cls("encrypted_folder_finish_team_unenrollment", val) @classmethod def encrypted_folder_init_team_key_rotation(cls, val): @@ -33315,7 +34340,7 @@ def encrypted_folder_init_team_key_rotation(cls, val): :param EncryptedFolderInitTeamKeyRotationType val: :rtype: EventType """ - return cls('encrypted_folder_init_team_key_rotation', val) + return cls("encrypted_folder_init_team_key_rotation", val) @classmethod def encrypted_folder_init_team_unenrollment(cls, val): @@ -33326,7 +34351,7 @@ def encrypted_folder_init_team_unenrollment(cls, val): :param EncryptedFolderInitTeamUnenrollmentType val: :rtype: EventType """ - return cls('encrypted_folder_init_team_unenrollment', val) + return cls("encrypted_folder_init_team_unenrollment", val) @classmethod def encrypted_folder_remove_backup_key(cls, val): @@ -33337,7 +34362,7 @@ def encrypted_folder_remove_backup_key(cls, val): :param EncryptedFolderRemoveBackupKeyType val: :rtype: EventType """ - return cls('encrypted_folder_remove_backup_key', val) + return cls("encrypted_folder_remove_backup_key", val) @classmethod def encrypted_folder_rotate_team_key(cls, val): @@ -33348,7 +34373,7 @@ def encrypted_folder_rotate_team_key(cls, val): :param EncryptedFolderRotateTeamKeyType val: :rtype: EventType """ - return cls('encrypted_folder_rotate_team_key', val) + return cls("encrypted_folder_rotate_team_key", val) @classmethod def encrypted_folder_unenroll_client(cls, val): @@ -33359,7 +34384,7 @@ def encrypted_folder_unenroll_client(cls, val): :param EncryptedFolderUnenrollClientType val: :rtype: EventType """ - return cls('encrypted_folder_unenroll_client', val) + return cls("encrypted_folder_unenroll_client", val) @classmethod def team_encryption_key_activate_key(cls, val): @@ -33370,7 +34395,7 @@ def team_encryption_key_activate_key(cls, val): :param TeamEncryptionKeyActivateKeyType val: :rtype: EventType """ - return cls('team_encryption_key_activate_key', val) + return cls("team_encryption_key_activate_key", val) @classmethod def team_encryption_key_cancel_key_deletion(cls, val): @@ -33381,7 +34406,7 @@ def team_encryption_key_cancel_key_deletion(cls, val): :param TeamEncryptionKeyCancelKeyDeletionType val: :rtype: EventType """ - return cls('team_encryption_key_cancel_key_deletion', val) + return cls("team_encryption_key_cancel_key_deletion", val) @classmethod def team_encryption_key_create_key(cls, val): @@ -33392,7 +34417,7 @@ def team_encryption_key_create_key(cls, val): :param TeamEncryptionKeyCreateKeyType val: :rtype: EventType """ - return cls('team_encryption_key_create_key', val) + return cls("team_encryption_key_create_key", val) @classmethod def team_encryption_key_deactivate_key(cls, val): @@ -33403,7 +34428,7 @@ def team_encryption_key_deactivate_key(cls, val): :param TeamEncryptionKeyDeactivateKeyType val: :rtype: EventType """ - return cls('team_encryption_key_deactivate_key', val) + return cls("team_encryption_key_deactivate_key", val) @classmethod def team_encryption_key_delete_key(cls, val): @@ -33414,7 +34439,7 @@ def team_encryption_key_delete_key(cls, val): :param TeamEncryptionKeyDeleteKeyType val: :rtype: EventType """ - return cls('team_encryption_key_delete_key', val) + return cls("team_encryption_key_delete_key", val) @classmethod def team_encryption_key_disable_key(cls, val): @@ -33425,7 +34450,7 @@ def team_encryption_key_disable_key(cls, val): :param TeamEncryptionKeyDisableKeyType val: :rtype: EventType """ - return cls('team_encryption_key_disable_key', val) + return cls("team_encryption_key_disable_key", val) @classmethod def team_encryption_key_enable_key(cls, val): @@ -33436,7 +34461,7 @@ def team_encryption_key_enable_key(cls, val): :param TeamEncryptionKeyEnableKeyType val: :rtype: EventType """ - return cls('team_encryption_key_enable_key', val) + return cls("team_encryption_key_enable_key", val) @classmethod def team_encryption_key_rotate_key(cls, val): @@ -33447,7 +34472,7 @@ def team_encryption_key_rotate_key(cls, val): :param TeamEncryptionKeyRotateKeyType val: :rtype: EventType """ - return cls('team_encryption_key_rotate_key', val) + return cls("team_encryption_key_rotate_key", val) @classmethod def team_encryption_key_schedule_key_deletion(cls, val): @@ -33458,7 +34483,7 @@ def team_encryption_key_schedule_key_deletion(cls, val): :param TeamEncryptionKeyScheduleKeyDeletionType val: :rtype: EventType """ - return cls('team_encryption_key_schedule_key_deletion', val) + return cls("team_encryption_key_schedule_key_deletion", val) @classmethod def apply_naming_convention(cls, val): @@ -33469,7 +34494,7 @@ def apply_naming_convention(cls, val): :param ApplyNamingConventionType val: :rtype: EventType """ - return cls('apply_naming_convention', val) + return cls("apply_naming_convention", val) @classmethod def create_folder(cls, val): @@ -33480,7 +34505,7 @@ def create_folder(cls, val): :param CreateFolderType val: :rtype: EventType """ - return cls('create_folder', val) + return cls("create_folder", val) @classmethod def file_add(cls, val): @@ -33491,7 +34516,7 @@ def file_add(cls, val): :param FileAddType val: :rtype: EventType """ - return cls('file_add', val) + return cls("file_add", val) @classmethod def file_add_from_automation(cls, val): @@ -33502,7 +34527,7 @@ def file_add_from_automation(cls, val): :param FileAddFromAutomationType val: :rtype: EventType """ - return cls('file_add_from_automation', val) + return cls("file_add_from_automation", val) @classmethod def file_copy(cls, val): @@ -33513,7 +34538,7 @@ def file_copy(cls, val): :param FileCopyType val: :rtype: EventType """ - return cls('file_copy', val) + return cls("file_copy", val) @classmethod def file_delete(cls, val): @@ -33524,7 +34549,7 @@ def file_delete(cls, val): :param FileDeleteType val: :rtype: EventType """ - return cls('file_delete', val) + return cls("file_delete", val) @classmethod def file_download(cls, val): @@ -33535,7 +34560,7 @@ def file_download(cls, val): :param FileDownloadType val: :rtype: EventType """ - return cls('file_download', val) + return cls("file_download", val) @classmethod def file_edit(cls, val): @@ -33546,7 +34571,7 @@ def file_edit(cls, val): :param FileEditType val: :rtype: EventType """ - return cls('file_edit', val) + return cls("file_edit", val) @classmethod def file_get_copy_reference(cls, val): @@ -33557,7 +34582,7 @@ def file_get_copy_reference(cls, val): :param FileGetCopyReferenceType val: :rtype: EventType """ - return cls('file_get_copy_reference', val) + return cls("file_get_copy_reference", val) @classmethod def file_locking_lock_status_changed(cls, val): @@ -33568,7 +34593,7 @@ def file_locking_lock_status_changed(cls, val): :param FileLockingLockStatusChangedType val: :rtype: EventType """ - return cls('file_locking_lock_status_changed', val) + return cls("file_locking_lock_status_changed", val) @classmethod def file_move(cls, val): @@ -33579,7 +34604,7 @@ def file_move(cls, val): :param FileMoveType val: :rtype: EventType """ - return cls('file_move', val) + return cls("file_move", val) @classmethod def file_permanently_delete(cls, val): @@ -33590,7 +34615,7 @@ def file_permanently_delete(cls, val): :param FilePermanentlyDeleteType val: :rtype: EventType """ - return cls('file_permanently_delete', val) + return cls("file_permanently_delete", val) @classmethod def file_preview(cls, val): @@ -33601,7 +34626,7 @@ def file_preview(cls, val): :param FilePreviewType val: :rtype: EventType """ - return cls('file_preview', val) + return cls("file_preview", val) @classmethod def file_rename(cls, val): @@ -33612,7 +34637,7 @@ def file_rename(cls, val): :param FileRenameType val: :rtype: EventType """ - return cls('file_rename', val) + return cls("file_rename", val) @classmethod def file_restore(cls, val): @@ -33623,7 +34648,7 @@ def file_restore(cls, val): :param FileRestoreType val: :rtype: EventType """ - return cls('file_restore', val) + return cls("file_restore", val) @classmethod def file_revert(cls, val): @@ -33634,7 +34659,7 @@ def file_revert(cls, val): :param FileRevertType val: :rtype: EventType """ - return cls('file_revert', val) + return cls("file_revert", val) @classmethod def file_rollback_changes(cls, val): @@ -33645,7 +34670,7 @@ def file_rollback_changes(cls, val): :param FileRollbackChangesType val: :rtype: EventType """ - return cls('file_rollback_changes', val) + return cls("file_rollback_changes", val) @classmethod def file_save_copy_reference(cls, val): @@ -33656,7 +34681,7 @@ def file_save_copy_reference(cls, val): :param FileSaveCopyReferenceType val: :rtype: EventType """ - return cls('file_save_copy_reference', val) + return cls("file_save_copy_reference", val) @classmethod def folder_overview_description_changed(cls, val): @@ -33667,7 +34692,7 @@ def folder_overview_description_changed(cls, val): :param FolderOverviewDescriptionChangedType val: :rtype: EventType """ - return cls('folder_overview_description_changed', val) + return cls("folder_overview_description_changed", val) @classmethod def folder_overview_item_pinned(cls, val): @@ -33678,7 +34703,7 @@ def folder_overview_item_pinned(cls, val): :param FolderOverviewItemPinnedType val: :rtype: EventType """ - return cls('folder_overview_item_pinned', val) + return cls("folder_overview_item_pinned", val) @classmethod def folder_overview_item_unpinned(cls, val): @@ -33689,7 +34714,7 @@ def folder_overview_item_unpinned(cls, val): :param FolderOverviewItemUnpinnedType val: :rtype: EventType """ - return cls('folder_overview_item_unpinned', val) + return cls("folder_overview_item_unpinned", val) @classmethod def media_hub_file_downloaded(cls, val): @@ -33700,7 +34725,7 @@ def media_hub_file_downloaded(cls, val): :param MediaHubFileDownloadedType val: :rtype: EventType """ - return cls('media_hub_file_downloaded', val) + return cls("media_hub_file_downloaded", val) @classmethod def object_label_added(cls, val): @@ -33711,7 +34736,7 @@ def object_label_added(cls, val): :param ObjectLabelAddedType val: :rtype: EventType """ - return cls('object_label_added', val) + return cls("object_label_added", val) @classmethod def object_label_removed(cls, val): @@ -33722,7 +34747,7 @@ def object_label_removed(cls, val): :param ObjectLabelRemovedType val: :rtype: EventType """ - return cls('object_label_removed', val) + return cls("object_label_removed", val) @classmethod def object_label_updated_value(cls, val): @@ -33733,7 +34758,7 @@ def object_label_updated_value(cls, val): :param ObjectLabelUpdatedValueType val: :rtype: EventType """ - return cls('object_label_updated_value', val) + return cls("object_label_updated_value", val) @classmethod def organize_folder_with_tidy(cls, val): @@ -33744,7 +34769,7 @@ def organize_folder_with_tidy(cls, val): :param OrganizeFolderWithTidyType val: :rtype: EventType """ - return cls('organize_folder_with_tidy', val) + return cls("organize_folder_with_tidy", val) @classmethod def replay_file_delete(cls, val): @@ -33755,7 +34780,7 @@ def replay_file_delete(cls, val): :param ReplayFileDeleteType val: :rtype: EventType """ - return cls('replay_file_delete', val) + return cls("replay_file_delete", val) @classmethod def replay_file_downloaded(cls, val): @@ -33766,7 +34791,7 @@ def replay_file_downloaded(cls, val): :param ReplayFileDownloadedType val: :rtype: EventType """ - return cls('replay_file_downloaded', val) + return cls("replay_file_downloaded", val) @classmethod def replay_team_project_created(cls, val): @@ -33777,7 +34802,7 @@ def replay_team_project_created(cls, val): :param ReplayTeamProjectCreatedType val: :rtype: EventType """ - return cls('replay_team_project_created', val) + return cls("replay_team_project_created", val) @classmethod def rewind_folder(cls, val): @@ -33788,7 +34813,7 @@ def rewind_folder(cls, val): :param RewindFolderType val: :rtype: EventType """ - return cls('rewind_folder', val) + return cls("rewind_folder", val) @classmethod def undo_naming_convention(cls, val): @@ -33799,7 +34824,7 @@ def undo_naming_convention(cls, val): :param UndoNamingConventionType val: :rtype: EventType """ - return cls('undo_naming_convention', val) + return cls("undo_naming_convention", val) @classmethod def undo_organize_folder_with_tidy(cls, val): @@ -33810,7 +34835,7 @@ def undo_organize_folder_with_tidy(cls, val): :param UndoOrganizeFolderWithTidyType val: :rtype: EventType """ - return cls('undo_organize_folder_with_tidy', val) + return cls("undo_organize_folder_with_tidy", val) @classmethod def user_tags_added(cls, val): @@ -33821,7 +34846,7 @@ def user_tags_added(cls, val): :param UserTagsAddedType val: :rtype: EventType """ - return cls('user_tags_added', val) + return cls("user_tags_added", val) @classmethod def user_tags_removed(cls, val): @@ -33832,7 +34857,7 @@ def user_tags_removed(cls, val): :param UserTagsRemovedType val: :rtype: EventType """ - return cls('user_tags_removed', val) + return cls("user_tags_removed", val) @classmethod def email_ingest_receive_file(cls, val): @@ -33843,7 +34868,7 @@ def email_ingest_receive_file(cls, val): :param EmailIngestReceiveFileType val: :rtype: EventType """ - return cls('email_ingest_receive_file', val) + return cls("email_ingest_receive_file", val) @classmethod def file_request_auto_close(cls, val): @@ -33854,7 +34879,7 @@ def file_request_auto_close(cls, val): :param FileRequestAutoCloseType val: :rtype: EventType """ - return cls('file_request_auto_close', val) + return cls("file_request_auto_close", val) @classmethod def file_request_change(cls, val): @@ -33865,7 +34890,7 @@ def file_request_change(cls, val): :param FileRequestChangeType val: :rtype: EventType """ - return cls('file_request_change', val) + return cls("file_request_change", val) @classmethod def file_request_close(cls, val): @@ -33876,7 +34901,7 @@ def file_request_close(cls, val): :param FileRequestCloseType val: :rtype: EventType """ - return cls('file_request_close', val) + return cls("file_request_close", val) @classmethod def file_request_create(cls, val): @@ -33887,7 +34912,7 @@ def file_request_create(cls, val): :param FileRequestCreateType val: :rtype: EventType """ - return cls('file_request_create', val) + return cls("file_request_create", val) @classmethod def file_request_delete(cls, val): @@ -33898,7 +34923,7 @@ def file_request_delete(cls, val): :param FileRequestDeleteType val: :rtype: EventType """ - return cls('file_request_delete', val) + return cls("file_request_delete", val) @classmethod def file_request_receive_file(cls, val): @@ -33909,7 +34934,7 @@ def file_request_receive_file(cls, val): :param FileRequestReceiveFileType val: :rtype: EventType """ - return cls('file_request_receive_file', val) + return cls("file_request_receive_file", val) @classmethod def group_add_external_id(cls, val): @@ -33920,7 +34945,7 @@ def group_add_external_id(cls, val): :param GroupAddExternalIdType val: :rtype: EventType """ - return cls('group_add_external_id', val) + return cls("group_add_external_id", val) @classmethod def group_add_member(cls, val): @@ -33931,7 +34956,7 @@ def group_add_member(cls, val): :param GroupAddMemberType val: :rtype: EventType """ - return cls('group_add_member', val) + return cls("group_add_member", val) @classmethod def group_change_external_id(cls, val): @@ -33942,7 +34967,7 @@ def group_change_external_id(cls, val): :param GroupChangeExternalIdType val: :rtype: EventType """ - return cls('group_change_external_id', val) + return cls("group_change_external_id", val) @classmethod def group_change_management_type(cls, val): @@ -33953,7 +34978,7 @@ def group_change_management_type(cls, val): :param GroupChangeManagementTypeType val: :rtype: EventType """ - return cls('group_change_management_type', val) + return cls("group_change_management_type", val) @classmethod def group_change_member_role(cls, val): @@ -33964,7 +34989,7 @@ def group_change_member_role(cls, val): :param GroupChangeMemberRoleType val: :rtype: EventType """ - return cls('group_change_member_role', val) + return cls("group_change_member_role", val) @classmethod def group_create(cls, val): @@ -33975,7 +35000,7 @@ def group_create(cls, val): :param GroupCreateType val: :rtype: EventType """ - return cls('group_create', val) + return cls("group_create", val) @classmethod def group_delete(cls, val): @@ -33986,7 +35011,7 @@ def group_delete(cls, val): :param GroupDeleteType val: :rtype: EventType """ - return cls('group_delete', val) + return cls("group_delete", val) @classmethod def group_description_updated(cls, val): @@ -33997,7 +35022,7 @@ def group_description_updated(cls, val): :param GroupDescriptionUpdatedType val: :rtype: EventType """ - return cls('group_description_updated', val) + return cls("group_description_updated", val) @classmethod def group_external_sharing_setting_override_changed(cls, val): @@ -34009,7 +35034,7 @@ def group_external_sharing_setting_override_changed(cls, val): :param GroupExternalSharingSettingOverrideChangedType val: :rtype: EventType """ - return cls('group_external_sharing_setting_override_changed', val) + return cls("group_external_sharing_setting_override_changed", val) @classmethod def group_join_policy_updated(cls, val): @@ -34020,7 +35045,7 @@ def group_join_policy_updated(cls, val): :param GroupJoinPolicyUpdatedType val: :rtype: EventType """ - return cls('group_join_policy_updated', val) + return cls("group_join_policy_updated", val) @classmethod def group_moved(cls, val): @@ -34031,7 +35056,7 @@ def group_moved(cls, val): :param GroupMovedType val: :rtype: EventType """ - return cls('group_moved', val) + return cls("group_moved", val) @classmethod def group_remove_external_id(cls, val): @@ -34042,7 +35067,7 @@ def group_remove_external_id(cls, val): :param GroupRemoveExternalIdType val: :rtype: EventType """ - return cls('group_remove_external_id', val) + return cls("group_remove_external_id", val) @classmethod def group_remove_member(cls, val): @@ -34053,7 +35078,7 @@ def group_remove_member(cls, val): :param GroupRemoveMemberType val: :rtype: EventType """ - return cls('group_remove_member', val) + return cls("group_remove_member", val) @classmethod def group_rename(cls, val): @@ -34064,7 +35089,7 @@ def group_rename(cls, val): :param GroupRenameType val: :rtype: EventType """ - return cls('group_rename', val) + return cls("group_rename", val) @classmethod def account_lock_or_unlocked(cls, val): @@ -34075,7 +35100,7 @@ def account_lock_or_unlocked(cls, val): :param AccountLockOrUnlockedType val: :rtype: EventType """ - return cls('account_lock_or_unlocked', val) + return cls("account_lock_or_unlocked", val) @classmethod def emm_error(cls, val): @@ -34086,7 +35111,7 @@ def emm_error(cls, val): :param EmmErrorType val: :rtype: EventType """ - return cls('emm_error', val) + return cls("emm_error", val) @classmethod def guest_admin_signed_in_via_trusted_teams(cls, val): @@ -34097,7 +35122,7 @@ def guest_admin_signed_in_via_trusted_teams(cls, val): :param GuestAdminSignedInViaTrustedTeamsType val: :rtype: EventType """ - return cls('guest_admin_signed_in_via_trusted_teams', val) + return cls("guest_admin_signed_in_via_trusted_teams", val) @classmethod def guest_admin_signed_out_via_trusted_teams(cls, val): @@ -34108,7 +35133,7 @@ def guest_admin_signed_out_via_trusted_teams(cls, val): :param GuestAdminSignedOutViaTrustedTeamsType val: :rtype: EventType """ - return cls('guest_admin_signed_out_via_trusted_teams', val) + return cls("guest_admin_signed_out_via_trusted_teams", val) @classmethod def login_fail(cls, val): @@ -34119,7 +35144,7 @@ def login_fail(cls, val): :param LoginFailType val: :rtype: EventType """ - return cls('login_fail', val) + return cls("login_fail", val) @classmethod def login_success(cls, val): @@ -34130,7 +35155,7 @@ def login_success(cls, val): :param LoginSuccessType val: :rtype: EventType """ - return cls('login_success', val) + return cls("login_success", val) @classmethod def logout(cls, val): @@ -34141,7 +35166,7 @@ def logout(cls, val): :param LogoutType val: :rtype: EventType """ - return cls('logout', val) + return cls("logout", val) @classmethod def reseller_support_session_end(cls, val): @@ -34152,7 +35177,7 @@ def reseller_support_session_end(cls, val): :param ResellerSupportSessionEndType val: :rtype: EventType """ - return cls('reseller_support_session_end', val) + return cls("reseller_support_session_end", val) @classmethod def reseller_support_session_start(cls, val): @@ -34163,7 +35188,7 @@ def reseller_support_session_start(cls, val): :param ResellerSupportSessionStartType val: :rtype: EventType """ - return cls('reseller_support_session_start', val) + return cls("reseller_support_session_start", val) @classmethod def sign_in_as_session_end(cls, val): @@ -34174,7 +35199,7 @@ def sign_in_as_session_end(cls, val): :param SignInAsSessionEndType val: :rtype: EventType """ - return cls('sign_in_as_session_end', val) + return cls("sign_in_as_session_end", val) @classmethod def sign_in_as_session_start(cls, val): @@ -34185,7 +35210,7 @@ def sign_in_as_session_start(cls, val): :param SignInAsSessionStartType val: :rtype: EventType """ - return cls('sign_in_as_session_start', val) + return cls("sign_in_as_session_start", val) @classmethod def sso_error(cls, val): @@ -34196,7 +35221,7 @@ def sso_error(cls, val): :param SsoErrorType val: :rtype: EventType """ - return cls('sso_error', val) + return cls("sso_error", val) @classmethod def addon_assigned(cls, val): @@ -34207,7 +35232,7 @@ def addon_assigned(cls, val): :param AddonAssignedType val: :rtype: EventType """ - return cls('addon_assigned', val) + return cls("addon_assigned", val) @classmethod def addon_removed(cls, val): @@ -34218,7 +35243,7 @@ def addon_removed(cls, val): :param AddonRemovedType val: :rtype: EventType """ - return cls('addon_removed', val) + return cls("addon_removed", val) @classmethod def backup_admin_invitation_sent(cls, val): @@ -34229,7 +35254,7 @@ def backup_admin_invitation_sent(cls, val): :param BackupAdminInvitationSentType val: :rtype: EventType """ - return cls('backup_admin_invitation_sent', val) + return cls("backup_admin_invitation_sent", val) @classmethod def backup_invitation_opened(cls, val): @@ -34240,7 +35265,7 @@ def backup_invitation_opened(cls, val): :param BackupInvitationOpenedType val: :rtype: EventType """ - return cls('backup_invitation_opened', val) + return cls("backup_invitation_opened", val) @classmethod def create_team_invite_link(cls, val): @@ -34251,7 +35276,7 @@ def create_team_invite_link(cls, val): :param CreateTeamInviteLinkType val: :rtype: EventType """ - return cls('create_team_invite_link', val) + return cls("create_team_invite_link", val) @classmethod def delete_team_invite_link(cls, val): @@ -34262,7 +35287,7 @@ def delete_team_invite_link(cls, val): :param DeleteTeamInviteLinkType val: :rtype: EventType """ - return cls('delete_team_invite_link', val) + return cls("delete_team_invite_link", val) @classmethod def member_add_external_id(cls, val): @@ -34273,7 +35298,7 @@ def member_add_external_id(cls, val): :param MemberAddExternalIdType val: :rtype: EventType """ - return cls('member_add_external_id', val) + return cls("member_add_external_id", val) @classmethod def member_add_name(cls, val): @@ -34284,7 +35309,7 @@ def member_add_name(cls, val): :param MemberAddNameType val: :rtype: EventType """ - return cls('member_add_name', val) + return cls("member_add_name", val) @classmethod def member_change_admin_role(cls, val): @@ -34295,7 +35320,7 @@ def member_change_admin_role(cls, val): :param MemberChangeAdminRoleType val: :rtype: EventType """ - return cls('member_change_admin_role', val) + return cls("member_change_admin_role", val) @classmethod def member_change_email(cls, val): @@ -34306,7 +35331,7 @@ def member_change_email(cls, val): :param MemberChangeEmailType val: :rtype: EventType """ - return cls('member_change_email', val) + return cls("member_change_email", val) @classmethod def member_change_external_id(cls, val): @@ -34317,7 +35342,7 @@ def member_change_external_id(cls, val): :param MemberChangeExternalIdType val: :rtype: EventType """ - return cls('member_change_external_id', val) + return cls("member_change_external_id", val) @classmethod def member_change_membership_type(cls, val): @@ -34328,7 +35353,7 @@ def member_change_membership_type(cls, val): :param MemberChangeMembershipTypeType val: :rtype: EventType """ - return cls('member_change_membership_type', val) + return cls("member_change_membership_type", val) @classmethod def member_change_name(cls, val): @@ -34339,7 +35364,7 @@ def member_change_name(cls, val): :param MemberChangeNameType val: :rtype: EventType """ - return cls('member_change_name', val) + return cls("member_change_name", val) @classmethod def member_change_reseller_role(cls, val): @@ -34350,7 +35375,7 @@ def member_change_reseller_role(cls, val): :param MemberChangeResellerRoleType val: :rtype: EventType """ - return cls('member_change_reseller_role', val) + return cls("member_change_reseller_role", val) @classmethod def member_change_status(cls, val): @@ -34361,7 +35386,7 @@ def member_change_status(cls, val): :param MemberChangeStatusType val: :rtype: EventType """ - return cls('member_change_status', val) + return cls("member_change_status", val) @classmethod def member_delete_manual_contacts(cls, val): @@ -34372,7 +35397,7 @@ def member_delete_manual_contacts(cls, val): :param MemberDeleteManualContactsType val: :rtype: EventType """ - return cls('member_delete_manual_contacts', val) + return cls("member_delete_manual_contacts", val) @classmethod def member_delete_profile_photo(cls, val): @@ -34383,7 +35408,7 @@ def member_delete_profile_photo(cls, val): :param MemberDeleteProfilePhotoType val: :rtype: EventType """ - return cls('member_delete_profile_photo', val) + return cls("member_delete_profile_photo", val) @classmethod def member_permanently_delete_account_contents(cls, val): @@ -34394,7 +35419,7 @@ def member_permanently_delete_account_contents(cls, val): :param MemberPermanentlyDeleteAccountContentsType val: :rtype: EventType """ - return cls('member_permanently_delete_account_contents', val) + return cls("member_permanently_delete_account_contents", val) @classmethod def member_remove_external_id(cls, val): @@ -34405,7 +35430,7 @@ def member_remove_external_id(cls, val): :param MemberRemoveExternalIdType val: :rtype: EventType """ - return cls('member_remove_external_id', val) + return cls("member_remove_external_id", val) @classmethod def member_set_profile_photo(cls, val): @@ -34416,7 +35441,7 @@ def member_set_profile_photo(cls, val): :param MemberSetProfilePhotoType val: :rtype: EventType """ - return cls('member_set_profile_photo', val) + return cls("member_set_profile_photo", val) @classmethod def member_space_limits_add_custom_quota(cls, val): @@ -34427,7 +35452,7 @@ def member_space_limits_add_custom_quota(cls, val): :param MemberSpaceLimitsAddCustomQuotaType val: :rtype: EventType """ - return cls('member_space_limits_add_custom_quota', val) + return cls("member_space_limits_add_custom_quota", val) @classmethod def member_space_limits_change_custom_quota(cls, val): @@ -34438,7 +35463,7 @@ def member_space_limits_change_custom_quota(cls, val): :param MemberSpaceLimitsChangeCustomQuotaType val: :rtype: EventType """ - return cls('member_space_limits_change_custom_quota', val) + return cls("member_space_limits_change_custom_quota", val) @classmethod def member_space_limits_change_status(cls, val): @@ -34449,7 +35474,7 @@ def member_space_limits_change_status(cls, val): :param MemberSpaceLimitsChangeStatusType val: :rtype: EventType """ - return cls('member_space_limits_change_status', val) + return cls("member_space_limits_change_status", val) @classmethod def member_space_limits_remove_custom_quota(cls, val): @@ -34460,7 +35485,7 @@ def member_space_limits_remove_custom_quota(cls, val): :param MemberSpaceLimitsRemoveCustomQuotaType val: :rtype: EventType """ - return cls('member_space_limits_remove_custom_quota', val) + return cls("member_space_limits_remove_custom_quota", val) @classmethod def member_suggest(cls, val): @@ -34471,7 +35496,7 @@ def member_suggest(cls, val): :param MemberSuggestType val: :rtype: EventType """ - return cls('member_suggest', val) + return cls("member_suggest", val) @classmethod def member_transfer_account_contents(cls, val): @@ -34482,7 +35507,7 @@ def member_transfer_account_contents(cls, val): :param MemberTransferAccountContentsType val: :rtype: EventType """ - return cls('member_transfer_account_contents', val) + return cls("member_transfer_account_contents", val) @classmethod def pending_secondary_email_added(cls, val): @@ -34493,7 +35518,7 @@ def pending_secondary_email_added(cls, val): :param PendingSecondaryEmailAddedType val: :rtype: EventType """ - return cls('pending_secondary_email_added', val) + return cls("pending_secondary_email_added", val) @classmethod def product_assigned_to_member(cls, val): @@ -34504,7 +35529,7 @@ def product_assigned_to_member(cls, val): :param ProductAssignedToMemberType val: :rtype: EventType """ - return cls('product_assigned_to_member', val) + return cls("product_assigned_to_member", val) @classmethod def product_removed_from_member(cls, val): @@ -34515,7 +35540,7 @@ def product_removed_from_member(cls, val): :param ProductRemovedFromMemberType val: :rtype: EventType """ - return cls('product_removed_from_member', val) + return cls("product_removed_from_member", val) @classmethod def secondary_email_deleted(cls, val): @@ -34526,7 +35551,7 @@ def secondary_email_deleted(cls, val): :param SecondaryEmailDeletedType val: :rtype: EventType """ - return cls('secondary_email_deleted', val) + return cls("secondary_email_deleted", val) @classmethod def secondary_email_verified(cls, val): @@ -34537,7 +35562,7 @@ def secondary_email_verified(cls, val): :param SecondaryEmailVerifiedType val: :rtype: EventType """ - return cls('secondary_email_verified', val) + return cls("secondary_email_verified", val) @classmethod def secondary_mails_policy_changed(cls, val): @@ -34548,7 +35573,7 @@ def secondary_mails_policy_changed(cls, val): :param SecondaryMailsPolicyChangedType val: :rtype: EventType """ - return cls('secondary_mails_policy_changed', val) + return cls("secondary_mails_policy_changed", val) @classmethod def binder_add_page(cls, val): @@ -34559,7 +35584,7 @@ def binder_add_page(cls, val): :param BinderAddPageType val: :rtype: EventType """ - return cls('binder_add_page', val) + return cls("binder_add_page", val) @classmethod def binder_add_section(cls, val): @@ -34570,7 +35595,7 @@ def binder_add_section(cls, val): :param BinderAddSectionType val: :rtype: EventType """ - return cls('binder_add_section', val) + return cls("binder_add_section", val) @classmethod def binder_remove_page(cls, val): @@ -34581,7 +35606,7 @@ def binder_remove_page(cls, val): :param BinderRemovePageType val: :rtype: EventType """ - return cls('binder_remove_page', val) + return cls("binder_remove_page", val) @classmethod def binder_remove_section(cls, val): @@ -34592,7 +35617,7 @@ def binder_remove_section(cls, val): :param BinderRemoveSectionType val: :rtype: EventType """ - return cls('binder_remove_section', val) + return cls("binder_remove_section", val) @classmethod def binder_rename_page(cls, val): @@ -34603,7 +35628,7 @@ def binder_rename_page(cls, val): :param BinderRenamePageType val: :rtype: EventType """ - return cls('binder_rename_page', val) + return cls("binder_rename_page", val) @classmethod def binder_rename_section(cls, val): @@ -34614,7 +35639,7 @@ def binder_rename_section(cls, val): :param BinderRenameSectionType val: :rtype: EventType """ - return cls('binder_rename_section', val) + return cls("binder_rename_section", val) @classmethod def binder_reorder_page(cls, val): @@ -34625,7 +35650,7 @@ def binder_reorder_page(cls, val): :param BinderReorderPageType val: :rtype: EventType """ - return cls('binder_reorder_page', val) + return cls("binder_reorder_page", val) @classmethod def binder_reorder_section(cls, val): @@ -34636,7 +35661,7 @@ def binder_reorder_section(cls, val): :param BinderReorderSectionType val: :rtype: EventType """ - return cls('binder_reorder_section', val) + return cls("binder_reorder_section", val) @classmethod def paper_content_add_member(cls, val): @@ -34647,7 +35672,7 @@ def paper_content_add_member(cls, val): :param PaperContentAddMemberType val: :rtype: EventType """ - return cls('paper_content_add_member', val) + return cls("paper_content_add_member", val) @classmethod def paper_content_add_to_folder(cls, val): @@ -34658,7 +35683,7 @@ def paper_content_add_to_folder(cls, val): :param PaperContentAddToFolderType val: :rtype: EventType """ - return cls('paper_content_add_to_folder', val) + return cls("paper_content_add_to_folder", val) @classmethod def paper_content_archive(cls, val): @@ -34669,7 +35694,7 @@ def paper_content_archive(cls, val): :param PaperContentArchiveType val: :rtype: EventType """ - return cls('paper_content_archive', val) + return cls("paper_content_archive", val) @classmethod def paper_content_create(cls, val): @@ -34680,7 +35705,7 @@ def paper_content_create(cls, val): :param PaperContentCreateType val: :rtype: EventType """ - return cls('paper_content_create', val) + return cls("paper_content_create", val) @classmethod def paper_content_permanently_delete(cls, val): @@ -34691,7 +35716,7 @@ def paper_content_permanently_delete(cls, val): :param PaperContentPermanentlyDeleteType val: :rtype: EventType """ - return cls('paper_content_permanently_delete', val) + return cls("paper_content_permanently_delete", val) @classmethod def paper_content_remove_from_folder(cls, val): @@ -34702,7 +35727,7 @@ def paper_content_remove_from_folder(cls, val): :param PaperContentRemoveFromFolderType val: :rtype: EventType """ - return cls('paper_content_remove_from_folder', val) + return cls("paper_content_remove_from_folder", val) @classmethod def paper_content_remove_member(cls, val): @@ -34713,7 +35738,7 @@ def paper_content_remove_member(cls, val): :param PaperContentRemoveMemberType val: :rtype: EventType """ - return cls('paper_content_remove_member', val) + return cls("paper_content_remove_member", val) @classmethod def paper_content_rename(cls, val): @@ -34724,7 +35749,7 @@ def paper_content_rename(cls, val): :param PaperContentRenameType val: :rtype: EventType """ - return cls('paper_content_rename', val) + return cls("paper_content_rename", val) @classmethod def paper_content_restore(cls, val): @@ -34735,7 +35760,7 @@ def paper_content_restore(cls, val): :param PaperContentRestoreType val: :rtype: EventType """ - return cls('paper_content_restore', val) + return cls("paper_content_restore", val) @classmethod def paper_doc_add_comment(cls, val): @@ -34746,7 +35771,7 @@ def paper_doc_add_comment(cls, val): :param PaperDocAddCommentType val: :rtype: EventType """ - return cls('paper_doc_add_comment', val) + return cls("paper_doc_add_comment", val) @classmethod def paper_doc_change_member_role(cls, val): @@ -34757,7 +35782,7 @@ def paper_doc_change_member_role(cls, val): :param PaperDocChangeMemberRoleType val: :rtype: EventType """ - return cls('paper_doc_change_member_role', val) + return cls("paper_doc_change_member_role", val) @classmethod def paper_doc_change_sharing_policy(cls, val): @@ -34768,7 +35793,7 @@ def paper_doc_change_sharing_policy(cls, val): :param PaperDocChangeSharingPolicyType val: :rtype: EventType """ - return cls('paper_doc_change_sharing_policy', val) + return cls("paper_doc_change_sharing_policy", val) @classmethod def paper_doc_change_subscription(cls, val): @@ -34779,7 +35804,7 @@ def paper_doc_change_subscription(cls, val): :param PaperDocChangeSubscriptionType val: :rtype: EventType """ - return cls('paper_doc_change_subscription', val) + return cls("paper_doc_change_subscription", val) @classmethod def paper_doc_deleted(cls, val): @@ -34790,7 +35815,7 @@ def paper_doc_deleted(cls, val): :param PaperDocDeletedType val: :rtype: EventType """ - return cls('paper_doc_deleted', val) + return cls("paper_doc_deleted", val) @classmethod def paper_doc_delete_comment(cls, val): @@ -34801,7 +35826,7 @@ def paper_doc_delete_comment(cls, val): :param PaperDocDeleteCommentType val: :rtype: EventType """ - return cls('paper_doc_delete_comment', val) + return cls("paper_doc_delete_comment", val) @classmethod def paper_doc_download(cls, val): @@ -34812,7 +35837,7 @@ def paper_doc_download(cls, val): :param PaperDocDownloadType val: :rtype: EventType """ - return cls('paper_doc_download', val) + return cls("paper_doc_download", val) @classmethod def paper_doc_edit(cls, val): @@ -34823,7 +35848,7 @@ def paper_doc_edit(cls, val): :param PaperDocEditType val: :rtype: EventType """ - return cls('paper_doc_edit', val) + return cls("paper_doc_edit", val) @classmethod def paper_doc_edit_comment(cls, val): @@ -34834,7 +35859,7 @@ def paper_doc_edit_comment(cls, val): :param PaperDocEditCommentType val: :rtype: EventType """ - return cls('paper_doc_edit_comment', val) + return cls("paper_doc_edit_comment", val) @classmethod def paper_doc_followed(cls, val): @@ -34845,7 +35870,7 @@ def paper_doc_followed(cls, val): :param PaperDocFollowedType val: :rtype: EventType """ - return cls('paper_doc_followed', val) + return cls("paper_doc_followed", val) @classmethod def paper_doc_mention(cls, val): @@ -34856,7 +35881,7 @@ def paper_doc_mention(cls, val): :param PaperDocMentionType val: :rtype: EventType """ - return cls('paper_doc_mention', val) + return cls("paper_doc_mention", val) @classmethod def paper_doc_ownership_changed(cls, val): @@ -34867,7 +35892,7 @@ def paper_doc_ownership_changed(cls, val): :param PaperDocOwnershipChangedType val: :rtype: EventType """ - return cls('paper_doc_ownership_changed', val) + return cls("paper_doc_ownership_changed", val) @classmethod def paper_doc_request_access(cls, val): @@ -34878,7 +35903,7 @@ def paper_doc_request_access(cls, val): :param PaperDocRequestAccessType val: :rtype: EventType """ - return cls('paper_doc_request_access', val) + return cls("paper_doc_request_access", val) @classmethod def paper_doc_resolve_comment(cls, val): @@ -34889,7 +35914,7 @@ def paper_doc_resolve_comment(cls, val): :param PaperDocResolveCommentType val: :rtype: EventType """ - return cls('paper_doc_resolve_comment', val) + return cls("paper_doc_resolve_comment", val) @classmethod def paper_doc_revert(cls, val): @@ -34900,7 +35925,7 @@ def paper_doc_revert(cls, val): :param PaperDocRevertType val: :rtype: EventType """ - return cls('paper_doc_revert', val) + return cls("paper_doc_revert", val) @classmethod def paper_doc_slack_share(cls, val): @@ -34911,7 +35936,7 @@ def paper_doc_slack_share(cls, val): :param PaperDocSlackShareType val: :rtype: EventType """ - return cls('paper_doc_slack_share', val) + return cls("paper_doc_slack_share", val) @classmethod def paper_doc_team_invite(cls, val): @@ -34922,7 +35947,7 @@ def paper_doc_team_invite(cls, val): :param PaperDocTeamInviteType val: :rtype: EventType """ - return cls('paper_doc_team_invite', val) + return cls("paper_doc_team_invite", val) @classmethod def paper_doc_trashed(cls, val): @@ -34933,7 +35958,7 @@ def paper_doc_trashed(cls, val): :param PaperDocTrashedType val: :rtype: EventType """ - return cls('paper_doc_trashed', val) + return cls("paper_doc_trashed", val) @classmethod def paper_doc_unresolve_comment(cls, val): @@ -34944,7 +35969,7 @@ def paper_doc_unresolve_comment(cls, val): :param PaperDocUnresolveCommentType val: :rtype: EventType """ - return cls('paper_doc_unresolve_comment', val) + return cls("paper_doc_unresolve_comment", val) @classmethod def paper_doc_untrashed(cls, val): @@ -34955,7 +35980,7 @@ def paper_doc_untrashed(cls, val): :param PaperDocUntrashedType val: :rtype: EventType """ - return cls('paper_doc_untrashed', val) + return cls("paper_doc_untrashed", val) @classmethod def paper_doc_view(cls, val): @@ -34966,7 +35991,7 @@ def paper_doc_view(cls, val): :param PaperDocViewType val: :rtype: EventType """ - return cls('paper_doc_view', val) + return cls("paper_doc_view", val) @classmethod def paper_external_view_allow(cls, val): @@ -34977,7 +36002,7 @@ def paper_external_view_allow(cls, val): :param PaperExternalViewAllowType val: :rtype: EventType """ - return cls('paper_external_view_allow', val) + return cls("paper_external_view_allow", val) @classmethod def paper_external_view_default_team(cls, val): @@ -34988,7 +36013,7 @@ def paper_external_view_default_team(cls, val): :param PaperExternalViewDefaultTeamType val: :rtype: EventType """ - return cls('paper_external_view_default_team', val) + return cls("paper_external_view_default_team", val) @classmethod def paper_external_view_forbid(cls, val): @@ -34999,7 +36024,7 @@ def paper_external_view_forbid(cls, val): :param PaperExternalViewForbidType val: :rtype: EventType """ - return cls('paper_external_view_forbid', val) + return cls("paper_external_view_forbid", val) @classmethod def paper_folder_change_subscription(cls, val): @@ -35010,7 +36035,7 @@ def paper_folder_change_subscription(cls, val): :param PaperFolderChangeSubscriptionType val: :rtype: EventType """ - return cls('paper_folder_change_subscription', val) + return cls("paper_folder_change_subscription", val) @classmethod def paper_folder_deleted(cls, val): @@ -35021,7 +36046,7 @@ def paper_folder_deleted(cls, val): :param PaperFolderDeletedType val: :rtype: EventType """ - return cls('paper_folder_deleted', val) + return cls("paper_folder_deleted", val) @classmethod def paper_folder_followed(cls, val): @@ -35032,7 +36057,7 @@ def paper_folder_followed(cls, val): :param PaperFolderFollowedType val: :rtype: EventType """ - return cls('paper_folder_followed', val) + return cls("paper_folder_followed", val) @classmethod def paper_folder_team_invite(cls, val): @@ -35043,7 +36068,7 @@ def paper_folder_team_invite(cls, val): :param PaperFolderTeamInviteType val: :rtype: EventType """ - return cls('paper_folder_team_invite', val) + return cls("paper_folder_team_invite", val) @classmethod def paper_published_link_change_permission(cls, val): @@ -35054,7 +36079,7 @@ def paper_published_link_change_permission(cls, val): :param PaperPublishedLinkChangePermissionType val: :rtype: EventType """ - return cls('paper_published_link_change_permission', val) + return cls("paper_published_link_change_permission", val) @classmethod def paper_published_link_create(cls, val): @@ -35065,7 +36090,7 @@ def paper_published_link_create(cls, val): :param PaperPublishedLinkCreateType val: :rtype: EventType """ - return cls('paper_published_link_create', val) + return cls("paper_published_link_create", val) @classmethod def paper_published_link_disabled(cls, val): @@ -35076,7 +36101,7 @@ def paper_published_link_disabled(cls, val): :param PaperPublishedLinkDisabledType val: :rtype: EventType """ - return cls('paper_published_link_disabled', val) + return cls("paper_published_link_disabled", val) @classmethod def paper_published_link_view(cls, val): @@ -35087,7 +36112,7 @@ def paper_published_link_view(cls, val): :param PaperPublishedLinkViewType val: :rtype: EventType """ - return cls('paper_published_link_view', val) + return cls("paper_published_link_view", val) @classmethod def password_change(cls, val): @@ -35098,7 +36123,7 @@ def password_change(cls, val): :param PasswordChangeType val: :rtype: EventType """ - return cls('password_change', val) + return cls("password_change", val) @classmethod def password_reset(cls, val): @@ -35109,7 +36134,7 @@ def password_reset(cls, val): :param PasswordResetType val: :rtype: EventType """ - return cls('password_reset', val) + return cls("password_reset", val) @classmethod def password_reset_all(cls, val): @@ -35120,7 +36145,7 @@ def password_reset_all(cls, val): :param PasswordResetAllType val: :rtype: EventType """ - return cls('password_reset_all', val) + return cls("password_reset_all", val) @classmethod def protect_internal_domains_changed(cls, val): @@ -35131,7 +36156,7 @@ def protect_internal_domains_changed(cls, val): :param ProtectInternalDomainsChangedType val: :rtype: EventType """ - return cls('protect_internal_domains_changed', val) + return cls("protect_internal_domains_changed", val) @classmethod def classification_create_report(cls, val): @@ -35142,7 +36167,7 @@ def classification_create_report(cls, val): :param ClassificationCreateReportType val: :rtype: EventType """ - return cls('classification_create_report', val) + return cls("classification_create_report", val) @classmethod def classification_create_report_fail(cls, val): @@ -35153,7 +36178,7 @@ def classification_create_report_fail(cls, val): :param ClassificationCreateReportFailType val: :rtype: EventType """ - return cls('classification_create_report_fail', val) + return cls("classification_create_report_fail", val) @classmethod def emm_create_exceptions_report(cls, val): @@ -35164,7 +36189,7 @@ def emm_create_exceptions_report(cls, val): :param EmmCreateExceptionsReportType val: :rtype: EventType """ - return cls('emm_create_exceptions_report', val) + return cls("emm_create_exceptions_report", val) @classmethod def emm_create_usage_report(cls, val): @@ -35175,7 +36200,7 @@ def emm_create_usage_report(cls, val): :param EmmCreateUsageReportType val: :rtype: EventType """ - return cls('emm_create_usage_report', val) + return cls("emm_create_usage_report", val) @classmethod def export_members_report(cls, val): @@ -35186,7 +36211,7 @@ def export_members_report(cls, val): :param ExportMembersReportType val: :rtype: EventType """ - return cls('export_members_report', val) + return cls("export_members_report", val) @classmethod def export_members_report_fail(cls, val): @@ -35197,7 +36222,7 @@ def export_members_report_fail(cls, val): :param ExportMembersReportFailType val: :rtype: EventType """ - return cls('export_members_report_fail', val) + return cls("export_members_report_fail", val) @classmethod def external_sharing_create_report(cls, val): @@ -35208,7 +36233,7 @@ def external_sharing_create_report(cls, val): :param ExternalSharingCreateReportType val: :rtype: EventType """ - return cls('external_sharing_create_report', val) + return cls("external_sharing_create_report", val) @classmethod def external_sharing_report_failed(cls, val): @@ -35219,7 +36244,7 @@ def external_sharing_report_failed(cls, val): :param ExternalSharingReportFailedType val: :rtype: EventType """ - return cls('external_sharing_report_failed', val) + return cls("external_sharing_report_failed", val) @classmethod def member_access_details_create_report(cls, val): @@ -35230,7 +36255,7 @@ def member_access_details_create_report(cls, val): :param MemberAccessDetailsCreateReportType val: :rtype: EventType """ - return cls('member_access_details_create_report', val) + return cls("member_access_details_create_report", val) @classmethod def member_access_details_create_report_failed(cls, val): @@ -35241,7 +36266,7 @@ def member_access_details_create_report_failed(cls, val): :param MemberAccessDetailsCreateReportFailedType val: :rtype: EventType """ - return cls('member_access_details_create_report_failed', val) + return cls("member_access_details_create_report_failed", val) @classmethod def no_expiration_link_gen_create_report(cls, val): @@ -35252,7 +36277,7 @@ def no_expiration_link_gen_create_report(cls, val): :param NoExpirationLinkGenCreateReportType val: :rtype: EventType """ - return cls('no_expiration_link_gen_create_report', val) + return cls("no_expiration_link_gen_create_report", val) @classmethod def no_expiration_link_gen_report_failed(cls, val): @@ -35263,7 +36288,7 @@ def no_expiration_link_gen_report_failed(cls, val): :param NoExpirationLinkGenReportFailedType val: :rtype: EventType """ - return cls('no_expiration_link_gen_report_failed', val) + return cls("no_expiration_link_gen_report_failed", val) @classmethod def no_password_link_gen_create_report(cls, val): @@ -35274,7 +36299,7 @@ def no_password_link_gen_create_report(cls, val): :param NoPasswordLinkGenCreateReportType val: :rtype: EventType """ - return cls('no_password_link_gen_create_report', val) + return cls("no_password_link_gen_create_report", val) @classmethod def no_password_link_gen_report_failed(cls, val): @@ -35285,7 +36310,7 @@ def no_password_link_gen_report_failed(cls, val): :param NoPasswordLinkGenReportFailedType val: :rtype: EventType """ - return cls('no_password_link_gen_report_failed', val) + return cls("no_password_link_gen_report_failed", val) @classmethod def no_password_link_view_create_report(cls, val): @@ -35296,7 +36321,7 @@ def no_password_link_view_create_report(cls, val): :param NoPasswordLinkViewCreateReportType val: :rtype: EventType """ - return cls('no_password_link_view_create_report', val) + return cls("no_password_link_view_create_report", val) @classmethod def no_password_link_view_report_failed(cls, val): @@ -35307,7 +36332,7 @@ def no_password_link_view_report_failed(cls, val): :param NoPasswordLinkViewReportFailedType val: :rtype: EventType """ - return cls('no_password_link_view_report_failed', val) + return cls("no_password_link_view_report_failed", val) @classmethod def outdated_link_view_create_report(cls, val): @@ -35318,7 +36343,7 @@ def outdated_link_view_create_report(cls, val): :param OutdatedLinkViewCreateReportType val: :rtype: EventType """ - return cls('outdated_link_view_create_report', val) + return cls("outdated_link_view_create_report", val) @classmethod def outdated_link_view_report_failed(cls, val): @@ -35329,7 +36354,7 @@ def outdated_link_view_report_failed(cls, val): :param OutdatedLinkViewReportFailedType val: :rtype: EventType """ - return cls('outdated_link_view_report_failed', val) + return cls("outdated_link_view_report_failed", val) @classmethod def paper_admin_export_start(cls, val): @@ -35340,7 +36365,7 @@ def paper_admin_export_start(cls, val): :param PaperAdminExportStartType val: :rtype: EventType """ - return cls('paper_admin_export_start', val) + return cls("paper_admin_export_start", val) @classmethod def ransomware_alert_create_report(cls, val): @@ -35351,7 +36376,7 @@ def ransomware_alert_create_report(cls, val): :param RansomwareAlertCreateReportType val: :rtype: EventType """ - return cls('ransomware_alert_create_report', val) + return cls("ransomware_alert_create_report", val) @classmethod def ransomware_alert_create_report_failed(cls, val): @@ -35362,7 +36387,7 @@ def ransomware_alert_create_report_failed(cls, val): :param RansomwareAlertCreateReportFailedType val: :rtype: EventType """ - return cls('ransomware_alert_create_report_failed', val) + return cls("ransomware_alert_create_report_failed", val) @classmethod def shared_folders_create_report(cls, val): @@ -35373,7 +36398,7 @@ def shared_folders_create_report(cls, val): :param SharedFoldersCreateReportType val: :rtype: EventType """ - return cls('shared_folders_create_report', val) + return cls("shared_folders_create_report", val) @classmethod def shared_folders_create_report_failed(cls, val): @@ -35384,7 +36409,7 @@ def shared_folders_create_report_failed(cls, val): :param SharedFoldersCreateReportFailedType val: :rtype: EventType """ - return cls('shared_folders_create_report_failed', val) + return cls("shared_folders_create_report_failed", val) @classmethod def smart_sync_create_admin_privilege_report(cls, val): @@ -35395,7 +36420,7 @@ def smart_sync_create_admin_privilege_report(cls, val): :param SmartSyncCreateAdminPrivilegeReportType val: :rtype: EventType """ - return cls('smart_sync_create_admin_privilege_report', val) + return cls("smart_sync_create_admin_privilege_report", val) @classmethod def team_activity_create_report(cls, val): @@ -35406,7 +36431,7 @@ def team_activity_create_report(cls, val): :param TeamActivityCreateReportType val: :rtype: EventType """ - return cls('team_activity_create_report', val) + return cls("team_activity_create_report", val) @classmethod def team_activity_create_report_fail(cls, val): @@ -35417,7 +36442,7 @@ def team_activity_create_report_fail(cls, val): :param TeamActivityCreateReportFailType val: :rtype: EventType """ - return cls('team_activity_create_report_fail', val) + return cls("team_activity_create_report_fail", val) @classmethod def team_folders_create_report(cls, val): @@ -35428,7 +36453,7 @@ def team_folders_create_report(cls, val): :param TeamFoldersCreateReportType val: :rtype: EventType """ - return cls('team_folders_create_report', val) + return cls("team_folders_create_report", val) @classmethod def team_folders_create_report_failed(cls, val): @@ -35439,7 +36464,7 @@ def team_folders_create_report_failed(cls, val): :param TeamFoldersCreateReportFailedType val: :rtype: EventType """ - return cls('team_folders_create_report_failed', val) + return cls("team_folders_create_report_failed", val) @classmethod def team_storage_create_report(cls, val): @@ -35450,7 +36475,7 @@ def team_storage_create_report(cls, val): :param TeamStorageCreateReportType val: :rtype: EventType """ - return cls('team_storage_create_report', val) + return cls("team_storage_create_report", val) @classmethod def team_storage_create_report_failed(cls, val): @@ -35461,7 +36486,7 @@ def team_storage_create_report_failed(cls, val): :param TeamStorageCreateReportFailedType val: :rtype: EventType """ - return cls('team_storage_create_report_failed', val) + return cls("team_storage_create_report_failed", val) @classmethod def collection_share(cls, val): @@ -35472,7 +36497,7 @@ def collection_share(cls, val): :param CollectionShareType val: :rtype: EventType """ - return cls('collection_share', val) + return cls("collection_share", val) @classmethod def file_transfers_file_add(cls, val): @@ -35483,7 +36508,7 @@ def file_transfers_file_add(cls, val): :param FileTransfersFileAddType val: :rtype: EventType """ - return cls('file_transfers_file_add', val) + return cls("file_transfers_file_add", val) @classmethod def file_transfers_transfer_delete(cls, val): @@ -35494,7 +36519,7 @@ def file_transfers_transfer_delete(cls, val): :param FileTransfersTransferDeleteType val: :rtype: EventType """ - return cls('file_transfers_transfer_delete', val) + return cls("file_transfers_transfer_delete", val) @classmethod def file_transfers_transfer_download(cls, val): @@ -35505,7 +36530,7 @@ def file_transfers_transfer_download(cls, val): :param FileTransfersTransferDownloadType val: :rtype: EventType """ - return cls('file_transfers_transfer_download', val) + return cls("file_transfers_transfer_download", val) @classmethod def file_transfers_transfer_send(cls, val): @@ -35516,7 +36541,7 @@ def file_transfers_transfer_send(cls, val): :param FileTransfersTransferSendType val: :rtype: EventType """ - return cls('file_transfers_transfer_send', val) + return cls("file_transfers_transfer_send", val) @classmethod def file_transfers_transfer_view(cls, val): @@ -35527,7 +36552,7 @@ def file_transfers_transfer_view(cls, val): :param FileTransfersTransferViewType val: :rtype: EventType """ - return cls('file_transfers_transfer_view', val) + return cls("file_transfers_transfer_view", val) @classmethod def media_hub_project_team_add(cls, val): @@ -35538,7 +36563,7 @@ def media_hub_project_team_add(cls, val): :param MediaHubProjectTeamAddType val: :rtype: EventType """ - return cls('media_hub_project_team_add', val) + return cls("media_hub_project_team_add", val) @classmethod def media_hub_project_team_delete(cls, val): @@ -35549,7 +36574,7 @@ def media_hub_project_team_delete(cls, val): :param MediaHubProjectTeamDeleteType val: :rtype: EventType """ - return cls('media_hub_project_team_delete', val) + return cls("media_hub_project_team_delete", val) @classmethod def media_hub_project_team_role_changed(cls, val): @@ -35560,7 +36585,7 @@ def media_hub_project_team_role_changed(cls, val): :param MediaHubProjectTeamRoleChangedType val: :rtype: EventType """ - return cls('media_hub_project_team_role_changed', val) + return cls("media_hub_project_team_role_changed", val) @classmethod def media_hub_shared_link_audience_changed(cls, val): @@ -35571,7 +36596,7 @@ def media_hub_shared_link_audience_changed(cls, val): :param MediaHubSharedLinkAudienceChangedType val: :rtype: EventType """ - return cls('media_hub_shared_link_audience_changed', val) + return cls("media_hub_shared_link_audience_changed", val) @classmethod def media_hub_shared_link_created(cls, val): @@ -35582,7 +36607,7 @@ def media_hub_shared_link_created(cls, val): :param MediaHubSharedLinkCreatedType val: :rtype: EventType """ - return cls('media_hub_shared_link_created', val) + return cls("media_hub_shared_link_created", val) @classmethod def media_hub_shared_link_download_setting_changed(cls, val): @@ -35594,7 +36619,7 @@ def media_hub_shared_link_download_setting_changed(cls, val): :param MediaHubSharedLinkDownloadSettingChangedType val: :rtype: EventType """ - return cls('media_hub_shared_link_download_setting_changed', val) + return cls("media_hub_shared_link_download_setting_changed", val) @classmethod def media_hub_shared_link_revoked(cls, val): @@ -35605,7 +36630,7 @@ def media_hub_shared_link_revoked(cls, val): :param MediaHubSharedLinkRevokedType val: :rtype: EventType """ - return cls('media_hub_shared_link_revoked', val) + return cls("media_hub_shared_link_revoked", val) @classmethod def note_acl_invite_only(cls, val): @@ -35616,7 +36641,7 @@ def note_acl_invite_only(cls, val): :param NoteAclInviteOnlyType val: :rtype: EventType """ - return cls('note_acl_invite_only', val) + return cls("note_acl_invite_only", val) @classmethod def note_acl_link(cls, val): @@ -35627,7 +36652,7 @@ def note_acl_link(cls, val): :param NoteAclLinkType val: :rtype: EventType """ - return cls('note_acl_link', val) + return cls("note_acl_link", val) @classmethod def note_acl_team_link(cls, val): @@ -35638,7 +36663,7 @@ def note_acl_team_link(cls, val): :param NoteAclTeamLinkType val: :rtype: EventType """ - return cls('note_acl_team_link', val) + return cls("note_acl_team_link", val) @classmethod def note_shared(cls, val): @@ -35649,7 +36674,7 @@ def note_shared(cls, val): :param NoteSharedType val: :rtype: EventType """ - return cls('note_shared', val) + return cls("note_shared", val) @classmethod def note_share_receive(cls, val): @@ -35660,7 +36685,7 @@ def note_share_receive(cls, val): :param NoteShareReceiveType val: :rtype: EventType """ - return cls('note_share_receive', val) + return cls("note_share_receive", val) @classmethod def open_note_shared(cls, val): @@ -35671,7 +36696,7 @@ def open_note_shared(cls, val): :param OpenNoteSharedType val: :rtype: EventType """ - return cls('open_note_shared', val) + return cls("open_note_shared", val) @classmethod def replay_file_shared_link_created(cls, val): @@ -35682,7 +36707,7 @@ def replay_file_shared_link_created(cls, val): :param ReplayFileSharedLinkCreatedType val: :rtype: EventType """ - return cls('replay_file_shared_link_created', val) + return cls("replay_file_shared_link_created", val) @classmethod def replay_file_shared_link_modified(cls, val): @@ -35693,7 +36718,7 @@ def replay_file_shared_link_modified(cls, val): :param ReplayFileSharedLinkModifiedType val: :rtype: EventType """ - return cls('replay_file_shared_link_modified', val) + return cls("replay_file_shared_link_modified", val) @classmethod def replay_project_team_add(cls, val): @@ -35704,7 +36729,7 @@ def replay_project_team_add(cls, val): :param ReplayProjectTeamAddType val: :rtype: EventType """ - return cls('replay_project_team_add', val) + return cls("replay_project_team_add", val) @classmethod def replay_project_team_delete(cls, val): @@ -35715,7 +36740,7 @@ def replay_project_team_delete(cls, val): :param ReplayProjectTeamDeleteType val: :rtype: EventType """ - return cls('replay_project_team_delete', val) + return cls("replay_project_team_delete", val) @classmethod def send_and_track_file_added(cls, val): @@ -35726,7 +36751,7 @@ def send_and_track_file_added(cls, val): :param SendAndTrackFileAddedType val: :rtype: EventType """ - return cls('send_and_track_file_added', val) + return cls("send_and_track_file_added", val) @classmethod def send_and_track_file_renamed(cls, val): @@ -35737,7 +36762,7 @@ def send_and_track_file_renamed(cls, val): :param SendAndTrackFileRenamedType val: :rtype: EventType """ - return cls('send_and_track_file_renamed', val) + return cls("send_and_track_file_renamed", val) @classmethod def send_and_track_file_updated(cls, val): @@ -35748,7 +36773,7 @@ def send_and_track_file_updated(cls, val): :param SendAndTrackFileUpdatedType val: :rtype: EventType """ - return cls('send_and_track_file_updated', val) + return cls("send_and_track_file_updated", val) @classmethod def send_and_track_link_created(cls, val): @@ -35759,7 +36784,7 @@ def send_and_track_link_created(cls, val): :param SendAndTrackLinkCreatedType val: :rtype: EventType """ - return cls('send_and_track_link_created', val) + return cls("send_and_track_link_created", val) @classmethod def send_and_track_link_deleted(cls, val): @@ -35770,7 +36795,7 @@ def send_and_track_link_deleted(cls, val): :param SendAndTrackLinkDeletedType val: :rtype: EventType """ - return cls('send_and_track_link_deleted', val) + return cls("send_and_track_link_deleted", val) @classmethod def send_and_track_link_updated(cls, val): @@ -35781,7 +36806,7 @@ def send_and_track_link_updated(cls, val): :param SendAndTrackLinkUpdatedType val: :rtype: EventType """ - return cls('send_and_track_link_updated', val) + return cls("send_and_track_link_updated", val) @classmethod def send_and_track_link_viewed(cls, val): @@ -35792,7 +36817,7 @@ def send_and_track_link_viewed(cls, val): :param SendAndTrackLinkViewedType val: :rtype: EventType """ - return cls('send_and_track_link_viewed', val) + return cls("send_and_track_link_viewed", val) @classmethod def send_and_track_removed_file_and_associated_links(cls, val): @@ -35804,7 +36829,7 @@ def send_and_track_removed_file_and_associated_links(cls, val): :param SendAndTrackRemovedFileAndAssociatedLinksType val: :rtype: EventType """ - return cls('send_and_track_removed_file_and_associated_links', val) + return cls("send_and_track_removed_file_and_associated_links", val) @classmethod def sf_add_group(cls, val): @@ -35815,7 +36840,7 @@ def sf_add_group(cls, val): :param SfAddGroupType val: :rtype: EventType """ - return cls('sf_add_group', val) + return cls("sf_add_group", val) @classmethod def sf_allow_non_members_to_view_shared_links(cls, val): @@ -35826,7 +36851,7 @@ def sf_allow_non_members_to_view_shared_links(cls, val): :param SfAllowNonMembersToViewSharedLinksType val: :rtype: EventType """ - return cls('sf_allow_non_members_to_view_shared_links', val) + return cls("sf_allow_non_members_to_view_shared_links", val) @classmethod def sf_external_invite_warn(cls, val): @@ -35837,7 +36862,7 @@ def sf_external_invite_warn(cls, val): :param SfExternalInviteWarnType val: :rtype: EventType """ - return cls('sf_external_invite_warn', val) + return cls("sf_external_invite_warn", val) @classmethod def sf_fb_invite(cls, val): @@ -35848,7 +36873,7 @@ def sf_fb_invite(cls, val): :param SfFbInviteType val: :rtype: EventType """ - return cls('sf_fb_invite', val) + return cls("sf_fb_invite", val) @classmethod def sf_fb_invite_change_role(cls, val): @@ -35859,7 +36884,7 @@ def sf_fb_invite_change_role(cls, val): :param SfFbInviteChangeRoleType val: :rtype: EventType """ - return cls('sf_fb_invite_change_role', val) + return cls("sf_fb_invite_change_role", val) @classmethod def sf_fb_uninvite(cls, val): @@ -35870,7 +36895,7 @@ def sf_fb_uninvite(cls, val): :param SfFbUninviteType val: :rtype: EventType """ - return cls('sf_fb_uninvite', val) + return cls("sf_fb_uninvite", val) @classmethod def sf_invite_group(cls, val): @@ -35881,7 +36906,7 @@ def sf_invite_group(cls, val): :param SfInviteGroupType val: :rtype: EventType """ - return cls('sf_invite_group', val) + return cls("sf_invite_group", val) @classmethod def sf_team_grant_access(cls, val): @@ -35892,7 +36917,7 @@ def sf_team_grant_access(cls, val): :param SfTeamGrantAccessType val: :rtype: EventType """ - return cls('sf_team_grant_access', val) + return cls("sf_team_grant_access", val) @classmethod def sf_team_invite(cls, val): @@ -35903,7 +36928,7 @@ def sf_team_invite(cls, val): :param SfTeamInviteType val: :rtype: EventType """ - return cls('sf_team_invite', val) + return cls("sf_team_invite", val) @classmethod def sf_team_invite_change_role(cls, val): @@ -35914,7 +36939,7 @@ def sf_team_invite_change_role(cls, val): :param SfTeamInviteChangeRoleType val: :rtype: EventType """ - return cls('sf_team_invite_change_role', val) + return cls("sf_team_invite_change_role", val) @classmethod def sf_team_join(cls, val): @@ -35925,7 +36950,7 @@ def sf_team_join(cls, val): :param SfTeamJoinType val: :rtype: EventType """ - return cls('sf_team_join', val) + return cls("sf_team_join", val) @classmethod def sf_team_join_from_oob_link(cls, val): @@ -35936,7 +36961,7 @@ def sf_team_join_from_oob_link(cls, val): :param SfTeamJoinFromOobLinkType val: :rtype: EventType """ - return cls('sf_team_join_from_oob_link', val) + return cls("sf_team_join_from_oob_link", val) @classmethod def sf_team_uninvite(cls, val): @@ -35947,7 +36972,7 @@ def sf_team_uninvite(cls, val): :param SfTeamUninviteType val: :rtype: EventType """ - return cls('sf_team_uninvite', val) + return cls("sf_team_uninvite", val) @classmethod def shared_content_add_invitees(cls, val): @@ -35958,7 +36983,7 @@ def shared_content_add_invitees(cls, val): :param SharedContentAddInviteesType val: :rtype: EventType """ - return cls('shared_content_add_invitees', val) + return cls("shared_content_add_invitees", val) @classmethod def shared_content_add_link_expiry(cls, val): @@ -35969,7 +36994,7 @@ def shared_content_add_link_expiry(cls, val): :param SharedContentAddLinkExpiryType val: :rtype: EventType """ - return cls('shared_content_add_link_expiry', val) + return cls("shared_content_add_link_expiry", val) @classmethod def shared_content_add_link_password(cls, val): @@ -35980,7 +37005,7 @@ def shared_content_add_link_password(cls, val): :param SharedContentAddLinkPasswordType val: :rtype: EventType """ - return cls('shared_content_add_link_password', val) + return cls("shared_content_add_link_password", val) @classmethod def shared_content_add_member(cls, val): @@ -35991,7 +37016,7 @@ def shared_content_add_member(cls, val): :param SharedContentAddMemberType val: :rtype: EventType """ - return cls('shared_content_add_member', val) + return cls("shared_content_add_member", val) @classmethod def shared_content_change_downloads_policy(cls, val): @@ -36002,7 +37027,7 @@ def shared_content_change_downloads_policy(cls, val): :param SharedContentChangeDownloadsPolicyType val: :rtype: EventType """ - return cls('shared_content_change_downloads_policy', val) + return cls("shared_content_change_downloads_policy", val) @classmethod def shared_content_change_invitee_role(cls, val): @@ -36013,7 +37038,7 @@ def shared_content_change_invitee_role(cls, val): :param SharedContentChangeInviteeRoleType val: :rtype: EventType """ - return cls('shared_content_change_invitee_role', val) + return cls("shared_content_change_invitee_role", val) @classmethod def shared_content_change_link_audience(cls, val): @@ -36024,7 +37049,7 @@ def shared_content_change_link_audience(cls, val): :param SharedContentChangeLinkAudienceType val: :rtype: EventType """ - return cls('shared_content_change_link_audience', val) + return cls("shared_content_change_link_audience", val) @classmethod def shared_content_change_link_expiry(cls, val): @@ -36035,7 +37060,7 @@ def shared_content_change_link_expiry(cls, val): :param SharedContentChangeLinkExpiryType val: :rtype: EventType """ - return cls('shared_content_change_link_expiry', val) + return cls("shared_content_change_link_expiry", val) @classmethod def shared_content_change_link_password(cls, val): @@ -36046,7 +37071,7 @@ def shared_content_change_link_password(cls, val): :param SharedContentChangeLinkPasswordType val: :rtype: EventType """ - return cls('shared_content_change_link_password', val) + return cls("shared_content_change_link_password", val) @classmethod def shared_content_change_member_role(cls, val): @@ -36057,7 +37082,7 @@ def shared_content_change_member_role(cls, val): :param SharedContentChangeMemberRoleType val: :rtype: EventType """ - return cls('shared_content_change_member_role', val) + return cls("shared_content_change_member_role", val) @classmethod def shared_content_change_viewer_info_policy(cls, val): @@ -36068,7 +37093,7 @@ def shared_content_change_viewer_info_policy(cls, val): :param SharedContentChangeViewerInfoPolicyType val: :rtype: EventType """ - return cls('shared_content_change_viewer_info_policy', val) + return cls("shared_content_change_viewer_info_policy", val) @classmethod def shared_content_claim_invitation(cls, val): @@ -36079,7 +37104,7 @@ def shared_content_claim_invitation(cls, val): :param SharedContentClaimInvitationType val: :rtype: EventType """ - return cls('shared_content_claim_invitation', val) + return cls("shared_content_claim_invitation", val) @classmethod def shared_content_copy(cls, val): @@ -36090,7 +37115,7 @@ def shared_content_copy(cls, val): :param SharedContentCopyType val: :rtype: EventType """ - return cls('shared_content_copy', val) + return cls("shared_content_copy", val) @classmethod def shared_content_download(cls, val): @@ -36101,7 +37126,7 @@ def shared_content_download(cls, val): :param SharedContentDownloadType val: :rtype: EventType """ - return cls('shared_content_download', val) + return cls("shared_content_download", val) @classmethod def shared_content_relinquish_membership(cls, val): @@ -36112,7 +37137,7 @@ def shared_content_relinquish_membership(cls, val): :param SharedContentRelinquishMembershipType val: :rtype: EventType """ - return cls('shared_content_relinquish_membership', val) + return cls("shared_content_relinquish_membership", val) @classmethod def shared_content_remove_invitees(cls, val): @@ -36123,7 +37148,7 @@ def shared_content_remove_invitees(cls, val): :param SharedContentRemoveInviteesType val: :rtype: EventType """ - return cls('shared_content_remove_invitees', val) + return cls("shared_content_remove_invitees", val) @classmethod def shared_content_remove_link_expiry(cls, val): @@ -36134,7 +37159,7 @@ def shared_content_remove_link_expiry(cls, val): :param SharedContentRemoveLinkExpiryType val: :rtype: EventType """ - return cls('shared_content_remove_link_expiry', val) + return cls("shared_content_remove_link_expiry", val) @classmethod def shared_content_remove_link_password(cls, val): @@ -36145,7 +37170,7 @@ def shared_content_remove_link_password(cls, val): :param SharedContentRemoveLinkPasswordType val: :rtype: EventType """ - return cls('shared_content_remove_link_password', val) + return cls("shared_content_remove_link_password", val) @classmethod def shared_content_remove_member(cls, val): @@ -36156,7 +37181,7 @@ def shared_content_remove_member(cls, val): :param SharedContentRemoveMemberType val: :rtype: EventType """ - return cls('shared_content_remove_member', val) + return cls("shared_content_remove_member", val) @classmethod def shared_content_request_access(cls, val): @@ -36167,7 +37192,7 @@ def shared_content_request_access(cls, val): :param SharedContentRequestAccessType val: :rtype: EventType """ - return cls('shared_content_request_access', val) + return cls("shared_content_request_access", val) @classmethod def shared_content_restore_invitees(cls, val): @@ -36178,7 +37203,7 @@ def shared_content_restore_invitees(cls, val): :param SharedContentRestoreInviteesType val: :rtype: EventType """ - return cls('shared_content_restore_invitees', val) + return cls("shared_content_restore_invitees", val) @classmethod def shared_content_restore_member(cls, val): @@ -36189,7 +37214,7 @@ def shared_content_restore_member(cls, val): :param SharedContentRestoreMemberType val: :rtype: EventType """ - return cls('shared_content_restore_member', val) + return cls("shared_content_restore_member", val) @classmethod def shared_content_unshare(cls, val): @@ -36200,7 +37225,7 @@ def shared_content_unshare(cls, val): :param SharedContentUnshareType val: :rtype: EventType """ - return cls('shared_content_unshare', val) + return cls("shared_content_unshare", val) @classmethod def shared_content_view(cls, val): @@ -36211,7 +37236,7 @@ def shared_content_view(cls, val): :param SharedContentViewType val: :rtype: EventType """ - return cls('shared_content_view', val) + return cls("shared_content_view", val) @classmethod def shared_folder_change_link_policy(cls, val): @@ -36222,7 +37247,7 @@ def shared_folder_change_link_policy(cls, val): :param SharedFolderChangeLinkPolicyType val: :rtype: EventType """ - return cls('shared_folder_change_link_policy', val) + return cls("shared_folder_change_link_policy", val) @classmethod def shared_folder_change_members_inheritance_policy(cls, val): @@ -36234,7 +37259,7 @@ def shared_folder_change_members_inheritance_policy(cls, val): :param SharedFolderChangeMembersInheritancePolicyType val: :rtype: EventType """ - return cls('shared_folder_change_members_inheritance_policy', val) + return cls("shared_folder_change_members_inheritance_policy", val) @classmethod def shared_folder_change_members_management_policy(cls, val): @@ -36246,7 +37271,7 @@ def shared_folder_change_members_management_policy(cls, val): :param SharedFolderChangeMembersManagementPolicyType val: :rtype: EventType """ - return cls('shared_folder_change_members_management_policy', val) + return cls("shared_folder_change_members_management_policy", val) @classmethod def shared_folder_change_members_policy(cls, val): @@ -36257,7 +37282,7 @@ def shared_folder_change_members_policy(cls, val): :param SharedFolderChangeMembersPolicyType val: :rtype: EventType """ - return cls('shared_folder_change_members_policy', val) + return cls("shared_folder_change_members_policy", val) @classmethod def shared_folder_create(cls, val): @@ -36268,7 +37293,7 @@ def shared_folder_create(cls, val): :param SharedFolderCreateType val: :rtype: EventType """ - return cls('shared_folder_create', val) + return cls("shared_folder_create", val) @classmethod def shared_folder_decline_invitation(cls, val): @@ -36279,7 +37304,7 @@ def shared_folder_decline_invitation(cls, val): :param SharedFolderDeclineInvitationType val: :rtype: EventType """ - return cls('shared_folder_decline_invitation', val) + return cls("shared_folder_decline_invitation", val) @classmethod def shared_folder_mount(cls, val): @@ -36290,7 +37315,7 @@ def shared_folder_mount(cls, val): :param SharedFolderMountType val: :rtype: EventType """ - return cls('shared_folder_mount', val) + return cls("shared_folder_mount", val) @classmethod def shared_folder_nest(cls, val): @@ -36301,7 +37326,7 @@ def shared_folder_nest(cls, val): :param SharedFolderNestType val: :rtype: EventType """ - return cls('shared_folder_nest', val) + return cls("shared_folder_nest", val) @classmethod def shared_folder_transfer_ownership(cls, val): @@ -36312,7 +37337,7 @@ def shared_folder_transfer_ownership(cls, val): :param SharedFolderTransferOwnershipType val: :rtype: EventType """ - return cls('shared_folder_transfer_ownership', val) + return cls("shared_folder_transfer_ownership", val) @classmethod def shared_folder_unmount(cls, val): @@ -36323,7 +37348,7 @@ def shared_folder_unmount(cls, val): :param SharedFolderUnmountType val: :rtype: EventType """ - return cls('shared_folder_unmount', val) + return cls("shared_folder_unmount", val) @classmethod def shared_link_add_expiry(cls, val): @@ -36334,7 +37359,7 @@ def shared_link_add_expiry(cls, val): :param SharedLinkAddExpiryType val: :rtype: EventType """ - return cls('shared_link_add_expiry', val) + return cls("shared_link_add_expiry", val) @classmethod def shared_link_change_expiry(cls, val): @@ -36345,7 +37370,7 @@ def shared_link_change_expiry(cls, val): :param SharedLinkChangeExpiryType val: :rtype: EventType """ - return cls('shared_link_change_expiry', val) + return cls("shared_link_change_expiry", val) @classmethod def shared_link_change_visibility(cls, val): @@ -36356,7 +37381,7 @@ def shared_link_change_visibility(cls, val): :param SharedLinkChangeVisibilityType val: :rtype: EventType """ - return cls('shared_link_change_visibility', val) + return cls("shared_link_change_visibility", val) @classmethod def shared_link_copy(cls, val): @@ -36367,7 +37392,7 @@ def shared_link_copy(cls, val): :param SharedLinkCopyType val: :rtype: EventType """ - return cls('shared_link_copy', val) + return cls("shared_link_copy", val) @classmethod def shared_link_create(cls, val): @@ -36378,7 +37403,7 @@ def shared_link_create(cls, val): :param SharedLinkCreateType val: :rtype: EventType """ - return cls('shared_link_create', val) + return cls("shared_link_create", val) @classmethod def shared_link_disable(cls, val): @@ -36389,7 +37414,7 @@ def shared_link_disable(cls, val): :param SharedLinkDisableType val: :rtype: EventType """ - return cls('shared_link_disable', val) + return cls("shared_link_disable", val) @classmethod def shared_link_download(cls, val): @@ -36400,7 +37425,7 @@ def shared_link_download(cls, val): :param SharedLinkDownloadType val: :rtype: EventType """ - return cls('shared_link_download', val) + return cls("shared_link_download", val) @classmethod def shared_link_remove_expiry(cls, val): @@ -36411,7 +37436,7 @@ def shared_link_remove_expiry(cls, val): :param SharedLinkRemoveExpiryType val: :rtype: EventType """ - return cls('shared_link_remove_expiry', val) + return cls("shared_link_remove_expiry", val) @classmethod def shared_link_remove_visitor(cls, val): @@ -36422,7 +37447,7 @@ def shared_link_remove_visitor(cls, val): :param SharedLinkRemoveVisitorType val: :rtype: EventType """ - return cls('shared_link_remove_visitor', val) + return cls("shared_link_remove_visitor", val) @classmethod def shared_link_settings_add_expiration(cls, val): @@ -36433,7 +37458,7 @@ def shared_link_settings_add_expiration(cls, val): :param SharedLinkSettingsAddExpirationType val: :rtype: EventType """ - return cls('shared_link_settings_add_expiration', val) + return cls("shared_link_settings_add_expiration", val) @classmethod def shared_link_settings_add_password(cls, val): @@ -36444,7 +37469,7 @@ def shared_link_settings_add_password(cls, val): :param SharedLinkSettingsAddPasswordType val: :rtype: EventType """ - return cls('shared_link_settings_add_password', val) + return cls("shared_link_settings_add_password", val) @classmethod def shared_link_settings_allow_download_disabled(cls, val): @@ -36455,7 +37480,7 @@ def shared_link_settings_allow_download_disabled(cls, val): :param SharedLinkSettingsAllowDownloadDisabledType val: :rtype: EventType """ - return cls('shared_link_settings_allow_download_disabled', val) + return cls("shared_link_settings_allow_download_disabled", val) @classmethod def shared_link_settings_allow_download_enabled(cls, val): @@ -36466,7 +37491,7 @@ def shared_link_settings_allow_download_enabled(cls, val): :param SharedLinkSettingsAllowDownloadEnabledType val: :rtype: EventType """ - return cls('shared_link_settings_allow_download_enabled', val) + return cls("shared_link_settings_allow_download_enabled", val) @classmethod def shared_link_settings_change_audience(cls, val): @@ -36477,7 +37502,7 @@ def shared_link_settings_change_audience(cls, val): :param SharedLinkSettingsChangeAudienceType val: :rtype: EventType """ - return cls('shared_link_settings_change_audience', val) + return cls("shared_link_settings_change_audience", val) @classmethod def shared_link_settings_change_expiration(cls, val): @@ -36488,7 +37513,7 @@ def shared_link_settings_change_expiration(cls, val): :param SharedLinkSettingsChangeExpirationType val: :rtype: EventType """ - return cls('shared_link_settings_change_expiration', val) + return cls("shared_link_settings_change_expiration", val) @classmethod def shared_link_settings_change_password(cls, val): @@ -36499,7 +37524,7 @@ def shared_link_settings_change_password(cls, val): :param SharedLinkSettingsChangePasswordType val: :rtype: EventType """ - return cls('shared_link_settings_change_password', val) + return cls("shared_link_settings_change_password", val) @classmethod def shared_link_settings_remove_expiration(cls, val): @@ -36510,7 +37535,7 @@ def shared_link_settings_remove_expiration(cls, val): :param SharedLinkSettingsRemoveExpirationType val: :rtype: EventType """ - return cls('shared_link_settings_remove_expiration', val) + return cls("shared_link_settings_remove_expiration", val) @classmethod def shared_link_settings_remove_password(cls, val): @@ -36521,7 +37546,7 @@ def shared_link_settings_remove_password(cls, val): :param SharedLinkSettingsRemovePasswordType val: :rtype: EventType """ - return cls('shared_link_settings_remove_password', val) + return cls("shared_link_settings_remove_password", val) @classmethod def shared_link_share(cls, val): @@ -36532,7 +37557,7 @@ def shared_link_share(cls, val): :param SharedLinkShareType val: :rtype: EventType """ - return cls('shared_link_share', val) + return cls("shared_link_share", val) @classmethod def shared_link_view(cls, val): @@ -36543,7 +37568,7 @@ def shared_link_view(cls, val): :param SharedLinkViewType val: :rtype: EventType """ - return cls('shared_link_view', val) + return cls("shared_link_view", val) @classmethod def shared_note_opened(cls, val): @@ -36554,7 +37579,7 @@ def shared_note_opened(cls, val): :param SharedNoteOpenedType val: :rtype: EventType """ - return cls('shared_note_opened', val) + return cls("shared_note_opened", val) @classmethod def shmodel_disable_downloads(cls, val): @@ -36565,7 +37590,7 @@ def shmodel_disable_downloads(cls, val): :param ShmodelDisableDownloadsType val: :rtype: EventType """ - return cls('shmodel_disable_downloads', val) + return cls("shmodel_disable_downloads", val) @classmethod def shmodel_enable_downloads(cls, val): @@ -36576,7 +37601,7 @@ def shmodel_enable_downloads(cls, val): :param ShmodelEnableDownloadsType val: :rtype: EventType """ - return cls('shmodel_enable_downloads', val) + return cls("shmodel_enable_downloads", val) @classmethod def shmodel_group_share(cls, val): @@ -36587,7 +37612,7 @@ def shmodel_group_share(cls, val): :param ShmodelGroupShareType val: :rtype: EventType """ - return cls('shmodel_group_share', val) + return cls("shmodel_group_share", val) @classmethod def showcase_access_granted(cls, val): @@ -36598,7 +37623,7 @@ def showcase_access_granted(cls, val): :param ShowcaseAccessGrantedType val: :rtype: EventType """ - return cls('showcase_access_granted', val) + return cls("showcase_access_granted", val) @classmethod def showcase_add_member(cls, val): @@ -36609,7 +37634,7 @@ def showcase_add_member(cls, val): :param ShowcaseAddMemberType val: :rtype: EventType """ - return cls('showcase_add_member', val) + return cls("showcase_add_member", val) @classmethod def showcase_archived(cls, val): @@ -36620,7 +37645,7 @@ def showcase_archived(cls, val): :param ShowcaseArchivedType val: :rtype: EventType """ - return cls('showcase_archived', val) + return cls("showcase_archived", val) @classmethod def showcase_created(cls, val): @@ -36631,7 +37656,7 @@ def showcase_created(cls, val): :param ShowcaseCreatedType val: :rtype: EventType """ - return cls('showcase_created', val) + return cls("showcase_created", val) @classmethod def showcase_delete_comment(cls, val): @@ -36642,7 +37667,7 @@ def showcase_delete_comment(cls, val): :param ShowcaseDeleteCommentType val: :rtype: EventType """ - return cls('showcase_delete_comment', val) + return cls("showcase_delete_comment", val) @classmethod def showcase_edited(cls, val): @@ -36653,7 +37678,7 @@ def showcase_edited(cls, val): :param ShowcaseEditedType val: :rtype: EventType """ - return cls('showcase_edited', val) + return cls("showcase_edited", val) @classmethod def showcase_edit_comment(cls, val): @@ -36664,7 +37689,7 @@ def showcase_edit_comment(cls, val): :param ShowcaseEditCommentType val: :rtype: EventType """ - return cls('showcase_edit_comment', val) + return cls("showcase_edit_comment", val) @classmethod def showcase_file_added(cls, val): @@ -36675,7 +37700,7 @@ def showcase_file_added(cls, val): :param ShowcaseFileAddedType val: :rtype: EventType """ - return cls('showcase_file_added', val) + return cls("showcase_file_added", val) @classmethod def showcase_file_download(cls, val): @@ -36686,7 +37711,7 @@ def showcase_file_download(cls, val): :param ShowcaseFileDownloadType val: :rtype: EventType """ - return cls('showcase_file_download', val) + return cls("showcase_file_download", val) @classmethod def showcase_file_removed(cls, val): @@ -36697,7 +37722,7 @@ def showcase_file_removed(cls, val): :param ShowcaseFileRemovedType val: :rtype: EventType """ - return cls('showcase_file_removed', val) + return cls("showcase_file_removed", val) @classmethod def showcase_file_view(cls, val): @@ -36708,7 +37733,7 @@ def showcase_file_view(cls, val): :param ShowcaseFileViewType val: :rtype: EventType """ - return cls('showcase_file_view', val) + return cls("showcase_file_view", val) @classmethod def showcase_permanently_deleted(cls, val): @@ -36719,7 +37744,7 @@ def showcase_permanently_deleted(cls, val): :param ShowcasePermanentlyDeletedType val: :rtype: EventType """ - return cls('showcase_permanently_deleted', val) + return cls("showcase_permanently_deleted", val) @classmethod def showcase_post_comment(cls, val): @@ -36730,7 +37755,7 @@ def showcase_post_comment(cls, val): :param ShowcasePostCommentType val: :rtype: EventType """ - return cls('showcase_post_comment', val) + return cls("showcase_post_comment", val) @classmethod def showcase_remove_member(cls, val): @@ -36741,7 +37766,7 @@ def showcase_remove_member(cls, val): :param ShowcaseRemoveMemberType val: :rtype: EventType """ - return cls('showcase_remove_member', val) + return cls("showcase_remove_member", val) @classmethod def showcase_renamed(cls, val): @@ -36752,7 +37777,7 @@ def showcase_renamed(cls, val): :param ShowcaseRenamedType val: :rtype: EventType """ - return cls('showcase_renamed', val) + return cls("showcase_renamed", val) @classmethod def showcase_request_access(cls, val): @@ -36763,7 +37788,7 @@ def showcase_request_access(cls, val): :param ShowcaseRequestAccessType val: :rtype: EventType """ - return cls('showcase_request_access', val) + return cls("showcase_request_access", val) @classmethod def showcase_resolve_comment(cls, val): @@ -36774,7 +37799,7 @@ def showcase_resolve_comment(cls, val): :param ShowcaseResolveCommentType val: :rtype: EventType """ - return cls('showcase_resolve_comment', val) + return cls("showcase_resolve_comment", val) @classmethod def showcase_restored(cls, val): @@ -36785,7 +37810,7 @@ def showcase_restored(cls, val): :param ShowcaseRestoredType val: :rtype: EventType """ - return cls('showcase_restored', val) + return cls("showcase_restored", val) @classmethod def showcase_trashed(cls, val): @@ -36796,7 +37821,7 @@ def showcase_trashed(cls, val): :param ShowcaseTrashedType val: :rtype: EventType """ - return cls('showcase_trashed', val) + return cls("showcase_trashed", val) @classmethod def showcase_trashed_deprecated(cls, val): @@ -36807,7 +37832,7 @@ def showcase_trashed_deprecated(cls, val): :param ShowcaseTrashedDeprecatedType val: :rtype: EventType """ - return cls('showcase_trashed_deprecated', val) + return cls("showcase_trashed_deprecated", val) @classmethod def showcase_unresolve_comment(cls, val): @@ -36818,7 +37843,7 @@ def showcase_unresolve_comment(cls, val): :param ShowcaseUnresolveCommentType val: :rtype: EventType """ - return cls('showcase_unresolve_comment', val) + return cls("showcase_unresolve_comment", val) @classmethod def showcase_untrashed(cls, val): @@ -36829,7 +37854,7 @@ def showcase_untrashed(cls, val): :param ShowcaseUntrashedType val: :rtype: EventType """ - return cls('showcase_untrashed', val) + return cls("showcase_untrashed", val) @classmethod def showcase_untrashed_deprecated(cls, val): @@ -36840,7 +37865,7 @@ def showcase_untrashed_deprecated(cls, val): :param ShowcaseUntrashedDeprecatedType val: :rtype: EventType """ - return cls('showcase_untrashed_deprecated', val) + return cls("showcase_untrashed_deprecated", val) @classmethod def showcase_view(cls, val): @@ -36851,7 +37876,7 @@ def showcase_view(cls, val): :param ShowcaseViewType val: :rtype: EventType """ - return cls('showcase_view', val) + return cls("showcase_view", val) @classmethod def sign_signature_request_canceled(cls, val): @@ -36862,7 +37887,7 @@ def sign_signature_request_canceled(cls, val): :param SignSignatureRequestCanceledType val: :rtype: EventType """ - return cls('sign_signature_request_canceled', val) + return cls("sign_signature_request_canceled", val) @classmethod def sign_signature_request_completed(cls, val): @@ -36873,7 +37898,7 @@ def sign_signature_request_completed(cls, val): :param SignSignatureRequestCompletedType val: :rtype: EventType """ - return cls('sign_signature_request_completed', val) + return cls("sign_signature_request_completed", val) @classmethod def sign_signature_request_declined(cls, val): @@ -36884,7 +37909,7 @@ def sign_signature_request_declined(cls, val): :param SignSignatureRequestDeclinedType val: :rtype: EventType """ - return cls('sign_signature_request_declined', val) + return cls("sign_signature_request_declined", val) @classmethod def sign_signature_request_opened(cls, val): @@ -36895,7 +37920,7 @@ def sign_signature_request_opened(cls, val): :param SignSignatureRequestOpenedType val: :rtype: EventType """ - return cls('sign_signature_request_opened', val) + return cls("sign_signature_request_opened", val) @classmethod def sign_signature_request_reminder_sent(cls, val): @@ -36906,7 +37931,7 @@ def sign_signature_request_reminder_sent(cls, val): :param SignSignatureRequestReminderSentType val: :rtype: EventType """ - return cls('sign_signature_request_reminder_sent', val) + return cls("sign_signature_request_reminder_sent", val) @classmethod def sign_signature_request_sent(cls, val): @@ -36917,7 +37942,7 @@ def sign_signature_request_sent(cls, val): :param SignSignatureRequestSentType val: :rtype: EventType """ - return cls('sign_signature_request_sent', val) + return cls("sign_signature_request_sent", val) @classmethod def sign_template_created(cls, val): @@ -36928,7 +37953,7 @@ def sign_template_created(cls, val): :param SignTemplateCreatedType val: :rtype: EventType """ - return cls('sign_template_created', val) + return cls("sign_template_created", val) @classmethod def sign_template_shared(cls, val): @@ -36939,7 +37964,7 @@ def sign_template_shared(cls, val): :param SignTemplateSharedType val: :rtype: EventType """ - return cls('sign_template_shared', val) + return cls("sign_template_shared", val) @classmethod def risc_security_event(cls, val): @@ -36950,7 +37975,7 @@ def risc_security_event(cls, val): :param RiscSecurityEventType val: :rtype: EventType """ - return cls('risc_security_event', val) + return cls("risc_security_event", val) @classmethod def sso_add_cert(cls, val): @@ -36961,7 +37986,7 @@ def sso_add_cert(cls, val): :param SsoAddCertType val: :rtype: EventType """ - return cls('sso_add_cert', val) + return cls("sso_add_cert", val) @classmethod def sso_add_login_url(cls, val): @@ -36972,7 +37997,7 @@ def sso_add_login_url(cls, val): :param SsoAddLoginUrlType val: :rtype: EventType """ - return cls('sso_add_login_url', val) + return cls("sso_add_login_url", val) @classmethod def sso_add_logout_url(cls, val): @@ -36983,7 +38008,7 @@ def sso_add_logout_url(cls, val): :param SsoAddLogoutUrlType val: :rtype: EventType """ - return cls('sso_add_logout_url', val) + return cls("sso_add_logout_url", val) @classmethod def sso_change_cert(cls, val): @@ -36994,7 +38019,7 @@ def sso_change_cert(cls, val): :param SsoChangeCertType val: :rtype: EventType """ - return cls('sso_change_cert', val) + return cls("sso_change_cert", val) @classmethod def sso_change_login_url(cls, val): @@ -37005,7 +38030,7 @@ def sso_change_login_url(cls, val): :param SsoChangeLoginUrlType val: :rtype: EventType """ - return cls('sso_change_login_url', val) + return cls("sso_change_login_url", val) @classmethod def sso_change_logout_url(cls, val): @@ -37016,7 +38041,7 @@ def sso_change_logout_url(cls, val): :param SsoChangeLogoutUrlType val: :rtype: EventType """ - return cls('sso_change_logout_url', val) + return cls("sso_change_logout_url", val) @classmethod def sso_change_saml_identity_mode(cls, val): @@ -37027,7 +38052,7 @@ def sso_change_saml_identity_mode(cls, val): :param SsoChangeSamlIdentityModeType val: :rtype: EventType """ - return cls('sso_change_saml_identity_mode', val) + return cls("sso_change_saml_identity_mode", val) @classmethod def sso_remove_cert(cls, val): @@ -37038,7 +38063,7 @@ def sso_remove_cert(cls, val): :param SsoRemoveCertType val: :rtype: EventType """ - return cls('sso_remove_cert', val) + return cls("sso_remove_cert", val) @classmethod def sso_remove_login_url(cls, val): @@ -37049,7 +38074,7 @@ def sso_remove_login_url(cls, val): :param SsoRemoveLoginUrlType val: :rtype: EventType """ - return cls('sso_remove_login_url', val) + return cls("sso_remove_login_url", val) @classmethod def sso_remove_logout_url(cls, val): @@ -37060,7 +38085,7 @@ def sso_remove_logout_url(cls, val): :param SsoRemoveLogoutUrlType val: :rtype: EventType """ - return cls('sso_remove_logout_url', val) + return cls("sso_remove_logout_url", val) @classmethod def team_folder_change_status(cls, val): @@ -37071,7 +38096,7 @@ def team_folder_change_status(cls, val): :param TeamFolderChangeStatusType val: :rtype: EventType """ - return cls('team_folder_change_status', val) + return cls("team_folder_change_status", val) @classmethod def team_folder_create(cls, val): @@ -37082,7 +38107,7 @@ def team_folder_create(cls, val): :param TeamFolderCreateType val: :rtype: EventType """ - return cls('team_folder_create', val) + return cls("team_folder_create", val) @classmethod def team_folder_downgrade(cls, val): @@ -37093,7 +38118,7 @@ def team_folder_downgrade(cls, val): :param TeamFolderDowngradeType val: :rtype: EventType """ - return cls('team_folder_downgrade', val) + return cls("team_folder_downgrade", val) @classmethod def team_folder_permanently_delete(cls, val): @@ -37104,7 +38129,7 @@ def team_folder_permanently_delete(cls, val): :param TeamFolderPermanentlyDeleteType val: :rtype: EventType """ - return cls('team_folder_permanently_delete', val) + return cls("team_folder_permanently_delete", val) @classmethod def team_folder_rename(cls, val): @@ -37115,7 +38140,7 @@ def team_folder_rename(cls, val): :param TeamFolderRenameType val: :rtype: EventType """ - return cls('team_folder_rename', val) + return cls("team_folder_rename", val) @classmethod def team_folder_space_limits_change_caps_type(cls, val): @@ -37126,7 +38151,7 @@ def team_folder_space_limits_change_caps_type(cls, val): :param TeamFolderSpaceLimitsChangeCapsTypeType val: :rtype: EventType """ - return cls('team_folder_space_limits_change_caps_type', val) + return cls("team_folder_space_limits_change_caps_type", val) @classmethod def team_folder_space_limits_change_limit(cls, val): @@ -37137,7 +38162,7 @@ def team_folder_space_limits_change_limit(cls, val): :param TeamFolderSpaceLimitsChangeLimitType val: :rtype: EventType """ - return cls('team_folder_space_limits_change_limit', val) + return cls("team_folder_space_limits_change_limit", val) @classmethod def team_folder_space_limits_change_notification_target(cls, val): @@ -37149,7 +38174,7 @@ def team_folder_space_limits_change_notification_target(cls, val): :param TeamFolderSpaceLimitsChangeNotificationTargetType val: :rtype: EventType """ - return cls('team_folder_space_limits_change_notification_target', val) + return cls("team_folder_space_limits_change_notification_target", val) @classmethod def team_selective_sync_settings_changed(cls, val): @@ -37160,7 +38185,7 @@ def team_selective_sync_settings_changed(cls, val): :param TeamSelectiveSyncSettingsChangedType val: :rtype: EventType """ - return cls('team_selective_sync_settings_changed', val) + return cls("team_selective_sync_settings_changed", val) @classmethod def account_capture_change_policy(cls, val): @@ -37171,7 +38196,7 @@ def account_capture_change_policy(cls, val): :param AccountCaptureChangePolicyType val: :rtype: EventType """ - return cls('account_capture_change_policy', val) + return cls("account_capture_change_policy", val) @classmethod def admin_email_reminders_changed(cls, val): @@ -37182,7 +38207,7 @@ def admin_email_reminders_changed(cls, val): :param AdminEmailRemindersChangedType val: :rtype: EventType """ - return cls('admin_email_reminders_changed', val) + return cls("admin_email_reminders_changed", val) @classmethod def ai_third_party_sharing_dropbox_base_policy_changed(cls, val): @@ -37194,7 +38219,7 @@ def ai_third_party_sharing_dropbox_base_policy_changed(cls, val): :param AiThirdPartySharingDropboxBasePolicyChangedType val: :rtype: EventType """ - return cls('ai_third_party_sharing_dropbox_base_policy_changed', val) + return cls("ai_third_party_sharing_dropbox_base_policy_changed", val) @classmethod def allow_download_disabled(cls, val): @@ -37205,7 +38230,7 @@ def allow_download_disabled(cls, val): :param AllowDownloadDisabledType val: :rtype: EventType """ - return cls('allow_download_disabled', val) + return cls("allow_download_disabled", val) @classmethod def allow_download_enabled(cls, val): @@ -37216,7 +38241,7 @@ def allow_download_enabled(cls, val): :param AllowDownloadEnabledType val: :rtype: EventType """ - return cls('allow_download_enabled', val) + return cls("allow_download_enabled", val) @classmethod def apple_login_change_policy(cls, val): @@ -37227,7 +38252,7 @@ def apple_login_change_policy(cls, val): :param AppleLoginChangePolicyType val: :rtype: EventType """ - return cls('apple_login_change_policy', val) + return cls("apple_login_change_policy", val) @classmethod def app_permissions_changed(cls, val): @@ -37238,7 +38263,7 @@ def app_permissions_changed(cls, val): :param AppPermissionsChangedType val: :rtype: EventType """ - return cls('app_permissions_changed', val) + return cls("app_permissions_changed", val) @classmethod def camera_uploads_policy_changed(cls, val): @@ -37249,7 +38274,7 @@ def camera_uploads_policy_changed(cls, val): :param CameraUploadsPolicyChangedType val: :rtype: EventType """ - return cls('camera_uploads_policy_changed', val) + return cls("camera_uploads_policy_changed", val) @classmethod def capture_team_space_policy_changed(cls, val): @@ -37260,7 +38285,7 @@ def capture_team_space_policy_changed(cls, val): :param CaptureTeamSpacePolicyChangedType val: :rtype: EventType """ - return cls('capture_team_space_policy_changed', val) + return cls("capture_team_space_policy_changed", val) @classmethod def capture_transcript_policy_changed(cls, val): @@ -37271,7 +38296,7 @@ def capture_transcript_policy_changed(cls, val): :param CaptureTranscriptPolicyChangedType val: :rtype: EventType """ - return cls('capture_transcript_policy_changed', val) + return cls("capture_transcript_policy_changed", val) @classmethod def classification_change_policy(cls, val): @@ -37282,7 +38307,7 @@ def classification_change_policy(cls, val): :param ClassificationChangePolicyType val: :rtype: EventType """ - return cls('classification_change_policy', val) + return cls("classification_change_policy", val) @classmethod def computer_backup_policy_changed(cls, val): @@ -37293,7 +38318,7 @@ def computer_backup_policy_changed(cls, val): :param ComputerBackupPolicyChangedType val: :rtype: EventType """ - return cls('computer_backup_policy_changed', val) + return cls("computer_backup_policy_changed", val) @classmethod def content_administration_policy_changed(cls, val): @@ -37304,7 +38329,7 @@ def content_administration_policy_changed(cls, val): :param ContentAdministrationPolicyChangedType val: :rtype: EventType """ - return cls('content_administration_policy_changed', val) + return cls("content_administration_policy_changed", val) @classmethod def content_deletion_protection_change_policy(cls, val): @@ -37315,7 +38340,7 @@ def content_deletion_protection_change_policy(cls, val): :param ContentDeletionProtectionChangePolicyType val: :rtype: EventType """ - return cls('content_deletion_protection_change_policy', val) + return cls("content_deletion_protection_change_policy", val) @classmethod def dash_external_sharing_policy_changed(cls, val): @@ -37326,7 +38351,7 @@ def dash_external_sharing_policy_changed(cls, val): :param DashExternalSharingPolicyChangedType val: :rtype: EventType """ - return cls('dash_external_sharing_policy_changed', val) + return cls("dash_external_sharing_policy_changed", val) @classmethod def data_placement_restriction_change_policy(cls, val): @@ -37337,7 +38362,7 @@ def data_placement_restriction_change_policy(cls, val): :param DataPlacementRestrictionChangePolicyType val: :rtype: EventType """ - return cls('data_placement_restriction_change_policy', val) + return cls("data_placement_restriction_change_policy", val) @classmethod def data_placement_restriction_satisfy_policy(cls, val): @@ -37348,7 +38373,7 @@ def data_placement_restriction_satisfy_policy(cls, val): :param DataPlacementRestrictionSatisfyPolicyType val: :rtype: EventType """ - return cls('data_placement_restriction_satisfy_policy', val) + return cls("data_placement_restriction_satisfy_policy", val) @classmethod def device_approvals_add_exception(cls, val): @@ -37359,7 +38384,7 @@ def device_approvals_add_exception(cls, val): :param DeviceApprovalsAddExceptionType val: :rtype: EventType """ - return cls('device_approvals_add_exception', val) + return cls("device_approvals_add_exception", val) @classmethod def device_approvals_change_desktop_policy(cls, val): @@ -37370,7 +38395,7 @@ def device_approvals_change_desktop_policy(cls, val): :param DeviceApprovalsChangeDesktopPolicyType val: :rtype: EventType """ - return cls('device_approvals_change_desktop_policy', val) + return cls("device_approvals_change_desktop_policy", val) @classmethod def device_approvals_change_mobile_policy(cls, val): @@ -37381,7 +38406,7 @@ def device_approvals_change_mobile_policy(cls, val): :param DeviceApprovalsChangeMobilePolicyType val: :rtype: EventType """ - return cls('device_approvals_change_mobile_policy', val) + return cls("device_approvals_change_mobile_policy", val) @classmethod def device_approvals_change_overage_action(cls, val): @@ -37392,7 +38417,7 @@ def device_approvals_change_overage_action(cls, val): :param DeviceApprovalsChangeOverageActionType val: :rtype: EventType """ - return cls('device_approvals_change_overage_action', val) + return cls("device_approvals_change_overage_action", val) @classmethod def device_approvals_change_unlink_action(cls, val): @@ -37403,7 +38428,7 @@ def device_approvals_change_unlink_action(cls, val): :param DeviceApprovalsChangeUnlinkActionType val: :rtype: EventType """ - return cls('device_approvals_change_unlink_action', val) + return cls("device_approvals_change_unlink_action", val) @classmethod def device_approvals_remove_exception(cls, val): @@ -37414,7 +38439,7 @@ def device_approvals_remove_exception(cls, val): :param DeviceApprovalsRemoveExceptionType val: :rtype: EventType """ - return cls('device_approvals_remove_exception', val) + return cls("device_approvals_remove_exception", val) @classmethod def directory_restrictions_add_members(cls, val): @@ -37425,7 +38450,7 @@ def directory_restrictions_add_members(cls, val): :param DirectoryRestrictionsAddMembersType val: :rtype: EventType """ - return cls('directory_restrictions_add_members', val) + return cls("directory_restrictions_add_members", val) @classmethod def directory_restrictions_remove_members(cls, val): @@ -37436,7 +38461,7 @@ def directory_restrictions_remove_members(cls, val): :param DirectoryRestrictionsRemoveMembersType val: :rtype: EventType """ - return cls('directory_restrictions_remove_members', val) + return cls("directory_restrictions_remove_members", val) @classmethod def dropbox_passwords_policy_changed(cls, val): @@ -37447,7 +38472,7 @@ def dropbox_passwords_policy_changed(cls, val): :param DropboxPasswordsPolicyChangedType val: :rtype: EventType """ - return cls('dropbox_passwords_policy_changed', val) + return cls("dropbox_passwords_policy_changed", val) @classmethod def email_ingest_policy_changed(cls, val): @@ -37458,7 +38483,7 @@ def email_ingest_policy_changed(cls, val): :param EmailIngestPolicyChangedType val: :rtype: EventType """ - return cls('email_ingest_policy_changed', val) + return cls("email_ingest_policy_changed", val) @classmethod def emm_add_exception(cls, val): @@ -37469,7 +38494,7 @@ def emm_add_exception(cls, val): :param EmmAddExceptionType val: :rtype: EventType """ - return cls('emm_add_exception', val) + return cls("emm_add_exception", val) @classmethod def emm_change_policy(cls, val): @@ -37480,7 +38505,7 @@ def emm_change_policy(cls, val): :param EmmChangePolicyType val: :rtype: EventType """ - return cls('emm_change_policy', val) + return cls("emm_change_policy", val) @classmethod def emm_remove_exception(cls, val): @@ -37491,7 +38516,7 @@ def emm_remove_exception(cls, val): :param EmmRemoveExceptionType val: :rtype: EventType """ - return cls('emm_remove_exception', val) + return cls("emm_remove_exception", val) @classmethod def extended_version_history_change_policy(cls, val): @@ -37502,7 +38527,7 @@ def extended_version_history_change_policy(cls, val): :param ExtendedVersionHistoryChangePolicyType val: :rtype: EventType """ - return cls('extended_version_history_change_policy', val) + return cls("extended_version_history_change_policy", val) @classmethod def external_drive_backup_policy_changed(cls, val): @@ -37513,7 +38538,7 @@ def external_drive_backup_policy_changed(cls, val): :param ExternalDriveBackupPolicyChangedType val: :rtype: EventType """ - return cls('external_drive_backup_policy_changed', val) + return cls("external_drive_backup_policy_changed", val) @classmethod def file_comments_change_policy(cls, val): @@ -37524,7 +38549,7 @@ def file_comments_change_policy(cls, val): :param FileCommentsChangePolicyType val: :rtype: EventType """ - return cls('file_comments_change_policy', val) + return cls("file_comments_change_policy", val) @classmethod def file_locking_policy_changed(cls, val): @@ -37535,7 +38560,7 @@ def file_locking_policy_changed(cls, val): :param FileLockingPolicyChangedType val: :rtype: EventType """ - return cls('file_locking_policy_changed', val) + return cls("file_locking_policy_changed", val) @classmethod def file_provider_migration_policy_changed(cls, val): @@ -37546,7 +38571,7 @@ def file_provider_migration_policy_changed(cls, val): :param FileProviderMigrationPolicyChangedType val: :rtype: EventType """ - return cls('file_provider_migration_policy_changed', val) + return cls("file_provider_migration_policy_changed", val) @classmethod def file_requests_change_policy(cls, val): @@ -37557,7 +38582,7 @@ def file_requests_change_policy(cls, val): :param FileRequestsChangePolicyType val: :rtype: EventType """ - return cls('file_requests_change_policy', val) + return cls("file_requests_change_policy", val) @classmethod def file_requests_emails_enabled(cls, val): @@ -37568,7 +38593,7 @@ def file_requests_emails_enabled(cls, val): :param FileRequestsEmailsEnabledType val: :rtype: EventType """ - return cls('file_requests_emails_enabled', val) + return cls("file_requests_emails_enabled", val) @classmethod def file_requests_emails_restricted_to_team_only(cls, val): @@ -37579,7 +38604,7 @@ def file_requests_emails_restricted_to_team_only(cls, val): :param FileRequestsEmailsRestrictedToTeamOnlyType val: :rtype: EventType """ - return cls('file_requests_emails_restricted_to_team_only', val) + return cls("file_requests_emails_restricted_to_team_only", val) @classmethod def file_transfers_policy_changed(cls, val): @@ -37590,7 +38615,7 @@ def file_transfers_policy_changed(cls, val): :param FileTransfersPolicyChangedType val: :rtype: EventType """ - return cls('file_transfers_policy_changed', val) + return cls("file_transfers_policy_changed", val) @classmethod def flexible_file_names_policy_changed(cls, val): @@ -37601,7 +38626,7 @@ def flexible_file_names_policy_changed(cls, val): :param FlexibleFileNamesPolicyChangedType val: :rtype: EventType """ - return cls('flexible_file_names_policy_changed', val) + return cls("flexible_file_names_policy_changed", val) @classmethod def folder_link_restriction_policy_changed(cls, val): @@ -37612,7 +38637,7 @@ def folder_link_restriction_policy_changed(cls, val): :param FolderLinkRestrictionPolicyChangedType val: :rtype: EventType """ - return cls('folder_link_restriction_policy_changed', val) + return cls("folder_link_restriction_policy_changed", val) @classmethod def google_sso_change_policy(cls, val): @@ -37623,7 +38648,7 @@ def google_sso_change_policy(cls, val): :param GoogleSsoChangePolicyType val: :rtype: EventType """ - return cls('google_sso_change_policy', val) + return cls("google_sso_change_policy", val) @classmethod def group_user_management_change_policy(cls, val): @@ -37634,7 +38659,7 @@ def group_user_management_change_policy(cls, val): :param GroupUserManagementChangePolicyType val: :rtype: EventType """ - return cls('group_user_management_change_policy', val) + return cls("group_user_management_change_policy", val) @classmethod def integration_policy_changed(cls, val): @@ -37645,7 +38670,7 @@ def integration_policy_changed(cls, val): :param IntegrationPolicyChangedType val: :rtype: EventType """ - return cls('integration_policy_changed', val) + return cls("integration_policy_changed", val) @classmethod def invite_acceptance_email_policy_changed(cls, val): @@ -37656,7 +38681,7 @@ def invite_acceptance_email_policy_changed(cls, val): :param InviteAcceptanceEmailPolicyChangedType val: :rtype: EventType """ - return cls('invite_acceptance_email_policy_changed', val) + return cls("invite_acceptance_email_policy_changed", val) @classmethod def media_hub_adding_people_policy_changed(cls, val): @@ -37667,7 +38692,7 @@ def media_hub_adding_people_policy_changed(cls, val): :param MediaHubAddingPeoplePolicyChangedType val: :rtype: EventType """ - return cls('media_hub_adding_people_policy_changed', val) + return cls("media_hub_adding_people_policy_changed", val) @classmethod def media_hub_download_policy_changed(cls, val): @@ -37678,7 +38703,7 @@ def media_hub_download_policy_changed(cls, val): :param MediaHubDownloadPolicyChangedType val: :rtype: EventType """ - return cls('media_hub_download_policy_changed', val) + return cls("media_hub_download_policy_changed", val) @classmethod def media_hub_link_sharing_policy_changed(cls, val): @@ -37689,7 +38714,7 @@ def media_hub_link_sharing_policy_changed(cls, val): :param MediaHubLinkSharingPolicyChangedType val: :rtype: EventType """ - return cls('media_hub_link_sharing_policy_changed', val) + return cls("media_hub_link_sharing_policy_changed", val) @classmethod def member_requests_change_policy(cls, val): @@ -37700,7 +38725,7 @@ def member_requests_change_policy(cls, val): :param MemberRequestsChangePolicyType val: :rtype: EventType """ - return cls('member_requests_change_policy', val) + return cls("member_requests_change_policy", val) @classmethod def member_send_invite_policy_changed(cls, val): @@ -37711,7 +38736,7 @@ def member_send_invite_policy_changed(cls, val): :param MemberSendInvitePolicyChangedType val: :rtype: EventType """ - return cls('member_send_invite_policy_changed', val) + return cls("member_send_invite_policy_changed", val) @classmethod def member_space_limits_add_exception(cls, val): @@ -37722,7 +38747,7 @@ def member_space_limits_add_exception(cls, val): :param MemberSpaceLimitsAddExceptionType val: :rtype: EventType """ - return cls('member_space_limits_add_exception', val) + return cls("member_space_limits_add_exception", val) @classmethod def member_space_limits_change_caps_type_policy(cls, val): @@ -37733,7 +38758,7 @@ def member_space_limits_change_caps_type_policy(cls, val): :param MemberSpaceLimitsChangeCapsTypePolicyType val: :rtype: EventType """ - return cls('member_space_limits_change_caps_type_policy', val) + return cls("member_space_limits_change_caps_type_policy", val) @classmethod def member_space_limits_change_policy(cls, val): @@ -37744,7 +38769,7 @@ def member_space_limits_change_policy(cls, val): :param MemberSpaceLimitsChangePolicyType val: :rtype: EventType """ - return cls('member_space_limits_change_policy', val) + return cls("member_space_limits_change_policy", val) @classmethod def member_space_limits_remove_exception(cls, val): @@ -37755,7 +38780,7 @@ def member_space_limits_remove_exception(cls, val): :param MemberSpaceLimitsRemoveExceptionType val: :rtype: EventType """ - return cls('member_space_limits_remove_exception', val) + return cls("member_space_limits_remove_exception", val) @classmethod def member_suggestions_change_policy(cls, val): @@ -37766,7 +38791,7 @@ def member_suggestions_change_policy(cls, val): :param MemberSuggestionsChangePolicyType val: :rtype: EventType """ - return cls('member_suggestions_change_policy', val) + return cls("member_suggestions_change_policy", val) @classmethod def microsoft_login_change_policy(cls, val): @@ -37777,7 +38802,7 @@ def microsoft_login_change_policy(cls, val): :param MicrosoftLoginChangePolicyType val: :rtype: EventType """ - return cls('microsoft_login_change_policy', val) + return cls("microsoft_login_change_policy", val) @classmethod def microsoft_office_addin_change_policy(cls, val): @@ -37788,7 +38813,7 @@ def microsoft_office_addin_change_policy(cls, val): :param MicrosoftOfficeAddinChangePolicyType val: :rtype: EventType """ - return cls('microsoft_office_addin_change_policy', val) + return cls("microsoft_office_addin_change_policy", val) @classmethod def multi_team_identity_policy_changed(cls, val): @@ -37799,7 +38824,7 @@ def multi_team_identity_policy_changed(cls, val): :param MultiTeamIdentityPolicyChangedType val: :rtype: EventType """ - return cls('multi_team_identity_policy_changed', val) + return cls("multi_team_identity_policy_changed", val) @classmethod def network_control_change_policy(cls, val): @@ -37810,7 +38835,7 @@ def network_control_change_policy(cls, val): :param NetworkControlChangePolicyType val: :rtype: EventType """ - return cls('network_control_change_policy', val) + return cls("network_control_change_policy", val) @classmethod def paper_change_deployment_policy(cls, val): @@ -37821,7 +38846,7 @@ def paper_change_deployment_policy(cls, val): :param PaperChangeDeploymentPolicyType val: :rtype: EventType """ - return cls('paper_change_deployment_policy', val) + return cls("paper_change_deployment_policy", val) @classmethod def paper_change_member_link_policy(cls, val): @@ -37832,7 +38857,7 @@ def paper_change_member_link_policy(cls, val): :param PaperChangeMemberLinkPolicyType val: :rtype: EventType """ - return cls('paper_change_member_link_policy', val) + return cls("paper_change_member_link_policy", val) @classmethod def paper_change_member_policy(cls, val): @@ -37843,7 +38868,7 @@ def paper_change_member_policy(cls, val): :param PaperChangeMemberPolicyType val: :rtype: EventType """ - return cls('paper_change_member_policy', val) + return cls("paper_change_member_policy", val) @classmethod def paper_change_policy(cls, val): @@ -37854,7 +38879,7 @@ def paper_change_policy(cls, val): :param PaperChangePolicyType val: :rtype: EventType """ - return cls('paper_change_policy', val) + return cls("paper_change_policy", val) @classmethod def paper_default_folder_policy_changed(cls, val): @@ -37865,7 +38890,7 @@ def paper_default_folder_policy_changed(cls, val): :param PaperDefaultFolderPolicyChangedType val: :rtype: EventType """ - return cls('paper_default_folder_policy_changed', val) + return cls("paper_default_folder_policy_changed", val) @classmethod def paper_desktop_policy_changed(cls, val): @@ -37876,7 +38901,7 @@ def paper_desktop_policy_changed(cls, val): :param PaperDesktopPolicyChangedType val: :rtype: EventType """ - return cls('paper_desktop_policy_changed', val) + return cls("paper_desktop_policy_changed", val) @classmethod def paper_enabled_users_group_addition(cls, val): @@ -37887,7 +38912,7 @@ def paper_enabled_users_group_addition(cls, val): :param PaperEnabledUsersGroupAdditionType val: :rtype: EventType """ - return cls('paper_enabled_users_group_addition', val) + return cls("paper_enabled_users_group_addition", val) @classmethod def paper_enabled_users_group_removal(cls, val): @@ -37898,7 +38923,7 @@ def paper_enabled_users_group_removal(cls, val): :param PaperEnabledUsersGroupRemovalType val: :rtype: EventType """ - return cls('paper_enabled_users_group_removal', val) + return cls("paper_enabled_users_group_removal", val) @classmethod def passkey_login_policy_changed(cls, val): @@ -37909,7 +38934,7 @@ def passkey_login_policy_changed(cls, val): :param PasskeyLoginPolicyChangedType val: :rtype: EventType """ - return cls('passkey_login_policy_changed', val) + return cls("passkey_login_policy_changed", val) @classmethod def password_strength_requirements_change_policy(cls, val): @@ -37920,7 +38945,7 @@ def password_strength_requirements_change_policy(cls, val): :param PasswordStrengthRequirementsChangePolicyType val: :rtype: EventType """ - return cls('password_strength_requirements_change_policy', val) + return cls("password_strength_requirements_change_policy", val) @classmethod def permanent_delete_change_policy(cls, val): @@ -37931,7 +38956,7 @@ def permanent_delete_change_policy(cls, val): :param PermanentDeleteChangePolicyType val: :rtype: EventType """ - return cls('permanent_delete_change_policy', val) + return cls("permanent_delete_change_policy", val) @classmethod def previews_ai_policy_changed(cls, val): @@ -37942,7 +38967,7 @@ def previews_ai_policy_changed(cls, val): :param PreviewsAiPolicyChangedType val: :rtype: EventType """ - return cls('previews_ai_policy_changed', val) + return cls("previews_ai_policy_changed", val) @classmethod def replay_adding_people_policy_changed(cls, val): @@ -37953,7 +38978,7 @@ def replay_adding_people_policy_changed(cls, val): :param ReplayAddingPeoplePolicyChangedType val: :rtype: EventType """ - return cls('replay_adding_people_policy_changed', val) + return cls("replay_adding_people_policy_changed", val) @classmethod def replay_sharing_policy_changed(cls, val): @@ -37964,7 +38989,7 @@ def replay_sharing_policy_changed(cls, val): :param ReplaySharingPolicyChangedType val: :rtype: EventType """ - return cls('replay_sharing_policy_changed', val) + return cls("replay_sharing_policy_changed", val) @classmethod def reseller_support_change_policy(cls, val): @@ -37975,7 +39000,7 @@ def reseller_support_change_policy(cls, val): :param ResellerSupportChangePolicyType val: :rtype: EventType """ - return cls('reseller_support_change_policy', val) + return cls("reseller_support_change_policy", val) @classmethod def rewind_policy_changed(cls, val): @@ -37986,7 +39011,7 @@ def rewind_policy_changed(cls, val): :param RewindPolicyChangedType val: :rtype: EventType """ - return cls('rewind_policy_changed', val) + return cls("rewind_policy_changed", val) @classmethod def send_and_track_policy_changed(cls, val): @@ -37997,7 +39022,7 @@ def send_and_track_policy_changed(cls, val): :param SendAndTrackPolicyChangedType val: :rtype: EventType """ - return cls('send_and_track_policy_changed', val) + return cls("send_and_track_policy_changed", val) @classmethod def send_external_sharing_policy_changed(cls, val): @@ -38008,7 +39033,7 @@ def send_external_sharing_policy_changed(cls, val): :param SendExternalSharingPolicyChangedType val: :rtype: EventType """ - return cls('send_external_sharing_policy_changed', val) + return cls("send_external_sharing_policy_changed", val) @classmethod def send_for_signature_policy_changed(cls, val): @@ -38019,7 +39044,7 @@ def send_for_signature_policy_changed(cls, val): :param SendForSignaturePolicyChangedType val: :rtype: EventType """ - return cls('send_for_signature_policy_changed', val) + return cls("send_for_signature_policy_changed", val) @classmethod def shared_link_default_permissions_policy_changed(cls, val): @@ -38031,7 +39056,7 @@ def shared_link_default_permissions_policy_changed(cls, val): :param SharedLinkDefaultPermissionsPolicyChangedType val: :rtype: EventType """ - return cls('shared_link_default_permissions_policy_changed', val) + return cls("shared_link_default_permissions_policy_changed", val) @classmethod def sharing_change_folder_join_policy(cls, val): @@ -38042,7 +39067,7 @@ def sharing_change_folder_join_policy(cls, val): :param SharingChangeFolderJoinPolicyType val: :rtype: EventType """ - return cls('sharing_change_folder_join_policy', val) + return cls("sharing_change_folder_join_policy", val) @classmethod def sharing_change_link_allow_change_expiration_policy(cls, val): @@ -38054,7 +39079,7 @@ def sharing_change_link_allow_change_expiration_policy(cls, val): :param SharingChangeLinkAllowChangeExpirationPolicyType val: :rtype: EventType """ - return cls('sharing_change_link_allow_change_expiration_policy', val) + return cls("sharing_change_link_allow_change_expiration_policy", val) @classmethod def sharing_change_link_default_expiration_policy(cls, val): @@ -38066,7 +39091,7 @@ def sharing_change_link_default_expiration_policy(cls, val): :param SharingChangeLinkDefaultExpirationPolicyType val: :rtype: EventType """ - return cls('sharing_change_link_default_expiration_policy', val) + return cls("sharing_change_link_default_expiration_policy", val) @classmethod def sharing_change_link_enforce_password_policy(cls, val): @@ -38077,7 +39102,7 @@ def sharing_change_link_enforce_password_policy(cls, val): :param SharingChangeLinkEnforcePasswordPolicyType val: :rtype: EventType """ - return cls('sharing_change_link_enforce_password_policy', val) + return cls("sharing_change_link_enforce_password_policy", val) @classmethod def sharing_change_link_policy(cls, val): @@ -38088,7 +39113,7 @@ def sharing_change_link_policy(cls, val): :param SharingChangeLinkPolicyType val: :rtype: EventType """ - return cls('sharing_change_link_policy', val) + return cls("sharing_change_link_policy", val) @classmethod def sharing_change_member_policy(cls, val): @@ -38099,7 +39124,7 @@ def sharing_change_member_policy(cls, val): :param SharingChangeMemberPolicyType val: :rtype: EventType """ - return cls('sharing_change_member_policy', val) + return cls("sharing_change_member_policy", val) @classmethod def showcase_change_download_policy(cls, val): @@ -38110,7 +39135,7 @@ def showcase_change_download_policy(cls, val): :param ShowcaseChangeDownloadPolicyType val: :rtype: EventType """ - return cls('showcase_change_download_policy', val) + return cls("showcase_change_download_policy", val) @classmethod def showcase_change_enabled_policy(cls, val): @@ -38121,7 +39146,7 @@ def showcase_change_enabled_policy(cls, val): :param ShowcaseChangeEnabledPolicyType val: :rtype: EventType """ - return cls('showcase_change_enabled_policy', val) + return cls("showcase_change_enabled_policy", val) @classmethod def showcase_change_external_sharing_policy(cls, val): @@ -38132,7 +39157,7 @@ def showcase_change_external_sharing_policy(cls, val): :param ShowcaseChangeExternalSharingPolicyType val: :rtype: EventType """ - return cls('showcase_change_external_sharing_policy', val) + return cls("showcase_change_external_sharing_policy", val) @classmethod def sign_external_sharing_policy_changed(cls, val): @@ -38143,7 +39168,7 @@ def sign_external_sharing_policy_changed(cls, val): :param SignExternalSharingPolicyChangedType val: :rtype: EventType """ - return cls('sign_external_sharing_policy_changed', val) + return cls("sign_external_sharing_policy_changed", val) @classmethod def sign_template_creation_permission_changed(cls, val): @@ -38154,7 +39179,7 @@ def sign_template_creation_permission_changed(cls, val): :param SignTemplateCreationPermissionChangedType val: :rtype: EventType """ - return cls('sign_template_creation_permission_changed', val) + return cls("sign_template_creation_permission_changed", val) @classmethod def smarter_smart_sync_policy_changed(cls, val): @@ -38165,7 +39190,7 @@ def smarter_smart_sync_policy_changed(cls, val): :param SmarterSmartSyncPolicyChangedType val: :rtype: EventType """ - return cls('smarter_smart_sync_policy_changed', val) + return cls("smarter_smart_sync_policy_changed", val) @classmethod def smart_sync_change_policy(cls, val): @@ -38176,7 +39201,7 @@ def smart_sync_change_policy(cls, val): :param SmartSyncChangePolicyType val: :rtype: EventType """ - return cls('smart_sync_change_policy', val) + return cls("smart_sync_change_policy", val) @classmethod def smart_sync_not_opt_out(cls, val): @@ -38187,7 +39212,7 @@ def smart_sync_not_opt_out(cls, val): :param SmartSyncNotOptOutType val: :rtype: EventType """ - return cls('smart_sync_not_opt_out', val) + return cls("smart_sync_not_opt_out", val) @classmethod def smart_sync_opt_out(cls, val): @@ -38198,7 +39223,7 @@ def smart_sync_opt_out(cls, val): :param SmartSyncOptOutType val: :rtype: EventType """ - return cls('smart_sync_opt_out', val) + return cls("smart_sync_opt_out", val) @classmethod def sso_change_policy(cls, val): @@ -38209,7 +39234,7 @@ def sso_change_policy(cls, val): :param SsoChangePolicyType val: :rtype: EventType """ - return cls('sso_change_policy', val) + return cls("sso_change_policy", val) @classmethod def stack_cross_team_access_policy_changed(cls, val): @@ -38220,7 +39245,7 @@ def stack_cross_team_access_policy_changed(cls, val): :param StackCrossTeamAccessPolicyChangedType val: :rtype: EventType """ - return cls('stack_cross_team_access_policy_changed', val) + return cls("stack_cross_team_access_policy_changed", val) @classmethod def team_branding_policy_changed(cls, val): @@ -38231,7 +39256,7 @@ def team_branding_policy_changed(cls, val): :param TeamBrandingPolicyChangedType val: :rtype: EventType """ - return cls('team_branding_policy_changed', val) + return cls("team_branding_policy_changed", val) @classmethod def team_extensions_policy_changed(cls, val): @@ -38242,7 +39267,7 @@ def team_extensions_policy_changed(cls, val): :param TeamExtensionsPolicyChangedType val: :rtype: EventType """ - return cls('team_extensions_policy_changed', val) + return cls("team_extensions_policy_changed", val) @classmethod def team_member_storage_request_policy_changed(cls, val): @@ -38253,7 +39278,7 @@ def team_member_storage_request_policy_changed(cls, val): :param TeamMemberStorageRequestPolicyChangedType val: :rtype: EventType """ - return cls('team_member_storage_request_policy_changed', val) + return cls("team_member_storage_request_policy_changed", val) @classmethod def team_selective_sync_policy_changed(cls, val): @@ -38264,7 +39289,7 @@ def team_selective_sync_policy_changed(cls, val): :param TeamSelectiveSyncPolicyChangedType val: :rtype: EventType """ - return cls('team_selective_sync_policy_changed', val) + return cls("team_selective_sync_policy_changed", val) @classmethod def team_sharing_whitelist_subjects_changed(cls, val): @@ -38275,7 +39300,7 @@ def team_sharing_whitelist_subjects_changed(cls, val): :param TeamSharingWhitelistSubjectsChangedType val: :rtype: EventType """ - return cls('team_sharing_whitelist_subjects_changed', val) + return cls("team_sharing_whitelist_subjects_changed", val) @classmethod def tfa_add_exception(cls, val): @@ -38286,7 +39311,7 @@ def tfa_add_exception(cls, val): :param TfaAddExceptionType val: :rtype: EventType """ - return cls('tfa_add_exception', val) + return cls("tfa_add_exception", val) @classmethod def tfa_change_policy(cls, val): @@ -38297,7 +39322,7 @@ def tfa_change_policy(cls, val): :param TfaChangePolicyType val: :rtype: EventType """ - return cls('tfa_change_policy', val) + return cls("tfa_change_policy", val) @classmethod def tfa_remove_exception(cls, val): @@ -38308,7 +39333,7 @@ def tfa_remove_exception(cls, val): :param TfaRemoveExceptionType val: :rtype: EventType """ - return cls('tfa_remove_exception', val) + return cls("tfa_remove_exception", val) @classmethod def top_level_content_policy_changed(cls, val): @@ -38319,7 +39344,7 @@ def top_level_content_policy_changed(cls, val): :param TopLevelContentPolicyChangedType val: :rtype: EventType """ - return cls('top_level_content_policy_changed', val) + return cls("top_level_content_policy_changed", val) @classmethod def two_account_change_policy(cls, val): @@ -38330,7 +39355,7 @@ def two_account_change_policy(cls, val): :param TwoAccountChangePolicyType val: :rtype: EventType """ - return cls('two_account_change_policy', val) + return cls("two_account_change_policy", val) @classmethod def viewer_info_policy_changed(cls, val): @@ -38341,7 +39366,7 @@ def viewer_info_policy_changed(cls, val): :param ViewerInfoPolicyChangedType val: :rtype: EventType """ - return cls('viewer_info_policy_changed', val) + return cls("viewer_info_policy_changed", val) @classmethod def watermarking_policy_changed(cls, val): @@ -38352,7 +39377,7 @@ def watermarking_policy_changed(cls, val): :param WatermarkingPolicyChangedType val: :rtype: EventType """ - return cls('watermarking_policy_changed', val) + return cls("watermarking_policy_changed", val) @classmethod def web_sessions_change_active_session_limit(cls, val): @@ -38363,7 +39388,7 @@ def web_sessions_change_active_session_limit(cls, val): :param WebSessionsChangeActiveSessionLimitType val: :rtype: EventType """ - return cls('web_sessions_change_active_session_limit', val) + return cls("web_sessions_change_active_session_limit", val) @classmethod def web_sessions_change_fixed_length_policy(cls, val): @@ -38374,7 +39399,7 @@ def web_sessions_change_fixed_length_policy(cls, val): :param WebSessionsChangeFixedLengthPolicyType val: :rtype: EventType """ - return cls('web_sessions_change_fixed_length_policy', val) + return cls("web_sessions_change_fixed_length_policy", val) @classmethod def web_sessions_change_idle_length_policy(cls, val): @@ -38385,7 +39410,7 @@ def web_sessions_change_idle_length_policy(cls, val): :param WebSessionsChangeIdleLengthPolicyType val: :rtype: EventType """ - return cls('web_sessions_change_idle_length_policy', val) + return cls("web_sessions_change_idle_length_policy", val) @classmethod def data_residency_migration_request_successful(cls, val): @@ -38396,7 +39421,7 @@ def data_residency_migration_request_successful(cls, val): :param DataResidencyMigrationRequestSuccessfulType val: :rtype: EventType """ - return cls('data_residency_migration_request_successful', val) + return cls("data_residency_migration_request_successful", val) @classmethod def data_residency_migration_request_unsuccessful(cls, val): @@ -38408,7 +39433,7 @@ def data_residency_migration_request_unsuccessful(cls, val): :param DataResidencyMigrationRequestUnsuccessfulType val: :rtype: EventType """ - return cls('data_residency_migration_request_unsuccessful', val) + return cls("data_residency_migration_request_unsuccessful", val) @classmethod def team_merge_from(cls, val): @@ -38419,7 +39444,7 @@ def team_merge_from(cls, val): :param TeamMergeFromType val: :rtype: EventType """ - return cls('team_merge_from', val) + return cls("team_merge_from", val) @classmethod def team_merge_to(cls, val): @@ -38430,7 +39455,7 @@ def team_merge_to(cls, val): :param TeamMergeToType val: :rtype: EventType """ - return cls('team_merge_to', val) + return cls("team_merge_to", val) @classmethod def team_profile_add_background(cls, val): @@ -38441,7 +39466,7 @@ def team_profile_add_background(cls, val): :param TeamProfileAddBackgroundType val: :rtype: EventType """ - return cls('team_profile_add_background', val) + return cls("team_profile_add_background", val) @classmethod def team_profile_add_logo(cls, val): @@ -38452,7 +39477,7 @@ def team_profile_add_logo(cls, val): :param TeamProfileAddLogoType val: :rtype: EventType """ - return cls('team_profile_add_logo', val) + return cls("team_profile_add_logo", val) @classmethod def team_profile_change_background(cls, val): @@ -38463,7 +39488,7 @@ def team_profile_change_background(cls, val): :param TeamProfileChangeBackgroundType val: :rtype: EventType """ - return cls('team_profile_change_background', val) + return cls("team_profile_change_background", val) @classmethod def team_profile_change_default_language(cls, val): @@ -38474,7 +39499,7 @@ def team_profile_change_default_language(cls, val): :param TeamProfileChangeDefaultLanguageType val: :rtype: EventType """ - return cls('team_profile_change_default_language', val) + return cls("team_profile_change_default_language", val) @classmethod def team_profile_change_logo(cls, val): @@ -38485,7 +39510,7 @@ def team_profile_change_logo(cls, val): :param TeamProfileChangeLogoType val: :rtype: EventType """ - return cls('team_profile_change_logo', val) + return cls("team_profile_change_logo", val) @classmethod def team_profile_change_name(cls, val): @@ -38496,7 +39521,7 @@ def team_profile_change_name(cls, val): :param TeamProfileChangeNameType val: :rtype: EventType """ - return cls('team_profile_change_name', val) + return cls("team_profile_change_name", val) @classmethod def team_profile_remove_background(cls, val): @@ -38507,7 +39532,7 @@ def team_profile_remove_background(cls, val): :param TeamProfileRemoveBackgroundType val: :rtype: EventType """ - return cls('team_profile_remove_background', val) + return cls("team_profile_remove_background", val) @classmethod def team_profile_remove_logo(cls, val): @@ -38518,7 +39543,7 @@ def team_profile_remove_logo(cls, val): :param TeamProfileRemoveLogoType val: :rtype: EventType """ - return cls('team_profile_remove_logo', val) + return cls("team_profile_remove_logo", val) @classmethod def passkey_add(cls, val): @@ -38529,7 +39554,7 @@ def passkey_add(cls, val): :param PasskeyAddType val: :rtype: EventType """ - return cls('passkey_add', val) + return cls("passkey_add", val) @classmethod def passkey_remove(cls, val): @@ -38540,7 +39565,7 @@ def passkey_remove(cls, val): :param PasskeyRemoveType val: :rtype: EventType """ - return cls('passkey_remove', val) + return cls("passkey_remove", val) @classmethod def tfa_add_backup_phone(cls, val): @@ -38551,7 +39576,7 @@ def tfa_add_backup_phone(cls, val): :param TfaAddBackupPhoneType val: :rtype: EventType """ - return cls('tfa_add_backup_phone', val) + return cls("tfa_add_backup_phone", val) @classmethod def tfa_add_security_key(cls, val): @@ -38562,7 +39587,7 @@ def tfa_add_security_key(cls, val): :param TfaAddSecurityKeyType val: :rtype: EventType """ - return cls('tfa_add_security_key', val) + return cls("tfa_add_security_key", val) @classmethod def tfa_change_backup_phone(cls, val): @@ -38573,7 +39598,7 @@ def tfa_change_backup_phone(cls, val): :param TfaChangeBackupPhoneType val: :rtype: EventType """ - return cls('tfa_change_backup_phone', val) + return cls("tfa_change_backup_phone", val) @classmethod def tfa_change_status(cls, val): @@ -38584,7 +39609,7 @@ def tfa_change_status(cls, val): :param TfaChangeStatusType val: :rtype: EventType """ - return cls('tfa_change_status', val) + return cls("tfa_change_status", val) @classmethod def tfa_remove_backup_phone(cls, val): @@ -38595,7 +39620,7 @@ def tfa_remove_backup_phone(cls, val): :param TfaRemoveBackupPhoneType val: :rtype: EventType """ - return cls('tfa_remove_backup_phone', val) + return cls("tfa_remove_backup_phone", val) @classmethod def tfa_remove_security_key(cls, val): @@ -38606,7 +39631,7 @@ def tfa_remove_security_key(cls, val): :param TfaRemoveSecurityKeyType val: :rtype: EventType """ - return cls('tfa_remove_security_key', val) + return cls("tfa_remove_security_key", val) @classmethod def tfa_reset(cls, val): @@ -38617,7 +39642,7 @@ def tfa_reset(cls, val): :param TfaResetType val: :rtype: EventType """ - return cls('tfa_reset', val) + return cls("tfa_reset", val) @classmethod def changed_enterprise_admin_role(cls, val): @@ -38628,7 +39653,7 @@ def changed_enterprise_admin_role(cls, val): :param ChangedEnterpriseAdminRoleType val: :rtype: EventType """ - return cls('changed_enterprise_admin_role', val) + return cls("changed_enterprise_admin_role", val) @classmethod def changed_enterprise_connected_team_status(cls, val): @@ -38639,7 +39664,7 @@ def changed_enterprise_connected_team_status(cls, val): :param ChangedEnterpriseConnectedTeamStatusType val: :rtype: EventType """ - return cls('changed_enterprise_connected_team_status', val) + return cls("changed_enterprise_connected_team_status", val) @classmethod def ended_enterprise_admin_session(cls, val): @@ -38650,7 +39675,7 @@ def ended_enterprise_admin_session(cls, val): :param EndedEnterpriseAdminSessionType val: :rtype: EventType """ - return cls('ended_enterprise_admin_session', val) + return cls("ended_enterprise_admin_session", val) @classmethod def ended_enterprise_admin_session_deprecated(cls, val): @@ -38661,7 +39686,7 @@ def ended_enterprise_admin_session_deprecated(cls, val): :param EndedEnterpriseAdminSessionDeprecatedType val: :rtype: EventType """ - return cls('ended_enterprise_admin_session_deprecated', val) + return cls("ended_enterprise_admin_session_deprecated", val) @classmethod def enterprise_settings_locking(cls, val): @@ -38672,7 +39697,7 @@ def enterprise_settings_locking(cls, val): :param EnterpriseSettingsLockingType val: :rtype: EventType """ - return cls('enterprise_settings_locking', val) + return cls("enterprise_settings_locking", val) @classmethod def guest_admin_change_status(cls, val): @@ -38683,7 +39708,7 @@ def guest_admin_change_status(cls, val): :param GuestAdminChangeStatusType val: :rtype: EventType """ - return cls('guest_admin_change_status', val) + return cls("guest_admin_change_status", val) @classmethod def started_enterprise_admin_session(cls, val): @@ -38694,7 +39719,7 @@ def started_enterprise_admin_session(cls, val): :param StartedEnterpriseAdminSessionType val: :rtype: EventType """ - return cls('started_enterprise_admin_session', val) + return cls("started_enterprise_admin_session", val) @classmethod def team_merge_request_accepted(cls, val): @@ -38705,7 +39730,7 @@ def team_merge_request_accepted(cls, val): :param TeamMergeRequestAcceptedType val: :rtype: EventType """ - return cls('team_merge_request_accepted', val) + return cls("team_merge_request_accepted", val) @classmethod def team_merge_request_accepted_shown_to_primary_team(cls, val): @@ -38717,7 +39742,7 @@ def team_merge_request_accepted_shown_to_primary_team(cls, val): :param TeamMergeRequestAcceptedShownToPrimaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_accepted_shown_to_primary_team', val) + return cls("team_merge_request_accepted_shown_to_primary_team", val) @classmethod def team_merge_request_accepted_shown_to_secondary_team(cls, val): @@ -38729,7 +39754,7 @@ def team_merge_request_accepted_shown_to_secondary_team(cls, val): :param TeamMergeRequestAcceptedShownToSecondaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_accepted_shown_to_secondary_team', val) + return cls("team_merge_request_accepted_shown_to_secondary_team", val) @classmethod def team_merge_request_auto_canceled(cls, val): @@ -38740,7 +39765,7 @@ def team_merge_request_auto_canceled(cls, val): :param TeamMergeRequestAutoCanceledType val: :rtype: EventType """ - return cls('team_merge_request_auto_canceled', val) + return cls("team_merge_request_auto_canceled", val) @classmethod def team_merge_request_canceled(cls, val): @@ -38751,7 +39776,7 @@ def team_merge_request_canceled(cls, val): :param TeamMergeRequestCanceledType val: :rtype: EventType """ - return cls('team_merge_request_canceled', val) + return cls("team_merge_request_canceled", val) @classmethod def team_merge_request_canceled_shown_to_primary_team(cls, val): @@ -38763,7 +39788,7 @@ def team_merge_request_canceled_shown_to_primary_team(cls, val): :param TeamMergeRequestCanceledShownToPrimaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_canceled_shown_to_primary_team', val) + return cls("team_merge_request_canceled_shown_to_primary_team", val) @classmethod def team_merge_request_canceled_shown_to_secondary_team(cls, val): @@ -38775,7 +39800,7 @@ def team_merge_request_canceled_shown_to_secondary_team(cls, val): :param TeamMergeRequestCanceledShownToSecondaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_canceled_shown_to_secondary_team', val) + return cls("team_merge_request_canceled_shown_to_secondary_team", val) @classmethod def team_merge_request_expired(cls, val): @@ -38786,7 +39811,7 @@ def team_merge_request_expired(cls, val): :param TeamMergeRequestExpiredType val: :rtype: EventType """ - return cls('team_merge_request_expired', val) + return cls("team_merge_request_expired", val) @classmethod def team_merge_request_expired_shown_to_primary_team(cls, val): @@ -38798,7 +39823,7 @@ def team_merge_request_expired_shown_to_primary_team(cls, val): :param TeamMergeRequestExpiredShownToPrimaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_expired_shown_to_primary_team', val) + return cls("team_merge_request_expired_shown_to_primary_team", val) @classmethod def team_merge_request_expired_shown_to_secondary_team(cls, val): @@ -38810,7 +39835,7 @@ def team_merge_request_expired_shown_to_secondary_team(cls, val): :param TeamMergeRequestExpiredShownToSecondaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_expired_shown_to_secondary_team', val) + return cls("team_merge_request_expired_shown_to_secondary_team", val) @classmethod def team_merge_request_rejected_shown_to_primary_team(cls, val): @@ -38822,7 +39847,7 @@ def team_merge_request_rejected_shown_to_primary_team(cls, val): :param TeamMergeRequestRejectedShownToPrimaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_rejected_shown_to_primary_team', val) + return cls("team_merge_request_rejected_shown_to_primary_team", val) @classmethod def team_merge_request_rejected_shown_to_secondary_team(cls, val): @@ -38834,7 +39859,7 @@ def team_merge_request_rejected_shown_to_secondary_team(cls, val): :param TeamMergeRequestRejectedShownToSecondaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_rejected_shown_to_secondary_team', val) + return cls("team_merge_request_rejected_shown_to_secondary_team", val) @classmethod def team_merge_request_reminder(cls, val): @@ -38845,7 +39870,7 @@ def team_merge_request_reminder(cls, val): :param TeamMergeRequestReminderType val: :rtype: EventType """ - return cls('team_merge_request_reminder', val) + return cls("team_merge_request_reminder", val) @classmethod def team_merge_request_reminder_shown_to_primary_team(cls, val): @@ -38857,7 +39882,7 @@ def team_merge_request_reminder_shown_to_primary_team(cls, val): :param TeamMergeRequestReminderShownToPrimaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_reminder_shown_to_primary_team', val) + return cls("team_merge_request_reminder_shown_to_primary_team", val) @classmethod def team_merge_request_reminder_shown_to_secondary_team(cls, val): @@ -38869,7 +39894,7 @@ def team_merge_request_reminder_shown_to_secondary_team(cls, val): :param TeamMergeRequestReminderShownToSecondaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_reminder_shown_to_secondary_team', val) + return cls("team_merge_request_reminder_shown_to_secondary_team", val) @classmethod def team_merge_request_revoked(cls, val): @@ -38880,7 +39905,7 @@ def team_merge_request_revoked(cls, val): :param TeamMergeRequestRevokedType val: :rtype: EventType """ - return cls('team_merge_request_revoked', val) + return cls("team_merge_request_revoked", val) @classmethod def team_merge_request_sent_shown_to_primary_team(cls, val): @@ -38892,7 +39917,7 @@ def team_merge_request_sent_shown_to_primary_team(cls, val): :param TeamMergeRequestSentShownToPrimaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_sent_shown_to_primary_team', val) + return cls("team_merge_request_sent_shown_to_primary_team", val) @classmethod def team_merge_request_sent_shown_to_secondary_team(cls, val): @@ -38904,7 +39929,7 @@ def team_merge_request_sent_shown_to_secondary_team(cls, val): :param TeamMergeRequestSentShownToSecondaryTeamType val: :rtype: EventType """ - return cls('team_merge_request_sent_shown_to_secondary_team', val) + return cls("team_merge_request_sent_shown_to_secondary_team", val) def is_admin_alerting_alert_state_changed(self): """ @@ -38912,7 +39937,7 @@ def is_admin_alerting_alert_state_changed(self): :rtype: bool """ - return self._tag == 'admin_alerting_alert_state_changed' + return self._tag == "admin_alerting_alert_state_changed" def is_admin_alerting_changed_alert_config(self): """ @@ -38920,7 +39945,7 @@ def is_admin_alerting_changed_alert_config(self): :rtype: bool """ - return self._tag == 'admin_alerting_changed_alert_config' + return self._tag == "admin_alerting_changed_alert_config" def is_admin_alerting_triggered_alert(self): """ @@ -38928,7 +39953,7 @@ def is_admin_alerting_triggered_alert(self): :rtype: bool """ - return self._tag == 'admin_alerting_triggered_alert' + return self._tag == "admin_alerting_triggered_alert" def is_ransomware_restore_process_completed(self): """ @@ -38936,7 +39961,7 @@ def is_ransomware_restore_process_completed(self): :rtype: bool """ - return self._tag == 'ransomware_restore_process_completed' + return self._tag == "ransomware_restore_process_completed" def is_ransomware_restore_process_started(self): """ @@ -38944,7 +39969,7 @@ def is_ransomware_restore_process_started(self): :rtype: bool """ - return self._tag == 'ransomware_restore_process_started' + return self._tag == "ransomware_restore_process_started" def is_app_blocked_by_permissions(self): """ @@ -38952,7 +39977,7 @@ def is_app_blocked_by_permissions(self): :rtype: bool """ - return self._tag == 'app_blocked_by_permissions' + return self._tag == "app_blocked_by_permissions" def is_app_link_team(self): """ @@ -38960,7 +39985,7 @@ def is_app_link_team(self): :rtype: bool """ - return self._tag == 'app_link_team' + return self._tag == "app_link_team" def is_app_link_user(self): """ @@ -38968,7 +39993,7 @@ def is_app_link_user(self): :rtype: bool """ - return self._tag == 'app_link_user' + return self._tag == "app_link_user" def is_app_unlink_team(self): """ @@ -38976,7 +40001,7 @@ def is_app_unlink_team(self): :rtype: bool """ - return self._tag == 'app_unlink_team' + return self._tag == "app_unlink_team" def is_app_unlink_user(self): """ @@ -38984,7 +40009,7 @@ def is_app_unlink_user(self): :rtype: bool """ - return self._tag == 'app_unlink_user' + return self._tag == "app_unlink_user" def is_integration_connected(self): """ @@ -38992,7 +40017,7 @@ def is_integration_connected(self): :rtype: bool """ - return self._tag == 'integration_connected' + return self._tag == "integration_connected" def is_integration_disconnected(self): """ @@ -39000,7 +40025,7 @@ def is_integration_disconnected(self): :rtype: bool """ - return self._tag == 'integration_disconnected' + return self._tag == "integration_disconnected" def is_file_add_comment(self): """ @@ -39008,7 +40033,7 @@ def is_file_add_comment(self): :rtype: bool """ - return self._tag == 'file_add_comment' + return self._tag == "file_add_comment" def is_file_change_comment_subscription(self): """ @@ -39016,7 +40041,7 @@ def is_file_change_comment_subscription(self): :rtype: bool """ - return self._tag == 'file_change_comment_subscription' + return self._tag == "file_change_comment_subscription" def is_file_delete_comment(self): """ @@ -39024,7 +40049,7 @@ def is_file_delete_comment(self): :rtype: bool """ - return self._tag == 'file_delete_comment' + return self._tag == "file_delete_comment" def is_file_edit_comment(self): """ @@ -39032,7 +40057,7 @@ def is_file_edit_comment(self): :rtype: bool """ - return self._tag == 'file_edit_comment' + return self._tag == "file_edit_comment" def is_file_like_comment(self): """ @@ -39040,7 +40065,7 @@ def is_file_like_comment(self): :rtype: bool """ - return self._tag == 'file_like_comment' + return self._tag == "file_like_comment" def is_file_resolve_comment(self): """ @@ -39048,7 +40073,7 @@ def is_file_resolve_comment(self): :rtype: bool """ - return self._tag == 'file_resolve_comment' + return self._tag == "file_resolve_comment" def is_file_unlike_comment(self): """ @@ -39056,7 +40081,7 @@ def is_file_unlike_comment(self): :rtype: bool """ - return self._tag == 'file_unlike_comment' + return self._tag == "file_unlike_comment" def is_file_unresolve_comment(self): """ @@ -39064,7 +40089,7 @@ def is_file_unresolve_comment(self): :rtype: bool """ - return self._tag == 'file_unresolve_comment' + return self._tag == "file_unresolve_comment" def is_dash_added_comment_to_stack(self): """ @@ -39072,7 +40097,7 @@ def is_dash_added_comment_to_stack(self): :rtype: bool """ - return self._tag == 'dash_added_comment_to_stack' + return self._tag == "dash_added_comment_to_stack" def is_dash_added_connector(self): """ @@ -39080,7 +40105,7 @@ def is_dash_added_connector(self): :rtype: bool """ - return self._tag == 'dash_added_connector' + return self._tag == "dash_added_connector" def is_dash_added_link_to_stack(self): """ @@ -39088,7 +40113,7 @@ def is_dash_added_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_added_link_to_stack' + return self._tag == "dash_added_link_to_stack" def is_dash_added_team_email_domain_allowlist(self): """ @@ -39096,7 +40121,7 @@ def is_dash_added_team_email_domain_allowlist(self): :rtype: bool """ - return self._tag == 'dash_added_team_email_domain_allowlist' + return self._tag == "dash_added_team_email_domain_allowlist" def is_dash_admin_added_org_wide_connector(self): """ @@ -39104,7 +40129,7 @@ def is_dash_admin_added_org_wide_connector(self): :rtype: bool """ - return self._tag == 'dash_admin_added_org_wide_connector' + return self._tag == "dash_admin_added_org_wide_connector" def is_dash_admin_disabled_connector(self): """ @@ -39112,7 +40137,7 @@ def is_dash_admin_disabled_connector(self): :rtype: bool """ - return self._tag == 'dash_admin_disabled_connector' + return self._tag == "dash_admin_disabled_connector" def is_dash_admin_enabled_connector(self): """ @@ -39120,7 +40145,7 @@ def is_dash_admin_enabled_connector(self): :rtype: bool """ - return self._tag == 'dash_admin_enabled_connector' + return self._tag == "dash_admin_enabled_connector" def is_dash_admin_removed_org_wide_connector(self): """ @@ -39128,7 +40153,7 @@ def is_dash_admin_removed_org_wide_connector(self): :rtype: bool """ - return self._tag == 'dash_admin_removed_org_wide_connector' + return self._tag == "dash_admin_removed_org_wide_connector" def is_dash_archived_stack(self): """ @@ -39136,7 +40161,7 @@ def is_dash_archived_stack(self): :rtype: bool """ - return self._tag == 'dash_archived_stack' + return self._tag == "dash_archived_stack" def is_dash_changed_audience_of_shared_link_to_stack(self): """ @@ -39144,7 +40169,7 @@ def is_dash_changed_audience_of_shared_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_changed_audience_of_shared_link_to_stack' + return self._tag == "dash_changed_audience_of_shared_link_to_stack" def is_dash_cloned_stack(self): """ @@ -39152,7 +40177,7 @@ def is_dash_cloned_stack(self): :rtype: bool """ - return self._tag == 'dash_cloned_stack' + return self._tag == "dash_cloned_stack" def is_dash_connector_tools_call(self): """ @@ -39160,7 +40185,7 @@ def is_dash_connector_tools_call(self): :rtype: bool """ - return self._tag == 'dash_connector_tools_call' + return self._tag == "dash_connector_tools_call" def is_dash_created_stack(self): """ @@ -39168,7 +40193,7 @@ def is_dash_created_stack(self): :rtype: bool """ - return self._tag == 'dash_created_stack' + return self._tag == "dash_created_stack" def is_dash_deleted_comment_from_stack(self): """ @@ -39176,7 +40201,7 @@ def is_dash_deleted_comment_from_stack(self): :rtype: bool """ - return self._tag == 'dash_deleted_comment_from_stack' + return self._tag == "dash_deleted_comment_from_stack" def is_dash_deleted_stack(self): """ @@ -39184,7 +40209,7 @@ def is_dash_deleted_stack(self): :rtype: bool """ - return self._tag == 'dash_deleted_stack' + return self._tag == "dash_deleted_stack" def is_dash_edited_comment_in_stack(self): """ @@ -39192,7 +40217,7 @@ def is_dash_edited_comment_in_stack(self): :rtype: bool """ - return self._tag == 'dash_edited_comment_in_stack' + return self._tag == "dash_edited_comment_in_stack" def is_dash_external_user_opened_stack(self): """ @@ -39200,7 +40225,7 @@ def is_dash_external_user_opened_stack(self): :rtype: bool """ - return self._tag == 'dash_external_user_opened_stack' + return self._tag == "dash_external_user_opened_stack" def is_dash_first_launched_desktop(self): """ @@ -39208,7 +40233,7 @@ def is_dash_first_launched_desktop(self): :rtype: bool """ - return self._tag == 'dash_first_launched_desktop' + return self._tag == "dash_first_launched_desktop" def is_dash_first_launched_extension(self): """ @@ -39216,7 +40241,7 @@ def is_dash_first_launched_extension(self): :rtype: bool """ - return self._tag == 'dash_first_launched_extension' + return self._tag == "dash_first_launched_extension" def is_dash_first_launched_web_start_page(self): """ @@ -39224,7 +40249,7 @@ def is_dash_first_launched_web_start_page(self): :rtype: bool """ - return self._tag == 'dash_first_launched_web_start_page' + return self._tag == "dash_first_launched_web_start_page" def is_dash_opened_shared_link_to_stack(self): """ @@ -39232,7 +40257,7 @@ def is_dash_opened_shared_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_opened_shared_link_to_stack' + return self._tag == "dash_opened_shared_link_to_stack" def is_dash_opened_stack(self): """ @@ -39240,7 +40265,7 @@ def is_dash_opened_stack(self): :rtype: bool """ - return self._tag == 'dash_opened_stack' + return self._tag == "dash_opened_stack" def is_dash_preview_opt_out_status_changed(self): """ @@ -39248,7 +40273,7 @@ def is_dash_preview_opt_out_status_changed(self): :rtype: bool """ - return self._tag == 'dash_preview_opt_out_status_changed' + return self._tag == "dash_preview_opt_out_status_changed" def is_dash_removed_connector(self): """ @@ -39256,7 +40281,7 @@ def is_dash_removed_connector(self): :rtype: bool """ - return self._tag == 'dash_removed_connector' + return self._tag == "dash_removed_connector" def is_dash_removed_link_from_stack(self): """ @@ -39264,7 +40289,7 @@ def is_dash_removed_link_from_stack(self): :rtype: bool """ - return self._tag == 'dash_removed_link_from_stack' + return self._tag == "dash_removed_link_from_stack" def is_dash_removed_shared_link_to_stack(self): """ @@ -39272,7 +40297,7 @@ def is_dash_removed_shared_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_removed_shared_link_to_stack' + return self._tag == "dash_removed_shared_link_to_stack" def is_dash_removed_team_email_domain_allowlist(self): """ @@ -39280,7 +40305,7 @@ def is_dash_removed_team_email_domain_allowlist(self): :rtype: bool """ - return self._tag == 'dash_removed_team_email_domain_allowlist' + return self._tag == "dash_removed_team_email_domain_allowlist" def is_dash_renamed_stack(self): """ @@ -39288,7 +40313,7 @@ def is_dash_renamed_stack(self): :rtype: bool """ - return self._tag == 'dash_renamed_stack' + return self._tag == "dash_renamed_stack" def is_dash_shared_link_to_stack(self): """ @@ -39296,7 +40321,7 @@ def is_dash_shared_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_shared_link_to_stack' + return self._tag == "dash_shared_link_to_stack" def is_dash_unarchived_stack(self): """ @@ -39304,7 +40329,7 @@ def is_dash_unarchived_stack(self): :rtype: bool """ - return self._tag == 'dash_unarchived_stack' + return self._tag == "dash_unarchived_stack" def is_dash_viewed_company_stack(self): """ @@ -39312,7 +40337,7 @@ def is_dash_viewed_company_stack(self): :rtype: bool """ - return self._tag == 'dash_viewed_company_stack' + return self._tag == "dash_viewed_company_stack" def is_dash_viewed_external_ai_activity_report(self): """ @@ -39320,7 +40345,7 @@ def is_dash_viewed_external_ai_activity_report(self): :rtype: bool """ - return self._tag == 'dash_viewed_external_ai_activity_report' + return self._tag == "dash_viewed_external_ai_activity_report" def is_governance_policy_add_folders(self): """ @@ -39328,7 +40353,7 @@ def is_governance_policy_add_folders(self): :rtype: bool """ - return self._tag == 'governance_policy_add_folders' + return self._tag == "governance_policy_add_folders" def is_governance_policy_add_folder_failed(self): """ @@ -39336,7 +40361,7 @@ def is_governance_policy_add_folder_failed(self): :rtype: bool """ - return self._tag == 'governance_policy_add_folder_failed' + return self._tag == "governance_policy_add_folder_failed" def is_governance_policy_content_disposed(self): """ @@ -39344,7 +40369,7 @@ def is_governance_policy_content_disposed(self): :rtype: bool """ - return self._tag == 'governance_policy_content_disposed' + return self._tag == "governance_policy_content_disposed" def is_governance_policy_create(self): """ @@ -39352,7 +40377,7 @@ def is_governance_policy_create(self): :rtype: bool """ - return self._tag == 'governance_policy_create' + return self._tag == "governance_policy_create" def is_governance_policy_delete(self): """ @@ -39360,7 +40385,7 @@ def is_governance_policy_delete(self): :rtype: bool """ - return self._tag == 'governance_policy_delete' + return self._tag == "governance_policy_delete" def is_governance_policy_edit_details(self): """ @@ -39368,7 +40393,7 @@ def is_governance_policy_edit_details(self): :rtype: bool """ - return self._tag == 'governance_policy_edit_details' + return self._tag == "governance_policy_edit_details" def is_governance_policy_edit_duration(self): """ @@ -39376,7 +40401,7 @@ def is_governance_policy_edit_duration(self): :rtype: bool """ - return self._tag == 'governance_policy_edit_duration' + return self._tag == "governance_policy_edit_duration" def is_governance_policy_export_created(self): """ @@ -39384,7 +40409,7 @@ def is_governance_policy_export_created(self): :rtype: bool """ - return self._tag == 'governance_policy_export_created' + return self._tag == "governance_policy_export_created" def is_governance_policy_export_removed(self): """ @@ -39392,7 +40417,7 @@ def is_governance_policy_export_removed(self): :rtype: bool """ - return self._tag == 'governance_policy_export_removed' + return self._tag == "governance_policy_export_removed" def is_governance_policy_remove_folders(self): """ @@ -39400,7 +40425,7 @@ def is_governance_policy_remove_folders(self): :rtype: bool """ - return self._tag == 'governance_policy_remove_folders' + return self._tag == "governance_policy_remove_folders" def is_governance_policy_report_created(self): """ @@ -39408,7 +40433,7 @@ def is_governance_policy_report_created(self): :rtype: bool """ - return self._tag == 'governance_policy_report_created' + return self._tag == "governance_policy_report_created" def is_governance_policy_zip_part_downloaded(self): """ @@ -39416,7 +40441,7 @@ def is_governance_policy_zip_part_downloaded(self): :rtype: bool """ - return self._tag == 'governance_policy_zip_part_downloaded' + return self._tag == "governance_policy_zip_part_downloaded" def is_legal_holds_activate_a_hold(self): """ @@ -39424,7 +40449,7 @@ def is_legal_holds_activate_a_hold(self): :rtype: bool """ - return self._tag == 'legal_holds_activate_a_hold' + return self._tag == "legal_holds_activate_a_hold" def is_legal_holds_add_members(self): """ @@ -39432,7 +40457,7 @@ def is_legal_holds_add_members(self): :rtype: bool """ - return self._tag == 'legal_holds_add_members' + return self._tag == "legal_holds_add_members" def is_legal_holds_change_hold_details(self): """ @@ -39440,7 +40465,7 @@ def is_legal_holds_change_hold_details(self): :rtype: bool """ - return self._tag == 'legal_holds_change_hold_details' + return self._tag == "legal_holds_change_hold_details" def is_legal_holds_change_hold_name(self): """ @@ -39448,7 +40473,7 @@ def is_legal_holds_change_hold_name(self): :rtype: bool """ - return self._tag == 'legal_holds_change_hold_name' + return self._tag == "legal_holds_change_hold_name" def is_legal_holds_export_a_hold(self): """ @@ -39456,7 +40481,7 @@ def is_legal_holds_export_a_hold(self): :rtype: bool """ - return self._tag == 'legal_holds_export_a_hold' + return self._tag == "legal_holds_export_a_hold" def is_legal_holds_export_cancelled(self): """ @@ -39464,7 +40489,7 @@ def is_legal_holds_export_cancelled(self): :rtype: bool """ - return self._tag == 'legal_holds_export_cancelled' + return self._tag == "legal_holds_export_cancelled" def is_legal_holds_export_downloaded(self): """ @@ -39472,7 +40497,7 @@ def is_legal_holds_export_downloaded(self): :rtype: bool """ - return self._tag == 'legal_holds_export_downloaded' + return self._tag == "legal_holds_export_downloaded" def is_legal_holds_export_removed(self): """ @@ -39480,7 +40505,7 @@ def is_legal_holds_export_removed(self): :rtype: bool """ - return self._tag == 'legal_holds_export_removed' + return self._tag == "legal_holds_export_removed" def is_legal_holds_release_a_hold(self): """ @@ -39488,7 +40513,7 @@ def is_legal_holds_release_a_hold(self): :rtype: bool """ - return self._tag == 'legal_holds_release_a_hold' + return self._tag == "legal_holds_release_a_hold" def is_legal_holds_remove_members(self): """ @@ -39496,7 +40521,7 @@ def is_legal_holds_remove_members(self): :rtype: bool """ - return self._tag == 'legal_holds_remove_members' + return self._tag == "legal_holds_remove_members" def is_legal_holds_report_a_hold(self): """ @@ -39504,7 +40529,7 @@ def is_legal_holds_report_a_hold(self): :rtype: bool """ - return self._tag == 'legal_holds_report_a_hold' + return self._tag == "legal_holds_report_a_hold" def is_device_change_ip_desktop(self): """ @@ -39512,7 +40537,7 @@ def is_device_change_ip_desktop(self): :rtype: bool """ - return self._tag == 'device_change_ip_desktop' + return self._tag == "device_change_ip_desktop" def is_device_change_ip_mobile(self): """ @@ -39520,7 +40545,7 @@ def is_device_change_ip_mobile(self): :rtype: bool """ - return self._tag == 'device_change_ip_mobile' + return self._tag == "device_change_ip_mobile" def is_device_change_ip_web(self): """ @@ -39528,7 +40553,7 @@ def is_device_change_ip_web(self): :rtype: bool """ - return self._tag == 'device_change_ip_web' + return self._tag == "device_change_ip_web" def is_device_delete_on_unlink_fail(self): """ @@ -39536,7 +40561,7 @@ def is_device_delete_on_unlink_fail(self): :rtype: bool """ - return self._tag == 'device_delete_on_unlink_fail' + return self._tag == "device_delete_on_unlink_fail" def is_device_delete_on_unlink_success(self): """ @@ -39544,7 +40569,7 @@ def is_device_delete_on_unlink_success(self): :rtype: bool """ - return self._tag == 'device_delete_on_unlink_success' + return self._tag == "device_delete_on_unlink_success" def is_device_link_fail(self): """ @@ -39552,7 +40577,7 @@ def is_device_link_fail(self): :rtype: bool """ - return self._tag == 'device_link_fail' + return self._tag == "device_link_fail" def is_device_link_success(self): """ @@ -39560,7 +40585,7 @@ def is_device_link_success(self): :rtype: bool """ - return self._tag == 'device_link_success' + return self._tag == "device_link_success" def is_device_management_disabled(self): """ @@ -39568,7 +40593,7 @@ def is_device_management_disabled(self): :rtype: bool """ - return self._tag == 'device_management_disabled' + return self._tag == "device_management_disabled" def is_device_management_enabled(self): """ @@ -39576,7 +40601,7 @@ def is_device_management_enabled(self): :rtype: bool """ - return self._tag == 'device_management_enabled' + return self._tag == "device_management_enabled" def is_device_sync_backup_status_changed(self): """ @@ -39584,7 +40609,7 @@ def is_device_sync_backup_status_changed(self): :rtype: bool """ - return self._tag == 'device_sync_backup_status_changed' + return self._tag == "device_sync_backup_status_changed" def is_device_unlink(self): """ @@ -39592,7 +40617,7 @@ def is_device_unlink(self): :rtype: bool """ - return self._tag == 'device_unlink' + return self._tag == "device_unlink" def is_dropbox_passwords_exported(self): """ @@ -39600,7 +40625,7 @@ def is_dropbox_passwords_exported(self): :rtype: bool """ - return self._tag == 'dropbox_passwords_exported' + return self._tag == "dropbox_passwords_exported" def is_dropbox_passwords_new_device_enrolled(self): """ @@ -39608,7 +40633,7 @@ def is_dropbox_passwords_new_device_enrolled(self): :rtype: bool """ - return self._tag == 'dropbox_passwords_new_device_enrolled' + return self._tag == "dropbox_passwords_new_device_enrolled" def is_emm_refresh_auth_token(self): """ @@ -39616,7 +40641,7 @@ def is_emm_refresh_auth_token(self): :rtype: bool """ - return self._tag == 'emm_refresh_auth_token' + return self._tag == "emm_refresh_auth_token" def is_external_drive_backup_eligibility_status_checked(self): """ @@ -39624,7 +40649,7 @@ def is_external_drive_backup_eligibility_status_checked(self): :rtype: bool """ - return self._tag == 'external_drive_backup_eligibility_status_checked' + return self._tag == "external_drive_backup_eligibility_status_checked" def is_external_drive_backup_status_changed(self): """ @@ -39632,7 +40657,7 @@ def is_external_drive_backup_status_changed(self): :rtype: bool """ - return self._tag == 'external_drive_backup_status_changed' + return self._tag == "external_drive_backup_status_changed" def is_account_capture_change_availability(self): """ @@ -39640,7 +40665,7 @@ def is_account_capture_change_availability(self): :rtype: bool """ - return self._tag == 'account_capture_change_availability' + return self._tag == "account_capture_change_availability" def is_account_capture_migrate_account(self): """ @@ -39648,7 +40673,7 @@ def is_account_capture_migrate_account(self): :rtype: bool """ - return self._tag == 'account_capture_migrate_account' + return self._tag == "account_capture_migrate_account" def is_account_capture_notification_emails_sent(self): """ @@ -39656,7 +40681,7 @@ def is_account_capture_notification_emails_sent(self): :rtype: bool """ - return self._tag == 'account_capture_notification_emails_sent' + return self._tag == "account_capture_notification_emails_sent" def is_account_capture_relinquish_account(self): """ @@ -39664,7 +40689,7 @@ def is_account_capture_relinquish_account(self): :rtype: bool """ - return self._tag == 'account_capture_relinquish_account' + return self._tag == "account_capture_relinquish_account" def is_disabled_domain_invites(self): """ @@ -39672,7 +40697,7 @@ def is_disabled_domain_invites(self): :rtype: bool """ - return self._tag == 'disabled_domain_invites' + return self._tag == "disabled_domain_invites" def is_domain_invites_approve_request_to_join_team(self): """ @@ -39680,7 +40705,7 @@ def is_domain_invites_approve_request_to_join_team(self): :rtype: bool """ - return self._tag == 'domain_invites_approve_request_to_join_team' + return self._tag == "domain_invites_approve_request_to_join_team" def is_domain_invites_decline_request_to_join_team(self): """ @@ -39688,7 +40713,7 @@ def is_domain_invites_decline_request_to_join_team(self): :rtype: bool """ - return self._tag == 'domain_invites_decline_request_to_join_team' + return self._tag == "domain_invites_decline_request_to_join_team" def is_domain_invites_email_existing_users(self): """ @@ -39696,7 +40721,7 @@ def is_domain_invites_email_existing_users(self): :rtype: bool """ - return self._tag == 'domain_invites_email_existing_users' + return self._tag == "domain_invites_email_existing_users" def is_domain_invites_request_to_join_team(self): """ @@ -39704,7 +40729,7 @@ def is_domain_invites_request_to_join_team(self): :rtype: bool """ - return self._tag == 'domain_invites_request_to_join_team' + return self._tag == "domain_invites_request_to_join_team" def is_domain_invites_set_invite_new_user_pref_to_no(self): """ @@ -39712,7 +40737,7 @@ def is_domain_invites_set_invite_new_user_pref_to_no(self): :rtype: bool """ - return self._tag == 'domain_invites_set_invite_new_user_pref_to_no' + return self._tag == "domain_invites_set_invite_new_user_pref_to_no" def is_domain_invites_set_invite_new_user_pref_to_yes(self): """ @@ -39720,7 +40745,7 @@ def is_domain_invites_set_invite_new_user_pref_to_yes(self): :rtype: bool """ - return self._tag == 'domain_invites_set_invite_new_user_pref_to_yes' + return self._tag == "domain_invites_set_invite_new_user_pref_to_yes" def is_domain_verification_add_domain_fail(self): """ @@ -39728,7 +40753,7 @@ def is_domain_verification_add_domain_fail(self): :rtype: bool """ - return self._tag == 'domain_verification_add_domain_fail' + return self._tag == "domain_verification_add_domain_fail" def is_domain_verification_add_domain_success(self): """ @@ -39736,7 +40761,7 @@ def is_domain_verification_add_domain_success(self): :rtype: bool """ - return self._tag == 'domain_verification_add_domain_success' + return self._tag == "domain_verification_add_domain_success" def is_domain_verification_remove_domain(self): """ @@ -39744,7 +40769,7 @@ def is_domain_verification_remove_domain(self): :rtype: bool """ - return self._tag == 'domain_verification_remove_domain' + return self._tag == "domain_verification_remove_domain" def is_enabled_domain_invites(self): """ @@ -39752,7 +40777,7 @@ def is_enabled_domain_invites(self): :rtype: bool """ - return self._tag == 'enabled_domain_invites' + return self._tag == "enabled_domain_invites" def is_encrypted_folder_cancel_team_key_rotation(self): """ @@ -39760,7 +40785,7 @@ def is_encrypted_folder_cancel_team_key_rotation(self): :rtype: bool """ - return self._tag == 'encrypted_folder_cancel_team_key_rotation' + return self._tag == "encrypted_folder_cancel_team_key_rotation" def is_encrypted_folder_enroll_backup_key(self): """ @@ -39768,7 +40793,7 @@ def is_encrypted_folder_enroll_backup_key(self): :rtype: bool """ - return self._tag == 'encrypted_folder_enroll_backup_key' + return self._tag == "encrypted_folder_enroll_backup_key" def is_encrypted_folder_enroll_client(self): """ @@ -39776,7 +40801,7 @@ def is_encrypted_folder_enroll_client(self): :rtype: bool """ - return self._tag == 'encrypted_folder_enroll_client' + return self._tag == "encrypted_folder_enroll_client" def is_encrypted_folder_enroll_team(self): """ @@ -39784,7 +40809,7 @@ def is_encrypted_folder_enroll_team(self): :rtype: bool """ - return self._tag == 'encrypted_folder_enroll_team' + return self._tag == "encrypted_folder_enroll_team" def is_encrypted_folder_finish_team_unenrollment(self): """ @@ -39792,7 +40817,7 @@ def is_encrypted_folder_finish_team_unenrollment(self): :rtype: bool """ - return self._tag == 'encrypted_folder_finish_team_unenrollment' + return self._tag == "encrypted_folder_finish_team_unenrollment" def is_encrypted_folder_init_team_key_rotation(self): """ @@ -39800,7 +40825,7 @@ def is_encrypted_folder_init_team_key_rotation(self): :rtype: bool """ - return self._tag == 'encrypted_folder_init_team_key_rotation' + return self._tag == "encrypted_folder_init_team_key_rotation" def is_encrypted_folder_init_team_unenrollment(self): """ @@ -39808,7 +40833,7 @@ def is_encrypted_folder_init_team_unenrollment(self): :rtype: bool """ - return self._tag == 'encrypted_folder_init_team_unenrollment' + return self._tag == "encrypted_folder_init_team_unenrollment" def is_encrypted_folder_remove_backup_key(self): """ @@ -39816,7 +40841,7 @@ def is_encrypted_folder_remove_backup_key(self): :rtype: bool """ - return self._tag == 'encrypted_folder_remove_backup_key' + return self._tag == "encrypted_folder_remove_backup_key" def is_encrypted_folder_rotate_team_key(self): """ @@ -39824,7 +40849,7 @@ def is_encrypted_folder_rotate_team_key(self): :rtype: bool """ - return self._tag == 'encrypted_folder_rotate_team_key' + return self._tag == "encrypted_folder_rotate_team_key" def is_encrypted_folder_unenroll_client(self): """ @@ -39832,7 +40857,7 @@ def is_encrypted_folder_unenroll_client(self): :rtype: bool """ - return self._tag == 'encrypted_folder_unenroll_client' + return self._tag == "encrypted_folder_unenroll_client" def is_team_encryption_key_activate_key(self): """ @@ -39840,7 +40865,7 @@ def is_team_encryption_key_activate_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_activate_key' + return self._tag == "team_encryption_key_activate_key" def is_team_encryption_key_cancel_key_deletion(self): """ @@ -39848,7 +40873,7 @@ def is_team_encryption_key_cancel_key_deletion(self): :rtype: bool """ - return self._tag == 'team_encryption_key_cancel_key_deletion' + return self._tag == "team_encryption_key_cancel_key_deletion" def is_team_encryption_key_create_key(self): """ @@ -39856,7 +40881,7 @@ def is_team_encryption_key_create_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_create_key' + return self._tag == "team_encryption_key_create_key" def is_team_encryption_key_deactivate_key(self): """ @@ -39864,7 +40889,7 @@ def is_team_encryption_key_deactivate_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_deactivate_key' + return self._tag == "team_encryption_key_deactivate_key" def is_team_encryption_key_delete_key(self): """ @@ -39872,7 +40897,7 @@ def is_team_encryption_key_delete_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_delete_key' + return self._tag == "team_encryption_key_delete_key" def is_team_encryption_key_disable_key(self): """ @@ -39880,7 +40905,7 @@ def is_team_encryption_key_disable_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_disable_key' + return self._tag == "team_encryption_key_disable_key" def is_team_encryption_key_enable_key(self): """ @@ -39888,7 +40913,7 @@ def is_team_encryption_key_enable_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_enable_key' + return self._tag == "team_encryption_key_enable_key" def is_team_encryption_key_rotate_key(self): """ @@ -39896,7 +40921,7 @@ def is_team_encryption_key_rotate_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_rotate_key' + return self._tag == "team_encryption_key_rotate_key" def is_team_encryption_key_schedule_key_deletion(self): """ @@ -39904,7 +40929,7 @@ def is_team_encryption_key_schedule_key_deletion(self): :rtype: bool """ - return self._tag == 'team_encryption_key_schedule_key_deletion' + return self._tag == "team_encryption_key_schedule_key_deletion" def is_apply_naming_convention(self): """ @@ -39912,7 +40937,7 @@ def is_apply_naming_convention(self): :rtype: bool """ - return self._tag == 'apply_naming_convention' + return self._tag == "apply_naming_convention" def is_create_folder(self): """ @@ -39920,7 +40945,7 @@ def is_create_folder(self): :rtype: bool """ - return self._tag == 'create_folder' + return self._tag == "create_folder" def is_file_add(self): """ @@ -39928,7 +40953,7 @@ def is_file_add(self): :rtype: bool """ - return self._tag == 'file_add' + return self._tag == "file_add" def is_file_add_from_automation(self): """ @@ -39936,7 +40961,7 @@ def is_file_add_from_automation(self): :rtype: bool """ - return self._tag == 'file_add_from_automation' + return self._tag == "file_add_from_automation" def is_file_copy(self): """ @@ -39944,7 +40969,7 @@ def is_file_copy(self): :rtype: bool """ - return self._tag == 'file_copy' + return self._tag == "file_copy" def is_file_delete(self): """ @@ -39952,7 +40977,7 @@ def is_file_delete(self): :rtype: bool """ - return self._tag == 'file_delete' + return self._tag == "file_delete" def is_file_download(self): """ @@ -39960,7 +40985,7 @@ def is_file_download(self): :rtype: bool """ - return self._tag == 'file_download' + return self._tag == "file_download" def is_file_edit(self): """ @@ -39968,7 +40993,7 @@ def is_file_edit(self): :rtype: bool """ - return self._tag == 'file_edit' + return self._tag == "file_edit" def is_file_get_copy_reference(self): """ @@ -39976,7 +41001,7 @@ def is_file_get_copy_reference(self): :rtype: bool """ - return self._tag == 'file_get_copy_reference' + return self._tag == "file_get_copy_reference" def is_file_locking_lock_status_changed(self): """ @@ -39984,7 +41009,7 @@ def is_file_locking_lock_status_changed(self): :rtype: bool """ - return self._tag == 'file_locking_lock_status_changed' + return self._tag == "file_locking_lock_status_changed" def is_file_move(self): """ @@ -39992,7 +41017,7 @@ def is_file_move(self): :rtype: bool """ - return self._tag == 'file_move' + return self._tag == "file_move" def is_file_permanently_delete(self): """ @@ -40000,7 +41025,7 @@ def is_file_permanently_delete(self): :rtype: bool """ - return self._tag == 'file_permanently_delete' + return self._tag == "file_permanently_delete" def is_file_preview(self): """ @@ -40008,7 +41033,7 @@ def is_file_preview(self): :rtype: bool """ - return self._tag == 'file_preview' + return self._tag == "file_preview" def is_file_rename(self): """ @@ -40016,7 +41041,7 @@ def is_file_rename(self): :rtype: bool """ - return self._tag == 'file_rename' + return self._tag == "file_rename" def is_file_restore(self): """ @@ -40024,7 +41049,7 @@ def is_file_restore(self): :rtype: bool """ - return self._tag == 'file_restore' + return self._tag == "file_restore" def is_file_revert(self): """ @@ -40032,7 +41057,7 @@ def is_file_revert(self): :rtype: bool """ - return self._tag == 'file_revert' + return self._tag == "file_revert" def is_file_rollback_changes(self): """ @@ -40040,7 +41065,7 @@ def is_file_rollback_changes(self): :rtype: bool """ - return self._tag == 'file_rollback_changes' + return self._tag == "file_rollback_changes" def is_file_save_copy_reference(self): """ @@ -40048,7 +41073,7 @@ def is_file_save_copy_reference(self): :rtype: bool """ - return self._tag == 'file_save_copy_reference' + return self._tag == "file_save_copy_reference" def is_folder_overview_description_changed(self): """ @@ -40056,7 +41081,7 @@ def is_folder_overview_description_changed(self): :rtype: bool """ - return self._tag == 'folder_overview_description_changed' + return self._tag == "folder_overview_description_changed" def is_folder_overview_item_pinned(self): """ @@ -40064,7 +41089,7 @@ def is_folder_overview_item_pinned(self): :rtype: bool """ - return self._tag == 'folder_overview_item_pinned' + return self._tag == "folder_overview_item_pinned" def is_folder_overview_item_unpinned(self): """ @@ -40072,7 +41097,7 @@ def is_folder_overview_item_unpinned(self): :rtype: bool """ - return self._tag == 'folder_overview_item_unpinned' + return self._tag == "folder_overview_item_unpinned" def is_media_hub_file_downloaded(self): """ @@ -40080,7 +41105,7 @@ def is_media_hub_file_downloaded(self): :rtype: bool """ - return self._tag == 'media_hub_file_downloaded' + return self._tag == "media_hub_file_downloaded" def is_object_label_added(self): """ @@ -40088,7 +41113,7 @@ def is_object_label_added(self): :rtype: bool """ - return self._tag == 'object_label_added' + return self._tag == "object_label_added" def is_object_label_removed(self): """ @@ -40096,7 +41121,7 @@ def is_object_label_removed(self): :rtype: bool """ - return self._tag == 'object_label_removed' + return self._tag == "object_label_removed" def is_object_label_updated_value(self): """ @@ -40104,7 +41129,7 @@ def is_object_label_updated_value(self): :rtype: bool """ - return self._tag == 'object_label_updated_value' + return self._tag == "object_label_updated_value" def is_organize_folder_with_tidy(self): """ @@ -40112,7 +41137,7 @@ def is_organize_folder_with_tidy(self): :rtype: bool """ - return self._tag == 'organize_folder_with_tidy' + return self._tag == "organize_folder_with_tidy" def is_replay_file_delete(self): """ @@ -40120,7 +41145,7 @@ def is_replay_file_delete(self): :rtype: bool """ - return self._tag == 'replay_file_delete' + return self._tag == "replay_file_delete" def is_replay_file_downloaded(self): """ @@ -40128,7 +41153,7 @@ def is_replay_file_downloaded(self): :rtype: bool """ - return self._tag == 'replay_file_downloaded' + return self._tag == "replay_file_downloaded" def is_replay_team_project_created(self): """ @@ -40136,7 +41161,7 @@ def is_replay_team_project_created(self): :rtype: bool """ - return self._tag == 'replay_team_project_created' + return self._tag == "replay_team_project_created" def is_rewind_folder(self): """ @@ -40144,7 +41169,7 @@ def is_rewind_folder(self): :rtype: bool """ - return self._tag == 'rewind_folder' + return self._tag == "rewind_folder" def is_undo_naming_convention(self): """ @@ -40152,7 +41177,7 @@ def is_undo_naming_convention(self): :rtype: bool """ - return self._tag == 'undo_naming_convention' + return self._tag == "undo_naming_convention" def is_undo_organize_folder_with_tidy(self): """ @@ -40160,7 +41185,7 @@ def is_undo_organize_folder_with_tidy(self): :rtype: bool """ - return self._tag == 'undo_organize_folder_with_tidy' + return self._tag == "undo_organize_folder_with_tidy" def is_user_tags_added(self): """ @@ -40168,7 +41193,7 @@ def is_user_tags_added(self): :rtype: bool """ - return self._tag == 'user_tags_added' + return self._tag == "user_tags_added" def is_user_tags_removed(self): """ @@ -40176,7 +41201,7 @@ def is_user_tags_removed(self): :rtype: bool """ - return self._tag == 'user_tags_removed' + return self._tag == "user_tags_removed" def is_email_ingest_receive_file(self): """ @@ -40184,7 +41209,7 @@ def is_email_ingest_receive_file(self): :rtype: bool """ - return self._tag == 'email_ingest_receive_file' + return self._tag == "email_ingest_receive_file" def is_file_request_auto_close(self): """ @@ -40192,7 +41217,7 @@ def is_file_request_auto_close(self): :rtype: bool """ - return self._tag == 'file_request_auto_close' + return self._tag == "file_request_auto_close" def is_file_request_change(self): """ @@ -40200,7 +41225,7 @@ def is_file_request_change(self): :rtype: bool """ - return self._tag == 'file_request_change' + return self._tag == "file_request_change" def is_file_request_close(self): """ @@ -40208,7 +41233,7 @@ def is_file_request_close(self): :rtype: bool """ - return self._tag == 'file_request_close' + return self._tag == "file_request_close" def is_file_request_create(self): """ @@ -40216,7 +41241,7 @@ def is_file_request_create(self): :rtype: bool """ - return self._tag == 'file_request_create' + return self._tag == "file_request_create" def is_file_request_delete(self): """ @@ -40224,7 +41249,7 @@ def is_file_request_delete(self): :rtype: bool """ - return self._tag == 'file_request_delete' + return self._tag == "file_request_delete" def is_file_request_receive_file(self): """ @@ -40232,7 +41257,7 @@ def is_file_request_receive_file(self): :rtype: bool """ - return self._tag == 'file_request_receive_file' + return self._tag == "file_request_receive_file" def is_group_add_external_id(self): """ @@ -40240,7 +41265,7 @@ def is_group_add_external_id(self): :rtype: bool """ - return self._tag == 'group_add_external_id' + return self._tag == "group_add_external_id" def is_group_add_member(self): """ @@ -40248,7 +41273,7 @@ def is_group_add_member(self): :rtype: bool """ - return self._tag == 'group_add_member' + return self._tag == "group_add_member" def is_group_change_external_id(self): """ @@ -40256,7 +41281,7 @@ def is_group_change_external_id(self): :rtype: bool """ - return self._tag == 'group_change_external_id' + return self._tag == "group_change_external_id" def is_group_change_management_type(self): """ @@ -40264,7 +41289,7 @@ def is_group_change_management_type(self): :rtype: bool """ - return self._tag == 'group_change_management_type' + return self._tag == "group_change_management_type" def is_group_change_member_role(self): """ @@ -40272,7 +41297,7 @@ def is_group_change_member_role(self): :rtype: bool """ - return self._tag == 'group_change_member_role' + return self._tag == "group_change_member_role" def is_group_create(self): """ @@ -40280,7 +41305,7 @@ def is_group_create(self): :rtype: bool """ - return self._tag == 'group_create' + return self._tag == "group_create" def is_group_delete(self): """ @@ -40288,7 +41313,7 @@ def is_group_delete(self): :rtype: bool """ - return self._tag == 'group_delete' + return self._tag == "group_delete" def is_group_description_updated(self): """ @@ -40296,7 +41321,7 @@ def is_group_description_updated(self): :rtype: bool """ - return self._tag == 'group_description_updated' + return self._tag == "group_description_updated" def is_group_external_sharing_setting_override_changed(self): """ @@ -40304,7 +41329,7 @@ def is_group_external_sharing_setting_override_changed(self): :rtype: bool """ - return self._tag == 'group_external_sharing_setting_override_changed' + return self._tag == "group_external_sharing_setting_override_changed" def is_group_join_policy_updated(self): """ @@ -40312,7 +41337,7 @@ def is_group_join_policy_updated(self): :rtype: bool """ - return self._tag == 'group_join_policy_updated' + return self._tag == "group_join_policy_updated" def is_group_moved(self): """ @@ -40320,7 +41345,7 @@ def is_group_moved(self): :rtype: bool """ - return self._tag == 'group_moved' + return self._tag == "group_moved" def is_group_remove_external_id(self): """ @@ -40328,7 +41353,7 @@ def is_group_remove_external_id(self): :rtype: bool """ - return self._tag == 'group_remove_external_id' + return self._tag == "group_remove_external_id" def is_group_remove_member(self): """ @@ -40336,7 +41361,7 @@ def is_group_remove_member(self): :rtype: bool """ - return self._tag == 'group_remove_member' + return self._tag == "group_remove_member" def is_group_rename(self): """ @@ -40344,7 +41369,7 @@ def is_group_rename(self): :rtype: bool """ - return self._tag == 'group_rename' + return self._tag == "group_rename" def is_account_lock_or_unlocked(self): """ @@ -40352,7 +41377,7 @@ def is_account_lock_or_unlocked(self): :rtype: bool """ - return self._tag == 'account_lock_or_unlocked' + return self._tag == "account_lock_or_unlocked" def is_emm_error(self): """ @@ -40360,7 +41385,7 @@ def is_emm_error(self): :rtype: bool """ - return self._tag == 'emm_error' + return self._tag == "emm_error" def is_guest_admin_signed_in_via_trusted_teams(self): """ @@ -40368,7 +41393,7 @@ def is_guest_admin_signed_in_via_trusted_teams(self): :rtype: bool """ - return self._tag == 'guest_admin_signed_in_via_trusted_teams' + return self._tag == "guest_admin_signed_in_via_trusted_teams" def is_guest_admin_signed_out_via_trusted_teams(self): """ @@ -40376,7 +41401,7 @@ def is_guest_admin_signed_out_via_trusted_teams(self): :rtype: bool """ - return self._tag == 'guest_admin_signed_out_via_trusted_teams' + return self._tag == "guest_admin_signed_out_via_trusted_teams" def is_login_fail(self): """ @@ -40384,7 +41409,7 @@ def is_login_fail(self): :rtype: bool """ - return self._tag == 'login_fail' + return self._tag == "login_fail" def is_login_success(self): """ @@ -40392,7 +41417,7 @@ def is_login_success(self): :rtype: bool """ - return self._tag == 'login_success' + return self._tag == "login_success" def is_logout(self): """ @@ -40400,7 +41425,7 @@ def is_logout(self): :rtype: bool """ - return self._tag == 'logout' + return self._tag == "logout" def is_reseller_support_session_end(self): """ @@ -40408,7 +41433,7 @@ def is_reseller_support_session_end(self): :rtype: bool """ - return self._tag == 'reseller_support_session_end' + return self._tag == "reseller_support_session_end" def is_reseller_support_session_start(self): """ @@ -40416,7 +41441,7 @@ def is_reseller_support_session_start(self): :rtype: bool """ - return self._tag == 'reseller_support_session_start' + return self._tag == "reseller_support_session_start" def is_sign_in_as_session_end(self): """ @@ -40424,7 +41449,7 @@ def is_sign_in_as_session_end(self): :rtype: bool """ - return self._tag == 'sign_in_as_session_end' + return self._tag == "sign_in_as_session_end" def is_sign_in_as_session_start(self): """ @@ -40432,7 +41457,7 @@ def is_sign_in_as_session_start(self): :rtype: bool """ - return self._tag == 'sign_in_as_session_start' + return self._tag == "sign_in_as_session_start" def is_sso_error(self): """ @@ -40440,7 +41465,7 @@ def is_sso_error(self): :rtype: bool """ - return self._tag == 'sso_error' + return self._tag == "sso_error" def is_addon_assigned(self): """ @@ -40448,7 +41473,7 @@ def is_addon_assigned(self): :rtype: bool """ - return self._tag == 'addon_assigned' + return self._tag == "addon_assigned" def is_addon_removed(self): """ @@ -40456,7 +41481,7 @@ def is_addon_removed(self): :rtype: bool """ - return self._tag == 'addon_removed' + return self._tag == "addon_removed" def is_backup_admin_invitation_sent(self): """ @@ -40464,7 +41489,7 @@ def is_backup_admin_invitation_sent(self): :rtype: bool """ - return self._tag == 'backup_admin_invitation_sent' + return self._tag == "backup_admin_invitation_sent" def is_backup_invitation_opened(self): """ @@ -40472,7 +41497,7 @@ def is_backup_invitation_opened(self): :rtype: bool """ - return self._tag == 'backup_invitation_opened' + return self._tag == "backup_invitation_opened" def is_create_team_invite_link(self): """ @@ -40480,7 +41505,7 @@ def is_create_team_invite_link(self): :rtype: bool """ - return self._tag == 'create_team_invite_link' + return self._tag == "create_team_invite_link" def is_delete_team_invite_link(self): """ @@ -40488,7 +41513,7 @@ def is_delete_team_invite_link(self): :rtype: bool """ - return self._tag == 'delete_team_invite_link' + return self._tag == "delete_team_invite_link" def is_member_add_external_id(self): """ @@ -40496,7 +41521,7 @@ def is_member_add_external_id(self): :rtype: bool """ - return self._tag == 'member_add_external_id' + return self._tag == "member_add_external_id" def is_member_add_name(self): """ @@ -40504,7 +41529,7 @@ def is_member_add_name(self): :rtype: bool """ - return self._tag == 'member_add_name' + return self._tag == "member_add_name" def is_member_change_admin_role(self): """ @@ -40512,7 +41537,7 @@ def is_member_change_admin_role(self): :rtype: bool """ - return self._tag == 'member_change_admin_role' + return self._tag == "member_change_admin_role" def is_member_change_email(self): """ @@ -40520,7 +41545,7 @@ def is_member_change_email(self): :rtype: bool """ - return self._tag == 'member_change_email' + return self._tag == "member_change_email" def is_member_change_external_id(self): """ @@ -40528,7 +41553,7 @@ def is_member_change_external_id(self): :rtype: bool """ - return self._tag == 'member_change_external_id' + return self._tag == "member_change_external_id" def is_member_change_membership_type(self): """ @@ -40536,7 +41561,7 @@ def is_member_change_membership_type(self): :rtype: bool """ - return self._tag == 'member_change_membership_type' + return self._tag == "member_change_membership_type" def is_member_change_name(self): """ @@ -40544,7 +41569,7 @@ def is_member_change_name(self): :rtype: bool """ - return self._tag == 'member_change_name' + return self._tag == "member_change_name" def is_member_change_reseller_role(self): """ @@ -40552,7 +41577,7 @@ def is_member_change_reseller_role(self): :rtype: bool """ - return self._tag == 'member_change_reseller_role' + return self._tag == "member_change_reseller_role" def is_member_change_status(self): """ @@ -40560,7 +41585,7 @@ def is_member_change_status(self): :rtype: bool """ - return self._tag == 'member_change_status' + return self._tag == "member_change_status" def is_member_delete_manual_contacts(self): """ @@ -40568,7 +41593,7 @@ def is_member_delete_manual_contacts(self): :rtype: bool """ - return self._tag == 'member_delete_manual_contacts' + return self._tag == "member_delete_manual_contacts" def is_member_delete_profile_photo(self): """ @@ -40576,7 +41601,7 @@ def is_member_delete_profile_photo(self): :rtype: bool """ - return self._tag == 'member_delete_profile_photo' + return self._tag == "member_delete_profile_photo" def is_member_permanently_delete_account_contents(self): """ @@ -40584,7 +41609,7 @@ def is_member_permanently_delete_account_contents(self): :rtype: bool """ - return self._tag == 'member_permanently_delete_account_contents' + return self._tag == "member_permanently_delete_account_contents" def is_member_remove_external_id(self): """ @@ -40592,7 +41617,7 @@ def is_member_remove_external_id(self): :rtype: bool """ - return self._tag == 'member_remove_external_id' + return self._tag == "member_remove_external_id" def is_member_set_profile_photo(self): """ @@ -40600,7 +41625,7 @@ def is_member_set_profile_photo(self): :rtype: bool """ - return self._tag == 'member_set_profile_photo' + return self._tag == "member_set_profile_photo" def is_member_space_limits_add_custom_quota(self): """ @@ -40608,7 +41633,7 @@ def is_member_space_limits_add_custom_quota(self): :rtype: bool """ - return self._tag == 'member_space_limits_add_custom_quota' + return self._tag == "member_space_limits_add_custom_quota" def is_member_space_limits_change_custom_quota(self): """ @@ -40616,7 +41641,7 @@ def is_member_space_limits_change_custom_quota(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_custom_quota' + return self._tag == "member_space_limits_change_custom_quota" def is_member_space_limits_change_status(self): """ @@ -40624,7 +41649,7 @@ def is_member_space_limits_change_status(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_status' + return self._tag == "member_space_limits_change_status" def is_member_space_limits_remove_custom_quota(self): """ @@ -40632,7 +41657,7 @@ def is_member_space_limits_remove_custom_quota(self): :rtype: bool """ - return self._tag == 'member_space_limits_remove_custom_quota' + return self._tag == "member_space_limits_remove_custom_quota" def is_member_suggest(self): """ @@ -40640,7 +41665,7 @@ def is_member_suggest(self): :rtype: bool """ - return self._tag == 'member_suggest' + return self._tag == "member_suggest" def is_member_transfer_account_contents(self): """ @@ -40648,7 +41673,7 @@ def is_member_transfer_account_contents(self): :rtype: bool """ - return self._tag == 'member_transfer_account_contents' + return self._tag == "member_transfer_account_contents" def is_pending_secondary_email_added(self): """ @@ -40656,7 +41681,7 @@ def is_pending_secondary_email_added(self): :rtype: bool """ - return self._tag == 'pending_secondary_email_added' + return self._tag == "pending_secondary_email_added" def is_product_assigned_to_member(self): """ @@ -40664,7 +41689,7 @@ def is_product_assigned_to_member(self): :rtype: bool """ - return self._tag == 'product_assigned_to_member' + return self._tag == "product_assigned_to_member" def is_product_removed_from_member(self): """ @@ -40672,7 +41697,7 @@ def is_product_removed_from_member(self): :rtype: bool """ - return self._tag == 'product_removed_from_member' + return self._tag == "product_removed_from_member" def is_secondary_email_deleted(self): """ @@ -40680,7 +41705,7 @@ def is_secondary_email_deleted(self): :rtype: bool """ - return self._tag == 'secondary_email_deleted' + return self._tag == "secondary_email_deleted" def is_secondary_email_verified(self): """ @@ -40688,7 +41713,7 @@ def is_secondary_email_verified(self): :rtype: bool """ - return self._tag == 'secondary_email_verified' + return self._tag == "secondary_email_verified" def is_secondary_mails_policy_changed(self): """ @@ -40696,7 +41721,7 @@ def is_secondary_mails_policy_changed(self): :rtype: bool """ - return self._tag == 'secondary_mails_policy_changed' + return self._tag == "secondary_mails_policy_changed" def is_binder_add_page(self): """ @@ -40704,7 +41729,7 @@ def is_binder_add_page(self): :rtype: bool """ - return self._tag == 'binder_add_page' + return self._tag == "binder_add_page" def is_binder_add_section(self): """ @@ -40712,7 +41737,7 @@ def is_binder_add_section(self): :rtype: bool """ - return self._tag == 'binder_add_section' + return self._tag == "binder_add_section" def is_binder_remove_page(self): """ @@ -40720,7 +41745,7 @@ def is_binder_remove_page(self): :rtype: bool """ - return self._tag == 'binder_remove_page' + return self._tag == "binder_remove_page" def is_binder_remove_section(self): """ @@ -40728,7 +41753,7 @@ def is_binder_remove_section(self): :rtype: bool """ - return self._tag == 'binder_remove_section' + return self._tag == "binder_remove_section" def is_binder_rename_page(self): """ @@ -40736,7 +41761,7 @@ def is_binder_rename_page(self): :rtype: bool """ - return self._tag == 'binder_rename_page' + return self._tag == "binder_rename_page" def is_binder_rename_section(self): """ @@ -40744,7 +41769,7 @@ def is_binder_rename_section(self): :rtype: bool """ - return self._tag == 'binder_rename_section' + return self._tag == "binder_rename_section" def is_binder_reorder_page(self): """ @@ -40752,7 +41777,7 @@ def is_binder_reorder_page(self): :rtype: bool """ - return self._tag == 'binder_reorder_page' + return self._tag == "binder_reorder_page" def is_binder_reorder_section(self): """ @@ -40760,7 +41785,7 @@ def is_binder_reorder_section(self): :rtype: bool """ - return self._tag == 'binder_reorder_section' + return self._tag == "binder_reorder_section" def is_paper_content_add_member(self): """ @@ -40768,7 +41793,7 @@ def is_paper_content_add_member(self): :rtype: bool """ - return self._tag == 'paper_content_add_member' + return self._tag == "paper_content_add_member" def is_paper_content_add_to_folder(self): """ @@ -40776,7 +41801,7 @@ def is_paper_content_add_to_folder(self): :rtype: bool """ - return self._tag == 'paper_content_add_to_folder' + return self._tag == "paper_content_add_to_folder" def is_paper_content_archive(self): """ @@ -40784,7 +41809,7 @@ def is_paper_content_archive(self): :rtype: bool """ - return self._tag == 'paper_content_archive' + return self._tag == "paper_content_archive" def is_paper_content_create(self): """ @@ -40792,7 +41817,7 @@ def is_paper_content_create(self): :rtype: bool """ - return self._tag == 'paper_content_create' + return self._tag == "paper_content_create" def is_paper_content_permanently_delete(self): """ @@ -40800,7 +41825,7 @@ def is_paper_content_permanently_delete(self): :rtype: bool """ - return self._tag == 'paper_content_permanently_delete' + return self._tag == "paper_content_permanently_delete" def is_paper_content_remove_from_folder(self): """ @@ -40808,7 +41833,7 @@ def is_paper_content_remove_from_folder(self): :rtype: bool """ - return self._tag == 'paper_content_remove_from_folder' + return self._tag == "paper_content_remove_from_folder" def is_paper_content_remove_member(self): """ @@ -40816,7 +41841,7 @@ def is_paper_content_remove_member(self): :rtype: bool """ - return self._tag == 'paper_content_remove_member' + return self._tag == "paper_content_remove_member" def is_paper_content_rename(self): """ @@ -40824,7 +41849,7 @@ def is_paper_content_rename(self): :rtype: bool """ - return self._tag == 'paper_content_rename' + return self._tag == "paper_content_rename" def is_paper_content_restore(self): """ @@ -40832,7 +41857,7 @@ def is_paper_content_restore(self): :rtype: bool """ - return self._tag == 'paper_content_restore' + return self._tag == "paper_content_restore" def is_paper_doc_add_comment(self): """ @@ -40840,7 +41865,7 @@ def is_paper_doc_add_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_add_comment' + return self._tag == "paper_doc_add_comment" def is_paper_doc_change_member_role(self): """ @@ -40848,7 +41873,7 @@ def is_paper_doc_change_member_role(self): :rtype: bool """ - return self._tag == 'paper_doc_change_member_role' + return self._tag == "paper_doc_change_member_role" def is_paper_doc_change_sharing_policy(self): """ @@ -40856,7 +41881,7 @@ def is_paper_doc_change_sharing_policy(self): :rtype: bool """ - return self._tag == 'paper_doc_change_sharing_policy' + return self._tag == "paper_doc_change_sharing_policy" def is_paper_doc_change_subscription(self): """ @@ -40864,7 +41889,7 @@ def is_paper_doc_change_subscription(self): :rtype: bool """ - return self._tag == 'paper_doc_change_subscription' + return self._tag == "paper_doc_change_subscription" def is_paper_doc_deleted(self): """ @@ -40872,7 +41897,7 @@ def is_paper_doc_deleted(self): :rtype: bool """ - return self._tag == 'paper_doc_deleted' + return self._tag == "paper_doc_deleted" def is_paper_doc_delete_comment(self): """ @@ -40880,7 +41905,7 @@ def is_paper_doc_delete_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_delete_comment' + return self._tag == "paper_doc_delete_comment" def is_paper_doc_download(self): """ @@ -40888,7 +41913,7 @@ def is_paper_doc_download(self): :rtype: bool """ - return self._tag == 'paper_doc_download' + return self._tag == "paper_doc_download" def is_paper_doc_edit(self): """ @@ -40896,7 +41921,7 @@ def is_paper_doc_edit(self): :rtype: bool """ - return self._tag == 'paper_doc_edit' + return self._tag == "paper_doc_edit" def is_paper_doc_edit_comment(self): """ @@ -40904,7 +41929,7 @@ def is_paper_doc_edit_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_edit_comment' + return self._tag == "paper_doc_edit_comment" def is_paper_doc_followed(self): """ @@ -40912,7 +41937,7 @@ def is_paper_doc_followed(self): :rtype: bool """ - return self._tag == 'paper_doc_followed' + return self._tag == "paper_doc_followed" def is_paper_doc_mention(self): """ @@ -40920,7 +41945,7 @@ def is_paper_doc_mention(self): :rtype: bool """ - return self._tag == 'paper_doc_mention' + return self._tag == "paper_doc_mention" def is_paper_doc_ownership_changed(self): """ @@ -40928,7 +41953,7 @@ def is_paper_doc_ownership_changed(self): :rtype: bool """ - return self._tag == 'paper_doc_ownership_changed' + return self._tag == "paper_doc_ownership_changed" def is_paper_doc_request_access(self): """ @@ -40936,7 +41961,7 @@ def is_paper_doc_request_access(self): :rtype: bool """ - return self._tag == 'paper_doc_request_access' + return self._tag == "paper_doc_request_access" def is_paper_doc_resolve_comment(self): """ @@ -40944,7 +41969,7 @@ def is_paper_doc_resolve_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_resolve_comment' + return self._tag == "paper_doc_resolve_comment" def is_paper_doc_revert(self): """ @@ -40952,7 +41977,7 @@ def is_paper_doc_revert(self): :rtype: bool """ - return self._tag == 'paper_doc_revert' + return self._tag == "paper_doc_revert" def is_paper_doc_slack_share(self): """ @@ -40960,7 +41985,7 @@ def is_paper_doc_slack_share(self): :rtype: bool """ - return self._tag == 'paper_doc_slack_share' + return self._tag == "paper_doc_slack_share" def is_paper_doc_team_invite(self): """ @@ -40968,7 +41993,7 @@ def is_paper_doc_team_invite(self): :rtype: bool """ - return self._tag == 'paper_doc_team_invite' + return self._tag == "paper_doc_team_invite" def is_paper_doc_trashed(self): """ @@ -40976,7 +42001,7 @@ def is_paper_doc_trashed(self): :rtype: bool """ - return self._tag == 'paper_doc_trashed' + return self._tag == "paper_doc_trashed" def is_paper_doc_unresolve_comment(self): """ @@ -40984,7 +42009,7 @@ def is_paper_doc_unresolve_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_unresolve_comment' + return self._tag == "paper_doc_unresolve_comment" def is_paper_doc_untrashed(self): """ @@ -40992,7 +42017,7 @@ def is_paper_doc_untrashed(self): :rtype: bool """ - return self._tag == 'paper_doc_untrashed' + return self._tag == "paper_doc_untrashed" def is_paper_doc_view(self): """ @@ -41000,7 +42025,7 @@ def is_paper_doc_view(self): :rtype: bool """ - return self._tag == 'paper_doc_view' + return self._tag == "paper_doc_view" def is_paper_external_view_allow(self): """ @@ -41008,7 +42033,7 @@ def is_paper_external_view_allow(self): :rtype: bool """ - return self._tag == 'paper_external_view_allow' + return self._tag == "paper_external_view_allow" def is_paper_external_view_default_team(self): """ @@ -41016,7 +42041,7 @@ def is_paper_external_view_default_team(self): :rtype: bool """ - return self._tag == 'paper_external_view_default_team' + return self._tag == "paper_external_view_default_team" def is_paper_external_view_forbid(self): """ @@ -41024,7 +42049,7 @@ def is_paper_external_view_forbid(self): :rtype: bool """ - return self._tag == 'paper_external_view_forbid' + return self._tag == "paper_external_view_forbid" def is_paper_folder_change_subscription(self): """ @@ -41032,7 +42057,7 @@ def is_paper_folder_change_subscription(self): :rtype: bool """ - return self._tag == 'paper_folder_change_subscription' + return self._tag == "paper_folder_change_subscription" def is_paper_folder_deleted(self): """ @@ -41040,7 +42065,7 @@ def is_paper_folder_deleted(self): :rtype: bool """ - return self._tag == 'paper_folder_deleted' + return self._tag == "paper_folder_deleted" def is_paper_folder_followed(self): """ @@ -41048,7 +42073,7 @@ def is_paper_folder_followed(self): :rtype: bool """ - return self._tag == 'paper_folder_followed' + return self._tag == "paper_folder_followed" def is_paper_folder_team_invite(self): """ @@ -41056,7 +42081,7 @@ def is_paper_folder_team_invite(self): :rtype: bool """ - return self._tag == 'paper_folder_team_invite' + return self._tag == "paper_folder_team_invite" def is_paper_published_link_change_permission(self): """ @@ -41064,7 +42089,7 @@ def is_paper_published_link_change_permission(self): :rtype: bool """ - return self._tag == 'paper_published_link_change_permission' + return self._tag == "paper_published_link_change_permission" def is_paper_published_link_create(self): """ @@ -41072,7 +42097,7 @@ def is_paper_published_link_create(self): :rtype: bool """ - return self._tag == 'paper_published_link_create' + return self._tag == "paper_published_link_create" def is_paper_published_link_disabled(self): """ @@ -41080,7 +42105,7 @@ def is_paper_published_link_disabled(self): :rtype: bool """ - return self._tag == 'paper_published_link_disabled' + return self._tag == "paper_published_link_disabled" def is_paper_published_link_view(self): """ @@ -41088,7 +42113,7 @@ def is_paper_published_link_view(self): :rtype: bool """ - return self._tag == 'paper_published_link_view' + return self._tag == "paper_published_link_view" def is_password_change(self): """ @@ -41096,7 +42121,7 @@ def is_password_change(self): :rtype: bool """ - return self._tag == 'password_change' + return self._tag == "password_change" def is_password_reset(self): """ @@ -41104,7 +42129,7 @@ def is_password_reset(self): :rtype: bool """ - return self._tag == 'password_reset' + return self._tag == "password_reset" def is_password_reset_all(self): """ @@ -41112,7 +42137,7 @@ def is_password_reset_all(self): :rtype: bool """ - return self._tag == 'password_reset_all' + return self._tag == "password_reset_all" def is_protect_internal_domains_changed(self): """ @@ -41120,7 +42145,7 @@ def is_protect_internal_domains_changed(self): :rtype: bool """ - return self._tag == 'protect_internal_domains_changed' + return self._tag == "protect_internal_domains_changed" def is_classification_create_report(self): """ @@ -41128,7 +42153,7 @@ def is_classification_create_report(self): :rtype: bool """ - return self._tag == 'classification_create_report' + return self._tag == "classification_create_report" def is_classification_create_report_fail(self): """ @@ -41136,7 +42161,7 @@ def is_classification_create_report_fail(self): :rtype: bool """ - return self._tag == 'classification_create_report_fail' + return self._tag == "classification_create_report_fail" def is_emm_create_exceptions_report(self): """ @@ -41144,7 +42169,7 @@ def is_emm_create_exceptions_report(self): :rtype: bool """ - return self._tag == 'emm_create_exceptions_report' + return self._tag == "emm_create_exceptions_report" def is_emm_create_usage_report(self): """ @@ -41152,7 +42177,7 @@ def is_emm_create_usage_report(self): :rtype: bool """ - return self._tag == 'emm_create_usage_report' + return self._tag == "emm_create_usage_report" def is_export_members_report(self): """ @@ -41160,7 +42185,7 @@ def is_export_members_report(self): :rtype: bool """ - return self._tag == 'export_members_report' + return self._tag == "export_members_report" def is_export_members_report_fail(self): """ @@ -41168,7 +42193,7 @@ def is_export_members_report_fail(self): :rtype: bool """ - return self._tag == 'export_members_report_fail' + return self._tag == "export_members_report_fail" def is_external_sharing_create_report(self): """ @@ -41176,7 +42201,7 @@ def is_external_sharing_create_report(self): :rtype: bool """ - return self._tag == 'external_sharing_create_report' + return self._tag == "external_sharing_create_report" def is_external_sharing_report_failed(self): """ @@ -41184,7 +42209,7 @@ def is_external_sharing_report_failed(self): :rtype: bool """ - return self._tag == 'external_sharing_report_failed' + return self._tag == "external_sharing_report_failed" def is_member_access_details_create_report(self): """ @@ -41192,7 +42217,7 @@ def is_member_access_details_create_report(self): :rtype: bool """ - return self._tag == 'member_access_details_create_report' + return self._tag == "member_access_details_create_report" def is_member_access_details_create_report_failed(self): """ @@ -41200,7 +42225,7 @@ def is_member_access_details_create_report_failed(self): :rtype: bool """ - return self._tag == 'member_access_details_create_report_failed' + return self._tag == "member_access_details_create_report_failed" def is_no_expiration_link_gen_create_report(self): """ @@ -41208,7 +42233,7 @@ def is_no_expiration_link_gen_create_report(self): :rtype: bool """ - return self._tag == 'no_expiration_link_gen_create_report' + return self._tag == "no_expiration_link_gen_create_report" def is_no_expiration_link_gen_report_failed(self): """ @@ -41216,7 +42241,7 @@ def is_no_expiration_link_gen_report_failed(self): :rtype: bool """ - return self._tag == 'no_expiration_link_gen_report_failed' + return self._tag == "no_expiration_link_gen_report_failed" def is_no_password_link_gen_create_report(self): """ @@ -41224,7 +42249,7 @@ def is_no_password_link_gen_create_report(self): :rtype: bool """ - return self._tag == 'no_password_link_gen_create_report' + return self._tag == "no_password_link_gen_create_report" def is_no_password_link_gen_report_failed(self): """ @@ -41232,7 +42257,7 @@ def is_no_password_link_gen_report_failed(self): :rtype: bool """ - return self._tag == 'no_password_link_gen_report_failed' + return self._tag == "no_password_link_gen_report_failed" def is_no_password_link_view_create_report(self): """ @@ -41240,7 +42265,7 @@ def is_no_password_link_view_create_report(self): :rtype: bool """ - return self._tag == 'no_password_link_view_create_report' + return self._tag == "no_password_link_view_create_report" def is_no_password_link_view_report_failed(self): """ @@ -41248,7 +42273,7 @@ def is_no_password_link_view_report_failed(self): :rtype: bool """ - return self._tag == 'no_password_link_view_report_failed' + return self._tag == "no_password_link_view_report_failed" def is_outdated_link_view_create_report(self): """ @@ -41256,7 +42281,7 @@ def is_outdated_link_view_create_report(self): :rtype: bool """ - return self._tag == 'outdated_link_view_create_report' + return self._tag == "outdated_link_view_create_report" def is_outdated_link_view_report_failed(self): """ @@ -41264,7 +42289,7 @@ def is_outdated_link_view_report_failed(self): :rtype: bool """ - return self._tag == 'outdated_link_view_report_failed' + return self._tag == "outdated_link_view_report_failed" def is_paper_admin_export_start(self): """ @@ -41272,7 +42297,7 @@ def is_paper_admin_export_start(self): :rtype: bool """ - return self._tag == 'paper_admin_export_start' + return self._tag == "paper_admin_export_start" def is_ransomware_alert_create_report(self): """ @@ -41280,7 +42305,7 @@ def is_ransomware_alert_create_report(self): :rtype: bool """ - return self._tag == 'ransomware_alert_create_report' + return self._tag == "ransomware_alert_create_report" def is_ransomware_alert_create_report_failed(self): """ @@ -41288,7 +42313,7 @@ def is_ransomware_alert_create_report_failed(self): :rtype: bool """ - return self._tag == 'ransomware_alert_create_report_failed' + return self._tag == "ransomware_alert_create_report_failed" def is_shared_folders_create_report(self): """ @@ -41296,7 +42321,7 @@ def is_shared_folders_create_report(self): :rtype: bool """ - return self._tag == 'shared_folders_create_report' + return self._tag == "shared_folders_create_report" def is_shared_folders_create_report_failed(self): """ @@ -41304,7 +42329,7 @@ def is_shared_folders_create_report_failed(self): :rtype: bool """ - return self._tag == 'shared_folders_create_report_failed' + return self._tag == "shared_folders_create_report_failed" def is_smart_sync_create_admin_privilege_report(self): """ @@ -41312,7 +42337,7 @@ def is_smart_sync_create_admin_privilege_report(self): :rtype: bool """ - return self._tag == 'smart_sync_create_admin_privilege_report' + return self._tag == "smart_sync_create_admin_privilege_report" def is_team_activity_create_report(self): """ @@ -41320,7 +42345,7 @@ def is_team_activity_create_report(self): :rtype: bool """ - return self._tag == 'team_activity_create_report' + return self._tag == "team_activity_create_report" def is_team_activity_create_report_fail(self): """ @@ -41328,7 +42353,7 @@ def is_team_activity_create_report_fail(self): :rtype: bool """ - return self._tag == 'team_activity_create_report_fail' + return self._tag == "team_activity_create_report_fail" def is_team_folders_create_report(self): """ @@ -41336,7 +42361,7 @@ def is_team_folders_create_report(self): :rtype: bool """ - return self._tag == 'team_folders_create_report' + return self._tag == "team_folders_create_report" def is_team_folders_create_report_failed(self): """ @@ -41344,7 +42369,7 @@ def is_team_folders_create_report_failed(self): :rtype: bool """ - return self._tag == 'team_folders_create_report_failed' + return self._tag == "team_folders_create_report_failed" def is_team_storage_create_report(self): """ @@ -41352,7 +42377,7 @@ def is_team_storage_create_report(self): :rtype: bool """ - return self._tag == 'team_storage_create_report' + return self._tag == "team_storage_create_report" def is_team_storage_create_report_failed(self): """ @@ -41360,7 +42385,7 @@ def is_team_storage_create_report_failed(self): :rtype: bool """ - return self._tag == 'team_storage_create_report_failed' + return self._tag == "team_storage_create_report_failed" def is_collection_share(self): """ @@ -41368,7 +42393,7 @@ def is_collection_share(self): :rtype: bool """ - return self._tag == 'collection_share' + return self._tag == "collection_share" def is_file_transfers_file_add(self): """ @@ -41376,7 +42401,7 @@ def is_file_transfers_file_add(self): :rtype: bool """ - return self._tag == 'file_transfers_file_add' + return self._tag == "file_transfers_file_add" def is_file_transfers_transfer_delete(self): """ @@ -41384,7 +42409,7 @@ def is_file_transfers_transfer_delete(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_delete' + return self._tag == "file_transfers_transfer_delete" def is_file_transfers_transfer_download(self): """ @@ -41392,7 +42417,7 @@ def is_file_transfers_transfer_download(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_download' + return self._tag == "file_transfers_transfer_download" def is_file_transfers_transfer_send(self): """ @@ -41400,7 +42425,7 @@ def is_file_transfers_transfer_send(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_send' + return self._tag == "file_transfers_transfer_send" def is_file_transfers_transfer_view(self): """ @@ -41408,7 +42433,7 @@ def is_file_transfers_transfer_view(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_view' + return self._tag == "file_transfers_transfer_view" def is_media_hub_project_team_add(self): """ @@ -41416,7 +42441,7 @@ def is_media_hub_project_team_add(self): :rtype: bool """ - return self._tag == 'media_hub_project_team_add' + return self._tag == "media_hub_project_team_add" def is_media_hub_project_team_delete(self): """ @@ -41424,7 +42449,7 @@ def is_media_hub_project_team_delete(self): :rtype: bool """ - return self._tag == 'media_hub_project_team_delete' + return self._tag == "media_hub_project_team_delete" def is_media_hub_project_team_role_changed(self): """ @@ -41432,7 +42457,7 @@ def is_media_hub_project_team_role_changed(self): :rtype: bool """ - return self._tag == 'media_hub_project_team_role_changed' + return self._tag == "media_hub_project_team_role_changed" def is_media_hub_shared_link_audience_changed(self): """ @@ -41440,7 +42465,7 @@ def is_media_hub_shared_link_audience_changed(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_audience_changed' + return self._tag == "media_hub_shared_link_audience_changed" def is_media_hub_shared_link_created(self): """ @@ -41448,7 +42473,7 @@ def is_media_hub_shared_link_created(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_created' + return self._tag == "media_hub_shared_link_created" def is_media_hub_shared_link_download_setting_changed(self): """ @@ -41456,7 +42481,7 @@ def is_media_hub_shared_link_download_setting_changed(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_download_setting_changed' + return self._tag == "media_hub_shared_link_download_setting_changed" def is_media_hub_shared_link_revoked(self): """ @@ -41464,7 +42489,7 @@ def is_media_hub_shared_link_revoked(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_revoked' + return self._tag == "media_hub_shared_link_revoked" def is_note_acl_invite_only(self): """ @@ -41472,7 +42497,7 @@ def is_note_acl_invite_only(self): :rtype: bool """ - return self._tag == 'note_acl_invite_only' + return self._tag == "note_acl_invite_only" def is_note_acl_link(self): """ @@ -41480,7 +42505,7 @@ def is_note_acl_link(self): :rtype: bool """ - return self._tag == 'note_acl_link' + return self._tag == "note_acl_link" def is_note_acl_team_link(self): """ @@ -41488,7 +42513,7 @@ def is_note_acl_team_link(self): :rtype: bool """ - return self._tag == 'note_acl_team_link' + return self._tag == "note_acl_team_link" def is_note_shared(self): """ @@ -41496,7 +42521,7 @@ def is_note_shared(self): :rtype: bool """ - return self._tag == 'note_shared' + return self._tag == "note_shared" def is_note_share_receive(self): """ @@ -41504,7 +42529,7 @@ def is_note_share_receive(self): :rtype: bool """ - return self._tag == 'note_share_receive' + return self._tag == "note_share_receive" def is_open_note_shared(self): """ @@ -41512,7 +42537,7 @@ def is_open_note_shared(self): :rtype: bool """ - return self._tag == 'open_note_shared' + return self._tag == "open_note_shared" def is_replay_file_shared_link_created(self): """ @@ -41520,7 +42545,7 @@ def is_replay_file_shared_link_created(self): :rtype: bool """ - return self._tag == 'replay_file_shared_link_created' + return self._tag == "replay_file_shared_link_created" def is_replay_file_shared_link_modified(self): """ @@ -41528,7 +42553,7 @@ def is_replay_file_shared_link_modified(self): :rtype: bool """ - return self._tag == 'replay_file_shared_link_modified' + return self._tag == "replay_file_shared_link_modified" def is_replay_project_team_add(self): """ @@ -41536,7 +42561,7 @@ def is_replay_project_team_add(self): :rtype: bool """ - return self._tag == 'replay_project_team_add' + return self._tag == "replay_project_team_add" def is_replay_project_team_delete(self): """ @@ -41544,7 +42569,7 @@ def is_replay_project_team_delete(self): :rtype: bool """ - return self._tag == 'replay_project_team_delete' + return self._tag == "replay_project_team_delete" def is_send_and_track_file_added(self): """ @@ -41552,7 +42577,7 @@ def is_send_and_track_file_added(self): :rtype: bool """ - return self._tag == 'send_and_track_file_added' + return self._tag == "send_and_track_file_added" def is_send_and_track_file_renamed(self): """ @@ -41560,7 +42585,7 @@ def is_send_and_track_file_renamed(self): :rtype: bool """ - return self._tag == 'send_and_track_file_renamed' + return self._tag == "send_and_track_file_renamed" def is_send_and_track_file_updated(self): """ @@ -41568,7 +42593,7 @@ def is_send_and_track_file_updated(self): :rtype: bool """ - return self._tag == 'send_and_track_file_updated' + return self._tag == "send_and_track_file_updated" def is_send_and_track_link_created(self): """ @@ -41576,7 +42601,7 @@ def is_send_and_track_link_created(self): :rtype: bool """ - return self._tag == 'send_and_track_link_created' + return self._tag == "send_and_track_link_created" def is_send_and_track_link_deleted(self): """ @@ -41584,7 +42609,7 @@ def is_send_and_track_link_deleted(self): :rtype: bool """ - return self._tag == 'send_and_track_link_deleted' + return self._tag == "send_and_track_link_deleted" def is_send_and_track_link_updated(self): """ @@ -41592,7 +42617,7 @@ def is_send_and_track_link_updated(self): :rtype: bool """ - return self._tag == 'send_and_track_link_updated' + return self._tag == "send_and_track_link_updated" def is_send_and_track_link_viewed(self): """ @@ -41600,7 +42625,7 @@ def is_send_and_track_link_viewed(self): :rtype: bool """ - return self._tag == 'send_and_track_link_viewed' + return self._tag == "send_and_track_link_viewed" def is_send_and_track_removed_file_and_associated_links(self): """ @@ -41608,7 +42633,7 @@ def is_send_and_track_removed_file_and_associated_links(self): :rtype: bool """ - return self._tag == 'send_and_track_removed_file_and_associated_links' + return self._tag == "send_and_track_removed_file_and_associated_links" def is_sf_add_group(self): """ @@ -41616,7 +42641,7 @@ def is_sf_add_group(self): :rtype: bool """ - return self._tag == 'sf_add_group' + return self._tag == "sf_add_group" def is_sf_allow_non_members_to_view_shared_links(self): """ @@ -41624,7 +42649,7 @@ def is_sf_allow_non_members_to_view_shared_links(self): :rtype: bool """ - return self._tag == 'sf_allow_non_members_to_view_shared_links' + return self._tag == "sf_allow_non_members_to_view_shared_links" def is_sf_external_invite_warn(self): """ @@ -41632,7 +42657,7 @@ def is_sf_external_invite_warn(self): :rtype: bool """ - return self._tag == 'sf_external_invite_warn' + return self._tag == "sf_external_invite_warn" def is_sf_fb_invite(self): """ @@ -41640,7 +42665,7 @@ def is_sf_fb_invite(self): :rtype: bool """ - return self._tag == 'sf_fb_invite' + return self._tag == "sf_fb_invite" def is_sf_fb_invite_change_role(self): """ @@ -41648,7 +42673,7 @@ def is_sf_fb_invite_change_role(self): :rtype: bool """ - return self._tag == 'sf_fb_invite_change_role' + return self._tag == "sf_fb_invite_change_role" def is_sf_fb_uninvite(self): """ @@ -41656,7 +42681,7 @@ def is_sf_fb_uninvite(self): :rtype: bool """ - return self._tag == 'sf_fb_uninvite' + return self._tag == "sf_fb_uninvite" def is_sf_invite_group(self): """ @@ -41664,7 +42689,7 @@ def is_sf_invite_group(self): :rtype: bool """ - return self._tag == 'sf_invite_group' + return self._tag == "sf_invite_group" def is_sf_team_grant_access(self): """ @@ -41672,7 +42697,7 @@ def is_sf_team_grant_access(self): :rtype: bool """ - return self._tag == 'sf_team_grant_access' + return self._tag == "sf_team_grant_access" def is_sf_team_invite(self): """ @@ -41680,7 +42705,7 @@ def is_sf_team_invite(self): :rtype: bool """ - return self._tag == 'sf_team_invite' + return self._tag == "sf_team_invite" def is_sf_team_invite_change_role(self): """ @@ -41688,7 +42713,7 @@ def is_sf_team_invite_change_role(self): :rtype: bool """ - return self._tag == 'sf_team_invite_change_role' + return self._tag == "sf_team_invite_change_role" def is_sf_team_join(self): """ @@ -41696,7 +42721,7 @@ def is_sf_team_join(self): :rtype: bool """ - return self._tag == 'sf_team_join' + return self._tag == "sf_team_join" def is_sf_team_join_from_oob_link(self): """ @@ -41704,7 +42729,7 @@ def is_sf_team_join_from_oob_link(self): :rtype: bool """ - return self._tag == 'sf_team_join_from_oob_link' + return self._tag == "sf_team_join_from_oob_link" def is_sf_team_uninvite(self): """ @@ -41712,7 +42737,7 @@ def is_sf_team_uninvite(self): :rtype: bool """ - return self._tag == 'sf_team_uninvite' + return self._tag == "sf_team_uninvite" def is_shared_content_add_invitees(self): """ @@ -41720,7 +42745,7 @@ def is_shared_content_add_invitees(self): :rtype: bool """ - return self._tag == 'shared_content_add_invitees' + return self._tag == "shared_content_add_invitees" def is_shared_content_add_link_expiry(self): """ @@ -41728,7 +42753,7 @@ def is_shared_content_add_link_expiry(self): :rtype: bool """ - return self._tag == 'shared_content_add_link_expiry' + return self._tag == "shared_content_add_link_expiry" def is_shared_content_add_link_password(self): """ @@ -41736,7 +42761,7 @@ def is_shared_content_add_link_password(self): :rtype: bool """ - return self._tag == 'shared_content_add_link_password' + return self._tag == "shared_content_add_link_password" def is_shared_content_add_member(self): """ @@ -41744,7 +42769,7 @@ def is_shared_content_add_member(self): :rtype: bool """ - return self._tag == 'shared_content_add_member' + return self._tag == "shared_content_add_member" def is_shared_content_change_downloads_policy(self): """ @@ -41752,7 +42777,7 @@ def is_shared_content_change_downloads_policy(self): :rtype: bool """ - return self._tag == 'shared_content_change_downloads_policy' + return self._tag == "shared_content_change_downloads_policy" def is_shared_content_change_invitee_role(self): """ @@ -41760,7 +42785,7 @@ def is_shared_content_change_invitee_role(self): :rtype: bool """ - return self._tag == 'shared_content_change_invitee_role' + return self._tag == "shared_content_change_invitee_role" def is_shared_content_change_link_audience(self): """ @@ -41768,7 +42793,7 @@ def is_shared_content_change_link_audience(self): :rtype: bool """ - return self._tag == 'shared_content_change_link_audience' + return self._tag == "shared_content_change_link_audience" def is_shared_content_change_link_expiry(self): """ @@ -41776,7 +42801,7 @@ def is_shared_content_change_link_expiry(self): :rtype: bool """ - return self._tag == 'shared_content_change_link_expiry' + return self._tag == "shared_content_change_link_expiry" def is_shared_content_change_link_password(self): """ @@ -41784,7 +42809,7 @@ def is_shared_content_change_link_password(self): :rtype: bool """ - return self._tag == 'shared_content_change_link_password' + return self._tag == "shared_content_change_link_password" def is_shared_content_change_member_role(self): """ @@ -41792,7 +42817,7 @@ def is_shared_content_change_member_role(self): :rtype: bool """ - return self._tag == 'shared_content_change_member_role' + return self._tag == "shared_content_change_member_role" def is_shared_content_change_viewer_info_policy(self): """ @@ -41800,7 +42825,7 @@ def is_shared_content_change_viewer_info_policy(self): :rtype: bool """ - return self._tag == 'shared_content_change_viewer_info_policy' + return self._tag == "shared_content_change_viewer_info_policy" def is_shared_content_claim_invitation(self): """ @@ -41808,7 +42833,7 @@ def is_shared_content_claim_invitation(self): :rtype: bool """ - return self._tag == 'shared_content_claim_invitation' + return self._tag == "shared_content_claim_invitation" def is_shared_content_copy(self): """ @@ -41816,7 +42841,7 @@ def is_shared_content_copy(self): :rtype: bool """ - return self._tag == 'shared_content_copy' + return self._tag == "shared_content_copy" def is_shared_content_download(self): """ @@ -41824,7 +42849,7 @@ def is_shared_content_download(self): :rtype: bool """ - return self._tag == 'shared_content_download' + return self._tag == "shared_content_download" def is_shared_content_relinquish_membership(self): """ @@ -41832,7 +42857,7 @@ def is_shared_content_relinquish_membership(self): :rtype: bool """ - return self._tag == 'shared_content_relinquish_membership' + return self._tag == "shared_content_relinquish_membership" def is_shared_content_remove_invitees(self): """ @@ -41840,7 +42865,7 @@ def is_shared_content_remove_invitees(self): :rtype: bool """ - return self._tag == 'shared_content_remove_invitees' + return self._tag == "shared_content_remove_invitees" def is_shared_content_remove_link_expiry(self): """ @@ -41848,7 +42873,7 @@ def is_shared_content_remove_link_expiry(self): :rtype: bool """ - return self._tag == 'shared_content_remove_link_expiry' + return self._tag == "shared_content_remove_link_expiry" def is_shared_content_remove_link_password(self): """ @@ -41856,7 +42881,7 @@ def is_shared_content_remove_link_password(self): :rtype: bool """ - return self._tag == 'shared_content_remove_link_password' + return self._tag == "shared_content_remove_link_password" def is_shared_content_remove_member(self): """ @@ -41864,7 +42889,7 @@ def is_shared_content_remove_member(self): :rtype: bool """ - return self._tag == 'shared_content_remove_member' + return self._tag == "shared_content_remove_member" def is_shared_content_request_access(self): """ @@ -41872,7 +42897,7 @@ def is_shared_content_request_access(self): :rtype: bool """ - return self._tag == 'shared_content_request_access' + return self._tag == "shared_content_request_access" def is_shared_content_restore_invitees(self): """ @@ -41880,7 +42905,7 @@ def is_shared_content_restore_invitees(self): :rtype: bool """ - return self._tag == 'shared_content_restore_invitees' + return self._tag == "shared_content_restore_invitees" def is_shared_content_restore_member(self): """ @@ -41888,7 +42913,7 @@ def is_shared_content_restore_member(self): :rtype: bool """ - return self._tag == 'shared_content_restore_member' + return self._tag == "shared_content_restore_member" def is_shared_content_unshare(self): """ @@ -41896,7 +42921,7 @@ def is_shared_content_unshare(self): :rtype: bool """ - return self._tag == 'shared_content_unshare' + return self._tag == "shared_content_unshare" def is_shared_content_view(self): """ @@ -41904,7 +42929,7 @@ def is_shared_content_view(self): :rtype: bool """ - return self._tag == 'shared_content_view' + return self._tag == "shared_content_view" def is_shared_folder_change_link_policy(self): """ @@ -41912,7 +42937,7 @@ def is_shared_folder_change_link_policy(self): :rtype: bool """ - return self._tag == 'shared_folder_change_link_policy' + return self._tag == "shared_folder_change_link_policy" def is_shared_folder_change_members_inheritance_policy(self): """ @@ -41920,7 +42945,7 @@ def is_shared_folder_change_members_inheritance_policy(self): :rtype: bool """ - return self._tag == 'shared_folder_change_members_inheritance_policy' + return self._tag == "shared_folder_change_members_inheritance_policy" def is_shared_folder_change_members_management_policy(self): """ @@ -41928,7 +42953,7 @@ def is_shared_folder_change_members_management_policy(self): :rtype: bool """ - return self._tag == 'shared_folder_change_members_management_policy' + return self._tag == "shared_folder_change_members_management_policy" def is_shared_folder_change_members_policy(self): """ @@ -41936,7 +42961,7 @@ def is_shared_folder_change_members_policy(self): :rtype: bool """ - return self._tag == 'shared_folder_change_members_policy' + return self._tag == "shared_folder_change_members_policy" def is_shared_folder_create(self): """ @@ -41944,7 +42969,7 @@ def is_shared_folder_create(self): :rtype: bool """ - return self._tag == 'shared_folder_create' + return self._tag == "shared_folder_create" def is_shared_folder_decline_invitation(self): """ @@ -41952,7 +42977,7 @@ def is_shared_folder_decline_invitation(self): :rtype: bool """ - return self._tag == 'shared_folder_decline_invitation' + return self._tag == "shared_folder_decline_invitation" def is_shared_folder_mount(self): """ @@ -41960,7 +42985,7 @@ def is_shared_folder_mount(self): :rtype: bool """ - return self._tag == 'shared_folder_mount' + return self._tag == "shared_folder_mount" def is_shared_folder_nest(self): """ @@ -41968,7 +42993,7 @@ def is_shared_folder_nest(self): :rtype: bool """ - return self._tag == 'shared_folder_nest' + return self._tag == "shared_folder_nest" def is_shared_folder_transfer_ownership(self): """ @@ -41976,7 +43001,7 @@ def is_shared_folder_transfer_ownership(self): :rtype: bool """ - return self._tag == 'shared_folder_transfer_ownership' + return self._tag == "shared_folder_transfer_ownership" def is_shared_folder_unmount(self): """ @@ -41984,7 +43009,7 @@ def is_shared_folder_unmount(self): :rtype: bool """ - return self._tag == 'shared_folder_unmount' + return self._tag == "shared_folder_unmount" def is_shared_link_add_expiry(self): """ @@ -41992,7 +43017,7 @@ def is_shared_link_add_expiry(self): :rtype: bool """ - return self._tag == 'shared_link_add_expiry' + return self._tag == "shared_link_add_expiry" def is_shared_link_change_expiry(self): """ @@ -42000,7 +43025,7 @@ def is_shared_link_change_expiry(self): :rtype: bool """ - return self._tag == 'shared_link_change_expiry' + return self._tag == "shared_link_change_expiry" def is_shared_link_change_visibility(self): """ @@ -42008,7 +43033,7 @@ def is_shared_link_change_visibility(self): :rtype: bool """ - return self._tag == 'shared_link_change_visibility' + return self._tag == "shared_link_change_visibility" def is_shared_link_copy(self): """ @@ -42016,7 +43041,7 @@ def is_shared_link_copy(self): :rtype: bool """ - return self._tag == 'shared_link_copy' + return self._tag == "shared_link_copy" def is_shared_link_create(self): """ @@ -42024,7 +43049,7 @@ def is_shared_link_create(self): :rtype: bool """ - return self._tag == 'shared_link_create' + return self._tag == "shared_link_create" def is_shared_link_disable(self): """ @@ -42032,7 +43057,7 @@ def is_shared_link_disable(self): :rtype: bool """ - return self._tag == 'shared_link_disable' + return self._tag == "shared_link_disable" def is_shared_link_download(self): """ @@ -42040,7 +43065,7 @@ def is_shared_link_download(self): :rtype: bool """ - return self._tag == 'shared_link_download' + return self._tag == "shared_link_download" def is_shared_link_remove_expiry(self): """ @@ -42048,7 +43073,7 @@ def is_shared_link_remove_expiry(self): :rtype: bool """ - return self._tag == 'shared_link_remove_expiry' + return self._tag == "shared_link_remove_expiry" def is_shared_link_remove_visitor(self): """ @@ -42056,7 +43081,7 @@ def is_shared_link_remove_visitor(self): :rtype: bool """ - return self._tag == 'shared_link_remove_visitor' + return self._tag == "shared_link_remove_visitor" def is_shared_link_settings_add_expiration(self): """ @@ -42064,7 +43089,7 @@ def is_shared_link_settings_add_expiration(self): :rtype: bool """ - return self._tag == 'shared_link_settings_add_expiration' + return self._tag == "shared_link_settings_add_expiration" def is_shared_link_settings_add_password(self): """ @@ -42072,7 +43097,7 @@ def is_shared_link_settings_add_password(self): :rtype: bool """ - return self._tag == 'shared_link_settings_add_password' + return self._tag == "shared_link_settings_add_password" def is_shared_link_settings_allow_download_disabled(self): """ @@ -42080,7 +43105,7 @@ def is_shared_link_settings_allow_download_disabled(self): :rtype: bool """ - return self._tag == 'shared_link_settings_allow_download_disabled' + return self._tag == "shared_link_settings_allow_download_disabled" def is_shared_link_settings_allow_download_enabled(self): """ @@ -42088,7 +43113,7 @@ def is_shared_link_settings_allow_download_enabled(self): :rtype: bool """ - return self._tag == 'shared_link_settings_allow_download_enabled' + return self._tag == "shared_link_settings_allow_download_enabled" def is_shared_link_settings_change_audience(self): """ @@ -42096,7 +43121,7 @@ def is_shared_link_settings_change_audience(self): :rtype: bool """ - return self._tag == 'shared_link_settings_change_audience' + return self._tag == "shared_link_settings_change_audience" def is_shared_link_settings_change_expiration(self): """ @@ -42104,7 +43129,7 @@ def is_shared_link_settings_change_expiration(self): :rtype: bool """ - return self._tag == 'shared_link_settings_change_expiration' + return self._tag == "shared_link_settings_change_expiration" def is_shared_link_settings_change_password(self): """ @@ -42112,7 +43137,7 @@ def is_shared_link_settings_change_password(self): :rtype: bool """ - return self._tag == 'shared_link_settings_change_password' + return self._tag == "shared_link_settings_change_password" def is_shared_link_settings_remove_expiration(self): """ @@ -42120,7 +43145,7 @@ def is_shared_link_settings_remove_expiration(self): :rtype: bool """ - return self._tag == 'shared_link_settings_remove_expiration' + return self._tag == "shared_link_settings_remove_expiration" def is_shared_link_settings_remove_password(self): """ @@ -42128,7 +43153,7 @@ def is_shared_link_settings_remove_password(self): :rtype: bool """ - return self._tag == 'shared_link_settings_remove_password' + return self._tag == "shared_link_settings_remove_password" def is_shared_link_share(self): """ @@ -42136,7 +43161,7 @@ def is_shared_link_share(self): :rtype: bool """ - return self._tag == 'shared_link_share' + return self._tag == "shared_link_share" def is_shared_link_view(self): """ @@ -42144,7 +43169,7 @@ def is_shared_link_view(self): :rtype: bool """ - return self._tag == 'shared_link_view' + return self._tag == "shared_link_view" def is_shared_note_opened(self): """ @@ -42152,7 +43177,7 @@ def is_shared_note_opened(self): :rtype: bool """ - return self._tag == 'shared_note_opened' + return self._tag == "shared_note_opened" def is_shmodel_disable_downloads(self): """ @@ -42160,7 +43185,7 @@ def is_shmodel_disable_downloads(self): :rtype: bool """ - return self._tag == 'shmodel_disable_downloads' + return self._tag == "shmodel_disable_downloads" def is_shmodel_enable_downloads(self): """ @@ -42168,7 +43193,7 @@ def is_shmodel_enable_downloads(self): :rtype: bool """ - return self._tag == 'shmodel_enable_downloads' + return self._tag == "shmodel_enable_downloads" def is_shmodel_group_share(self): """ @@ -42176,7 +43201,7 @@ def is_shmodel_group_share(self): :rtype: bool """ - return self._tag == 'shmodel_group_share' + return self._tag == "shmodel_group_share" def is_showcase_access_granted(self): """ @@ -42184,7 +43209,7 @@ def is_showcase_access_granted(self): :rtype: bool """ - return self._tag == 'showcase_access_granted' + return self._tag == "showcase_access_granted" def is_showcase_add_member(self): """ @@ -42192,7 +43217,7 @@ def is_showcase_add_member(self): :rtype: bool """ - return self._tag == 'showcase_add_member' + return self._tag == "showcase_add_member" def is_showcase_archived(self): """ @@ -42200,7 +43225,7 @@ def is_showcase_archived(self): :rtype: bool """ - return self._tag == 'showcase_archived' + return self._tag == "showcase_archived" def is_showcase_created(self): """ @@ -42208,7 +43233,7 @@ def is_showcase_created(self): :rtype: bool """ - return self._tag == 'showcase_created' + return self._tag == "showcase_created" def is_showcase_delete_comment(self): """ @@ -42216,7 +43241,7 @@ def is_showcase_delete_comment(self): :rtype: bool """ - return self._tag == 'showcase_delete_comment' + return self._tag == "showcase_delete_comment" def is_showcase_edited(self): """ @@ -42224,7 +43249,7 @@ def is_showcase_edited(self): :rtype: bool """ - return self._tag == 'showcase_edited' + return self._tag == "showcase_edited" def is_showcase_edit_comment(self): """ @@ -42232,7 +43257,7 @@ def is_showcase_edit_comment(self): :rtype: bool """ - return self._tag == 'showcase_edit_comment' + return self._tag == "showcase_edit_comment" def is_showcase_file_added(self): """ @@ -42240,7 +43265,7 @@ def is_showcase_file_added(self): :rtype: bool """ - return self._tag == 'showcase_file_added' + return self._tag == "showcase_file_added" def is_showcase_file_download(self): """ @@ -42248,7 +43273,7 @@ def is_showcase_file_download(self): :rtype: bool """ - return self._tag == 'showcase_file_download' + return self._tag == "showcase_file_download" def is_showcase_file_removed(self): """ @@ -42256,7 +43281,7 @@ def is_showcase_file_removed(self): :rtype: bool """ - return self._tag == 'showcase_file_removed' + return self._tag == "showcase_file_removed" def is_showcase_file_view(self): """ @@ -42264,7 +43289,7 @@ def is_showcase_file_view(self): :rtype: bool """ - return self._tag == 'showcase_file_view' + return self._tag == "showcase_file_view" def is_showcase_permanently_deleted(self): """ @@ -42272,7 +43297,7 @@ def is_showcase_permanently_deleted(self): :rtype: bool """ - return self._tag == 'showcase_permanently_deleted' + return self._tag == "showcase_permanently_deleted" def is_showcase_post_comment(self): """ @@ -42280,7 +43305,7 @@ def is_showcase_post_comment(self): :rtype: bool """ - return self._tag == 'showcase_post_comment' + return self._tag == "showcase_post_comment" def is_showcase_remove_member(self): """ @@ -42288,7 +43313,7 @@ def is_showcase_remove_member(self): :rtype: bool """ - return self._tag == 'showcase_remove_member' + return self._tag == "showcase_remove_member" def is_showcase_renamed(self): """ @@ -42296,7 +43321,7 @@ def is_showcase_renamed(self): :rtype: bool """ - return self._tag == 'showcase_renamed' + return self._tag == "showcase_renamed" def is_showcase_request_access(self): """ @@ -42304,7 +43329,7 @@ def is_showcase_request_access(self): :rtype: bool """ - return self._tag == 'showcase_request_access' + return self._tag == "showcase_request_access" def is_showcase_resolve_comment(self): """ @@ -42312,7 +43337,7 @@ def is_showcase_resolve_comment(self): :rtype: bool """ - return self._tag == 'showcase_resolve_comment' + return self._tag == "showcase_resolve_comment" def is_showcase_restored(self): """ @@ -42320,7 +43345,7 @@ def is_showcase_restored(self): :rtype: bool """ - return self._tag == 'showcase_restored' + return self._tag == "showcase_restored" def is_showcase_trashed(self): """ @@ -42328,7 +43353,7 @@ def is_showcase_trashed(self): :rtype: bool """ - return self._tag == 'showcase_trashed' + return self._tag == "showcase_trashed" def is_showcase_trashed_deprecated(self): """ @@ -42336,7 +43361,7 @@ def is_showcase_trashed_deprecated(self): :rtype: bool """ - return self._tag == 'showcase_trashed_deprecated' + return self._tag == "showcase_trashed_deprecated" def is_showcase_unresolve_comment(self): """ @@ -42344,7 +43369,7 @@ def is_showcase_unresolve_comment(self): :rtype: bool """ - return self._tag == 'showcase_unresolve_comment' + return self._tag == "showcase_unresolve_comment" def is_showcase_untrashed(self): """ @@ -42352,7 +43377,7 @@ def is_showcase_untrashed(self): :rtype: bool """ - return self._tag == 'showcase_untrashed' + return self._tag == "showcase_untrashed" def is_showcase_untrashed_deprecated(self): """ @@ -42360,7 +43385,7 @@ def is_showcase_untrashed_deprecated(self): :rtype: bool """ - return self._tag == 'showcase_untrashed_deprecated' + return self._tag == "showcase_untrashed_deprecated" def is_showcase_view(self): """ @@ -42368,7 +43393,7 @@ def is_showcase_view(self): :rtype: bool """ - return self._tag == 'showcase_view' + return self._tag == "showcase_view" def is_sign_signature_request_canceled(self): """ @@ -42376,7 +43401,7 @@ def is_sign_signature_request_canceled(self): :rtype: bool """ - return self._tag == 'sign_signature_request_canceled' + return self._tag == "sign_signature_request_canceled" def is_sign_signature_request_completed(self): """ @@ -42384,7 +43409,7 @@ def is_sign_signature_request_completed(self): :rtype: bool """ - return self._tag == 'sign_signature_request_completed' + return self._tag == "sign_signature_request_completed" def is_sign_signature_request_declined(self): """ @@ -42392,7 +43417,7 @@ def is_sign_signature_request_declined(self): :rtype: bool """ - return self._tag == 'sign_signature_request_declined' + return self._tag == "sign_signature_request_declined" def is_sign_signature_request_opened(self): """ @@ -42400,7 +43425,7 @@ def is_sign_signature_request_opened(self): :rtype: bool """ - return self._tag == 'sign_signature_request_opened' + return self._tag == "sign_signature_request_opened" def is_sign_signature_request_reminder_sent(self): """ @@ -42408,7 +43433,7 @@ def is_sign_signature_request_reminder_sent(self): :rtype: bool """ - return self._tag == 'sign_signature_request_reminder_sent' + return self._tag == "sign_signature_request_reminder_sent" def is_sign_signature_request_sent(self): """ @@ -42416,7 +43441,7 @@ def is_sign_signature_request_sent(self): :rtype: bool """ - return self._tag == 'sign_signature_request_sent' + return self._tag == "sign_signature_request_sent" def is_sign_template_created(self): """ @@ -42424,7 +43449,7 @@ def is_sign_template_created(self): :rtype: bool """ - return self._tag == 'sign_template_created' + return self._tag == "sign_template_created" def is_sign_template_shared(self): """ @@ -42432,7 +43457,7 @@ def is_sign_template_shared(self): :rtype: bool """ - return self._tag == 'sign_template_shared' + return self._tag == "sign_template_shared" def is_risc_security_event(self): """ @@ -42440,7 +43465,7 @@ def is_risc_security_event(self): :rtype: bool """ - return self._tag == 'risc_security_event' + return self._tag == "risc_security_event" def is_sso_add_cert(self): """ @@ -42448,7 +43473,7 @@ def is_sso_add_cert(self): :rtype: bool """ - return self._tag == 'sso_add_cert' + return self._tag == "sso_add_cert" def is_sso_add_login_url(self): """ @@ -42456,7 +43481,7 @@ def is_sso_add_login_url(self): :rtype: bool """ - return self._tag == 'sso_add_login_url' + return self._tag == "sso_add_login_url" def is_sso_add_logout_url(self): """ @@ -42464,7 +43489,7 @@ def is_sso_add_logout_url(self): :rtype: bool """ - return self._tag == 'sso_add_logout_url' + return self._tag == "sso_add_logout_url" def is_sso_change_cert(self): """ @@ -42472,7 +43497,7 @@ def is_sso_change_cert(self): :rtype: bool """ - return self._tag == 'sso_change_cert' + return self._tag == "sso_change_cert" def is_sso_change_login_url(self): """ @@ -42480,7 +43505,7 @@ def is_sso_change_login_url(self): :rtype: bool """ - return self._tag == 'sso_change_login_url' + return self._tag == "sso_change_login_url" def is_sso_change_logout_url(self): """ @@ -42488,7 +43513,7 @@ def is_sso_change_logout_url(self): :rtype: bool """ - return self._tag == 'sso_change_logout_url' + return self._tag == "sso_change_logout_url" def is_sso_change_saml_identity_mode(self): """ @@ -42496,7 +43521,7 @@ def is_sso_change_saml_identity_mode(self): :rtype: bool """ - return self._tag == 'sso_change_saml_identity_mode' + return self._tag == "sso_change_saml_identity_mode" def is_sso_remove_cert(self): """ @@ -42504,7 +43529,7 @@ def is_sso_remove_cert(self): :rtype: bool """ - return self._tag == 'sso_remove_cert' + return self._tag == "sso_remove_cert" def is_sso_remove_login_url(self): """ @@ -42512,7 +43537,7 @@ def is_sso_remove_login_url(self): :rtype: bool """ - return self._tag == 'sso_remove_login_url' + return self._tag == "sso_remove_login_url" def is_sso_remove_logout_url(self): """ @@ -42520,7 +43545,7 @@ def is_sso_remove_logout_url(self): :rtype: bool """ - return self._tag == 'sso_remove_logout_url' + return self._tag == "sso_remove_logout_url" def is_team_folder_change_status(self): """ @@ -42528,7 +43553,7 @@ def is_team_folder_change_status(self): :rtype: bool """ - return self._tag == 'team_folder_change_status' + return self._tag == "team_folder_change_status" def is_team_folder_create(self): """ @@ -42536,7 +43561,7 @@ def is_team_folder_create(self): :rtype: bool """ - return self._tag == 'team_folder_create' + return self._tag == "team_folder_create" def is_team_folder_downgrade(self): """ @@ -42544,7 +43569,7 @@ def is_team_folder_downgrade(self): :rtype: bool """ - return self._tag == 'team_folder_downgrade' + return self._tag == "team_folder_downgrade" def is_team_folder_permanently_delete(self): """ @@ -42552,7 +43577,7 @@ def is_team_folder_permanently_delete(self): :rtype: bool """ - return self._tag == 'team_folder_permanently_delete' + return self._tag == "team_folder_permanently_delete" def is_team_folder_rename(self): """ @@ -42560,7 +43585,7 @@ def is_team_folder_rename(self): :rtype: bool """ - return self._tag == 'team_folder_rename' + return self._tag == "team_folder_rename" def is_team_folder_space_limits_change_caps_type(self): """ @@ -42568,7 +43593,7 @@ def is_team_folder_space_limits_change_caps_type(self): :rtype: bool """ - return self._tag == 'team_folder_space_limits_change_caps_type' + return self._tag == "team_folder_space_limits_change_caps_type" def is_team_folder_space_limits_change_limit(self): """ @@ -42576,7 +43601,7 @@ def is_team_folder_space_limits_change_limit(self): :rtype: bool """ - return self._tag == 'team_folder_space_limits_change_limit' + return self._tag == "team_folder_space_limits_change_limit" def is_team_folder_space_limits_change_notification_target(self): """ @@ -42584,7 +43609,7 @@ def is_team_folder_space_limits_change_notification_target(self): :rtype: bool """ - return self._tag == 'team_folder_space_limits_change_notification_target' + return self._tag == "team_folder_space_limits_change_notification_target" def is_team_selective_sync_settings_changed(self): """ @@ -42592,7 +43617,7 @@ def is_team_selective_sync_settings_changed(self): :rtype: bool """ - return self._tag == 'team_selective_sync_settings_changed' + return self._tag == "team_selective_sync_settings_changed" def is_account_capture_change_policy(self): """ @@ -42600,7 +43625,7 @@ def is_account_capture_change_policy(self): :rtype: bool """ - return self._tag == 'account_capture_change_policy' + return self._tag == "account_capture_change_policy" def is_admin_email_reminders_changed(self): """ @@ -42608,7 +43633,7 @@ def is_admin_email_reminders_changed(self): :rtype: bool """ - return self._tag == 'admin_email_reminders_changed' + return self._tag == "admin_email_reminders_changed" def is_ai_third_party_sharing_dropbox_base_policy_changed(self): """ @@ -42616,7 +43641,7 @@ def is_ai_third_party_sharing_dropbox_base_policy_changed(self): :rtype: bool """ - return self._tag == 'ai_third_party_sharing_dropbox_base_policy_changed' + return self._tag == "ai_third_party_sharing_dropbox_base_policy_changed" def is_allow_download_disabled(self): """ @@ -42624,7 +43649,7 @@ def is_allow_download_disabled(self): :rtype: bool """ - return self._tag == 'allow_download_disabled' + return self._tag == "allow_download_disabled" def is_allow_download_enabled(self): """ @@ -42632,7 +43657,7 @@ def is_allow_download_enabled(self): :rtype: bool """ - return self._tag == 'allow_download_enabled' + return self._tag == "allow_download_enabled" def is_apple_login_change_policy(self): """ @@ -42640,7 +43665,7 @@ def is_apple_login_change_policy(self): :rtype: bool """ - return self._tag == 'apple_login_change_policy' + return self._tag == "apple_login_change_policy" def is_app_permissions_changed(self): """ @@ -42648,7 +43673,7 @@ def is_app_permissions_changed(self): :rtype: bool """ - return self._tag == 'app_permissions_changed' + return self._tag == "app_permissions_changed" def is_camera_uploads_policy_changed(self): """ @@ -42656,7 +43681,7 @@ def is_camera_uploads_policy_changed(self): :rtype: bool """ - return self._tag == 'camera_uploads_policy_changed' + return self._tag == "camera_uploads_policy_changed" def is_capture_team_space_policy_changed(self): """ @@ -42664,7 +43689,7 @@ def is_capture_team_space_policy_changed(self): :rtype: bool """ - return self._tag == 'capture_team_space_policy_changed' + return self._tag == "capture_team_space_policy_changed" def is_capture_transcript_policy_changed(self): """ @@ -42672,7 +43697,7 @@ def is_capture_transcript_policy_changed(self): :rtype: bool """ - return self._tag == 'capture_transcript_policy_changed' + return self._tag == "capture_transcript_policy_changed" def is_classification_change_policy(self): """ @@ -42680,7 +43705,7 @@ def is_classification_change_policy(self): :rtype: bool """ - return self._tag == 'classification_change_policy' + return self._tag == "classification_change_policy" def is_computer_backup_policy_changed(self): """ @@ -42688,7 +43713,7 @@ def is_computer_backup_policy_changed(self): :rtype: bool """ - return self._tag == 'computer_backup_policy_changed' + return self._tag == "computer_backup_policy_changed" def is_content_administration_policy_changed(self): """ @@ -42696,7 +43721,7 @@ def is_content_administration_policy_changed(self): :rtype: bool """ - return self._tag == 'content_administration_policy_changed' + return self._tag == "content_administration_policy_changed" def is_content_deletion_protection_change_policy(self): """ @@ -42704,7 +43729,7 @@ def is_content_deletion_protection_change_policy(self): :rtype: bool """ - return self._tag == 'content_deletion_protection_change_policy' + return self._tag == "content_deletion_protection_change_policy" def is_dash_external_sharing_policy_changed(self): """ @@ -42712,7 +43737,7 @@ def is_dash_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'dash_external_sharing_policy_changed' + return self._tag == "dash_external_sharing_policy_changed" def is_data_placement_restriction_change_policy(self): """ @@ -42720,7 +43745,7 @@ def is_data_placement_restriction_change_policy(self): :rtype: bool """ - return self._tag == 'data_placement_restriction_change_policy' + return self._tag == "data_placement_restriction_change_policy" def is_data_placement_restriction_satisfy_policy(self): """ @@ -42728,7 +43753,7 @@ def is_data_placement_restriction_satisfy_policy(self): :rtype: bool """ - return self._tag == 'data_placement_restriction_satisfy_policy' + return self._tag == "data_placement_restriction_satisfy_policy" def is_device_approvals_add_exception(self): """ @@ -42736,7 +43761,7 @@ def is_device_approvals_add_exception(self): :rtype: bool """ - return self._tag == 'device_approvals_add_exception' + return self._tag == "device_approvals_add_exception" def is_device_approvals_change_desktop_policy(self): """ @@ -42744,7 +43769,7 @@ def is_device_approvals_change_desktop_policy(self): :rtype: bool """ - return self._tag == 'device_approvals_change_desktop_policy' + return self._tag == "device_approvals_change_desktop_policy" def is_device_approvals_change_mobile_policy(self): """ @@ -42752,7 +43777,7 @@ def is_device_approvals_change_mobile_policy(self): :rtype: bool """ - return self._tag == 'device_approvals_change_mobile_policy' + return self._tag == "device_approvals_change_mobile_policy" def is_device_approvals_change_overage_action(self): """ @@ -42760,7 +43785,7 @@ def is_device_approvals_change_overage_action(self): :rtype: bool """ - return self._tag == 'device_approvals_change_overage_action' + return self._tag == "device_approvals_change_overage_action" def is_device_approvals_change_unlink_action(self): """ @@ -42768,7 +43793,7 @@ def is_device_approvals_change_unlink_action(self): :rtype: bool """ - return self._tag == 'device_approvals_change_unlink_action' + return self._tag == "device_approvals_change_unlink_action" def is_device_approvals_remove_exception(self): """ @@ -42776,7 +43801,7 @@ def is_device_approvals_remove_exception(self): :rtype: bool """ - return self._tag == 'device_approvals_remove_exception' + return self._tag == "device_approvals_remove_exception" def is_directory_restrictions_add_members(self): """ @@ -42784,7 +43809,7 @@ def is_directory_restrictions_add_members(self): :rtype: bool """ - return self._tag == 'directory_restrictions_add_members' + return self._tag == "directory_restrictions_add_members" def is_directory_restrictions_remove_members(self): """ @@ -42792,7 +43817,7 @@ def is_directory_restrictions_remove_members(self): :rtype: bool """ - return self._tag == 'directory_restrictions_remove_members' + return self._tag == "directory_restrictions_remove_members" def is_dropbox_passwords_policy_changed(self): """ @@ -42800,7 +43825,7 @@ def is_dropbox_passwords_policy_changed(self): :rtype: bool """ - return self._tag == 'dropbox_passwords_policy_changed' + return self._tag == "dropbox_passwords_policy_changed" def is_email_ingest_policy_changed(self): """ @@ -42808,7 +43833,7 @@ def is_email_ingest_policy_changed(self): :rtype: bool """ - return self._tag == 'email_ingest_policy_changed' + return self._tag == "email_ingest_policy_changed" def is_emm_add_exception(self): """ @@ -42816,7 +43841,7 @@ def is_emm_add_exception(self): :rtype: bool """ - return self._tag == 'emm_add_exception' + return self._tag == "emm_add_exception" def is_emm_change_policy(self): """ @@ -42824,7 +43849,7 @@ def is_emm_change_policy(self): :rtype: bool """ - return self._tag == 'emm_change_policy' + return self._tag == "emm_change_policy" def is_emm_remove_exception(self): """ @@ -42832,7 +43857,7 @@ def is_emm_remove_exception(self): :rtype: bool """ - return self._tag == 'emm_remove_exception' + return self._tag == "emm_remove_exception" def is_extended_version_history_change_policy(self): """ @@ -42840,7 +43865,7 @@ def is_extended_version_history_change_policy(self): :rtype: bool """ - return self._tag == 'extended_version_history_change_policy' + return self._tag == "extended_version_history_change_policy" def is_external_drive_backup_policy_changed(self): """ @@ -42848,7 +43873,7 @@ def is_external_drive_backup_policy_changed(self): :rtype: bool """ - return self._tag == 'external_drive_backup_policy_changed' + return self._tag == "external_drive_backup_policy_changed" def is_file_comments_change_policy(self): """ @@ -42856,7 +43881,7 @@ def is_file_comments_change_policy(self): :rtype: bool """ - return self._tag == 'file_comments_change_policy' + return self._tag == "file_comments_change_policy" def is_file_locking_policy_changed(self): """ @@ -42864,7 +43889,7 @@ def is_file_locking_policy_changed(self): :rtype: bool """ - return self._tag == 'file_locking_policy_changed' + return self._tag == "file_locking_policy_changed" def is_file_provider_migration_policy_changed(self): """ @@ -42872,7 +43897,7 @@ def is_file_provider_migration_policy_changed(self): :rtype: bool """ - return self._tag == 'file_provider_migration_policy_changed' + return self._tag == "file_provider_migration_policy_changed" def is_file_requests_change_policy(self): """ @@ -42880,7 +43905,7 @@ def is_file_requests_change_policy(self): :rtype: bool """ - return self._tag == 'file_requests_change_policy' + return self._tag == "file_requests_change_policy" def is_file_requests_emails_enabled(self): """ @@ -42888,7 +43913,7 @@ def is_file_requests_emails_enabled(self): :rtype: bool """ - return self._tag == 'file_requests_emails_enabled' + return self._tag == "file_requests_emails_enabled" def is_file_requests_emails_restricted_to_team_only(self): """ @@ -42896,7 +43921,7 @@ def is_file_requests_emails_restricted_to_team_only(self): :rtype: bool """ - return self._tag == 'file_requests_emails_restricted_to_team_only' + return self._tag == "file_requests_emails_restricted_to_team_only" def is_file_transfers_policy_changed(self): """ @@ -42904,7 +43929,7 @@ def is_file_transfers_policy_changed(self): :rtype: bool """ - return self._tag == 'file_transfers_policy_changed' + return self._tag == "file_transfers_policy_changed" def is_flexible_file_names_policy_changed(self): """ @@ -42912,7 +43937,7 @@ def is_flexible_file_names_policy_changed(self): :rtype: bool """ - return self._tag == 'flexible_file_names_policy_changed' + return self._tag == "flexible_file_names_policy_changed" def is_folder_link_restriction_policy_changed(self): """ @@ -42920,7 +43945,7 @@ def is_folder_link_restriction_policy_changed(self): :rtype: bool """ - return self._tag == 'folder_link_restriction_policy_changed' + return self._tag == "folder_link_restriction_policy_changed" def is_google_sso_change_policy(self): """ @@ -42928,7 +43953,7 @@ def is_google_sso_change_policy(self): :rtype: bool """ - return self._tag == 'google_sso_change_policy' + return self._tag == "google_sso_change_policy" def is_group_user_management_change_policy(self): """ @@ -42936,7 +43961,7 @@ def is_group_user_management_change_policy(self): :rtype: bool """ - return self._tag == 'group_user_management_change_policy' + return self._tag == "group_user_management_change_policy" def is_integration_policy_changed(self): """ @@ -42944,7 +43969,7 @@ def is_integration_policy_changed(self): :rtype: bool """ - return self._tag == 'integration_policy_changed' + return self._tag == "integration_policy_changed" def is_invite_acceptance_email_policy_changed(self): """ @@ -42952,7 +43977,7 @@ def is_invite_acceptance_email_policy_changed(self): :rtype: bool """ - return self._tag == 'invite_acceptance_email_policy_changed' + return self._tag == "invite_acceptance_email_policy_changed" def is_media_hub_adding_people_policy_changed(self): """ @@ -42960,7 +43985,7 @@ def is_media_hub_adding_people_policy_changed(self): :rtype: bool """ - return self._tag == 'media_hub_adding_people_policy_changed' + return self._tag == "media_hub_adding_people_policy_changed" def is_media_hub_download_policy_changed(self): """ @@ -42968,7 +43993,7 @@ def is_media_hub_download_policy_changed(self): :rtype: bool """ - return self._tag == 'media_hub_download_policy_changed' + return self._tag == "media_hub_download_policy_changed" def is_media_hub_link_sharing_policy_changed(self): """ @@ -42976,7 +44001,7 @@ def is_media_hub_link_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'media_hub_link_sharing_policy_changed' + return self._tag == "media_hub_link_sharing_policy_changed" def is_member_requests_change_policy(self): """ @@ -42984,7 +44009,7 @@ def is_member_requests_change_policy(self): :rtype: bool """ - return self._tag == 'member_requests_change_policy' + return self._tag == "member_requests_change_policy" def is_member_send_invite_policy_changed(self): """ @@ -42992,7 +44017,7 @@ def is_member_send_invite_policy_changed(self): :rtype: bool """ - return self._tag == 'member_send_invite_policy_changed' + return self._tag == "member_send_invite_policy_changed" def is_member_space_limits_add_exception(self): """ @@ -43000,7 +44025,7 @@ def is_member_space_limits_add_exception(self): :rtype: bool """ - return self._tag == 'member_space_limits_add_exception' + return self._tag == "member_space_limits_add_exception" def is_member_space_limits_change_caps_type_policy(self): """ @@ -43008,7 +44033,7 @@ def is_member_space_limits_change_caps_type_policy(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_caps_type_policy' + return self._tag == "member_space_limits_change_caps_type_policy" def is_member_space_limits_change_policy(self): """ @@ -43016,7 +44041,7 @@ def is_member_space_limits_change_policy(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_policy' + return self._tag == "member_space_limits_change_policy" def is_member_space_limits_remove_exception(self): """ @@ -43024,7 +44049,7 @@ def is_member_space_limits_remove_exception(self): :rtype: bool """ - return self._tag == 'member_space_limits_remove_exception' + return self._tag == "member_space_limits_remove_exception" def is_member_suggestions_change_policy(self): """ @@ -43032,7 +44057,7 @@ def is_member_suggestions_change_policy(self): :rtype: bool """ - return self._tag == 'member_suggestions_change_policy' + return self._tag == "member_suggestions_change_policy" def is_microsoft_login_change_policy(self): """ @@ -43040,7 +44065,7 @@ def is_microsoft_login_change_policy(self): :rtype: bool """ - return self._tag == 'microsoft_login_change_policy' + return self._tag == "microsoft_login_change_policy" def is_microsoft_office_addin_change_policy(self): """ @@ -43048,7 +44073,7 @@ def is_microsoft_office_addin_change_policy(self): :rtype: bool """ - return self._tag == 'microsoft_office_addin_change_policy' + return self._tag == "microsoft_office_addin_change_policy" def is_multi_team_identity_policy_changed(self): """ @@ -43056,7 +44081,7 @@ def is_multi_team_identity_policy_changed(self): :rtype: bool """ - return self._tag == 'multi_team_identity_policy_changed' + return self._tag == "multi_team_identity_policy_changed" def is_network_control_change_policy(self): """ @@ -43064,7 +44089,7 @@ def is_network_control_change_policy(self): :rtype: bool """ - return self._tag == 'network_control_change_policy' + return self._tag == "network_control_change_policy" def is_paper_change_deployment_policy(self): """ @@ -43072,7 +44097,7 @@ def is_paper_change_deployment_policy(self): :rtype: bool """ - return self._tag == 'paper_change_deployment_policy' + return self._tag == "paper_change_deployment_policy" def is_paper_change_member_link_policy(self): """ @@ -43080,7 +44105,7 @@ def is_paper_change_member_link_policy(self): :rtype: bool """ - return self._tag == 'paper_change_member_link_policy' + return self._tag == "paper_change_member_link_policy" def is_paper_change_member_policy(self): """ @@ -43088,7 +44113,7 @@ def is_paper_change_member_policy(self): :rtype: bool """ - return self._tag == 'paper_change_member_policy' + return self._tag == "paper_change_member_policy" def is_paper_change_policy(self): """ @@ -43096,7 +44121,7 @@ def is_paper_change_policy(self): :rtype: bool """ - return self._tag == 'paper_change_policy' + return self._tag == "paper_change_policy" def is_paper_default_folder_policy_changed(self): """ @@ -43104,7 +44129,7 @@ def is_paper_default_folder_policy_changed(self): :rtype: bool """ - return self._tag == 'paper_default_folder_policy_changed' + return self._tag == "paper_default_folder_policy_changed" def is_paper_desktop_policy_changed(self): """ @@ -43112,7 +44137,7 @@ def is_paper_desktop_policy_changed(self): :rtype: bool """ - return self._tag == 'paper_desktop_policy_changed' + return self._tag == "paper_desktop_policy_changed" def is_paper_enabled_users_group_addition(self): """ @@ -43120,7 +44145,7 @@ def is_paper_enabled_users_group_addition(self): :rtype: bool """ - return self._tag == 'paper_enabled_users_group_addition' + return self._tag == "paper_enabled_users_group_addition" def is_paper_enabled_users_group_removal(self): """ @@ -43128,7 +44153,7 @@ def is_paper_enabled_users_group_removal(self): :rtype: bool """ - return self._tag == 'paper_enabled_users_group_removal' + return self._tag == "paper_enabled_users_group_removal" def is_passkey_login_policy_changed(self): """ @@ -43136,7 +44161,7 @@ def is_passkey_login_policy_changed(self): :rtype: bool """ - return self._tag == 'passkey_login_policy_changed' + return self._tag == "passkey_login_policy_changed" def is_password_strength_requirements_change_policy(self): """ @@ -43144,7 +44169,7 @@ def is_password_strength_requirements_change_policy(self): :rtype: bool """ - return self._tag == 'password_strength_requirements_change_policy' + return self._tag == "password_strength_requirements_change_policy" def is_permanent_delete_change_policy(self): """ @@ -43152,7 +44177,7 @@ def is_permanent_delete_change_policy(self): :rtype: bool """ - return self._tag == 'permanent_delete_change_policy' + return self._tag == "permanent_delete_change_policy" def is_previews_ai_policy_changed(self): """ @@ -43160,7 +44185,7 @@ def is_previews_ai_policy_changed(self): :rtype: bool """ - return self._tag == 'previews_ai_policy_changed' + return self._tag == "previews_ai_policy_changed" def is_replay_adding_people_policy_changed(self): """ @@ -43168,7 +44193,7 @@ def is_replay_adding_people_policy_changed(self): :rtype: bool """ - return self._tag == 'replay_adding_people_policy_changed' + return self._tag == "replay_adding_people_policy_changed" def is_replay_sharing_policy_changed(self): """ @@ -43176,7 +44201,7 @@ def is_replay_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'replay_sharing_policy_changed' + return self._tag == "replay_sharing_policy_changed" def is_reseller_support_change_policy(self): """ @@ -43184,7 +44209,7 @@ def is_reseller_support_change_policy(self): :rtype: bool """ - return self._tag == 'reseller_support_change_policy' + return self._tag == "reseller_support_change_policy" def is_rewind_policy_changed(self): """ @@ -43192,7 +44217,7 @@ def is_rewind_policy_changed(self): :rtype: bool """ - return self._tag == 'rewind_policy_changed' + return self._tag == "rewind_policy_changed" def is_send_and_track_policy_changed(self): """ @@ -43200,7 +44225,7 @@ def is_send_and_track_policy_changed(self): :rtype: bool """ - return self._tag == 'send_and_track_policy_changed' + return self._tag == "send_and_track_policy_changed" def is_send_external_sharing_policy_changed(self): """ @@ -43208,7 +44233,7 @@ def is_send_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'send_external_sharing_policy_changed' + return self._tag == "send_external_sharing_policy_changed" def is_send_for_signature_policy_changed(self): """ @@ -43216,7 +44241,7 @@ def is_send_for_signature_policy_changed(self): :rtype: bool """ - return self._tag == 'send_for_signature_policy_changed' + return self._tag == "send_for_signature_policy_changed" def is_shared_link_default_permissions_policy_changed(self): """ @@ -43224,7 +44249,7 @@ def is_shared_link_default_permissions_policy_changed(self): :rtype: bool """ - return self._tag == 'shared_link_default_permissions_policy_changed' + return self._tag == "shared_link_default_permissions_policy_changed" def is_sharing_change_folder_join_policy(self): """ @@ -43232,7 +44257,7 @@ def is_sharing_change_folder_join_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_folder_join_policy' + return self._tag == "sharing_change_folder_join_policy" def is_sharing_change_link_allow_change_expiration_policy(self): """ @@ -43240,7 +44265,7 @@ def is_sharing_change_link_allow_change_expiration_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_link_allow_change_expiration_policy' + return self._tag == "sharing_change_link_allow_change_expiration_policy" def is_sharing_change_link_default_expiration_policy(self): """ @@ -43248,7 +44273,7 @@ def is_sharing_change_link_default_expiration_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_link_default_expiration_policy' + return self._tag == "sharing_change_link_default_expiration_policy" def is_sharing_change_link_enforce_password_policy(self): """ @@ -43256,7 +44281,7 @@ def is_sharing_change_link_enforce_password_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_link_enforce_password_policy' + return self._tag == "sharing_change_link_enforce_password_policy" def is_sharing_change_link_policy(self): """ @@ -43264,7 +44289,7 @@ def is_sharing_change_link_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_link_policy' + return self._tag == "sharing_change_link_policy" def is_sharing_change_member_policy(self): """ @@ -43272,7 +44297,7 @@ def is_sharing_change_member_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_member_policy' + return self._tag == "sharing_change_member_policy" def is_showcase_change_download_policy(self): """ @@ -43280,7 +44305,7 @@ def is_showcase_change_download_policy(self): :rtype: bool """ - return self._tag == 'showcase_change_download_policy' + return self._tag == "showcase_change_download_policy" def is_showcase_change_enabled_policy(self): """ @@ -43288,7 +44313,7 @@ def is_showcase_change_enabled_policy(self): :rtype: bool """ - return self._tag == 'showcase_change_enabled_policy' + return self._tag == "showcase_change_enabled_policy" def is_showcase_change_external_sharing_policy(self): """ @@ -43296,7 +44321,7 @@ def is_showcase_change_external_sharing_policy(self): :rtype: bool """ - return self._tag == 'showcase_change_external_sharing_policy' + return self._tag == "showcase_change_external_sharing_policy" def is_sign_external_sharing_policy_changed(self): """ @@ -43304,7 +44329,7 @@ def is_sign_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'sign_external_sharing_policy_changed' + return self._tag == "sign_external_sharing_policy_changed" def is_sign_template_creation_permission_changed(self): """ @@ -43312,7 +44337,7 @@ def is_sign_template_creation_permission_changed(self): :rtype: bool """ - return self._tag == 'sign_template_creation_permission_changed' + return self._tag == "sign_template_creation_permission_changed" def is_smarter_smart_sync_policy_changed(self): """ @@ -43320,7 +44345,7 @@ def is_smarter_smart_sync_policy_changed(self): :rtype: bool """ - return self._tag == 'smarter_smart_sync_policy_changed' + return self._tag == "smarter_smart_sync_policy_changed" def is_smart_sync_change_policy(self): """ @@ -43328,7 +44353,7 @@ def is_smart_sync_change_policy(self): :rtype: bool """ - return self._tag == 'smart_sync_change_policy' + return self._tag == "smart_sync_change_policy" def is_smart_sync_not_opt_out(self): """ @@ -43336,7 +44361,7 @@ def is_smart_sync_not_opt_out(self): :rtype: bool """ - return self._tag == 'smart_sync_not_opt_out' + return self._tag == "smart_sync_not_opt_out" def is_smart_sync_opt_out(self): """ @@ -43344,7 +44369,7 @@ def is_smart_sync_opt_out(self): :rtype: bool """ - return self._tag == 'smart_sync_opt_out' + return self._tag == "smart_sync_opt_out" def is_sso_change_policy(self): """ @@ -43352,7 +44377,7 @@ def is_sso_change_policy(self): :rtype: bool """ - return self._tag == 'sso_change_policy' + return self._tag == "sso_change_policy" def is_stack_cross_team_access_policy_changed(self): """ @@ -43360,7 +44385,7 @@ def is_stack_cross_team_access_policy_changed(self): :rtype: bool """ - return self._tag == 'stack_cross_team_access_policy_changed' + return self._tag == "stack_cross_team_access_policy_changed" def is_team_branding_policy_changed(self): """ @@ -43368,7 +44393,7 @@ def is_team_branding_policy_changed(self): :rtype: bool """ - return self._tag == 'team_branding_policy_changed' + return self._tag == "team_branding_policy_changed" def is_team_extensions_policy_changed(self): """ @@ -43376,7 +44401,7 @@ def is_team_extensions_policy_changed(self): :rtype: bool """ - return self._tag == 'team_extensions_policy_changed' + return self._tag == "team_extensions_policy_changed" def is_team_member_storage_request_policy_changed(self): """ @@ -43384,7 +44409,7 @@ def is_team_member_storage_request_policy_changed(self): :rtype: bool """ - return self._tag == 'team_member_storage_request_policy_changed' + return self._tag == "team_member_storage_request_policy_changed" def is_team_selective_sync_policy_changed(self): """ @@ -43392,7 +44417,7 @@ def is_team_selective_sync_policy_changed(self): :rtype: bool """ - return self._tag == 'team_selective_sync_policy_changed' + return self._tag == "team_selective_sync_policy_changed" def is_team_sharing_whitelist_subjects_changed(self): """ @@ -43400,7 +44425,7 @@ def is_team_sharing_whitelist_subjects_changed(self): :rtype: bool """ - return self._tag == 'team_sharing_whitelist_subjects_changed' + return self._tag == "team_sharing_whitelist_subjects_changed" def is_tfa_add_exception(self): """ @@ -43408,7 +44433,7 @@ def is_tfa_add_exception(self): :rtype: bool """ - return self._tag == 'tfa_add_exception' + return self._tag == "tfa_add_exception" def is_tfa_change_policy(self): """ @@ -43416,7 +44441,7 @@ def is_tfa_change_policy(self): :rtype: bool """ - return self._tag == 'tfa_change_policy' + return self._tag == "tfa_change_policy" def is_tfa_remove_exception(self): """ @@ -43424,7 +44449,7 @@ def is_tfa_remove_exception(self): :rtype: bool """ - return self._tag == 'tfa_remove_exception' + return self._tag == "tfa_remove_exception" def is_top_level_content_policy_changed(self): """ @@ -43432,7 +44457,7 @@ def is_top_level_content_policy_changed(self): :rtype: bool """ - return self._tag == 'top_level_content_policy_changed' + return self._tag == "top_level_content_policy_changed" def is_two_account_change_policy(self): """ @@ -43440,7 +44465,7 @@ def is_two_account_change_policy(self): :rtype: bool """ - return self._tag == 'two_account_change_policy' + return self._tag == "two_account_change_policy" def is_viewer_info_policy_changed(self): """ @@ -43448,7 +44473,7 @@ def is_viewer_info_policy_changed(self): :rtype: bool """ - return self._tag == 'viewer_info_policy_changed' + return self._tag == "viewer_info_policy_changed" def is_watermarking_policy_changed(self): """ @@ -43456,7 +44481,7 @@ def is_watermarking_policy_changed(self): :rtype: bool """ - return self._tag == 'watermarking_policy_changed' + return self._tag == "watermarking_policy_changed" def is_web_sessions_change_active_session_limit(self): """ @@ -43464,7 +44489,7 @@ def is_web_sessions_change_active_session_limit(self): :rtype: bool """ - return self._tag == 'web_sessions_change_active_session_limit' + return self._tag == "web_sessions_change_active_session_limit" def is_web_sessions_change_fixed_length_policy(self): """ @@ -43472,7 +44497,7 @@ def is_web_sessions_change_fixed_length_policy(self): :rtype: bool """ - return self._tag == 'web_sessions_change_fixed_length_policy' + return self._tag == "web_sessions_change_fixed_length_policy" def is_web_sessions_change_idle_length_policy(self): """ @@ -43480,7 +44505,7 @@ def is_web_sessions_change_idle_length_policy(self): :rtype: bool """ - return self._tag == 'web_sessions_change_idle_length_policy' + return self._tag == "web_sessions_change_idle_length_policy" def is_data_residency_migration_request_successful(self): """ @@ -43488,7 +44513,7 @@ def is_data_residency_migration_request_successful(self): :rtype: bool """ - return self._tag == 'data_residency_migration_request_successful' + return self._tag == "data_residency_migration_request_successful" def is_data_residency_migration_request_unsuccessful(self): """ @@ -43496,7 +44521,7 @@ def is_data_residency_migration_request_unsuccessful(self): :rtype: bool """ - return self._tag == 'data_residency_migration_request_unsuccessful' + return self._tag == "data_residency_migration_request_unsuccessful" def is_team_merge_from(self): """ @@ -43504,7 +44529,7 @@ def is_team_merge_from(self): :rtype: bool """ - return self._tag == 'team_merge_from' + return self._tag == "team_merge_from" def is_team_merge_to(self): """ @@ -43512,7 +44537,7 @@ def is_team_merge_to(self): :rtype: bool """ - return self._tag == 'team_merge_to' + return self._tag == "team_merge_to" def is_team_profile_add_background(self): """ @@ -43520,7 +44545,7 @@ def is_team_profile_add_background(self): :rtype: bool """ - return self._tag == 'team_profile_add_background' + return self._tag == "team_profile_add_background" def is_team_profile_add_logo(self): """ @@ -43528,7 +44553,7 @@ def is_team_profile_add_logo(self): :rtype: bool """ - return self._tag == 'team_profile_add_logo' + return self._tag == "team_profile_add_logo" def is_team_profile_change_background(self): """ @@ -43536,7 +44561,7 @@ def is_team_profile_change_background(self): :rtype: bool """ - return self._tag == 'team_profile_change_background' + return self._tag == "team_profile_change_background" def is_team_profile_change_default_language(self): """ @@ -43544,7 +44569,7 @@ def is_team_profile_change_default_language(self): :rtype: bool """ - return self._tag == 'team_profile_change_default_language' + return self._tag == "team_profile_change_default_language" def is_team_profile_change_logo(self): """ @@ -43552,7 +44577,7 @@ def is_team_profile_change_logo(self): :rtype: bool """ - return self._tag == 'team_profile_change_logo' + return self._tag == "team_profile_change_logo" def is_team_profile_change_name(self): """ @@ -43560,7 +44585,7 @@ def is_team_profile_change_name(self): :rtype: bool """ - return self._tag == 'team_profile_change_name' + return self._tag == "team_profile_change_name" def is_team_profile_remove_background(self): """ @@ -43568,7 +44593,7 @@ def is_team_profile_remove_background(self): :rtype: bool """ - return self._tag == 'team_profile_remove_background' + return self._tag == "team_profile_remove_background" def is_team_profile_remove_logo(self): """ @@ -43576,7 +44601,7 @@ def is_team_profile_remove_logo(self): :rtype: bool """ - return self._tag == 'team_profile_remove_logo' + return self._tag == "team_profile_remove_logo" def is_passkey_add(self): """ @@ -43584,7 +44609,7 @@ def is_passkey_add(self): :rtype: bool """ - return self._tag == 'passkey_add' + return self._tag == "passkey_add" def is_passkey_remove(self): """ @@ -43592,7 +44617,7 @@ def is_passkey_remove(self): :rtype: bool """ - return self._tag == 'passkey_remove' + return self._tag == "passkey_remove" def is_tfa_add_backup_phone(self): """ @@ -43600,7 +44625,7 @@ def is_tfa_add_backup_phone(self): :rtype: bool """ - return self._tag == 'tfa_add_backup_phone' + return self._tag == "tfa_add_backup_phone" def is_tfa_add_security_key(self): """ @@ -43608,7 +44633,7 @@ def is_tfa_add_security_key(self): :rtype: bool """ - return self._tag == 'tfa_add_security_key' + return self._tag == "tfa_add_security_key" def is_tfa_change_backup_phone(self): """ @@ -43616,7 +44641,7 @@ def is_tfa_change_backup_phone(self): :rtype: bool """ - return self._tag == 'tfa_change_backup_phone' + return self._tag == "tfa_change_backup_phone" def is_tfa_change_status(self): """ @@ -43624,7 +44649,7 @@ def is_tfa_change_status(self): :rtype: bool """ - return self._tag == 'tfa_change_status' + return self._tag == "tfa_change_status" def is_tfa_remove_backup_phone(self): """ @@ -43632,7 +44657,7 @@ def is_tfa_remove_backup_phone(self): :rtype: bool """ - return self._tag == 'tfa_remove_backup_phone' + return self._tag == "tfa_remove_backup_phone" def is_tfa_remove_security_key(self): """ @@ -43640,7 +44665,7 @@ def is_tfa_remove_security_key(self): :rtype: bool """ - return self._tag == 'tfa_remove_security_key' + return self._tag == "tfa_remove_security_key" def is_tfa_reset(self): """ @@ -43648,7 +44673,7 @@ def is_tfa_reset(self): :rtype: bool """ - return self._tag == 'tfa_reset' + return self._tag == "tfa_reset" def is_changed_enterprise_admin_role(self): """ @@ -43656,7 +44681,7 @@ def is_changed_enterprise_admin_role(self): :rtype: bool """ - return self._tag == 'changed_enterprise_admin_role' + return self._tag == "changed_enterprise_admin_role" def is_changed_enterprise_connected_team_status(self): """ @@ -43664,7 +44689,7 @@ def is_changed_enterprise_connected_team_status(self): :rtype: bool """ - return self._tag == 'changed_enterprise_connected_team_status' + return self._tag == "changed_enterprise_connected_team_status" def is_ended_enterprise_admin_session(self): """ @@ -43672,7 +44697,7 @@ def is_ended_enterprise_admin_session(self): :rtype: bool """ - return self._tag == 'ended_enterprise_admin_session' + return self._tag == "ended_enterprise_admin_session" def is_ended_enterprise_admin_session_deprecated(self): """ @@ -43680,7 +44705,7 @@ def is_ended_enterprise_admin_session_deprecated(self): :rtype: bool """ - return self._tag == 'ended_enterprise_admin_session_deprecated' + return self._tag == "ended_enterprise_admin_session_deprecated" def is_enterprise_settings_locking(self): """ @@ -43688,7 +44713,7 @@ def is_enterprise_settings_locking(self): :rtype: bool """ - return self._tag == 'enterprise_settings_locking' + return self._tag == "enterprise_settings_locking" def is_guest_admin_change_status(self): """ @@ -43696,7 +44721,7 @@ def is_guest_admin_change_status(self): :rtype: bool """ - return self._tag == 'guest_admin_change_status' + return self._tag == "guest_admin_change_status" def is_started_enterprise_admin_session(self): """ @@ -43704,7 +44729,7 @@ def is_started_enterprise_admin_session(self): :rtype: bool """ - return self._tag == 'started_enterprise_admin_session' + return self._tag == "started_enterprise_admin_session" def is_team_merge_request_accepted(self): """ @@ -43712,7 +44737,7 @@ def is_team_merge_request_accepted(self): :rtype: bool """ - return self._tag == 'team_merge_request_accepted' + return self._tag == "team_merge_request_accepted" def is_team_merge_request_accepted_shown_to_primary_team(self): """ @@ -43720,7 +44745,7 @@ def is_team_merge_request_accepted_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_accepted_shown_to_primary_team' + return self._tag == "team_merge_request_accepted_shown_to_primary_team" def is_team_merge_request_accepted_shown_to_secondary_team(self): """ @@ -43728,7 +44753,7 @@ def is_team_merge_request_accepted_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_accepted_shown_to_secondary_team' + return self._tag == "team_merge_request_accepted_shown_to_secondary_team" def is_team_merge_request_auto_canceled(self): """ @@ -43736,7 +44761,7 @@ def is_team_merge_request_auto_canceled(self): :rtype: bool """ - return self._tag == 'team_merge_request_auto_canceled' + return self._tag == "team_merge_request_auto_canceled" def is_team_merge_request_canceled(self): """ @@ -43744,7 +44769,7 @@ def is_team_merge_request_canceled(self): :rtype: bool """ - return self._tag == 'team_merge_request_canceled' + return self._tag == "team_merge_request_canceled" def is_team_merge_request_canceled_shown_to_primary_team(self): """ @@ -43752,7 +44777,7 @@ def is_team_merge_request_canceled_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_canceled_shown_to_primary_team' + return self._tag == "team_merge_request_canceled_shown_to_primary_team" def is_team_merge_request_canceled_shown_to_secondary_team(self): """ @@ -43760,7 +44785,7 @@ def is_team_merge_request_canceled_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_canceled_shown_to_secondary_team' + return self._tag == "team_merge_request_canceled_shown_to_secondary_team" def is_team_merge_request_expired(self): """ @@ -43768,7 +44793,7 @@ def is_team_merge_request_expired(self): :rtype: bool """ - return self._tag == 'team_merge_request_expired' + return self._tag == "team_merge_request_expired" def is_team_merge_request_expired_shown_to_primary_team(self): """ @@ -43776,7 +44801,7 @@ def is_team_merge_request_expired_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_expired_shown_to_primary_team' + return self._tag == "team_merge_request_expired_shown_to_primary_team" def is_team_merge_request_expired_shown_to_secondary_team(self): """ @@ -43784,7 +44809,7 @@ def is_team_merge_request_expired_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_expired_shown_to_secondary_team' + return self._tag == "team_merge_request_expired_shown_to_secondary_team" def is_team_merge_request_rejected_shown_to_primary_team(self): """ @@ -43792,7 +44817,7 @@ def is_team_merge_request_rejected_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_rejected_shown_to_primary_team' + return self._tag == "team_merge_request_rejected_shown_to_primary_team" def is_team_merge_request_rejected_shown_to_secondary_team(self): """ @@ -43800,7 +44825,7 @@ def is_team_merge_request_rejected_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_rejected_shown_to_secondary_team' + return self._tag == "team_merge_request_rejected_shown_to_secondary_team" def is_team_merge_request_reminder(self): """ @@ -43808,7 +44833,7 @@ def is_team_merge_request_reminder(self): :rtype: bool """ - return self._tag == 'team_merge_request_reminder' + return self._tag == "team_merge_request_reminder" def is_team_merge_request_reminder_shown_to_primary_team(self): """ @@ -43816,7 +44841,7 @@ def is_team_merge_request_reminder_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_reminder_shown_to_primary_team' + return self._tag == "team_merge_request_reminder_shown_to_primary_team" def is_team_merge_request_reminder_shown_to_secondary_team(self): """ @@ -43824,7 +44849,7 @@ def is_team_merge_request_reminder_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_reminder_shown_to_secondary_team' + return self._tag == "team_merge_request_reminder_shown_to_secondary_team" def is_team_merge_request_revoked(self): """ @@ -43832,7 +44857,7 @@ def is_team_merge_request_revoked(self): :rtype: bool """ - return self._tag == 'team_merge_request_revoked' + return self._tag == "team_merge_request_revoked" def is_team_merge_request_sent_shown_to_primary_team(self): """ @@ -43840,7 +44865,7 @@ def is_team_merge_request_sent_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_sent_shown_to_primary_team' + return self._tag == "team_merge_request_sent_shown_to_primary_team" def is_team_merge_request_sent_shown_to_secondary_team(self): """ @@ -43848,7 +44873,7 @@ def is_team_merge_request_sent_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_sent_shown_to_secondary_team' + return self._tag == "team_merge_request_sent_shown_to_secondary_team" def is_other(self): """ @@ -43856,7 +44881,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_admin_alerting_alert_state_changed(self): """ @@ -49419,7 +50444,9 @@ def get_team_folder_space_limits_change_notification_target(self): :rtype: TeamFolderSpaceLimitsChangeNotificationTargetType """ if not self.is_team_folder_space_limits_change_notification_target(): - raise AttributeError("tag 'team_folder_space_limits_change_notification_target' not set") + raise AttributeError( + "tag 'team_folder_space_limits_change_notification_target' not set" + ) return self._value def get_team_selective_sync_settings_changed(self): @@ -51170,7 +52197,9 @@ def get_team_merge_request_accepted_shown_to_secondary_team(self): :rtype: TeamMergeRequestAcceptedShownToSecondaryTeamType """ if not self.is_team_merge_request_accepted_shown_to_secondary_team(): - raise AttributeError("tag 'team_merge_request_accepted_shown_to_secondary_team' not set") + raise AttributeError( + "tag 'team_merge_request_accepted_shown_to_secondary_team' not set" + ) return self._value def get_team_merge_request_auto_canceled(self): @@ -51220,7 +52249,9 @@ def get_team_merge_request_canceled_shown_to_secondary_team(self): :rtype: TeamMergeRequestCanceledShownToSecondaryTeamType """ if not self.is_team_merge_request_canceled_shown_to_secondary_team(): - raise AttributeError("tag 'team_merge_request_canceled_shown_to_secondary_team' not set") + raise AttributeError( + "tag 'team_merge_request_canceled_shown_to_secondary_team' not set" + ) return self._value def get_team_merge_request_expired(self): @@ -51284,7 +52315,9 @@ def get_team_merge_request_rejected_shown_to_secondary_team(self): :rtype: TeamMergeRequestRejectedShownToSecondaryTeamType """ if not self.is_team_merge_request_rejected_shown_to_secondary_team(): - raise AttributeError("tag 'team_merge_request_rejected_shown_to_secondary_team' not set") + raise AttributeError( + "tag 'team_merge_request_rejected_shown_to_secondary_team' not set" + ) return self._value def get_team_merge_request_reminder(self): @@ -51322,7 +52355,9 @@ def get_team_merge_request_reminder_shown_to_secondary_team(self): :rtype: TeamMergeRequestReminderShownToSecondaryTeamType """ if not self.is_team_merge_request_reminder_shown_to_secondary_team(): - raise AttributeError("tag 'team_merge_request_reminder_shown_to_secondary_team' not set") + raise AttributeError( + "tag 'team_merge_request_reminder_shown_to_secondary_team' not set" + ) return self._value def get_team_merge_request_revoked(self): @@ -51364,8 +52399,10 @@ def get_team_merge_request_sent_shown_to_secondary_team(self): def _process_custom_annotations(self, annotation_type, field_path, processor): super(EventType, self)._process_custom_annotations(annotation_type, field_path, processor) + EventType_validator = bv.Union(EventType) + class EventTypeArg(bb.Union): """ The type of the event. @@ -52699,7 +53736,7 @@ class EventTypeArg(bb.Union): (trusted_teams) Requested to merge your team into another Dropbox team """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition admin_alerting_alert_state_changed = None # Attribute is overwritten below the class definition @@ -53945,7 +54982,7 @@ def is_admin_alerting_alert_state_changed(self): :rtype: bool """ - return self._tag == 'admin_alerting_alert_state_changed' + return self._tag == "admin_alerting_alert_state_changed" def is_admin_alerting_changed_alert_config(self): """ @@ -53953,7 +54990,7 @@ def is_admin_alerting_changed_alert_config(self): :rtype: bool """ - return self._tag == 'admin_alerting_changed_alert_config' + return self._tag == "admin_alerting_changed_alert_config" def is_admin_alerting_triggered_alert(self): """ @@ -53961,7 +54998,7 @@ def is_admin_alerting_triggered_alert(self): :rtype: bool """ - return self._tag == 'admin_alerting_triggered_alert' + return self._tag == "admin_alerting_triggered_alert" def is_ransomware_restore_process_completed(self): """ @@ -53969,7 +55006,7 @@ def is_ransomware_restore_process_completed(self): :rtype: bool """ - return self._tag == 'ransomware_restore_process_completed' + return self._tag == "ransomware_restore_process_completed" def is_ransomware_restore_process_started(self): """ @@ -53977,7 +55014,7 @@ def is_ransomware_restore_process_started(self): :rtype: bool """ - return self._tag == 'ransomware_restore_process_started' + return self._tag == "ransomware_restore_process_started" def is_app_blocked_by_permissions(self): """ @@ -53985,7 +55022,7 @@ def is_app_blocked_by_permissions(self): :rtype: bool """ - return self._tag == 'app_blocked_by_permissions' + return self._tag == "app_blocked_by_permissions" def is_app_link_team(self): """ @@ -53993,7 +55030,7 @@ def is_app_link_team(self): :rtype: bool """ - return self._tag == 'app_link_team' + return self._tag == "app_link_team" def is_app_link_user(self): """ @@ -54001,7 +55038,7 @@ def is_app_link_user(self): :rtype: bool """ - return self._tag == 'app_link_user' + return self._tag == "app_link_user" def is_app_unlink_team(self): """ @@ -54009,7 +55046,7 @@ def is_app_unlink_team(self): :rtype: bool """ - return self._tag == 'app_unlink_team' + return self._tag == "app_unlink_team" def is_app_unlink_user(self): """ @@ -54017,7 +55054,7 @@ def is_app_unlink_user(self): :rtype: bool """ - return self._tag == 'app_unlink_user' + return self._tag == "app_unlink_user" def is_integration_connected(self): """ @@ -54025,7 +55062,7 @@ def is_integration_connected(self): :rtype: bool """ - return self._tag == 'integration_connected' + return self._tag == "integration_connected" def is_integration_disconnected(self): """ @@ -54033,7 +55070,7 @@ def is_integration_disconnected(self): :rtype: bool """ - return self._tag == 'integration_disconnected' + return self._tag == "integration_disconnected" def is_file_add_comment(self): """ @@ -54041,7 +55078,7 @@ def is_file_add_comment(self): :rtype: bool """ - return self._tag == 'file_add_comment' + return self._tag == "file_add_comment" def is_file_change_comment_subscription(self): """ @@ -54049,7 +55086,7 @@ def is_file_change_comment_subscription(self): :rtype: bool """ - return self._tag == 'file_change_comment_subscription' + return self._tag == "file_change_comment_subscription" def is_file_delete_comment(self): """ @@ -54057,7 +55094,7 @@ def is_file_delete_comment(self): :rtype: bool """ - return self._tag == 'file_delete_comment' + return self._tag == "file_delete_comment" def is_file_edit_comment(self): """ @@ -54065,7 +55102,7 @@ def is_file_edit_comment(self): :rtype: bool """ - return self._tag == 'file_edit_comment' + return self._tag == "file_edit_comment" def is_file_like_comment(self): """ @@ -54073,7 +55110,7 @@ def is_file_like_comment(self): :rtype: bool """ - return self._tag == 'file_like_comment' + return self._tag == "file_like_comment" def is_file_resolve_comment(self): """ @@ -54081,7 +55118,7 @@ def is_file_resolve_comment(self): :rtype: bool """ - return self._tag == 'file_resolve_comment' + return self._tag == "file_resolve_comment" def is_file_unlike_comment(self): """ @@ -54089,7 +55126,7 @@ def is_file_unlike_comment(self): :rtype: bool """ - return self._tag == 'file_unlike_comment' + return self._tag == "file_unlike_comment" def is_file_unresolve_comment(self): """ @@ -54097,7 +55134,7 @@ def is_file_unresolve_comment(self): :rtype: bool """ - return self._tag == 'file_unresolve_comment' + return self._tag == "file_unresolve_comment" def is_dash_added_comment_to_stack(self): """ @@ -54105,7 +55142,7 @@ def is_dash_added_comment_to_stack(self): :rtype: bool """ - return self._tag == 'dash_added_comment_to_stack' + return self._tag == "dash_added_comment_to_stack" def is_dash_added_connector(self): """ @@ -54113,7 +55150,7 @@ def is_dash_added_connector(self): :rtype: bool """ - return self._tag == 'dash_added_connector' + return self._tag == "dash_added_connector" def is_dash_added_link_to_stack(self): """ @@ -54121,7 +55158,7 @@ def is_dash_added_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_added_link_to_stack' + return self._tag == "dash_added_link_to_stack" def is_dash_added_team_email_domain_allowlist(self): """ @@ -54129,7 +55166,7 @@ def is_dash_added_team_email_domain_allowlist(self): :rtype: bool """ - return self._tag == 'dash_added_team_email_domain_allowlist' + return self._tag == "dash_added_team_email_domain_allowlist" def is_dash_admin_added_org_wide_connector(self): """ @@ -54137,7 +55174,7 @@ def is_dash_admin_added_org_wide_connector(self): :rtype: bool """ - return self._tag == 'dash_admin_added_org_wide_connector' + return self._tag == "dash_admin_added_org_wide_connector" def is_dash_admin_disabled_connector(self): """ @@ -54145,7 +55182,7 @@ def is_dash_admin_disabled_connector(self): :rtype: bool """ - return self._tag == 'dash_admin_disabled_connector' + return self._tag == "dash_admin_disabled_connector" def is_dash_admin_enabled_connector(self): """ @@ -54153,7 +55190,7 @@ def is_dash_admin_enabled_connector(self): :rtype: bool """ - return self._tag == 'dash_admin_enabled_connector' + return self._tag == "dash_admin_enabled_connector" def is_dash_admin_removed_org_wide_connector(self): """ @@ -54161,7 +55198,7 @@ def is_dash_admin_removed_org_wide_connector(self): :rtype: bool """ - return self._tag == 'dash_admin_removed_org_wide_connector' + return self._tag == "dash_admin_removed_org_wide_connector" def is_dash_archived_stack(self): """ @@ -54169,7 +55206,7 @@ def is_dash_archived_stack(self): :rtype: bool """ - return self._tag == 'dash_archived_stack' + return self._tag == "dash_archived_stack" def is_dash_changed_audience_of_shared_link_to_stack(self): """ @@ -54177,7 +55214,7 @@ def is_dash_changed_audience_of_shared_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_changed_audience_of_shared_link_to_stack' + return self._tag == "dash_changed_audience_of_shared_link_to_stack" def is_dash_cloned_stack(self): """ @@ -54185,7 +55222,7 @@ def is_dash_cloned_stack(self): :rtype: bool """ - return self._tag == 'dash_cloned_stack' + return self._tag == "dash_cloned_stack" def is_dash_connector_tools_call(self): """ @@ -54193,7 +55230,7 @@ def is_dash_connector_tools_call(self): :rtype: bool """ - return self._tag == 'dash_connector_tools_call' + return self._tag == "dash_connector_tools_call" def is_dash_created_stack(self): """ @@ -54201,7 +55238,7 @@ def is_dash_created_stack(self): :rtype: bool """ - return self._tag == 'dash_created_stack' + return self._tag == "dash_created_stack" def is_dash_deleted_comment_from_stack(self): """ @@ -54209,7 +55246,7 @@ def is_dash_deleted_comment_from_stack(self): :rtype: bool """ - return self._tag == 'dash_deleted_comment_from_stack' + return self._tag == "dash_deleted_comment_from_stack" def is_dash_deleted_stack(self): """ @@ -54217,7 +55254,7 @@ def is_dash_deleted_stack(self): :rtype: bool """ - return self._tag == 'dash_deleted_stack' + return self._tag == "dash_deleted_stack" def is_dash_edited_comment_in_stack(self): """ @@ -54225,7 +55262,7 @@ def is_dash_edited_comment_in_stack(self): :rtype: bool """ - return self._tag == 'dash_edited_comment_in_stack' + return self._tag == "dash_edited_comment_in_stack" def is_dash_external_user_opened_stack(self): """ @@ -54233,7 +55270,7 @@ def is_dash_external_user_opened_stack(self): :rtype: bool """ - return self._tag == 'dash_external_user_opened_stack' + return self._tag == "dash_external_user_opened_stack" def is_dash_first_launched_desktop(self): """ @@ -54241,7 +55278,7 @@ def is_dash_first_launched_desktop(self): :rtype: bool """ - return self._tag == 'dash_first_launched_desktop' + return self._tag == "dash_first_launched_desktop" def is_dash_first_launched_extension(self): """ @@ -54249,7 +55286,7 @@ def is_dash_first_launched_extension(self): :rtype: bool """ - return self._tag == 'dash_first_launched_extension' + return self._tag == "dash_first_launched_extension" def is_dash_first_launched_web_start_page(self): """ @@ -54257,7 +55294,7 @@ def is_dash_first_launched_web_start_page(self): :rtype: bool """ - return self._tag == 'dash_first_launched_web_start_page' + return self._tag == "dash_first_launched_web_start_page" def is_dash_opened_shared_link_to_stack(self): """ @@ -54265,7 +55302,7 @@ def is_dash_opened_shared_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_opened_shared_link_to_stack' + return self._tag == "dash_opened_shared_link_to_stack" def is_dash_opened_stack(self): """ @@ -54273,7 +55310,7 @@ def is_dash_opened_stack(self): :rtype: bool """ - return self._tag == 'dash_opened_stack' + return self._tag == "dash_opened_stack" def is_dash_preview_opt_out_status_changed(self): """ @@ -54281,7 +55318,7 @@ def is_dash_preview_opt_out_status_changed(self): :rtype: bool """ - return self._tag == 'dash_preview_opt_out_status_changed' + return self._tag == "dash_preview_opt_out_status_changed" def is_dash_removed_connector(self): """ @@ -54289,7 +55326,7 @@ def is_dash_removed_connector(self): :rtype: bool """ - return self._tag == 'dash_removed_connector' + return self._tag == "dash_removed_connector" def is_dash_removed_link_from_stack(self): """ @@ -54297,7 +55334,7 @@ def is_dash_removed_link_from_stack(self): :rtype: bool """ - return self._tag == 'dash_removed_link_from_stack' + return self._tag == "dash_removed_link_from_stack" def is_dash_removed_shared_link_to_stack(self): """ @@ -54305,7 +55342,7 @@ def is_dash_removed_shared_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_removed_shared_link_to_stack' + return self._tag == "dash_removed_shared_link_to_stack" def is_dash_removed_team_email_domain_allowlist(self): """ @@ -54313,7 +55350,7 @@ def is_dash_removed_team_email_domain_allowlist(self): :rtype: bool """ - return self._tag == 'dash_removed_team_email_domain_allowlist' + return self._tag == "dash_removed_team_email_domain_allowlist" def is_dash_renamed_stack(self): """ @@ -54321,7 +55358,7 @@ def is_dash_renamed_stack(self): :rtype: bool """ - return self._tag == 'dash_renamed_stack' + return self._tag == "dash_renamed_stack" def is_dash_shared_link_to_stack(self): """ @@ -54329,7 +55366,7 @@ def is_dash_shared_link_to_stack(self): :rtype: bool """ - return self._tag == 'dash_shared_link_to_stack' + return self._tag == "dash_shared_link_to_stack" def is_dash_unarchived_stack(self): """ @@ -54337,7 +55374,7 @@ def is_dash_unarchived_stack(self): :rtype: bool """ - return self._tag == 'dash_unarchived_stack' + return self._tag == "dash_unarchived_stack" def is_dash_viewed_company_stack(self): """ @@ -54345,7 +55382,7 @@ def is_dash_viewed_company_stack(self): :rtype: bool """ - return self._tag == 'dash_viewed_company_stack' + return self._tag == "dash_viewed_company_stack" def is_dash_viewed_external_ai_activity_report(self): """ @@ -54353,7 +55390,7 @@ def is_dash_viewed_external_ai_activity_report(self): :rtype: bool """ - return self._tag == 'dash_viewed_external_ai_activity_report' + return self._tag == "dash_viewed_external_ai_activity_report" def is_governance_policy_add_folders(self): """ @@ -54361,7 +55398,7 @@ def is_governance_policy_add_folders(self): :rtype: bool """ - return self._tag == 'governance_policy_add_folders' + return self._tag == "governance_policy_add_folders" def is_governance_policy_add_folder_failed(self): """ @@ -54369,7 +55406,7 @@ def is_governance_policy_add_folder_failed(self): :rtype: bool """ - return self._tag == 'governance_policy_add_folder_failed' + return self._tag == "governance_policy_add_folder_failed" def is_governance_policy_content_disposed(self): """ @@ -54377,7 +55414,7 @@ def is_governance_policy_content_disposed(self): :rtype: bool """ - return self._tag == 'governance_policy_content_disposed' + return self._tag == "governance_policy_content_disposed" def is_governance_policy_create(self): """ @@ -54385,7 +55422,7 @@ def is_governance_policy_create(self): :rtype: bool """ - return self._tag == 'governance_policy_create' + return self._tag == "governance_policy_create" def is_governance_policy_delete(self): """ @@ -54393,7 +55430,7 @@ def is_governance_policy_delete(self): :rtype: bool """ - return self._tag == 'governance_policy_delete' + return self._tag == "governance_policy_delete" def is_governance_policy_edit_details(self): """ @@ -54401,7 +55438,7 @@ def is_governance_policy_edit_details(self): :rtype: bool """ - return self._tag == 'governance_policy_edit_details' + return self._tag == "governance_policy_edit_details" def is_governance_policy_edit_duration(self): """ @@ -54409,7 +55446,7 @@ def is_governance_policy_edit_duration(self): :rtype: bool """ - return self._tag == 'governance_policy_edit_duration' + return self._tag == "governance_policy_edit_duration" def is_governance_policy_export_created(self): """ @@ -54417,7 +55454,7 @@ def is_governance_policy_export_created(self): :rtype: bool """ - return self._tag == 'governance_policy_export_created' + return self._tag == "governance_policy_export_created" def is_governance_policy_export_removed(self): """ @@ -54425,7 +55462,7 @@ def is_governance_policy_export_removed(self): :rtype: bool """ - return self._tag == 'governance_policy_export_removed' + return self._tag == "governance_policy_export_removed" def is_governance_policy_remove_folders(self): """ @@ -54433,7 +55470,7 @@ def is_governance_policy_remove_folders(self): :rtype: bool """ - return self._tag == 'governance_policy_remove_folders' + return self._tag == "governance_policy_remove_folders" def is_governance_policy_report_created(self): """ @@ -54441,7 +55478,7 @@ def is_governance_policy_report_created(self): :rtype: bool """ - return self._tag == 'governance_policy_report_created' + return self._tag == "governance_policy_report_created" def is_governance_policy_zip_part_downloaded(self): """ @@ -54449,7 +55486,7 @@ def is_governance_policy_zip_part_downloaded(self): :rtype: bool """ - return self._tag == 'governance_policy_zip_part_downloaded' + return self._tag == "governance_policy_zip_part_downloaded" def is_legal_holds_activate_a_hold(self): """ @@ -54457,7 +55494,7 @@ def is_legal_holds_activate_a_hold(self): :rtype: bool """ - return self._tag == 'legal_holds_activate_a_hold' + return self._tag == "legal_holds_activate_a_hold" def is_legal_holds_add_members(self): """ @@ -54465,7 +55502,7 @@ def is_legal_holds_add_members(self): :rtype: bool """ - return self._tag == 'legal_holds_add_members' + return self._tag == "legal_holds_add_members" def is_legal_holds_change_hold_details(self): """ @@ -54473,7 +55510,7 @@ def is_legal_holds_change_hold_details(self): :rtype: bool """ - return self._tag == 'legal_holds_change_hold_details' + return self._tag == "legal_holds_change_hold_details" def is_legal_holds_change_hold_name(self): """ @@ -54481,7 +55518,7 @@ def is_legal_holds_change_hold_name(self): :rtype: bool """ - return self._tag == 'legal_holds_change_hold_name' + return self._tag == "legal_holds_change_hold_name" def is_legal_holds_export_a_hold(self): """ @@ -54489,7 +55526,7 @@ def is_legal_holds_export_a_hold(self): :rtype: bool """ - return self._tag == 'legal_holds_export_a_hold' + return self._tag == "legal_holds_export_a_hold" def is_legal_holds_export_cancelled(self): """ @@ -54497,7 +55534,7 @@ def is_legal_holds_export_cancelled(self): :rtype: bool """ - return self._tag == 'legal_holds_export_cancelled' + return self._tag == "legal_holds_export_cancelled" def is_legal_holds_export_downloaded(self): """ @@ -54505,7 +55542,7 @@ def is_legal_holds_export_downloaded(self): :rtype: bool """ - return self._tag == 'legal_holds_export_downloaded' + return self._tag == "legal_holds_export_downloaded" def is_legal_holds_export_removed(self): """ @@ -54513,7 +55550,7 @@ def is_legal_holds_export_removed(self): :rtype: bool """ - return self._tag == 'legal_holds_export_removed' + return self._tag == "legal_holds_export_removed" def is_legal_holds_release_a_hold(self): """ @@ -54521,7 +55558,7 @@ def is_legal_holds_release_a_hold(self): :rtype: bool """ - return self._tag == 'legal_holds_release_a_hold' + return self._tag == "legal_holds_release_a_hold" def is_legal_holds_remove_members(self): """ @@ -54529,7 +55566,7 @@ def is_legal_holds_remove_members(self): :rtype: bool """ - return self._tag == 'legal_holds_remove_members' + return self._tag == "legal_holds_remove_members" def is_legal_holds_report_a_hold(self): """ @@ -54537,7 +55574,7 @@ def is_legal_holds_report_a_hold(self): :rtype: bool """ - return self._tag == 'legal_holds_report_a_hold' + return self._tag == "legal_holds_report_a_hold" def is_device_change_ip_desktop(self): """ @@ -54545,7 +55582,7 @@ def is_device_change_ip_desktop(self): :rtype: bool """ - return self._tag == 'device_change_ip_desktop' + return self._tag == "device_change_ip_desktop" def is_device_change_ip_mobile(self): """ @@ -54553,7 +55590,7 @@ def is_device_change_ip_mobile(self): :rtype: bool """ - return self._tag == 'device_change_ip_mobile' + return self._tag == "device_change_ip_mobile" def is_device_change_ip_web(self): """ @@ -54561,7 +55598,7 @@ def is_device_change_ip_web(self): :rtype: bool """ - return self._tag == 'device_change_ip_web' + return self._tag == "device_change_ip_web" def is_device_delete_on_unlink_fail(self): """ @@ -54569,7 +55606,7 @@ def is_device_delete_on_unlink_fail(self): :rtype: bool """ - return self._tag == 'device_delete_on_unlink_fail' + return self._tag == "device_delete_on_unlink_fail" def is_device_delete_on_unlink_success(self): """ @@ -54577,7 +55614,7 @@ def is_device_delete_on_unlink_success(self): :rtype: bool """ - return self._tag == 'device_delete_on_unlink_success' + return self._tag == "device_delete_on_unlink_success" def is_device_link_fail(self): """ @@ -54585,7 +55622,7 @@ def is_device_link_fail(self): :rtype: bool """ - return self._tag == 'device_link_fail' + return self._tag == "device_link_fail" def is_device_link_success(self): """ @@ -54593,7 +55630,7 @@ def is_device_link_success(self): :rtype: bool """ - return self._tag == 'device_link_success' + return self._tag == "device_link_success" def is_device_management_disabled(self): """ @@ -54601,7 +55638,7 @@ def is_device_management_disabled(self): :rtype: bool """ - return self._tag == 'device_management_disabled' + return self._tag == "device_management_disabled" def is_device_management_enabled(self): """ @@ -54609,7 +55646,7 @@ def is_device_management_enabled(self): :rtype: bool """ - return self._tag == 'device_management_enabled' + return self._tag == "device_management_enabled" def is_device_sync_backup_status_changed(self): """ @@ -54617,7 +55654,7 @@ def is_device_sync_backup_status_changed(self): :rtype: bool """ - return self._tag == 'device_sync_backup_status_changed' + return self._tag == "device_sync_backup_status_changed" def is_device_unlink(self): """ @@ -54625,7 +55662,7 @@ def is_device_unlink(self): :rtype: bool """ - return self._tag == 'device_unlink' + return self._tag == "device_unlink" def is_dropbox_passwords_exported(self): """ @@ -54633,7 +55670,7 @@ def is_dropbox_passwords_exported(self): :rtype: bool """ - return self._tag == 'dropbox_passwords_exported' + return self._tag == "dropbox_passwords_exported" def is_dropbox_passwords_new_device_enrolled(self): """ @@ -54641,7 +55678,7 @@ def is_dropbox_passwords_new_device_enrolled(self): :rtype: bool """ - return self._tag == 'dropbox_passwords_new_device_enrolled' + return self._tag == "dropbox_passwords_new_device_enrolled" def is_emm_refresh_auth_token(self): """ @@ -54649,7 +55686,7 @@ def is_emm_refresh_auth_token(self): :rtype: bool """ - return self._tag == 'emm_refresh_auth_token' + return self._tag == "emm_refresh_auth_token" def is_external_drive_backup_eligibility_status_checked(self): """ @@ -54657,7 +55694,7 @@ def is_external_drive_backup_eligibility_status_checked(self): :rtype: bool """ - return self._tag == 'external_drive_backup_eligibility_status_checked' + return self._tag == "external_drive_backup_eligibility_status_checked" def is_external_drive_backup_status_changed(self): """ @@ -54665,7 +55702,7 @@ def is_external_drive_backup_status_changed(self): :rtype: bool """ - return self._tag == 'external_drive_backup_status_changed' + return self._tag == "external_drive_backup_status_changed" def is_account_capture_change_availability(self): """ @@ -54673,7 +55710,7 @@ def is_account_capture_change_availability(self): :rtype: bool """ - return self._tag == 'account_capture_change_availability' + return self._tag == "account_capture_change_availability" def is_account_capture_migrate_account(self): """ @@ -54681,7 +55718,7 @@ def is_account_capture_migrate_account(self): :rtype: bool """ - return self._tag == 'account_capture_migrate_account' + return self._tag == "account_capture_migrate_account" def is_account_capture_notification_emails_sent(self): """ @@ -54689,7 +55726,7 @@ def is_account_capture_notification_emails_sent(self): :rtype: bool """ - return self._tag == 'account_capture_notification_emails_sent' + return self._tag == "account_capture_notification_emails_sent" def is_account_capture_relinquish_account(self): """ @@ -54697,7 +55734,7 @@ def is_account_capture_relinquish_account(self): :rtype: bool """ - return self._tag == 'account_capture_relinquish_account' + return self._tag == "account_capture_relinquish_account" def is_disabled_domain_invites(self): """ @@ -54705,7 +55742,7 @@ def is_disabled_domain_invites(self): :rtype: bool """ - return self._tag == 'disabled_domain_invites' + return self._tag == "disabled_domain_invites" def is_domain_invites_approve_request_to_join_team(self): """ @@ -54713,7 +55750,7 @@ def is_domain_invites_approve_request_to_join_team(self): :rtype: bool """ - return self._tag == 'domain_invites_approve_request_to_join_team' + return self._tag == "domain_invites_approve_request_to_join_team" def is_domain_invites_decline_request_to_join_team(self): """ @@ -54721,7 +55758,7 @@ def is_domain_invites_decline_request_to_join_team(self): :rtype: bool """ - return self._tag == 'domain_invites_decline_request_to_join_team' + return self._tag == "domain_invites_decline_request_to_join_team" def is_domain_invites_email_existing_users(self): """ @@ -54729,7 +55766,7 @@ def is_domain_invites_email_existing_users(self): :rtype: bool """ - return self._tag == 'domain_invites_email_existing_users' + return self._tag == "domain_invites_email_existing_users" def is_domain_invites_request_to_join_team(self): """ @@ -54737,7 +55774,7 @@ def is_domain_invites_request_to_join_team(self): :rtype: bool """ - return self._tag == 'domain_invites_request_to_join_team' + return self._tag == "domain_invites_request_to_join_team" def is_domain_invites_set_invite_new_user_pref_to_no(self): """ @@ -54745,7 +55782,7 @@ def is_domain_invites_set_invite_new_user_pref_to_no(self): :rtype: bool """ - return self._tag == 'domain_invites_set_invite_new_user_pref_to_no' + return self._tag == "domain_invites_set_invite_new_user_pref_to_no" def is_domain_invites_set_invite_new_user_pref_to_yes(self): """ @@ -54753,7 +55790,7 @@ def is_domain_invites_set_invite_new_user_pref_to_yes(self): :rtype: bool """ - return self._tag == 'domain_invites_set_invite_new_user_pref_to_yes' + return self._tag == "domain_invites_set_invite_new_user_pref_to_yes" def is_domain_verification_add_domain_fail(self): """ @@ -54761,7 +55798,7 @@ def is_domain_verification_add_domain_fail(self): :rtype: bool """ - return self._tag == 'domain_verification_add_domain_fail' + return self._tag == "domain_verification_add_domain_fail" def is_domain_verification_add_domain_success(self): """ @@ -54769,7 +55806,7 @@ def is_domain_verification_add_domain_success(self): :rtype: bool """ - return self._tag == 'domain_verification_add_domain_success' + return self._tag == "domain_verification_add_domain_success" def is_domain_verification_remove_domain(self): """ @@ -54777,7 +55814,7 @@ def is_domain_verification_remove_domain(self): :rtype: bool """ - return self._tag == 'domain_verification_remove_domain' + return self._tag == "domain_verification_remove_domain" def is_enabled_domain_invites(self): """ @@ -54785,7 +55822,7 @@ def is_enabled_domain_invites(self): :rtype: bool """ - return self._tag == 'enabled_domain_invites' + return self._tag == "enabled_domain_invites" def is_encrypted_folder_cancel_team_key_rotation(self): """ @@ -54793,7 +55830,7 @@ def is_encrypted_folder_cancel_team_key_rotation(self): :rtype: bool """ - return self._tag == 'encrypted_folder_cancel_team_key_rotation' + return self._tag == "encrypted_folder_cancel_team_key_rotation" def is_encrypted_folder_enroll_backup_key(self): """ @@ -54801,7 +55838,7 @@ def is_encrypted_folder_enroll_backup_key(self): :rtype: bool """ - return self._tag == 'encrypted_folder_enroll_backup_key' + return self._tag == "encrypted_folder_enroll_backup_key" def is_encrypted_folder_enroll_client(self): """ @@ -54809,7 +55846,7 @@ def is_encrypted_folder_enroll_client(self): :rtype: bool """ - return self._tag == 'encrypted_folder_enroll_client' + return self._tag == "encrypted_folder_enroll_client" def is_encrypted_folder_enroll_team(self): """ @@ -54817,7 +55854,7 @@ def is_encrypted_folder_enroll_team(self): :rtype: bool """ - return self._tag == 'encrypted_folder_enroll_team' + return self._tag == "encrypted_folder_enroll_team" def is_encrypted_folder_finish_team_unenrollment(self): """ @@ -54825,7 +55862,7 @@ def is_encrypted_folder_finish_team_unenrollment(self): :rtype: bool """ - return self._tag == 'encrypted_folder_finish_team_unenrollment' + return self._tag == "encrypted_folder_finish_team_unenrollment" def is_encrypted_folder_init_team_key_rotation(self): """ @@ -54833,7 +55870,7 @@ def is_encrypted_folder_init_team_key_rotation(self): :rtype: bool """ - return self._tag == 'encrypted_folder_init_team_key_rotation' + return self._tag == "encrypted_folder_init_team_key_rotation" def is_encrypted_folder_init_team_unenrollment(self): """ @@ -54841,7 +55878,7 @@ def is_encrypted_folder_init_team_unenrollment(self): :rtype: bool """ - return self._tag == 'encrypted_folder_init_team_unenrollment' + return self._tag == "encrypted_folder_init_team_unenrollment" def is_encrypted_folder_remove_backup_key(self): """ @@ -54849,7 +55886,7 @@ def is_encrypted_folder_remove_backup_key(self): :rtype: bool """ - return self._tag == 'encrypted_folder_remove_backup_key' + return self._tag == "encrypted_folder_remove_backup_key" def is_encrypted_folder_rotate_team_key(self): """ @@ -54857,7 +55894,7 @@ def is_encrypted_folder_rotate_team_key(self): :rtype: bool """ - return self._tag == 'encrypted_folder_rotate_team_key' + return self._tag == "encrypted_folder_rotate_team_key" def is_encrypted_folder_unenroll_client(self): """ @@ -54865,7 +55902,7 @@ def is_encrypted_folder_unenroll_client(self): :rtype: bool """ - return self._tag == 'encrypted_folder_unenroll_client' + return self._tag == "encrypted_folder_unenroll_client" def is_team_encryption_key_activate_key(self): """ @@ -54873,7 +55910,7 @@ def is_team_encryption_key_activate_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_activate_key' + return self._tag == "team_encryption_key_activate_key" def is_team_encryption_key_cancel_key_deletion(self): """ @@ -54881,7 +55918,7 @@ def is_team_encryption_key_cancel_key_deletion(self): :rtype: bool """ - return self._tag == 'team_encryption_key_cancel_key_deletion' + return self._tag == "team_encryption_key_cancel_key_deletion" def is_team_encryption_key_create_key(self): """ @@ -54889,7 +55926,7 @@ def is_team_encryption_key_create_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_create_key' + return self._tag == "team_encryption_key_create_key" def is_team_encryption_key_deactivate_key(self): """ @@ -54897,7 +55934,7 @@ def is_team_encryption_key_deactivate_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_deactivate_key' + return self._tag == "team_encryption_key_deactivate_key" def is_team_encryption_key_delete_key(self): """ @@ -54905,7 +55942,7 @@ def is_team_encryption_key_delete_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_delete_key' + return self._tag == "team_encryption_key_delete_key" def is_team_encryption_key_disable_key(self): """ @@ -54913,7 +55950,7 @@ def is_team_encryption_key_disable_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_disable_key' + return self._tag == "team_encryption_key_disable_key" def is_team_encryption_key_enable_key(self): """ @@ -54921,7 +55958,7 @@ def is_team_encryption_key_enable_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_enable_key' + return self._tag == "team_encryption_key_enable_key" def is_team_encryption_key_rotate_key(self): """ @@ -54929,7 +55966,7 @@ def is_team_encryption_key_rotate_key(self): :rtype: bool """ - return self._tag == 'team_encryption_key_rotate_key' + return self._tag == "team_encryption_key_rotate_key" def is_team_encryption_key_schedule_key_deletion(self): """ @@ -54937,7 +55974,7 @@ def is_team_encryption_key_schedule_key_deletion(self): :rtype: bool """ - return self._tag == 'team_encryption_key_schedule_key_deletion' + return self._tag == "team_encryption_key_schedule_key_deletion" def is_apply_naming_convention(self): """ @@ -54945,7 +55982,7 @@ def is_apply_naming_convention(self): :rtype: bool """ - return self._tag == 'apply_naming_convention' + return self._tag == "apply_naming_convention" def is_create_folder(self): """ @@ -54953,7 +55990,7 @@ def is_create_folder(self): :rtype: bool """ - return self._tag == 'create_folder' + return self._tag == "create_folder" def is_file_add(self): """ @@ -54961,7 +55998,7 @@ def is_file_add(self): :rtype: bool """ - return self._tag == 'file_add' + return self._tag == "file_add" def is_file_add_from_automation(self): """ @@ -54969,7 +56006,7 @@ def is_file_add_from_automation(self): :rtype: bool """ - return self._tag == 'file_add_from_automation' + return self._tag == "file_add_from_automation" def is_file_copy(self): """ @@ -54977,7 +56014,7 @@ def is_file_copy(self): :rtype: bool """ - return self._tag == 'file_copy' + return self._tag == "file_copy" def is_file_delete(self): """ @@ -54985,7 +56022,7 @@ def is_file_delete(self): :rtype: bool """ - return self._tag == 'file_delete' + return self._tag == "file_delete" def is_file_download(self): """ @@ -54993,7 +56030,7 @@ def is_file_download(self): :rtype: bool """ - return self._tag == 'file_download' + return self._tag == "file_download" def is_file_edit(self): """ @@ -55001,7 +56038,7 @@ def is_file_edit(self): :rtype: bool """ - return self._tag == 'file_edit' + return self._tag == "file_edit" def is_file_get_copy_reference(self): """ @@ -55009,7 +56046,7 @@ def is_file_get_copy_reference(self): :rtype: bool """ - return self._tag == 'file_get_copy_reference' + return self._tag == "file_get_copy_reference" def is_file_locking_lock_status_changed(self): """ @@ -55017,7 +56054,7 @@ def is_file_locking_lock_status_changed(self): :rtype: bool """ - return self._tag == 'file_locking_lock_status_changed' + return self._tag == "file_locking_lock_status_changed" def is_file_move(self): """ @@ -55025,7 +56062,7 @@ def is_file_move(self): :rtype: bool """ - return self._tag == 'file_move' + return self._tag == "file_move" def is_file_permanently_delete(self): """ @@ -55033,7 +56070,7 @@ def is_file_permanently_delete(self): :rtype: bool """ - return self._tag == 'file_permanently_delete' + return self._tag == "file_permanently_delete" def is_file_preview(self): """ @@ -55041,7 +56078,7 @@ def is_file_preview(self): :rtype: bool """ - return self._tag == 'file_preview' + return self._tag == "file_preview" def is_file_rename(self): """ @@ -55049,7 +56086,7 @@ def is_file_rename(self): :rtype: bool """ - return self._tag == 'file_rename' + return self._tag == "file_rename" def is_file_restore(self): """ @@ -55057,7 +56094,7 @@ def is_file_restore(self): :rtype: bool """ - return self._tag == 'file_restore' + return self._tag == "file_restore" def is_file_revert(self): """ @@ -55065,7 +56102,7 @@ def is_file_revert(self): :rtype: bool """ - return self._tag == 'file_revert' + return self._tag == "file_revert" def is_file_rollback_changes(self): """ @@ -55073,7 +56110,7 @@ def is_file_rollback_changes(self): :rtype: bool """ - return self._tag == 'file_rollback_changes' + return self._tag == "file_rollback_changes" def is_file_save_copy_reference(self): """ @@ -55081,7 +56118,7 @@ def is_file_save_copy_reference(self): :rtype: bool """ - return self._tag == 'file_save_copy_reference' + return self._tag == "file_save_copy_reference" def is_folder_overview_description_changed(self): """ @@ -55089,7 +56126,7 @@ def is_folder_overview_description_changed(self): :rtype: bool """ - return self._tag == 'folder_overview_description_changed' + return self._tag == "folder_overview_description_changed" def is_folder_overview_item_pinned(self): """ @@ -55097,7 +56134,7 @@ def is_folder_overview_item_pinned(self): :rtype: bool """ - return self._tag == 'folder_overview_item_pinned' + return self._tag == "folder_overview_item_pinned" def is_folder_overview_item_unpinned(self): """ @@ -55105,7 +56142,7 @@ def is_folder_overview_item_unpinned(self): :rtype: bool """ - return self._tag == 'folder_overview_item_unpinned' + return self._tag == "folder_overview_item_unpinned" def is_media_hub_file_downloaded(self): """ @@ -55113,7 +56150,7 @@ def is_media_hub_file_downloaded(self): :rtype: bool """ - return self._tag == 'media_hub_file_downloaded' + return self._tag == "media_hub_file_downloaded" def is_object_label_added(self): """ @@ -55121,7 +56158,7 @@ def is_object_label_added(self): :rtype: bool """ - return self._tag == 'object_label_added' + return self._tag == "object_label_added" def is_object_label_removed(self): """ @@ -55129,7 +56166,7 @@ def is_object_label_removed(self): :rtype: bool """ - return self._tag == 'object_label_removed' + return self._tag == "object_label_removed" def is_object_label_updated_value(self): """ @@ -55137,7 +56174,7 @@ def is_object_label_updated_value(self): :rtype: bool """ - return self._tag == 'object_label_updated_value' + return self._tag == "object_label_updated_value" def is_organize_folder_with_tidy(self): """ @@ -55145,7 +56182,7 @@ def is_organize_folder_with_tidy(self): :rtype: bool """ - return self._tag == 'organize_folder_with_tidy' + return self._tag == "organize_folder_with_tidy" def is_replay_file_delete(self): """ @@ -55153,7 +56190,7 @@ def is_replay_file_delete(self): :rtype: bool """ - return self._tag == 'replay_file_delete' + return self._tag == "replay_file_delete" def is_replay_file_downloaded(self): """ @@ -55161,7 +56198,7 @@ def is_replay_file_downloaded(self): :rtype: bool """ - return self._tag == 'replay_file_downloaded' + return self._tag == "replay_file_downloaded" def is_replay_team_project_created(self): """ @@ -55169,7 +56206,7 @@ def is_replay_team_project_created(self): :rtype: bool """ - return self._tag == 'replay_team_project_created' + return self._tag == "replay_team_project_created" def is_rewind_folder(self): """ @@ -55177,7 +56214,7 @@ def is_rewind_folder(self): :rtype: bool """ - return self._tag == 'rewind_folder' + return self._tag == "rewind_folder" def is_undo_naming_convention(self): """ @@ -55185,7 +56222,7 @@ def is_undo_naming_convention(self): :rtype: bool """ - return self._tag == 'undo_naming_convention' + return self._tag == "undo_naming_convention" def is_undo_organize_folder_with_tidy(self): """ @@ -55193,7 +56230,7 @@ def is_undo_organize_folder_with_tidy(self): :rtype: bool """ - return self._tag == 'undo_organize_folder_with_tidy' + return self._tag == "undo_organize_folder_with_tidy" def is_user_tags_added(self): """ @@ -55201,7 +56238,7 @@ def is_user_tags_added(self): :rtype: bool """ - return self._tag == 'user_tags_added' + return self._tag == "user_tags_added" def is_user_tags_removed(self): """ @@ -55209,7 +56246,7 @@ def is_user_tags_removed(self): :rtype: bool """ - return self._tag == 'user_tags_removed' + return self._tag == "user_tags_removed" def is_email_ingest_receive_file(self): """ @@ -55217,7 +56254,7 @@ def is_email_ingest_receive_file(self): :rtype: bool """ - return self._tag == 'email_ingest_receive_file' + return self._tag == "email_ingest_receive_file" def is_file_request_auto_close(self): """ @@ -55225,7 +56262,7 @@ def is_file_request_auto_close(self): :rtype: bool """ - return self._tag == 'file_request_auto_close' + return self._tag == "file_request_auto_close" def is_file_request_change(self): """ @@ -55233,7 +56270,7 @@ def is_file_request_change(self): :rtype: bool """ - return self._tag == 'file_request_change' + return self._tag == "file_request_change" def is_file_request_close(self): """ @@ -55241,7 +56278,7 @@ def is_file_request_close(self): :rtype: bool """ - return self._tag == 'file_request_close' + return self._tag == "file_request_close" def is_file_request_create(self): """ @@ -55249,7 +56286,7 @@ def is_file_request_create(self): :rtype: bool """ - return self._tag == 'file_request_create' + return self._tag == "file_request_create" def is_file_request_delete(self): """ @@ -55257,7 +56294,7 @@ def is_file_request_delete(self): :rtype: bool """ - return self._tag == 'file_request_delete' + return self._tag == "file_request_delete" def is_file_request_receive_file(self): """ @@ -55265,7 +56302,7 @@ def is_file_request_receive_file(self): :rtype: bool """ - return self._tag == 'file_request_receive_file' + return self._tag == "file_request_receive_file" def is_group_add_external_id(self): """ @@ -55273,7 +56310,7 @@ def is_group_add_external_id(self): :rtype: bool """ - return self._tag == 'group_add_external_id' + return self._tag == "group_add_external_id" def is_group_add_member(self): """ @@ -55281,7 +56318,7 @@ def is_group_add_member(self): :rtype: bool """ - return self._tag == 'group_add_member' + return self._tag == "group_add_member" def is_group_change_external_id(self): """ @@ -55289,7 +56326,7 @@ def is_group_change_external_id(self): :rtype: bool """ - return self._tag == 'group_change_external_id' + return self._tag == "group_change_external_id" def is_group_change_management_type(self): """ @@ -55297,7 +56334,7 @@ def is_group_change_management_type(self): :rtype: bool """ - return self._tag == 'group_change_management_type' + return self._tag == "group_change_management_type" def is_group_change_member_role(self): """ @@ -55305,7 +56342,7 @@ def is_group_change_member_role(self): :rtype: bool """ - return self._tag == 'group_change_member_role' + return self._tag == "group_change_member_role" def is_group_create(self): """ @@ -55313,7 +56350,7 @@ def is_group_create(self): :rtype: bool """ - return self._tag == 'group_create' + return self._tag == "group_create" def is_group_delete(self): """ @@ -55321,7 +56358,7 @@ def is_group_delete(self): :rtype: bool """ - return self._tag == 'group_delete' + return self._tag == "group_delete" def is_group_description_updated(self): """ @@ -55329,7 +56366,7 @@ def is_group_description_updated(self): :rtype: bool """ - return self._tag == 'group_description_updated' + return self._tag == "group_description_updated" def is_group_external_sharing_setting_override_changed(self): """ @@ -55337,7 +56374,7 @@ def is_group_external_sharing_setting_override_changed(self): :rtype: bool """ - return self._tag == 'group_external_sharing_setting_override_changed' + return self._tag == "group_external_sharing_setting_override_changed" def is_group_join_policy_updated(self): """ @@ -55345,7 +56382,7 @@ def is_group_join_policy_updated(self): :rtype: bool """ - return self._tag == 'group_join_policy_updated' + return self._tag == "group_join_policy_updated" def is_group_moved(self): """ @@ -55353,7 +56390,7 @@ def is_group_moved(self): :rtype: bool """ - return self._tag == 'group_moved' + return self._tag == "group_moved" def is_group_remove_external_id(self): """ @@ -55361,7 +56398,7 @@ def is_group_remove_external_id(self): :rtype: bool """ - return self._tag == 'group_remove_external_id' + return self._tag == "group_remove_external_id" def is_group_remove_member(self): """ @@ -55369,7 +56406,7 @@ def is_group_remove_member(self): :rtype: bool """ - return self._tag == 'group_remove_member' + return self._tag == "group_remove_member" def is_group_rename(self): """ @@ -55377,7 +56414,7 @@ def is_group_rename(self): :rtype: bool """ - return self._tag == 'group_rename' + return self._tag == "group_rename" def is_account_lock_or_unlocked(self): """ @@ -55385,7 +56422,7 @@ def is_account_lock_or_unlocked(self): :rtype: bool """ - return self._tag == 'account_lock_or_unlocked' + return self._tag == "account_lock_or_unlocked" def is_emm_error(self): """ @@ -55393,7 +56430,7 @@ def is_emm_error(self): :rtype: bool """ - return self._tag == 'emm_error' + return self._tag == "emm_error" def is_guest_admin_signed_in_via_trusted_teams(self): """ @@ -55401,7 +56438,7 @@ def is_guest_admin_signed_in_via_trusted_teams(self): :rtype: bool """ - return self._tag == 'guest_admin_signed_in_via_trusted_teams' + return self._tag == "guest_admin_signed_in_via_trusted_teams" def is_guest_admin_signed_out_via_trusted_teams(self): """ @@ -55409,7 +56446,7 @@ def is_guest_admin_signed_out_via_trusted_teams(self): :rtype: bool """ - return self._tag == 'guest_admin_signed_out_via_trusted_teams' + return self._tag == "guest_admin_signed_out_via_trusted_teams" def is_login_fail(self): """ @@ -55417,7 +56454,7 @@ def is_login_fail(self): :rtype: bool """ - return self._tag == 'login_fail' + return self._tag == "login_fail" def is_login_success(self): """ @@ -55425,7 +56462,7 @@ def is_login_success(self): :rtype: bool """ - return self._tag == 'login_success' + return self._tag == "login_success" def is_logout(self): """ @@ -55433,7 +56470,7 @@ def is_logout(self): :rtype: bool """ - return self._tag == 'logout' + return self._tag == "logout" def is_reseller_support_session_end(self): """ @@ -55441,7 +56478,7 @@ def is_reseller_support_session_end(self): :rtype: bool """ - return self._tag == 'reseller_support_session_end' + return self._tag == "reseller_support_session_end" def is_reseller_support_session_start(self): """ @@ -55449,7 +56486,7 @@ def is_reseller_support_session_start(self): :rtype: bool """ - return self._tag == 'reseller_support_session_start' + return self._tag == "reseller_support_session_start" def is_sign_in_as_session_end(self): """ @@ -55457,7 +56494,7 @@ def is_sign_in_as_session_end(self): :rtype: bool """ - return self._tag == 'sign_in_as_session_end' + return self._tag == "sign_in_as_session_end" def is_sign_in_as_session_start(self): """ @@ -55465,7 +56502,7 @@ def is_sign_in_as_session_start(self): :rtype: bool """ - return self._tag == 'sign_in_as_session_start' + return self._tag == "sign_in_as_session_start" def is_sso_error(self): """ @@ -55473,7 +56510,7 @@ def is_sso_error(self): :rtype: bool """ - return self._tag == 'sso_error' + return self._tag == "sso_error" def is_addon_assigned(self): """ @@ -55481,7 +56518,7 @@ def is_addon_assigned(self): :rtype: bool """ - return self._tag == 'addon_assigned' + return self._tag == "addon_assigned" def is_addon_removed(self): """ @@ -55489,7 +56526,7 @@ def is_addon_removed(self): :rtype: bool """ - return self._tag == 'addon_removed' + return self._tag == "addon_removed" def is_backup_admin_invitation_sent(self): """ @@ -55497,7 +56534,7 @@ def is_backup_admin_invitation_sent(self): :rtype: bool """ - return self._tag == 'backup_admin_invitation_sent' + return self._tag == "backup_admin_invitation_sent" def is_backup_invitation_opened(self): """ @@ -55505,7 +56542,7 @@ def is_backup_invitation_opened(self): :rtype: bool """ - return self._tag == 'backup_invitation_opened' + return self._tag == "backup_invitation_opened" def is_create_team_invite_link(self): """ @@ -55513,7 +56550,7 @@ def is_create_team_invite_link(self): :rtype: bool """ - return self._tag == 'create_team_invite_link' + return self._tag == "create_team_invite_link" def is_delete_team_invite_link(self): """ @@ -55521,7 +56558,7 @@ def is_delete_team_invite_link(self): :rtype: bool """ - return self._tag == 'delete_team_invite_link' + return self._tag == "delete_team_invite_link" def is_member_add_external_id(self): """ @@ -55529,7 +56566,7 @@ def is_member_add_external_id(self): :rtype: bool """ - return self._tag == 'member_add_external_id' + return self._tag == "member_add_external_id" def is_member_add_name(self): """ @@ -55537,7 +56574,7 @@ def is_member_add_name(self): :rtype: bool """ - return self._tag == 'member_add_name' + return self._tag == "member_add_name" def is_member_change_admin_role(self): """ @@ -55545,7 +56582,7 @@ def is_member_change_admin_role(self): :rtype: bool """ - return self._tag == 'member_change_admin_role' + return self._tag == "member_change_admin_role" def is_member_change_email(self): """ @@ -55553,7 +56590,7 @@ def is_member_change_email(self): :rtype: bool """ - return self._tag == 'member_change_email' + return self._tag == "member_change_email" def is_member_change_external_id(self): """ @@ -55561,7 +56598,7 @@ def is_member_change_external_id(self): :rtype: bool """ - return self._tag == 'member_change_external_id' + return self._tag == "member_change_external_id" def is_member_change_membership_type(self): """ @@ -55569,7 +56606,7 @@ def is_member_change_membership_type(self): :rtype: bool """ - return self._tag == 'member_change_membership_type' + return self._tag == "member_change_membership_type" def is_member_change_name(self): """ @@ -55577,7 +56614,7 @@ def is_member_change_name(self): :rtype: bool """ - return self._tag == 'member_change_name' + return self._tag == "member_change_name" def is_member_change_reseller_role(self): """ @@ -55585,7 +56622,7 @@ def is_member_change_reseller_role(self): :rtype: bool """ - return self._tag == 'member_change_reseller_role' + return self._tag == "member_change_reseller_role" def is_member_change_status(self): """ @@ -55593,7 +56630,7 @@ def is_member_change_status(self): :rtype: bool """ - return self._tag == 'member_change_status' + return self._tag == "member_change_status" def is_member_delete_manual_contacts(self): """ @@ -55601,7 +56638,7 @@ def is_member_delete_manual_contacts(self): :rtype: bool """ - return self._tag == 'member_delete_manual_contacts' + return self._tag == "member_delete_manual_contacts" def is_member_delete_profile_photo(self): """ @@ -55609,7 +56646,7 @@ def is_member_delete_profile_photo(self): :rtype: bool """ - return self._tag == 'member_delete_profile_photo' + return self._tag == "member_delete_profile_photo" def is_member_permanently_delete_account_contents(self): """ @@ -55617,7 +56654,7 @@ def is_member_permanently_delete_account_contents(self): :rtype: bool """ - return self._tag == 'member_permanently_delete_account_contents' + return self._tag == "member_permanently_delete_account_contents" def is_member_remove_external_id(self): """ @@ -55625,7 +56662,7 @@ def is_member_remove_external_id(self): :rtype: bool """ - return self._tag == 'member_remove_external_id' + return self._tag == "member_remove_external_id" def is_member_set_profile_photo(self): """ @@ -55633,7 +56670,7 @@ def is_member_set_profile_photo(self): :rtype: bool """ - return self._tag == 'member_set_profile_photo' + return self._tag == "member_set_profile_photo" def is_member_space_limits_add_custom_quota(self): """ @@ -55641,7 +56678,7 @@ def is_member_space_limits_add_custom_quota(self): :rtype: bool """ - return self._tag == 'member_space_limits_add_custom_quota' + return self._tag == "member_space_limits_add_custom_quota" def is_member_space_limits_change_custom_quota(self): """ @@ -55649,7 +56686,7 @@ def is_member_space_limits_change_custom_quota(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_custom_quota' + return self._tag == "member_space_limits_change_custom_quota" def is_member_space_limits_change_status(self): """ @@ -55657,7 +56694,7 @@ def is_member_space_limits_change_status(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_status' + return self._tag == "member_space_limits_change_status" def is_member_space_limits_remove_custom_quota(self): """ @@ -55665,7 +56702,7 @@ def is_member_space_limits_remove_custom_quota(self): :rtype: bool """ - return self._tag == 'member_space_limits_remove_custom_quota' + return self._tag == "member_space_limits_remove_custom_quota" def is_member_suggest(self): """ @@ -55673,7 +56710,7 @@ def is_member_suggest(self): :rtype: bool """ - return self._tag == 'member_suggest' + return self._tag == "member_suggest" def is_member_transfer_account_contents(self): """ @@ -55681,7 +56718,7 @@ def is_member_transfer_account_contents(self): :rtype: bool """ - return self._tag == 'member_transfer_account_contents' + return self._tag == "member_transfer_account_contents" def is_pending_secondary_email_added(self): """ @@ -55689,7 +56726,7 @@ def is_pending_secondary_email_added(self): :rtype: bool """ - return self._tag == 'pending_secondary_email_added' + return self._tag == "pending_secondary_email_added" def is_product_assigned_to_member(self): """ @@ -55697,7 +56734,7 @@ def is_product_assigned_to_member(self): :rtype: bool """ - return self._tag == 'product_assigned_to_member' + return self._tag == "product_assigned_to_member" def is_product_removed_from_member(self): """ @@ -55705,7 +56742,7 @@ def is_product_removed_from_member(self): :rtype: bool """ - return self._tag == 'product_removed_from_member' + return self._tag == "product_removed_from_member" def is_secondary_email_deleted(self): """ @@ -55713,7 +56750,7 @@ def is_secondary_email_deleted(self): :rtype: bool """ - return self._tag == 'secondary_email_deleted' + return self._tag == "secondary_email_deleted" def is_secondary_email_verified(self): """ @@ -55721,7 +56758,7 @@ def is_secondary_email_verified(self): :rtype: bool """ - return self._tag == 'secondary_email_verified' + return self._tag == "secondary_email_verified" def is_secondary_mails_policy_changed(self): """ @@ -55729,7 +56766,7 @@ def is_secondary_mails_policy_changed(self): :rtype: bool """ - return self._tag == 'secondary_mails_policy_changed' + return self._tag == "secondary_mails_policy_changed" def is_binder_add_page(self): """ @@ -55737,7 +56774,7 @@ def is_binder_add_page(self): :rtype: bool """ - return self._tag == 'binder_add_page' + return self._tag == "binder_add_page" def is_binder_add_section(self): """ @@ -55745,7 +56782,7 @@ def is_binder_add_section(self): :rtype: bool """ - return self._tag == 'binder_add_section' + return self._tag == "binder_add_section" def is_binder_remove_page(self): """ @@ -55753,7 +56790,7 @@ def is_binder_remove_page(self): :rtype: bool """ - return self._tag == 'binder_remove_page' + return self._tag == "binder_remove_page" def is_binder_remove_section(self): """ @@ -55761,7 +56798,7 @@ def is_binder_remove_section(self): :rtype: bool """ - return self._tag == 'binder_remove_section' + return self._tag == "binder_remove_section" def is_binder_rename_page(self): """ @@ -55769,7 +56806,7 @@ def is_binder_rename_page(self): :rtype: bool """ - return self._tag == 'binder_rename_page' + return self._tag == "binder_rename_page" def is_binder_rename_section(self): """ @@ -55777,7 +56814,7 @@ def is_binder_rename_section(self): :rtype: bool """ - return self._tag == 'binder_rename_section' + return self._tag == "binder_rename_section" def is_binder_reorder_page(self): """ @@ -55785,7 +56822,7 @@ def is_binder_reorder_page(self): :rtype: bool """ - return self._tag == 'binder_reorder_page' + return self._tag == "binder_reorder_page" def is_binder_reorder_section(self): """ @@ -55793,7 +56830,7 @@ def is_binder_reorder_section(self): :rtype: bool """ - return self._tag == 'binder_reorder_section' + return self._tag == "binder_reorder_section" def is_paper_content_add_member(self): """ @@ -55801,7 +56838,7 @@ def is_paper_content_add_member(self): :rtype: bool """ - return self._tag == 'paper_content_add_member' + return self._tag == "paper_content_add_member" def is_paper_content_add_to_folder(self): """ @@ -55809,7 +56846,7 @@ def is_paper_content_add_to_folder(self): :rtype: bool """ - return self._tag == 'paper_content_add_to_folder' + return self._tag == "paper_content_add_to_folder" def is_paper_content_archive(self): """ @@ -55817,7 +56854,7 @@ def is_paper_content_archive(self): :rtype: bool """ - return self._tag == 'paper_content_archive' + return self._tag == "paper_content_archive" def is_paper_content_create(self): """ @@ -55825,7 +56862,7 @@ def is_paper_content_create(self): :rtype: bool """ - return self._tag == 'paper_content_create' + return self._tag == "paper_content_create" def is_paper_content_permanently_delete(self): """ @@ -55833,7 +56870,7 @@ def is_paper_content_permanently_delete(self): :rtype: bool """ - return self._tag == 'paper_content_permanently_delete' + return self._tag == "paper_content_permanently_delete" def is_paper_content_remove_from_folder(self): """ @@ -55841,7 +56878,7 @@ def is_paper_content_remove_from_folder(self): :rtype: bool """ - return self._tag == 'paper_content_remove_from_folder' + return self._tag == "paper_content_remove_from_folder" def is_paper_content_remove_member(self): """ @@ -55849,7 +56886,7 @@ def is_paper_content_remove_member(self): :rtype: bool """ - return self._tag == 'paper_content_remove_member' + return self._tag == "paper_content_remove_member" def is_paper_content_rename(self): """ @@ -55857,7 +56894,7 @@ def is_paper_content_rename(self): :rtype: bool """ - return self._tag == 'paper_content_rename' + return self._tag == "paper_content_rename" def is_paper_content_restore(self): """ @@ -55865,7 +56902,7 @@ def is_paper_content_restore(self): :rtype: bool """ - return self._tag == 'paper_content_restore' + return self._tag == "paper_content_restore" def is_paper_doc_add_comment(self): """ @@ -55873,7 +56910,7 @@ def is_paper_doc_add_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_add_comment' + return self._tag == "paper_doc_add_comment" def is_paper_doc_change_member_role(self): """ @@ -55881,7 +56918,7 @@ def is_paper_doc_change_member_role(self): :rtype: bool """ - return self._tag == 'paper_doc_change_member_role' + return self._tag == "paper_doc_change_member_role" def is_paper_doc_change_sharing_policy(self): """ @@ -55889,7 +56926,7 @@ def is_paper_doc_change_sharing_policy(self): :rtype: bool """ - return self._tag == 'paper_doc_change_sharing_policy' + return self._tag == "paper_doc_change_sharing_policy" def is_paper_doc_change_subscription(self): """ @@ -55897,7 +56934,7 @@ def is_paper_doc_change_subscription(self): :rtype: bool """ - return self._tag == 'paper_doc_change_subscription' + return self._tag == "paper_doc_change_subscription" def is_paper_doc_deleted(self): """ @@ -55905,7 +56942,7 @@ def is_paper_doc_deleted(self): :rtype: bool """ - return self._tag == 'paper_doc_deleted' + return self._tag == "paper_doc_deleted" def is_paper_doc_delete_comment(self): """ @@ -55913,7 +56950,7 @@ def is_paper_doc_delete_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_delete_comment' + return self._tag == "paper_doc_delete_comment" def is_paper_doc_download(self): """ @@ -55921,7 +56958,7 @@ def is_paper_doc_download(self): :rtype: bool """ - return self._tag == 'paper_doc_download' + return self._tag == "paper_doc_download" def is_paper_doc_edit(self): """ @@ -55929,7 +56966,7 @@ def is_paper_doc_edit(self): :rtype: bool """ - return self._tag == 'paper_doc_edit' + return self._tag == "paper_doc_edit" def is_paper_doc_edit_comment(self): """ @@ -55937,7 +56974,7 @@ def is_paper_doc_edit_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_edit_comment' + return self._tag == "paper_doc_edit_comment" def is_paper_doc_followed(self): """ @@ -55945,7 +56982,7 @@ def is_paper_doc_followed(self): :rtype: bool """ - return self._tag == 'paper_doc_followed' + return self._tag == "paper_doc_followed" def is_paper_doc_mention(self): """ @@ -55953,7 +56990,7 @@ def is_paper_doc_mention(self): :rtype: bool """ - return self._tag == 'paper_doc_mention' + return self._tag == "paper_doc_mention" def is_paper_doc_ownership_changed(self): """ @@ -55961,7 +56998,7 @@ def is_paper_doc_ownership_changed(self): :rtype: bool """ - return self._tag == 'paper_doc_ownership_changed' + return self._tag == "paper_doc_ownership_changed" def is_paper_doc_request_access(self): """ @@ -55969,7 +57006,7 @@ def is_paper_doc_request_access(self): :rtype: bool """ - return self._tag == 'paper_doc_request_access' + return self._tag == "paper_doc_request_access" def is_paper_doc_resolve_comment(self): """ @@ -55977,7 +57014,7 @@ def is_paper_doc_resolve_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_resolve_comment' + return self._tag == "paper_doc_resolve_comment" def is_paper_doc_revert(self): """ @@ -55985,7 +57022,7 @@ def is_paper_doc_revert(self): :rtype: bool """ - return self._tag == 'paper_doc_revert' + return self._tag == "paper_doc_revert" def is_paper_doc_slack_share(self): """ @@ -55993,7 +57030,7 @@ def is_paper_doc_slack_share(self): :rtype: bool """ - return self._tag == 'paper_doc_slack_share' + return self._tag == "paper_doc_slack_share" def is_paper_doc_team_invite(self): """ @@ -56001,7 +57038,7 @@ def is_paper_doc_team_invite(self): :rtype: bool """ - return self._tag == 'paper_doc_team_invite' + return self._tag == "paper_doc_team_invite" def is_paper_doc_trashed(self): """ @@ -56009,7 +57046,7 @@ def is_paper_doc_trashed(self): :rtype: bool """ - return self._tag == 'paper_doc_trashed' + return self._tag == "paper_doc_trashed" def is_paper_doc_unresolve_comment(self): """ @@ -56017,7 +57054,7 @@ def is_paper_doc_unresolve_comment(self): :rtype: bool """ - return self._tag == 'paper_doc_unresolve_comment' + return self._tag == "paper_doc_unresolve_comment" def is_paper_doc_untrashed(self): """ @@ -56025,7 +57062,7 @@ def is_paper_doc_untrashed(self): :rtype: bool """ - return self._tag == 'paper_doc_untrashed' + return self._tag == "paper_doc_untrashed" def is_paper_doc_view(self): """ @@ -56033,7 +57070,7 @@ def is_paper_doc_view(self): :rtype: bool """ - return self._tag == 'paper_doc_view' + return self._tag == "paper_doc_view" def is_paper_external_view_allow(self): """ @@ -56041,7 +57078,7 @@ def is_paper_external_view_allow(self): :rtype: bool """ - return self._tag == 'paper_external_view_allow' + return self._tag == "paper_external_view_allow" def is_paper_external_view_default_team(self): """ @@ -56049,7 +57086,7 @@ def is_paper_external_view_default_team(self): :rtype: bool """ - return self._tag == 'paper_external_view_default_team' + return self._tag == "paper_external_view_default_team" def is_paper_external_view_forbid(self): """ @@ -56057,7 +57094,7 @@ def is_paper_external_view_forbid(self): :rtype: bool """ - return self._tag == 'paper_external_view_forbid' + return self._tag == "paper_external_view_forbid" def is_paper_folder_change_subscription(self): """ @@ -56065,7 +57102,7 @@ def is_paper_folder_change_subscription(self): :rtype: bool """ - return self._tag == 'paper_folder_change_subscription' + return self._tag == "paper_folder_change_subscription" def is_paper_folder_deleted(self): """ @@ -56073,7 +57110,7 @@ def is_paper_folder_deleted(self): :rtype: bool """ - return self._tag == 'paper_folder_deleted' + return self._tag == "paper_folder_deleted" def is_paper_folder_followed(self): """ @@ -56081,7 +57118,7 @@ def is_paper_folder_followed(self): :rtype: bool """ - return self._tag == 'paper_folder_followed' + return self._tag == "paper_folder_followed" def is_paper_folder_team_invite(self): """ @@ -56089,7 +57126,7 @@ def is_paper_folder_team_invite(self): :rtype: bool """ - return self._tag == 'paper_folder_team_invite' + return self._tag == "paper_folder_team_invite" def is_paper_published_link_change_permission(self): """ @@ -56097,7 +57134,7 @@ def is_paper_published_link_change_permission(self): :rtype: bool """ - return self._tag == 'paper_published_link_change_permission' + return self._tag == "paper_published_link_change_permission" def is_paper_published_link_create(self): """ @@ -56105,7 +57142,7 @@ def is_paper_published_link_create(self): :rtype: bool """ - return self._tag == 'paper_published_link_create' + return self._tag == "paper_published_link_create" def is_paper_published_link_disabled(self): """ @@ -56113,7 +57150,7 @@ def is_paper_published_link_disabled(self): :rtype: bool """ - return self._tag == 'paper_published_link_disabled' + return self._tag == "paper_published_link_disabled" def is_paper_published_link_view(self): """ @@ -56121,7 +57158,7 @@ def is_paper_published_link_view(self): :rtype: bool """ - return self._tag == 'paper_published_link_view' + return self._tag == "paper_published_link_view" def is_password_change(self): """ @@ -56129,7 +57166,7 @@ def is_password_change(self): :rtype: bool """ - return self._tag == 'password_change' + return self._tag == "password_change" def is_password_reset(self): """ @@ -56137,7 +57174,7 @@ def is_password_reset(self): :rtype: bool """ - return self._tag == 'password_reset' + return self._tag == "password_reset" def is_password_reset_all(self): """ @@ -56145,7 +57182,7 @@ def is_password_reset_all(self): :rtype: bool """ - return self._tag == 'password_reset_all' + return self._tag == "password_reset_all" def is_protect_internal_domains_changed(self): """ @@ -56153,7 +57190,7 @@ def is_protect_internal_domains_changed(self): :rtype: bool """ - return self._tag == 'protect_internal_domains_changed' + return self._tag == "protect_internal_domains_changed" def is_classification_create_report(self): """ @@ -56161,7 +57198,7 @@ def is_classification_create_report(self): :rtype: bool """ - return self._tag == 'classification_create_report' + return self._tag == "classification_create_report" def is_classification_create_report_fail(self): """ @@ -56169,7 +57206,7 @@ def is_classification_create_report_fail(self): :rtype: bool """ - return self._tag == 'classification_create_report_fail' + return self._tag == "classification_create_report_fail" def is_emm_create_exceptions_report(self): """ @@ -56177,7 +57214,7 @@ def is_emm_create_exceptions_report(self): :rtype: bool """ - return self._tag == 'emm_create_exceptions_report' + return self._tag == "emm_create_exceptions_report" def is_emm_create_usage_report(self): """ @@ -56185,7 +57222,7 @@ def is_emm_create_usage_report(self): :rtype: bool """ - return self._tag == 'emm_create_usage_report' + return self._tag == "emm_create_usage_report" def is_export_members_report(self): """ @@ -56193,7 +57230,7 @@ def is_export_members_report(self): :rtype: bool """ - return self._tag == 'export_members_report' + return self._tag == "export_members_report" def is_export_members_report_fail(self): """ @@ -56201,7 +57238,7 @@ def is_export_members_report_fail(self): :rtype: bool """ - return self._tag == 'export_members_report_fail' + return self._tag == "export_members_report_fail" def is_external_sharing_create_report(self): """ @@ -56209,7 +57246,7 @@ def is_external_sharing_create_report(self): :rtype: bool """ - return self._tag == 'external_sharing_create_report' + return self._tag == "external_sharing_create_report" def is_external_sharing_report_failed(self): """ @@ -56217,7 +57254,7 @@ def is_external_sharing_report_failed(self): :rtype: bool """ - return self._tag == 'external_sharing_report_failed' + return self._tag == "external_sharing_report_failed" def is_member_access_details_create_report(self): """ @@ -56225,7 +57262,7 @@ def is_member_access_details_create_report(self): :rtype: bool """ - return self._tag == 'member_access_details_create_report' + return self._tag == "member_access_details_create_report" def is_member_access_details_create_report_failed(self): """ @@ -56233,7 +57270,7 @@ def is_member_access_details_create_report_failed(self): :rtype: bool """ - return self._tag == 'member_access_details_create_report_failed' + return self._tag == "member_access_details_create_report_failed" def is_no_expiration_link_gen_create_report(self): """ @@ -56241,7 +57278,7 @@ def is_no_expiration_link_gen_create_report(self): :rtype: bool """ - return self._tag == 'no_expiration_link_gen_create_report' + return self._tag == "no_expiration_link_gen_create_report" def is_no_expiration_link_gen_report_failed(self): """ @@ -56249,7 +57286,7 @@ def is_no_expiration_link_gen_report_failed(self): :rtype: bool """ - return self._tag == 'no_expiration_link_gen_report_failed' + return self._tag == "no_expiration_link_gen_report_failed" def is_no_password_link_gen_create_report(self): """ @@ -56257,7 +57294,7 @@ def is_no_password_link_gen_create_report(self): :rtype: bool """ - return self._tag == 'no_password_link_gen_create_report' + return self._tag == "no_password_link_gen_create_report" def is_no_password_link_gen_report_failed(self): """ @@ -56265,7 +57302,7 @@ def is_no_password_link_gen_report_failed(self): :rtype: bool """ - return self._tag == 'no_password_link_gen_report_failed' + return self._tag == "no_password_link_gen_report_failed" def is_no_password_link_view_create_report(self): """ @@ -56273,7 +57310,7 @@ def is_no_password_link_view_create_report(self): :rtype: bool """ - return self._tag == 'no_password_link_view_create_report' + return self._tag == "no_password_link_view_create_report" def is_no_password_link_view_report_failed(self): """ @@ -56281,7 +57318,7 @@ def is_no_password_link_view_report_failed(self): :rtype: bool """ - return self._tag == 'no_password_link_view_report_failed' + return self._tag == "no_password_link_view_report_failed" def is_outdated_link_view_create_report(self): """ @@ -56289,7 +57326,7 @@ def is_outdated_link_view_create_report(self): :rtype: bool """ - return self._tag == 'outdated_link_view_create_report' + return self._tag == "outdated_link_view_create_report" def is_outdated_link_view_report_failed(self): """ @@ -56297,7 +57334,7 @@ def is_outdated_link_view_report_failed(self): :rtype: bool """ - return self._tag == 'outdated_link_view_report_failed' + return self._tag == "outdated_link_view_report_failed" def is_paper_admin_export_start(self): """ @@ -56305,7 +57342,7 @@ def is_paper_admin_export_start(self): :rtype: bool """ - return self._tag == 'paper_admin_export_start' + return self._tag == "paper_admin_export_start" def is_ransomware_alert_create_report(self): """ @@ -56313,7 +57350,7 @@ def is_ransomware_alert_create_report(self): :rtype: bool """ - return self._tag == 'ransomware_alert_create_report' + return self._tag == "ransomware_alert_create_report" def is_ransomware_alert_create_report_failed(self): """ @@ -56321,7 +57358,7 @@ def is_ransomware_alert_create_report_failed(self): :rtype: bool """ - return self._tag == 'ransomware_alert_create_report_failed' + return self._tag == "ransomware_alert_create_report_failed" def is_shared_folders_create_report(self): """ @@ -56329,7 +57366,7 @@ def is_shared_folders_create_report(self): :rtype: bool """ - return self._tag == 'shared_folders_create_report' + return self._tag == "shared_folders_create_report" def is_shared_folders_create_report_failed(self): """ @@ -56337,7 +57374,7 @@ def is_shared_folders_create_report_failed(self): :rtype: bool """ - return self._tag == 'shared_folders_create_report_failed' + return self._tag == "shared_folders_create_report_failed" def is_smart_sync_create_admin_privilege_report(self): """ @@ -56345,7 +57382,7 @@ def is_smart_sync_create_admin_privilege_report(self): :rtype: bool """ - return self._tag == 'smart_sync_create_admin_privilege_report' + return self._tag == "smart_sync_create_admin_privilege_report" def is_team_activity_create_report(self): """ @@ -56353,7 +57390,7 @@ def is_team_activity_create_report(self): :rtype: bool """ - return self._tag == 'team_activity_create_report' + return self._tag == "team_activity_create_report" def is_team_activity_create_report_fail(self): """ @@ -56361,7 +57398,7 @@ def is_team_activity_create_report_fail(self): :rtype: bool """ - return self._tag == 'team_activity_create_report_fail' + return self._tag == "team_activity_create_report_fail" def is_team_folders_create_report(self): """ @@ -56369,7 +57406,7 @@ def is_team_folders_create_report(self): :rtype: bool """ - return self._tag == 'team_folders_create_report' + return self._tag == "team_folders_create_report" def is_team_folders_create_report_failed(self): """ @@ -56377,7 +57414,7 @@ def is_team_folders_create_report_failed(self): :rtype: bool """ - return self._tag == 'team_folders_create_report_failed' + return self._tag == "team_folders_create_report_failed" def is_team_storage_create_report(self): """ @@ -56385,7 +57422,7 @@ def is_team_storage_create_report(self): :rtype: bool """ - return self._tag == 'team_storage_create_report' + return self._tag == "team_storage_create_report" def is_team_storage_create_report_failed(self): """ @@ -56393,7 +57430,7 @@ def is_team_storage_create_report_failed(self): :rtype: bool """ - return self._tag == 'team_storage_create_report_failed' + return self._tag == "team_storage_create_report_failed" def is_collection_share(self): """ @@ -56401,7 +57438,7 @@ def is_collection_share(self): :rtype: bool """ - return self._tag == 'collection_share' + return self._tag == "collection_share" def is_file_transfers_file_add(self): """ @@ -56409,7 +57446,7 @@ def is_file_transfers_file_add(self): :rtype: bool """ - return self._tag == 'file_transfers_file_add' + return self._tag == "file_transfers_file_add" def is_file_transfers_transfer_delete(self): """ @@ -56417,7 +57454,7 @@ def is_file_transfers_transfer_delete(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_delete' + return self._tag == "file_transfers_transfer_delete" def is_file_transfers_transfer_download(self): """ @@ -56425,7 +57462,7 @@ def is_file_transfers_transfer_download(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_download' + return self._tag == "file_transfers_transfer_download" def is_file_transfers_transfer_send(self): """ @@ -56433,7 +57470,7 @@ def is_file_transfers_transfer_send(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_send' + return self._tag == "file_transfers_transfer_send" def is_file_transfers_transfer_view(self): """ @@ -56441,7 +57478,7 @@ def is_file_transfers_transfer_view(self): :rtype: bool """ - return self._tag == 'file_transfers_transfer_view' + return self._tag == "file_transfers_transfer_view" def is_media_hub_project_team_add(self): """ @@ -56449,7 +57486,7 @@ def is_media_hub_project_team_add(self): :rtype: bool """ - return self._tag == 'media_hub_project_team_add' + return self._tag == "media_hub_project_team_add" def is_media_hub_project_team_delete(self): """ @@ -56457,7 +57494,7 @@ def is_media_hub_project_team_delete(self): :rtype: bool """ - return self._tag == 'media_hub_project_team_delete' + return self._tag == "media_hub_project_team_delete" def is_media_hub_project_team_role_changed(self): """ @@ -56465,7 +57502,7 @@ def is_media_hub_project_team_role_changed(self): :rtype: bool """ - return self._tag == 'media_hub_project_team_role_changed' + return self._tag == "media_hub_project_team_role_changed" def is_media_hub_shared_link_audience_changed(self): """ @@ -56473,7 +57510,7 @@ def is_media_hub_shared_link_audience_changed(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_audience_changed' + return self._tag == "media_hub_shared_link_audience_changed" def is_media_hub_shared_link_created(self): """ @@ -56481,7 +57518,7 @@ def is_media_hub_shared_link_created(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_created' + return self._tag == "media_hub_shared_link_created" def is_media_hub_shared_link_download_setting_changed(self): """ @@ -56489,7 +57526,7 @@ def is_media_hub_shared_link_download_setting_changed(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_download_setting_changed' + return self._tag == "media_hub_shared_link_download_setting_changed" def is_media_hub_shared_link_revoked(self): """ @@ -56497,7 +57534,7 @@ def is_media_hub_shared_link_revoked(self): :rtype: bool """ - return self._tag == 'media_hub_shared_link_revoked' + return self._tag == "media_hub_shared_link_revoked" def is_note_acl_invite_only(self): """ @@ -56505,7 +57542,7 @@ def is_note_acl_invite_only(self): :rtype: bool """ - return self._tag == 'note_acl_invite_only' + return self._tag == "note_acl_invite_only" def is_note_acl_link(self): """ @@ -56513,7 +57550,7 @@ def is_note_acl_link(self): :rtype: bool """ - return self._tag == 'note_acl_link' + return self._tag == "note_acl_link" def is_note_acl_team_link(self): """ @@ -56521,7 +57558,7 @@ def is_note_acl_team_link(self): :rtype: bool """ - return self._tag == 'note_acl_team_link' + return self._tag == "note_acl_team_link" def is_note_shared(self): """ @@ -56529,7 +57566,7 @@ def is_note_shared(self): :rtype: bool """ - return self._tag == 'note_shared' + return self._tag == "note_shared" def is_note_share_receive(self): """ @@ -56537,7 +57574,7 @@ def is_note_share_receive(self): :rtype: bool """ - return self._tag == 'note_share_receive' + return self._tag == "note_share_receive" def is_open_note_shared(self): """ @@ -56545,7 +57582,7 @@ def is_open_note_shared(self): :rtype: bool """ - return self._tag == 'open_note_shared' + return self._tag == "open_note_shared" def is_replay_file_shared_link_created(self): """ @@ -56553,7 +57590,7 @@ def is_replay_file_shared_link_created(self): :rtype: bool """ - return self._tag == 'replay_file_shared_link_created' + return self._tag == "replay_file_shared_link_created" def is_replay_file_shared_link_modified(self): """ @@ -56561,7 +57598,7 @@ def is_replay_file_shared_link_modified(self): :rtype: bool """ - return self._tag == 'replay_file_shared_link_modified' + return self._tag == "replay_file_shared_link_modified" def is_replay_project_team_add(self): """ @@ -56569,7 +57606,7 @@ def is_replay_project_team_add(self): :rtype: bool """ - return self._tag == 'replay_project_team_add' + return self._tag == "replay_project_team_add" def is_replay_project_team_delete(self): """ @@ -56577,7 +57614,7 @@ def is_replay_project_team_delete(self): :rtype: bool """ - return self._tag == 'replay_project_team_delete' + return self._tag == "replay_project_team_delete" def is_send_and_track_file_added(self): """ @@ -56585,7 +57622,7 @@ def is_send_and_track_file_added(self): :rtype: bool """ - return self._tag == 'send_and_track_file_added' + return self._tag == "send_and_track_file_added" def is_send_and_track_file_renamed(self): """ @@ -56593,7 +57630,7 @@ def is_send_and_track_file_renamed(self): :rtype: bool """ - return self._tag == 'send_and_track_file_renamed' + return self._tag == "send_and_track_file_renamed" def is_send_and_track_file_updated(self): """ @@ -56601,7 +57638,7 @@ def is_send_and_track_file_updated(self): :rtype: bool """ - return self._tag == 'send_and_track_file_updated' + return self._tag == "send_and_track_file_updated" def is_send_and_track_link_created(self): """ @@ -56609,7 +57646,7 @@ def is_send_and_track_link_created(self): :rtype: bool """ - return self._tag == 'send_and_track_link_created' + return self._tag == "send_and_track_link_created" def is_send_and_track_link_deleted(self): """ @@ -56617,7 +57654,7 @@ def is_send_and_track_link_deleted(self): :rtype: bool """ - return self._tag == 'send_and_track_link_deleted' + return self._tag == "send_and_track_link_deleted" def is_send_and_track_link_updated(self): """ @@ -56625,7 +57662,7 @@ def is_send_and_track_link_updated(self): :rtype: bool """ - return self._tag == 'send_and_track_link_updated' + return self._tag == "send_and_track_link_updated" def is_send_and_track_link_viewed(self): """ @@ -56633,7 +57670,7 @@ def is_send_and_track_link_viewed(self): :rtype: bool """ - return self._tag == 'send_and_track_link_viewed' + return self._tag == "send_and_track_link_viewed" def is_send_and_track_removed_file_and_associated_links(self): """ @@ -56641,7 +57678,7 @@ def is_send_and_track_removed_file_and_associated_links(self): :rtype: bool """ - return self._tag == 'send_and_track_removed_file_and_associated_links' + return self._tag == "send_and_track_removed_file_and_associated_links" def is_sf_add_group(self): """ @@ -56649,7 +57686,7 @@ def is_sf_add_group(self): :rtype: bool """ - return self._tag == 'sf_add_group' + return self._tag == "sf_add_group" def is_sf_allow_non_members_to_view_shared_links(self): """ @@ -56657,7 +57694,7 @@ def is_sf_allow_non_members_to_view_shared_links(self): :rtype: bool """ - return self._tag == 'sf_allow_non_members_to_view_shared_links' + return self._tag == "sf_allow_non_members_to_view_shared_links" def is_sf_external_invite_warn(self): """ @@ -56665,7 +57702,7 @@ def is_sf_external_invite_warn(self): :rtype: bool """ - return self._tag == 'sf_external_invite_warn' + return self._tag == "sf_external_invite_warn" def is_sf_fb_invite(self): """ @@ -56673,7 +57710,7 @@ def is_sf_fb_invite(self): :rtype: bool """ - return self._tag == 'sf_fb_invite' + return self._tag == "sf_fb_invite" def is_sf_fb_invite_change_role(self): """ @@ -56681,7 +57718,7 @@ def is_sf_fb_invite_change_role(self): :rtype: bool """ - return self._tag == 'sf_fb_invite_change_role' + return self._tag == "sf_fb_invite_change_role" def is_sf_fb_uninvite(self): """ @@ -56689,7 +57726,7 @@ def is_sf_fb_uninvite(self): :rtype: bool """ - return self._tag == 'sf_fb_uninvite' + return self._tag == "sf_fb_uninvite" def is_sf_invite_group(self): """ @@ -56697,7 +57734,7 @@ def is_sf_invite_group(self): :rtype: bool """ - return self._tag == 'sf_invite_group' + return self._tag == "sf_invite_group" def is_sf_team_grant_access(self): """ @@ -56705,7 +57742,7 @@ def is_sf_team_grant_access(self): :rtype: bool """ - return self._tag == 'sf_team_grant_access' + return self._tag == "sf_team_grant_access" def is_sf_team_invite(self): """ @@ -56713,7 +57750,7 @@ def is_sf_team_invite(self): :rtype: bool """ - return self._tag == 'sf_team_invite' + return self._tag == "sf_team_invite" def is_sf_team_invite_change_role(self): """ @@ -56721,7 +57758,7 @@ def is_sf_team_invite_change_role(self): :rtype: bool """ - return self._tag == 'sf_team_invite_change_role' + return self._tag == "sf_team_invite_change_role" def is_sf_team_join(self): """ @@ -56729,7 +57766,7 @@ def is_sf_team_join(self): :rtype: bool """ - return self._tag == 'sf_team_join' + return self._tag == "sf_team_join" def is_sf_team_join_from_oob_link(self): """ @@ -56737,7 +57774,7 @@ def is_sf_team_join_from_oob_link(self): :rtype: bool """ - return self._tag == 'sf_team_join_from_oob_link' + return self._tag == "sf_team_join_from_oob_link" def is_sf_team_uninvite(self): """ @@ -56745,7 +57782,7 @@ def is_sf_team_uninvite(self): :rtype: bool """ - return self._tag == 'sf_team_uninvite' + return self._tag == "sf_team_uninvite" def is_shared_content_add_invitees(self): """ @@ -56753,7 +57790,7 @@ def is_shared_content_add_invitees(self): :rtype: bool """ - return self._tag == 'shared_content_add_invitees' + return self._tag == "shared_content_add_invitees" def is_shared_content_add_link_expiry(self): """ @@ -56761,7 +57798,7 @@ def is_shared_content_add_link_expiry(self): :rtype: bool """ - return self._tag == 'shared_content_add_link_expiry' + return self._tag == "shared_content_add_link_expiry" def is_shared_content_add_link_password(self): """ @@ -56769,7 +57806,7 @@ def is_shared_content_add_link_password(self): :rtype: bool """ - return self._tag == 'shared_content_add_link_password' + return self._tag == "shared_content_add_link_password" def is_shared_content_add_member(self): """ @@ -56777,7 +57814,7 @@ def is_shared_content_add_member(self): :rtype: bool """ - return self._tag == 'shared_content_add_member' + return self._tag == "shared_content_add_member" def is_shared_content_change_downloads_policy(self): """ @@ -56785,7 +57822,7 @@ def is_shared_content_change_downloads_policy(self): :rtype: bool """ - return self._tag == 'shared_content_change_downloads_policy' + return self._tag == "shared_content_change_downloads_policy" def is_shared_content_change_invitee_role(self): """ @@ -56793,7 +57830,7 @@ def is_shared_content_change_invitee_role(self): :rtype: bool """ - return self._tag == 'shared_content_change_invitee_role' + return self._tag == "shared_content_change_invitee_role" def is_shared_content_change_link_audience(self): """ @@ -56801,7 +57838,7 @@ def is_shared_content_change_link_audience(self): :rtype: bool """ - return self._tag == 'shared_content_change_link_audience' + return self._tag == "shared_content_change_link_audience" def is_shared_content_change_link_expiry(self): """ @@ -56809,7 +57846,7 @@ def is_shared_content_change_link_expiry(self): :rtype: bool """ - return self._tag == 'shared_content_change_link_expiry' + return self._tag == "shared_content_change_link_expiry" def is_shared_content_change_link_password(self): """ @@ -56817,7 +57854,7 @@ def is_shared_content_change_link_password(self): :rtype: bool """ - return self._tag == 'shared_content_change_link_password' + return self._tag == "shared_content_change_link_password" def is_shared_content_change_member_role(self): """ @@ -56825,7 +57862,7 @@ def is_shared_content_change_member_role(self): :rtype: bool """ - return self._tag == 'shared_content_change_member_role' + return self._tag == "shared_content_change_member_role" def is_shared_content_change_viewer_info_policy(self): """ @@ -56833,7 +57870,7 @@ def is_shared_content_change_viewer_info_policy(self): :rtype: bool """ - return self._tag == 'shared_content_change_viewer_info_policy' + return self._tag == "shared_content_change_viewer_info_policy" def is_shared_content_claim_invitation(self): """ @@ -56841,7 +57878,7 @@ def is_shared_content_claim_invitation(self): :rtype: bool """ - return self._tag == 'shared_content_claim_invitation' + return self._tag == "shared_content_claim_invitation" def is_shared_content_copy(self): """ @@ -56849,7 +57886,7 @@ def is_shared_content_copy(self): :rtype: bool """ - return self._tag == 'shared_content_copy' + return self._tag == "shared_content_copy" def is_shared_content_download(self): """ @@ -56857,7 +57894,7 @@ def is_shared_content_download(self): :rtype: bool """ - return self._tag == 'shared_content_download' + return self._tag == "shared_content_download" def is_shared_content_relinquish_membership(self): """ @@ -56865,7 +57902,7 @@ def is_shared_content_relinquish_membership(self): :rtype: bool """ - return self._tag == 'shared_content_relinquish_membership' + return self._tag == "shared_content_relinquish_membership" def is_shared_content_remove_invitees(self): """ @@ -56873,7 +57910,7 @@ def is_shared_content_remove_invitees(self): :rtype: bool """ - return self._tag == 'shared_content_remove_invitees' + return self._tag == "shared_content_remove_invitees" def is_shared_content_remove_link_expiry(self): """ @@ -56881,7 +57918,7 @@ def is_shared_content_remove_link_expiry(self): :rtype: bool """ - return self._tag == 'shared_content_remove_link_expiry' + return self._tag == "shared_content_remove_link_expiry" def is_shared_content_remove_link_password(self): """ @@ -56889,7 +57926,7 @@ def is_shared_content_remove_link_password(self): :rtype: bool """ - return self._tag == 'shared_content_remove_link_password' + return self._tag == "shared_content_remove_link_password" def is_shared_content_remove_member(self): """ @@ -56897,7 +57934,7 @@ def is_shared_content_remove_member(self): :rtype: bool """ - return self._tag == 'shared_content_remove_member' + return self._tag == "shared_content_remove_member" def is_shared_content_request_access(self): """ @@ -56905,7 +57942,7 @@ def is_shared_content_request_access(self): :rtype: bool """ - return self._tag == 'shared_content_request_access' + return self._tag == "shared_content_request_access" def is_shared_content_restore_invitees(self): """ @@ -56913,7 +57950,7 @@ def is_shared_content_restore_invitees(self): :rtype: bool """ - return self._tag == 'shared_content_restore_invitees' + return self._tag == "shared_content_restore_invitees" def is_shared_content_restore_member(self): """ @@ -56921,7 +57958,7 @@ def is_shared_content_restore_member(self): :rtype: bool """ - return self._tag == 'shared_content_restore_member' + return self._tag == "shared_content_restore_member" def is_shared_content_unshare(self): """ @@ -56929,7 +57966,7 @@ def is_shared_content_unshare(self): :rtype: bool """ - return self._tag == 'shared_content_unshare' + return self._tag == "shared_content_unshare" def is_shared_content_view(self): """ @@ -56937,7 +57974,7 @@ def is_shared_content_view(self): :rtype: bool """ - return self._tag == 'shared_content_view' + return self._tag == "shared_content_view" def is_shared_folder_change_link_policy(self): """ @@ -56945,7 +57982,7 @@ def is_shared_folder_change_link_policy(self): :rtype: bool """ - return self._tag == 'shared_folder_change_link_policy' + return self._tag == "shared_folder_change_link_policy" def is_shared_folder_change_members_inheritance_policy(self): """ @@ -56953,7 +57990,7 @@ def is_shared_folder_change_members_inheritance_policy(self): :rtype: bool """ - return self._tag == 'shared_folder_change_members_inheritance_policy' + return self._tag == "shared_folder_change_members_inheritance_policy" def is_shared_folder_change_members_management_policy(self): """ @@ -56961,7 +57998,7 @@ def is_shared_folder_change_members_management_policy(self): :rtype: bool """ - return self._tag == 'shared_folder_change_members_management_policy' + return self._tag == "shared_folder_change_members_management_policy" def is_shared_folder_change_members_policy(self): """ @@ -56969,7 +58006,7 @@ def is_shared_folder_change_members_policy(self): :rtype: bool """ - return self._tag == 'shared_folder_change_members_policy' + return self._tag == "shared_folder_change_members_policy" def is_shared_folder_create(self): """ @@ -56977,7 +58014,7 @@ def is_shared_folder_create(self): :rtype: bool """ - return self._tag == 'shared_folder_create' + return self._tag == "shared_folder_create" def is_shared_folder_decline_invitation(self): """ @@ -56985,7 +58022,7 @@ def is_shared_folder_decline_invitation(self): :rtype: bool """ - return self._tag == 'shared_folder_decline_invitation' + return self._tag == "shared_folder_decline_invitation" def is_shared_folder_mount(self): """ @@ -56993,7 +58030,7 @@ def is_shared_folder_mount(self): :rtype: bool """ - return self._tag == 'shared_folder_mount' + return self._tag == "shared_folder_mount" def is_shared_folder_nest(self): """ @@ -57001,7 +58038,7 @@ def is_shared_folder_nest(self): :rtype: bool """ - return self._tag == 'shared_folder_nest' + return self._tag == "shared_folder_nest" def is_shared_folder_transfer_ownership(self): """ @@ -57009,7 +58046,7 @@ def is_shared_folder_transfer_ownership(self): :rtype: bool """ - return self._tag == 'shared_folder_transfer_ownership' + return self._tag == "shared_folder_transfer_ownership" def is_shared_folder_unmount(self): """ @@ -57017,7 +58054,7 @@ def is_shared_folder_unmount(self): :rtype: bool """ - return self._tag == 'shared_folder_unmount' + return self._tag == "shared_folder_unmount" def is_shared_link_add_expiry(self): """ @@ -57025,7 +58062,7 @@ def is_shared_link_add_expiry(self): :rtype: bool """ - return self._tag == 'shared_link_add_expiry' + return self._tag == "shared_link_add_expiry" def is_shared_link_change_expiry(self): """ @@ -57033,7 +58070,7 @@ def is_shared_link_change_expiry(self): :rtype: bool """ - return self._tag == 'shared_link_change_expiry' + return self._tag == "shared_link_change_expiry" def is_shared_link_change_visibility(self): """ @@ -57041,7 +58078,7 @@ def is_shared_link_change_visibility(self): :rtype: bool """ - return self._tag == 'shared_link_change_visibility' + return self._tag == "shared_link_change_visibility" def is_shared_link_copy(self): """ @@ -57049,7 +58086,7 @@ def is_shared_link_copy(self): :rtype: bool """ - return self._tag == 'shared_link_copy' + return self._tag == "shared_link_copy" def is_shared_link_create(self): """ @@ -57057,7 +58094,7 @@ def is_shared_link_create(self): :rtype: bool """ - return self._tag == 'shared_link_create' + return self._tag == "shared_link_create" def is_shared_link_disable(self): """ @@ -57065,7 +58102,7 @@ def is_shared_link_disable(self): :rtype: bool """ - return self._tag == 'shared_link_disable' + return self._tag == "shared_link_disable" def is_shared_link_download(self): """ @@ -57073,7 +58110,7 @@ def is_shared_link_download(self): :rtype: bool """ - return self._tag == 'shared_link_download' + return self._tag == "shared_link_download" def is_shared_link_remove_expiry(self): """ @@ -57081,7 +58118,7 @@ def is_shared_link_remove_expiry(self): :rtype: bool """ - return self._tag == 'shared_link_remove_expiry' + return self._tag == "shared_link_remove_expiry" def is_shared_link_remove_visitor(self): """ @@ -57089,7 +58126,7 @@ def is_shared_link_remove_visitor(self): :rtype: bool """ - return self._tag == 'shared_link_remove_visitor' + return self._tag == "shared_link_remove_visitor" def is_shared_link_settings_add_expiration(self): """ @@ -57097,7 +58134,7 @@ def is_shared_link_settings_add_expiration(self): :rtype: bool """ - return self._tag == 'shared_link_settings_add_expiration' + return self._tag == "shared_link_settings_add_expiration" def is_shared_link_settings_add_password(self): """ @@ -57105,7 +58142,7 @@ def is_shared_link_settings_add_password(self): :rtype: bool """ - return self._tag == 'shared_link_settings_add_password' + return self._tag == "shared_link_settings_add_password" def is_shared_link_settings_allow_download_disabled(self): """ @@ -57113,7 +58150,7 @@ def is_shared_link_settings_allow_download_disabled(self): :rtype: bool """ - return self._tag == 'shared_link_settings_allow_download_disabled' + return self._tag == "shared_link_settings_allow_download_disabled" def is_shared_link_settings_allow_download_enabled(self): """ @@ -57121,7 +58158,7 @@ def is_shared_link_settings_allow_download_enabled(self): :rtype: bool """ - return self._tag == 'shared_link_settings_allow_download_enabled' + return self._tag == "shared_link_settings_allow_download_enabled" def is_shared_link_settings_change_audience(self): """ @@ -57129,7 +58166,7 @@ def is_shared_link_settings_change_audience(self): :rtype: bool """ - return self._tag == 'shared_link_settings_change_audience' + return self._tag == "shared_link_settings_change_audience" def is_shared_link_settings_change_expiration(self): """ @@ -57137,7 +58174,7 @@ def is_shared_link_settings_change_expiration(self): :rtype: bool """ - return self._tag == 'shared_link_settings_change_expiration' + return self._tag == "shared_link_settings_change_expiration" def is_shared_link_settings_change_password(self): """ @@ -57145,7 +58182,7 @@ def is_shared_link_settings_change_password(self): :rtype: bool """ - return self._tag == 'shared_link_settings_change_password' + return self._tag == "shared_link_settings_change_password" def is_shared_link_settings_remove_expiration(self): """ @@ -57153,7 +58190,7 @@ def is_shared_link_settings_remove_expiration(self): :rtype: bool """ - return self._tag == 'shared_link_settings_remove_expiration' + return self._tag == "shared_link_settings_remove_expiration" def is_shared_link_settings_remove_password(self): """ @@ -57161,7 +58198,7 @@ def is_shared_link_settings_remove_password(self): :rtype: bool """ - return self._tag == 'shared_link_settings_remove_password' + return self._tag == "shared_link_settings_remove_password" def is_shared_link_share(self): """ @@ -57169,7 +58206,7 @@ def is_shared_link_share(self): :rtype: bool """ - return self._tag == 'shared_link_share' + return self._tag == "shared_link_share" def is_shared_link_view(self): """ @@ -57177,7 +58214,7 @@ def is_shared_link_view(self): :rtype: bool """ - return self._tag == 'shared_link_view' + return self._tag == "shared_link_view" def is_shared_note_opened(self): """ @@ -57185,7 +58222,7 @@ def is_shared_note_opened(self): :rtype: bool """ - return self._tag == 'shared_note_opened' + return self._tag == "shared_note_opened" def is_shmodel_disable_downloads(self): """ @@ -57193,7 +58230,7 @@ def is_shmodel_disable_downloads(self): :rtype: bool """ - return self._tag == 'shmodel_disable_downloads' + return self._tag == "shmodel_disable_downloads" def is_shmodel_enable_downloads(self): """ @@ -57201,7 +58238,7 @@ def is_shmodel_enable_downloads(self): :rtype: bool """ - return self._tag == 'shmodel_enable_downloads' + return self._tag == "shmodel_enable_downloads" def is_shmodel_group_share(self): """ @@ -57209,7 +58246,7 @@ def is_shmodel_group_share(self): :rtype: bool """ - return self._tag == 'shmodel_group_share' + return self._tag == "shmodel_group_share" def is_showcase_access_granted(self): """ @@ -57217,7 +58254,7 @@ def is_showcase_access_granted(self): :rtype: bool """ - return self._tag == 'showcase_access_granted' + return self._tag == "showcase_access_granted" def is_showcase_add_member(self): """ @@ -57225,7 +58262,7 @@ def is_showcase_add_member(self): :rtype: bool """ - return self._tag == 'showcase_add_member' + return self._tag == "showcase_add_member" def is_showcase_archived(self): """ @@ -57233,7 +58270,7 @@ def is_showcase_archived(self): :rtype: bool """ - return self._tag == 'showcase_archived' + return self._tag == "showcase_archived" def is_showcase_created(self): """ @@ -57241,7 +58278,7 @@ def is_showcase_created(self): :rtype: bool """ - return self._tag == 'showcase_created' + return self._tag == "showcase_created" def is_showcase_delete_comment(self): """ @@ -57249,7 +58286,7 @@ def is_showcase_delete_comment(self): :rtype: bool """ - return self._tag == 'showcase_delete_comment' + return self._tag == "showcase_delete_comment" def is_showcase_edited(self): """ @@ -57257,7 +58294,7 @@ def is_showcase_edited(self): :rtype: bool """ - return self._tag == 'showcase_edited' + return self._tag == "showcase_edited" def is_showcase_edit_comment(self): """ @@ -57265,7 +58302,7 @@ def is_showcase_edit_comment(self): :rtype: bool """ - return self._tag == 'showcase_edit_comment' + return self._tag == "showcase_edit_comment" def is_showcase_file_added(self): """ @@ -57273,7 +58310,7 @@ def is_showcase_file_added(self): :rtype: bool """ - return self._tag == 'showcase_file_added' + return self._tag == "showcase_file_added" def is_showcase_file_download(self): """ @@ -57281,7 +58318,7 @@ def is_showcase_file_download(self): :rtype: bool """ - return self._tag == 'showcase_file_download' + return self._tag == "showcase_file_download" def is_showcase_file_removed(self): """ @@ -57289,7 +58326,7 @@ def is_showcase_file_removed(self): :rtype: bool """ - return self._tag == 'showcase_file_removed' + return self._tag == "showcase_file_removed" def is_showcase_file_view(self): """ @@ -57297,7 +58334,7 @@ def is_showcase_file_view(self): :rtype: bool """ - return self._tag == 'showcase_file_view' + return self._tag == "showcase_file_view" def is_showcase_permanently_deleted(self): """ @@ -57305,7 +58342,7 @@ def is_showcase_permanently_deleted(self): :rtype: bool """ - return self._tag == 'showcase_permanently_deleted' + return self._tag == "showcase_permanently_deleted" def is_showcase_post_comment(self): """ @@ -57313,7 +58350,7 @@ def is_showcase_post_comment(self): :rtype: bool """ - return self._tag == 'showcase_post_comment' + return self._tag == "showcase_post_comment" def is_showcase_remove_member(self): """ @@ -57321,7 +58358,7 @@ def is_showcase_remove_member(self): :rtype: bool """ - return self._tag == 'showcase_remove_member' + return self._tag == "showcase_remove_member" def is_showcase_renamed(self): """ @@ -57329,7 +58366,7 @@ def is_showcase_renamed(self): :rtype: bool """ - return self._tag == 'showcase_renamed' + return self._tag == "showcase_renamed" def is_showcase_request_access(self): """ @@ -57337,7 +58374,7 @@ def is_showcase_request_access(self): :rtype: bool """ - return self._tag == 'showcase_request_access' + return self._tag == "showcase_request_access" def is_showcase_resolve_comment(self): """ @@ -57345,7 +58382,7 @@ def is_showcase_resolve_comment(self): :rtype: bool """ - return self._tag == 'showcase_resolve_comment' + return self._tag == "showcase_resolve_comment" def is_showcase_restored(self): """ @@ -57353,7 +58390,7 @@ def is_showcase_restored(self): :rtype: bool """ - return self._tag == 'showcase_restored' + return self._tag == "showcase_restored" def is_showcase_trashed(self): """ @@ -57361,7 +58398,7 @@ def is_showcase_trashed(self): :rtype: bool """ - return self._tag == 'showcase_trashed' + return self._tag == "showcase_trashed" def is_showcase_trashed_deprecated(self): """ @@ -57369,7 +58406,7 @@ def is_showcase_trashed_deprecated(self): :rtype: bool """ - return self._tag == 'showcase_trashed_deprecated' + return self._tag == "showcase_trashed_deprecated" def is_showcase_unresolve_comment(self): """ @@ -57377,7 +58414,7 @@ def is_showcase_unresolve_comment(self): :rtype: bool """ - return self._tag == 'showcase_unresolve_comment' + return self._tag == "showcase_unresolve_comment" def is_showcase_untrashed(self): """ @@ -57385,7 +58422,7 @@ def is_showcase_untrashed(self): :rtype: bool """ - return self._tag == 'showcase_untrashed' + return self._tag == "showcase_untrashed" def is_showcase_untrashed_deprecated(self): """ @@ -57393,7 +58430,7 @@ def is_showcase_untrashed_deprecated(self): :rtype: bool """ - return self._tag == 'showcase_untrashed_deprecated' + return self._tag == "showcase_untrashed_deprecated" def is_showcase_view(self): """ @@ -57401,7 +58438,7 @@ def is_showcase_view(self): :rtype: bool """ - return self._tag == 'showcase_view' + return self._tag == "showcase_view" def is_sign_signature_request_canceled(self): """ @@ -57409,7 +58446,7 @@ def is_sign_signature_request_canceled(self): :rtype: bool """ - return self._tag == 'sign_signature_request_canceled' + return self._tag == "sign_signature_request_canceled" def is_sign_signature_request_completed(self): """ @@ -57417,7 +58454,7 @@ def is_sign_signature_request_completed(self): :rtype: bool """ - return self._tag == 'sign_signature_request_completed' + return self._tag == "sign_signature_request_completed" def is_sign_signature_request_declined(self): """ @@ -57425,7 +58462,7 @@ def is_sign_signature_request_declined(self): :rtype: bool """ - return self._tag == 'sign_signature_request_declined' + return self._tag == "sign_signature_request_declined" def is_sign_signature_request_opened(self): """ @@ -57433,7 +58470,7 @@ def is_sign_signature_request_opened(self): :rtype: bool """ - return self._tag == 'sign_signature_request_opened' + return self._tag == "sign_signature_request_opened" def is_sign_signature_request_reminder_sent(self): """ @@ -57441,7 +58478,7 @@ def is_sign_signature_request_reminder_sent(self): :rtype: bool """ - return self._tag == 'sign_signature_request_reminder_sent' + return self._tag == "sign_signature_request_reminder_sent" def is_sign_signature_request_sent(self): """ @@ -57449,7 +58486,7 @@ def is_sign_signature_request_sent(self): :rtype: bool """ - return self._tag == 'sign_signature_request_sent' + return self._tag == "sign_signature_request_sent" def is_sign_template_created(self): """ @@ -57457,7 +58494,7 @@ def is_sign_template_created(self): :rtype: bool """ - return self._tag == 'sign_template_created' + return self._tag == "sign_template_created" def is_sign_template_shared(self): """ @@ -57465,7 +58502,7 @@ def is_sign_template_shared(self): :rtype: bool """ - return self._tag == 'sign_template_shared' + return self._tag == "sign_template_shared" def is_risc_security_event(self): """ @@ -57473,7 +58510,7 @@ def is_risc_security_event(self): :rtype: bool """ - return self._tag == 'risc_security_event' + return self._tag == "risc_security_event" def is_sso_add_cert(self): """ @@ -57481,7 +58518,7 @@ def is_sso_add_cert(self): :rtype: bool """ - return self._tag == 'sso_add_cert' + return self._tag == "sso_add_cert" def is_sso_add_login_url(self): """ @@ -57489,7 +58526,7 @@ def is_sso_add_login_url(self): :rtype: bool """ - return self._tag == 'sso_add_login_url' + return self._tag == "sso_add_login_url" def is_sso_add_logout_url(self): """ @@ -57497,7 +58534,7 @@ def is_sso_add_logout_url(self): :rtype: bool """ - return self._tag == 'sso_add_logout_url' + return self._tag == "sso_add_logout_url" def is_sso_change_cert(self): """ @@ -57505,7 +58542,7 @@ def is_sso_change_cert(self): :rtype: bool """ - return self._tag == 'sso_change_cert' + return self._tag == "sso_change_cert" def is_sso_change_login_url(self): """ @@ -57513,7 +58550,7 @@ def is_sso_change_login_url(self): :rtype: bool """ - return self._tag == 'sso_change_login_url' + return self._tag == "sso_change_login_url" def is_sso_change_logout_url(self): """ @@ -57521,7 +58558,7 @@ def is_sso_change_logout_url(self): :rtype: bool """ - return self._tag == 'sso_change_logout_url' + return self._tag == "sso_change_logout_url" def is_sso_change_saml_identity_mode(self): """ @@ -57529,7 +58566,7 @@ def is_sso_change_saml_identity_mode(self): :rtype: bool """ - return self._tag == 'sso_change_saml_identity_mode' + return self._tag == "sso_change_saml_identity_mode" def is_sso_remove_cert(self): """ @@ -57537,7 +58574,7 @@ def is_sso_remove_cert(self): :rtype: bool """ - return self._tag == 'sso_remove_cert' + return self._tag == "sso_remove_cert" def is_sso_remove_login_url(self): """ @@ -57545,7 +58582,7 @@ def is_sso_remove_login_url(self): :rtype: bool """ - return self._tag == 'sso_remove_login_url' + return self._tag == "sso_remove_login_url" def is_sso_remove_logout_url(self): """ @@ -57553,7 +58590,7 @@ def is_sso_remove_logout_url(self): :rtype: bool """ - return self._tag == 'sso_remove_logout_url' + return self._tag == "sso_remove_logout_url" def is_team_folder_change_status(self): """ @@ -57561,7 +58598,7 @@ def is_team_folder_change_status(self): :rtype: bool """ - return self._tag == 'team_folder_change_status' + return self._tag == "team_folder_change_status" def is_team_folder_create(self): """ @@ -57569,7 +58606,7 @@ def is_team_folder_create(self): :rtype: bool """ - return self._tag == 'team_folder_create' + return self._tag == "team_folder_create" def is_team_folder_downgrade(self): """ @@ -57577,7 +58614,7 @@ def is_team_folder_downgrade(self): :rtype: bool """ - return self._tag == 'team_folder_downgrade' + return self._tag == "team_folder_downgrade" def is_team_folder_permanently_delete(self): """ @@ -57585,7 +58622,7 @@ def is_team_folder_permanently_delete(self): :rtype: bool """ - return self._tag == 'team_folder_permanently_delete' + return self._tag == "team_folder_permanently_delete" def is_team_folder_rename(self): """ @@ -57593,7 +58630,7 @@ def is_team_folder_rename(self): :rtype: bool """ - return self._tag == 'team_folder_rename' + return self._tag == "team_folder_rename" def is_team_folder_space_limits_change_caps_type(self): """ @@ -57601,7 +58638,7 @@ def is_team_folder_space_limits_change_caps_type(self): :rtype: bool """ - return self._tag == 'team_folder_space_limits_change_caps_type' + return self._tag == "team_folder_space_limits_change_caps_type" def is_team_folder_space_limits_change_limit(self): """ @@ -57609,7 +58646,7 @@ def is_team_folder_space_limits_change_limit(self): :rtype: bool """ - return self._tag == 'team_folder_space_limits_change_limit' + return self._tag == "team_folder_space_limits_change_limit" def is_team_folder_space_limits_change_notification_target(self): """ @@ -57617,7 +58654,7 @@ def is_team_folder_space_limits_change_notification_target(self): :rtype: bool """ - return self._tag == 'team_folder_space_limits_change_notification_target' + return self._tag == "team_folder_space_limits_change_notification_target" def is_team_selective_sync_settings_changed(self): """ @@ -57625,7 +58662,7 @@ def is_team_selective_sync_settings_changed(self): :rtype: bool """ - return self._tag == 'team_selective_sync_settings_changed' + return self._tag == "team_selective_sync_settings_changed" def is_account_capture_change_policy(self): """ @@ -57633,7 +58670,7 @@ def is_account_capture_change_policy(self): :rtype: bool """ - return self._tag == 'account_capture_change_policy' + return self._tag == "account_capture_change_policy" def is_admin_email_reminders_changed(self): """ @@ -57641,7 +58678,7 @@ def is_admin_email_reminders_changed(self): :rtype: bool """ - return self._tag == 'admin_email_reminders_changed' + return self._tag == "admin_email_reminders_changed" def is_ai_third_party_sharing_dropbox_base_policy_changed(self): """ @@ -57649,7 +58686,7 @@ def is_ai_third_party_sharing_dropbox_base_policy_changed(self): :rtype: bool """ - return self._tag == 'ai_third_party_sharing_dropbox_base_policy_changed' + return self._tag == "ai_third_party_sharing_dropbox_base_policy_changed" def is_allow_download_disabled(self): """ @@ -57657,7 +58694,7 @@ def is_allow_download_disabled(self): :rtype: bool """ - return self._tag == 'allow_download_disabled' + return self._tag == "allow_download_disabled" def is_allow_download_enabled(self): """ @@ -57665,7 +58702,7 @@ def is_allow_download_enabled(self): :rtype: bool """ - return self._tag == 'allow_download_enabled' + return self._tag == "allow_download_enabled" def is_apple_login_change_policy(self): """ @@ -57673,7 +58710,7 @@ def is_apple_login_change_policy(self): :rtype: bool """ - return self._tag == 'apple_login_change_policy' + return self._tag == "apple_login_change_policy" def is_app_permissions_changed(self): """ @@ -57681,7 +58718,7 @@ def is_app_permissions_changed(self): :rtype: bool """ - return self._tag == 'app_permissions_changed' + return self._tag == "app_permissions_changed" def is_camera_uploads_policy_changed(self): """ @@ -57689,7 +58726,7 @@ def is_camera_uploads_policy_changed(self): :rtype: bool """ - return self._tag == 'camera_uploads_policy_changed' + return self._tag == "camera_uploads_policy_changed" def is_capture_team_space_policy_changed(self): """ @@ -57697,7 +58734,7 @@ def is_capture_team_space_policy_changed(self): :rtype: bool """ - return self._tag == 'capture_team_space_policy_changed' + return self._tag == "capture_team_space_policy_changed" def is_capture_transcript_policy_changed(self): """ @@ -57705,7 +58742,7 @@ def is_capture_transcript_policy_changed(self): :rtype: bool """ - return self._tag == 'capture_transcript_policy_changed' + return self._tag == "capture_transcript_policy_changed" def is_classification_change_policy(self): """ @@ -57713,7 +58750,7 @@ def is_classification_change_policy(self): :rtype: bool """ - return self._tag == 'classification_change_policy' + return self._tag == "classification_change_policy" def is_computer_backup_policy_changed(self): """ @@ -57721,7 +58758,7 @@ def is_computer_backup_policy_changed(self): :rtype: bool """ - return self._tag == 'computer_backup_policy_changed' + return self._tag == "computer_backup_policy_changed" def is_content_administration_policy_changed(self): """ @@ -57729,7 +58766,7 @@ def is_content_administration_policy_changed(self): :rtype: bool """ - return self._tag == 'content_administration_policy_changed' + return self._tag == "content_administration_policy_changed" def is_content_deletion_protection_change_policy(self): """ @@ -57737,7 +58774,7 @@ def is_content_deletion_protection_change_policy(self): :rtype: bool """ - return self._tag == 'content_deletion_protection_change_policy' + return self._tag == "content_deletion_protection_change_policy" def is_dash_external_sharing_policy_changed(self): """ @@ -57745,7 +58782,7 @@ def is_dash_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'dash_external_sharing_policy_changed' + return self._tag == "dash_external_sharing_policy_changed" def is_data_placement_restriction_change_policy(self): """ @@ -57753,7 +58790,7 @@ def is_data_placement_restriction_change_policy(self): :rtype: bool """ - return self._tag == 'data_placement_restriction_change_policy' + return self._tag == "data_placement_restriction_change_policy" def is_data_placement_restriction_satisfy_policy(self): """ @@ -57761,7 +58798,7 @@ def is_data_placement_restriction_satisfy_policy(self): :rtype: bool """ - return self._tag == 'data_placement_restriction_satisfy_policy' + return self._tag == "data_placement_restriction_satisfy_policy" def is_device_approvals_add_exception(self): """ @@ -57769,7 +58806,7 @@ def is_device_approvals_add_exception(self): :rtype: bool """ - return self._tag == 'device_approvals_add_exception' + return self._tag == "device_approvals_add_exception" def is_device_approvals_change_desktop_policy(self): """ @@ -57777,7 +58814,7 @@ def is_device_approvals_change_desktop_policy(self): :rtype: bool """ - return self._tag == 'device_approvals_change_desktop_policy' + return self._tag == "device_approvals_change_desktop_policy" def is_device_approvals_change_mobile_policy(self): """ @@ -57785,7 +58822,7 @@ def is_device_approvals_change_mobile_policy(self): :rtype: bool """ - return self._tag == 'device_approvals_change_mobile_policy' + return self._tag == "device_approvals_change_mobile_policy" def is_device_approvals_change_overage_action(self): """ @@ -57793,7 +58830,7 @@ def is_device_approvals_change_overage_action(self): :rtype: bool """ - return self._tag == 'device_approvals_change_overage_action' + return self._tag == "device_approvals_change_overage_action" def is_device_approvals_change_unlink_action(self): """ @@ -57801,7 +58838,7 @@ def is_device_approvals_change_unlink_action(self): :rtype: bool """ - return self._tag == 'device_approvals_change_unlink_action' + return self._tag == "device_approvals_change_unlink_action" def is_device_approvals_remove_exception(self): """ @@ -57809,7 +58846,7 @@ def is_device_approvals_remove_exception(self): :rtype: bool """ - return self._tag == 'device_approvals_remove_exception' + return self._tag == "device_approvals_remove_exception" def is_directory_restrictions_add_members(self): """ @@ -57817,7 +58854,7 @@ def is_directory_restrictions_add_members(self): :rtype: bool """ - return self._tag == 'directory_restrictions_add_members' + return self._tag == "directory_restrictions_add_members" def is_directory_restrictions_remove_members(self): """ @@ -57825,7 +58862,7 @@ def is_directory_restrictions_remove_members(self): :rtype: bool """ - return self._tag == 'directory_restrictions_remove_members' + return self._tag == "directory_restrictions_remove_members" def is_dropbox_passwords_policy_changed(self): """ @@ -57833,7 +58870,7 @@ def is_dropbox_passwords_policy_changed(self): :rtype: bool """ - return self._tag == 'dropbox_passwords_policy_changed' + return self._tag == "dropbox_passwords_policy_changed" def is_email_ingest_policy_changed(self): """ @@ -57841,7 +58878,7 @@ def is_email_ingest_policy_changed(self): :rtype: bool """ - return self._tag == 'email_ingest_policy_changed' + return self._tag == "email_ingest_policy_changed" def is_emm_add_exception(self): """ @@ -57849,7 +58886,7 @@ def is_emm_add_exception(self): :rtype: bool """ - return self._tag == 'emm_add_exception' + return self._tag == "emm_add_exception" def is_emm_change_policy(self): """ @@ -57857,7 +58894,7 @@ def is_emm_change_policy(self): :rtype: bool """ - return self._tag == 'emm_change_policy' + return self._tag == "emm_change_policy" def is_emm_remove_exception(self): """ @@ -57865,7 +58902,7 @@ def is_emm_remove_exception(self): :rtype: bool """ - return self._tag == 'emm_remove_exception' + return self._tag == "emm_remove_exception" def is_extended_version_history_change_policy(self): """ @@ -57873,7 +58910,7 @@ def is_extended_version_history_change_policy(self): :rtype: bool """ - return self._tag == 'extended_version_history_change_policy' + return self._tag == "extended_version_history_change_policy" def is_external_drive_backup_policy_changed(self): """ @@ -57881,7 +58918,7 @@ def is_external_drive_backup_policy_changed(self): :rtype: bool """ - return self._tag == 'external_drive_backup_policy_changed' + return self._tag == "external_drive_backup_policy_changed" def is_file_comments_change_policy(self): """ @@ -57889,7 +58926,7 @@ def is_file_comments_change_policy(self): :rtype: bool """ - return self._tag == 'file_comments_change_policy' + return self._tag == "file_comments_change_policy" def is_file_locking_policy_changed(self): """ @@ -57897,7 +58934,7 @@ def is_file_locking_policy_changed(self): :rtype: bool """ - return self._tag == 'file_locking_policy_changed' + return self._tag == "file_locking_policy_changed" def is_file_provider_migration_policy_changed(self): """ @@ -57905,7 +58942,7 @@ def is_file_provider_migration_policy_changed(self): :rtype: bool """ - return self._tag == 'file_provider_migration_policy_changed' + return self._tag == "file_provider_migration_policy_changed" def is_file_requests_change_policy(self): """ @@ -57913,7 +58950,7 @@ def is_file_requests_change_policy(self): :rtype: bool """ - return self._tag == 'file_requests_change_policy' + return self._tag == "file_requests_change_policy" def is_file_requests_emails_enabled(self): """ @@ -57921,7 +58958,7 @@ def is_file_requests_emails_enabled(self): :rtype: bool """ - return self._tag == 'file_requests_emails_enabled' + return self._tag == "file_requests_emails_enabled" def is_file_requests_emails_restricted_to_team_only(self): """ @@ -57929,7 +58966,7 @@ def is_file_requests_emails_restricted_to_team_only(self): :rtype: bool """ - return self._tag == 'file_requests_emails_restricted_to_team_only' + return self._tag == "file_requests_emails_restricted_to_team_only" def is_file_transfers_policy_changed(self): """ @@ -57937,7 +58974,7 @@ def is_file_transfers_policy_changed(self): :rtype: bool """ - return self._tag == 'file_transfers_policy_changed' + return self._tag == "file_transfers_policy_changed" def is_flexible_file_names_policy_changed(self): """ @@ -57945,7 +58982,7 @@ def is_flexible_file_names_policy_changed(self): :rtype: bool """ - return self._tag == 'flexible_file_names_policy_changed' + return self._tag == "flexible_file_names_policy_changed" def is_folder_link_restriction_policy_changed(self): """ @@ -57953,7 +58990,7 @@ def is_folder_link_restriction_policy_changed(self): :rtype: bool """ - return self._tag == 'folder_link_restriction_policy_changed' + return self._tag == "folder_link_restriction_policy_changed" def is_google_sso_change_policy(self): """ @@ -57961,7 +58998,7 @@ def is_google_sso_change_policy(self): :rtype: bool """ - return self._tag == 'google_sso_change_policy' + return self._tag == "google_sso_change_policy" def is_group_user_management_change_policy(self): """ @@ -57969,7 +59006,7 @@ def is_group_user_management_change_policy(self): :rtype: bool """ - return self._tag == 'group_user_management_change_policy' + return self._tag == "group_user_management_change_policy" def is_integration_policy_changed(self): """ @@ -57977,7 +59014,7 @@ def is_integration_policy_changed(self): :rtype: bool """ - return self._tag == 'integration_policy_changed' + return self._tag == "integration_policy_changed" def is_invite_acceptance_email_policy_changed(self): """ @@ -57985,7 +59022,7 @@ def is_invite_acceptance_email_policy_changed(self): :rtype: bool """ - return self._tag == 'invite_acceptance_email_policy_changed' + return self._tag == "invite_acceptance_email_policy_changed" def is_media_hub_adding_people_policy_changed(self): """ @@ -57993,7 +59030,7 @@ def is_media_hub_adding_people_policy_changed(self): :rtype: bool """ - return self._tag == 'media_hub_adding_people_policy_changed' + return self._tag == "media_hub_adding_people_policy_changed" def is_media_hub_download_policy_changed(self): """ @@ -58001,7 +59038,7 @@ def is_media_hub_download_policy_changed(self): :rtype: bool """ - return self._tag == 'media_hub_download_policy_changed' + return self._tag == "media_hub_download_policy_changed" def is_media_hub_link_sharing_policy_changed(self): """ @@ -58009,7 +59046,7 @@ def is_media_hub_link_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'media_hub_link_sharing_policy_changed' + return self._tag == "media_hub_link_sharing_policy_changed" def is_member_requests_change_policy(self): """ @@ -58017,7 +59054,7 @@ def is_member_requests_change_policy(self): :rtype: bool """ - return self._tag == 'member_requests_change_policy' + return self._tag == "member_requests_change_policy" def is_member_send_invite_policy_changed(self): """ @@ -58025,7 +59062,7 @@ def is_member_send_invite_policy_changed(self): :rtype: bool """ - return self._tag == 'member_send_invite_policy_changed' + return self._tag == "member_send_invite_policy_changed" def is_member_space_limits_add_exception(self): """ @@ -58033,7 +59070,7 @@ def is_member_space_limits_add_exception(self): :rtype: bool """ - return self._tag == 'member_space_limits_add_exception' + return self._tag == "member_space_limits_add_exception" def is_member_space_limits_change_caps_type_policy(self): """ @@ -58041,7 +59078,7 @@ def is_member_space_limits_change_caps_type_policy(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_caps_type_policy' + return self._tag == "member_space_limits_change_caps_type_policy" def is_member_space_limits_change_policy(self): """ @@ -58049,7 +59086,7 @@ def is_member_space_limits_change_policy(self): :rtype: bool """ - return self._tag == 'member_space_limits_change_policy' + return self._tag == "member_space_limits_change_policy" def is_member_space_limits_remove_exception(self): """ @@ -58057,7 +59094,7 @@ def is_member_space_limits_remove_exception(self): :rtype: bool """ - return self._tag == 'member_space_limits_remove_exception' + return self._tag == "member_space_limits_remove_exception" def is_member_suggestions_change_policy(self): """ @@ -58065,7 +59102,7 @@ def is_member_suggestions_change_policy(self): :rtype: bool """ - return self._tag == 'member_suggestions_change_policy' + return self._tag == "member_suggestions_change_policy" def is_microsoft_login_change_policy(self): """ @@ -58073,7 +59110,7 @@ def is_microsoft_login_change_policy(self): :rtype: bool """ - return self._tag == 'microsoft_login_change_policy' + return self._tag == "microsoft_login_change_policy" def is_microsoft_office_addin_change_policy(self): """ @@ -58081,7 +59118,7 @@ def is_microsoft_office_addin_change_policy(self): :rtype: bool """ - return self._tag == 'microsoft_office_addin_change_policy' + return self._tag == "microsoft_office_addin_change_policy" def is_multi_team_identity_policy_changed(self): """ @@ -58089,7 +59126,7 @@ def is_multi_team_identity_policy_changed(self): :rtype: bool """ - return self._tag == 'multi_team_identity_policy_changed' + return self._tag == "multi_team_identity_policy_changed" def is_network_control_change_policy(self): """ @@ -58097,7 +59134,7 @@ def is_network_control_change_policy(self): :rtype: bool """ - return self._tag == 'network_control_change_policy' + return self._tag == "network_control_change_policy" def is_paper_change_deployment_policy(self): """ @@ -58105,7 +59142,7 @@ def is_paper_change_deployment_policy(self): :rtype: bool """ - return self._tag == 'paper_change_deployment_policy' + return self._tag == "paper_change_deployment_policy" def is_paper_change_member_link_policy(self): """ @@ -58113,7 +59150,7 @@ def is_paper_change_member_link_policy(self): :rtype: bool """ - return self._tag == 'paper_change_member_link_policy' + return self._tag == "paper_change_member_link_policy" def is_paper_change_member_policy(self): """ @@ -58121,7 +59158,7 @@ def is_paper_change_member_policy(self): :rtype: bool """ - return self._tag == 'paper_change_member_policy' + return self._tag == "paper_change_member_policy" def is_paper_change_policy(self): """ @@ -58129,7 +59166,7 @@ def is_paper_change_policy(self): :rtype: bool """ - return self._tag == 'paper_change_policy' + return self._tag == "paper_change_policy" def is_paper_default_folder_policy_changed(self): """ @@ -58137,7 +59174,7 @@ def is_paper_default_folder_policy_changed(self): :rtype: bool """ - return self._tag == 'paper_default_folder_policy_changed' + return self._tag == "paper_default_folder_policy_changed" def is_paper_desktop_policy_changed(self): """ @@ -58145,7 +59182,7 @@ def is_paper_desktop_policy_changed(self): :rtype: bool """ - return self._tag == 'paper_desktop_policy_changed' + return self._tag == "paper_desktop_policy_changed" def is_paper_enabled_users_group_addition(self): """ @@ -58153,7 +59190,7 @@ def is_paper_enabled_users_group_addition(self): :rtype: bool """ - return self._tag == 'paper_enabled_users_group_addition' + return self._tag == "paper_enabled_users_group_addition" def is_paper_enabled_users_group_removal(self): """ @@ -58161,7 +59198,7 @@ def is_paper_enabled_users_group_removal(self): :rtype: bool """ - return self._tag == 'paper_enabled_users_group_removal' + return self._tag == "paper_enabled_users_group_removal" def is_passkey_login_policy_changed(self): """ @@ -58169,7 +59206,7 @@ def is_passkey_login_policy_changed(self): :rtype: bool """ - return self._tag == 'passkey_login_policy_changed' + return self._tag == "passkey_login_policy_changed" def is_password_strength_requirements_change_policy(self): """ @@ -58177,7 +59214,7 @@ def is_password_strength_requirements_change_policy(self): :rtype: bool """ - return self._tag == 'password_strength_requirements_change_policy' + return self._tag == "password_strength_requirements_change_policy" def is_permanent_delete_change_policy(self): """ @@ -58185,7 +59222,7 @@ def is_permanent_delete_change_policy(self): :rtype: bool """ - return self._tag == 'permanent_delete_change_policy' + return self._tag == "permanent_delete_change_policy" def is_previews_ai_policy_changed(self): """ @@ -58193,7 +59230,7 @@ def is_previews_ai_policy_changed(self): :rtype: bool """ - return self._tag == 'previews_ai_policy_changed' + return self._tag == "previews_ai_policy_changed" def is_replay_adding_people_policy_changed(self): """ @@ -58201,7 +59238,7 @@ def is_replay_adding_people_policy_changed(self): :rtype: bool """ - return self._tag == 'replay_adding_people_policy_changed' + return self._tag == "replay_adding_people_policy_changed" def is_replay_sharing_policy_changed(self): """ @@ -58209,7 +59246,7 @@ def is_replay_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'replay_sharing_policy_changed' + return self._tag == "replay_sharing_policy_changed" def is_reseller_support_change_policy(self): """ @@ -58217,7 +59254,7 @@ def is_reseller_support_change_policy(self): :rtype: bool """ - return self._tag == 'reseller_support_change_policy' + return self._tag == "reseller_support_change_policy" def is_rewind_policy_changed(self): """ @@ -58225,7 +59262,7 @@ def is_rewind_policy_changed(self): :rtype: bool """ - return self._tag == 'rewind_policy_changed' + return self._tag == "rewind_policy_changed" def is_send_and_track_policy_changed(self): """ @@ -58233,7 +59270,7 @@ def is_send_and_track_policy_changed(self): :rtype: bool """ - return self._tag == 'send_and_track_policy_changed' + return self._tag == "send_and_track_policy_changed" def is_send_external_sharing_policy_changed(self): """ @@ -58241,7 +59278,7 @@ def is_send_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'send_external_sharing_policy_changed' + return self._tag == "send_external_sharing_policy_changed" def is_send_for_signature_policy_changed(self): """ @@ -58249,7 +59286,7 @@ def is_send_for_signature_policy_changed(self): :rtype: bool """ - return self._tag == 'send_for_signature_policy_changed' + return self._tag == "send_for_signature_policy_changed" def is_shared_link_default_permissions_policy_changed(self): """ @@ -58257,7 +59294,7 @@ def is_shared_link_default_permissions_policy_changed(self): :rtype: bool """ - return self._tag == 'shared_link_default_permissions_policy_changed' + return self._tag == "shared_link_default_permissions_policy_changed" def is_sharing_change_folder_join_policy(self): """ @@ -58265,7 +59302,7 @@ def is_sharing_change_folder_join_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_folder_join_policy' + return self._tag == "sharing_change_folder_join_policy" def is_sharing_change_link_allow_change_expiration_policy(self): """ @@ -58273,7 +59310,7 @@ def is_sharing_change_link_allow_change_expiration_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_link_allow_change_expiration_policy' + return self._tag == "sharing_change_link_allow_change_expiration_policy" def is_sharing_change_link_default_expiration_policy(self): """ @@ -58281,7 +59318,7 @@ def is_sharing_change_link_default_expiration_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_link_default_expiration_policy' + return self._tag == "sharing_change_link_default_expiration_policy" def is_sharing_change_link_enforce_password_policy(self): """ @@ -58289,7 +59326,7 @@ def is_sharing_change_link_enforce_password_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_link_enforce_password_policy' + return self._tag == "sharing_change_link_enforce_password_policy" def is_sharing_change_link_policy(self): """ @@ -58297,7 +59334,7 @@ def is_sharing_change_link_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_link_policy' + return self._tag == "sharing_change_link_policy" def is_sharing_change_member_policy(self): """ @@ -58305,7 +59342,7 @@ def is_sharing_change_member_policy(self): :rtype: bool """ - return self._tag == 'sharing_change_member_policy' + return self._tag == "sharing_change_member_policy" def is_showcase_change_download_policy(self): """ @@ -58313,7 +59350,7 @@ def is_showcase_change_download_policy(self): :rtype: bool """ - return self._tag == 'showcase_change_download_policy' + return self._tag == "showcase_change_download_policy" def is_showcase_change_enabled_policy(self): """ @@ -58321,7 +59358,7 @@ def is_showcase_change_enabled_policy(self): :rtype: bool """ - return self._tag == 'showcase_change_enabled_policy' + return self._tag == "showcase_change_enabled_policy" def is_showcase_change_external_sharing_policy(self): """ @@ -58329,7 +59366,7 @@ def is_showcase_change_external_sharing_policy(self): :rtype: bool """ - return self._tag == 'showcase_change_external_sharing_policy' + return self._tag == "showcase_change_external_sharing_policy" def is_sign_external_sharing_policy_changed(self): """ @@ -58337,7 +59374,7 @@ def is_sign_external_sharing_policy_changed(self): :rtype: bool """ - return self._tag == 'sign_external_sharing_policy_changed' + return self._tag == "sign_external_sharing_policy_changed" def is_sign_template_creation_permission_changed(self): """ @@ -58345,7 +59382,7 @@ def is_sign_template_creation_permission_changed(self): :rtype: bool """ - return self._tag == 'sign_template_creation_permission_changed' + return self._tag == "sign_template_creation_permission_changed" def is_smarter_smart_sync_policy_changed(self): """ @@ -58353,7 +59390,7 @@ def is_smarter_smart_sync_policy_changed(self): :rtype: bool """ - return self._tag == 'smarter_smart_sync_policy_changed' + return self._tag == "smarter_smart_sync_policy_changed" def is_smart_sync_change_policy(self): """ @@ -58361,7 +59398,7 @@ def is_smart_sync_change_policy(self): :rtype: bool """ - return self._tag == 'smart_sync_change_policy' + return self._tag == "smart_sync_change_policy" def is_smart_sync_not_opt_out(self): """ @@ -58369,7 +59406,7 @@ def is_smart_sync_not_opt_out(self): :rtype: bool """ - return self._tag == 'smart_sync_not_opt_out' + return self._tag == "smart_sync_not_opt_out" def is_smart_sync_opt_out(self): """ @@ -58377,7 +59414,7 @@ def is_smart_sync_opt_out(self): :rtype: bool """ - return self._tag == 'smart_sync_opt_out' + return self._tag == "smart_sync_opt_out" def is_sso_change_policy(self): """ @@ -58385,7 +59422,7 @@ def is_sso_change_policy(self): :rtype: bool """ - return self._tag == 'sso_change_policy' + return self._tag == "sso_change_policy" def is_stack_cross_team_access_policy_changed(self): """ @@ -58393,7 +59430,7 @@ def is_stack_cross_team_access_policy_changed(self): :rtype: bool """ - return self._tag == 'stack_cross_team_access_policy_changed' + return self._tag == "stack_cross_team_access_policy_changed" def is_team_branding_policy_changed(self): """ @@ -58401,7 +59438,7 @@ def is_team_branding_policy_changed(self): :rtype: bool """ - return self._tag == 'team_branding_policy_changed' + return self._tag == "team_branding_policy_changed" def is_team_extensions_policy_changed(self): """ @@ -58409,7 +59446,7 @@ def is_team_extensions_policy_changed(self): :rtype: bool """ - return self._tag == 'team_extensions_policy_changed' + return self._tag == "team_extensions_policy_changed" def is_team_member_storage_request_policy_changed(self): """ @@ -58417,7 +59454,7 @@ def is_team_member_storage_request_policy_changed(self): :rtype: bool """ - return self._tag == 'team_member_storage_request_policy_changed' + return self._tag == "team_member_storage_request_policy_changed" def is_team_selective_sync_policy_changed(self): """ @@ -58425,7 +59462,7 @@ def is_team_selective_sync_policy_changed(self): :rtype: bool """ - return self._tag == 'team_selective_sync_policy_changed' + return self._tag == "team_selective_sync_policy_changed" def is_team_sharing_whitelist_subjects_changed(self): """ @@ -58433,7 +59470,7 @@ def is_team_sharing_whitelist_subjects_changed(self): :rtype: bool """ - return self._tag == 'team_sharing_whitelist_subjects_changed' + return self._tag == "team_sharing_whitelist_subjects_changed" def is_tfa_add_exception(self): """ @@ -58441,7 +59478,7 @@ def is_tfa_add_exception(self): :rtype: bool """ - return self._tag == 'tfa_add_exception' + return self._tag == "tfa_add_exception" def is_tfa_change_policy(self): """ @@ -58449,7 +59486,7 @@ def is_tfa_change_policy(self): :rtype: bool """ - return self._tag == 'tfa_change_policy' + return self._tag == "tfa_change_policy" def is_tfa_remove_exception(self): """ @@ -58457,7 +59494,7 @@ def is_tfa_remove_exception(self): :rtype: bool """ - return self._tag == 'tfa_remove_exception' + return self._tag == "tfa_remove_exception" def is_top_level_content_policy_changed(self): """ @@ -58465,7 +59502,7 @@ def is_top_level_content_policy_changed(self): :rtype: bool """ - return self._tag == 'top_level_content_policy_changed' + return self._tag == "top_level_content_policy_changed" def is_two_account_change_policy(self): """ @@ -58473,7 +59510,7 @@ def is_two_account_change_policy(self): :rtype: bool """ - return self._tag == 'two_account_change_policy' + return self._tag == "two_account_change_policy" def is_viewer_info_policy_changed(self): """ @@ -58481,7 +59518,7 @@ def is_viewer_info_policy_changed(self): :rtype: bool """ - return self._tag == 'viewer_info_policy_changed' + return self._tag == "viewer_info_policy_changed" def is_watermarking_policy_changed(self): """ @@ -58489,7 +59526,7 @@ def is_watermarking_policy_changed(self): :rtype: bool """ - return self._tag == 'watermarking_policy_changed' + return self._tag == "watermarking_policy_changed" def is_web_sessions_change_active_session_limit(self): """ @@ -58497,7 +59534,7 @@ def is_web_sessions_change_active_session_limit(self): :rtype: bool """ - return self._tag == 'web_sessions_change_active_session_limit' + return self._tag == "web_sessions_change_active_session_limit" def is_web_sessions_change_fixed_length_policy(self): """ @@ -58505,7 +59542,7 @@ def is_web_sessions_change_fixed_length_policy(self): :rtype: bool """ - return self._tag == 'web_sessions_change_fixed_length_policy' + return self._tag == "web_sessions_change_fixed_length_policy" def is_web_sessions_change_idle_length_policy(self): """ @@ -58513,7 +59550,7 @@ def is_web_sessions_change_idle_length_policy(self): :rtype: bool """ - return self._tag == 'web_sessions_change_idle_length_policy' + return self._tag == "web_sessions_change_idle_length_policy" def is_data_residency_migration_request_successful(self): """ @@ -58521,7 +59558,7 @@ def is_data_residency_migration_request_successful(self): :rtype: bool """ - return self._tag == 'data_residency_migration_request_successful' + return self._tag == "data_residency_migration_request_successful" def is_data_residency_migration_request_unsuccessful(self): """ @@ -58529,7 +59566,7 @@ def is_data_residency_migration_request_unsuccessful(self): :rtype: bool """ - return self._tag == 'data_residency_migration_request_unsuccessful' + return self._tag == "data_residency_migration_request_unsuccessful" def is_team_merge_from(self): """ @@ -58537,7 +59574,7 @@ def is_team_merge_from(self): :rtype: bool """ - return self._tag == 'team_merge_from' + return self._tag == "team_merge_from" def is_team_merge_to(self): """ @@ -58545,7 +59582,7 @@ def is_team_merge_to(self): :rtype: bool """ - return self._tag == 'team_merge_to' + return self._tag == "team_merge_to" def is_team_profile_add_background(self): """ @@ -58553,7 +59590,7 @@ def is_team_profile_add_background(self): :rtype: bool """ - return self._tag == 'team_profile_add_background' + return self._tag == "team_profile_add_background" def is_team_profile_add_logo(self): """ @@ -58561,7 +59598,7 @@ def is_team_profile_add_logo(self): :rtype: bool """ - return self._tag == 'team_profile_add_logo' + return self._tag == "team_profile_add_logo" def is_team_profile_change_background(self): """ @@ -58569,7 +59606,7 @@ def is_team_profile_change_background(self): :rtype: bool """ - return self._tag == 'team_profile_change_background' + return self._tag == "team_profile_change_background" def is_team_profile_change_default_language(self): """ @@ -58577,7 +59614,7 @@ def is_team_profile_change_default_language(self): :rtype: bool """ - return self._tag == 'team_profile_change_default_language' + return self._tag == "team_profile_change_default_language" def is_team_profile_change_logo(self): """ @@ -58585,7 +59622,7 @@ def is_team_profile_change_logo(self): :rtype: bool """ - return self._tag == 'team_profile_change_logo' + return self._tag == "team_profile_change_logo" def is_team_profile_change_name(self): """ @@ -58593,7 +59630,7 @@ def is_team_profile_change_name(self): :rtype: bool """ - return self._tag == 'team_profile_change_name' + return self._tag == "team_profile_change_name" def is_team_profile_remove_background(self): """ @@ -58601,7 +59638,7 @@ def is_team_profile_remove_background(self): :rtype: bool """ - return self._tag == 'team_profile_remove_background' + return self._tag == "team_profile_remove_background" def is_team_profile_remove_logo(self): """ @@ -58609,7 +59646,7 @@ def is_team_profile_remove_logo(self): :rtype: bool """ - return self._tag == 'team_profile_remove_logo' + return self._tag == "team_profile_remove_logo" def is_passkey_add(self): """ @@ -58617,7 +59654,7 @@ def is_passkey_add(self): :rtype: bool """ - return self._tag == 'passkey_add' + return self._tag == "passkey_add" def is_passkey_remove(self): """ @@ -58625,7 +59662,7 @@ def is_passkey_remove(self): :rtype: bool """ - return self._tag == 'passkey_remove' + return self._tag == "passkey_remove" def is_tfa_add_backup_phone(self): """ @@ -58633,7 +59670,7 @@ def is_tfa_add_backup_phone(self): :rtype: bool """ - return self._tag == 'tfa_add_backup_phone' + return self._tag == "tfa_add_backup_phone" def is_tfa_add_security_key(self): """ @@ -58641,7 +59678,7 @@ def is_tfa_add_security_key(self): :rtype: bool """ - return self._tag == 'tfa_add_security_key' + return self._tag == "tfa_add_security_key" def is_tfa_change_backup_phone(self): """ @@ -58649,7 +59686,7 @@ def is_tfa_change_backup_phone(self): :rtype: bool """ - return self._tag == 'tfa_change_backup_phone' + return self._tag == "tfa_change_backup_phone" def is_tfa_change_status(self): """ @@ -58657,7 +59694,7 @@ def is_tfa_change_status(self): :rtype: bool """ - return self._tag == 'tfa_change_status' + return self._tag == "tfa_change_status" def is_tfa_remove_backup_phone(self): """ @@ -58665,7 +59702,7 @@ def is_tfa_remove_backup_phone(self): :rtype: bool """ - return self._tag == 'tfa_remove_backup_phone' + return self._tag == "tfa_remove_backup_phone" def is_tfa_remove_security_key(self): """ @@ -58673,7 +59710,7 @@ def is_tfa_remove_security_key(self): :rtype: bool """ - return self._tag == 'tfa_remove_security_key' + return self._tag == "tfa_remove_security_key" def is_tfa_reset(self): """ @@ -58681,7 +59718,7 @@ def is_tfa_reset(self): :rtype: bool """ - return self._tag == 'tfa_reset' + return self._tag == "tfa_reset" def is_changed_enterprise_admin_role(self): """ @@ -58689,7 +59726,7 @@ def is_changed_enterprise_admin_role(self): :rtype: bool """ - return self._tag == 'changed_enterprise_admin_role' + return self._tag == "changed_enterprise_admin_role" def is_changed_enterprise_connected_team_status(self): """ @@ -58697,7 +59734,7 @@ def is_changed_enterprise_connected_team_status(self): :rtype: bool """ - return self._tag == 'changed_enterprise_connected_team_status' + return self._tag == "changed_enterprise_connected_team_status" def is_ended_enterprise_admin_session(self): """ @@ -58705,7 +59742,7 @@ def is_ended_enterprise_admin_session(self): :rtype: bool """ - return self._tag == 'ended_enterprise_admin_session' + return self._tag == "ended_enterprise_admin_session" def is_ended_enterprise_admin_session_deprecated(self): """ @@ -58713,7 +59750,7 @@ def is_ended_enterprise_admin_session_deprecated(self): :rtype: bool """ - return self._tag == 'ended_enterprise_admin_session_deprecated' + return self._tag == "ended_enterprise_admin_session_deprecated" def is_enterprise_settings_locking(self): """ @@ -58721,7 +59758,7 @@ def is_enterprise_settings_locking(self): :rtype: bool """ - return self._tag == 'enterprise_settings_locking' + return self._tag == "enterprise_settings_locking" def is_guest_admin_change_status(self): """ @@ -58729,7 +59766,7 @@ def is_guest_admin_change_status(self): :rtype: bool """ - return self._tag == 'guest_admin_change_status' + return self._tag == "guest_admin_change_status" def is_started_enterprise_admin_session(self): """ @@ -58737,7 +59774,7 @@ def is_started_enterprise_admin_session(self): :rtype: bool """ - return self._tag == 'started_enterprise_admin_session' + return self._tag == "started_enterprise_admin_session" def is_team_merge_request_accepted(self): """ @@ -58745,7 +59782,7 @@ def is_team_merge_request_accepted(self): :rtype: bool """ - return self._tag == 'team_merge_request_accepted' + return self._tag == "team_merge_request_accepted" def is_team_merge_request_accepted_shown_to_primary_team(self): """ @@ -58753,7 +59790,7 @@ def is_team_merge_request_accepted_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_accepted_shown_to_primary_team' + return self._tag == "team_merge_request_accepted_shown_to_primary_team" def is_team_merge_request_accepted_shown_to_secondary_team(self): """ @@ -58761,7 +59798,7 @@ def is_team_merge_request_accepted_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_accepted_shown_to_secondary_team' + return self._tag == "team_merge_request_accepted_shown_to_secondary_team" def is_team_merge_request_auto_canceled(self): """ @@ -58769,7 +59806,7 @@ def is_team_merge_request_auto_canceled(self): :rtype: bool """ - return self._tag == 'team_merge_request_auto_canceled' + return self._tag == "team_merge_request_auto_canceled" def is_team_merge_request_canceled(self): """ @@ -58777,7 +59814,7 @@ def is_team_merge_request_canceled(self): :rtype: bool """ - return self._tag == 'team_merge_request_canceled' + return self._tag == "team_merge_request_canceled" def is_team_merge_request_canceled_shown_to_primary_team(self): """ @@ -58785,7 +59822,7 @@ def is_team_merge_request_canceled_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_canceled_shown_to_primary_team' + return self._tag == "team_merge_request_canceled_shown_to_primary_team" def is_team_merge_request_canceled_shown_to_secondary_team(self): """ @@ -58793,7 +59830,7 @@ def is_team_merge_request_canceled_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_canceled_shown_to_secondary_team' + return self._tag == "team_merge_request_canceled_shown_to_secondary_team" def is_team_merge_request_expired(self): """ @@ -58801,7 +59838,7 @@ def is_team_merge_request_expired(self): :rtype: bool """ - return self._tag == 'team_merge_request_expired' + return self._tag == "team_merge_request_expired" def is_team_merge_request_expired_shown_to_primary_team(self): """ @@ -58809,7 +59846,7 @@ def is_team_merge_request_expired_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_expired_shown_to_primary_team' + return self._tag == "team_merge_request_expired_shown_to_primary_team" def is_team_merge_request_expired_shown_to_secondary_team(self): """ @@ -58817,7 +59854,7 @@ def is_team_merge_request_expired_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_expired_shown_to_secondary_team' + return self._tag == "team_merge_request_expired_shown_to_secondary_team" def is_team_merge_request_rejected_shown_to_primary_team(self): """ @@ -58825,7 +59862,7 @@ def is_team_merge_request_rejected_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_rejected_shown_to_primary_team' + return self._tag == "team_merge_request_rejected_shown_to_primary_team" def is_team_merge_request_rejected_shown_to_secondary_team(self): """ @@ -58833,7 +59870,7 @@ def is_team_merge_request_rejected_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_rejected_shown_to_secondary_team' + return self._tag == "team_merge_request_rejected_shown_to_secondary_team" def is_team_merge_request_reminder(self): """ @@ -58841,7 +59878,7 @@ def is_team_merge_request_reminder(self): :rtype: bool """ - return self._tag == 'team_merge_request_reminder' + return self._tag == "team_merge_request_reminder" def is_team_merge_request_reminder_shown_to_primary_team(self): """ @@ -58849,7 +59886,7 @@ def is_team_merge_request_reminder_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_reminder_shown_to_primary_team' + return self._tag == "team_merge_request_reminder_shown_to_primary_team" def is_team_merge_request_reminder_shown_to_secondary_team(self): """ @@ -58857,7 +59894,7 @@ def is_team_merge_request_reminder_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_reminder_shown_to_secondary_team' + return self._tag == "team_merge_request_reminder_shown_to_secondary_team" def is_team_merge_request_revoked(self): """ @@ -58865,7 +59902,7 @@ def is_team_merge_request_revoked(self): :rtype: bool """ - return self._tag == 'team_merge_request_revoked' + return self._tag == "team_merge_request_revoked" def is_team_merge_request_sent_shown_to_primary_team(self): """ @@ -58873,7 +59910,7 @@ def is_team_merge_request_sent_shown_to_primary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_sent_shown_to_primary_team' + return self._tag == "team_merge_request_sent_shown_to_primary_team" def is_team_merge_request_sent_shown_to_secondary_team(self): """ @@ -58881,7 +59918,7 @@ def is_team_merge_request_sent_shown_to_secondary_team(self): :rtype: bool """ - return self._tag == 'team_merge_request_sent_shown_to_secondary_team' + return self._tag == "team_merge_request_sent_shown_to_secondary_team" def is_other(self): """ @@ -58889,20 +59926,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EventTypeArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EventTypeArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EventTypeArg_validator = bv.Union(EventTypeArg) + class ExportMembersReportDetails(bb.Struct): """ Created member data report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -58910,10 +59950,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMembersReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExportMembersReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExportMembersReportDetails_validator = bv.Struct(ExportMembersReportDetails) + class ExportMembersReportFailDetails(bb.Struct): """ Failed to create members data report. @@ -58923,13 +59967,12 @@ class ExportMembersReportFailDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -58938,20 +59981,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMembersReportFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExportMembersReportFailDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExportMembersReportFailDetails_validator = bv.Struct(ExportMembersReportFailDetails) -class ExportMembersReportFailType(bb.Struct): +class ExportMembersReportFailType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -58960,20 +60005,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMembersReportFailType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExportMembersReportFailType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExportMembersReportFailType_validator = bv.Struct(ExportMembersReportFailType) -class ExportMembersReportType(bb.Struct): +class ExportMembersReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -58982,10 +60029,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportMembersReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExportMembersReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExportMembersReportType_validator = bv.Struct(ExportMembersReportType) + class ExtendedVersionHistoryChangePolicyDetails(bb.Struct): """ Accepted/opted out of extended version history. @@ -58998,15 +60049,13 @@ class ExtendedVersionHistoryChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -59021,20 +60070,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExtendedVersionHistoryChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExtendedVersionHistoryChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -ExtendedVersionHistoryChangePolicyDetails_validator = bv.Struct(ExtendedVersionHistoryChangePolicyDetails) -class ExtendedVersionHistoryChangePolicyType(bb.Struct): +ExtendedVersionHistoryChangePolicyDetails_validator = bv.Struct( + ExtendedVersionHistoryChangePolicyDetails +) + +class ExtendedVersionHistoryChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -59043,10 +60096,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExtendedVersionHistoryChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExtendedVersionHistoryChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExtendedVersionHistoryChangePolicyType_validator = bv.Struct(ExtendedVersionHistoryChangePolicyType) + class ExtendedVersionHistoryPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -59054,7 +60111,7 @@ class ExtendedVersionHistoryPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition explicitly_limited = None # Attribute is overwritten below the class definition @@ -59072,7 +60129,7 @@ def is_explicitly_limited(self): :rtype: bool """ - return self._tag == 'explicitly_limited' + return self._tag == "explicitly_limited" def is_explicitly_unlimited(self): """ @@ -59080,7 +60137,7 @@ def is_explicitly_unlimited(self): :rtype: bool """ - return self._tag == 'explicitly_unlimited' + return self._tag == "explicitly_unlimited" def is_implicitly_limited(self): """ @@ -59088,7 +60145,7 @@ def is_implicitly_limited(self): :rtype: bool """ - return self._tag == 'implicitly_limited' + return self._tag == "implicitly_limited" def is_implicitly_unlimited(self): """ @@ -59096,7 +60153,7 @@ def is_implicitly_unlimited(self): :rtype: bool """ - return self._tag == 'implicitly_unlimited' + return self._tag == "implicitly_unlimited" def is_other(self): """ @@ -59104,13 +60161,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExtendedVersionHistoryPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExtendedVersionHistoryPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExtendedVersionHistoryPolicy_validator = bv.Union(ExtendedVersionHistoryPolicy) + class ExternalDriveBackupEligibilityStatus(bb.Union): """ External Drive Backup eligibility status @@ -59120,7 +60181,7 @@ class ExternalDriveBackupEligibilityStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition exceed_license_cap = None # Attribute is overwritten below the class definition @@ -59136,7 +60197,7 @@ def is_exceed_license_cap(self): :rtype: bool """ - return self._tag == 'exceed_license_cap' + return self._tag == "exceed_license_cap" def is_skip(self): """ @@ -59144,7 +60205,7 @@ def is_skip(self): :rtype: bool """ - return self._tag == 'skip' + return self._tag == "skip" def is_success(self): """ @@ -59152,7 +60213,7 @@ def is_success(self): :rtype: bool """ - return self._tag == 'success' + return self._tag == "success" def is_other(self): """ @@ -59160,13 +60221,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupEligibilityStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupEligibilityStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalDriveBackupEligibilityStatus_validator = bv.Union(ExternalDriveBackupEligibilityStatus) + class ExternalDriveBackupEligibilityStatusCheckedDetails(bb.Struct): """ Checked external drive backup eligibility status. @@ -59180,17 +60245,19 @@ class ExternalDriveBackupEligibilityStatusCheckedDetails(bb.Struct): """ __slots__ = [ - '_desktop_device_session_info_value', - '_status_value', - '_number_of_external_drive_backup_value', + "_desktop_device_session_info_value", + "_status_value", + "_number_of_external_drive_backup_value", ] _has_required_fields = True - def __init__(self, - desktop_device_session_info=None, - status=None, - number_of_external_drive_backup=None): + def __init__( + self, + desktop_device_session_info=None, + status=None, + number_of_external_drive_backup=None, + ): self._desktop_device_session_info_value = bb.NOT_SET self._status_value = bb.NOT_SET self._number_of_external_drive_backup_value = bb.NOT_SET @@ -59211,20 +60278,24 @@ def __init__(self, number_of_external_drive_backup = bb.Attribute("number_of_external_drive_backup") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupEligibilityStatusCheckedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupEligibilityStatusCheckedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -ExternalDriveBackupEligibilityStatusCheckedDetails_validator = bv.Struct(ExternalDriveBackupEligibilityStatusCheckedDetails) -class ExternalDriveBackupEligibilityStatusCheckedType(bb.Struct): +ExternalDriveBackupEligibilityStatusCheckedDetails_validator = bv.Struct( + ExternalDriveBackupEligibilityStatusCheckedDetails +) + +class ExternalDriveBackupEligibilityStatusCheckedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -59233,9 +60304,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupEligibilityStatusCheckedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupEligibilityStatusCheckedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +ExternalDriveBackupEligibilityStatusCheckedType_validator = bv.Struct( + ExternalDriveBackupEligibilityStatusCheckedType +) -ExternalDriveBackupEligibilityStatusCheckedType_validator = bv.Struct(ExternalDriveBackupEligibilityStatusCheckedType) class ExternalDriveBackupPolicy(bb.Union): """ @@ -59246,7 +60323,7 @@ class ExternalDriveBackupPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -59262,7 +60339,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -59270,7 +60347,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -59278,7 +60355,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -59286,13 +60363,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalDriveBackupPolicy_validator = bv.Union(ExternalDriveBackupPolicy) + class ExternalDriveBackupPolicyChangedDetails(bb.Struct): """ Changed external drive backup policy for team. @@ -59304,15 +60385,13 @@ class ExternalDriveBackupPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -59327,20 +60406,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -ExternalDriveBackupPolicyChangedDetails_validator = bv.Struct(ExternalDriveBackupPolicyChangedDetails) -class ExternalDriveBackupPolicyChangedType(bb.Struct): +ExternalDriveBackupPolicyChangedDetails_validator = bv.Struct( + ExternalDriveBackupPolicyChangedDetails +) + +class ExternalDriveBackupPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -59349,10 +60432,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalDriveBackupPolicyChangedType_validator = bv.Struct(ExternalDriveBackupPolicyChangedType) + class ExternalDriveBackupStatus(bb.Union): """ External Drive Backup status @@ -59362,7 +60449,7 @@ class ExternalDriveBackupStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition broken = None # Attribute is overwritten below the class definition @@ -59384,7 +60471,7 @@ def is_broken(self): :rtype: bool """ - return self._tag == 'broken' + return self._tag == "broken" def is_created(self): """ @@ -59392,7 +60479,7 @@ def is_created(self): :rtype: bool """ - return self._tag == 'created' + return self._tag == "created" def is_created_or_broken(self): """ @@ -59400,7 +60487,7 @@ def is_created_or_broken(self): :rtype: bool """ - return self._tag == 'created_or_broken' + return self._tag == "created_or_broken" def is_deleted(self): """ @@ -59408,7 +60495,7 @@ def is_deleted(self): :rtype: bool """ - return self._tag == 'deleted' + return self._tag == "deleted" def is_empty(self): """ @@ -59416,7 +60503,7 @@ def is_empty(self): :rtype: bool """ - return self._tag == 'empty' + return self._tag == "empty" def is_unknown(self): """ @@ -59424,7 +60511,7 @@ def is_unknown(self): :rtype: bool """ - return self._tag == 'unknown' + return self._tag == "unknown" def is_other(self): """ @@ -59432,13 +60519,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalDriveBackupStatus_validator = bv.Union(ExternalDriveBackupStatus) + class ExternalDriveBackupStatusChangedDetails(bb.Struct): """ Modified external drive backup. @@ -59452,17 +60543,14 @@ class ExternalDriveBackupStatusChangedDetails(bb.Struct): """ __slots__ = [ - '_desktop_device_session_info_value', - '_previous_value_value', - '_new_value_value', + "_desktop_device_session_info_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - desktop_device_session_info=None, - previous_value=None, - new_value=None): + def __init__(self, desktop_device_session_info=None, previous_value=None, new_value=None): self._desktop_device_session_info_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -59483,20 +60571,24 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupStatusChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupStatusChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -ExternalDriveBackupStatusChangedDetails_validator = bv.Struct(ExternalDriveBackupStatusChangedDetails) -class ExternalDriveBackupStatusChangedType(bb.Struct): +ExternalDriveBackupStatusChangedDetails_validator = bv.Struct( + ExternalDriveBackupStatusChangedDetails +) + +class ExternalDriveBackupStatusChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -59505,17 +60597,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupStatusChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupStatusChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalDriveBackupStatusChangedType_validator = bv.Struct(ExternalDriveBackupStatusChangedType) + class ExternalSharingCreateReportDetails(bb.Struct): """ Created External sharing report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -59523,20 +60618,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalSharingCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalSharingCreateReportDetails_validator = bv.Struct(ExternalSharingCreateReportDetails) -class ExternalSharingCreateReportType(bb.Struct): +class ExternalSharingCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -59545,10 +60642,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalSharingCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalSharingCreateReportType_validator = bv.Struct(ExternalSharingCreateReportType) + class ExternalSharingReportFailedDetails(bb.Struct): """ Couldn't create External sharing report. @@ -59558,13 +60659,12 @@ class ExternalSharingReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -59573,20 +60673,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalSharingReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalSharingReportFailedDetails_validator = bv.Struct(ExternalSharingReportFailedDetails) -class ExternalSharingReportFailedType(bb.Struct): +class ExternalSharingReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -59595,10 +60697,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalSharingReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalSharingReportFailedType_validator = bv.Struct(ExternalSharingReportFailedType) + class ExternalSharingSetting(bb.Union): """ External sharing setting @@ -59608,7 +60714,7 @@ class ExternalSharingSetting(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -59624,7 +60730,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == 'allow' + return self._tag == "allow" def is_forbid(self): """ @@ -59632,7 +60738,7 @@ def is_forbid(self): :rtype: bool """ - return self._tag == 'forbid' + return self._tag == "forbid" def is_unset(self): """ @@ -59640,7 +60746,7 @@ def is_unset(self): :rtype: bool """ - return self._tag == 'unset' + return self._tag == "unset" def is_other(self): """ @@ -59648,13 +60754,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalSharingSetting, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalSharingSetting, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalSharingSetting_validator = bv.Union(ExternalSharingSetting) + class ExternalUserLogInfo(bb.Struct): """ A user without a Dropbox account. @@ -59666,15 +60776,13 @@ class ExternalUserLogInfo(bb.Struct): """ __slots__ = [ - '_user_identifier_value', - '_identifier_type_value', + "_user_identifier_value", + "_identifier_type_value", ] _has_required_fields = True - def __init__(self, - user_identifier=None, - identifier_type=None): + def __init__(self, user_identifier=None, identifier_type=None): self._user_identifier_value = bb.NOT_SET self._identifier_type_value = bb.NOT_SET if user_identifier is not None: @@ -59689,10 +60797,14 @@ def __init__(self, identifier_type = bb.Attribute("identifier_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalUserLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalUserLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalUserLogInfo_validator = bv.Struct(ExternalUserLogInfo) + class FailureDetailsLogInfo(bb.Struct): """ Provides details about a failure @@ -59704,15 +60816,13 @@ class FailureDetailsLogInfo(bb.Struct): """ __slots__ = [ - '_user_friendly_message_value', - '_technical_error_message_value', + "_user_friendly_message_value", + "_technical_error_message_value", ] _has_required_fields = False - def __init__(self, - user_friendly_message=None, - technical_error_message=None): + def __init__(self, user_friendly_message=None, technical_error_message=None): self._user_friendly_message_value = bb.NOT_SET self._technical_error_message_value = bb.NOT_SET if user_friendly_message is not None: @@ -59727,10 +60837,14 @@ def __init__(self, technical_error_message = bb.Attribute("technical_error_message", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FailureDetailsLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FailureDetailsLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FailureDetailsLogInfo_validator = bv.Struct(FailureDetailsLogInfo) + class FedAdminRole(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -59738,7 +60852,7 @@ class FedAdminRole(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition enterprise_admin = None # Attribute is overwritten below the class definition @@ -59752,7 +60866,7 @@ def is_enterprise_admin(self): :rtype: bool """ - return self._tag == 'enterprise_admin' + return self._tag == "enterprise_admin" def is_not_enterprise_admin(self): """ @@ -59760,7 +60874,7 @@ def is_not_enterprise_admin(self): :rtype: bool """ - return self._tag == 'not_enterprise_admin' + return self._tag == "not_enterprise_admin" def is_other(self): """ @@ -59768,13 +60882,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FedAdminRole, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FedAdminRole, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FedAdminRole_validator = bv.Union(FedAdminRole) + class FedExtraDetails(bb.Union): """ More details about the organization or team. @@ -59791,7 +60909,7 @@ class FedExtraDetails(bb.Union): :vartype FedExtraDetails.team: TeamDetails """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -59804,7 +60922,7 @@ def organization(cls, val): :param OrganizationDetails val: :rtype: FedExtraDetails """ - return cls('organization', val) + return cls("organization", val) @classmethod def team(cls, val): @@ -59815,7 +60933,7 @@ def team(cls, val): :param TeamDetails val: :rtype: FedExtraDetails """ - return cls('team', val) + return cls("team", val) def is_organization(self): """ @@ -59823,7 +60941,7 @@ def is_organization(self): :rtype: bool """ - return self._tag == 'organization' + return self._tag == "organization" def is_team(self): """ @@ -59831,7 +60949,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_other(self): """ @@ -59839,7 +60957,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_organization(self): """ @@ -59866,10 +60984,14 @@ def get_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FedExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FedExtraDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FedExtraDetails_validator = bv.Union(FedExtraDetails) + class FedHandshakeAction(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -59877,7 +60999,7 @@ class FedHandshakeAction(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition accepted_invite = None # Attribute is overwritten below the class definition @@ -59899,7 +61021,7 @@ def is_accepted_invite(self): :rtype: bool """ - return self._tag == 'accepted_invite' + return self._tag == "accepted_invite" def is_canceled_invite(self): """ @@ -59907,7 +61029,7 @@ def is_canceled_invite(self): :rtype: bool """ - return self._tag == 'canceled_invite' + return self._tag == "canceled_invite" def is_invite_expired(self): """ @@ -59915,7 +61037,7 @@ def is_invite_expired(self): :rtype: bool """ - return self._tag == 'invite_expired' + return self._tag == "invite_expired" def is_invited(self): """ @@ -59923,7 +61045,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == 'invited' + return self._tag == "invited" def is_rejected_invite(self): """ @@ -59931,7 +61053,7 @@ def is_rejected_invite(self): :rtype: bool """ - return self._tag == 'rejected_invite' + return self._tag == "rejected_invite" def is_removed_team(self): """ @@ -59939,7 +61061,7 @@ def is_removed_team(self): :rtype: bool """ - return self._tag == 'removed_team' + return self._tag == "removed_team" def is_other(self): """ @@ -59947,13 +61069,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FedHandshakeAction, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FedHandshakeAction, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FedHandshakeAction_validator = bv.Union(FedHandshakeAction) + class FederationStatusChangeAdditionalInfo(bb.Union): """ Additional information about the organization or connected team @@ -59973,7 +61099,7 @@ class FederationStatusChangeAdditionalInfo(bb.Union): :vartype FederationStatusChangeAdditionalInfo.organization_name: OrganizationName """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -59986,7 +61112,7 @@ def connected_team_name(cls, val): :param ConnectedTeamName val: :rtype: FederationStatusChangeAdditionalInfo """ - return cls('connected_team_name', val) + return cls("connected_team_name", val) @classmethod def non_trusted_team_details(cls, val): @@ -59997,7 +61123,7 @@ def non_trusted_team_details(cls, val): :param NonTrustedTeamDetails val: :rtype: FederationStatusChangeAdditionalInfo """ - return cls('non_trusted_team_details', val) + return cls("non_trusted_team_details", val) @classmethod def organization_name(cls, val): @@ -60008,7 +61134,7 @@ def organization_name(cls, val): :param OrganizationName val: :rtype: FederationStatusChangeAdditionalInfo """ - return cls('organization_name', val) + return cls("organization_name", val) def is_connected_team_name(self): """ @@ -60016,7 +61142,7 @@ def is_connected_team_name(self): :rtype: bool """ - return self._tag == 'connected_team_name' + return self._tag == "connected_team_name" def is_non_trusted_team_details(self): """ @@ -60024,7 +61150,7 @@ def is_non_trusted_team_details(self): :rtype: bool """ - return self._tag == 'non_trusted_team_details' + return self._tag == "non_trusted_team_details" def is_organization_name(self): """ @@ -60032,7 +61158,7 @@ def is_organization_name(self): :rtype: bool """ - return self._tag == 'organization_name' + return self._tag == "organization_name" def is_other(self): """ @@ -60040,7 +61166,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_connected_team_name(self): """ @@ -60079,10 +61205,14 @@ def get_organization_name(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FederationStatusChangeAdditionalInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FederationStatusChangeAdditionalInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FederationStatusChangeAdditionalInfo_validator = bv.Union(FederationStatusChangeAdditionalInfo) + class FileAddCommentDetails(bb.Struct): """ Added file comment. @@ -60092,13 +61222,12 @@ class FileAddCommentDetails(bb.Struct): """ __slots__ = [ - '_comment_text_value', + "_comment_text_value", ] _has_required_fields = False - def __init__(self, - comment_text=None): + def __init__(self, comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -60107,20 +61236,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileAddCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileAddCommentDetails_validator = bv.Struct(FileAddCommentDetails) -class FileAddCommentType(bb.Struct): +class FileAddCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60129,17 +61260,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileAddCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileAddCommentType_validator = bv.Struct(FileAddCommentType) + class FileAddDetails(bb.Struct): """ Added files and/or folders. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -60147,17 +61281,20 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileAddDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileAddDetails_validator = bv.Struct(FileAddDetails) + class FileAddFromAutomationDetails(bb.Struct): """ Added files and/or folders from automation. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -60165,20 +61302,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddFromAutomationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileAddFromAutomationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileAddFromAutomationDetails_validator = bv.Struct(FileAddFromAutomationDetails) -class FileAddFromAutomationType(bb.Struct): +class FileAddFromAutomationType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60187,20 +61326,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddFromAutomationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileAddFromAutomationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileAddFromAutomationType_validator = bv.Struct(FileAddFromAutomationType) -class FileAddType(bb.Struct): +class FileAddType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60211,8 +61352,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileAddType, self)._process_custom_annotations(annotation_type, field_path, processor) + FileAddType_validator = bv.Struct(FileAddType) + class FileChangeCommentSubscriptionDetails(bb.Struct): """ Subscribed to or unsubscribed from comment notifications for file. @@ -60225,15 +61368,13 @@ class FileChangeCommentSubscriptionDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -60248,20 +61389,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileChangeCommentSubscriptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileChangeCommentSubscriptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileChangeCommentSubscriptionDetails_validator = bv.Struct(FileChangeCommentSubscriptionDetails) -class FileChangeCommentSubscriptionType(bb.Struct): +class FileChangeCommentSubscriptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60270,10 +61413,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileChangeCommentSubscriptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileChangeCommentSubscriptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileChangeCommentSubscriptionType_validator = bv.Struct(FileChangeCommentSubscriptionType) + class FileCommentNotificationPolicy(bb.Union): """ Enable or disable file comments notifications @@ -60283,7 +61430,7 @@ class FileCommentNotificationPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -60297,7 +61444,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -60305,7 +61452,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -60313,13 +61460,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCommentNotificationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileCommentNotificationPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileCommentNotificationPolicy_validator = bv.Union(FileCommentNotificationPolicy) + class FileCommentsChangePolicyDetails(bb.Struct): """ Enabled/disabled commenting on team files. @@ -60332,15 +61483,13 @@ class FileCommentsChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -60355,20 +61504,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCommentsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileCommentsChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileCommentsChangePolicyDetails_validator = bv.Struct(FileCommentsChangePolicyDetails) -class FileCommentsChangePolicyType(bb.Struct): +class FileCommentsChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60377,10 +61528,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCommentsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileCommentsChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileCommentsChangePolicyType_validator = bv.Struct(FileCommentsChangePolicyType) + class FileCommentsPolicy(bb.Union): """ File comments policy @@ -60390,7 +61545,7 @@ class FileCommentsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -60404,7 +61559,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -60412,7 +61567,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -60420,13 +61575,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCommentsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileCommentsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileCommentsPolicy_validator = bv.Union(FileCommentsPolicy) + class FileCopyDetails(bb.Struct): """ Copied files and/or folders. @@ -60436,13 +61595,12 @@ class FileCopyDetails(bb.Struct): """ __slots__ = [ - '_relocate_action_details_value', + "_relocate_action_details_value", ] _has_required_fields = True - def __init__(self, - relocate_action_details=None): + def __init__(self, relocate_action_details=None): self._relocate_action_details_value = bb.NOT_SET if relocate_action_details is not None: self.relocate_action_details = relocate_action_details @@ -60451,20 +61609,22 @@ def __init__(self, relocate_action_details = bb.Attribute("relocate_action_details") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCopyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileCopyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileCopyDetails_validator = bv.Struct(FileCopyDetails) -class FileCopyType(bb.Struct): +class FileCopyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60473,10 +61633,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileCopyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileCopyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileCopyType_validator = bv.Struct(FileCopyType) + class FileDeleteCommentDetails(bb.Struct): """ Deleted file comment. @@ -60486,13 +61650,12 @@ class FileDeleteCommentDetails(bb.Struct): """ __slots__ = [ - '_comment_text_value', + "_comment_text_value", ] _has_required_fields = False - def __init__(self, - comment_text=None): + def __init__(self, comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -60501,20 +61664,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDeleteCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileDeleteCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileDeleteCommentDetails_validator = bv.Struct(FileDeleteCommentDetails) -class FileDeleteCommentType(bb.Struct): +class FileDeleteCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60523,17 +61688,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDeleteCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileDeleteCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileDeleteCommentType_validator = bv.Struct(FileDeleteCommentType) + class FileDeleteDetails(bb.Struct): """ Deleted files and/or folders. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -60541,20 +61709,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileDeleteDetails_validator = bv.Struct(FileDeleteDetails) -class FileDeleteType(bb.Struct): +class FileDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60563,17 +61733,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileDeleteType_validator = bv.Struct(FileDeleteType) + class FileDownloadDetails(bb.Struct): """ Downloaded files and/or folders. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -60581,20 +61754,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileDownloadDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileDownloadDetails_validator = bv.Struct(FileDownloadDetails) -class FileDownloadType(bb.Struct): +class FileDownloadType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60603,10 +61778,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileDownloadType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileDownloadType_validator = bv.Struct(FileDownloadType) + class FileEditCommentDetails(bb.Struct): """ Edited file comment. @@ -60618,15 +61797,13 @@ class FileEditCommentDetails(bb.Struct): """ __slots__ = [ - '_comment_text_value', - '_previous_comment_text_value', + "_comment_text_value", + "_previous_comment_text_value", ] _has_required_fields = True - def __init__(self, - previous_comment_text=None, - comment_text=None): + def __init__(self, previous_comment_text=None, comment_text=None): self._comment_text_value = bb.NOT_SET self._previous_comment_text_value = bb.NOT_SET if comment_text is not None: @@ -60641,20 +61818,22 @@ def __init__(self, previous_comment_text = bb.Attribute("previous_comment_text") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileEditCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileEditCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileEditCommentDetails_validator = bv.Struct(FileEditCommentDetails) -class FileEditCommentType(bb.Struct): +class FileEditCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60663,17 +61842,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileEditCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileEditCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileEditCommentType_validator = bv.Struct(FileEditCommentType) + class FileEditDetails(bb.Struct): """ Edited files. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -60681,20 +61863,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileEditDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileEditDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileEditDetails_validator = bv.Struct(FileEditDetails) -class FileEditType(bb.Struct): +class FileEditType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60703,17 +61887,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileEditType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileEditType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileEditType_validator = bv.Struct(FileEditType) + class FileGetCopyReferenceDetails(bb.Struct): """ Created copy reference to file/folder. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -60721,20 +61908,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileGetCopyReferenceDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileGetCopyReferenceDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileGetCopyReferenceDetails_validator = bv.Struct(FileGetCopyReferenceDetails) -class FileGetCopyReferenceType(bb.Struct): +class FileGetCopyReferenceType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60743,10 +61932,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileGetCopyReferenceType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileGetCopyReferenceType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileGetCopyReferenceType_validator = bv.Struct(FileGetCopyReferenceType) + class FileLikeCommentDetails(bb.Struct): """ Liked file comment. @@ -60756,13 +61949,12 @@ class FileLikeCommentDetails(bb.Struct): """ __slots__ = [ - '_comment_text_value', + "_comment_text_value", ] _has_required_fields = False - def __init__(self, - comment_text=None): + def __init__(self, comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -60771,20 +61963,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLikeCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLikeCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLikeCommentDetails_validator = bv.Struct(FileLikeCommentDetails) -class FileLikeCommentType(bb.Struct): +class FileLikeCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60793,10 +61987,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLikeCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLikeCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLikeCommentType_validator = bv.Struct(FileLikeCommentType) + class FileLockingLockStatusChangedDetails(bb.Struct): """ Locked/unlocked editing for a file. @@ -60808,15 +62006,13 @@ class FileLockingLockStatusChangedDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -60831,20 +62027,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingLockStatusChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLockingLockStatusChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLockingLockStatusChangedDetails_validator = bv.Struct(FileLockingLockStatusChangedDetails) -class FileLockingLockStatusChangedType(bb.Struct): +class FileLockingLockStatusChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60853,10 +62051,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingLockStatusChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLockingLockStatusChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLockingLockStatusChangedType_validator = bv.Struct(FileLockingLockStatusChangedType) + class FileLockingPolicyChangedDetails(bb.Struct): """ Changed file locking policy for team. @@ -60868,15 +62070,13 @@ class FileLockingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -60891,20 +62091,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLockingPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLockingPolicyChangedDetails_validator = bv.Struct(FileLockingPolicyChangedDetails) -class FileLockingPolicyChangedType(bb.Struct): +class FileLockingPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -60913,10 +62115,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLockingPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLockingPolicyChangedType_validator = bv.Struct(FileLockingPolicyChangedType) + class FileOrFolderLogInfo(bb.Struct): """ Generic information relevant both for files and folders @@ -60932,19 +62138,15 @@ class FileOrFolderLogInfo(bb.Struct): """ __slots__ = [ - '_path_value', - '_display_name_value', - '_file_id_value', - '_file_size_value', + "_path_value", + "_display_name_value", + "_file_id_value", + "_file_size_value", ] _has_required_fields = True - def __init__(self, - path=None, - display_name=None, - file_id=None, - file_size=None): + def __init__(self, path=None, display_name=None, file_id=None, file_size=None): self._path_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._file_id_value = bb.NOT_SET @@ -60971,35 +62173,33 @@ def __init__(self, file_size = bb.Attribute("file_size", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileOrFolderLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileOrFolderLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileOrFolderLogInfo_validator = bv.Struct(FileOrFolderLogInfo) + class FileLogInfo(FileOrFolderLogInfo): """ File's logged information. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = True - def __init__(self, - path=None, - display_name=None, - file_id=None, - file_size=None): - super(FileLogInfo, self).__init__(path, - display_name, - file_id, - file_size) + def __init__(self, path=None, display_name=None, file_id=None, file_size=None): + super(FileLogInfo, self).__init__(path, display_name, file_id, file_size) def _process_custom_annotations(self, annotation_type, field_path, processor): super(FileLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + FileLogInfo_validator = bv.Struct(FileLogInfo) + class FileMoveDetails(bb.Struct): """ Moved files and/or folders. @@ -61009,13 +62209,12 @@ class FileMoveDetails(bb.Struct): """ __slots__ = [ - '_relocate_action_details_value', + "_relocate_action_details_value", ] _has_required_fields = True - def __init__(self, - relocate_action_details=None): + def __init__(self, relocate_action_details=None): self._relocate_action_details_value = bb.NOT_SET if relocate_action_details is not None: self.relocate_action_details = relocate_action_details @@ -61024,20 +62223,22 @@ def __init__(self, relocate_action_details = bb.Attribute("relocate_action_details") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMoveDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileMoveDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileMoveDetails_validator = bv.Struct(FileMoveDetails) -class FileMoveType(bb.Struct): +class FileMoveType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61046,17 +62247,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMoveType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileMoveType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileMoveType_validator = bv.Struct(FileMoveType) + class FilePermanentlyDeleteDetails(bb.Struct): """ Permanently deleted files and/or folders. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -61064,20 +62268,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePermanentlyDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FilePermanentlyDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FilePermanentlyDeleteDetails_validator = bv.Struct(FilePermanentlyDeleteDetails) -class FilePermanentlyDeleteType(bb.Struct): +class FilePermanentlyDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61086,17 +62292,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePermanentlyDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FilePermanentlyDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FilePermanentlyDeleteType_validator = bv.Struct(FilePermanentlyDeleteType) + class FilePreviewDetails(bb.Struct): """ Previewed files and/or folders. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -61104,20 +62313,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePreviewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FilePreviewDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FilePreviewDetails_validator = bv.Struct(FilePreviewDetails) -class FilePreviewType(bb.Struct): +class FilePreviewType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61126,10 +62337,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FilePreviewType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FilePreviewType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FilePreviewType_validator = bv.Struct(FilePreviewType) + class FileProviderMigrationPolicyChangedDetails(bb.Struct): """ Changed File Provider Migration policy for team. @@ -61141,15 +62356,13 @@ class FileProviderMigrationPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -61164,20 +62377,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileProviderMigrationPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileProviderMigrationPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -FileProviderMigrationPolicyChangedDetails_validator = bv.Struct(FileProviderMigrationPolicyChangedDetails) -class FileProviderMigrationPolicyChangedType(bb.Struct): +FileProviderMigrationPolicyChangedDetails_validator = bv.Struct( + FileProviderMigrationPolicyChangedDetails +) + +class FileProviderMigrationPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61186,10 +62403,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileProviderMigrationPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileProviderMigrationPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileProviderMigrationPolicyChangedType_validator = bv.Struct(FileProviderMigrationPolicyChangedType) + class FileRenameDetails(bb.Struct): """ Renamed files and/or folders. @@ -61199,13 +62420,12 @@ class FileRenameDetails(bb.Struct): """ __slots__ = [ - '_relocate_action_details_value', + "_relocate_action_details_value", ] _has_required_fields = True - def __init__(self, - relocate_action_details=None): + def __init__(self, relocate_action_details=None): self._relocate_action_details_value = bb.NOT_SET if relocate_action_details is not None: self.relocate_action_details = relocate_action_details @@ -61214,20 +62434,22 @@ def __init__(self, relocate_action_details = bb.Attribute("relocate_action_details") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRenameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRenameDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRenameDetails_validator = bv.Struct(FileRenameDetails) -class FileRenameType(bb.Struct): +class FileRenameType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61236,10 +62458,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRenameType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRenameType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRenameType_validator = bv.Struct(FileRenameType) + class FileRequestAutoCloseDetails(bb.Struct): """ Auto closed file request. @@ -61254,17 +62480,14 @@ class FileRequestAutoCloseDetails(bb.Struct): """ __slots__ = [ - '_file_request_id_value', - '_reason_value', - '_previous_details_value', + "_file_request_id_value", + "_reason_value", + "_previous_details_value", ] _has_required_fields = False - def __init__(self, - file_request_id=None, - reason=None, - previous_details=None): + def __init__(self, file_request_id=None, reason=None, previous_details=None): self._file_request_id_value = bb.NOT_SET self._reason_value = bb.NOT_SET self._previous_details_value = bb.NOT_SET @@ -61285,20 +62508,22 @@ def __init__(self, previous_details = bb.Attribute("previous_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestAutoCloseDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestAutoCloseDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestAutoCloseDetails_validator = bv.Struct(FileRequestAutoCloseDetails) -class FileRequestAutoCloseType(bb.Struct): +class FileRequestAutoCloseType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61307,10 +62532,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestAutoCloseType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestAutoCloseType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestAutoCloseType_validator = bv.Struct(FileRequestAutoCloseType) + class FileRequestChangeDetails(bb.Struct): """ Changed file request. @@ -61325,17 +62554,14 @@ class FileRequestChangeDetails(bb.Struct): """ __slots__ = [ - '_file_request_id_value', - '_previous_details_value', - '_new_details_value', + "_file_request_id_value", + "_previous_details_value", + "_new_details_value", ] _has_required_fields = True - def __init__(self, - new_details=None, - file_request_id=None, - previous_details=None): + def __init__(self, new_details=None, file_request_id=None, previous_details=None): self._file_request_id_value = bb.NOT_SET self._previous_details_value = bb.NOT_SET self._new_details_value = bb.NOT_SET @@ -61356,20 +62582,22 @@ def __init__(self, new_details = bb.Attribute("new_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestChangeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestChangeDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestChangeDetails_validator = bv.Struct(FileRequestChangeDetails) -class FileRequestChangeType(bb.Struct): +class FileRequestChangeType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61378,10 +62606,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestChangeType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestChangeType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestChangeType_validator = bv.Struct(FileRequestChangeType) + class FileRequestCloseDetails(bb.Struct): """ Closed file request. @@ -61394,15 +62626,13 @@ class FileRequestCloseDetails(bb.Struct): """ __slots__ = [ - '_file_request_id_value', - '_previous_details_value', + "_file_request_id_value", + "_previous_details_value", ] _has_required_fields = False - def __init__(self, - file_request_id=None, - previous_details=None): + def __init__(self, file_request_id=None, previous_details=None): self._file_request_id_value = bb.NOT_SET self._previous_details_value = bb.NOT_SET if file_request_id is not None: @@ -61417,20 +62647,22 @@ def __init__(self, previous_details = bb.Attribute("previous_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestCloseDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestCloseDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestCloseDetails_validator = bv.Struct(FileRequestCloseDetails) -class FileRequestCloseType(bb.Struct): +class FileRequestCloseType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61439,10 +62671,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestCloseType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestCloseType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestCloseType_validator = bv.Struct(FileRequestCloseType) + class FileRequestCreateDetails(bb.Struct): """ Created file request. @@ -61454,15 +62690,13 @@ class FileRequestCreateDetails(bb.Struct): """ __slots__ = [ - '_file_request_id_value', - '_request_details_value', + "_file_request_id_value", + "_request_details_value", ] _has_required_fields = False - def __init__(self, - file_request_id=None, - request_details=None): + def __init__(self, file_request_id=None, request_details=None): self._file_request_id_value = bb.NOT_SET self._request_details_value = bb.NOT_SET if file_request_id is not None: @@ -61477,20 +62711,22 @@ def __init__(self, request_details = bb.Attribute("request_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestCreateDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestCreateDetails_validator = bv.Struct(FileRequestCreateDetails) -class FileRequestCreateType(bb.Struct): +class FileRequestCreateType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61499,10 +62735,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestCreateType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestCreateType_validator = bv.Struct(FileRequestCreateType) + class FileRequestDeadline(bb.Struct): """ File request deadline @@ -61515,15 +62755,13 @@ class FileRequestDeadline(bb.Struct): """ __slots__ = [ - '_deadline_value', - '_allow_late_uploads_value', + "_deadline_value", + "_allow_late_uploads_value", ] _has_required_fields = False - def __init__(self, - deadline=None, - allow_late_uploads=None): + def __init__(self, deadline=None, allow_late_uploads=None): self._deadline_value = bb.NOT_SET self._allow_late_uploads_value = bb.NOT_SET if deadline is not None: @@ -61538,10 +62776,14 @@ def __init__(self, allow_late_uploads = bb.Attribute("allow_late_uploads", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDeadline, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestDeadline, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestDeadline_validator = bv.Struct(FileRequestDeadline) + class FileRequestDeleteDetails(bb.Struct): """ Delete file request. @@ -61554,15 +62796,13 @@ class FileRequestDeleteDetails(bb.Struct): """ __slots__ = [ - '_file_request_id_value', - '_previous_details_value', + "_file_request_id_value", + "_previous_details_value", ] _has_required_fields = False - def __init__(self, - file_request_id=None, - previous_details=None): + def __init__(self, file_request_id=None, previous_details=None): self._file_request_id_value = bb.NOT_SET self._previous_details_value = bb.NOT_SET if file_request_id is not None: @@ -61577,20 +62817,22 @@ def __init__(self, previous_details = bb.Attribute("previous_details", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestDeleteDetails_validator = bv.Struct(FileRequestDeleteDetails) -class FileRequestDeleteType(bb.Struct): +class FileRequestDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61599,10 +62841,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestDeleteType_validator = bv.Struct(FileRequestDeleteType) + class FileRequestDetails(bb.Struct): """ File request details @@ -61616,17 +62862,14 @@ class FileRequestDetails(bb.Struct): """ __slots__ = [ - '_asset_index_value', - '_deadline_value', - '_has_password_value', + "_asset_index_value", + "_deadline_value", + "_has_password_value", ] _has_required_fields = True - def __init__(self, - asset_index=None, - deadline=None, - has_password=None): + def __init__(self, asset_index=None, deadline=None, has_password=None): self._asset_index_value = bb.NOT_SET self._deadline_value = bb.NOT_SET self._has_password_value = bb.NOT_SET @@ -61647,10 +62890,14 @@ def __init__(self, has_password = bb.Attribute("has_password", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestDetails_validator = bv.Struct(FileRequestDetails) + class FileRequestReceiveFileDetails(bb.Struct): """ Received files for file request. @@ -61668,21 +62915,23 @@ class FileRequestReceiveFileDetails(bb.Struct): """ __slots__ = [ - '_file_request_id_value', - '_file_request_details_value', - '_submitted_file_names_value', - '_submitter_name_value', - '_submitter_email_value', + "_file_request_id_value", + "_file_request_details_value", + "_submitted_file_names_value", + "_submitter_name_value", + "_submitter_email_value", ] _has_required_fields = True - def __init__(self, - submitted_file_names=None, - file_request_id=None, - file_request_details=None, - submitter_name=None, - submitter_email=None): + def __init__( + self, + submitted_file_names=None, + file_request_id=None, + file_request_details=None, + submitter_name=None, + submitter_email=None, + ): self._file_request_id_value = bb.NOT_SET self._file_request_details_value = bb.NOT_SET self._submitted_file_names_value = bb.NOT_SET @@ -61715,20 +62964,22 @@ def __init__(self, submitter_email = bb.Attribute("submitter_email", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestReceiveFileDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestReceiveFileDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestReceiveFileDetails_validator = bv.Struct(FileRequestReceiveFileDetails) -class FileRequestReceiveFileType(bb.Struct): +class FileRequestReceiveFileType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61737,10 +62988,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestReceiveFileType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestReceiveFileType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestReceiveFileType_validator = bv.Struct(FileRequestReceiveFileType) + class FileRequestsChangePolicyDetails(bb.Struct): """ Enabled/disabled file requests. @@ -61753,15 +63008,13 @@ class FileRequestsChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -61776,20 +63029,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestsChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestsChangePolicyDetails_validator = bv.Struct(FileRequestsChangePolicyDetails) -class FileRequestsChangePolicyType(bb.Struct): +class FileRequestsChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61798,17 +63053,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestsChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestsChangePolicyType_validator = bv.Struct(FileRequestsChangePolicyType) + class FileRequestsEmailsEnabledDetails(bb.Struct): """ Enabled file request emails for everyone. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -61816,20 +63074,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsEmailsEnabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestsEmailsEnabledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestsEmailsEnabledDetails_validator = bv.Struct(FileRequestsEmailsEnabledDetails) -class FileRequestsEmailsEnabledType(bb.Struct): +class FileRequestsEmailsEnabledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61838,17 +63098,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsEmailsEnabledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestsEmailsEnabledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestsEmailsEnabledType_validator = bv.Struct(FileRequestsEmailsEnabledType) + class FileRequestsEmailsRestrictedToTeamOnlyDetails(bb.Struct): """ Enabled file request emails for team. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -61856,20 +63119,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsEmailsRestrictedToTeamOnlyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestsEmailsRestrictedToTeamOnlyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -FileRequestsEmailsRestrictedToTeamOnlyDetails_validator = bv.Struct(FileRequestsEmailsRestrictedToTeamOnlyDetails) -class FileRequestsEmailsRestrictedToTeamOnlyType(bb.Struct): +FileRequestsEmailsRestrictedToTeamOnlyDetails_validator = bv.Struct( + FileRequestsEmailsRestrictedToTeamOnlyDetails +) + +class FileRequestsEmailsRestrictedToTeamOnlyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61878,9 +63145,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsEmailsRestrictedToTeamOnlyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestsEmailsRestrictedToTeamOnlyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +FileRequestsEmailsRestrictedToTeamOnlyType_validator = bv.Struct( + FileRequestsEmailsRestrictedToTeamOnlyType +) -FileRequestsEmailsRestrictedToTeamOnlyType_validator = bv.Struct(FileRequestsEmailsRestrictedToTeamOnlyType) class FileRequestsPolicy(bb.Union): """ @@ -61891,7 +63164,7 @@ class FileRequestsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -61905,7 +63178,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -61913,7 +63186,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -61921,13 +63194,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRequestsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRequestsPolicy_validator = bv.Union(FileRequestsPolicy) + class FileResolveCommentDetails(bb.Struct): """ Resolved file comment. @@ -61937,13 +63214,12 @@ class FileResolveCommentDetails(bb.Struct): """ __slots__ = [ - '_comment_text_value', + "_comment_text_value", ] _has_required_fields = False - def __init__(self, - comment_text=None): + def __init__(self, comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -61952,20 +63228,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileResolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileResolveCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileResolveCommentDetails_validator = bv.Struct(FileResolveCommentDetails) -class FileResolveCommentType(bb.Struct): +class FileResolveCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -61974,17 +63252,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileResolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileResolveCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileResolveCommentType_validator = bv.Struct(FileResolveCommentType) + class FileRestoreDetails(bb.Struct): """ Restored deleted files and/or folders. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -61992,20 +63273,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRestoreDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRestoreDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRestoreDetails_validator = bv.Struct(FileRestoreDetails) -class FileRestoreType(bb.Struct): +class FileRestoreType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62014,17 +63297,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRestoreType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRestoreType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRestoreType_validator = bv.Struct(FileRestoreType) + class FileRevertDetails(bb.Struct): """ Reverted files to previous version. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -62032,20 +63318,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRevertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRevertDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRevertDetails_validator = bv.Struct(FileRevertDetails) -class FileRevertType(bb.Struct): +class FileRevertType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62054,17 +63342,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRevertType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRevertType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRevertType_validator = bv.Struct(FileRevertType) + class FileRollbackChangesDetails(bb.Struct): """ Rolled back file actions. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -62072,20 +63363,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRollbackChangesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRollbackChangesDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRollbackChangesDetails_validator = bv.Struct(FileRollbackChangesDetails) -class FileRollbackChangesType(bb.Struct): +class FileRollbackChangesType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62094,10 +63387,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRollbackChangesType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileRollbackChangesType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileRollbackChangesType_validator = bv.Struct(FileRollbackChangesType) + class FileSaveCopyReferenceDetails(bb.Struct): """ Saved file/folder using copy reference. @@ -62107,13 +63404,12 @@ class FileSaveCopyReferenceDetails(bb.Struct): """ __slots__ = [ - '_relocate_action_details_value', + "_relocate_action_details_value", ] _has_required_fields = True - def __init__(self, - relocate_action_details=None): + def __init__(self, relocate_action_details=None): self._relocate_action_details_value = bb.NOT_SET if relocate_action_details is not None: self.relocate_action_details = relocate_action_details @@ -62122,20 +63418,22 @@ def __init__(self, relocate_action_details = bb.Attribute("relocate_action_details") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileSaveCopyReferenceDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileSaveCopyReferenceDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileSaveCopyReferenceDetails_validator = bv.Struct(FileSaveCopyReferenceDetails) -class FileSaveCopyReferenceType(bb.Struct): +class FileSaveCopyReferenceType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62144,10 +63442,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileSaveCopyReferenceType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileSaveCopyReferenceType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileSaveCopyReferenceType_validator = bv.Struct(FileSaveCopyReferenceType) + class FileTransfersFileAddDetails(bb.Struct): """ Transfer files added. @@ -62157,13 +63459,12 @@ class FileTransfersFileAddDetails(bb.Struct): """ __slots__ = [ - '_file_transfer_id_value', + "_file_transfer_id_value", ] _has_required_fields = True - def __init__(self, - file_transfer_id=None): + def __init__(self, file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -62172,20 +63473,22 @@ def __init__(self, file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersFileAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersFileAddDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersFileAddDetails_validator = bv.Struct(FileTransfersFileAddDetails) -class FileTransfersFileAddType(bb.Struct): +class FileTransfersFileAddType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62194,10 +63497,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersFileAddType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersFileAddType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersFileAddType_validator = bv.Struct(FileTransfersFileAddType) + class FileTransfersPolicy(bb.Union): """ File transfers policy @@ -62207,7 +63514,7 @@ class FileTransfersPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -62221,7 +63528,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -62229,7 +63536,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -62237,13 +63544,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersPolicy_validator = bv.Union(FileTransfersPolicy) + class FileTransfersPolicyChangedDetails(bb.Struct): """ Changed file transfers policy for team. @@ -62255,15 +63566,13 @@ class FileTransfersPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -62278,20 +63587,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersPolicyChangedDetails_validator = bv.Struct(FileTransfersPolicyChangedDetails) -class FileTransfersPolicyChangedType(bb.Struct): +class FileTransfersPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62300,10 +63611,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersPolicyChangedType_validator = bv.Struct(FileTransfersPolicyChangedType) + class FileTransfersTransferDeleteDetails(bb.Struct): """ Deleted transfer. @@ -62313,13 +63628,12 @@ class FileTransfersTransferDeleteDetails(bb.Struct): """ __slots__ = [ - '_file_transfer_id_value', + "_file_transfer_id_value", ] _has_required_fields = True - def __init__(self, - file_transfer_id=None): + def __init__(self, file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -62328,20 +63642,22 @@ def __init__(self, file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersTransferDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersTransferDeleteDetails_validator = bv.Struct(FileTransfersTransferDeleteDetails) -class FileTransfersTransferDeleteType(bb.Struct): +class FileTransfersTransferDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62350,10 +63666,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersTransferDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersTransferDeleteType_validator = bv.Struct(FileTransfersTransferDeleteType) + class FileTransfersTransferDownloadDetails(bb.Struct): """ Transfer downloaded. @@ -62363,13 +63683,12 @@ class FileTransfersTransferDownloadDetails(bb.Struct): """ __slots__ = [ - '_file_transfer_id_value', + "_file_transfer_id_value", ] _has_required_fields = True - def __init__(self, - file_transfer_id=None): + def __init__(self, file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -62378,20 +63697,22 @@ def __init__(self, file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersTransferDownloadDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersTransferDownloadDetails_validator = bv.Struct(FileTransfersTransferDownloadDetails) -class FileTransfersTransferDownloadType(bb.Struct): +class FileTransfersTransferDownloadType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62400,10 +63721,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersTransferDownloadType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersTransferDownloadType_validator = bv.Struct(FileTransfersTransferDownloadType) + class FileTransfersTransferSendDetails(bb.Struct): """ Sent transfer. @@ -62413,13 +63738,12 @@ class FileTransfersTransferSendDetails(bb.Struct): """ __slots__ = [ - '_file_transfer_id_value', + "_file_transfer_id_value", ] _has_required_fields = True - def __init__(self, - file_transfer_id=None): + def __init__(self, file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -62428,20 +63752,22 @@ def __init__(self, file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferSendDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersTransferSendDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersTransferSendDetails_validator = bv.Struct(FileTransfersTransferSendDetails) -class FileTransfersTransferSendType(bb.Struct): +class FileTransfersTransferSendType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62450,10 +63776,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferSendType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersTransferSendType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersTransferSendType_validator = bv.Struct(FileTransfersTransferSendType) + class FileTransfersTransferViewDetails(bb.Struct): """ Viewed transfer. @@ -62463,13 +63793,12 @@ class FileTransfersTransferViewDetails(bb.Struct): """ __slots__ = [ - '_file_transfer_id_value', + "_file_transfer_id_value", ] _has_required_fields = True - def __init__(self, - file_transfer_id=None): + def __init__(self, file_transfer_id=None): self._file_transfer_id_value = bb.NOT_SET if file_transfer_id is not None: self.file_transfer_id = file_transfer_id @@ -62478,20 +63807,22 @@ def __init__(self, file_transfer_id = bb.Attribute("file_transfer_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersTransferViewDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersTransferViewDetails_validator = bv.Struct(FileTransfersTransferViewDetails) -class FileTransfersTransferViewType(bb.Struct): +class FileTransfersTransferViewType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62500,10 +63831,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileTransfersTransferViewType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileTransfersTransferViewType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileTransfersTransferViewType_validator = bv.Struct(FileTransfersTransferViewType) + class FileUnlikeCommentDetails(bb.Struct): """ Unliked file comment. @@ -62513,13 +63848,12 @@ class FileUnlikeCommentDetails(bb.Struct): """ __slots__ = [ - '_comment_text_value', + "_comment_text_value", ] _has_required_fields = False - def __init__(self, - comment_text=None): + def __init__(self, comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -62528,20 +63862,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileUnlikeCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileUnlikeCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileUnlikeCommentDetails_validator = bv.Struct(FileUnlikeCommentDetails) -class FileUnlikeCommentType(bb.Struct): +class FileUnlikeCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62550,10 +63886,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileUnlikeCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileUnlikeCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileUnlikeCommentType_validator = bv.Struct(FileUnlikeCommentType) + class FileUnresolveCommentDetails(bb.Struct): """ Unresolved file comment. @@ -62563,13 +63903,12 @@ class FileUnresolveCommentDetails(bb.Struct): """ __slots__ = [ - '_comment_text_value', + "_comment_text_value", ] _has_required_fields = False - def __init__(self, - comment_text=None): + def __init__(self, comment_text=None): self._comment_text_value = bb.NOT_SET if comment_text is not None: self.comment_text = comment_text @@ -62578,20 +63917,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileUnresolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileUnresolveCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileUnresolveCommentDetails_validator = bv.Struct(FileUnresolveCommentDetails) -class FileUnresolveCommentType(bb.Struct): +class FileUnresolveCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62600,10 +63941,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileUnresolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileUnresolveCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileUnresolveCommentType_validator = bv.Struct(FileUnresolveCommentType) + class FlexibleFileNamesPolicy(bb.Union): """ Flexible file names policy @@ -62613,7 +63958,7 @@ class FlexibleFileNamesPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition off = None # Attribute is overwritten below the class definition @@ -62635,7 +63980,7 @@ def is_off(self): :rtype: bool """ - return self._tag == 'off' + return self._tag == "off" def is_off_default(self): """ @@ -62643,7 +63988,7 @@ def is_off_default(self): :rtype: bool """ - return self._tag == 'off_default' + return self._tag == "off_default" def is_optional(self): """ @@ -62651,7 +63996,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == 'optional' + return self._tag == "optional" def is_optional_default(self): """ @@ -62659,7 +64004,7 @@ def is_optional_default(self): :rtype: bool """ - return self._tag == 'optional_default' + return self._tag == "optional_default" def is_required(self): """ @@ -62667,7 +64012,7 @@ def is_required(self): :rtype: bool """ - return self._tag == 'required' + return self._tag == "required" def is_required_default(self): """ @@ -62675,7 +64020,7 @@ def is_required_default(self): :rtype: bool """ - return self._tag == 'required_default' + return self._tag == "required_default" def is_other(self): """ @@ -62683,13 +64028,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FlexibleFileNamesPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FlexibleFileNamesPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FlexibleFileNamesPolicy_validator = bv.Union(FlexibleFileNamesPolicy) + class FlexibleFileNamesPolicyChangedDetails(bb.Struct): """ Changed flexible file names policy for team. @@ -62702,15 +64051,13 @@ class FlexibleFileNamesPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -62725,20 +64072,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FlexibleFileNamesPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FlexibleFileNamesPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FlexibleFileNamesPolicyChangedDetails_validator = bv.Struct(FlexibleFileNamesPolicyChangedDetails) -class FlexibleFileNamesPolicyChangedType(bb.Struct): +class FlexibleFileNamesPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62747,10 +64096,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FlexibleFileNamesPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FlexibleFileNamesPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FlexibleFileNamesPolicyChangedType_validator = bv.Struct(FlexibleFileNamesPolicyChangedType) + class FolderLinkRestrictionPolicy(bb.Union): """ Policy for deciding whether applying link restrictions on all team owned @@ -62761,7 +64114,7 @@ class FolderLinkRestrictionPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -62775,7 +64128,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -62783,7 +64136,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -62791,13 +64144,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderLinkRestrictionPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderLinkRestrictionPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderLinkRestrictionPolicy_validator = bv.Union(FolderLinkRestrictionPolicy) + class FolderLinkRestrictionPolicyChangedDetails(bb.Struct): """ Changed folder link restrictions policy for team. @@ -62809,15 +64166,13 @@ class FolderLinkRestrictionPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -62832,20 +64187,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderLinkRestrictionPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderLinkRestrictionPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -FolderLinkRestrictionPolicyChangedDetails_validator = bv.Struct(FolderLinkRestrictionPolicyChangedDetails) -class FolderLinkRestrictionPolicyChangedType(bb.Struct): +FolderLinkRestrictionPolicyChangedDetails_validator = bv.Struct( + FolderLinkRestrictionPolicyChangedDetails +) + +class FolderLinkRestrictionPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62854,10 +64213,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderLinkRestrictionPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderLinkRestrictionPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderLinkRestrictionPolicyChangedType_validator = bv.Struct(FolderLinkRestrictionPolicyChangedType) + class FolderLogInfo(FileOrFolderLogInfo): """ Folder's logged information. @@ -62867,21 +64230,20 @@ class FolderLogInfo(FileOrFolderLogInfo): """ __slots__ = [ - '_file_count_value', + "_file_count_value", ] _has_required_fields = True - def __init__(self, - path=None, - display_name=None, - file_id=None, - file_size=None, - file_count=None): - super(FolderLogInfo, self).__init__(path, - display_name, - file_id, - file_size) + def __init__( + self, + path=None, + display_name=None, + file_id=None, + file_size=None, + file_count=None, + ): + super(FolderLogInfo, self).__init__(path, display_name, file_id, file_size) self._file_count_value = bb.NOT_SET if file_count is not None: self.file_count = file_count @@ -62890,10 +64252,14 @@ def __init__(self, file_count = bb.Attribute("file_count", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderLogInfo_validator = bv.Struct(FolderLogInfo) + class FolderOverviewDescriptionChangedDetails(bb.Struct): """ Updated folder overview. @@ -62903,13 +64269,12 @@ class FolderOverviewDescriptionChangedDetails(bb.Struct): """ __slots__ = [ - '_folder_overview_location_asset_value', + "_folder_overview_location_asset_value", ] _has_required_fields = True - def __init__(self, - folder_overview_location_asset=None): + def __init__(self, folder_overview_location_asset=None): self._folder_overview_location_asset_value = bb.NOT_SET if folder_overview_location_asset is not None: self.folder_overview_location_asset = folder_overview_location_asset @@ -62918,20 +64283,24 @@ def __init__(self, folder_overview_location_asset = bb.Attribute("folder_overview_location_asset") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewDescriptionChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderOverviewDescriptionChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -FolderOverviewDescriptionChangedDetails_validator = bv.Struct(FolderOverviewDescriptionChangedDetails) -class FolderOverviewDescriptionChangedType(bb.Struct): +FolderOverviewDescriptionChangedDetails_validator = bv.Struct( + FolderOverviewDescriptionChangedDetails +) + +class FolderOverviewDescriptionChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -62940,10 +64309,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewDescriptionChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderOverviewDescriptionChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderOverviewDescriptionChangedType_validator = bv.Struct(FolderOverviewDescriptionChangedType) + class FolderOverviewItemPinnedDetails(bb.Struct): """ Pinned item to folder overview. @@ -62955,15 +64328,13 @@ class FolderOverviewItemPinnedDetails(bb.Struct): """ __slots__ = [ - '_folder_overview_location_asset_value', - '_pinned_items_asset_indices_value', + "_folder_overview_location_asset_value", + "_pinned_items_asset_indices_value", ] _has_required_fields = True - def __init__(self, - folder_overview_location_asset=None, - pinned_items_asset_indices=None): + def __init__(self, folder_overview_location_asset=None, pinned_items_asset_indices=None): self._folder_overview_location_asset_value = bb.NOT_SET self._pinned_items_asset_indices_value = bb.NOT_SET if folder_overview_location_asset is not None: @@ -62978,20 +64349,22 @@ def __init__(self, pinned_items_asset_indices = bb.Attribute("pinned_items_asset_indices") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewItemPinnedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderOverviewItemPinnedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderOverviewItemPinnedDetails_validator = bv.Struct(FolderOverviewItemPinnedDetails) -class FolderOverviewItemPinnedType(bb.Struct): +class FolderOverviewItemPinnedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63000,10 +64373,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewItemPinnedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderOverviewItemPinnedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderOverviewItemPinnedType_validator = bv.Struct(FolderOverviewItemPinnedType) + class FolderOverviewItemUnpinnedDetails(bb.Struct): """ Unpinned item from folder overview. @@ -63015,15 +64392,13 @@ class FolderOverviewItemUnpinnedDetails(bb.Struct): """ __slots__ = [ - '_folder_overview_location_asset_value', - '_pinned_items_asset_indices_value', + "_folder_overview_location_asset_value", + "_pinned_items_asset_indices_value", ] _has_required_fields = True - def __init__(self, - folder_overview_location_asset=None, - pinned_items_asset_indices=None): + def __init__(self, folder_overview_location_asset=None, pinned_items_asset_indices=None): self._folder_overview_location_asset_value = bb.NOT_SET self._pinned_items_asset_indices_value = bb.NOT_SET if folder_overview_location_asset is not None: @@ -63038,20 +64413,22 @@ def __init__(self, pinned_items_asset_indices = bb.Attribute("pinned_items_asset_indices") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewItemUnpinnedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderOverviewItemUnpinnedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderOverviewItemUnpinnedDetails_validator = bv.Struct(FolderOverviewItemUnpinnedDetails) -class FolderOverviewItemUnpinnedType(bb.Struct): +class FolderOverviewItemUnpinnedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63060,10 +64437,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FolderOverviewItemUnpinnedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FolderOverviewItemUnpinnedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FolderOverviewItemUnpinnedType_validator = bv.Struct(FolderOverviewItemUnpinnedType) + class GeoLocationLogInfo(bb.Struct): """ Geographic location details. @@ -63079,19 +64460,15 @@ class GeoLocationLogInfo(bb.Struct): """ __slots__ = [ - '_city_value', - '_region_value', - '_country_value', - '_ip_address_value', + "_city_value", + "_region_value", + "_country_value", + "_ip_address_value", ] _has_required_fields = True - def __init__(self, - ip_address=None, - city=None, - region=None, - country=None): + def __init__(self, ip_address=None, city=None, region=None, country=None): self._city_value = bb.NOT_SET self._region_value = bb.NOT_SET self._country_value = bb.NOT_SET @@ -63118,10 +64495,14 @@ def __init__(self, ip_address = bb.Attribute("ip_address") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GeoLocationLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GeoLocationLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GeoLocationLogInfo_validator = bv.Struct(GeoLocationLogInfo) + class GetTeamEventsArg(bb.Struct): """ :ivar GetTeamEventsArg.limit: @@ -63144,21 +64525,16 @@ class GetTeamEventsArg(bb.Struct): """ __slots__ = [ - '_limit_value', - '_account_id_value', - '_time_value', - '_category_value', - '_event_type_value', + "_limit_value", + "_account_id_value", + "_time_value", + "_category_value", + "_event_type_value", ] _has_required_fields = False - def __init__(self, - limit=None, - account_id=None, - time=None, - category=None, - event_type=None): + def __init__(self, limit=None, account_id=None, time=None, category=None, event_type=None): self._limit_value = bb.NOT_SET self._account_id_value = bb.NOT_SET self._time_value = bb.NOT_SET @@ -63191,10 +64567,14 @@ def __init__(self, event_type = bb.Attribute("event_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTeamEventsArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTeamEventsArg_validator = bv.Struct(GetTeamEventsArg) + class GetTeamEventsContinueArg(bb.Struct): """ :ivar GetTeamEventsContinueArg.cursor: @@ -63202,13 +64582,12 @@ class GetTeamEventsContinueArg(bb.Struct): """ __slots__ = [ - '_cursor_value', + "_cursor_value", ] _has_required_fields = True - def __init__(self, - cursor=None): + def __init__(self, cursor=None): self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -63217,10 +64596,14 @@ def __init__(self, cursor = bb.Attribute("cursor") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsContinueArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTeamEventsContinueArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTeamEventsContinueArg_validator = bv.Struct(GetTeamEventsContinueArg) + class GetTeamEventsContinueError(bb.Union): """ Errors that can be raised when calling @@ -63244,7 +64627,7 @@ class GetTeamEventsContinueError(bb.Union): :vartype GetTeamEventsContinueError.reset: datetime.datetime """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition bad_cursor = None # Attribute is overwritten below the class definition @@ -63259,7 +64642,7 @@ def reset(cls, val): :param datetime.datetime val: :rtype: GetTeamEventsContinueError """ - return cls('reset', val) + return cls("reset", val) def is_bad_cursor(self): """ @@ -63267,7 +64650,7 @@ def is_bad_cursor(self): :rtype: bool """ - return self._tag == 'bad_cursor' + return self._tag == "bad_cursor" def is_reset(self): """ @@ -63275,7 +64658,7 @@ def is_reset(self): :rtype: bool """ - return self._tag == 'reset' + return self._tag == "reset" def is_other(self): """ @@ -63283,7 +64666,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_reset(self): """ @@ -63305,10 +64688,14 @@ def get_reset(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsContinueError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTeamEventsContinueError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTeamEventsContinueError_validator = bv.Union(GetTeamEventsContinueError) + class GetTeamEventsError(bb.Union): """ Errors that can be raised when calling @@ -63327,7 +64714,7 @@ class GetTeamEventsError(bb.Union): for the same call. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition account_id_not_found = None # Attribute is overwritten below the class definition @@ -63343,7 +64730,7 @@ def is_account_id_not_found(self): :rtype: bool """ - return self._tag == 'account_id_not_found' + return self._tag == "account_id_not_found" def is_invalid_time_range(self): """ @@ -63351,7 +64738,7 @@ def is_invalid_time_range(self): :rtype: bool """ - return self._tag == 'invalid_time_range' + return self._tag == "invalid_time_range" def is_invalid_filters(self): """ @@ -63359,7 +64746,7 @@ def is_invalid_filters(self): :rtype: bool """ - return self._tag == 'invalid_filters' + return self._tag == "invalid_filters" def is_other(self): """ @@ -63367,13 +64754,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTeamEventsError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTeamEventsError_validator = bv.Union(GetTeamEventsError) + class GetTeamEventsResult(bb.Struct): """ :ivar GetTeamEventsResult.events: @@ -63399,17 +64790,14 @@ class GetTeamEventsResult(bb.Struct): """ __slots__ = [ - '_events_value', - '_cursor_value', - '_has_more_value', + "_events_value", + "_cursor_value", + "_has_more_value", ] _has_required_fields = True - def __init__(self, - events=None, - cursor=None, - has_more=None): + def __init__(self, events=None, cursor=None, has_more=None): self._events_value = bb.NOT_SET self._cursor_value = bb.NOT_SET self._has_more_value = bb.NOT_SET @@ -63430,10 +64818,14 @@ def __init__(self, has_more = bb.Attribute("has_more") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTeamEventsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetTeamEventsResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetTeamEventsResult_validator = bv.Struct(GetTeamEventsResult) + class GoogleSsoChangePolicyDetails(bb.Struct): """ Enabled/disabled Google single sign-on for team. @@ -63446,15 +64838,13 @@ class GoogleSsoChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -63469,20 +64859,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GoogleSsoChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GoogleSsoChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GoogleSsoChangePolicyDetails_validator = bv.Struct(GoogleSsoChangePolicyDetails) -class GoogleSsoChangePolicyType(bb.Struct): +class GoogleSsoChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63491,10 +64883,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GoogleSsoChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GoogleSsoChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GoogleSsoChangePolicyType_validator = bv.Struct(GoogleSsoChangePolicyType) + class GoogleSsoPolicy(bb.Union): """ Google SSO policy @@ -63504,7 +64900,7 @@ class GoogleSsoPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -63518,7 +64914,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -63526,7 +64922,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -63534,13 +64930,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GoogleSsoPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GoogleSsoPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GoogleSsoPolicy_validator = bv.Union(GoogleSsoPolicy) + class GovernancePolicyAddFolderFailedDetails(bb.Struct): """ Couldn't add a folder to a policy. @@ -63558,21 +64958,23 @@ class GovernancePolicyAddFolderFailedDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_folder_value', - '_reason_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_folder_value", + "_reason_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - folder=None, - policy_type=None, - reason=None): + def __init__( + self, + governance_policy_id=None, + name=None, + folder=None, + policy_type=None, + reason=None, + ): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -63605,20 +65007,22 @@ def __init__(self, reason = bb.Attribute("reason", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyAddFolderFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyAddFolderFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyAddFolderFailedDetails_validator = bv.Struct(GovernancePolicyAddFolderFailedDetails) -class GovernancePolicyAddFolderFailedType(bb.Struct): +class GovernancePolicyAddFolderFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63627,10 +65031,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyAddFolderFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyAddFolderFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyAddFolderFailedType_validator = bv.Struct(GovernancePolicyAddFolderFailedType) + class GovernancePolicyAddFoldersDetails(bb.Struct): """ Added folders to policy. @@ -63646,19 +65054,15 @@ class GovernancePolicyAddFoldersDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_folders_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_folders_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - policy_type=None, - folders=None): + def __init__(self, governance_policy_id=None, name=None, policy_type=None, folders=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -63685,20 +65089,22 @@ def __init__(self, folders = bb.Attribute("folders", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyAddFoldersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyAddFoldersDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyAddFoldersDetails_validator = bv.Struct(GovernancePolicyAddFoldersDetails) -class GovernancePolicyAddFoldersType(bb.Struct): +class GovernancePolicyAddFoldersType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63707,10 +65113,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyAddFoldersType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyAddFoldersType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyAddFoldersType_validator = bv.Struct(GovernancePolicyAddFoldersType) + class GovernancePolicyContentDisposedDetails(bb.Struct): """ Content disposed. @@ -63726,19 +65136,21 @@ class GovernancePolicyContentDisposedDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_disposition_type_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_disposition_type_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - disposition_type=None, - policy_type=None): + def __init__( + self, + governance_policy_id=None, + name=None, + disposition_type=None, + policy_type=None, + ): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -63765,20 +65177,22 @@ def __init__(self, disposition_type = bb.Attribute("disposition_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyContentDisposedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyContentDisposedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyContentDisposedDetails_validator = bv.Struct(GovernancePolicyContentDisposedDetails) -class GovernancePolicyContentDisposedType(bb.Struct): +class GovernancePolicyContentDisposedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63787,10 +65201,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyContentDisposedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyContentDisposedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyContentDisposedType_validator = bv.Struct(GovernancePolicyContentDisposedType) + class GovernancePolicyCreateDetails(bb.Struct): """ Activated a new policy. @@ -63808,21 +65226,23 @@ class GovernancePolicyCreateDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_duration_value', - '_folders_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_duration_value", + "_folders_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - duration=None, - policy_type=None, - folders=None): + def __init__( + self, + governance_policy_id=None, + name=None, + duration=None, + policy_type=None, + folders=None, + ): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -63855,20 +65275,22 @@ def __init__(self, folders = bb.Attribute("folders", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyCreateDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyCreateDetails_validator = bv.Struct(GovernancePolicyCreateDetails) -class GovernancePolicyCreateType(bb.Struct): +class GovernancePolicyCreateType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63877,10 +65299,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyCreateType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyCreateType_validator = bv.Struct(GovernancePolicyCreateType) + class GovernancePolicyDeleteDetails(bb.Struct): """ Deleted a policy. @@ -63894,17 +65320,14 @@ class GovernancePolicyDeleteDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - policy_type=None): + def __init__(self, governance_policy_id=None, name=None, policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -63925,20 +65348,22 @@ def __init__(self, policy_type = bb.Attribute("policy_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyDeleteDetails_validator = bv.Struct(GovernancePolicyDeleteDetails) -class GovernancePolicyDeleteType(bb.Struct): +class GovernancePolicyDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -63947,10 +65372,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyDeleteType_validator = bv.Struct(GovernancePolicyDeleteType) + class GovernancePolicyEditDetailsDetails(bb.Struct): """ Edited policy. @@ -63970,23 +65399,25 @@ class GovernancePolicyEditDetailsDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_attribute_value', - '_previous_value_value', - '_new_value_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_attribute_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - attribute=None, - previous_value=None, - new_value=None, - policy_type=None): + def __init__( + self, + governance_policy_id=None, + name=None, + attribute=None, + previous_value=None, + new_value=None, + policy_type=None, + ): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -64025,20 +65456,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyEditDetailsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyEditDetailsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyEditDetailsDetails_validator = bv.Struct(GovernancePolicyEditDetailsDetails) -class GovernancePolicyEditDetailsType(bb.Struct): +class GovernancePolicyEditDetailsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64047,10 +65480,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyEditDetailsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyEditDetailsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyEditDetailsType_validator = bv.Struct(GovernancePolicyEditDetailsType) + class GovernancePolicyEditDurationDetails(bb.Struct): """ Changed policy duration. @@ -64068,21 +65505,23 @@ class GovernancePolicyEditDurationDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_previous_value_value', - '_new_value_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - previous_value=None, - new_value=None, - policy_type=None): + def __init__( + self, + governance_policy_id=None, + name=None, + previous_value=None, + new_value=None, + policy_type=None, + ): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -64115,20 +65554,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyEditDurationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyEditDurationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyEditDurationDetails_validator = bv.Struct(GovernancePolicyEditDurationDetails) -class GovernancePolicyEditDurationType(bb.Struct): +class GovernancePolicyEditDurationType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64137,10 +65578,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyEditDurationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyEditDurationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyEditDurationType_validator = bv.Struct(GovernancePolicyEditDurationType) + class GovernancePolicyExportCreatedDetails(bb.Struct): """ Created a policy download. @@ -64156,19 +65601,15 @@ class GovernancePolicyExportCreatedDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_export_name_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_export_name_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - export_name=None, - policy_type=None): + def __init__(self, governance_policy_id=None, name=None, export_name=None, policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -64195,20 +65636,22 @@ def __init__(self, export_name = bb.Attribute("export_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyExportCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyExportCreatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyExportCreatedDetails_validator = bv.Struct(GovernancePolicyExportCreatedDetails) -class GovernancePolicyExportCreatedType(bb.Struct): +class GovernancePolicyExportCreatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64217,10 +65660,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyExportCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyExportCreatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyExportCreatedType_validator = bv.Struct(GovernancePolicyExportCreatedType) + class GovernancePolicyExportRemovedDetails(bb.Struct): """ Removed a policy download. @@ -64236,19 +65683,15 @@ class GovernancePolicyExportRemovedDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_export_name_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_export_name_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - export_name=None, - policy_type=None): + def __init__(self, governance_policy_id=None, name=None, export_name=None, policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -64275,20 +65718,22 @@ def __init__(self, export_name = bb.Attribute("export_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyExportRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyExportRemovedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyExportRemovedDetails_validator = bv.Struct(GovernancePolicyExportRemovedDetails) -class GovernancePolicyExportRemovedType(bb.Struct): +class GovernancePolicyExportRemovedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64297,10 +65742,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyExportRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyExportRemovedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyExportRemovedType_validator = bv.Struct(GovernancePolicyExportRemovedType) + class GovernancePolicyRemoveFoldersDetails(bb.Struct): """ Removed folders from policy. @@ -64318,21 +65767,23 @@ class GovernancePolicyRemoveFoldersDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_folders_value', - '_reason_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_folders_value", + "_reason_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - policy_type=None, - folders=None, - reason=None): + def __init__( + self, + governance_policy_id=None, + name=None, + policy_type=None, + folders=None, + reason=None, + ): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -64365,20 +65816,22 @@ def __init__(self, reason = bb.Attribute("reason", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyRemoveFoldersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyRemoveFoldersDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyRemoveFoldersDetails_validator = bv.Struct(GovernancePolicyRemoveFoldersDetails) -class GovernancePolicyRemoveFoldersType(bb.Struct): +class GovernancePolicyRemoveFoldersType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64387,10 +65840,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyRemoveFoldersType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyRemoveFoldersType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyRemoveFoldersType_validator = bv.Struct(GovernancePolicyRemoveFoldersType) + class GovernancePolicyReportCreatedDetails(bb.Struct): """ Created a summary report for a policy. @@ -64404,17 +65861,14 @@ class GovernancePolicyReportCreatedDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - policy_type=None): + def __init__(self, governance_policy_id=None, name=None, policy_type=None): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -64435,20 +65889,22 @@ def __init__(self, policy_type = bb.Attribute("policy_type", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyReportCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyReportCreatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyReportCreatedDetails_validator = bv.Struct(GovernancePolicyReportCreatedDetails) -class GovernancePolicyReportCreatedType(bb.Struct): +class GovernancePolicyReportCreatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64457,10 +65913,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyReportCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyReportCreatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyReportCreatedType_validator = bv.Struct(GovernancePolicyReportCreatedType) + class GovernancePolicyZipPartDownloadedDetails(bb.Struct): """ Downloaded content from a policy. @@ -64478,21 +65938,23 @@ class GovernancePolicyZipPartDownloadedDetails(bb.Struct): """ __slots__ = [ - '_governance_policy_id_value', - '_name_value', - '_policy_type_value', - '_export_name_value', - '_part_value', + "_governance_policy_id_value", + "_name_value", + "_policy_type_value", + "_export_name_value", + "_part_value", ] _has_required_fields = True - def __init__(self, - governance_policy_id=None, - name=None, - export_name=None, - policy_type=None, - part=None): + def __init__( + self, + governance_policy_id=None, + name=None, + export_name=None, + policy_type=None, + part=None, + ): self._governance_policy_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._policy_type_value = bb.NOT_SET @@ -64525,20 +65987,24 @@ def __init__(self, part = bb.Attribute("part", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyZipPartDownloadedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyZipPartDownloadedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -GovernancePolicyZipPartDownloadedDetails_validator = bv.Struct(GovernancePolicyZipPartDownloadedDetails) -class GovernancePolicyZipPartDownloadedType(bb.Struct): +GovernancePolicyZipPartDownloadedDetails_validator = bv.Struct( + GovernancePolicyZipPartDownloadedDetails +) + +class GovernancePolicyZipPartDownloadedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64547,10 +66013,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GovernancePolicyZipPartDownloadedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GovernancePolicyZipPartDownloadedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GovernancePolicyZipPartDownloadedType_validator = bv.Struct(GovernancePolicyZipPartDownloadedType) + class GroupAddExternalIdDetails(bb.Struct): """ Added external ID for group. @@ -64560,13 +66030,12 @@ class GroupAddExternalIdDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', + "_new_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None): + def __init__(self, new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -64575,20 +66044,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAddExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupAddExternalIdDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupAddExternalIdDetails_validator = bv.Struct(GroupAddExternalIdDetails) -class GroupAddExternalIdType(bb.Struct): +class GroupAddExternalIdType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64597,10 +66068,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAddExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupAddExternalIdType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupAddExternalIdType_validator = bv.Struct(GroupAddExternalIdType) + class GroupAddMemberDetails(bb.Struct): """ Added team members to group. @@ -64610,13 +66085,12 @@ class GroupAddMemberDetails(bb.Struct): """ __slots__ = [ - '_is_group_owner_value', + "_is_group_owner_value", ] _has_required_fields = True - def __init__(self, - is_group_owner=None): + def __init__(self, is_group_owner=None): self._is_group_owner_value = bb.NOT_SET if is_group_owner is not None: self.is_group_owner = is_group_owner @@ -64625,20 +66099,22 @@ def __init__(self, is_group_owner = bb.Attribute("is_group_owner") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAddMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupAddMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupAddMemberDetails_validator = bv.Struct(GroupAddMemberDetails) -class GroupAddMemberType(bb.Struct): +class GroupAddMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64647,10 +66123,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupAddMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupAddMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupAddMemberType_validator = bv.Struct(GroupAddMemberType) + class GroupChangeExternalIdDetails(bb.Struct): """ Changed external ID for group. @@ -64662,15 +66142,13 @@ class GroupChangeExternalIdDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -64685,20 +66163,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupChangeExternalIdDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupChangeExternalIdDetails_validator = bv.Struct(GroupChangeExternalIdDetails) -class GroupChangeExternalIdType(bb.Struct): +class GroupChangeExternalIdType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64707,10 +66187,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupChangeExternalIdType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupChangeExternalIdType_validator = bv.Struct(GroupChangeExternalIdType) + class GroupChangeManagementTypeDetails(bb.Struct): """ Changed group management type. @@ -64723,15 +66207,13 @@ class GroupChangeManagementTypeDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -64746,20 +66228,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeManagementTypeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupChangeManagementTypeDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupChangeManagementTypeDetails_validator = bv.Struct(GroupChangeManagementTypeDetails) -class GroupChangeManagementTypeType(bb.Struct): +class GroupChangeManagementTypeType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64768,10 +66252,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeManagementTypeType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupChangeManagementTypeType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupChangeManagementTypeType_validator = bv.Struct(GroupChangeManagementTypeType) + class GroupChangeMemberRoleDetails(bb.Struct): """ Changed manager permissions of group member. @@ -64781,13 +66269,12 @@ class GroupChangeMemberRoleDetails(bb.Struct): """ __slots__ = [ - '_is_group_owner_value', + "_is_group_owner_value", ] _has_required_fields = True - def __init__(self, - is_group_owner=None): + def __init__(self, is_group_owner=None): self._is_group_owner_value = bb.NOT_SET if is_group_owner is not None: self.is_group_owner = is_group_owner @@ -64796,20 +66283,22 @@ def __init__(self, is_group_owner = bb.Attribute("is_group_owner") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeMemberRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupChangeMemberRoleDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupChangeMemberRoleDetails_validator = bv.Struct(GroupChangeMemberRoleDetails) -class GroupChangeMemberRoleType(bb.Struct): +class GroupChangeMemberRoleType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64818,10 +66307,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupChangeMemberRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupChangeMemberRoleType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupChangeMemberRoleType_validator = bv.Struct(GroupChangeMemberRoleType) + class GroupCreateDetails(bb.Struct): """ Created group. @@ -64833,15 +66326,13 @@ class GroupCreateDetails(bb.Struct): """ __slots__ = [ - '_is_company_managed_value', - '_join_policy_value', + "_is_company_managed_value", + "_join_policy_value", ] _has_required_fields = False - def __init__(self, - is_company_managed=None, - join_policy=None): + def __init__(self, is_company_managed=None, join_policy=None): self._is_company_managed_value = bb.NOT_SET self._join_policy_value = bb.NOT_SET if is_company_managed is not None: @@ -64856,20 +66347,22 @@ def __init__(self, join_policy = bb.Attribute("join_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupCreateDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupCreateDetails_validator = bv.Struct(GroupCreateDetails) -class GroupCreateType(bb.Struct): +class GroupCreateType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64878,10 +66371,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupCreateType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupCreateType_validator = bv.Struct(GroupCreateType) + class GroupDeleteDetails(bb.Struct): """ Deleted group. @@ -64891,13 +66388,12 @@ class GroupDeleteDetails(bb.Struct): """ __slots__ = [ - '_is_company_managed_value', + "_is_company_managed_value", ] _has_required_fields = False - def __init__(self, - is_company_managed=None): + def __init__(self, is_company_managed=None): self._is_company_managed_value = bb.NOT_SET if is_company_managed is not None: self.is_company_managed = is_company_managed @@ -64906,20 +66402,22 @@ def __init__(self, is_company_managed = bb.Attribute("is_company_managed", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupDeleteDetails_validator = bv.Struct(GroupDeleteDetails) -class GroupDeleteType(bb.Struct): +class GroupDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64928,17 +66426,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupDeleteType_validator = bv.Struct(GroupDeleteType) + class GroupDescriptionUpdatedDetails(bb.Struct): """ Updated group. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -64946,20 +66447,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDescriptionUpdatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupDescriptionUpdatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupDescriptionUpdatedDetails_validator = bv.Struct(GroupDescriptionUpdatedDetails) -class GroupDescriptionUpdatedType(bb.Struct): +class GroupDescriptionUpdatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -64968,10 +66471,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupDescriptionUpdatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupDescriptionUpdatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupDescriptionUpdatedType_validator = bv.Struct(GroupDescriptionUpdatedType) + class GroupExternalSharingSettingOverrideChangedDetails(bb.Struct): """ Changed group's external sharing setting. @@ -64983,15 +66490,13 @@ class GroupExternalSharingSettingOverrideChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -65006,20 +66511,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupExternalSharingSettingOverrideChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupExternalSharingSettingOverrideChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -GroupExternalSharingSettingOverrideChangedDetails_validator = bv.Struct(GroupExternalSharingSettingOverrideChangedDetails) -class GroupExternalSharingSettingOverrideChangedType(bb.Struct): +GroupExternalSharingSettingOverrideChangedDetails_validator = bv.Struct( + GroupExternalSharingSettingOverrideChangedDetails +) + +class GroupExternalSharingSettingOverrideChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65028,9 +66537,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupExternalSharingSettingOverrideChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupExternalSharingSettingOverrideChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +GroupExternalSharingSettingOverrideChangedType_validator = bv.Struct( + GroupExternalSharingSettingOverrideChangedType +) -GroupExternalSharingSettingOverrideChangedType_validator = bv.Struct(GroupExternalSharingSettingOverrideChangedType) class GroupJoinPolicy(bb.Union): """ @@ -65039,7 +66554,7 @@ class GroupJoinPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition open = None # Attribute is overwritten below the class definition @@ -65053,7 +66568,7 @@ def is_open(self): :rtype: bool """ - return self._tag == 'open' + return self._tag == "open" def is_request_to_join(self): """ @@ -65061,7 +66576,7 @@ def is_request_to_join(self): :rtype: bool """ - return self._tag == 'request_to_join' + return self._tag == "request_to_join" def is_other(self): """ @@ -65069,13 +66584,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupJoinPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupJoinPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupJoinPolicy_validator = bv.Union(GroupJoinPolicy) + class GroupJoinPolicyUpdatedDetails(bb.Struct): """ Updated group join policy. @@ -65087,15 +66606,13 @@ class GroupJoinPolicyUpdatedDetails(bb.Struct): """ __slots__ = [ - '_is_company_managed_value', - '_join_policy_value', + "_is_company_managed_value", + "_join_policy_value", ] _has_required_fields = False - def __init__(self, - is_company_managed=None, - join_policy=None): + def __init__(self, is_company_managed=None, join_policy=None): self._is_company_managed_value = bb.NOT_SET self._join_policy_value = bb.NOT_SET if is_company_managed is not None: @@ -65110,20 +66627,22 @@ def __init__(self, join_policy = bb.Attribute("join_policy", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupJoinPolicyUpdatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupJoinPolicyUpdatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupJoinPolicyUpdatedDetails_validator = bv.Struct(GroupJoinPolicyUpdatedDetails) -class GroupJoinPolicyUpdatedType(bb.Struct): +class GroupJoinPolicyUpdatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65132,10 +66651,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupJoinPolicyUpdatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupJoinPolicyUpdatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupJoinPolicyUpdatedType_validator = bv.Struct(GroupJoinPolicyUpdatedType) + class GroupLogInfo(bb.Struct): """ Group's logged information. @@ -65149,17 +66672,14 @@ class GroupLogInfo(bb.Struct): """ __slots__ = [ - '_group_id_value', - '_display_name_value', - '_external_id_value', + "_group_id_value", + "_display_name_value", + "_external_id_value", ] _has_required_fields = True - def __init__(self, - display_name=None, - group_id=None, - external_id=None): + def __init__(self, display_name=None, group_id=None, external_id=None): self._group_id_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._external_id_value = bb.NOT_SET @@ -65180,17 +66700,20 @@ def __init__(self, external_id = bb.Attribute("external_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupLogInfo_validator = bv.Struct(GroupLogInfo) + class GroupMovedDetails(bb.Struct): """ Moved group. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -65198,20 +66721,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMovedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMovedDetails_validator = bv.Struct(GroupMovedDetails) -class GroupMovedType(bb.Struct): +class GroupMovedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65220,10 +66745,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupMovedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupMovedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupMovedType_validator = bv.Struct(GroupMovedType) + class GroupRemoveExternalIdDetails(bb.Struct): """ Removed external ID for group. @@ -65233,13 +66762,12 @@ class GroupRemoveExternalIdDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None): + def __init__(self, previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -65248,20 +66776,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRemoveExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupRemoveExternalIdDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupRemoveExternalIdDetails_validator = bv.Struct(GroupRemoveExternalIdDetails) -class GroupRemoveExternalIdType(bb.Struct): +class GroupRemoveExternalIdType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65270,17 +66800,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRemoveExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupRemoveExternalIdType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupRemoveExternalIdType_validator = bv.Struct(GroupRemoveExternalIdType) + class GroupRemoveMemberDetails(bb.Struct): """ Removed team members from group. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -65288,20 +66821,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRemoveMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupRemoveMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupRemoveMemberDetails_validator = bv.Struct(GroupRemoveMemberDetails) -class GroupRemoveMemberType(bb.Struct): +class GroupRemoveMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65310,10 +66845,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRemoveMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupRemoveMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupRemoveMemberType_validator = bv.Struct(GroupRemoveMemberType) + class GroupRenameDetails(bb.Struct): """ Renamed group. @@ -65325,15 +66864,13 @@ class GroupRenameDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -65348,20 +66885,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRenameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupRenameDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupRenameDetails_validator = bv.Struct(GroupRenameDetails) -class GroupRenameType(bb.Struct): +class GroupRenameType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65370,10 +66909,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupRenameType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupRenameType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupRenameType_validator = bv.Struct(GroupRenameType) + class GroupUserManagementChangePolicyDetails(bb.Struct): """ Changed who can create groups. @@ -65386,15 +66929,13 @@ class GroupUserManagementChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -65409,20 +66950,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupUserManagementChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupUserManagementChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupUserManagementChangePolicyDetails_validator = bv.Struct(GroupUserManagementChangePolicyDetails) -class GroupUserManagementChangePolicyType(bb.Struct): +class GroupUserManagementChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65431,10 +66974,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupUserManagementChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupUserManagementChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupUserManagementChangePolicyType_validator = bv.Struct(GroupUserManagementChangePolicyType) + class GuestAdminChangeStatusDetails(bb.Struct): """ Changed guest team admin status. @@ -65454,23 +67001,25 @@ class GuestAdminChangeStatusDetails(bb.Struct): """ __slots__ = [ - '_is_guest_value', - '_guest_team_name_value', - '_host_team_name_value', - '_previous_value_value', - '_new_value_value', - '_action_details_value', + "_is_guest_value", + "_guest_team_name_value", + "_host_team_name_value", + "_previous_value_value", + "_new_value_value", + "_action_details_value", ] _has_required_fields = True - def __init__(self, - is_guest=None, - previous_value=None, - new_value=None, - action_details=None, - guest_team_name=None, - host_team_name=None): + def __init__( + self, + is_guest=None, + previous_value=None, + new_value=None, + action_details=None, + guest_team_name=None, + host_team_name=None, + ): self._is_guest_value = bb.NOT_SET self._guest_team_name_value = bb.NOT_SET self._host_team_name_value = bb.NOT_SET @@ -65509,20 +67058,22 @@ def __init__(self, action_details = bb.Attribute("action_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GuestAdminChangeStatusDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GuestAdminChangeStatusDetails_validator = bv.Struct(GuestAdminChangeStatusDetails) -class GuestAdminChangeStatusType(bb.Struct): +class GuestAdminChangeStatusType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65531,10 +67082,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GuestAdminChangeStatusType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GuestAdminChangeStatusType_validator = bv.Struct(GuestAdminChangeStatusType) + class GuestAdminSignedInViaTrustedTeamsDetails(bb.Struct): """ Started trusted team admin session. @@ -65546,15 +67101,13 @@ class GuestAdminSignedInViaTrustedTeamsDetails(bb.Struct): """ __slots__ = [ - '_team_name_value', - '_trusted_team_name_value', + "_team_name_value", + "_trusted_team_name_value", ] _has_required_fields = False - def __init__(self, - team_name=None, - trusted_team_name=None): + def __init__(self, team_name=None, trusted_team_name=None): self._team_name_value = bb.NOT_SET self._trusted_team_name_value = bb.NOT_SET if team_name is not None: @@ -65569,20 +67122,24 @@ def __init__(self, trusted_team_name = bb.Attribute("trusted_team_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminSignedInViaTrustedTeamsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GuestAdminSignedInViaTrustedTeamsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -GuestAdminSignedInViaTrustedTeamsDetails_validator = bv.Struct(GuestAdminSignedInViaTrustedTeamsDetails) -class GuestAdminSignedInViaTrustedTeamsType(bb.Struct): +GuestAdminSignedInViaTrustedTeamsDetails_validator = bv.Struct( + GuestAdminSignedInViaTrustedTeamsDetails +) + +class GuestAdminSignedInViaTrustedTeamsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65591,10 +67148,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminSignedInViaTrustedTeamsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GuestAdminSignedInViaTrustedTeamsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GuestAdminSignedInViaTrustedTeamsType_validator = bv.Struct(GuestAdminSignedInViaTrustedTeamsType) + class GuestAdminSignedOutViaTrustedTeamsDetails(bb.Struct): """ Ended trusted team admin session. @@ -65606,15 +67167,13 @@ class GuestAdminSignedOutViaTrustedTeamsDetails(bb.Struct): """ __slots__ = [ - '_team_name_value', - '_trusted_team_name_value', + "_team_name_value", + "_trusted_team_name_value", ] _has_required_fields = False - def __init__(self, - team_name=None, - trusted_team_name=None): + def __init__(self, team_name=None, trusted_team_name=None): self._team_name_value = bb.NOT_SET self._trusted_team_name_value = bb.NOT_SET if team_name is not None: @@ -65629,20 +67188,24 @@ def __init__(self, trusted_team_name = bb.Attribute("trusted_team_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminSignedOutViaTrustedTeamsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GuestAdminSignedOutViaTrustedTeamsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -GuestAdminSignedOutViaTrustedTeamsDetails_validator = bv.Struct(GuestAdminSignedOutViaTrustedTeamsDetails) -class GuestAdminSignedOutViaTrustedTeamsType(bb.Struct): +GuestAdminSignedOutViaTrustedTeamsDetails_validator = bv.Struct( + GuestAdminSignedOutViaTrustedTeamsDetails +) + +class GuestAdminSignedOutViaTrustedTeamsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65651,10 +67214,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GuestAdminSignedOutViaTrustedTeamsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GuestAdminSignedOutViaTrustedTeamsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GuestAdminSignedOutViaTrustedTeamsType_validator = bv.Struct(GuestAdminSignedOutViaTrustedTeamsType) + class IdentifierType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -65662,7 +67229,7 @@ class IdentifierType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition email = None # Attribute is overwritten below the class definition @@ -65676,7 +67243,7 @@ def is_email(self): :rtype: bool """ - return self._tag == 'email' + return self._tag == "email" def is_facebook_profile_name(self): """ @@ -65684,7 +67251,7 @@ def is_facebook_profile_name(self): :rtype: bool """ - return self._tag == 'facebook_profile_name' + return self._tag == "facebook_profile_name" def is_other(self): """ @@ -65692,13 +67259,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IdentifierType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IdentifierType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IdentifierType_validator = bv.Union(IdentifierType) + class IntegrationConnectedDetails(bb.Struct): """ Connected integration for member. @@ -65708,13 +67279,12 @@ class IntegrationConnectedDetails(bb.Struct): """ __slots__ = [ - '_integration_name_value', + "_integration_name_value", ] _has_required_fields = True - def __init__(self, - integration_name=None): + def __init__(self, integration_name=None): self._integration_name_value = bb.NOT_SET if integration_name is not None: self.integration_name = integration_name @@ -65723,20 +67293,22 @@ def __init__(self, integration_name = bb.Attribute("integration_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationConnectedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IntegrationConnectedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IntegrationConnectedDetails_validator = bv.Struct(IntegrationConnectedDetails) -class IntegrationConnectedType(bb.Struct): +class IntegrationConnectedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65745,10 +67317,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationConnectedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IntegrationConnectedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IntegrationConnectedType_validator = bv.Struct(IntegrationConnectedType) + class IntegrationDisconnectedDetails(bb.Struct): """ Disconnected integration for member. @@ -65758,13 +67334,12 @@ class IntegrationDisconnectedDetails(bb.Struct): """ __slots__ = [ - '_integration_name_value', + "_integration_name_value", ] _has_required_fields = True - def __init__(self, - integration_name=None): + def __init__(self, integration_name=None): self._integration_name_value = bb.NOT_SET if integration_name is not None: self.integration_name = integration_name @@ -65773,20 +67348,22 @@ def __init__(self, integration_name = bb.Attribute("integration_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationDisconnectedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IntegrationDisconnectedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IntegrationDisconnectedDetails_validator = bv.Struct(IntegrationDisconnectedDetails) -class IntegrationDisconnectedType(bb.Struct): +class IntegrationDisconnectedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65795,10 +67372,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationDisconnectedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IntegrationDisconnectedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IntegrationDisconnectedType_validator = bv.Struct(IntegrationDisconnectedType) + class IntegrationPolicy(bb.Union): """ Policy for controlling whether a service integration is enabled for the @@ -65809,7 +67390,7 @@ class IntegrationPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -65823,7 +67404,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -65831,7 +67412,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -65839,13 +67420,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IntegrationPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IntegrationPolicy_validator = bv.Union(IntegrationPolicy) + class IntegrationPolicyChangedDetails(bb.Struct): """ Changed integration policy for team. @@ -65859,17 +67444,14 @@ class IntegrationPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_integration_name_value', - '_new_value_value', - '_previous_value_value', + "_integration_name_value", + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - integration_name=None, - new_value=None, - previous_value=None): + def __init__(self, integration_name=None, new_value=None, previous_value=None): self._integration_name_value = bb.NOT_SET self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -65890,20 +67472,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IntegrationPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IntegrationPolicyChangedDetails_validator = bv.Struct(IntegrationPolicyChangedDetails) -class IntegrationPolicyChangedType(bb.Struct): +class IntegrationPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -65912,10 +67496,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IntegrationPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IntegrationPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IntegrationPolicyChangedType_validator = bv.Struct(IntegrationPolicyChangedType) + class InviteAcceptanceEmailPolicy(bb.Union): """ Policy for deciding whether team admins receive email when an invitation to @@ -65926,7 +67514,7 @@ class InviteAcceptanceEmailPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -65940,7 +67528,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -65948,7 +67536,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -65956,13 +67544,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteAcceptanceEmailPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InviteAcceptanceEmailPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + InviteAcceptanceEmailPolicy_validator = bv.Union(InviteAcceptanceEmailPolicy) + class InviteAcceptanceEmailPolicyChangedDetails(bb.Struct): """ Changed invite accept email policy for team. @@ -65974,15 +67566,13 @@ class InviteAcceptanceEmailPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -65997,20 +67587,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteAcceptanceEmailPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InviteAcceptanceEmailPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -InviteAcceptanceEmailPolicyChangedDetails_validator = bv.Struct(InviteAcceptanceEmailPolicyChangedDetails) -class InviteAcceptanceEmailPolicyChangedType(bb.Struct): +InviteAcceptanceEmailPolicyChangedDetails_validator = bv.Struct( + InviteAcceptanceEmailPolicyChangedDetails +) + +class InviteAcceptanceEmailPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66019,10 +67613,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteAcceptanceEmailPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InviteAcceptanceEmailPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + InviteAcceptanceEmailPolicyChangedType_validator = bv.Struct(InviteAcceptanceEmailPolicyChangedType) + class InviteMethod(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -66030,7 +67628,7 @@ class InviteMethod(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition auto_approve = None # Attribute is overwritten below the class definition @@ -66048,7 +67646,7 @@ def is_auto_approve(self): :rtype: bool """ - return self._tag == 'auto_approve' + return self._tag == "auto_approve" def is_invite_link(self): """ @@ -66056,7 +67654,7 @@ def is_invite_link(self): :rtype: bool """ - return self._tag == 'invite_link' + return self._tag == "invite_link" def is_member_invite(self): """ @@ -66064,7 +67662,7 @@ def is_member_invite(self): :rtype: bool """ - return self._tag == 'member_invite' + return self._tag == "member_invite" def is_moved_from_another_team(self): """ @@ -66072,7 +67670,7 @@ def is_moved_from_another_team(self): :rtype: bool """ - return self._tag == 'moved_from_another_team' + return self._tag == "moved_from_another_team" def is_other(self): """ @@ -66080,13 +67678,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteMethod, self)._process_custom_annotations(annotation_type, field_path, processor) + super(InviteMethod, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + InviteMethod_validator = bv.Union(InviteMethod) + class JoinTeamDetails(bb.Struct): """ Additional information relevant when a new member joins the team. @@ -66118,29 +67720,31 @@ class JoinTeamDetails(bb.Struct): """ __slots__ = [ - '_linked_apps_value', - '_linked_devices_value', - '_linked_shared_folders_value', - '_was_linked_apps_truncated_value', - '_was_linked_devices_truncated_value', - '_was_linked_shared_folders_truncated_value', - '_has_linked_apps_value', - '_has_linked_devices_value', - '_has_linked_shared_folders_value', + "_linked_apps_value", + "_linked_devices_value", + "_linked_shared_folders_value", + "_was_linked_apps_truncated_value", + "_was_linked_devices_truncated_value", + "_was_linked_shared_folders_truncated_value", + "_has_linked_apps_value", + "_has_linked_devices_value", + "_has_linked_shared_folders_value", ] _has_required_fields = True - def __init__(self, - linked_apps=None, - linked_devices=None, - linked_shared_folders=None, - was_linked_apps_truncated=None, - was_linked_devices_truncated=None, - was_linked_shared_folders_truncated=None, - has_linked_apps=None, - has_linked_devices=None, - has_linked_shared_folders=None): + def __init__( + self, + linked_apps=None, + linked_devices=None, + linked_shared_folders=None, + was_linked_apps_truncated=None, + was_linked_devices_truncated=None, + was_linked_shared_folders_truncated=None, + has_linked_apps=None, + has_linked_devices=None, + has_linked_shared_folders=None, + ): self._linked_apps_value = bb.NOT_SET self._linked_devices_value = bb.NOT_SET self._linked_shared_folders_value = bb.NOT_SET @@ -66185,7 +67789,9 @@ def __init__(self, was_linked_devices_truncated = bb.Attribute("was_linked_devices_truncated", nullable=True) # Instance attribute type: bool (validator is set below) - was_linked_shared_folders_truncated = bb.Attribute("was_linked_shared_folders_truncated", nullable=True) + was_linked_shared_folders_truncated = bb.Attribute( + "was_linked_shared_folders_truncated", nullable=True + ) # Instance attribute type: bool (validator is set below) has_linked_apps = bb.Attribute("has_linked_apps", nullable=True) @@ -66197,10 +67803,14 @@ def __init__(self, has_linked_shared_folders = bb.Attribute("has_linked_shared_folders", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(JoinTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(JoinTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + JoinTeamDetails_validator = bv.Struct(JoinTeamDetails) + class LabelType(bb.Union): """ Label type @@ -66210,7 +67820,7 @@ class LabelType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition personal_information = None # Attribute is overwritten below the class definition @@ -66226,7 +67836,7 @@ def is_personal_information(self): :rtype: bool """ - return self._tag == 'personal_information' + return self._tag == "personal_information" def is_test_only(self): """ @@ -66234,7 +67844,7 @@ def is_test_only(self): :rtype: bool """ - return self._tag == 'test_only' + return self._tag == "test_only" def is_user_defined_tag(self): """ @@ -66242,7 +67852,7 @@ def is_user_defined_tag(self): :rtype: bool """ - return self._tag == 'user_defined_tag' + return self._tag == "user_defined_tag" def is_other(self): """ @@ -66250,13 +67860,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(LabelType, self)._process_custom_annotations(annotation_type, field_path, processor) + LabelType_validator = bv.Union(LabelType) + class LegacyDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information on sessions, in legacy format @@ -66286,35 +67898,35 @@ class LegacyDeviceSessionLogInfo(DeviceSessionLogInfo): """ __slots__ = [ - '_session_info_value', - '_display_name_value', - '_is_emm_managed_value', - '_platform_value', - '_mac_address_value', - '_os_version_value', - '_device_type_value', - '_client_version_value', - '_legacy_uniq_id_value', + "_session_info_value", + "_display_name_value", + "_is_emm_managed_value", + "_platform_value", + "_mac_address_value", + "_os_version_value", + "_device_type_value", + "_client_version_value", + "_legacy_uniq_id_value", ] _has_required_fields = False - def __init__(self, - ip_address=None, - created=None, - updated=None, - session_info=None, - display_name=None, - is_emm_managed=None, - platform=None, - mac_address=None, - os_version=None, - device_type=None, - client_version=None, - legacy_uniq_id=None): - super(LegacyDeviceSessionLogInfo, self).__init__(ip_address, - created, - updated) + def __init__( + self, + ip_address=None, + created=None, + updated=None, + session_info=None, + display_name=None, + is_emm_managed=None, + platform=None, + mac_address=None, + os_version=None, + device_type=None, + client_version=None, + legacy_uniq_id=None, + ): + super(LegacyDeviceSessionLogInfo, self).__init__(ip_address, created, updated) self._session_info_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._is_emm_managed_value = bb.NOT_SET @@ -66371,10 +67983,14 @@ def __init__(self, legacy_uniq_id = bb.Attribute("legacy_uniq_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegacyDeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegacyDeviceSessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegacyDeviceSessionLogInfo_validator = bv.Struct(LegacyDeviceSessionLogInfo) + class LegalHoldsActivateAHoldDetails(bb.Struct): """ Activated a hold. @@ -66390,19 +68006,15 @@ class LegalHoldsActivateAHoldDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', - '_start_date_value', - '_end_date_value', + "_legal_hold_id_value", + "_name_value", + "_start_date_value", + "_end_date_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None, - start_date=None, - end_date=None): + def __init__(self, legal_hold_id=None, name=None, start_date=None, end_date=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._start_date_value = bb.NOT_SET @@ -66429,20 +68041,22 @@ def __init__(self, end_date = bb.Attribute("end_date", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsActivateAHoldDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsActivateAHoldDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsActivateAHoldDetails_validator = bv.Struct(LegalHoldsActivateAHoldDetails) -class LegalHoldsActivateAHoldType(bb.Struct): +class LegalHoldsActivateAHoldType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66451,10 +68065,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsActivateAHoldType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsActivateAHoldType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsActivateAHoldType_validator = bv.Struct(LegalHoldsActivateAHoldType) + class LegalHoldsAddMembersDetails(bb.Struct): """ Added members to a hold. @@ -66466,15 +68084,13 @@ class LegalHoldsAddMembersDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', + "_legal_hold_id_value", + "_name_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None): + def __init__(self, legal_hold_id=None, name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET if legal_hold_id is not None: @@ -66489,20 +68105,22 @@ def __init__(self, name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsAddMembersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsAddMembersDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsAddMembersDetails_validator = bv.Struct(LegalHoldsAddMembersDetails) -class LegalHoldsAddMembersType(bb.Struct): +class LegalHoldsAddMembersType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66511,10 +68129,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsAddMembersType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsAddMembersType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsAddMembersType_validator = bv.Struct(LegalHoldsAddMembersType) + class LegalHoldsChangeHoldDetailsDetails(bb.Struct): """ Edited details for a hold. @@ -66530,19 +68152,15 @@ class LegalHoldsChangeHoldDetailsDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', - '_previous_value_value', - '_new_value_value', + "_legal_hold_id_value", + "_name_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None, - previous_value=None, - new_value=None): + def __init__(self, legal_hold_id=None, name=None, previous_value=None, new_value=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -66569,20 +68187,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsChangeHoldDetailsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsChangeHoldDetailsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsChangeHoldDetailsDetails_validator = bv.Struct(LegalHoldsChangeHoldDetailsDetails) -class LegalHoldsChangeHoldDetailsType(bb.Struct): +class LegalHoldsChangeHoldDetailsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66591,10 +68211,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsChangeHoldDetailsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsChangeHoldDetailsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsChangeHoldDetailsType_validator = bv.Struct(LegalHoldsChangeHoldDetailsType) + class LegalHoldsChangeHoldNameDetails(bb.Struct): """ Renamed a hold. @@ -66608,17 +68232,14 @@ class LegalHoldsChangeHoldNameDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_previous_value_value', - '_new_value_value', + "_legal_hold_id_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - previous_value=None, - new_value=None): + def __init__(self, legal_hold_id=None, previous_value=None, new_value=None): self._legal_hold_id_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -66639,20 +68260,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsChangeHoldNameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsChangeHoldNameDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsChangeHoldNameDetails_validator = bv.Struct(LegalHoldsChangeHoldNameDetails) -class LegalHoldsChangeHoldNameType(bb.Struct): +class LegalHoldsChangeHoldNameType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66661,10 +68284,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsChangeHoldNameType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsChangeHoldNameType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsChangeHoldNameType_validator = bv.Struct(LegalHoldsChangeHoldNameType) + class LegalHoldsExportAHoldDetails(bb.Struct): """ Exported hold. @@ -66678,17 +68305,14 @@ class LegalHoldsExportAHoldDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', - '_export_name_value', + "_legal_hold_id_value", + "_name_value", + "_export_name_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None, - export_name=None): + def __init__(self, legal_hold_id=None, name=None, export_name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._export_name_value = bb.NOT_SET @@ -66709,20 +68333,22 @@ def __init__(self, export_name = bb.Attribute("export_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportAHoldDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsExportAHoldDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsExportAHoldDetails_validator = bv.Struct(LegalHoldsExportAHoldDetails) -class LegalHoldsExportAHoldType(bb.Struct): +class LegalHoldsExportAHoldType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66731,10 +68357,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportAHoldType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsExportAHoldType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsExportAHoldType_validator = bv.Struct(LegalHoldsExportAHoldType) + class LegalHoldsExportCancelledDetails(bb.Struct): """ Canceled export for a hold. @@ -66748,17 +68378,14 @@ class LegalHoldsExportCancelledDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', - '_export_name_value', + "_legal_hold_id_value", + "_name_value", + "_export_name_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None, - export_name=None): + def __init__(self, legal_hold_id=None, name=None, export_name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._export_name_value = bb.NOT_SET @@ -66779,20 +68406,22 @@ def __init__(self, export_name = bb.Attribute("export_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportCancelledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsExportCancelledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsExportCancelledDetails_validator = bv.Struct(LegalHoldsExportCancelledDetails) -class LegalHoldsExportCancelledType(bb.Struct): +class LegalHoldsExportCancelledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66801,10 +68430,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportCancelledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsExportCancelledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsExportCancelledType_validator = bv.Struct(LegalHoldsExportCancelledType) + class LegalHoldsExportDownloadedDetails(bb.Struct): """ Downloaded export for a hold. @@ -66822,21 +68455,16 @@ class LegalHoldsExportDownloadedDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', - '_export_name_value', - '_part_value', - '_file_name_value', + "_legal_hold_id_value", + "_name_value", + "_export_name_value", + "_part_value", + "_file_name_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None, - export_name=None, - part=None, - file_name=None): + def __init__(self, legal_hold_id=None, name=None, export_name=None, part=None, file_name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._export_name_value = bb.NOT_SET @@ -66869,20 +68497,22 @@ def __init__(self, file_name = bb.Attribute("file_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportDownloadedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsExportDownloadedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsExportDownloadedDetails_validator = bv.Struct(LegalHoldsExportDownloadedDetails) -class LegalHoldsExportDownloadedType(bb.Struct): +class LegalHoldsExportDownloadedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66891,10 +68521,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportDownloadedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsExportDownloadedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsExportDownloadedType_validator = bv.Struct(LegalHoldsExportDownloadedType) + class LegalHoldsExportRemovedDetails(bb.Struct): """ Removed export for a hold. @@ -66908,17 +68542,14 @@ class LegalHoldsExportRemovedDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', - '_export_name_value', + "_legal_hold_id_value", + "_name_value", + "_export_name_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None, - export_name=None): + def __init__(self, legal_hold_id=None, name=None, export_name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._export_name_value = bb.NOT_SET @@ -66939,20 +68570,22 @@ def __init__(self, export_name = bb.Attribute("export_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsExportRemovedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsExportRemovedDetails_validator = bv.Struct(LegalHoldsExportRemovedDetails) -class LegalHoldsExportRemovedType(bb.Struct): +class LegalHoldsExportRemovedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -66961,10 +68594,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsExportRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsExportRemovedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsExportRemovedType_validator = bv.Struct(LegalHoldsExportRemovedType) + class LegalHoldsReleaseAHoldDetails(bb.Struct): """ Released a hold. @@ -66976,15 +68613,13 @@ class LegalHoldsReleaseAHoldDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', + "_legal_hold_id_value", + "_name_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None): + def __init__(self, legal_hold_id=None, name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET if legal_hold_id is not None: @@ -66999,20 +68634,22 @@ def __init__(self, name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsReleaseAHoldDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsReleaseAHoldDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsReleaseAHoldDetails_validator = bv.Struct(LegalHoldsReleaseAHoldDetails) -class LegalHoldsReleaseAHoldType(bb.Struct): +class LegalHoldsReleaseAHoldType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67021,10 +68658,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsReleaseAHoldType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsReleaseAHoldType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsReleaseAHoldType_validator = bv.Struct(LegalHoldsReleaseAHoldType) + class LegalHoldsRemoveMembersDetails(bb.Struct): """ Removed members from a hold. @@ -67036,15 +68677,13 @@ class LegalHoldsRemoveMembersDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', + "_legal_hold_id_value", + "_name_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None): + def __init__(self, legal_hold_id=None, name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET if legal_hold_id is not None: @@ -67059,20 +68698,22 @@ def __init__(self, name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsRemoveMembersDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsRemoveMembersDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsRemoveMembersDetails_validator = bv.Struct(LegalHoldsRemoveMembersDetails) -class LegalHoldsRemoveMembersType(bb.Struct): +class LegalHoldsRemoveMembersType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67081,10 +68722,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsRemoveMembersType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsRemoveMembersType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsRemoveMembersType_validator = bv.Struct(LegalHoldsRemoveMembersType) + class LegalHoldsReportAHoldDetails(bb.Struct): """ Created a summary report for a hold. @@ -67096,15 +68741,13 @@ class LegalHoldsReportAHoldDetails(bb.Struct): """ __slots__ = [ - '_legal_hold_id_value', - '_name_value', + "_legal_hold_id_value", + "_name_value", ] _has_required_fields = True - def __init__(self, - legal_hold_id=None, - name=None): + def __init__(self, legal_hold_id=None, name=None): self._legal_hold_id_value = bb.NOT_SET self._name_value = bb.NOT_SET if legal_hold_id is not None: @@ -67119,20 +68762,22 @@ def __init__(self, name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsReportAHoldDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsReportAHoldDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsReportAHoldDetails_validator = bv.Struct(LegalHoldsReportAHoldDetails) -class LegalHoldsReportAHoldType(bb.Struct): +class LegalHoldsReportAHoldType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67141,10 +68786,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LegalHoldsReportAHoldType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LegalHoldsReportAHoldType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LegalHoldsReportAHoldType_validator = bv.Struct(LegalHoldsReportAHoldType) + class LinkSettingsLogInfo(bb.Struct): """ Link Settings @@ -67164,23 +68813,25 @@ class LinkSettingsLogInfo(bb.Struct): """ __slots__ = [ - '_name_value', - '_require_email_value', - '_downloadable_value', - '_expire_at_value', - '_password_required_value', - '_url_value', + "_name_value", + "_require_email_value", + "_downloadable_value", + "_expire_at_value", + "_password_required_value", + "_url_value", ] _has_required_fields = True - def __init__(self, - name=None, - require_email=None, - downloadable=None, - password_required=None, - url=None, - expire_at=None): + def __init__( + self, + name=None, + require_email=None, + downloadable=None, + password_required=None, + url=None, + expire_at=None, + ): self._name_value = bb.NOT_SET self._require_email_value = bb.NOT_SET self._downloadable_value = bb.NOT_SET @@ -67219,10 +68870,14 @@ def __init__(self, url = bb.Attribute("url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkSettingsLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkSettingsLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkSettingsLogInfo_validator = bv.Struct(LinkSettingsLogInfo) + class LinkedDeviceLogInfo(bb.Union): """ The device sessions that user is linked to. @@ -67245,7 +68900,7 @@ class LinkedDeviceLogInfo(bb.Union): :vartype LinkedDeviceLogInfo.web_device_session: WebDeviceSessionLogInfo """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -67258,7 +68913,7 @@ def desktop_device_session(cls, val): :param DesktopDeviceSessionLogInfo val: :rtype: LinkedDeviceLogInfo """ - return cls('desktop_device_session', val) + return cls("desktop_device_session", val) @classmethod def legacy_device_session(cls, val): @@ -67269,7 +68924,7 @@ def legacy_device_session(cls, val): :param LegacyDeviceSessionLogInfo val: :rtype: LinkedDeviceLogInfo """ - return cls('legacy_device_session', val) + return cls("legacy_device_session", val) @classmethod def mobile_device_session(cls, val): @@ -67280,7 +68935,7 @@ def mobile_device_session(cls, val): :param MobileDeviceSessionLogInfo val: :rtype: LinkedDeviceLogInfo """ - return cls('mobile_device_session', val) + return cls("mobile_device_session", val) @classmethod def web_device_session(cls, val): @@ -67291,7 +68946,7 @@ def web_device_session(cls, val): :param WebDeviceSessionLogInfo val: :rtype: LinkedDeviceLogInfo """ - return cls('web_device_session', val) + return cls("web_device_session", val) def is_desktop_device_session(self): """ @@ -67299,7 +68954,7 @@ def is_desktop_device_session(self): :rtype: bool """ - return self._tag == 'desktop_device_session' + return self._tag == "desktop_device_session" def is_legacy_device_session(self): """ @@ -67307,7 +68962,7 @@ def is_legacy_device_session(self): :rtype: bool """ - return self._tag == 'legacy_device_session' + return self._tag == "legacy_device_session" def is_mobile_device_session(self): """ @@ -67315,7 +68970,7 @@ def is_mobile_device_session(self): :rtype: bool """ - return self._tag == 'mobile_device_session' + return self._tag == "mobile_device_session" def is_web_device_session(self): """ @@ -67323,7 +68978,7 @@ def is_web_device_session(self): :rtype: bool """ - return self._tag == 'web_device_session' + return self._tag == "web_device_session" def is_other(self): """ @@ -67331,7 +68986,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_desktop_device_session(self): """ @@ -67382,10 +69037,14 @@ def get_web_device_session(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkedDeviceLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LinkedDeviceLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LinkedDeviceLogInfo_validator = bv.Union(LinkedDeviceLogInfo) + class LockStatus(bb.Union): """ File lock status @@ -67395,7 +69054,7 @@ class LockStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition locked = None # Attribute is overwritten below the class definition @@ -67409,7 +69068,7 @@ def is_locked(self): :rtype: bool """ - return self._tag == 'locked' + return self._tag == "locked" def is_unlocked(self): """ @@ -67417,7 +69076,7 @@ def is_unlocked(self): :rtype: bool """ - return self._tag == 'unlocked' + return self._tag == "unlocked" def is_other(self): """ @@ -67425,13 +69084,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(LockStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + LockStatus_validator = bv.Union(LockStatus) + class LoginFailDetails(bb.Struct): """ Failed to sign in. @@ -67446,17 +69107,14 @@ class LoginFailDetails(bb.Struct): """ __slots__ = [ - '_is_emm_managed_value', - '_login_method_value', - '_error_details_value', + "_is_emm_managed_value", + "_login_method_value", + "_error_details_value", ] _has_required_fields = True - def __init__(self, - login_method=None, - error_details=None, - is_emm_managed=None): + def __init__(self, login_method=None, error_details=None, is_emm_managed=None): self._is_emm_managed_value = bb.NOT_SET self._login_method_value = bb.NOT_SET self._error_details_value = bb.NOT_SET @@ -67477,20 +69135,22 @@ def __init__(self, error_details = bb.Attribute("error_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LoginFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LoginFailDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LoginFailDetails_validator = bv.Struct(LoginFailDetails) -class LoginFailType(bb.Struct): +class LoginFailType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67499,10 +69159,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LoginFailType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LoginFailType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LoginFailType_validator = bv.Struct(LoginFailType) + class LoginMethod(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -67510,7 +69174,7 @@ class LoginMethod(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition apple_oauth = None # Attribute is overwritten below the class definition @@ -67544,7 +69208,7 @@ def is_apple_oauth(self): :rtype: bool """ - return self._tag == 'apple_oauth' + return self._tag == "apple_oauth" def is_first_party_token_exchange(self): """ @@ -67552,7 +69216,7 @@ def is_first_party_token_exchange(self): :rtype: bool """ - return self._tag == 'first_party_token_exchange' + return self._tag == "first_party_token_exchange" def is_google_oauth(self): """ @@ -67560,7 +69224,7 @@ def is_google_oauth(self): :rtype: bool """ - return self._tag == 'google_oauth' + return self._tag == "google_oauth" def is_kakao_oauth(self): """ @@ -67568,7 +69232,7 @@ def is_kakao_oauth(self): :rtype: bool """ - return self._tag == 'kakao_oauth' + return self._tag == "kakao_oauth" def is_lenovo_oauth(self): """ @@ -67576,7 +69240,7 @@ def is_lenovo_oauth(self): :rtype: bool """ - return self._tag == 'lenovo_oauth' + return self._tag == "lenovo_oauth" def is_passkey(self): """ @@ -67584,7 +69248,7 @@ def is_passkey(self): :rtype: bool """ - return self._tag == 'passkey' + return self._tag == "passkey" def is_password(self): """ @@ -67592,7 +69256,7 @@ def is_password(self): :rtype: bool """ - return self._tag == 'password' + return self._tag == "password" def is_qr_code(self): """ @@ -67600,7 +69264,7 @@ def is_qr_code(self): :rtype: bool """ - return self._tag == 'qr_code' + return self._tag == "qr_code" def is_saml(self): """ @@ -67608,7 +69272,7 @@ def is_saml(self): :rtype: bool """ - return self._tag == 'saml' + return self._tag == "saml" def is_two_factor_authentication(self): """ @@ -67616,7 +69280,7 @@ def is_two_factor_authentication(self): :rtype: bool """ - return self._tag == 'two_factor_authentication' + return self._tag == "two_factor_authentication" def is_web_session(self): """ @@ -67624,7 +69288,7 @@ def is_web_session(self): :rtype: bool """ - return self._tag == 'web_session' + return self._tag == "web_session" def is_microsoft_oauth(self): """ @@ -67632,7 +69296,7 @@ def is_microsoft_oauth(self): :rtype: bool """ - return self._tag == 'microsoft_oauth' + return self._tag == "microsoft_oauth" def is_other(self): """ @@ -67640,13 +69304,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(LoginMethod, self)._process_custom_annotations(annotation_type, field_path, processor) + LoginMethod_validator = bv.Union(LoginMethod) + class LoginSuccessDetails(bb.Struct): """ Signed in. @@ -67659,15 +69325,13 @@ class LoginSuccessDetails(bb.Struct): """ __slots__ = [ - '_is_emm_managed_value', - '_login_method_value', + "_is_emm_managed_value", + "_login_method_value", ] _has_required_fields = True - def __init__(self, - login_method=None, - is_emm_managed=None): + def __init__(self, login_method=None, is_emm_managed=None): self._is_emm_managed_value = bb.NOT_SET self._login_method_value = bb.NOT_SET if is_emm_managed is not None: @@ -67682,20 +69346,22 @@ def __init__(self, login_method = bb.Attribute("login_method", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LoginSuccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LoginSuccessDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LoginSuccessDetails_validator = bv.Struct(LoginSuccessDetails) -class LoginSuccessType(bb.Struct): +class LoginSuccessType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67704,10 +69370,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LoginSuccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LoginSuccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LoginSuccessType_validator = bv.Struct(LoginSuccessType) + class LogoutDetails(bb.Struct): """ Signed out. @@ -67717,13 +69387,12 @@ class LogoutDetails(bb.Struct): """ __slots__ = [ - '_login_id_value', + "_login_id_value", ] _has_required_fields = False - def __init__(self, - login_id=None): + def __init__(self, login_id=None): self._login_id_value = bb.NOT_SET if login_id is not None: self.login_id = login_id @@ -67732,20 +69401,22 @@ def __init__(self, login_id = bb.Attribute("login_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LogoutDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(LogoutDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + LogoutDetails_validator = bv.Struct(LogoutDetails) -class LogoutType(bb.Struct): +class LogoutType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67756,8 +69427,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(LogoutType, self)._process_custom_annotations(annotation_type, field_path, processor) + LogoutType_validator = bv.Struct(LogoutType) + class MalwareExclusionState(bb.Struct): """ Malware exclusion list state @@ -67772,17 +69445,19 @@ class MalwareExclusionState(bb.Struct): """ __slots__ = [ - '_excluded_file_hashes_count_value', - '_file_path_from_last_exclusion_value', - '_file_path_from_last_inclusion_value', + "_excluded_file_hashes_count_value", + "_file_path_from_last_exclusion_value", + "_file_path_from_last_inclusion_value", ] _has_required_fields = True - def __init__(self, - excluded_file_hashes_count=None, - file_path_from_last_exclusion=None, - file_path_from_last_inclusion=None): + def __init__( + self, + excluded_file_hashes_count=None, + file_path_from_last_exclusion=None, + file_path_from_last_inclusion=None, + ): self._excluded_file_hashes_count_value = bb.NOT_SET self._file_path_from_last_exclusion_value = bb.NOT_SET self._file_path_from_last_inclusion_value = bb.NOT_SET @@ -67803,10 +69478,14 @@ def __init__(self, file_path_from_last_inclusion = bb.Attribute("file_path_from_last_inclusion", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MalwareExclusionState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MalwareExclusionState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MalwareExclusionState_validator = bv.Struct(MalwareExclusionState) + class MediaHubAddingPeoplePolicy(bb.Union): """ Policy for deciding who can be added to Media Hub content @@ -67816,7 +69495,7 @@ class MediaHubAddingPeoplePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition anyone = None # Attribute is overwritten below the class definition @@ -67830,7 +69509,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == 'anyone' + return self._tag == "anyone" def is_team_only(self): """ @@ -67838,7 +69517,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_other(self): """ @@ -67846,13 +69525,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubAddingPeoplePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubAddingPeoplePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubAddingPeoplePolicy_validator = bv.Union(MediaHubAddingPeoplePolicy) + class MediaHubAddingPeoplePolicyChangedDetails(bb.Struct): """ Changed the policy for adding people to Media Hub content. @@ -67864,15 +69547,13 @@ class MediaHubAddingPeoplePolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -67887,20 +69568,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubAddingPeoplePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubAddingPeoplePolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MediaHubAddingPeoplePolicyChangedDetails_validator = bv.Struct(MediaHubAddingPeoplePolicyChangedDetails) -class MediaHubAddingPeoplePolicyChangedType(bb.Struct): +MediaHubAddingPeoplePolicyChangedDetails_validator = bv.Struct( + MediaHubAddingPeoplePolicyChangedDetails +) + +class MediaHubAddingPeoplePolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -67909,10 +69594,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubAddingPeoplePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubAddingPeoplePolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubAddingPeoplePolicyChangedType_validator = bv.Struct(MediaHubAddingPeoplePolicyChangedType) + class MediaHubDownloadPolicy(bb.Union): """ Policy for deciding whether Media Hub content can be downloaded @@ -67922,7 +69611,7 @@ class MediaHubDownloadPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -67936,7 +69625,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -67944,7 +69633,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -67952,13 +69641,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubDownloadPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubDownloadPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubDownloadPolicy_validator = bv.Union(MediaHubDownloadPolicy) + class MediaHubDownloadPolicyChangedDetails(bb.Struct): """ Changed the policy for downloading Media Hub content. @@ -67970,15 +69663,13 @@ class MediaHubDownloadPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -67993,20 +69684,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubDownloadPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubDownloadPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubDownloadPolicyChangedDetails_validator = bv.Struct(MediaHubDownloadPolicyChangedDetails) -class MediaHubDownloadPolicyChangedType(bb.Struct): +class MediaHubDownloadPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68015,17 +69708,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubDownloadPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubDownloadPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubDownloadPolicyChangedType_validator = bv.Struct(MediaHubDownloadPolicyChangedType) + class MediaHubFileDownloadedDetails(bb.Struct): """ Downloaded files in Media Hub. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -68033,20 +69729,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubFileDownloadedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubFileDownloadedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubFileDownloadedDetails_validator = bv.Struct(MediaHubFileDownloadedDetails) -class MediaHubFileDownloadedType(bb.Struct): +class MediaHubFileDownloadedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68055,10 +69753,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubFileDownloadedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubFileDownloadedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubFileDownloadedType_validator = bv.Struct(MediaHubFileDownloadedType) + class MediaHubLinkSharingPolicy(bb.Union): """ Policy for deciding who Media Hub content can be shared with through links @@ -68068,7 +69770,7 @@ class MediaHubLinkSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_one = None # Attribute is overwritten below the class definition @@ -68084,7 +69786,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == 'no_one' + return self._tag == "no_one" def is_public(self): """ @@ -68092,7 +69794,7 @@ def is_public(self): :rtype: bool """ - return self._tag == 'public' + return self._tag == "public" def is_team_only(self): """ @@ -68100,7 +69802,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_other(self): """ @@ -68108,13 +69810,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubLinkSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubLinkSharingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubLinkSharingPolicy_validator = bv.Union(MediaHubLinkSharingPolicy) + class MediaHubLinkSharingPolicyChangedDetails(bb.Struct): """ Changed the policy for sharing Media Hub content. @@ -68126,15 +69832,13 @@ class MediaHubLinkSharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -68149,20 +69853,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubLinkSharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubLinkSharingPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MediaHubLinkSharingPolicyChangedDetails_validator = bv.Struct(MediaHubLinkSharingPolicyChangedDetails) -class MediaHubLinkSharingPolicyChangedType(bb.Struct): +MediaHubLinkSharingPolicyChangedDetails_validator = bv.Struct( + MediaHubLinkSharingPolicyChangedDetails +) + +class MediaHubLinkSharingPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68171,10 +69879,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubLinkSharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubLinkSharingPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubLinkSharingPolicyChangedType_validator = bv.Struct(MediaHubLinkSharingPolicyChangedType) + class MediaHubProjectRole(bb.Union): """ Media Hub project role @@ -68184,7 +69896,7 @@ class MediaHubProjectRole(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition editor = None # Attribute is overwritten below the class definition @@ -68200,7 +69912,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == 'editor' + return self._tag == "editor" def is_owner(self): """ @@ -68208,7 +69920,7 @@ def is_owner(self): :rtype: bool """ - return self._tag == 'owner' + return self._tag == "owner" def is_reviewer(self): """ @@ -68216,7 +69928,7 @@ def is_reviewer(self): :rtype: bool """ - return self._tag == 'reviewer' + return self._tag == "reviewer" def is_other(self): """ @@ -68224,20 +69936,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectRole, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubProjectRole, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubProjectRole_validator = bv.Union(MediaHubProjectRole) + class MediaHubProjectTeamAddDetails(bb.Struct): """ Added member to Media Hub project. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -68245,20 +69960,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubProjectTeamAddDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubProjectTeamAddDetails_validator = bv.Struct(MediaHubProjectTeamAddDetails) -class MediaHubProjectTeamAddType(bb.Struct): +class MediaHubProjectTeamAddType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68267,17 +69984,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamAddType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubProjectTeamAddType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubProjectTeamAddType_validator = bv.Struct(MediaHubProjectTeamAddType) + class MediaHubProjectTeamDeleteDetails(bb.Struct): """ Removed member from Media Hub project. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -68285,20 +70005,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubProjectTeamDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubProjectTeamDeleteDetails_validator = bv.Struct(MediaHubProjectTeamDeleteDetails) -class MediaHubProjectTeamDeleteType(bb.Struct): +class MediaHubProjectTeamDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68307,10 +70029,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubProjectTeamDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubProjectTeamDeleteType_validator = bv.Struct(MediaHubProjectTeamDeleteType) + class MediaHubProjectTeamRoleChangedDetails(bb.Struct): """ Changed member role in Media Hub project. @@ -68322,15 +70048,13 @@ class MediaHubProjectTeamRoleChangedDetails(bb.Struct): """ __slots__ = [ - '_previous_role_value', - '_new_role_value', + "_previous_role_value", + "_new_role_value", ] _has_required_fields = True - def __init__(self, - previous_role=None, - new_role=None): + def __init__(self, previous_role=None, new_role=None): self._previous_role_value = bb.NOT_SET self._new_role_value = bb.NOT_SET if previous_role is not None: @@ -68345,20 +70069,22 @@ def __init__(self, new_role = bb.Attribute("new_role", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamRoleChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubProjectTeamRoleChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubProjectTeamRoleChangedDetails_validator = bv.Struct(MediaHubProjectTeamRoleChangedDetails) -class MediaHubProjectTeamRoleChangedType(bb.Struct): +class MediaHubProjectTeamRoleChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68367,10 +70093,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubProjectTeamRoleChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubProjectTeamRoleChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubProjectTeamRoleChangedType_validator = bv.Struct(MediaHubProjectTeamRoleChangedType) + class MediaHubSharedLinkAudience(bb.Union): """ Media Hub shared link audience @@ -68380,7 +70110,7 @@ class MediaHubSharedLinkAudience(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_one = None # Attribute is overwritten below the class definition @@ -68396,7 +70126,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == 'no_one' + return self._tag == "no_one" def is_public(self): """ @@ -68404,7 +70134,7 @@ def is_public(self): :rtype: bool """ - return self._tag == 'public' + return self._tag == "public" def is_team_only(self): """ @@ -68412,7 +70142,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_other(self): """ @@ -68420,13 +70150,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkAudience, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkAudience, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubSharedLinkAudience_validator = bv.Union(MediaHubSharedLinkAudience) + class MediaHubSharedLinkAudienceChangedDetails(bb.Struct): """ Changed Media Hub shared link audience. @@ -68440,17 +70174,14 @@ class MediaHubSharedLinkAudienceChangedDetails(bb.Struct): """ __slots__ = [ - '_target_type_value', - '_previous_value_value', - '_new_value_value', + "_target_type_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - target_type=None, - previous_value=None, - new_value=None): + def __init__(self, target_type=None, previous_value=None, new_value=None): self._target_type_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -68471,20 +70202,24 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkAudienceChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkAudienceChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MediaHubSharedLinkAudienceChangedDetails_validator = bv.Struct(MediaHubSharedLinkAudienceChangedDetails) -class MediaHubSharedLinkAudienceChangedType(bb.Struct): +MediaHubSharedLinkAudienceChangedDetails_validator = bv.Struct( + MediaHubSharedLinkAudienceChangedDetails +) + +class MediaHubSharedLinkAudienceChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68493,10 +70228,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkAudienceChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkAudienceChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubSharedLinkAudienceChangedType_validator = bv.Struct(MediaHubSharedLinkAudienceChangedType) + class MediaHubSharedLinkCreatedDetails(bb.Struct): """ Created Media Hub shared link. @@ -68508,15 +70247,13 @@ class MediaHubSharedLinkCreatedDetails(bb.Struct): """ __slots__ = [ - '_target_type_value', - '_audience_value', + "_target_type_value", + "_audience_value", ] _has_required_fields = True - def __init__(self, - target_type=None, - audience=None): + def __init__(self, target_type=None, audience=None): self._target_type_value = bb.NOT_SET self._audience_value = bb.NOT_SET if target_type is not None: @@ -68531,20 +70268,22 @@ def __init__(self, audience = bb.Attribute("audience", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkCreatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubSharedLinkCreatedDetails_validator = bv.Struct(MediaHubSharedLinkCreatedDetails) -class MediaHubSharedLinkCreatedType(bb.Struct): +class MediaHubSharedLinkCreatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68553,10 +70292,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkCreatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubSharedLinkCreatedType_validator = bv.Struct(MediaHubSharedLinkCreatedType) + class MediaHubSharedLinkDownloadSetting(bb.Union): """ Media Hub shared link download setting @@ -68566,7 +70309,7 @@ class MediaHubSharedLinkDownloadSetting(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -68580,7 +70323,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -68588,7 +70331,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -68596,13 +70339,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkDownloadSetting, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkDownloadSetting, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubSharedLinkDownloadSetting_validator = bv.Union(MediaHubSharedLinkDownloadSetting) + class MediaHubSharedLinkDownloadSettingChangedDetails(bb.Struct): """ Changed Media Hub shared link download setting. @@ -68616,17 +70363,14 @@ class MediaHubSharedLinkDownloadSettingChangedDetails(bb.Struct): """ __slots__ = [ - '_target_type_value', - '_previous_value_value', - '_new_value_value', + "_target_type_value", + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - target_type=None, - previous_value=None, - new_value=None): + def __init__(self, target_type=None, previous_value=None, new_value=None): self._target_type_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -68647,20 +70391,24 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkDownloadSettingChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkDownloadSettingChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MediaHubSharedLinkDownloadSettingChangedDetails_validator = bv.Struct(MediaHubSharedLinkDownloadSettingChangedDetails) -class MediaHubSharedLinkDownloadSettingChangedType(bb.Struct): +MediaHubSharedLinkDownloadSettingChangedDetails_validator = bv.Struct( + MediaHubSharedLinkDownloadSettingChangedDetails +) + +class MediaHubSharedLinkDownloadSettingChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68669,9 +70417,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkDownloadSettingChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkDownloadSettingChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +MediaHubSharedLinkDownloadSettingChangedType_validator = bv.Struct( + MediaHubSharedLinkDownloadSettingChangedType +) -MediaHubSharedLinkDownloadSettingChangedType_validator = bv.Struct(MediaHubSharedLinkDownloadSettingChangedType) class MediaHubSharedLinkRevokedDetails(bb.Struct): """ @@ -68682,13 +70436,12 @@ class MediaHubSharedLinkRevokedDetails(bb.Struct): """ __slots__ = [ - '_target_type_value', + "_target_type_value", ] _has_required_fields = True - def __init__(self, - target_type=None): + def __init__(self, target_type=None): self._target_type_value = bb.NOT_SET if target_type is not None: self.target_type = target_type @@ -68697,20 +70450,22 @@ def __init__(self, target_type = bb.Attribute("target_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkRevokedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkRevokedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubSharedLinkRevokedDetails_validator = bv.Struct(MediaHubSharedLinkRevokedDetails) -class MediaHubSharedLinkRevokedType(bb.Struct): +class MediaHubSharedLinkRevokedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68719,10 +70474,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkRevokedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkRevokedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubSharedLinkRevokedType_validator = bv.Struct(MediaHubSharedLinkRevokedType) + class MediaHubSharedLinkTargetType(bb.Union): """ Media Hub shared link target type @@ -68732,7 +70491,7 @@ class MediaHubSharedLinkTargetType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition bundle = None # Attribute is overwritten below the class definition @@ -68746,7 +70505,7 @@ def is_bundle(self): :rtype: bool """ - return self._tag == 'bundle' + return self._tag == "bundle" def is_project(self): """ @@ -68754,7 +70513,7 @@ def is_project(self): :rtype: bool """ - return self._tag == 'project' + return self._tag == "project" def is_other(self): """ @@ -68762,20 +70521,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaHubSharedLinkTargetType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MediaHubSharedLinkTargetType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MediaHubSharedLinkTargetType_validator = bv.Union(MediaHubSharedLinkTargetType) + class MemberAccessDetailsCreateReportDetails(bb.Struct): """ Created member access report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -68783,10 +70545,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessDetailsCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAccessDetailsCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAccessDetailsCreateReportDetails_validator = bv.Struct(MemberAccessDetailsCreateReportDetails) + class MemberAccessDetailsCreateReportFailedDetails(bb.Struct): """ Couldn't generate member access report. @@ -68796,13 +70562,12 @@ class MemberAccessDetailsCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -68811,20 +70576,24 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessDetailsCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAccessDetailsCreateReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MemberAccessDetailsCreateReportFailedDetails_validator = bv.Struct(MemberAccessDetailsCreateReportFailedDetails) -class MemberAccessDetailsCreateReportFailedType(bb.Struct): +MemberAccessDetailsCreateReportFailedDetails_validator = bv.Struct( + MemberAccessDetailsCreateReportFailedDetails +) + +class MemberAccessDetailsCreateReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68833,20 +70602,24 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessDetailsCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAccessDetailsCreateReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MemberAccessDetailsCreateReportFailedType_validator = bv.Struct(MemberAccessDetailsCreateReportFailedType) -class MemberAccessDetailsCreateReportType(bb.Struct): +MemberAccessDetailsCreateReportFailedType_validator = bv.Struct( + MemberAccessDetailsCreateReportFailedType +) + +class MemberAccessDetailsCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68855,10 +70628,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAccessDetailsCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAccessDetailsCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAccessDetailsCreateReportType_validator = bv.Struct(MemberAccessDetailsCreateReportType) + class MemberAddExternalIdDetails(bb.Struct): """ Added an external ID for team member. @@ -68868,13 +70645,12 @@ class MemberAddExternalIdDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', + "_new_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None): + def __init__(self, new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -68883,20 +70659,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddExternalIdDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddExternalIdDetails_validator = bv.Struct(MemberAddExternalIdDetails) -class MemberAddExternalIdType(bb.Struct): +class MemberAddExternalIdType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68905,10 +70683,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddExternalIdType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddExternalIdType_validator = bv.Struct(MemberAddExternalIdType) + class MemberAddNameDetails(bb.Struct): """ Added team member name. @@ -68918,13 +70700,12 @@ class MemberAddNameDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', + "_new_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None): + def __init__(self, new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -68933,20 +70714,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddNameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddNameDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddNameDetails_validator = bv.Struct(MemberAddNameDetails) -class MemberAddNameType(bb.Struct): +class MemberAddNameType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -68955,10 +70738,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberAddNameType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberAddNameType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberAddNameType_validator = bv.Struct(MemberAddNameType) + class MemberChangeAdminRoleDetails(bb.Struct): """ Changed team member admin role. @@ -68972,15 +70759,13 @@ class MemberChangeAdminRoleDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -68995,20 +70780,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeAdminRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeAdminRoleDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeAdminRoleDetails_validator = bv.Struct(MemberChangeAdminRoleDetails) -class MemberChangeAdminRoleType(bb.Struct): +class MemberChangeAdminRoleType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69017,10 +70804,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeAdminRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeAdminRoleType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeAdminRoleType_validator = bv.Struct(MemberChangeAdminRoleType) + class MemberChangeEmailDetails(bb.Struct): """ Changed team member email. @@ -69032,15 +70823,13 @@ class MemberChangeEmailDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -69055,20 +70844,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeEmailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeEmailDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeEmailDetails_validator = bv.Struct(MemberChangeEmailDetails) -class MemberChangeEmailType(bb.Struct): +class MemberChangeEmailType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69077,10 +70868,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeEmailType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeEmailType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeEmailType_validator = bv.Struct(MemberChangeEmailType) + class MemberChangeExternalIdDetails(bb.Struct): """ Changed the external ID for team member. @@ -69092,15 +70887,13 @@ class MemberChangeExternalIdDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -69115,20 +70908,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeExternalIdDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeExternalIdDetails_validator = bv.Struct(MemberChangeExternalIdDetails) -class MemberChangeExternalIdType(bb.Struct): +class MemberChangeExternalIdType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69137,10 +70932,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeExternalIdType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeExternalIdType_validator = bv.Struct(MemberChangeExternalIdType) + class MemberChangeMembershipTypeDetails(bb.Struct): """ Changed membership type (limited/full) of member. @@ -69152,15 +70951,13 @@ class MemberChangeMembershipTypeDetails(bb.Struct): """ __slots__ = [ - '_prev_value_value', - '_new_value_value', + "_prev_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - prev_value=None, - new_value=None): + def __init__(self, prev_value=None, new_value=None): self._prev_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if prev_value is not None: @@ -69175,20 +70972,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeMembershipTypeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeMembershipTypeDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeMembershipTypeDetails_validator = bv.Struct(MemberChangeMembershipTypeDetails) -class MemberChangeMembershipTypeType(bb.Struct): +class MemberChangeMembershipTypeType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69197,10 +70996,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeMembershipTypeType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeMembershipTypeType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeMembershipTypeType_validator = bv.Struct(MemberChangeMembershipTypeType) + class MemberChangeNameDetails(bb.Struct): """ Changed team member name. @@ -69212,15 +71015,13 @@ class MemberChangeNameDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -69235,20 +71036,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeNameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeNameDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeNameDetails_validator = bv.Struct(MemberChangeNameDetails) -class MemberChangeNameType(bb.Struct): +class MemberChangeNameType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69257,10 +71060,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeNameType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeNameType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeNameType_validator = bv.Struct(MemberChangeNameType) + class MemberChangeResellerRoleDetails(bb.Struct): """ Changed team member reseller role. @@ -69274,15 +71081,13 @@ class MemberChangeResellerRoleDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -69297,20 +71102,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeResellerRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeResellerRoleDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeResellerRoleDetails_validator = bv.Struct(MemberChangeResellerRoleDetails) -class MemberChangeResellerRoleType(bb.Struct): +class MemberChangeResellerRoleType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69319,10 +71126,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeResellerRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeResellerRoleType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeResellerRoleType_validator = bv.Struct(MemberChangeResellerRoleType) + class MemberChangeStatusDetails(bb.Struct): """ Changed member status (invited, joined, suspended, etc.). @@ -69343,21 +71154,23 @@ class MemberChangeStatusDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', - '_action_value', - '_new_team_value', - '_previous_team_value', + "_previous_value_value", + "_new_value_value", + "_action_value", + "_new_team_value", + "_previous_team_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None, - action=None, - new_team=None, - previous_team=None): + def __init__( + self, + new_value=None, + previous_value=None, + action=None, + new_team=None, + previous_team=None, + ): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET self._action_value = bb.NOT_SET @@ -69390,20 +71203,22 @@ def __init__(self, previous_team = bb.Attribute("previous_team", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeStatusDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeStatusDetails_validator = bv.Struct(MemberChangeStatusDetails) -class MemberChangeStatusType(bb.Struct): +class MemberChangeStatusType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69412,17 +71227,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberChangeStatusType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberChangeStatusType_validator = bv.Struct(MemberChangeStatusType) + class MemberDeleteManualContactsDetails(bb.Struct): """ Cleared manually added contacts. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -69430,20 +71248,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDeleteManualContactsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberDeleteManualContactsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberDeleteManualContactsDetails_validator = bv.Struct(MemberDeleteManualContactsDetails) -class MemberDeleteManualContactsType(bb.Struct): +class MemberDeleteManualContactsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69452,17 +71272,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDeleteManualContactsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberDeleteManualContactsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberDeleteManualContactsType_validator = bv.Struct(MemberDeleteManualContactsType) + class MemberDeleteProfilePhotoDetails(bb.Struct): """ Deleted team member profile photo. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -69470,20 +71293,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDeleteProfilePhotoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberDeleteProfilePhotoDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberDeleteProfilePhotoDetails_validator = bv.Struct(MemberDeleteProfilePhotoDetails) -class MemberDeleteProfilePhotoType(bb.Struct): +class MemberDeleteProfilePhotoType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69492,17 +71317,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberDeleteProfilePhotoType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberDeleteProfilePhotoType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberDeleteProfilePhotoType_validator = bv.Struct(MemberDeleteProfilePhotoType) + class MemberPermanentlyDeleteAccountContentsDetails(bb.Struct): """ Permanently deleted contents of deleted team member account. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -69510,20 +71338,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberPermanentlyDeleteAccountContentsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberPermanentlyDeleteAccountContentsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MemberPermanentlyDeleteAccountContentsDetails_validator = bv.Struct(MemberPermanentlyDeleteAccountContentsDetails) -class MemberPermanentlyDeleteAccountContentsType(bb.Struct): +MemberPermanentlyDeleteAccountContentsDetails_validator = bv.Struct( + MemberPermanentlyDeleteAccountContentsDetails +) + +class MemberPermanentlyDeleteAccountContentsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69532,9 +71364,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberPermanentlyDeleteAccountContentsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberPermanentlyDeleteAccountContentsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +MemberPermanentlyDeleteAccountContentsType_validator = bv.Struct( + MemberPermanentlyDeleteAccountContentsType +) -MemberPermanentlyDeleteAccountContentsType_validator = bv.Struct(MemberPermanentlyDeleteAccountContentsType) class MemberRemoveActionType(bb.Union): """ @@ -69543,7 +71381,7 @@ class MemberRemoveActionType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition delete = None # Attribute is overwritten below the class definition @@ -69561,7 +71399,7 @@ def is_delete(self): :rtype: bool """ - return self._tag == 'delete' + return self._tag == "delete" def is_leave(self): """ @@ -69569,7 +71407,7 @@ def is_leave(self): :rtype: bool """ - return self._tag == 'leave' + return self._tag == "leave" def is_offboard(self): """ @@ -69577,7 +71415,7 @@ def is_offboard(self): :rtype: bool """ - return self._tag == 'offboard' + return self._tag == "offboard" def is_offboard_and_retain_team_folders(self): """ @@ -69585,7 +71423,7 @@ def is_offboard_and_retain_team_folders(self): :rtype: bool """ - return self._tag == 'offboard_and_retain_team_folders' + return self._tag == "offboard_and_retain_team_folders" def is_other(self): """ @@ -69593,13 +71431,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRemoveActionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberRemoveActionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberRemoveActionType_validator = bv.Union(MemberRemoveActionType) + class MemberRemoveExternalIdDetails(bb.Struct): """ Removed the external ID for team member. @@ -69609,13 +71451,12 @@ class MemberRemoveExternalIdDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None): + def __init__(self, previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -69624,20 +71465,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRemoveExternalIdDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberRemoveExternalIdDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberRemoveExternalIdDetails_validator = bv.Struct(MemberRemoveExternalIdDetails) -class MemberRemoveExternalIdType(bb.Struct): +class MemberRemoveExternalIdType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69646,10 +71489,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRemoveExternalIdType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberRemoveExternalIdType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberRemoveExternalIdType_validator = bv.Struct(MemberRemoveExternalIdType) + class MemberRequestsChangePolicyDetails(bb.Struct): """ Changed whether users can find team when not invited. @@ -69662,15 +71509,13 @@ class MemberRequestsChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -69685,20 +71530,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRequestsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberRequestsChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberRequestsChangePolicyDetails_validator = bv.Struct(MemberRequestsChangePolicyDetails) -class MemberRequestsChangePolicyType(bb.Struct): +class MemberRequestsChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69707,10 +71554,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRequestsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberRequestsChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberRequestsChangePolicyType_validator = bv.Struct(MemberRequestsChangePolicyType) + class MemberRequestsPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -69718,7 +71569,7 @@ class MemberRequestsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition auto_accept = None # Attribute is overwritten below the class definition @@ -69734,7 +71585,7 @@ def is_auto_accept(self): :rtype: bool """ - return self._tag == 'auto_accept' + return self._tag == "auto_accept" def is_disabled(self): """ @@ -69742,7 +71593,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_require_approval(self): """ @@ -69750,7 +71601,7 @@ def is_require_approval(self): :rtype: bool """ - return self._tag == 'require_approval' + return self._tag == "require_approval" def is_other(self): """ @@ -69758,13 +71609,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberRequestsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberRequestsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberRequestsPolicy_validator = bv.Union(MemberRequestsPolicy) + class MemberSendInvitePolicy(bb.Union): """ Policy for controlling whether team members can send team invites @@ -69774,7 +71629,7 @@ class MemberSendInvitePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -69790,7 +71645,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_everyone(self): """ @@ -69798,7 +71653,7 @@ def is_everyone(self): :rtype: bool """ - return self._tag == 'everyone' + return self._tag == "everyone" def is_specific_members(self): """ @@ -69806,7 +71661,7 @@ def is_specific_members(self): :rtype: bool """ - return self._tag == 'specific_members' + return self._tag == "specific_members" def is_other(self): """ @@ -69814,13 +71669,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSendInvitePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSendInvitePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSendInvitePolicy_validator = bv.Union(MemberSendInvitePolicy) + class MemberSendInvitePolicyChangedDetails(bb.Struct): """ Changed member send invite policy for team. @@ -69832,15 +71691,13 @@ class MemberSendInvitePolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -69855,20 +71712,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSendInvitePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSendInvitePolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSendInvitePolicyChangedDetails_validator = bv.Struct(MemberSendInvitePolicyChangedDetails) -class MemberSendInvitePolicyChangedType(bb.Struct): +class MemberSendInvitePolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69877,17 +71736,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSendInvitePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSendInvitePolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSendInvitePolicyChangedType_validator = bv.Struct(MemberSendInvitePolicyChangedType) + class MemberSetProfilePhotoDetails(bb.Struct): """ Set team member profile photo. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -69895,20 +71757,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSetProfilePhotoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSetProfilePhotoDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSetProfilePhotoDetails_validator = bv.Struct(MemberSetProfilePhotoDetails) -class MemberSetProfilePhotoType(bb.Struct): +class MemberSetProfilePhotoType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69917,10 +71781,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSetProfilePhotoType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSetProfilePhotoType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSetProfilePhotoType_validator = bv.Struct(MemberSetProfilePhotoType) + class MemberSpaceLimitsAddCustomQuotaDetails(bb.Struct): """ Set custom member space limit. @@ -69930,13 +71798,12 @@ class MemberSpaceLimitsAddCustomQuotaDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', + "_new_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None): + def __init__(self, new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -69945,20 +71812,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsAddCustomQuotaDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsAddCustomQuotaDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsAddCustomQuotaDetails_validator = bv.Struct(MemberSpaceLimitsAddCustomQuotaDetails) -class MemberSpaceLimitsAddCustomQuotaType(bb.Struct): +class MemberSpaceLimitsAddCustomQuotaType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -69967,17 +71836,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsAddCustomQuotaType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsAddCustomQuotaType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsAddCustomQuotaType_validator = bv.Struct(MemberSpaceLimitsAddCustomQuotaType) + class MemberSpaceLimitsAddExceptionDetails(bb.Struct): """ Added members to member space limit exception list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -69985,20 +71857,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsAddExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsAddExceptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsAddExceptionDetails_validator = bv.Struct(MemberSpaceLimitsAddExceptionDetails) -class MemberSpaceLimitsAddExceptionType(bb.Struct): +class MemberSpaceLimitsAddExceptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70007,10 +71881,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsAddExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsAddExceptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsAddExceptionType_validator = bv.Struct(MemberSpaceLimitsAddExceptionType) + class MemberSpaceLimitsChangeCapsTypePolicyDetails(bb.Struct): """ Changed member space limit type for team. @@ -70022,15 +71900,13 @@ class MemberSpaceLimitsChangeCapsTypePolicyDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -70045,20 +71921,24 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangeCapsTypePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsChangeCapsTypePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MemberSpaceLimitsChangeCapsTypePolicyDetails_validator = bv.Struct(MemberSpaceLimitsChangeCapsTypePolicyDetails) -class MemberSpaceLimitsChangeCapsTypePolicyType(bb.Struct): +MemberSpaceLimitsChangeCapsTypePolicyDetails_validator = bv.Struct( + MemberSpaceLimitsChangeCapsTypePolicyDetails +) + +class MemberSpaceLimitsChangeCapsTypePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70067,9 +71947,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangeCapsTypePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsChangeCapsTypePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +MemberSpaceLimitsChangeCapsTypePolicyType_validator = bv.Struct( + MemberSpaceLimitsChangeCapsTypePolicyType +) -MemberSpaceLimitsChangeCapsTypePolicyType_validator = bv.Struct(MemberSpaceLimitsChangeCapsTypePolicyType) class MemberSpaceLimitsChangeCustomQuotaDetails(bb.Struct): """ @@ -70082,15 +71968,13 @@ class MemberSpaceLimitsChangeCustomQuotaDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -70105,20 +71989,24 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangeCustomQuotaDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsChangeCustomQuotaDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MemberSpaceLimitsChangeCustomQuotaDetails_validator = bv.Struct(MemberSpaceLimitsChangeCustomQuotaDetails) -class MemberSpaceLimitsChangeCustomQuotaType(bb.Struct): +MemberSpaceLimitsChangeCustomQuotaDetails_validator = bv.Struct( + MemberSpaceLimitsChangeCustomQuotaDetails +) + +class MemberSpaceLimitsChangeCustomQuotaType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70127,10 +72015,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangeCustomQuotaType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsChangeCustomQuotaType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsChangeCustomQuotaType_validator = bv.Struct(MemberSpaceLimitsChangeCustomQuotaType) + class MemberSpaceLimitsChangePolicyDetails(bb.Struct): """ Changed team default member space limit. @@ -70144,15 +72036,13 @@ class MemberSpaceLimitsChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = False - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -70167,20 +72057,22 @@ def __init__(self, new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsChangePolicyDetails_validator = bv.Struct(MemberSpaceLimitsChangePolicyDetails) -class MemberSpaceLimitsChangePolicyType(bb.Struct): +class MemberSpaceLimitsChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70189,10 +72081,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsChangePolicyType_validator = bv.Struct(MemberSpaceLimitsChangePolicyType) + class MemberSpaceLimitsChangeStatusDetails(bb.Struct): """ Changed space limit status. @@ -70204,15 +72100,13 @@ class MemberSpaceLimitsChangeStatusDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -70227,20 +72121,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsChangeStatusDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsChangeStatusDetails_validator = bv.Struct(MemberSpaceLimitsChangeStatusDetails) -class MemberSpaceLimitsChangeStatusType(bb.Struct): +class MemberSpaceLimitsChangeStatusType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70249,17 +72145,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsChangeStatusType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsChangeStatusType_validator = bv.Struct(MemberSpaceLimitsChangeStatusType) + class MemberSpaceLimitsRemoveCustomQuotaDetails(bb.Struct): """ Removed custom member space limit. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -70267,20 +72166,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsRemoveCustomQuotaDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsRemoveCustomQuotaDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MemberSpaceLimitsRemoveCustomQuotaDetails_validator = bv.Struct(MemberSpaceLimitsRemoveCustomQuotaDetails) -class MemberSpaceLimitsRemoveCustomQuotaType(bb.Struct): +MemberSpaceLimitsRemoveCustomQuotaDetails_validator = bv.Struct( + MemberSpaceLimitsRemoveCustomQuotaDetails +) + +class MemberSpaceLimitsRemoveCustomQuotaType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70289,17 +72192,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsRemoveCustomQuotaType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsRemoveCustomQuotaType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsRemoveCustomQuotaType_validator = bv.Struct(MemberSpaceLimitsRemoveCustomQuotaType) + class MemberSpaceLimitsRemoveExceptionDetails(bb.Struct): """ Removed members from member space limit exception list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -70307,20 +72213,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsRemoveExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsRemoveExceptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MemberSpaceLimitsRemoveExceptionDetails_validator = bv.Struct(MemberSpaceLimitsRemoveExceptionDetails) -class MemberSpaceLimitsRemoveExceptionType(bb.Struct): +MemberSpaceLimitsRemoveExceptionDetails_validator = bv.Struct( + MemberSpaceLimitsRemoveExceptionDetails +) + +class MemberSpaceLimitsRemoveExceptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70329,10 +72239,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSpaceLimitsRemoveExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSpaceLimitsRemoveExceptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSpaceLimitsRemoveExceptionType_validator = bv.Struct(MemberSpaceLimitsRemoveExceptionType) + class MemberStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -70340,7 +72254,7 @@ class MemberStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition active = None # Attribute is overwritten below the class definition @@ -70362,7 +72276,7 @@ def is_active(self): :rtype: bool """ - return self._tag == 'active' + return self._tag == "active" def is_invited(self): """ @@ -70370,7 +72284,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == 'invited' + return self._tag == "invited" def is_moved_to_another_team(self): """ @@ -70378,7 +72292,7 @@ def is_moved_to_another_team(self): :rtype: bool """ - return self._tag == 'moved_to_another_team' + return self._tag == "moved_to_another_team" def is_not_joined(self): """ @@ -70386,7 +72300,7 @@ def is_not_joined(self): :rtype: bool """ - return self._tag == 'not_joined' + return self._tag == "not_joined" def is_removed(self): """ @@ -70394,7 +72308,7 @@ def is_removed(self): :rtype: bool """ - return self._tag == 'removed' + return self._tag == "removed" def is_suspended(self): """ @@ -70402,7 +72316,7 @@ def is_suspended(self): :rtype: bool """ - return self._tag == 'suspended' + return self._tag == "suspended" def is_other(self): """ @@ -70410,13 +72324,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberStatus_validator = bv.Union(MemberStatus) + class MemberSuggestDetails(bb.Struct): """ Suggested person to add to team. @@ -70426,13 +72344,12 @@ class MemberSuggestDetails(bb.Struct): """ __slots__ = [ - '_suggested_members_value', + "_suggested_members_value", ] _has_required_fields = True - def __init__(self, - suggested_members=None): + def __init__(self, suggested_members=None): self._suggested_members_value = bb.NOT_SET if suggested_members is not None: self.suggested_members = suggested_members @@ -70441,20 +72358,22 @@ def __init__(self, suggested_members = bb.Attribute("suggested_members") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSuggestDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSuggestDetails_validator = bv.Struct(MemberSuggestDetails) -class MemberSuggestType(bb.Struct): +class MemberSuggestType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70463,10 +72382,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSuggestType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSuggestType_validator = bv.Struct(MemberSuggestType) + class MemberSuggestionsChangePolicyDetails(bb.Struct): """ Enabled/disabled option for team members to suggest people to add to team. @@ -70479,15 +72402,13 @@ class MemberSuggestionsChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -70502,20 +72423,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestionsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSuggestionsChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSuggestionsChangePolicyDetails_validator = bv.Struct(MemberSuggestionsChangePolicyDetails) -class MemberSuggestionsChangePolicyType(bb.Struct): +class MemberSuggestionsChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70524,10 +72447,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestionsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSuggestionsChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSuggestionsChangePolicyType_validator = bv.Struct(MemberSuggestionsChangePolicyType) + class MemberSuggestionsPolicy(bb.Union): """ Member suggestions policy @@ -70537,7 +72464,7 @@ class MemberSuggestionsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -70551,7 +72478,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -70559,7 +72486,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -70567,20 +72494,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberSuggestionsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberSuggestionsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberSuggestionsPolicy_validator = bv.Union(MemberSuggestionsPolicy) + class MemberTransferAccountContentsDetails(bb.Struct): """ Transferred contents of deleted member account to another member. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -70588,20 +72518,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberTransferAccountContentsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberTransferAccountContentsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberTransferAccountContentsDetails_validator = bv.Struct(MemberTransferAccountContentsDetails) -class MemberTransferAccountContentsType(bb.Struct): +class MemberTransferAccountContentsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70610,10 +72542,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberTransferAccountContentsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberTransferAccountContentsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberTransferAccountContentsType_validator = bv.Struct(MemberTransferAccountContentsType) + class MemberTransferredInternalFields(bb.Struct): """ Internal only - fields for target team computations @@ -70625,15 +72561,13 @@ class MemberTransferredInternalFields(bb.Struct): """ __slots__ = [ - '_source_team_id_value', - '_target_team_id_value', + "_source_team_id_value", + "_target_team_id_value", ] _has_required_fields = True - def __init__(self, - source_team_id=None, - target_team_id=None): + def __init__(self, source_team_id=None, target_team_id=None): self._source_team_id_value = bb.NOT_SET self._target_team_id_value = bb.NOT_SET if source_team_id is not None: @@ -70648,10 +72582,14 @@ def __init__(self, target_team_id = bb.Attribute("target_team_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MemberTransferredInternalFields, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MemberTransferredInternalFields, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MemberTransferredInternalFields_validator = bv.Struct(MemberTransferredInternalFields) + class MicrosoftLoginChangePolicyDetails(bb.Struct): """ Enabled/disabled Microsoft login for team. @@ -70664,15 +72602,13 @@ class MicrosoftLoginChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -70687,20 +72623,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftLoginChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MicrosoftLoginChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MicrosoftLoginChangePolicyDetails_validator = bv.Struct(MicrosoftLoginChangePolicyDetails) -class MicrosoftLoginChangePolicyType(bb.Struct): +class MicrosoftLoginChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70709,10 +72647,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftLoginChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MicrosoftLoginChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MicrosoftLoginChangePolicyType_validator = bv.Struct(MicrosoftLoginChangePolicyType) + class MicrosoftLoginPolicy(bb.Union): """ Microsoft login policy @@ -70722,7 +72664,7 @@ class MicrosoftLoginPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -70738,7 +72680,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -70746,7 +72688,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -70754,7 +72696,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -70762,13 +72704,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftLoginPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MicrosoftLoginPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MicrosoftLoginPolicy_validator = bv.Union(MicrosoftLoginPolicy) + class MicrosoftOfficeAddinChangePolicyDetails(bb.Struct): """ Enabled/disabled Microsoft Office add-in. @@ -70781,15 +72727,13 @@ class MicrosoftOfficeAddinChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -70804,20 +72748,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftOfficeAddinChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MicrosoftOfficeAddinChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -MicrosoftOfficeAddinChangePolicyDetails_validator = bv.Struct(MicrosoftOfficeAddinChangePolicyDetails) -class MicrosoftOfficeAddinChangePolicyType(bb.Struct): +MicrosoftOfficeAddinChangePolicyDetails_validator = bv.Struct( + MicrosoftOfficeAddinChangePolicyDetails +) + +class MicrosoftOfficeAddinChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -70826,10 +72774,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftOfficeAddinChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MicrosoftOfficeAddinChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MicrosoftOfficeAddinChangePolicyType_validator = bv.Struct(MicrosoftOfficeAddinChangePolicyType) + class MicrosoftOfficeAddinPolicy(bb.Union): """ Microsoft Office addin policy @@ -70839,7 +72791,7 @@ class MicrosoftOfficeAddinPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -70853,7 +72805,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -70861,7 +72813,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -70869,13 +72821,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MicrosoftOfficeAddinPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MicrosoftOfficeAddinPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MicrosoftOfficeAddinPolicy_validator = bv.Union(MicrosoftOfficeAddinPolicy) + class MissingDetails(bb.Struct): """ An indication that an error occurred while retrieving the event. Some @@ -70887,13 +72843,12 @@ class MissingDetails(bb.Struct): """ __slots__ = [ - '_source_event_fields_value', + "_source_event_fields_value", ] _has_required_fields = False - def __init__(self, - source_event_fields=None): + def __init__(self, source_event_fields=None): self._source_event_fields_value = bb.NOT_SET if source_event_fields is not None: self.source_event_fields = source_event_fields @@ -70902,10 +72857,14 @@ def __init__(self, source_event_fields = bb.Attribute("source_event_fields", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MissingDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MissingDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MissingDetails_validator = bv.Struct(MissingDetails) + class MobileDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information about linked Dropbox mobile client sessions @@ -70925,29 +72884,29 @@ class MobileDeviceSessionLogInfo(DeviceSessionLogInfo): """ __slots__ = [ - '_session_info_value', - '_device_name_value', - '_client_type_value', - '_client_version_value', - '_os_version_value', - '_last_carrier_value', + "_session_info_value", + "_device_name_value", + "_client_type_value", + "_client_version_value", + "_os_version_value", + "_last_carrier_value", ] _has_required_fields = True - def __init__(self, - device_name=None, - client_type=None, - ip_address=None, - created=None, - updated=None, - session_info=None, - client_version=None, - os_version=None, - last_carrier=None): - super(MobileDeviceSessionLogInfo, self).__init__(ip_address, - created, - updated) + def __init__( + self, + device_name=None, + client_type=None, + ip_address=None, + created=None, + updated=None, + session_info=None, + client_version=None, + os_version=None, + last_carrier=None, + ): + super(MobileDeviceSessionLogInfo, self).__init__(ip_address, created, updated) self._session_info_value = bb.NOT_SET self._device_name_value = bb.NOT_SET self._client_type_value = bb.NOT_SET @@ -70986,29 +72945,35 @@ def __init__(self, last_carrier = bb.Attribute("last_carrier", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MobileDeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MobileDeviceSessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MobileDeviceSessionLogInfo_validator = bv.Struct(MobileDeviceSessionLogInfo) + class MobileSessionLogInfo(SessionLogInfo): """ Mobile session. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False - def __init__(self, - session_id=None): + def __init__(self, session_id=None): super(MobileSessionLogInfo, self).__init__(session_id) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MobileSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MobileSessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MobileSessionLogInfo_validator = bv.Struct(MobileSessionLogInfo) + class MultiTeamIdentityPolicy(bb.Union): """ Multi-team identity policy @@ -71018,7 +72983,7 @@ class MultiTeamIdentityPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -71034,7 +72999,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -71042,7 +73007,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -71050,7 +73015,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -71058,13 +73023,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MultiTeamIdentityPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MultiTeamIdentityPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MultiTeamIdentityPolicy_validator = bv.Union(MultiTeamIdentityPolicy) + class MultiTeamIdentityPolicyChangedDetails(bb.Struct): """ Changed multi-team identity policy for team. @@ -71077,15 +73046,13 @@ class MultiTeamIdentityPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -71100,20 +73067,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MultiTeamIdentityPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MultiTeamIdentityPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MultiTeamIdentityPolicyChangedDetails_validator = bv.Struct(MultiTeamIdentityPolicyChangedDetails) -class MultiTeamIdentityPolicyChangedType(bb.Struct): +class MultiTeamIdentityPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71122,10 +73091,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MultiTeamIdentityPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(MultiTeamIdentityPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + MultiTeamIdentityPolicyChangedType_validator = bv.Struct(MultiTeamIdentityPolicyChangedType) + class NamespaceRelativePathLogInfo(bb.Struct): """ Namespace relative path details. @@ -71139,17 +73112,14 @@ class NamespaceRelativePathLogInfo(bb.Struct): """ __slots__ = [ - '_ns_id_value', - '_relative_path_value', - '_is_shared_namespace_value', + "_ns_id_value", + "_relative_path_value", + "_is_shared_namespace_value", ] _has_required_fields = False - def __init__(self, - ns_id=None, - relative_path=None, - is_shared_namespace=None): + def __init__(self, ns_id=None, relative_path=None, is_shared_namespace=None): self._ns_id_value = bb.NOT_SET self._relative_path_value = bb.NOT_SET self._is_shared_namespace_value = bb.NOT_SET @@ -71170,10 +73140,14 @@ def __init__(self, is_shared_namespace = bb.Attribute("is_shared_namespace", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NamespaceRelativePathLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NamespaceRelativePathLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NamespaceRelativePathLogInfo_validator = bv.Struct(NamespaceRelativePathLogInfo) + class NetworkControlChangePolicyDetails(bb.Struct): """ Enabled/disabled network control. @@ -71186,15 +73160,13 @@ class NetworkControlChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -71209,20 +73181,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NetworkControlChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NetworkControlChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NetworkControlChangePolicyDetails_validator = bv.Struct(NetworkControlChangePolicyDetails) -class NetworkControlChangePolicyType(bb.Struct): +class NetworkControlChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71231,10 +73205,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NetworkControlChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NetworkControlChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NetworkControlChangePolicyType_validator = bv.Struct(NetworkControlChangePolicyType) + class NetworkControlPolicy(bb.Union): """ Network control policy @@ -71244,7 +73222,7 @@ class NetworkControlPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -71258,7 +73236,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -71266,7 +73244,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -71274,13 +73252,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NetworkControlPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NetworkControlPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NetworkControlPolicy_validator = bv.Union(NetworkControlPolicy) + class NoExpirationLinkGenCreateReportDetails(bb.Struct): """ Report created: Links created with no expiration. @@ -71292,15 +73274,13 @@ class NoExpirationLinkGenCreateReportDetails(bb.Struct): """ __slots__ = [ - '_start_date_value', - '_end_date_value', + "_start_date_value", + "_end_date_value", ] _has_required_fields = True - def __init__(self, - start_date=None, - end_date=None): + def __init__(self, start_date=None, end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -71315,20 +73295,22 @@ def __init__(self, end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoExpirationLinkGenCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoExpirationLinkGenCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoExpirationLinkGenCreateReportDetails_validator = bv.Struct(NoExpirationLinkGenCreateReportDetails) -class NoExpirationLinkGenCreateReportType(bb.Struct): +class NoExpirationLinkGenCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71337,10 +73319,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoExpirationLinkGenCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoExpirationLinkGenCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoExpirationLinkGenCreateReportType_validator = bv.Struct(NoExpirationLinkGenCreateReportType) + class NoExpirationLinkGenReportFailedDetails(bb.Struct): """ Couldn't create report: Links created with no expiration. @@ -71350,13 +73336,12 @@ class NoExpirationLinkGenReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -71365,20 +73350,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoExpirationLinkGenReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoExpirationLinkGenReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoExpirationLinkGenReportFailedDetails_validator = bv.Struct(NoExpirationLinkGenReportFailedDetails) -class NoExpirationLinkGenReportFailedType(bb.Struct): +class NoExpirationLinkGenReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71387,10 +73374,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoExpirationLinkGenReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoExpirationLinkGenReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoExpirationLinkGenReportFailedType_validator = bv.Struct(NoExpirationLinkGenReportFailedType) + class NoPasswordLinkGenCreateReportDetails(bb.Struct): """ Report created: Links created without passwords. @@ -71402,15 +73393,13 @@ class NoPasswordLinkGenCreateReportDetails(bb.Struct): """ __slots__ = [ - '_start_date_value', - '_end_date_value', + "_start_date_value", + "_end_date_value", ] _has_required_fields = True - def __init__(self, - start_date=None, - end_date=None): + def __init__(self, start_date=None, end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -71425,20 +73414,22 @@ def __init__(self, end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkGenCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoPasswordLinkGenCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoPasswordLinkGenCreateReportDetails_validator = bv.Struct(NoPasswordLinkGenCreateReportDetails) -class NoPasswordLinkGenCreateReportType(bb.Struct): +class NoPasswordLinkGenCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71447,10 +73438,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkGenCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoPasswordLinkGenCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoPasswordLinkGenCreateReportType_validator = bv.Struct(NoPasswordLinkGenCreateReportType) + class NoPasswordLinkGenReportFailedDetails(bb.Struct): """ Couldn't create report: Links created without passwords. @@ -71460,13 +73455,12 @@ class NoPasswordLinkGenReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -71475,20 +73469,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkGenReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoPasswordLinkGenReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoPasswordLinkGenReportFailedDetails_validator = bv.Struct(NoPasswordLinkGenReportFailedDetails) -class NoPasswordLinkGenReportFailedType(bb.Struct): +class NoPasswordLinkGenReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71497,10 +73493,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkGenReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoPasswordLinkGenReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoPasswordLinkGenReportFailedType_validator = bv.Struct(NoPasswordLinkGenReportFailedType) + class NoPasswordLinkViewCreateReportDetails(bb.Struct): """ Report created: Views of links without passwords. @@ -71512,15 +73512,13 @@ class NoPasswordLinkViewCreateReportDetails(bb.Struct): """ __slots__ = [ - '_start_date_value', - '_end_date_value', + "_start_date_value", + "_end_date_value", ] _has_required_fields = True - def __init__(self, - start_date=None, - end_date=None): + def __init__(self, start_date=None, end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -71535,20 +73533,22 @@ def __init__(self, end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkViewCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoPasswordLinkViewCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoPasswordLinkViewCreateReportDetails_validator = bv.Struct(NoPasswordLinkViewCreateReportDetails) -class NoPasswordLinkViewCreateReportType(bb.Struct): +class NoPasswordLinkViewCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71557,10 +73557,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkViewCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoPasswordLinkViewCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoPasswordLinkViewCreateReportType_validator = bv.Struct(NoPasswordLinkViewCreateReportType) + class NoPasswordLinkViewReportFailedDetails(bb.Struct): """ Couldn't create report: Views of links without passwords. @@ -71570,13 +73574,12 @@ class NoPasswordLinkViewReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -71585,20 +73588,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkViewReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoPasswordLinkViewReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoPasswordLinkViewReportFailedDetails_validator = bv.Struct(NoPasswordLinkViewReportFailedDetails) -class NoPasswordLinkViewReportFailedType(bb.Struct): +class NoPasswordLinkViewReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71607,10 +73612,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoPasswordLinkViewReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoPasswordLinkViewReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoPasswordLinkViewReportFailedType_validator = bv.Struct(NoPasswordLinkViewReportFailedType) + class UserLogInfo(bb.Struct): """ User's logged information. @@ -71624,17 +73633,14 @@ class UserLogInfo(bb.Struct): """ __slots__ = [ - '_account_id_value', - '_display_name_value', - '_email_value', + "_account_id_value", + "_display_name_value", + "_email_value", ] _has_required_fields = False - def __init__(self, - account_id=None, - display_name=None, - email=None): + def __init__(self, account_id=None, display_name=None, email=None): self._account_id_value = bb.NOT_SET self._display_name_value = bb.NOT_SET self._email_value = bb.NOT_SET @@ -71657,31 +73663,31 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(UserLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + UserLogInfo_validator = bv.StructTree(UserLogInfo) + class NonTeamMemberLogInfo(UserLogInfo): """ Non team member's logged information. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False - def __init__(self, - account_id=None, - display_name=None, - email=None): - super(NonTeamMemberLogInfo, self).__init__(account_id, - display_name, - email) + def __init__(self, account_id=None, display_name=None, email=None): + super(NonTeamMemberLogInfo, self).__init__(account_id, display_name, email) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NonTeamMemberLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NonTeamMemberLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NonTeamMemberLogInfo_validator = bv.Struct(NonTeamMemberLogInfo) + class NonTrustedTeamDetails(bb.Struct): """ The email to which the request was sent @@ -71691,13 +73697,12 @@ class NonTrustedTeamDetails(bb.Struct): """ __slots__ = [ - '_team_value', + "_team_value", ] _has_required_fields = True - def __init__(self, - team=None): + def __init__(self, team=None): self._team_value = bb.NOT_SET if team is not None: self.team = team @@ -71706,17 +73711,20 @@ def __init__(self, team = bb.Attribute("team") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NonTrustedTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NonTrustedTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NonTrustedTeamDetails_validator = bv.Struct(NonTrustedTeamDetails) + class NoteAclInviteOnlyDetails(bb.Struct): """ Changed Paper doc to invite-only. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -71724,20 +73732,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclInviteOnlyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteAclInviteOnlyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteAclInviteOnlyDetails_validator = bv.Struct(NoteAclInviteOnlyDetails) -class NoteAclInviteOnlyType(bb.Struct): +class NoteAclInviteOnlyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71746,17 +73756,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclInviteOnlyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteAclInviteOnlyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteAclInviteOnlyType_validator = bv.Struct(NoteAclInviteOnlyType) + class NoteAclLinkDetails(bb.Struct): """ Changed Paper doc to link-accessible. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -71764,20 +73777,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteAclLinkDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteAclLinkDetails_validator = bv.Struct(NoteAclLinkDetails) -class NoteAclLinkType(bb.Struct): +class NoteAclLinkType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71786,17 +73801,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteAclLinkType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteAclLinkType_validator = bv.Struct(NoteAclLinkType) + class NoteAclTeamLinkDetails(bb.Struct): """ Changed Paper doc to link-accessible for team. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -71804,20 +73822,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclTeamLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteAclTeamLinkDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteAclTeamLinkDetails_validator = bv.Struct(NoteAclTeamLinkDetails) -class NoteAclTeamLinkType(bb.Struct): +class NoteAclTeamLinkType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71826,17 +73846,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteAclTeamLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteAclTeamLinkType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteAclTeamLinkType_validator = bv.Struct(NoteAclTeamLinkType) + class NoteShareReceiveDetails(bb.Struct): """ Shared received Paper doc. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -71844,20 +73867,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteShareReceiveDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteShareReceiveDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteShareReceiveDetails_validator = bv.Struct(NoteShareReceiveDetails) -class NoteShareReceiveType(bb.Struct): +class NoteShareReceiveType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71866,17 +73891,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteShareReceiveType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteShareReceiveType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteShareReceiveType_validator = bv.Struct(NoteShareReceiveType) + class NoteSharedDetails(bb.Struct): """ Shared Paper doc. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -71884,20 +73912,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteSharedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteSharedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteSharedDetails_validator = bv.Struct(NoteSharedDetails) -class NoteSharedType(bb.Struct): +class NoteSharedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71906,10 +73936,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NoteSharedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(NoteSharedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + NoteSharedType_validator = bv.Struct(NoteSharedType) + class ObjectLabelAddedDetails(bb.Struct): """ Added a label. @@ -71919,13 +73953,12 @@ class ObjectLabelAddedDetails(bb.Struct): """ __slots__ = [ - '_label_type_value', + "_label_type_value", ] _has_required_fields = True - def __init__(self, - label_type=None): + def __init__(self, label_type=None): self._label_type_value = bb.NOT_SET if label_type is not None: self.label_type = label_type @@ -71934,20 +73967,22 @@ def __init__(self, label_type = bb.Attribute("label_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ObjectLabelAddedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ObjectLabelAddedDetails_validator = bv.Struct(ObjectLabelAddedDetails) -class ObjectLabelAddedType(bb.Struct): +class ObjectLabelAddedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -71956,10 +73991,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ObjectLabelAddedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ObjectLabelAddedType_validator = bv.Struct(ObjectLabelAddedType) + class ObjectLabelRemovedDetails(bb.Struct): """ Removed a label. @@ -71969,13 +74008,12 @@ class ObjectLabelRemovedDetails(bb.Struct): """ __slots__ = [ - '_label_type_value', + "_label_type_value", ] _has_required_fields = True - def __init__(self, - label_type=None): + def __init__(self, label_type=None): self._label_type_value = bb.NOT_SET if label_type is not None: self.label_type = label_type @@ -71984,20 +74022,22 @@ def __init__(self, label_type = bb.Attribute("label_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ObjectLabelRemovedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ObjectLabelRemovedDetails_validator = bv.Struct(ObjectLabelRemovedDetails) -class ObjectLabelRemovedType(bb.Struct): +class ObjectLabelRemovedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72006,10 +74046,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ObjectLabelRemovedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ObjectLabelRemovedType_validator = bv.Struct(ObjectLabelRemovedType) + class ObjectLabelUpdatedValueDetails(bb.Struct): """ Updated a label's value. @@ -72019,13 +74063,12 @@ class ObjectLabelUpdatedValueDetails(bb.Struct): """ __slots__ = [ - '_label_type_value', + "_label_type_value", ] _has_required_fields = True - def __init__(self, - label_type=None): + def __init__(self, label_type=None): self._label_type_value = bb.NOT_SET if label_type is not None: self.label_type = label_type @@ -72034,20 +74077,22 @@ def __init__(self, label_type = bb.Attribute("label_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelUpdatedValueDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ObjectLabelUpdatedValueDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ObjectLabelUpdatedValueDetails_validator = bv.Struct(ObjectLabelUpdatedValueDetails) -class ObjectLabelUpdatedValueType(bb.Struct): +class ObjectLabelUpdatedValueType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72056,17 +74101,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ObjectLabelUpdatedValueType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ObjectLabelUpdatedValueType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ObjectLabelUpdatedValueType_validator = bv.Struct(ObjectLabelUpdatedValueType) + class OpenNoteSharedDetails(bb.Struct): """ Opened shared Paper doc. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -72074,20 +74122,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OpenNoteSharedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OpenNoteSharedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OpenNoteSharedDetails_validator = bv.Struct(OpenNoteSharedDetails) -class OpenNoteSharedType(bb.Struct): +class OpenNoteSharedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72096,10 +74146,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OpenNoteSharedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OpenNoteSharedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OpenNoteSharedType_validator = bv.Struct(OpenNoteSharedType) + class OrganizationDetails(bb.Struct): """ More details about the organization. @@ -72109,13 +74163,12 @@ class OrganizationDetails(bb.Struct): """ __slots__ = [ - '_organization_value', + "_organization_value", ] _has_required_fields = True - def __init__(self, - organization=None): + def __init__(self, organization=None): self._organization_value = bb.NOT_SET if organization is not None: self.organization = organization @@ -72124,10 +74177,14 @@ def __init__(self, organization = bb.Attribute("organization") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OrganizationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OrganizationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OrganizationDetails_validator = bv.Struct(OrganizationDetails) + class OrganizationName(bb.Struct): """ The name of the organization @@ -72137,13 +74194,12 @@ class OrganizationName(bb.Struct): """ __slots__ = [ - '_organization_value', + "_organization_value", ] _has_required_fields = True - def __init__(self, - organization=None): + def __init__(self, organization=None): self._organization_value = bb.NOT_SET if organization is not None: self.organization = organization @@ -72152,17 +74208,20 @@ def __init__(self, organization = bb.Attribute("organization") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OrganizationName, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OrganizationName, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OrganizationName_validator = bv.Struct(OrganizationName) + class OrganizeFolderWithTidyDetails(bb.Struct): """ Organized a folder with multi-file organize. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -72170,20 +74229,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OrganizeFolderWithTidyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OrganizeFolderWithTidyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OrganizeFolderWithTidyDetails_validator = bv.Struct(OrganizeFolderWithTidyDetails) -class OrganizeFolderWithTidyType(bb.Struct): +class OrganizeFolderWithTidyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72192,10 +74253,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OrganizeFolderWithTidyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OrganizeFolderWithTidyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OrganizeFolderWithTidyType_validator = bv.Struct(OrganizeFolderWithTidyType) + class OriginLogInfo(bb.Struct): """ The origin from which the actor performed the action. @@ -72207,15 +74272,13 @@ class OriginLogInfo(bb.Struct): """ __slots__ = [ - '_geo_location_value', - '_access_method_value', + "_geo_location_value", + "_access_method_value", ] _has_required_fields = True - def __init__(self, - access_method=None, - geo_location=None): + def __init__(self, access_method=None, geo_location=None): self._geo_location_value = bb.NOT_SET self._access_method_value = bb.NOT_SET if geo_location is not None: @@ -72230,10 +74293,14 @@ def __init__(self, access_method = bb.Attribute("access_method", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OriginLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OriginLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OriginLogInfo_validator = bv.Struct(OriginLogInfo) + class OutdatedLinkViewCreateReportDetails(bb.Struct): """ Report created: Views of old links. @@ -72245,15 +74312,13 @@ class OutdatedLinkViewCreateReportDetails(bb.Struct): """ __slots__ = [ - '_start_date_value', - '_end_date_value', + "_start_date_value", + "_end_date_value", ] _has_required_fields = True - def __init__(self, - start_date=None, - end_date=None): + def __init__(self, start_date=None, end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -72268,20 +74333,22 @@ def __init__(self, end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OutdatedLinkViewCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OutdatedLinkViewCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OutdatedLinkViewCreateReportDetails_validator = bv.Struct(OutdatedLinkViewCreateReportDetails) -class OutdatedLinkViewCreateReportType(bb.Struct): +class OutdatedLinkViewCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72290,10 +74357,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OutdatedLinkViewCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OutdatedLinkViewCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OutdatedLinkViewCreateReportType_validator = bv.Struct(OutdatedLinkViewCreateReportType) + class OutdatedLinkViewReportFailedDetails(bb.Struct): """ Couldn't create report: Views of old links. @@ -72303,13 +74374,12 @@ class OutdatedLinkViewReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -72318,20 +74388,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OutdatedLinkViewReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OutdatedLinkViewReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OutdatedLinkViewReportFailedDetails_validator = bv.Struct(OutdatedLinkViewReportFailedDetails) -class OutdatedLinkViewReportFailedType(bb.Struct): +class OutdatedLinkViewReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72340,10 +74412,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OutdatedLinkViewReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OutdatedLinkViewReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OutdatedLinkViewReportFailedType_validator = bv.Struct(OutdatedLinkViewReportFailedType) + class PaperAccessType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -72351,7 +74427,7 @@ class PaperAccessType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition commenter = None # Attribute is overwritten below the class definition @@ -72367,7 +74443,7 @@ def is_commenter(self): :rtype: bool """ - return self._tag == 'commenter' + return self._tag == "commenter" def is_editor(self): """ @@ -72375,7 +74451,7 @@ def is_editor(self): :rtype: bool """ - return self._tag == 'editor' + return self._tag == "editor" def is_viewer(self): """ @@ -72383,7 +74459,7 @@ def is_viewer(self): :rtype: bool """ - return self._tag == 'viewer' + return self._tag == "viewer" def is_other(self): """ @@ -72391,20 +74467,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperAccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperAccessType_validator = bv.Union(PaperAccessType) + class PaperAdminExportStartDetails(bb.Struct): """ Exported all team Paper docs. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -72412,20 +74491,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAdminExportStartDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperAdminExportStartDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperAdminExportStartDetails_validator = bv.Struct(PaperAdminExportStartDetails) -class PaperAdminExportStartType(bb.Struct): +class PaperAdminExportStartType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72434,10 +74515,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAdminExportStartType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperAdminExportStartType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperAdminExportStartType_validator = bv.Struct(PaperAdminExportStartType) + class PaperChangeDeploymentPolicyDetails(bb.Struct): """ Changed whether Dropbox Paper, when enabled, is deployed to all members or @@ -72451,15 +74536,13 @@ class PaperChangeDeploymentPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -72474,20 +74557,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeDeploymentPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperChangeDeploymentPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperChangeDeploymentPolicyDetails_validator = bv.Struct(PaperChangeDeploymentPolicyDetails) -class PaperChangeDeploymentPolicyType(bb.Struct): +class PaperChangeDeploymentPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72496,10 +74581,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeDeploymentPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperChangeDeploymentPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperChangeDeploymentPolicyType_validator = bv.Struct(PaperChangeDeploymentPolicyType) + class PaperChangeMemberLinkPolicyDetails(bb.Struct): """ Changed whether non-members can view Paper docs with link. @@ -72509,13 +74598,12 @@ class PaperChangeMemberLinkPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', + "_new_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None): + def __init__(self, new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -72524,20 +74612,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeMemberLinkPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperChangeMemberLinkPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperChangeMemberLinkPolicyDetails_validator = bv.Struct(PaperChangeMemberLinkPolicyDetails) -class PaperChangeMemberLinkPolicyType(bb.Struct): +class PaperChangeMemberLinkPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72546,10 +74636,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeMemberLinkPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperChangeMemberLinkPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperChangeMemberLinkPolicyType_validator = bv.Struct(PaperChangeMemberLinkPolicyType) + class PaperChangeMemberPolicyDetails(bb.Struct): """ Changed whether members can share Paper docs outside team, and if docs are @@ -72563,15 +74657,13 @@ class PaperChangeMemberPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -72586,20 +74678,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeMemberPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperChangeMemberPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperChangeMemberPolicyDetails_validator = bv.Struct(PaperChangeMemberPolicyDetails) -class PaperChangeMemberPolicyType(bb.Struct): +class PaperChangeMemberPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72608,10 +74702,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangeMemberPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperChangeMemberPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperChangeMemberPolicyType_validator = bv.Struct(PaperChangeMemberPolicyType) + class PaperChangePolicyDetails(bb.Struct): """ Enabled/disabled Dropbox Paper for team. @@ -72624,15 +74722,13 @@ class PaperChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -72647,20 +74743,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperChangePolicyDetails_validator = bv.Struct(PaperChangePolicyDetails) -class PaperChangePolicyType(bb.Struct): +class PaperChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72669,10 +74767,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperChangePolicyType_validator = bv.Struct(PaperChangePolicyType) + class PaperContentAddMemberDetails(bb.Struct): """ Added users and/or groups to Paper doc/folder. @@ -72682,13 +74784,12 @@ class PaperContentAddMemberDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -72697,20 +74798,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentAddMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentAddMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentAddMemberDetails_validator = bv.Struct(PaperContentAddMemberDetails) -class PaperContentAddMemberType(bb.Struct): +class PaperContentAddMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72719,10 +74822,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentAddMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentAddMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentAddMemberType_validator = bv.Struct(PaperContentAddMemberType) + class PaperContentAddToFolderDetails(bb.Struct): """ Added Paper doc/folder to folder. @@ -72736,17 +74843,14 @@ class PaperContentAddToFolderDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_target_asset_index_value', - '_parent_asset_index_value', + "_event_uuid_value", + "_target_asset_index_value", + "_parent_asset_index_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - target_asset_index=None, - parent_asset_index=None): + def __init__(self, event_uuid=None, target_asset_index=None, parent_asset_index=None): self._event_uuid_value = bb.NOT_SET self._target_asset_index_value = bb.NOT_SET self._parent_asset_index_value = bb.NOT_SET @@ -72767,20 +74871,22 @@ def __init__(self, parent_asset_index = bb.Attribute("parent_asset_index") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentAddToFolderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentAddToFolderDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentAddToFolderDetails_validator = bv.Struct(PaperContentAddToFolderDetails) -class PaperContentAddToFolderType(bb.Struct): +class PaperContentAddToFolderType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72789,10 +74895,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentAddToFolderType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentAddToFolderType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentAddToFolderType_validator = bv.Struct(PaperContentAddToFolderType) + class PaperContentArchiveDetails(bb.Struct): """ Archived Paper doc/folder. @@ -72802,13 +74912,12 @@ class PaperContentArchiveDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -72817,20 +74926,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentArchiveDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentArchiveDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentArchiveDetails_validator = bv.Struct(PaperContentArchiveDetails) -class PaperContentArchiveType(bb.Struct): +class PaperContentArchiveType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72839,10 +74950,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentArchiveType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentArchiveType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentArchiveType_validator = bv.Struct(PaperContentArchiveType) + class PaperContentCreateDetails(bb.Struct): """ Created Paper doc/folder. @@ -72852,13 +74967,12 @@ class PaperContentCreateDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -72867,20 +74981,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentCreateDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentCreateDetails_validator = bv.Struct(PaperContentCreateDetails) -class PaperContentCreateType(bb.Struct): +class PaperContentCreateType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72889,10 +75005,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentCreateType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentCreateType_validator = bv.Struct(PaperContentCreateType) + class PaperContentPermanentlyDeleteDetails(bb.Struct): """ Permanently deleted Paper doc/folder. @@ -72902,13 +75022,12 @@ class PaperContentPermanentlyDeleteDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -72917,20 +75036,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentPermanentlyDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentPermanentlyDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentPermanentlyDeleteDetails_validator = bv.Struct(PaperContentPermanentlyDeleteDetails) -class PaperContentPermanentlyDeleteType(bb.Struct): +class PaperContentPermanentlyDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -72939,10 +75060,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentPermanentlyDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentPermanentlyDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentPermanentlyDeleteType_validator = bv.Struct(PaperContentPermanentlyDeleteType) + class PaperContentRemoveFromFolderDetails(bb.Struct): """ Removed Paper doc/folder from folder. @@ -72956,17 +75081,14 @@ class PaperContentRemoveFromFolderDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_target_asset_index_value', - '_parent_asset_index_value', + "_event_uuid_value", + "_target_asset_index_value", + "_parent_asset_index_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - target_asset_index=None, - parent_asset_index=None): + def __init__(self, event_uuid=None, target_asset_index=None, parent_asset_index=None): self._event_uuid_value = bb.NOT_SET self._target_asset_index_value = bb.NOT_SET self._parent_asset_index_value = bb.NOT_SET @@ -72987,20 +75109,22 @@ def __init__(self, parent_asset_index = bb.Attribute("parent_asset_index", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRemoveFromFolderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentRemoveFromFolderDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentRemoveFromFolderDetails_validator = bv.Struct(PaperContentRemoveFromFolderDetails) -class PaperContentRemoveFromFolderType(bb.Struct): +class PaperContentRemoveFromFolderType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73009,10 +75133,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRemoveFromFolderType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentRemoveFromFolderType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentRemoveFromFolderType_validator = bv.Struct(PaperContentRemoveFromFolderType) + class PaperContentRemoveMemberDetails(bb.Struct): """ Removed users and/or groups from Paper doc/folder. @@ -73022,13 +75150,12 @@ class PaperContentRemoveMemberDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -73037,20 +75164,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRemoveMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentRemoveMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentRemoveMemberDetails_validator = bv.Struct(PaperContentRemoveMemberDetails) -class PaperContentRemoveMemberType(bb.Struct): +class PaperContentRemoveMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73059,10 +75188,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRemoveMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentRemoveMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentRemoveMemberType_validator = bv.Struct(PaperContentRemoveMemberType) + class PaperContentRenameDetails(bb.Struct): """ Renamed Paper doc/folder. @@ -73072,13 +75205,12 @@ class PaperContentRenameDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -73087,20 +75219,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRenameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentRenameDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentRenameDetails_validator = bv.Struct(PaperContentRenameDetails) -class PaperContentRenameType(bb.Struct): +class PaperContentRenameType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73109,10 +75243,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRenameType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentRenameType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentRenameType_validator = bv.Struct(PaperContentRenameType) + class PaperContentRestoreDetails(bb.Struct): """ Restored archived Paper doc/folder. @@ -73122,13 +75260,12 @@ class PaperContentRestoreDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -73137,20 +75274,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRestoreDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentRestoreDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentRestoreDetails_validator = bv.Struct(PaperContentRestoreDetails) -class PaperContentRestoreType(bb.Struct): +class PaperContentRestoreType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73159,10 +75298,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperContentRestoreType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperContentRestoreType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperContentRestoreType_validator = bv.Struct(PaperContentRestoreType) + class PaperDefaultFolderPolicy(bb.Union): """ Policy to set default access for newly created Paper folders. @@ -73172,7 +75315,7 @@ class PaperDefaultFolderPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition everyone_in_team = None # Attribute is overwritten below the class definition @@ -73186,7 +75329,7 @@ def is_everyone_in_team(self): :rtype: bool """ - return self._tag == 'everyone_in_team' + return self._tag == "everyone_in_team" def is_invite_only(self): """ @@ -73194,7 +75337,7 @@ def is_invite_only(self): :rtype: bool """ - return self._tag == 'invite_only' + return self._tag == "invite_only" def is_other(self): """ @@ -73202,13 +75345,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDefaultFolderPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDefaultFolderPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDefaultFolderPolicy_validator = bv.Union(PaperDefaultFolderPolicy) + class PaperDefaultFolderPolicyChangedDetails(bb.Struct): """ Changed Paper Default Folder Policy setting for team. @@ -73220,15 +75367,13 @@ class PaperDefaultFolderPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -73243,20 +75388,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDefaultFolderPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDefaultFolderPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDefaultFolderPolicyChangedDetails_validator = bv.Struct(PaperDefaultFolderPolicyChangedDetails) -class PaperDefaultFolderPolicyChangedType(bb.Struct): +class PaperDefaultFolderPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73265,10 +75412,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDefaultFolderPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDefaultFolderPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDefaultFolderPolicyChangedType_validator = bv.Struct(PaperDefaultFolderPolicyChangedType) + class PaperDesktopPolicy(bb.Union): """ Policy for controlling if team members can use Paper Desktop @@ -73278,7 +75429,7 @@ class PaperDesktopPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -73292,7 +75443,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -73300,7 +75451,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -73308,13 +75459,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDesktopPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDesktopPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDesktopPolicy_validator = bv.Union(PaperDesktopPolicy) + class PaperDesktopPolicyChangedDetails(bb.Struct): """ Enabled/disabled Paper Desktop for team. @@ -73326,15 +75481,13 @@ class PaperDesktopPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -73349,20 +75502,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDesktopPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDesktopPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDesktopPolicyChangedDetails_validator = bv.Struct(PaperDesktopPolicyChangedDetails) -class PaperDesktopPolicyChangedType(bb.Struct): +class PaperDesktopPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73371,10 +75526,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDesktopPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDesktopPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDesktopPolicyChangedType_validator = bv.Struct(PaperDesktopPolicyChangedType) + class PaperDocAddCommentDetails(bb.Struct): """ Added Paper doc comment. @@ -73386,15 +75545,13 @@ class PaperDocAddCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -73409,20 +75566,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocAddCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocAddCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocAddCommentDetails_validator = bv.Struct(PaperDocAddCommentDetails) -class PaperDocAddCommentType(bb.Struct): +class PaperDocAddCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73431,10 +75590,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocAddCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocAddCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocAddCommentType_validator = bv.Struct(PaperDocAddCommentType) + class PaperDocChangeMemberRoleDetails(bb.Struct): """ Changed member permissions for Paper doc. @@ -73446,15 +75609,13 @@ class PaperDocChangeMemberRoleDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_access_type_value', + "_event_uuid_value", + "_access_type_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - access_type=None): + def __init__(self, event_uuid=None, access_type=None): self._event_uuid_value = bb.NOT_SET self._access_type_value = bb.NOT_SET if event_uuid is not None: @@ -73469,20 +75630,22 @@ def __init__(self, access_type = bb.Attribute("access_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeMemberRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocChangeMemberRoleDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocChangeMemberRoleDetails_validator = bv.Struct(PaperDocChangeMemberRoleDetails) -class PaperDocChangeMemberRoleType(bb.Struct): +class PaperDocChangeMemberRoleType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73491,10 +75654,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeMemberRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocChangeMemberRoleType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocChangeMemberRoleType_validator = bv.Struct(PaperDocChangeMemberRoleType) + class PaperDocChangeSharingPolicyDetails(bb.Struct): """ Changed sharing setting for Paper doc. @@ -73508,17 +75675,14 @@ class PaperDocChangeSharingPolicyDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_public_sharing_policy_value', - '_team_sharing_policy_value', + "_event_uuid_value", + "_public_sharing_policy_value", + "_team_sharing_policy_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - public_sharing_policy=None, - team_sharing_policy=None): + def __init__(self, event_uuid=None, public_sharing_policy=None, team_sharing_policy=None): self._event_uuid_value = bb.NOT_SET self._public_sharing_policy_value = bb.NOT_SET self._team_sharing_policy_value = bb.NOT_SET @@ -73539,20 +75703,22 @@ def __init__(self, team_sharing_policy = bb.Attribute("team_sharing_policy", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeSharingPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocChangeSharingPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocChangeSharingPolicyDetails_validator = bv.Struct(PaperDocChangeSharingPolicyDetails) -class PaperDocChangeSharingPolicyType(bb.Struct): +class PaperDocChangeSharingPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73561,10 +75727,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeSharingPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocChangeSharingPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocChangeSharingPolicyType_validator = bv.Struct(PaperDocChangeSharingPolicyType) + class PaperDocChangeSubscriptionDetails(bb.Struct): """ Followed/unfollowed Paper doc. @@ -73579,17 +75749,19 @@ class PaperDocChangeSubscriptionDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_new_subscription_level_value', - '_previous_subscription_level_value', + "_event_uuid_value", + "_new_subscription_level_value", + "_previous_subscription_level_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - new_subscription_level=None, - previous_subscription_level=None): + def __init__( + self, + event_uuid=None, + new_subscription_level=None, + previous_subscription_level=None, + ): self._event_uuid_value = bb.NOT_SET self._new_subscription_level_value = bb.NOT_SET self._previous_subscription_level_value = bb.NOT_SET @@ -73610,20 +75782,22 @@ def __init__(self, previous_subscription_level = bb.Attribute("previous_subscription_level", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeSubscriptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocChangeSubscriptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocChangeSubscriptionDetails_validator = bv.Struct(PaperDocChangeSubscriptionDetails) -class PaperDocChangeSubscriptionType(bb.Struct): +class PaperDocChangeSubscriptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73632,10 +75806,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocChangeSubscriptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocChangeSubscriptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocChangeSubscriptionType_validator = bv.Struct(PaperDocChangeSubscriptionType) + class PaperDocDeleteCommentDetails(bb.Struct): """ Deleted Paper doc comment. @@ -73647,15 +75825,13 @@ class PaperDocDeleteCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -73670,20 +75846,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDeleteCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocDeleteCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocDeleteCommentDetails_validator = bv.Struct(PaperDocDeleteCommentDetails) -class PaperDocDeleteCommentType(bb.Struct): +class PaperDocDeleteCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73692,10 +75870,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDeleteCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocDeleteCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocDeleteCommentType_validator = bv.Struct(PaperDocDeleteCommentType) + class PaperDocDeletedDetails(bb.Struct): """ Archived Paper doc. @@ -73705,13 +75887,12 @@ class PaperDocDeletedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -73720,20 +75901,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocDeletedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocDeletedDetails_validator = bv.Struct(PaperDocDeletedDetails) -class PaperDocDeletedType(bb.Struct): +class PaperDocDeletedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73742,10 +75925,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocDeletedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocDeletedType_validator = bv.Struct(PaperDocDeletedType) + class PaperDocDownloadDetails(bb.Struct): """ Downloaded Paper doc in specific format. @@ -73757,15 +75944,13 @@ class PaperDocDownloadDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_export_file_format_value', + "_event_uuid_value", + "_export_file_format_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - export_file_format=None): + def __init__(self, event_uuid=None, export_file_format=None): self._event_uuid_value = bb.NOT_SET self._export_file_format_value = bb.NOT_SET if event_uuid is not None: @@ -73780,20 +75965,22 @@ def __init__(self, export_file_format = bb.Attribute("export_file_format", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocDownloadDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocDownloadDetails_validator = bv.Struct(PaperDocDownloadDetails) -class PaperDocDownloadType(bb.Struct): +class PaperDocDownloadType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73802,10 +75989,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocDownloadType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocDownloadType_validator = bv.Struct(PaperDocDownloadType) + class PaperDocEditCommentDetails(bb.Struct): """ Edited Paper doc comment. @@ -73817,15 +76008,13 @@ class PaperDocEditCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -73840,20 +76029,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocEditCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocEditCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocEditCommentDetails_validator = bv.Struct(PaperDocEditCommentDetails) -class PaperDocEditCommentType(bb.Struct): +class PaperDocEditCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73862,10 +76053,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocEditCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocEditCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocEditCommentType_validator = bv.Struct(PaperDocEditCommentType) + class PaperDocEditDetails(bb.Struct): """ Edited Paper doc. @@ -73875,13 +76070,12 @@ class PaperDocEditDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -73890,20 +76084,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocEditDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocEditDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocEditDetails_validator = bv.Struct(PaperDocEditDetails) -class PaperDocEditType(bb.Struct): +class PaperDocEditType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73912,10 +76108,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocEditType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocEditType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocEditType_validator = bv.Struct(PaperDocEditType) + class PaperDocFollowedDetails(bb.Struct): """ Followed Paper doc. @@ -73925,13 +76125,12 @@ class PaperDocFollowedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -73940,20 +76139,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocFollowedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocFollowedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocFollowedDetails_validator = bv.Struct(PaperDocFollowedDetails) -class PaperDocFollowedType(bb.Struct): +class PaperDocFollowedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -73962,10 +76163,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocFollowedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocFollowedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocFollowedType_validator = bv.Struct(PaperDocFollowedType) + class PaperDocMentionDetails(bb.Struct): """ Mentioned user in Paper doc. @@ -73975,13 +76180,12 @@ class PaperDocMentionDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -73990,20 +76194,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocMentionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocMentionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocMentionDetails_validator = bv.Struct(PaperDocMentionDetails) -class PaperDocMentionType(bb.Struct): +class PaperDocMentionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74012,10 +76218,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocMentionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocMentionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocMentionType_validator = bv.Struct(PaperDocMentionType) + class PaperDocOwnershipChangedDetails(bb.Struct): """ Transferred ownership of Paper doc. @@ -74029,17 +76239,14 @@ class PaperDocOwnershipChangedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_old_owner_user_id_value', - '_new_owner_user_id_value', + "_event_uuid_value", + "_old_owner_user_id_value", + "_new_owner_user_id_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - new_owner_user_id=None, - old_owner_user_id=None): + def __init__(self, event_uuid=None, new_owner_user_id=None, old_owner_user_id=None): self._event_uuid_value = bb.NOT_SET self._old_owner_user_id_value = bb.NOT_SET self._new_owner_user_id_value = bb.NOT_SET @@ -74060,20 +76267,22 @@ def __init__(self, new_owner_user_id = bb.Attribute("new_owner_user_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocOwnershipChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocOwnershipChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocOwnershipChangedDetails_validator = bv.Struct(PaperDocOwnershipChangedDetails) -class PaperDocOwnershipChangedType(bb.Struct): +class PaperDocOwnershipChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74082,10 +76291,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocOwnershipChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocOwnershipChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocOwnershipChangedType_validator = bv.Struct(PaperDocOwnershipChangedType) + class PaperDocRequestAccessDetails(bb.Struct): """ Requested access to Paper doc. @@ -74095,13 +76308,12 @@ class PaperDocRequestAccessDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74110,20 +76322,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocRequestAccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocRequestAccessDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocRequestAccessDetails_validator = bv.Struct(PaperDocRequestAccessDetails) -class PaperDocRequestAccessType(bb.Struct): +class PaperDocRequestAccessType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74132,10 +76346,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocRequestAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocRequestAccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocRequestAccessType_validator = bv.Struct(PaperDocRequestAccessType) + class PaperDocResolveCommentDetails(bb.Struct): """ Resolved Paper doc comment. @@ -74147,15 +76365,13 @@ class PaperDocResolveCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -74170,20 +76386,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocResolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocResolveCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocResolveCommentDetails_validator = bv.Struct(PaperDocResolveCommentDetails) -class PaperDocResolveCommentType(bb.Struct): +class PaperDocResolveCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74192,10 +76410,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocResolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocResolveCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocResolveCommentType_validator = bv.Struct(PaperDocResolveCommentType) + class PaperDocRevertDetails(bb.Struct): """ Restored Paper doc to previous version. @@ -74205,13 +76427,12 @@ class PaperDocRevertDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74220,20 +76441,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocRevertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocRevertDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocRevertDetails_validator = bv.Struct(PaperDocRevertDetails) -class PaperDocRevertType(bb.Struct): +class PaperDocRevertType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74242,10 +76465,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocRevertType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocRevertType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocRevertType_validator = bv.Struct(PaperDocRevertType) + class PaperDocSlackShareDetails(bb.Struct): """ Shared Paper doc via Slack. @@ -74255,13 +76482,12 @@ class PaperDocSlackShareDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74270,20 +76496,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocSlackShareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocSlackShareDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocSlackShareDetails_validator = bv.Struct(PaperDocSlackShareDetails) -class PaperDocSlackShareType(bb.Struct): +class PaperDocSlackShareType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74292,10 +76520,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocSlackShareType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocSlackShareType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocSlackShareType_validator = bv.Struct(PaperDocSlackShareType) + class PaperDocTeamInviteDetails(bb.Struct): """ Shared Paper doc with users and/or groups. @@ -74305,13 +76537,12 @@ class PaperDocTeamInviteDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74320,20 +76551,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocTeamInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocTeamInviteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocTeamInviteDetails_validator = bv.Struct(PaperDocTeamInviteDetails) -class PaperDocTeamInviteType(bb.Struct): +class PaperDocTeamInviteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74342,10 +76575,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocTeamInviteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocTeamInviteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocTeamInviteType_validator = bv.Struct(PaperDocTeamInviteType) + class PaperDocTrashedDetails(bb.Struct): """ Deleted Paper doc. @@ -74355,13 +76592,12 @@ class PaperDocTrashedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74370,20 +76606,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocTrashedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocTrashedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocTrashedDetails_validator = bv.Struct(PaperDocTrashedDetails) -class PaperDocTrashedType(bb.Struct): +class PaperDocTrashedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74392,10 +76630,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocTrashedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocTrashedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocTrashedType_validator = bv.Struct(PaperDocTrashedType) + class PaperDocUnresolveCommentDetails(bb.Struct): """ Unresolved Paper doc comment. @@ -74407,15 +76649,13 @@ class PaperDocUnresolveCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -74430,20 +76670,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUnresolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocUnresolveCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocUnresolveCommentDetails_validator = bv.Struct(PaperDocUnresolveCommentDetails) -class PaperDocUnresolveCommentType(bb.Struct): +class PaperDocUnresolveCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74452,10 +76694,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUnresolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocUnresolveCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocUnresolveCommentType_validator = bv.Struct(PaperDocUnresolveCommentType) + class PaperDocUntrashedDetails(bb.Struct): """ Restored Paper doc. @@ -74465,13 +76711,12 @@ class PaperDocUntrashedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74480,20 +76725,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUntrashedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocUntrashedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocUntrashedDetails_validator = bv.Struct(PaperDocUntrashedDetails) -class PaperDocUntrashedType(bb.Struct): +class PaperDocUntrashedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74502,10 +76749,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocUntrashedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocUntrashedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocUntrashedType_validator = bv.Struct(PaperDocUntrashedType) + class PaperDocViewDetails(bb.Struct): """ Viewed Paper doc. @@ -74515,13 +76766,12 @@ class PaperDocViewDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74530,20 +76780,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocViewDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocViewDetails_validator = bv.Struct(PaperDocViewDetails) -class PaperDocViewType(bb.Struct): +class PaperDocViewType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74552,10 +76804,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocViewType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocViewType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocViewType_validator = bv.Struct(PaperDocViewType) + class PaperDocumentLogInfo(bb.Struct): """ Paper document's logged information. @@ -74567,15 +76823,13 @@ class PaperDocumentLogInfo(bb.Struct): """ __slots__ = [ - '_doc_id_value', - '_doc_title_value', + "_doc_id_value", + "_doc_title_value", ] _has_required_fields = True - def __init__(self, - doc_id=None, - doc_title=None): + def __init__(self, doc_id=None, doc_title=None): self._doc_id_value = bb.NOT_SET self._doc_title_value = bb.NOT_SET if doc_id is not None: @@ -74590,10 +76844,14 @@ def __init__(self, doc_title = bb.Attribute("doc_title") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocumentLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDocumentLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDocumentLogInfo_validator = bv.Struct(PaperDocumentLogInfo) + class PaperDownloadFormat(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -74601,7 +76859,7 @@ class PaperDownloadFormat(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition docx = None # Attribute is overwritten below the class definition @@ -74619,7 +76877,7 @@ def is_docx(self): :rtype: bool """ - return self._tag == 'docx' + return self._tag == "docx" def is_html(self): """ @@ -74627,7 +76885,7 @@ def is_html(self): :rtype: bool """ - return self._tag == 'html' + return self._tag == "html" def is_markdown(self): """ @@ -74635,7 +76893,7 @@ def is_markdown(self): :rtype: bool """ - return self._tag == 'markdown' + return self._tag == "markdown" def is_pdf(self): """ @@ -74643,7 +76901,7 @@ def is_pdf(self): :rtype: bool """ - return self._tag == 'pdf' + return self._tag == "pdf" def is_other(self): """ @@ -74651,20 +76909,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDownloadFormat, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDownloadFormat, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDownloadFormat_validator = bv.Union(PaperDownloadFormat) + class PaperEnabledUsersGroupAdditionDetails(bb.Struct): """ Added users to Paper-enabled users list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -74672,20 +76933,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledUsersGroupAdditionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperEnabledUsersGroupAdditionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperEnabledUsersGroupAdditionDetails_validator = bv.Struct(PaperEnabledUsersGroupAdditionDetails) -class PaperEnabledUsersGroupAdditionType(bb.Struct): +class PaperEnabledUsersGroupAdditionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74694,17 +76957,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledUsersGroupAdditionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperEnabledUsersGroupAdditionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperEnabledUsersGroupAdditionType_validator = bv.Struct(PaperEnabledUsersGroupAdditionType) + class PaperEnabledUsersGroupRemovalDetails(bb.Struct): """ Removed users from Paper-enabled users list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -74712,20 +76978,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledUsersGroupRemovalDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperEnabledUsersGroupRemovalDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperEnabledUsersGroupRemovalDetails_validator = bv.Struct(PaperEnabledUsersGroupRemovalDetails) -class PaperEnabledUsersGroupRemovalType(bb.Struct): +class PaperEnabledUsersGroupRemovalType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74734,10 +77002,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledUsersGroupRemovalType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperEnabledUsersGroupRemovalType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperEnabledUsersGroupRemovalType_validator = bv.Struct(PaperEnabledUsersGroupRemovalType) + class PaperExternalViewAllowDetails(bb.Struct): """ Changed Paper external sharing setting to anyone. @@ -74747,13 +77019,12 @@ class PaperExternalViewAllowDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74762,20 +77033,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewAllowDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperExternalViewAllowDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperExternalViewAllowDetails_validator = bv.Struct(PaperExternalViewAllowDetails) -class PaperExternalViewAllowType(bb.Struct): +class PaperExternalViewAllowType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74784,10 +77057,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewAllowType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperExternalViewAllowType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperExternalViewAllowType_validator = bv.Struct(PaperExternalViewAllowType) + class PaperExternalViewDefaultTeamDetails(bb.Struct): """ Changed Paper external sharing setting to default team. @@ -74797,13 +77074,12 @@ class PaperExternalViewDefaultTeamDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74812,20 +77088,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewDefaultTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperExternalViewDefaultTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperExternalViewDefaultTeamDetails_validator = bv.Struct(PaperExternalViewDefaultTeamDetails) -class PaperExternalViewDefaultTeamType(bb.Struct): +class PaperExternalViewDefaultTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74834,10 +77112,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewDefaultTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperExternalViewDefaultTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperExternalViewDefaultTeamType_validator = bv.Struct(PaperExternalViewDefaultTeamType) + class PaperExternalViewForbidDetails(bb.Struct): """ Changed Paper external sharing setting to team-only. @@ -74847,13 +77129,12 @@ class PaperExternalViewForbidDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74862,20 +77143,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewForbidDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperExternalViewForbidDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperExternalViewForbidDetails_validator = bv.Struct(PaperExternalViewForbidDetails) -class PaperExternalViewForbidType(bb.Struct): +class PaperExternalViewForbidType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74884,10 +77167,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperExternalViewForbidType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperExternalViewForbidType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperExternalViewForbidType_validator = bv.Struct(PaperExternalViewForbidType) + class PaperFolderChangeSubscriptionDetails(bb.Struct): """ Followed/unfollowed Paper folder. @@ -74902,17 +77189,19 @@ class PaperFolderChangeSubscriptionDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_new_subscription_level_value', - '_previous_subscription_level_value', + "_event_uuid_value", + "_new_subscription_level_value", + "_previous_subscription_level_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - new_subscription_level=None, - previous_subscription_level=None): + def __init__( + self, + event_uuid=None, + new_subscription_level=None, + previous_subscription_level=None, + ): self._event_uuid_value = bb.NOT_SET self._new_subscription_level_value = bb.NOT_SET self._previous_subscription_level_value = bb.NOT_SET @@ -74933,20 +77222,22 @@ def __init__(self, previous_subscription_level = bb.Attribute("previous_subscription_level", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderChangeSubscriptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderChangeSubscriptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderChangeSubscriptionDetails_validator = bv.Struct(PaperFolderChangeSubscriptionDetails) -class PaperFolderChangeSubscriptionType(bb.Struct): +class PaperFolderChangeSubscriptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -74955,10 +77246,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderChangeSubscriptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderChangeSubscriptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderChangeSubscriptionType_validator = bv.Struct(PaperFolderChangeSubscriptionType) + class PaperFolderDeletedDetails(bb.Struct): """ Archived Paper folder. @@ -74968,13 +77263,12 @@ class PaperFolderDeletedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -74983,20 +77277,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderDeletedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderDeletedDetails_validator = bv.Struct(PaperFolderDeletedDetails) -class PaperFolderDeletedType(bb.Struct): +class PaperFolderDeletedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75005,10 +77301,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderDeletedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderDeletedType_validator = bv.Struct(PaperFolderDeletedType) + class PaperFolderFollowedDetails(bb.Struct): """ Followed Paper folder. @@ -75018,13 +77318,12 @@ class PaperFolderFollowedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75033,20 +77332,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderFollowedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderFollowedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderFollowedDetails_validator = bv.Struct(PaperFolderFollowedDetails) -class PaperFolderFollowedType(bb.Struct): +class PaperFolderFollowedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75055,10 +77356,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderFollowedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderFollowedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderFollowedType_validator = bv.Struct(PaperFolderFollowedType) + class PaperFolderLogInfo(bb.Struct): """ Paper folder's logged information. @@ -75070,15 +77375,13 @@ class PaperFolderLogInfo(bb.Struct): """ __slots__ = [ - '_folder_id_value', - '_folder_name_value', + "_folder_id_value", + "_folder_name_value", ] _has_required_fields = True - def __init__(self, - folder_id=None, - folder_name=None): + def __init__(self, folder_id=None, folder_name=None): self._folder_id_value = bb.NOT_SET self._folder_name_value = bb.NOT_SET if folder_id is not None: @@ -75093,10 +77396,14 @@ def __init__(self, folder_name = bb.Attribute("folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderLogInfo_validator = bv.Struct(PaperFolderLogInfo) + class PaperFolderTeamInviteDetails(bb.Struct): """ Shared Paper folder with users and/or groups. @@ -75106,13 +77413,12 @@ class PaperFolderTeamInviteDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75121,20 +77427,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderTeamInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderTeamInviteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderTeamInviteDetails_validator = bv.Struct(PaperFolderTeamInviteDetails) -class PaperFolderTeamInviteType(bb.Struct): +class PaperFolderTeamInviteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75143,10 +77451,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperFolderTeamInviteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperFolderTeamInviteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperFolderTeamInviteType_validator = bv.Struct(PaperFolderTeamInviteType) + class PaperMemberPolicy(bb.Union): """ Policy for controlling if team members can share Paper documents externally. @@ -75156,7 +77468,7 @@ class PaperMemberPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition anyone_with_link = None # Attribute is overwritten below the class definition @@ -75172,7 +77484,7 @@ def is_anyone_with_link(self): :rtype: bool """ - return self._tag == 'anyone_with_link' + return self._tag == "anyone_with_link" def is_only_team(self): """ @@ -75180,7 +77492,7 @@ def is_only_team(self): :rtype: bool """ - return self._tag == 'only_team' + return self._tag == "only_team" def is_team_and_explicitly_shared(self): """ @@ -75188,7 +77500,7 @@ def is_team_and_explicitly_shared(self): :rtype: bool """ - return self._tag == 'team_and_explicitly_shared' + return self._tag == "team_and_explicitly_shared" def is_other(self): """ @@ -75196,13 +77508,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperMemberPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperMemberPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperMemberPolicy_validator = bv.Union(PaperMemberPolicy) + class PaperPublishedLinkChangePermissionDetails(bb.Struct): """ Changed permissions for published doc. @@ -75216,17 +77532,14 @@ class PaperPublishedLinkChangePermissionDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_new_permission_level_value', - '_previous_permission_level_value', + "_event_uuid_value", + "_new_permission_level_value", + "_previous_permission_level_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - new_permission_level=None, - previous_permission_level=None): + def __init__(self, event_uuid=None, new_permission_level=None, previous_permission_level=None): self._event_uuid_value = bb.NOT_SET self._new_permission_level_value = bb.NOT_SET self._previous_permission_level_value = bb.NOT_SET @@ -75247,20 +77560,24 @@ def __init__(self, previous_permission_level = bb.Attribute("previous_permission_level") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkChangePermissionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperPublishedLinkChangePermissionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -PaperPublishedLinkChangePermissionDetails_validator = bv.Struct(PaperPublishedLinkChangePermissionDetails) -class PaperPublishedLinkChangePermissionType(bb.Struct): +PaperPublishedLinkChangePermissionDetails_validator = bv.Struct( + PaperPublishedLinkChangePermissionDetails +) + +class PaperPublishedLinkChangePermissionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75269,10 +77586,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkChangePermissionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperPublishedLinkChangePermissionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperPublishedLinkChangePermissionType_validator = bv.Struct(PaperPublishedLinkChangePermissionType) + class PaperPublishedLinkCreateDetails(bb.Struct): """ Published doc. @@ -75282,13 +77603,12 @@ class PaperPublishedLinkCreateDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75297,20 +77617,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperPublishedLinkCreateDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperPublishedLinkCreateDetails_validator = bv.Struct(PaperPublishedLinkCreateDetails) -class PaperPublishedLinkCreateType(bb.Struct): +class PaperPublishedLinkCreateType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75319,10 +77641,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperPublishedLinkCreateType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperPublishedLinkCreateType_validator = bv.Struct(PaperPublishedLinkCreateType) + class PaperPublishedLinkDisabledDetails(bb.Struct): """ Unpublished doc. @@ -75332,13 +77658,12 @@ class PaperPublishedLinkDisabledDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75347,20 +77672,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkDisabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperPublishedLinkDisabledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperPublishedLinkDisabledDetails_validator = bv.Struct(PaperPublishedLinkDisabledDetails) -class PaperPublishedLinkDisabledType(bb.Struct): +class PaperPublishedLinkDisabledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75369,10 +77696,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkDisabledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperPublishedLinkDisabledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperPublishedLinkDisabledType_validator = bv.Struct(PaperPublishedLinkDisabledType) + class PaperPublishedLinkViewDetails(bb.Struct): """ Viewed published doc. @@ -75382,13 +77713,12 @@ class PaperPublishedLinkViewDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -75397,20 +77727,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperPublishedLinkViewDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperPublishedLinkViewDetails_validator = bv.Struct(PaperPublishedLinkViewDetails) -class PaperPublishedLinkViewType(bb.Struct): +class PaperPublishedLinkViewType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75419,10 +77751,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperPublishedLinkViewType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperPublishedLinkViewType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperPublishedLinkViewType_validator = bv.Struct(PaperPublishedLinkViewType) + class ParticipantLogInfo(bb.Union): """ A user or group @@ -75439,7 +77775,7 @@ class ParticipantLogInfo(bb.Union): :vartype ParticipantLogInfo.user: UserLogInfo """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -75452,7 +77788,7 @@ def group(cls, val): :param GroupLogInfo val: :rtype: ParticipantLogInfo """ - return cls('group', val) + return cls("group", val) @classmethod def user(cls, val): @@ -75463,7 +77799,7 @@ def user(cls, val): :param UserLogInfo val: :rtype: ParticipantLogInfo """ - return cls('user', val) + return cls("user", val) def is_group(self): """ @@ -75471,7 +77807,7 @@ def is_group(self): :rtype: bool """ - return self._tag == 'group' + return self._tag == "group" def is_user(self): """ @@ -75479,7 +77815,7 @@ def is_user(self): :rtype: bool """ - return self._tag == 'user' + return self._tag == "user" def is_other(self): """ @@ -75487,7 +77823,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_group(self): """ @@ -75514,10 +77850,14 @@ def get_user(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ParticipantLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ParticipantLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ParticipantLogInfo_validator = bv.Union(ParticipantLogInfo) + class PassPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -75525,7 +77865,7 @@ class PassPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -75541,7 +77881,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == 'allow' + return self._tag == "allow" def is_disabled(self): """ @@ -75549,7 +77889,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -75557,7 +77897,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -75565,20 +77905,21 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(PassPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + PassPolicy_validator = bv.Union(PassPolicy) + class PasskeyAddDetails(bb.Struct): """ Added passkey for login. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -75586,20 +77927,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasskeyAddDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasskeyAddDetails_validator = bv.Struct(PasskeyAddDetails) -class PasskeyAddType(bb.Struct): +class PasskeyAddType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75608,10 +77951,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyAddType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasskeyAddType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasskeyAddType_validator = bv.Struct(PasskeyAddType) + class PasskeyLoginPolicy(bb.Union): """ Passkey login policy @@ -75621,7 +77968,7 @@ class PasskeyLoginPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -75637,7 +77984,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -75645,7 +77992,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -75653,7 +78000,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -75661,13 +78008,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyLoginPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasskeyLoginPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasskeyLoginPolicy_validator = bv.Union(PasskeyLoginPolicy) + class PasskeyLoginPolicyChangedDetails(bb.Struct): """ Changed passkey login policy for team. @@ -75680,15 +78031,13 @@ class PasskeyLoginPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -75703,20 +78052,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyLoginPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasskeyLoginPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasskeyLoginPolicyChangedDetails_validator = bv.Struct(PasskeyLoginPolicyChangedDetails) -class PasskeyLoginPolicyChangedType(bb.Struct): +class PasskeyLoginPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75725,17 +78076,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyLoginPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasskeyLoginPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasskeyLoginPolicyChangedType_validator = bv.Struct(PasskeyLoginPolicyChangedType) + class PasskeyRemoveDetails(bb.Struct): """ Removed passkey for login. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -75743,20 +78097,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyRemoveDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasskeyRemoveDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasskeyRemoveDetails_validator = bv.Struct(PasskeyRemoveDetails) -class PasskeyRemoveType(bb.Struct): +class PasskeyRemoveType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75765,17 +78121,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasskeyRemoveType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasskeyRemoveType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasskeyRemoveType_validator = bv.Struct(PasskeyRemoveType) + class PasswordChangeDetails(bb.Struct): """ Changed password. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -75783,20 +78142,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordChangeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordChangeDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasswordChangeDetails_validator = bv.Struct(PasswordChangeDetails) -class PasswordChangeType(bb.Struct): +class PasswordChangeType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75805,17 +78166,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordChangeType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordChangeType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasswordChangeType_validator = bv.Struct(PasswordChangeType) + class PasswordResetAllDetails(bb.Struct): """ Reset all team member passwords. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -75823,20 +78187,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordResetAllDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordResetAllDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasswordResetAllDetails_validator = bv.Struct(PasswordResetAllDetails) -class PasswordResetAllType(bb.Struct): +class PasswordResetAllType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75845,17 +78211,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordResetAllType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordResetAllType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasswordResetAllType_validator = bv.Struct(PasswordResetAllType) + class PasswordResetDetails(bb.Struct): """ Reset password. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -75863,20 +78232,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordResetDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordResetDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasswordResetDetails_validator = bv.Struct(PasswordResetDetails) -class PasswordResetType(bb.Struct): +class PasswordResetType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75885,10 +78256,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordResetType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordResetType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasswordResetType_validator = bv.Struct(PasswordResetType) + class PasswordStrengthRequirementsChangePolicyDetails(bb.Struct): """ Changed team password strength requirements. @@ -75900,15 +78275,13 @@ class PasswordStrengthRequirementsChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -75923,20 +78296,24 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordStrengthRequirementsChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordStrengthRequirementsChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -PasswordStrengthRequirementsChangePolicyDetails_validator = bv.Struct(PasswordStrengthRequirementsChangePolicyDetails) -class PasswordStrengthRequirementsChangePolicyType(bb.Struct): +PasswordStrengthRequirementsChangePolicyDetails_validator = bv.Struct( + PasswordStrengthRequirementsChangePolicyDetails +) + +class PasswordStrengthRequirementsChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -75945,9 +78322,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordStrengthRequirementsChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordStrengthRequirementsChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +PasswordStrengthRequirementsChangePolicyType_validator = bv.Struct( + PasswordStrengthRequirementsChangePolicyType +) -PasswordStrengthRequirementsChangePolicyType_validator = bv.Struct(PasswordStrengthRequirementsChangePolicyType) class PathLogInfo(bb.Struct): """ @@ -75960,15 +78343,13 @@ class PathLogInfo(bb.Struct): """ __slots__ = [ - '_contextual_value', - '_namespace_relative_value', + "_contextual_value", + "_namespace_relative_value", ] _has_required_fields = True - def __init__(self, - namespace_relative=None, - contextual=None): + def __init__(self, namespace_relative=None, contextual=None): self._contextual_value = bb.NOT_SET self._namespace_relative_value = bb.NOT_SET if contextual is not None: @@ -75985,8 +78366,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(PathLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + PathLogInfo_validator = bv.Struct(PathLogInfo) + class PendingSecondaryEmailAddedDetails(bb.Struct): """ Added pending secondary email. @@ -75996,13 +78379,12 @@ class PendingSecondaryEmailAddedDetails(bb.Struct): """ __slots__ = [ - '_secondary_email_value', + "_secondary_email_value", ] _has_required_fields = True - def __init__(self, - secondary_email=None): + def __init__(self, secondary_email=None): self._secondary_email_value = bb.NOT_SET if secondary_email is not None: self.secondary_email = secondary_email @@ -76011,20 +78393,22 @@ def __init__(self, secondary_email = bb.Attribute("secondary_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PendingSecondaryEmailAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PendingSecondaryEmailAddedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PendingSecondaryEmailAddedDetails_validator = bv.Struct(PendingSecondaryEmailAddedDetails) -class PendingSecondaryEmailAddedType(bb.Struct): +class PendingSecondaryEmailAddedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76033,10 +78417,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PendingSecondaryEmailAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PendingSecondaryEmailAddedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PendingSecondaryEmailAddedType_validator = bv.Struct(PendingSecondaryEmailAddedType) + class PermanentDeleteChangePolicyDetails(bb.Struct): """ Enabled/disabled ability of team members to permanently delete content. @@ -76049,15 +78437,13 @@ class PermanentDeleteChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -76072,20 +78458,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PermanentDeleteChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PermanentDeleteChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PermanentDeleteChangePolicyDetails_validator = bv.Struct(PermanentDeleteChangePolicyDetails) -class PermanentDeleteChangePolicyType(bb.Struct): +class PermanentDeleteChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76094,10 +78482,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PermanentDeleteChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PermanentDeleteChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PermanentDeleteChangePolicyType_validator = bv.Struct(PermanentDeleteChangePolicyType) + class PlacementRestriction(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -76105,7 +78497,7 @@ class PlacementRestriction(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition australia_only = None # Attribute is overwritten below the class definition @@ -76129,7 +78521,7 @@ def is_australia_only(self): :rtype: bool """ - return self._tag == 'australia_only' + return self._tag == "australia_only" def is_canada_only(self): """ @@ -76137,7 +78529,7 @@ def is_canada_only(self): :rtype: bool """ - return self._tag == 'canada_only' + return self._tag == "canada_only" def is_europe_only(self): """ @@ -76145,7 +78537,7 @@ def is_europe_only(self): :rtype: bool """ - return self._tag == 'europe_only' + return self._tag == "europe_only" def is_japan_only(self): """ @@ -76153,7 +78545,7 @@ def is_japan_only(self): :rtype: bool """ - return self._tag == 'japan_only' + return self._tag == "japan_only" def is_none(self): """ @@ -76161,7 +78553,7 @@ def is_none(self): :rtype: bool """ - return self._tag == 'none' + return self._tag == "none" def is_uk_only(self): """ @@ -76169,7 +78561,7 @@ def is_uk_only(self): :rtype: bool """ - return self._tag == 'uk_only' + return self._tag == "uk_only" def is_us_s3_only(self): """ @@ -76177,7 +78569,7 @@ def is_us_s3_only(self): :rtype: bool """ - return self._tag == 'us_s3_only' + return self._tag == "us_s3_only" def is_other(self): """ @@ -76185,13 +78577,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PlacementRestriction, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PlacementRestriction, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PlacementRestriction_validator = bv.Union(PlacementRestriction) + class PolicyType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -76199,7 +78595,7 @@ class PolicyType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disposition = None # Attribute is overwritten below the class definition @@ -76213,7 +78609,7 @@ def is_disposition(self): :rtype: bool """ - return self._tag == 'disposition' + return self._tag == "disposition" def is_retention(self): """ @@ -76221,7 +78617,7 @@ def is_retention(self): :rtype: bool """ - return self._tag == 'retention' + return self._tag == "retention" def is_other(self): """ @@ -76229,13 +78625,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(PolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + PolicyType_validator = bv.Union(PolicyType) + class PreviewsAiPolicy(bb.Union): """ Policy for deciding whether team users can use Previews AI @@ -76245,7 +78643,7 @@ class PreviewsAiPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -76261,7 +78659,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -76269,7 +78667,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -76277,7 +78675,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -76285,13 +78683,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewsAiPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PreviewsAiPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PreviewsAiPolicy_validator = bv.Union(PreviewsAiPolicy) + class PreviewsAiPolicyChangedDetails(bb.Struct): """ Changed Dropbox AI policy for team. @@ -76303,15 +78705,13 @@ class PreviewsAiPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -76326,20 +78726,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewsAiPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PreviewsAiPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PreviewsAiPolicyChangedDetails_validator = bv.Struct(PreviewsAiPolicyChangedDetails) -class PreviewsAiPolicyChangedType(bb.Struct): +class PreviewsAiPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76348,10 +78750,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewsAiPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PreviewsAiPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PreviewsAiPolicyChangedType_validator = bv.Struct(PreviewsAiPolicyChangedType) + class PrimaryTeamRequestAcceptedDetails(bb.Struct): """ Team merge request acceptance details shown to the primary team @@ -76363,15 +78769,13 @@ class PrimaryTeamRequestAcceptedDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_by_value', + "_secondary_team_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_by=None): + def __init__(self, secondary_team=None, sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -76386,10 +78790,14 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PrimaryTeamRequestAcceptedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PrimaryTeamRequestAcceptedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PrimaryTeamRequestAcceptedDetails_validator = bv.Struct(PrimaryTeamRequestAcceptedDetails) + class PrimaryTeamRequestCanceledDetails(bb.Struct): """ Team merge request cancellation details shown to the primary team @@ -76401,15 +78809,13 @@ class PrimaryTeamRequestCanceledDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_by_value', + "_secondary_team_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_by=None): + def __init__(self, secondary_team=None, sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -76424,10 +78830,14 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PrimaryTeamRequestCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PrimaryTeamRequestCanceledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PrimaryTeamRequestCanceledDetails_validator = bv.Struct(PrimaryTeamRequestCanceledDetails) + class PrimaryTeamRequestExpiredDetails(bb.Struct): """ Team merge request expiration details shown to the primary team @@ -76439,15 +78849,13 @@ class PrimaryTeamRequestExpiredDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_by_value', + "_secondary_team_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_by=None): + def __init__(self, secondary_team=None, sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -76462,10 +78870,14 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PrimaryTeamRequestExpiredDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PrimaryTeamRequestExpiredDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PrimaryTeamRequestExpiredDetails_validator = bv.Struct(PrimaryTeamRequestExpiredDetails) + class PrimaryTeamRequestReminderDetails(bb.Struct): """ Team merge request reminder details shown to the primary team @@ -76477,15 +78889,13 @@ class PrimaryTeamRequestReminderDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_to_value', + "_secondary_team_value", + "_sent_to_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_to=None): + def __init__(self, secondary_team=None, sent_to=None): self._secondary_team_value = bb.NOT_SET self._sent_to_value = bb.NOT_SET if secondary_team is not None: @@ -76500,10 +78910,14 @@ def __init__(self, sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PrimaryTeamRequestReminderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PrimaryTeamRequestReminderDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PrimaryTeamRequestReminderDetails_validator = bv.Struct(PrimaryTeamRequestReminderDetails) + class ProductAssignedToMemberDetails(bb.Struct): """ Product assigned to team member. @@ -76515,15 +78929,13 @@ class ProductAssignedToMemberDetails(bb.Struct): """ __slots__ = [ - '_user_name_value', - '_product_name_value', + "_user_name_value", + "_product_name_value", ] _has_required_fields = True - def __init__(self, - user_name=None, - product_name=None): + def __init__(self, user_name=None, product_name=None): self._user_name_value = bb.NOT_SET self._product_name_value = bb.NOT_SET if user_name is not None: @@ -76538,20 +78950,22 @@ def __init__(self, product_name = bb.Attribute("product_name", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductAssignedToMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ProductAssignedToMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ProductAssignedToMemberDetails_validator = bv.Struct(ProductAssignedToMemberDetails) -class ProductAssignedToMemberType(bb.Struct): +class ProductAssignedToMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76560,10 +78974,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductAssignedToMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ProductAssignedToMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ProductAssignedToMemberType_validator = bv.Struct(ProductAssignedToMemberType) + class ProductLogInfo(bb.Struct): """ Product logged information @@ -76573,13 +78991,12 @@ class ProductLogInfo(bb.Struct): """ __slots__ = [ - '_product_name_value', + "_product_name_value", ] _has_required_fields = True - def __init__(self, - product_name=None): + def __init__(self, product_name=None): self._product_name_value = bb.NOT_SET if product_name is not None: self.product_name = product_name @@ -76588,10 +79005,14 @@ def __init__(self, product_name = bb.Attribute("product_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ProductLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ProductLogInfo_validator = bv.Struct(ProductLogInfo) + class ProductRemovedFromMemberDetails(bb.Struct): """ Product removed from team member. @@ -76603,15 +79024,13 @@ class ProductRemovedFromMemberDetails(bb.Struct): """ __slots__ = [ - '_user_name_value', - '_product_name_value', + "_user_name_value", + "_product_name_value", ] _has_required_fields = True - def __init__(self, - user_name=None, - product_name=None): + def __init__(self, user_name=None, product_name=None): self._user_name_value = bb.NOT_SET self._product_name_value = bb.NOT_SET if user_name is not None: @@ -76626,20 +79045,22 @@ def __init__(self, product_name = bb.Attribute("product_name", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductRemovedFromMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ProductRemovedFromMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ProductRemovedFromMemberDetails_validator = bv.Struct(ProductRemovedFromMemberDetails) -class ProductRemovedFromMemberType(bb.Struct): +class ProductRemovedFromMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76648,10 +79069,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProductRemovedFromMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ProductRemovedFromMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ProductRemovedFromMemberType_validator = bv.Struct(ProductRemovedFromMemberType) + class ProtectInternalDomainsChangedDetails(bb.Struct): """ Modified Protect internal domains list. @@ -76663,15 +79088,13 @@ class ProtectInternalDomainsChangedDetails(bb.Struct): """ __slots__ = [ - '_domains_added_value', - '_domains_removed_value', + "_domains_added_value", + "_domains_removed_value", ] _has_required_fields = False - def __init__(self, - domains_added=None, - domains_removed=None): + def __init__(self, domains_added=None, domains_removed=None): self._domains_added_value = bb.NOT_SET self._domains_removed_value = bb.NOT_SET if domains_added is not None: @@ -76686,20 +79109,22 @@ def __init__(self, domains_removed = bb.Attribute("domains_removed", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProtectInternalDomainsChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ProtectInternalDomainsChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ProtectInternalDomainsChangedDetails_validator = bv.Struct(ProtectInternalDomainsChangedDetails) -class ProtectInternalDomainsChangedType(bb.Struct): +class ProtectInternalDomainsChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76708,10 +79133,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ProtectInternalDomainsChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ProtectInternalDomainsChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ProtectInternalDomainsChangedType_validator = bv.Struct(ProtectInternalDomainsChangedType) + class QuickActionType(bb.Union): """ Quick action type. @@ -76721,7 +79150,7 @@ class QuickActionType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition delete_shared_link = None # Attribute is overwritten below the class definition @@ -76743,7 +79172,7 @@ def is_delete_shared_link(self): :rtype: bool """ - return self._tag == 'delete_shared_link' + return self._tag == "delete_shared_link" def is_reset_password(self): """ @@ -76751,7 +79180,7 @@ def is_reset_password(self): :rtype: bool """ - return self._tag == 'reset_password' + return self._tag == "reset_password" def is_restore_file_or_folder(self): """ @@ -76759,7 +79188,7 @@ def is_restore_file_or_folder(self): :rtype: bool """ - return self._tag == 'restore_file_or_folder' + return self._tag == "restore_file_or_folder" def is_unlink_app(self): """ @@ -76767,7 +79196,7 @@ def is_unlink_app(self): :rtype: bool """ - return self._tag == 'unlink_app' + return self._tag == "unlink_app" def is_unlink_device(self): """ @@ -76775,7 +79204,7 @@ def is_unlink_device(self): :rtype: bool """ - return self._tag == 'unlink_device' + return self._tag == "unlink_device" def is_unlink_session(self): """ @@ -76783,7 +79212,7 @@ def is_unlink_session(self): :rtype: bool """ - return self._tag == 'unlink_session' + return self._tag == "unlink_session" def is_other(self): """ @@ -76791,20 +79220,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(QuickActionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(QuickActionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + QuickActionType_validator = bv.Union(QuickActionType) + class RansomwareAlertCreateReportDetails(bb.Struct): """ Created ransomware report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -76812,10 +79244,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareAlertCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RansomwareAlertCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RansomwareAlertCreateReportDetails_validator = bv.Struct(RansomwareAlertCreateReportDetails) + class RansomwareAlertCreateReportFailedDetails(bb.Struct): """ Couldn't generate ransomware report. @@ -76825,13 +79261,12 @@ class RansomwareAlertCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -76840,20 +79275,24 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareAlertCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RansomwareAlertCreateReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -RansomwareAlertCreateReportFailedDetails_validator = bv.Struct(RansomwareAlertCreateReportFailedDetails) -class RansomwareAlertCreateReportFailedType(bb.Struct): +RansomwareAlertCreateReportFailedDetails_validator = bv.Struct( + RansomwareAlertCreateReportFailedDetails +) + +class RansomwareAlertCreateReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76862,20 +79301,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareAlertCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RansomwareAlertCreateReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RansomwareAlertCreateReportFailedType_validator = bv.Struct(RansomwareAlertCreateReportFailedType) -class RansomwareAlertCreateReportType(bb.Struct): +class RansomwareAlertCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76884,10 +79325,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareAlertCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RansomwareAlertCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RansomwareAlertCreateReportType_validator = bv.Struct(RansomwareAlertCreateReportType) + class RansomwareRestoreProcessCompletedDetails(bb.Struct): """ Completed ransomware restore process. @@ -76901,17 +79346,14 @@ class RansomwareRestoreProcessCompletedDetails(bb.Struct): """ __slots__ = [ - '_status_value', - '_restored_files_count_value', - '_restored_files_failed_count_value', + "_status_value", + "_restored_files_count_value", + "_restored_files_failed_count_value", ] _has_required_fields = True - def __init__(self, - status=None, - restored_files_count=None, - restored_files_failed_count=None): + def __init__(self, status=None, restored_files_count=None, restored_files_failed_count=None): self._status_value = bb.NOT_SET self._restored_files_count_value = bb.NOT_SET self._restored_files_failed_count_value = bb.NOT_SET @@ -76932,20 +79374,24 @@ def __init__(self, restored_files_failed_count = bb.Attribute("restored_files_failed_count") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareRestoreProcessCompletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RansomwareRestoreProcessCompletedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -RansomwareRestoreProcessCompletedDetails_validator = bv.Struct(RansomwareRestoreProcessCompletedDetails) -class RansomwareRestoreProcessCompletedType(bb.Struct): +RansomwareRestoreProcessCompletedDetails_validator = bv.Struct( + RansomwareRestoreProcessCompletedDetails +) + +class RansomwareRestoreProcessCompletedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -76954,10 +79400,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareRestoreProcessCompletedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RansomwareRestoreProcessCompletedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RansomwareRestoreProcessCompletedType_validator = bv.Struct(RansomwareRestoreProcessCompletedType) + class RansomwareRestoreProcessStartedDetails(bb.Struct): """ Started ransomware restore process. @@ -76967,13 +79417,12 @@ class RansomwareRestoreProcessStartedDetails(bb.Struct): """ __slots__ = [ - '_extension_value', + "_extension_value", ] _has_required_fields = True - def __init__(self, - extension=None): + def __init__(self, extension=None): self._extension_value = bb.NOT_SET if extension is not None: self.extension = extension @@ -76982,20 +79431,22 @@ def __init__(self, extension = bb.Attribute("extension") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareRestoreProcessStartedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RansomwareRestoreProcessStartedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RansomwareRestoreProcessStartedDetails_validator = bv.Struct(RansomwareRestoreProcessStartedDetails) -class RansomwareRestoreProcessStartedType(bb.Struct): +class RansomwareRestoreProcessStartedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77004,10 +79455,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RansomwareRestoreProcessStartedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RansomwareRestoreProcessStartedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RansomwareRestoreProcessStartedType_validator = bv.Struct(RansomwareRestoreProcessStartedType) + class RecipientsConfiguration(bb.Struct): """ Recipients Configuration @@ -77021,17 +79476,14 @@ class RecipientsConfiguration(bb.Struct): """ __slots__ = [ - '_recipient_setting_type_value', - '_emails_value', - '_groups_value', + "_recipient_setting_type_value", + "_emails_value", + "_groups_value", ] _has_required_fields = False - def __init__(self, - recipient_setting_type=None, - emails=None, - groups=None): + def __init__(self, recipient_setting_type=None, emails=None, groups=None): self._recipient_setting_type_value = bb.NOT_SET self._emails_value = bb.NOT_SET self._groups_value = bb.NOT_SET @@ -77043,7 +79495,9 @@ def __init__(self, self.groups = groups # Instance attribute type: AlertRecipientsSettingType (validator is set below) - recipient_setting_type = bb.Attribute("recipient_setting_type", nullable=True, user_defined=True) + recipient_setting_type = bb.Attribute( + "recipient_setting_type", nullable=True, user_defined=True + ) # Instance attribute type: list of [str] (validator is set below) emails = bb.Attribute("emails", nullable=True) @@ -77052,10 +79506,14 @@ def __init__(self, groups = bb.Attribute("groups", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RecipientsConfiguration, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RecipientsConfiguration, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RecipientsConfiguration_validator = bv.Struct(RecipientsConfiguration) + class RelocateAssetReferencesLogInfo(bb.Struct): """ Provides the indices of the source asset and the destination asset for a @@ -77068,15 +79526,13 @@ class RelocateAssetReferencesLogInfo(bb.Struct): """ __slots__ = [ - '_src_asset_index_value', - '_dest_asset_index_value', + "_src_asset_index_value", + "_dest_asset_index_value", ] _has_required_fields = True - def __init__(self, - src_asset_index=None, - dest_asset_index=None): + def __init__(self, src_asset_index=None, dest_asset_index=None): self._src_asset_index_value = bb.NOT_SET self._dest_asset_index_value = bb.NOT_SET if src_asset_index is not None: @@ -77091,10 +79547,14 @@ def __init__(self, dest_asset_index = bb.Attribute("dest_asset_index") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RelocateAssetReferencesLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RelocateAssetReferencesLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RelocateAssetReferencesLogInfo_validator = bv.Struct(RelocateAssetReferencesLogInfo) + class ReplayAddingPeoplePolicy(bb.Union): """ Policy for deciding who can be added to Replay content @@ -77104,7 +79564,7 @@ class ReplayAddingPeoplePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition anyone = None # Attribute is overwritten below the class definition @@ -77120,7 +79580,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == 'anyone' + return self._tag == "anyone" def is_team_and_allowlist(self): """ @@ -77128,7 +79588,7 @@ def is_team_and_allowlist(self): :rtype: bool """ - return self._tag == 'team_and_allowlist' + return self._tag == "team_and_allowlist" def is_team_only(self): """ @@ -77136,7 +79596,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_other(self): """ @@ -77144,13 +79604,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayAddingPeoplePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayAddingPeoplePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayAddingPeoplePolicy_validator = bv.Union(ReplayAddingPeoplePolicy) + class ReplayAddingPeoplePolicyChangedDetails(bb.Struct): """ Changed the policy for adding people to Replay content. @@ -77162,15 +79626,13 @@ class ReplayAddingPeoplePolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -77185,20 +79647,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayAddingPeoplePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayAddingPeoplePolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayAddingPeoplePolicyChangedDetails_validator = bv.Struct(ReplayAddingPeoplePolicyChangedDetails) -class ReplayAddingPeoplePolicyChangedType(bb.Struct): +class ReplayAddingPeoplePolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77207,17 +79671,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayAddingPeoplePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayAddingPeoplePolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayAddingPeoplePolicyChangedType_validator = bv.Struct(ReplayAddingPeoplePolicyChangedType) + class ReplayFileDeleteDetails(bb.Struct): """ Deleted files in Replay. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -77225,20 +79692,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayFileDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayFileDeleteDetails_validator = bv.Struct(ReplayFileDeleteDetails) -class ReplayFileDeleteType(bb.Struct): +class ReplayFileDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77247,17 +79716,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayFileDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayFileDeleteType_validator = bv.Struct(ReplayFileDeleteType) + class ReplayFileDownloadedDetails(bb.Struct): """ Downloaded files in Replay. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -77265,20 +79737,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileDownloadedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayFileDownloadedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayFileDownloadedDetails_validator = bv.Struct(ReplayFileDownloadedDetails) -class ReplayFileDownloadedType(bb.Struct): +class ReplayFileDownloadedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77287,10 +79761,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileDownloadedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayFileDownloadedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayFileDownloadedType_validator = bv.Struct(ReplayFileDownloadedType) + class ReplayFileSharedLinkCreatedDetails(bb.Struct): """ Created shared link in Replay. @@ -77303,15 +79781,13 @@ class ReplayFileSharedLinkCreatedDetails(bb.Struct): """ __slots__ = [ - '_is_watermarked_value', - '_access_value', + "_is_watermarked_value", + "_access_value", ] _has_required_fields = False - def __init__(self, - is_watermarked=None, - access=None): + def __init__(self, is_watermarked=None, access=None): self._is_watermarked_value = bb.NOT_SET self._access_value = bb.NOT_SET if is_watermarked is not None: @@ -77326,20 +79802,22 @@ def __init__(self, access = bb.Attribute("access", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayFileSharedLinkCreatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayFileSharedLinkCreatedDetails_validator = bv.Struct(ReplayFileSharedLinkCreatedDetails) -class ReplayFileSharedLinkCreatedType(bb.Struct): +class ReplayFileSharedLinkCreatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77348,10 +79826,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayFileSharedLinkCreatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayFileSharedLinkCreatedType_validator = bv.Struct(ReplayFileSharedLinkCreatedType) + class ReplayFileSharedLinkModifiedDetails(bb.Struct): """ Changed shared link in Replay. @@ -77364,15 +79846,13 @@ class ReplayFileSharedLinkModifiedDetails(bb.Struct): """ __slots__ = [ - '_is_watermarked_value', - '_access_value', + "_is_watermarked_value", + "_access_value", ] _has_required_fields = False - def __init__(self, - is_watermarked=None, - access=None): + def __init__(self, is_watermarked=None, access=None): self._is_watermarked_value = bb.NOT_SET self._access_value = bb.NOT_SET if is_watermarked is not None: @@ -77387,20 +79867,22 @@ def __init__(self, access = bb.Attribute("access", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkModifiedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayFileSharedLinkModifiedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayFileSharedLinkModifiedDetails_validator = bv.Struct(ReplayFileSharedLinkModifiedDetails) -class ReplayFileSharedLinkModifiedType(bb.Struct): +class ReplayFileSharedLinkModifiedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77409,10 +79891,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkModifiedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayFileSharedLinkModifiedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayFileSharedLinkModifiedType_validator = bv.Struct(ReplayFileSharedLinkModifiedType) + class ReplayLinkAccess(bb.Union): """ Who can access this Replay link @@ -77422,7 +79908,7 @@ class ReplayLinkAccess(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition anyone_logged_in = None # Attribute is overwritten below the class definition @@ -77440,7 +79926,7 @@ def is_anyone_logged_in(self): :rtype: bool """ - return self._tag == 'anyone_logged_in' + return self._tag == "anyone_logged_in" def is_no_login_required(self): """ @@ -77448,7 +79934,7 @@ def is_no_login_required(self): :rtype: bool """ - return self._tag == 'no_login_required' + return self._tag == "no_login_required" def is_team_and_approved(self): """ @@ -77456,7 +79942,7 @@ def is_team_and_approved(self): :rtype: bool """ - return self._tag == 'team_and_approved' + return self._tag == "team_and_approved" def is_team_only(self): """ @@ -77464,7 +79950,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_other(self): """ @@ -77472,20 +79958,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayLinkAccess, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayLinkAccess, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayLinkAccess_validator = bv.Union(ReplayLinkAccess) + class ReplayProjectTeamAddDetails(bb.Struct): """ Added member to Replay Project. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -77493,20 +79982,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayProjectTeamAddDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayProjectTeamAddDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayProjectTeamAddDetails_validator = bv.Struct(ReplayProjectTeamAddDetails) -class ReplayProjectTeamAddType(bb.Struct): +class ReplayProjectTeamAddType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77515,17 +80006,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayProjectTeamAddType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayProjectTeamAddType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayProjectTeamAddType_validator = bv.Struct(ReplayProjectTeamAddType) + class ReplayProjectTeamDeleteDetails(bb.Struct): """ Removed member from Replay Project. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -77533,20 +80027,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayProjectTeamDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayProjectTeamDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayProjectTeamDeleteDetails_validator = bv.Struct(ReplayProjectTeamDeleteDetails) -class ReplayProjectTeamDeleteType(bb.Struct): +class ReplayProjectTeamDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77555,10 +80051,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayProjectTeamDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayProjectTeamDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayProjectTeamDeleteType_validator = bv.Struct(ReplayProjectTeamDeleteType) + class ReplaySharingPolicy(bb.Union): """ Policy for deciding who Replay content can be shared with through links @@ -77568,7 +80068,7 @@ class ReplaySharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition anyone = None # Attribute is overwritten below the class definition @@ -77584,7 +80084,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == 'anyone' + return self._tag == "anyone" def is_team_and_allowlist(self): """ @@ -77592,7 +80092,7 @@ def is_team_and_allowlist(self): :rtype: bool """ - return self._tag == 'team_and_allowlist' + return self._tag == "team_and_allowlist" def is_team_only(self): """ @@ -77600,7 +80100,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_other(self): """ @@ -77608,13 +80108,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplaySharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplaySharingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplaySharingPolicy_validator = bv.Union(ReplaySharingPolicy) + class ReplaySharingPolicyChangedDetails(bb.Struct): """ Changed the policy for sharing Replay content. @@ -77626,15 +80130,13 @@ class ReplaySharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -77649,20 +80151,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplaySharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplaySharingPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplaySharingPolicyChangedDetails_validator = bv.Struct(ReplaySharingPolicyChangedDetails) -class ReplaySharingPolicyChangedType(bb.Struct): +class ReplaySharingPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77671,10 +80175,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplaySharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplaySharingPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplaySharingPolicyChangedType_validator = bv.Struct(ReplaySharingPolicyChangedType) + class ReplayTeamProjectCreatedDetails(bb.Struct): """ Created a team project in Replay. @@ -77684,13 +80192,12 @@ class ReplayTeamProjectCreatedDetails(bb.Struct): """ __slots__ = [ - '_name_value', + "_name_value", ] _has_required_fields = True - def __init__(self, - name=None): + def __init__(self, name=None): self._name_value = bb.NOT_SET if name is not None: self.name = name @@ -77699,20 +80206,22 @@ def __init__(self, name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayTeamProjectCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayTeamProjectCreatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayTeamProjectCreatedDetails_validator = bv.Struct(ReplayTeamProjectCreatedDetails) -class ReplayTeamProjectCreatedType(bb.Struct): +class ReplayTeamProjectCreatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77721,10 +80230,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayTeamProjectCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ReplayTeamProjectCreatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ReplayTeamProjectCreatedType_validator = bv.Struct(ReplayTeamProjectCreatedType) + class ResellerLogInfo(bb.Struct): """ Reseller information. @@ -77736,15 +80249,13 @@ class ResellerLogInfo(bb.Struct): """ __slots__ = [ - '_reseller_name_value', - '_reseller_email_value', + "_reseller_name_value", + "_reseller_email_value", ] _has_required_fields = True - def __init__(self, - reseller_name=None, - reseller_email=None): + def __init__(self, reseller_name=None, reseller_email=None): self._reseller_name_value = bb.NOT_SET self._reseller_email_value = bb.NOT_SET if reseller_name is not None: @@ -77759,10 +80270,14 @@ def __init__(self, reseller_email = bb.Attribute("reseller_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResellerLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResellerLogInfo_validator = bv.Struct(ResellerLogInfo) + class ResellerRole(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -77770,7 +80285,7 @@ class ResellerRole(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition not_reseller = None # Attribute is overwritten below the class definition @@ -77784,7 +80299,7 @@ def is_not_reseller(self): :rtype: bool """ - return self._tag == 'not_reseller' + return self._tag == "not_reseller" def is_reseller_admin(self): """ @@ -77792,7 +80307,7 @@ def is_reseller_admin(self): :rtype: bool """ - return self._tag == 'reseller_admin' + return self._tag == "reseller_admin" def is_other(self): """ @@ -77800,13 +80315,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerRole, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResellerRole, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResellerRole_validator = bv.Union(ResellerRole) + class ResellerSupportChangePolicyDetails(bb.Struct): """ Enabled/disabled reseller support. @@ -77818,15 +80337,13 @@ class ResellerSupportChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -77841,20 +80358,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResellerSupportChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResellerSupportChangePolicyDetails_validator = bv.Struct(ResellerSupportChangePolicyDetails) -class ResellerSupportChangePolicyType(bb.Struct): +class ResellerSupportChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77863,10 +80382,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResellerSupportChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResellerSupportChangePolicyType_validator = bv.Struct(ResellerSupportChangePolicyType) + class ResellerSupportPolicy(bb.Union): """ Policy for controlling if reseller can access the admin console as @@ -77877,7 +80400,7 @@ class ResellerSupportPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -77891,7 +80414,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -77899,7 +80422,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -77907,20 +80430,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResellerSupportPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResellerSupportPolicy_validator = bv.Union(ResellerSupportPolicy) + class ResellerSupportSessionEndDetails(bb.Struct): """ Ended reseller support session. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -77928,20 +80454,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportSessionEndDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResellerSupportSessionEndDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResellerSupportSessionEndDetails_validator = bv.Struct(ResellerSupportSessionEndDetails) -class ResellerSupportSessionEndType(bb.Struct): +class ResellerSupportSessionEndType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77950,17 +80478,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportSessionEndType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResellerSupportSessionEndType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResellerSupportSessionEndType_validator = bv.Struct(ResellerSupportSessionEndType) + class ResellerSupportSessionStartDetails(bb.Struct): """ Started reseller support session. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -77968,20 +80499,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportSessionStartDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResellerSupportSessionStartDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResellerSupportSessionStartDetails_validator = bv.Struct(ResellerSupportSessionStartDetails) -class ResellerSupportSessionStartType(bb.Struct): +class ResellerSupportSessionStartType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -77990,10 +80523,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ResellerSupportSessionStartType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ResellerSupportSessionStartType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ResellerSupportSessionStartType_validator = bv.Struct(ResellerSupportSessionStartType) + class RewindFolderDetails(bb.Struct): """ Rewound a folder. @@ -78003,13 +80540,12 @@ class RewindFolderDetails(bb.Struct): """ __slots__ = [ - '_rewind_folder_target_ts_ms_value', + "_rewind_folder_target_ts_ms_value", ] _has_required_fields = True - def __init__(self, - rewind_folder_target_ts_ms=None): + def __init__(self, rewind_folder_target_ts_ms=None): self._rewind_folder_target_ts_ms_value = bb.NOT_SET if rewind_folder_target_ts_ms is not None: self.rewind_folder_target_ts_ms = rewind_folder_target_ts_ms @@ -78018,20 +80554,22 @@ def __init__(self, rewind_folder_target_ts_ms = bb.Attribute("rewind_folder_target_ts_ms") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindFolderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RewindFolderDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RewindFolderDetails_validator = bv.Struct(RewindFolderDetails) -class RewindFolderType(bb.Struct): +class RewindFolderType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78040,10 +80578,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindFolderType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RewindFolderType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RewindFolderType_validator = bv.Struct(RewindFolderType) + class RewindPolicy(bb.Union): """ Policy for controlling whether team members can rewind @@ -78053,7 +80595,7 @@ class RewindPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition admins_only = None # Attribute is overwritten below the class definition @@ -78067,7 +80609,7 @@ def is_admins_only(self): :rtype: bool """ - return self._tag == 'admins_only' + return self._tag == "admins_only" def is_everyone(self): """ @@ -78075,7 +80617,7 @@ def is_everyone(self): :rtype: bool """ - return self._tag == 'everyone' + return self._tag == "everyone" def is_other(self): """ @@ -78083,13 +80625,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RewindPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RewindPolicy_validator = bv.Union(RewindPolicy) + class RewindPolicyChangedDetails(bb.Struct): """ Changed Rewind policy for team. @@ -78101,15 +80647,13 @@ class RewindPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -78124,20 +80668,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RewindPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RewindPolicyChangedDetails_validator = bv.Struct(RewindPolicyChangedDetails) -class RewindPolicyChangedType(bb.Struct): +class RewindPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78146,10 +80692,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RewindPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RewindPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RewindPolicyChangedType_validator = bv.Struct(RewindPolicyChangedType) + class RiscSecurityEventDetails(bb.Struct): """ RISC security event received from external provider. @@ -78163,17 +80713,14 @@ class RiscSecurityEventDetails(bb.Struct): """ __slots__ = [ - '_event_type_value', - '_reason_value', - '_issuer_value', + "_event_type_value", + "_reason_value", + "_issuer_value", ] _has_required_fields = True - def __init__(self, - event_type=None, - reason=None, - issuer=None): + def __init__(self, event_type=None, reason=None, issuer=None): self._event_type_value = bb.NOT_SET self._reason_value = bb.NOT_SET self._issuer_value = bb.NOT_SET @@ -78194,20 +80741,22 @@ def __init__(self, issuer = bb.Attribute("issuer") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RiscSecurityEventDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RiscSecurityEventDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RiscSecurityEventDetails_validator = bv.Struct(RiscSecurityEventDetails) -class RiscSecurityEventType(bb.Struct): +class RiscSecurityEventType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78216,10 +80765,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RiscSecurityEventType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RiscSecurityEventType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RiscSecurityEventType_validator = bv.Struct(RiscSecurityEventType) + class SecondaryEmailDeletedDetails(bb.Struct): """ Deleted secondary email. @@ -78229,13 +80782,12 @@ class SecondaryEmailDeletedDetails(bb.Struct): """ __slots__ = [ - '_secondary_email_value', + "_secondary_email_value", ] _has_required_fields = True - def __init__(self, - secondary_email=None): + def __init__(self, secondary_email=None): self._secondary_email_value = bb.NOT_SET if secondary_email is not None: self.secondary_email = secondary_email @@ -78244,20 +80796,22 @@ def __init__(self, secondary_email = bb.Attribute("secondary_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmailDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryEmailDeletedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryEmailDeletedDetails_validator = bv.Struct(SecondaryEmailDeletedDetails) -class SecondaryEmailDeletedType(bb.Struct): +class SecondaryEmailDeletedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78266,10 +80820,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmailDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryEmailDeletedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryEmailDeletedType_validator = bv.Struct(SecondaryEmailDeletedType) + class SecondaryEmailVerifiedDetails(bb.Struct): """ Verified secondary email. @@ -78279,13 +80837,12 @@ class SecondaryEmailVerifiedDetails(bb.Struct): """ __slots__ = [ - '_secondary_email_value', + "_secondary_email_value", ] _has_required_fields = True - def __init__(self, - secondary_email=None): + def __init__(self, secondary_email=None): self._secondary_email_value = bb.NOT_SET if secondary_email is not None: self.secondary_email = secondary_email @@ -78294,20 +80851,22 @@ def __init__(self, secondary_email = bb.Attribute("secondary_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmailVerifiedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryEmailVerifiedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryEmailVerifiedDetails_validator = bv.Struct(SecondaryEmailVerifiedDetails) -class SecondaryEmailVerifiedType(bb.Struct): +class SecondaryEmailVerifiedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78316,10 +80875,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryEmailVerifiedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryEmailVerifiedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryEmailVerifiedType_validator = bv.Struct(SecondaryEmailVerifiedType) + class SecondaryMailsPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -78327,7 +80890,7 @@ class SecondaryMailsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -78341,7 +80904,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -78349,7 +80912,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -78357,13 +80920,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryMailsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryMailsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryMailsPolicy_validator = bv.Union(SecondaryMailsPolicy) + class SecondaryMailsPolicyChangedDetails(bb.Struct): """ Secondary mails policy changed. @@ -78375,15 +80942,13 @@ class SecondaryMailsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -78398,20 +80963,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryMailsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryMailsPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryMailsPolicyChangedDetails_validator = bv.Struct(SecondaryMailsPolicyChangedDetails) -class SecondaryMailsPolicyChangedType(bb.Struct): +class SecondaryMailsPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78420,10 +80987,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryMailsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryMailsPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryMailsPolicyChangedType_validator = bv.Struct(SecondaryMailsPolicyChangedType) + class SecondaryTeamRequestAcceptedDetails(bb.Struct): """ Team merge request acceptance details shown to the secondary team @@ -78435,15 +81006,13 @@ class SecondaryTeamRequestAcceptedDetails(bb.Struct): """ __slots__ = [ - '_primary_team_value', - '_sent_by_value', + "_primary_team_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - primary_team=None, - sent_by=None): + def __init__(self, primary_team=None, sent_by=None): self._primary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if primary_team is not None: @@ -78458,10 +81027,14 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryTeamRequestAcceptedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryTeamRequestAcceptedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryTeamRequestAcceptedDetails_validator = bv.Struct(SecondaryTeamRequestAcceptedDetails) + class SecondaryTeamRequestCanceledDetails(bb.Struct): """ Team merge request cancellation details shown to the secondary team @@ -78473,15 +81046,13 @@ class SecondaryTeamRequestCanceledDetails(bb.Struct): """ __slots__ = [ - '_sent_to_value', - '_sent_by_value', + "_sent_to_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - sent_to=None, - sent_by=None): + def __init__(self, sent_to=None, sent_by=None): self._sent_to_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if sent_to is not None: @@ -78496,10 +81067,14 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryTeamRequestCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryTeamRequestCanceledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryTeamRequestCanceledDetails_validator = bv.Struct(SecondaryTeamRequestCanceledDetails) + class SecondaryTeamRequestExpiredDetails(bb.Struct): """ Team merge request expiration details shown to the secondary team @@ -78509,13 +81084,12 @@ class SecondaryTeamRequestExpiredDetails(bb.Struct): """ __slots__ = [ - '_sent_to_value', + "_sent_to_value", ] _has_required_fields = True - def __init__(self, - sent_to=None): + def __init__(self, sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -78524,10 +81098,14 @@ def __init__(self, sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryTeamRequestExpiredDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryTeamRequestExpiredDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryTeamRequestExpiredDetails_validator = bv.Struct(SecondaryTeamRequestExpiredDetails) + class SecondaryTeamRequestReminderDetails(bb.Struct): """ Team merge request reminder details shown to the secondary team @@ -78537,13 +81115,12 @@ class SecondaryTeamRequestReminderDetails(bb.Struct): """ __slots__ = [ - '_sent_to_value', + "_sent_to_value", ] _has_required_fields = True - def __init__(self, - sent_to=None): + def __init__(self, sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -78552,17 +81129,20 @@ def __init__(self, sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SecondaryTeamRequestReminderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SecondaryTeamRequestReminderDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SecondaryTeamRequestReminderDetails_validator = bv.Struct(SecondaryTeamRequestReminderDetails) + class SendAndTrackFileAddedDetails(bb.Struct): """ File added to Send and Track. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -78570,20 +81150,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackFileAddedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackFileAddedDetails_validator = bv.Struct(SendAndTrackFileAddedDetails) -class SendAndTrackFileAddedType(bb.Struct): +class SendAndTrackFileAddedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78592,10 +81174,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackFileAddedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackFileAddedType_validator = bv.Struct(SendAndTrackFileAddedType) + class SendAndTrackFileRenamedDetails(bb.Struct): """ File renamed in Send and Track. @@ -78605,13 +81191,12 @@ class SendAndTrackFileRenamedDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - previous_value=None): + def __init__(self, previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -78620,20 +81205,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileRenamedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackFileRenamedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackFileRenamedDetails_validator = bv.Struct(SendAndTrackFileRenamedDetails) -class SendAndTrackFileRenamedType(bb.Struct): +class SendAndTrackFileRenamedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78642,17 +81229,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileRenamedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackFileRenamedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackFileRenamedType_validator = bv.Struct(SendAndTrackFileRenamedType) + class SendAndTrackFileUpdatedDetails(bb.Struct): """ File updated in Send and Track. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -78660,20 +81250,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileUpdatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackFileUpdatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackFileUpdatedDetails_validator = bv.Struct(SendAndTrackFileUpdatedDetails) -class SendAndTrackFileUpdatedType(bb.Struct): +class SendAndTrackFileUpdatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78682,10 +81274,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackFileUpdatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackFileUpdatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackFileUpdatedType_validator = bv.Struct(SendAndTrackFileUpdatedType) + class SendAndTrackLinkCreatedDetails(bb.Struct): """ Link created in Send and Track. @@ -78695,13 +81291,12 @@ class SendAndTrackLinkCreatedDetails(bb.Struct): """ __slots__ = [ - '_link_settings_value', + "_link_settings_value", ] _has_required_fields = True - def __init__(self, - link_settings=None): + def __init__(self, link_settings=None): self._link_settings_value = bb.NOT_SET if link_settings is not None: self.link_settings = link_settings @@ -78710,20 +81305,22 @@ def __init__(self, link_settings = bb.Attribute("link_settings", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackLinkCreatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackLinkCreatedDetails_validator = bv.Struct(SendAndTrackLinkCreatedDetails) -class SendAndTrackLinkCreatedType(bb.Struct): +class SendAndTrackLinkCreatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78732,10 +81329,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackLinkCreatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackLinkCreatedType_validator = bv.Struct(SendAndTrackLinkCreatedType) + class SendAndTrackLinkDeletedDetails(bb.Struct): """ Link deleted in Send and Track. @@ -78745,13 +81346,12 @@ class SendAndTrackLinkDeletedDetails(bb.Struct): """ __slots__ = [ - '_shared_content_link_value', + "_shared_content_link_value", ] _has_required_fields = True - def __init__(self, - shared_content_link=None): + def __init__(self, shared_content_link=None): self._shared_content_link_value = bb.NOT_SET if shared_content_link is not None: self.shared_content_link = shared_content_link @@ -78760,20 +81360,22 @@ def __init__(self, shared_content_link = bb.Attribute("shared_content_link") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackLinkDeletedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackLinkDeletedDetails_validator = bv.Struct(SendAndTrackLinkDeletedDetails) -class SendAndTrackLinkDeletedType(bb.Struct): +class SendAndTrackLinkDeletedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78782,10 +81384,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackLinkDeletedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackLinkDeletedType_validator = bv.Struct(SendAndTrackLinkDeletedType) + class SendAndTrackLinkUpdatedDetails(bb.Struct): """ Send and Track Link Updated. @@ -78797,15 +81403,13 @@ class SendAndTrackLinkUpdatedDetails(bb.Struct): """ __slots__ = [ - '_link_settings_value', - '_previous_link_name_value', + "_link_settings_value", + "_previous_link_name_value", ] _has_required_fields = True - def __init__(self, - link_settings=None, - previous_link_name=None): + def __init__(self, link_settings=None, previous_link_name=None): self._link_settings_value = bb.NOT_SET self._previous_link_name_value = bb.NOT_SET if link_settings is not None: @@ -78820,20 +81424,22 @@ def __init__(self, previous_link_name = bb.Attribute("previous_link_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkUpdatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackLinkUpdatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackLinkUpdatedDetails_validator = bv.Struct(SendAndTrackLinkUpdatedDetails) -class SendAndTrackLinkUpdatedType(bb.Struct): +class SendAndTrackLinkUpdatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78842,10 +81448,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkUpdatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackLinkUpdatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackLinkUpdatedType_validator = bv.Struct(SendAndTrackLinkUpdatedType) + class SendAndTrackLinkViewedDetails(bb.Struct): """ Send and Track Link Visited. @@ -78859,17 +81469,14 @@ class SendAndTrackLinkViewedDetails(bb.Struct): """ __slots__ = [ - '_link_settings_value', - '_email_address_value', - '_link_owner_value', + "_link_settings_value", + "_email_address_value", + "_link_owner_value", ] _has_required_fields = True - def __init__(self, - link_settings=None, - email_address=None, - link_owner=None): + def __init__(self, link_settings=None, email_address=None, link_owner=None): self._link_settings_value = bb.NOT_SET self._email_address_value = bb.NOT_SET self._link_owner_value = bb.NOT_SET @@ -78890,20 +81497,22 @@ def __init__(self, link_owner = bb.Attribute("link_owner", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkViewedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackLinkViewedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackLinkViewedDetails_validator = bv.Struct(SendAndTrackLinkViewedDetails) -class SendAndTrackLinkViewedType(bb.Struct): +class SendAndTrackLinkViewedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -78912,10 +81521,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackLinkViewedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackLinkViewedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackLinkViewedType_validator = bv.Struct(SendAndTrackLinkViewedType) + class SendAndTrackPolicy(bb.Union): """ Policy for deciding whether team users can use Send and Track @@ -78925,7 +81538,7 @@ class SendAndTrackPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -78941,7 +81554,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -78949,7 +81562,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -78957,7 +81570,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -78965,13 +81578,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackPolicy_validator = bv.Union(SendAndTrackPolicy) + class SendAndTrackPolicyChangedDetails(bb.Struct): """ Changed “Send and track” policy for team. @@ -78983,15 +81600,13 @@ class SendAndTrackPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -79006,20 +81621,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackPolicyChangedDetails_validator = bv.Struct(SendAndTrackPolicyChangedDetails) -class SendAndTrackPolicyChangedType(bb.Struct): +class SendAndTrackPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79028,17 +81645,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendAndTrackPolicyChangedType_validator = bv.Struct(SendAndTrackPolicyChangedType) + class SendAndTrackRemovedFileAndAssociatedLinksDetails(bb.Struct): """ Send and Track file and associated links deleted. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -79046,20 +81666,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackRemovedFileAndAssociatedLinksDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackRemovedFileAndAssociatedLinksDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SendAndTrackRemovedFileAndAssociatedLinksDetails_validator = bv.Struct(SendAndTrackRemovedFileAndAssociatedLinksDetails) -class SendAndTrackRemovedFileAndAssociatedLinksType(bb.Struct): +SendAndTrackRemovedFileAndAssociatedLinksDetails_validator = bv.Struct( + SendAndTrackRemovedFileAndAssociatedLinksDetails +) + +class SendAndTrackRemovedFileAndAssociatedLinksType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79068,9 +81692,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendAndTrackRemovedFileAndAssociatedLinksType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendAndTrackRemovedFileAndAssociatedLinksType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SendAndTrackRemovedFileAndAssociatedLinksType_validator = bv.Struct( + SendAndTrackRemovedFileAndAssociatedLinksType +) -SendAndTrackRemovedFileAndAssociatedLinksType_validator = bv.Struct(SendAndTrackRemovedFileAndAssociatedLinksType) class SendExternalSharingPolicy(bb.Union): """ @@ -79081,7 +81711,7 @@ class SendExternalSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -79097,7 +81727,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -79105,7 +81735,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -79113,7 +81743,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -79121,13 +81751,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendExternalSharingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendExternalSharingPolicy_validator = bv.Union(SendExternalSharingPolicy) + class SendExternalSharingPolicyChangedDetails(bb.Struct): """ Changed “Send and track” external sharing policy for team. @@ -79139,15 +81773,13 @@ class SendExternalSharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -79162,20 +81794,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendExternalSharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendExternalSharingPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SendExternalSharingPolicyChangedDetails_validator = bv.Struct(SendExternalSharingPolicyChangedDetails) -class SendExternalSharingPolicyChangedType(bb.Struct): +SendExternalSharingPolicyChangedDetails_validator = bv.Struct( + SendExternalSharingPolicyChangedDetails +) + +class SendExternalSharingPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79184,10 +81820,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendExternalSharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendExternalSharingPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendExternalSharingPolicyChangedType_validator = bv.Struct(SendExternalSharingPolicyChangedType) + class SendForSignaturePolicy(bb.Union): """ Policy for controlling team access to send for signature feature @@ -79197,7 +81837,7 @@ class SendForSignaturePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -79211,7 +81851,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -79219,7 +81859,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -79227,13 +81867,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendForSignaturePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendForSignaturePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendForSignaturePolicy_validator = bv.Union(SendForSignaturePolicy) + class SendForSignaturePolicyChangedDetails(bb.Struct): """ Changed send for signature policy for team. @@ -79245,15 +81889,13 @@ class SendForSignaturePolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -79268,20 +81910,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendForSignaturePolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendForSignaturePolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendForSignaturePolicyChangedDetails_validator = bv.Struct(SendForSignaturePolicyChangedDetails) -class SendForSignaturePolicyChangedType(bb.Struct): +class SendForSignaturePolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79290,10 +81934,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SendForSignaturePolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SendForSignaturePolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SendForSignaturePolicyChangedType_validator = bv.Struct(SendForSignaturePolicyChangedType) + class SfAddGroupDetails(bb.Struct): """ Added team to shared folder. @@ -79309,19 +81957,21 @@ class SfAddGroupDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', - '_sharing_permission_value', - '_team_name_value', + "_target_asset_index_value", + "_original_folder_name_value", + "_sharing_permission_value", + "_team_name_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None, - team_name=None, - sharing_permission=None): + def __init__( + self, + target_asset_index=None, + original_folder_name=None, + team_name=None, + sharing_permission=None, + ): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._sharing_permission_value = bb.NOT_SET @@ -79348,20 +81998,22 @@ def __init__(self, team_name = bb.Attribute("team_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfAddGroupDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfAddGroupDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfAddGroupDetails_validator = bv.Struct(SfAddGroupDetails) -class SfAddGroupType(bb.Struct): +class SfAddGroupType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79370,10 +82022,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfAddGroupType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfAddGroupType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfAddGroupType_validator = bv.Struct(SfAddGroupType) + class SfAllowNonMembersToViewSharedLinksDetails(bb.Struct): """ Allowed non-collaborators to view links to files in shared folder. @@ -79387,17 +82043,19 @@ class SfAllowNonMembersToViewSharedLinksDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', - '_shared_folder_type_value', + "_target_asset_index_value", + "_original_folder_name_value", + "_shared_folder_type_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None, - shared_folder_type=None): + def __init__( + self, + target_asset_index=None, + original_folder_name=None, + shared_folder_type=None, + ): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._shared_folder_type_value = bb.NOT_SET @@ -79418,20 +82076,24 @@ def __init__(self, shared_folder_type = bb.Attribute("shared_folder_type", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfAllowNonMembersToViewSharedLinksDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfAllowNonMembersToViewSharedLinksDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SfAllowNonMembersToViewSharedLinksDetails_validator = bv.Struct(SfAllowNonMembersToViewSharedLinksDetails) -class SfAllowNonMembersToViewSharedLinksType(bb.Struct): +SfAllowNonMembersToViewSharedLinksDetails_validator = bv.Struct( + SfAllowNonMembersToViewSharedLinksDetails +) + +class SfAllowNonMembersToViewSharedLinksType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79440,10 +82102,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfAllowNonMembersToViewSharedLinksType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfAllowNonMembersToViewSharedLinksType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfAllowNonMembersToViewSharedLinksType_validator = bv.Struct(SfAllowNonMembersToViewSharedLinksType) + class SfExternalInviteWarnDetails(bb.Struct): """ Set team members to see warning before sharing folders outside team. @@ -79459,19 +82125,21 @@ class SfExternalInviteWarnDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', - '_new_sharing_permission_value', - '_previous_sharing_permission_value', + "_target_asset_index_value", + "_original_folder_name_value", + "_new_sharing_permission_value", + "_previous_sharing_permission_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None, - new_sharing_permission=None, - previous_sharing_permission=None): + def __init__( + self, + target_asset_index=None, + original_folder_name=None, + new_sharing_permission=None, + previous_sharing_permission=None, + ): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._new_sharing_permission_value = bb.NOT_SET @@ -79498,20 +82166,22 @@ def __init__(self, previous_sharing_permission = bb.Attribute("previous_sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfExternalInviteWarnDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfExternalInviteWarnDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfExternalInviteWarnDetails_validator = bv.Struct(SfExternalInviteWarnDetails) -class SfExternalInviteWarnType(bb.Struct): +class SfExternalInviteWarnType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79520,10 +82190,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfExternalInviteWarnType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfExternalInviteWarnType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfExternalInviteWarnType_validator = bv.Struct(SfExternalInviteWarnType) + class SfFbInviteChangeRoleDetails(bb.Struct): """ Changed Facebook user's role in shared folder. @@ -79539,19 +82213,21 @@ class SfFbInviteChangeRoleDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', - '_previous_sharing_permission_value', - '_new_sharing_permission_value', + "_target_asset_index_value", + "_original_folder_name_value", + "_previous_sharing_permission_value", + "_new_sharing_permission_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None, - previous_sharing_permission=None, - new_sharing_permission=None): + def __init__( + self, + target_asset_index=None, + original_folder_name=None, + previous_sharing_permission=None, + new_sharing_permission=None, + ): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._previous_sharing_permission_value = bb.NOT_SET @@ -79578,20 +82254,22 @@ def __init__(self, new_sharing_permission = bb.Attribute("new_sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbInviteChangeRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfFbInviteChangeRoleDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfFbInviteChangeRoleDetails_validator = bv.Struct(SfFbInviteChangeRoleDetails) -class SfFbInviteChangeRoleType(bb.Struct): +class SfFbInviteChangeRoleType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79600,10 +82278,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbInviteChangeRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfFbInviteChangeRoleType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfFbInviteChangeRoleType_validator = bv.Struct(SfFbInviteChangeRoleType) + class SfFbInviteDetails(bb.Struct): """ Invited Facebook users to shared folder. @@ -79617,17 +82299,19 @@ class SfFbInviteDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', - '_sharing_permission_value', + "_target_asset_index_value", + "_original_folder_name_value", + "_sharing_permission_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None, - sharing_permission=None): + def __init__( + self, + target_asset_index=None, + original_folder_name=None, + sharing_permission=None, + ): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._sharing_permission_value = bb.NOT_SET @@ -79648,20 +82332,22 @@ def __init__(self, sharing_permission = bb.Attribute("sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfFbInviteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfFbInviteDetails_validator = bv.Struct(SfFbInviteDetails) -class SfFbInviteType(bb.Struct): +class SfFbInviteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79670,10 +82356,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbInviteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfFbInviteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfFbInviteType_validator = bv.Struct(SfFbInviteType) + class SfFbUninviteDetails(bb.Struct): """ Uninvited Facebook user from shared folder. @@ -79685,15 +82375,13 @@ class SfFbUninviteDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', + "_target_asset_index_value", + "_original_folder_name_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None): + def __init__(self, target_asset_index=None, original_folder_name=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET if target_asset_index is not None: @@ -79708,20 +82396,22 @@ def __init__(self, original_folder_name = bb.Attribute("original_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbUninviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfFbUninviteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfFbUninviteDetails_validator = bv.Struct(SfFbUninviteDetails) -class SfFbUninviteType(bb.Struct): +class SfFbUninviteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79730,10 +82420,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfFbUninviteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfFbUninviteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfFbUninviteType_validator = bv.Struct(SfFbUninviteType) + class SfInviteGroupDetails(bb.Struct): """ Invited group to shared folder. @@ -79743,13 +82437,12 @@ class SfInviteGroupDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', + "_target_asset_index_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None): + def __init__(self, target_asset_index=None): self._target_asset_index_value = bb.NOT_SET if target_asset_index is not None: self.target_asset_index = target_asset_index @@ -79758,20 +82451,22 @@ def __init__(self, target_asset_index = bb.Attribute("target_asset_index") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfInviteGroupDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfInviteGroupDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfInviteGroupDetails_validator = bv.Struct(SfInviteGroupDetails) -class SfInviteGroupType(bb.Struct): +class SfInviteGroupType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79780,10 +82475,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfInviteGroupType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfInviteGroupType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfInviteGroupType_validator = bv.Struct(SfInviteGroupType) + class SfTeamGrantAccessDetails(bb.Struct): """ Granted access to shared folder. @@ -79795,15 +82494,13 @@ class SfTeamGrantAccessDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', + "_target_asset_index_value", + "_original_folder_name_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None): + def __init__(self, target_asset_index=None, original_folder_name=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET if target_asset_index is not None: @@ -79818,20 +82515,22 @@ def __init__(self, original_folder_name = bb.Attribute("original_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamGrantAccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamGrantAccessDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamGrantAccessDetails_validator = bv.Struct(SfTeamGrantAccessDetails) -class SfTeamGrantAccessType(bb.Struct): +class SfTeamGrantAccessType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79840,10 +82539,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamGrantAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamGrantAccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamGrantAccessType_validator = bv.Struct(SfTeamGrantAccessType) + class SfTeamInviteChangeRoleDetails(bb.Struct): """ Changed team member's role in shared folder. @@ -79859,19 +82562,21 @@ class SfTeamInviteChangeRoleDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', - '_new_sharing_permission_value', - '_previous_sharing_permission_value', + "_target_asset_index_value", + "_original_folder_name_value", + "_new_sharing_permission_value", + "_previous_sharing_permission_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None, - new_sharing_permission=None, - previous_sharing_permission=None): + def __init__( + self, + target_asset_index=None, + original_folder_name=None, + new_sharing_permission=None, + previous_sharing_permission=None, + ): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._new_sharing_permission_value = bb.NOT_SET @@ -79898,20 +82603,22 @@ def __init__(self, previous_sharing_permission = bb.Attribute("previous_sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamInviteChangeRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamInviteChangeRoleDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamInviteChangeRoleDetails_validator = bv.Struct(SfTeamInviteChangeRoleDetails) -class SfTeamInviteChangeRoleType(bb.Struct): +class SfTeamInviteChangeRoleType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79920,10 +82627,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamInviteChangeRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamInviteChangeRoleType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamInviteChangeRoleType_validator = bv.Struct(SfTeamInviteChangeRoleType) + class SfTeamInviteDetails(bb.Struct): """ Invited team members to shared folder. @@ -79937,17 +82648,19 @@ class SfTeamInviteDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', - '_sharing_permission_value', + "_target_asset_index_value", + "_original_folder_name_value", + "_sharing_permission_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None, - sharing_permission=None): + def __init__( + self, + target_asset_index=None, + original_folder_name=None, + sharing_permission=None, + ): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._sharing_permission_value = bb.NOT_SET @@ -79968,20 +82681,22 @@ def __init__(self, sharing_permission = bb.Attribute("sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamInviteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamInviteDetails_validator = bv.Struct(SfTeamInviteDetails) -class SfTeamInviteType(bb.Struct): +class SfTeamInviteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -79990,10 +82705,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamInviteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamInviteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamInviteType_validator = bv.Struct(SfTeamInviteType) + class SfTeamJoinDetails(bb.Struct): """ Joined team member's shared folder. @@ -80005,15 +82724,13 @@ class SfTeamJoinDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', + "_target_asset_index_value", + "_original_folder_name_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None): + def __init__(self, target_asset_index=None, original_folder_name=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET if target_asset_index is not None: @@ -80028,10 +82745,14 @@ def __init__(self, original_folder_name = bb.Attribute("original_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamJoinDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamJoinDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamJoinDetails_validator = bv.Struct(SfTeamJoinDetails) + class SfTeamJoinFromOobLinkDetails(bb.Struct): """ Joined team member's shared folder from link. @@ -80047,19 +82768,21 @@ class SfTeamJoinFromOobLinkDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', - '_token_key_value', - '_sharing_permission_value', + "_target_asset_index_value", + "_original_folder_name_value", + "_token_key_value", + "_sharing_permission_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None, - token_key=None, - sharing_permission=None): + def __init__( + self, + target_asset_index=None, + original_folder_name=None, + token_key=None, + sharing_permission=None, + ): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET self._token_key_value = bb.NOT_SET @@ -80086,20 +82809,22 @@ def __init__(self, sharing_permission = bb.Attribute("sharing_permission", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamJoinFromOobLinkDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamJoinFromOobLinkDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamJoinFromOobLinkDetails_validator = bv.Struct(SfTeamJoinFromOobLinkDetails) -class SfTeamJoinFromOobLinkType(bb.Struct): +class SfTeamJoinFromOobLinkType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80108,20 +82833,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamJoinFromOobLinkType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamJoinFromOobLinkType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamJoinFromOobLinkType_validator = bv.Struct(SfTeamJoinFromOobLinkType) -class SfTeamJoinType(bb.Struct): +class SfTeamJoinType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80130,10 +82857,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamJoinType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamJoinType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamJoinType_validator = bv.Struct(SfTeamJoinType) + class SfTeamUninviteDetails(bb.Struct): """ Unshared folder with team member. @@ -80145,15 +82876,13 @@ class SfTeamUninviteDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', - '_original_folder_name_value', + "_target_asset_index_value", + "_original_folder_name_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None, - original_folder_name=None): + def __init__(self, target_asset_index=None, original_folder_name=None): self._target_asset_index_value = bb.NOT_SET self._original_folder_name_value = bb.NOT_SET if target_asset_index is not None: @@ -80168,20 +82897,22 @@ def __init__(self, original_folder_name = bb.Attribute("original_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamUninviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamUninviteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamUninviteDetails_validator = bv.Struct(SfTeamUninviteDetails) -class SfTeamUninviteType(bb.Struct): +class SfTeamUninviteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80190,10 +82921,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SfTeamUninviteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SfTeamUninviteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SfTeamUninviteType_validator = bv.Struct(SfTeamUninviteType) + class SharedContentAddInviteesDetails(bb.Struct): """ Invited user to Dropbox and added them to shared file/folder. @@ -80205,15 +82940,13 @@ class SharedContentAddInviteesDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_invitees_value', + "_shared_content_access_level_value", + "_invitees_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - invitees=None): + def __init__(self, shared_content_access_level=None, invitees=None): self._shared_content_access_level_value = bb.NOT_SET self._invitees_value = bb.NOT_SET if shared_content_access_level is not None: @@ -80228,20 +82961,22 @@ def __init__(self, invitees = bb.Attribute("invitees") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddInviteesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentAddInviteesDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentAddInviteesDetails_validator = bv.Struct(SharedContentAddInviteesDetails) -class SharedContentAddInviteesType(bb.Struct): +class SharedContentAddInviteesType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80250,10 +82985,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddInviteesType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentAddInviteesType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentAddInviteesType_validator = bv.Struct(SharedContentAddInviteesType) + class SharedContentAddLinkExpiryDetails(bb.Struct): """ Added expiration date to link for shared file/folder. @@ -80264,13 +83003,12 @@ class SharedContentAddLinkExpiryDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', + "_new_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None): + def __init__(self, new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -80279,20 +83017,22 @@ def __init__(self, new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddLinkExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentAddLinkExpiryDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentAddLinkExpiryDetails_validator = bv.Struct(SharedContentAddLinkExpiryDetails) -class SharedContentAddLinkExpiryType(bb.Struct): +class SharedContentAddLinkExpiryType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80301,17 +83041,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddLinkExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentAddLinkExpiryType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentAddLinkExpiryType_validator = bv.Struct(SharedContentAddLinkExpiryType) + class SharedContentAddLinkPasswordDetails(bb.Struct): """ Added password to link for shared file/folder. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -80319,20 +83062,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddLinkPasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentAddLinkPasswordDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentAddLinkPasswordDetails_validator = bv.Struct(SharedContentAddLinkPasswordDetails) -class SharedContentAddLinkPasswordType(bb.Struct): +class SharedContentAddLinkPasswordType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80341,10 +83086,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddLinkPasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentAddLinkPasswordType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentAddLinkPasswordType_validator = bv.Struct(SharedContentAddLinkPasswordType) + class SharedContentAddMemberDetails(bb.Struct): """ Added users and/or groups to shared file/folder. @@ -80354,13 +83103,12 @@ class SharedContentAddMemberDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', + "_shared_content_access_level_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None): + def __init__(self, shared_content_access_level=None): self._shared_content_access_level_value = bb.NOT_SET if shared_content_access_level is not None: self.shared_content_access_level = shared_content_access_level @@ -80369,20 +83117,22 @@ def __init__(self, shared_content_access_level = bb.Attribute("shared_content_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentAddMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentAddMemberDetails_validator = bv.Struct(SharedContentAddMemberDetails) -class SharedContentAddMemberType(bb.Struct): +class SharedContentAddMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80391,10 +83141,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentAddMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentAddMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentAddMemberType_validator = bv.Struct(SharedContentAddMemberType) + class SharedContentChangeDownloadsPolicyDetails(bb.Struct): """ Changed whether members can download shared file/folder. @@ -80406,15 +83160,13 @@ class SharedContentChangeDownloadsPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -80429,20 +83181,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeDownloadsPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeDownloadsPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedContentChangeDownloadsPolicyDetails_validator = bv.Struct(SharedContentChangeDownloadsPolicyDetails) -class SharedContentChangeDownloadsPolicyType(bb.Struct): +SharedContentChangeDownloadsPolicyDetails_validator = bv.Struct( + SharedContentChangeDownloadsPolicyDetails +) + +class SharedContentChangeDownloadsPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80451,10 +83207,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeDownloadsPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeDownloadsPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeDownloadsPolicyType_validator = bv.Struct(SharedContentChangeDownloadsPolicyType) + class SharedContentChangeInviteeRoleDetails(bb.Struct): """ Changed access type of invitee to shared file/folder before invite was @@ -80469,17 +83229,14 @@ class SharedContentChangeInviteeRoleDetails(bb.Struct): """ __slots__ = [ - '_previous_access_level_value', - '_new_access_level_value', - '_invitee_value', + "_previous_access_level_value", + "_new_access_level_value", + "_invitee_value", ] _has_required_fields = True - def __init__(self, - new_access_level=None, - invitee=None, - previous_access_level=None): + def __init__(self, new_access_level=None, invitee=None, previous_access_level=None): self._previous_access_level_value = bb.NOT_SET self._new_access_level_value = bb.NOT_SET self._invitee_value = bb.NOT_SET @@ -80500,20 +83257,22 @@ def __init__(self, invitee = bb.Attribute("invitee") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeInviteeRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeInviteeRoleDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeInviteeRoleDetails_validator = bv.Struct(SharedContentChangeInviteeRoleDetails) -class SharedContentChangeInviteeRoleType(bb.Struct): +class SharedContentChangeInviteeRoleType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80522,10 +83281,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeInviteeRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeInviteeRoleType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeInviteeRoleType_validator = bv.Struct(SharedContentChangeInviteeRoleType) + class SharedContentChangeLinkAudienceDetails(bb.Struct): """ Changed link audience of shared file/folder. @@ -80537,15 +83300,13 @@ class SharedContentChangeLinkAudienceDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -80560,20 +83321,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkAudienceDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeLinkAudienceDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeLinkAudienceDetails_validator = bv.Struct(SharedContentChangeLinkAudienceDetails) -class SharedContentChangeLinkAudienceType(bb.Struct): +class SharedContentChangeLinkAudienceType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80582,10 +83345,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkAudienceType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeLinkAudienceType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeLinkAudienceType_validator = bv.Struct(SharedContentChangeLinkAudienceType) + class SharedContentChangeLinkExpiryDetails(bb.Struct): """ Changed link expiration of shared file/folder. @@ -80599,15 +83366,13 @@ class SharedContentChangeLinkExpiryDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -80622,20 +83387,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeLinkExpiryDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeLinkExpiryDetails_validator = bv.Struct(SharedContentChangeLinkExpiryDetails) -class SharedContentChangeLinkExpiryType(bb.Struct): +class SharedContentChangeLinkExpiryType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80644,17 +83411,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeLinkExpiryType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeLinkExpiryType_validator = bv.Struct(SharedContentChangeLinkExpiryType) + class SharedContentChangeLinkPasswordDetails(bb.Struct): """ Changed link password of shared file/folder. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -80662,20 +83432,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkPasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeLinkPasswordDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeLinkPasswordDetails_validator = bv.Struct(SharedContentChangeLinkPasswordDetails) -class SharedContentChangeLinkPasswordType(bb.Struct): +class SharedContentChangeLinkPasswordType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80684,10 +83456,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeLinkPasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeLinkPasswordType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeLinkPasswordType_validator = bv.Struct(SharedContentChangeLinkPasswordType) + class SharedContentChangeMemberRoleDetails(bb.Struct): """ Changed access type of shared file/folder member. @@ -80699,15 +83475,13 @@ class SharedContentChangeMemberRoleDetails(bb.Struct): """ __slots__ = [ - '_previous_access_level_value', - '_new_access_level_value', + "_previous_access_level_value", + "_new_access_level_value", ] _has_required_fields = True - def __init__(self, - new_access_level=None, - previous_access_level=None): + def __init__(self, new_access_level=None, previous_access_level=None): self._previous_access_level_value = bb.NOT_SET self._new_access_level_value = bb.NOT_SET if previous_access_level is not None: @@ -80722,20 +83496,22 @@ def __init__(self, new_access_level = bb.Attribute("new_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeMemberRoleDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeMemberRoleDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeMemberRoleDetails_validator = bv.Struct(SharedContentChangeMemberRoleDetails) -class SharedContentChangeMemberRoleType(bb.Struct): +class SharedContentChangeMemberRoleType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80744,10 +83520,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeMemberRoleType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeMemberRoleType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentChangeMemberRoleType_validator = bv.Struct(SharedContentChangeMemberRoleType) + class SharedContentChangeViewerInfoPolicyDetails(bb.Struct): """ Changed whether members can see who viewed shared file/folder. @@ -80759,15 +83539,13 @@ class SharedContentChangeViewerInfoPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -80782,20 +83560,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeViewerInfoPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeViewerInfoPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedContentChangeViewerInfoPolicyDetails_validator = bv.Struct(SharedContentChangeViewerInfoPolicyDetails) -class SharedContentChangeViewerInfoPolicyType(bb.Struct): +SharedContentChangeViewerInfoPolicyDetails_validator = bv.Struct( + SharedContentChangeViewerInfoPolicyDetails +) + +class SharedContentChangeViewerInfoPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80804,9 +83586,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentChangeViewerInfoPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentChangeViewerInfoPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharedContentChangeViewerInfoPolicyType_validator = bv.Struct( + SharedContentChangeViewerInfoPolicyType +) -SharedContentChangeViewerInfoPolicyType_validator = bv.Struct(SharedContentChangeViewerInfoPolicyType) class SharedContentClaimInvitationDetails(bb.Struct): """ @@ -80817,13 +83605,12 @@ class SharedContentClaimInvitationDetails(bb.Struct): """ __slots__ = [ - '_shared_content_link_value', + "_shared_content_link_value", ] _has_required_fields = False - def __init__(self, - shared_content_link=None): + def __init__(self, shared_content_link=None): self._shared_content_link_value = bb.NOT_SET if shared_content_link is not None: self.shared_content_link = shared_content_link @@ -80832,20 +83619,22 @@ def __init__(self, shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentClaimInvitationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentClaimInvitationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentClaimInvitationDetails_validator = bv.Struct(SharedContentClaimInvitationDetails) -class SharedContentClaimInvitationType(bb.Struct): +class SharedContentClaimInvitationType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80854,10 +83643,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentClaimInvitationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentClaimInvitationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentClaimInvitationType_validator = bv.Struct(SharedContentClaimInvitationType) + class SharedContentCopyDetails(bb.Struct): """ Copied shared file/folder to own Dropbox. @@ -80873,19 +83666,21 @@ class SharedContentCopyDetails(bb.Struct): """ __slots__ = [ - '_shared_content_link_value', - '_shared_content_owner_value', - '_shared_content_access_level_value', - '_destination_path_value', + "_shared_content_link_value", + "_shared_content_owner_value", + "_shared_content_access_level_value", + "_destination_path_value", ] _has_required_fields = True - def __init__(self, - shared_content_link=None, - shared_content_access_level=None, - destination_path=None, - shared_content_owner=None): + def __init__( + self, + shared_content_link=None, + shared_content_access_level=None, + destination_path=None, + shared_content_owner=None, + ): self._shared_content_link_value = bb.NOT_SET self._shared_content_owner_value = bb.NOT_SET self._shared_content_access_level_value = bb.NOT_SET @@ -80912,20 +83707,22 @@ def __init__(self, destination_path = bb.Attribute("destination_path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentCopyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentCopyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentCopyDetails_validator = bv.Struct(SharedContentCopyDetails) -class SharedContentCopyType(bb.Struct): +class SharedContentCopyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -80934,10 +83731,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentCopyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentCopyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentCopyType_validator = bv.Struct(SharedContentCopyType) + class SharedContentDownloadDetails(bb.Struct): """ Downloaded shared file/folder. @@ -80951,17 +83752,19 @@ class SharedContentDownloadDetails(bb.Struct): """ __slots__ = [ - '_shared_content_link_value', - '_shared_content_owner_value', - '_shared_content_access_level_value', + "_shared_content_link_value", + "_shared_content_owner_value", + "_shared_content_access_level_value", ] _has_required_fields = True - def __init__(self, - shared_content_link=None, - shared_content_access_level=None, - shared_content_owner=None): + def __init__( + self, + shared_content_link=None, + shared_content_access_level=None, + shared_content_owner=None, + ): self._shared_content_link_value = bb.NOT_SET self._shared_content_owner_value = bb.NOT_SET self._shared_content_access_level_value = bb.NOT_SET @@ -80982,20 +83785,22 @@ def __init__(self, shared_content_access_level = bb.Attribute("shared_content_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentDownloadDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentDownloadDetails_validator = bv.Struct(SharedContentDownloadDetails) -class SharedContentDownloadType(bb.Struct): +class SharedContentDownloadType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81004,17 +83809,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentDownloadType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentDownloadType_validator = bv.Struct(SharedContentDownloadType) + class SharedContentRelinquishMembershipDetails(bb.Struct): """ Left shared file/folder. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -81022,20 +83830,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRelinquishMembershipDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRelinquishMembershipDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedContentRelinquishMembershipDetails_validator = bv.Struct(SharedContentRelinquishMembershipDetails) -class SharedContentRelinquishMembershipType(bb.Struct): +SharedContentRelinquishMembershipDetails_validator = bv.Struct( + SharedContentRelinquishMembershipDetails +) + +class SharedContentRelinquishMembershipType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81044,10 +83856,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRelinquishMembershipType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRelinquishMembershipType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRelinquishMembershipType_validator = bv.Struct(SharedContentRelinquishMembershipType) + class SharedContentRemoveInviteesDetails(bb.Struct): """ Removed invitee from shared file/folder before invite was accepted. @@ -81057,13 +83873,12 @@ class SharedContentRemoveInviteesDetails(bb.Struct): """ __slots__ = [ - '_invitees_value', + "_invitees_value", ] _has_required_fields = True - def __init__(self, - invitees=None): + def __init__(self, invitees=None): self._invitees_value = bb.NOT_SET if invitees is not None: self.invitees = invitees @@ -81072,20 +83887,22 @@ def __init__(self, invitees = bb.Attribute("invitees") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveInviteesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRemoveInviteesDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRemoveInviteesDetails_validator = bv.Struct(SharedContentRemoveInviteesDetails) -class SharedContentRemoveInviteesType(bb.Struct): +class SharedContentRemoveInviteesType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81094,10 +83911,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveInviteesType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRemoveInviteesType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRemoveInviteesType_validator = bv.Struct(SharedContentRemoveInviteesType) + class SharedContentRemoveLinkExpiryDetails(bb.Struct): """ Removed link expiration date of shared file/folder. @@ -81108,13 +83929,12 @@ class SharedContentRemoveLinkExpiryDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - previous_value=None): + def __init__(self, previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -81123,20 +83943,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveLinkExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRemoveLinkExpiryDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRemoveLinkExpiryDetails_validator = bv.Struct(SharedContentRemoveLinkExpiryDetails) -class SharedContentRemoveLinkExpiryType(bb.Struct): +class SharedContentRemoveLinkExpiryType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81145,17 +83967,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveLinkExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRemoveLinkExpiryType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRemoveLinkExpiryType_validator = bv.Struct(SharedContentRemoveLinkExpiryType) + class SharedContentRemoveLinkPasswordDetails(bb.Struct): """ Removed link password of shared file/folder. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -81163,20 +83988,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveLinkPasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRemoveLinkPasswordDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRemoveLinkPasswordDetails_validator = bv.Struct(SharedContentRemoveLinkPasswordDetails) -class SharedContentRemoveLinkPasswordType(bb.Struct): +class SharedContentRemoveLinkPasswordType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81185,10 +84012,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveLinkPasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRemoveLinkPasswordType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRemoveLinkPasswordType_validator = bv.Struct(SharedContentRemoveLinkPasswordType) + class SharedContentRemoveMemberDetails(bb.Struct): """ Removed user/group from shared file/folder. @@ -81198,35 +84029,38 @@ class SharedContentRemoveMemberDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', + "_shared_content_access_level_value", ] _has_required_fields = False - def __init__(self, - shared_content_access_level=None): + def __init__(self, shared_content_access_level=None): self._shared_content_access_level_value = bb.NOT_SET if shared_content_access_level is not None: self.shared_content_access_level = shared_content_access_level # Instance attribute type: sharing.AccessLevel (validator is set below) - shared_content_access_level = bb.Attribute("shared_content_access_level", nullable=True, user_defined=True) + shared_content_access_level = bb.Attribute( + "shared_content_access_level", nullable=True, user_defined=True + ) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRemoveMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRemoveMemberDetails_validator = bv.Struct(SharedContentRemoveMemberDetails) -class SharedContentRemoveMemberType(bb.Struct): +class SharedContentRemoveMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81235,10 +84069,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRemoveMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRemoveMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRemoveMemberType_validator = bv.Struct(SharedContentRemoveMemberType) + class SharedContentRequestAccessDetails(bb.Struct): """ Requested access to shared file/folder. @@ -81248,13 +84086,12 @@ class SharedContentRequestAccessDetails(bb.Struct): """ __slots__ = [ - '_shared_content_link_value', + "_shared_content_link_value", ] _has_required_fields = False - def __init__(self, - shared_content_link=None): + def __init__(self, shared_content_link=None): self._shared_content_link_value = bb.NOT_SET if shared_content_link is not None: self.shared_content_link = shared_content_link @@ -81263,20 +84100,22 @@ def __init__(self, shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRequestAccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRequestAccessDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRequestAccessDetails_validator = bv.Struct(SharedContentRequestAccessDetails) -class SharedContentRequestAccessType(bb.Struct): +class SharedContentRequestAccessType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81285,10 +84124,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRequestAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRequestAccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRequestAccessType_validator = bv.Struct(SharedContentRequestAccessType) + class SharedContentRestoreInviteesDetails(bb.Struct): """ Restored shared file/folder invitees. @@ -81300,15 +84143,13 @@ class SharedContentRestoreInviteesDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_invitees_value', + "_shared_content_access_level_value", + "_invitees_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - invitees=None): + def __init__(self, shared_content_access_level=None, invitees=None): self._shared_content_access_level_value = bb.NOT_SET self._invitees_value = bb.NOT_SET if shared_content_access_level is not None: @@ -81323,20 +84164,22 @@ def __init__(self, invitees = bb.Attribute("invitees") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRestoreInviteesDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRestoreInviteesDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRestoreInviteesDetails_validator = bv.Struct(SharedContentRestoreInviteesDetails) -class SharedContentRestoreInviteesType(bb.Struct): +class SharedContentRestoreInviteesType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81345,10 +84188,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRestoreInviteesType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRestoreInviteesType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRestoreInviteesType_validator = bv.Struct(SharedContentRestoreInviteesType) + class SharedContentRestoreMemberDetails(bb.Struct): """ Restored users and/or groups to membership of shared file/folder. @@ -81358,13 +84205,12 @@ class SharedContentRestoreMemberDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', + "_shared_content_access_level_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None): + def __init__(self, shared_content_access_level=None): self._shared_content_access_level_value = bb.NOT_SET if shared_content_access_level is not None: self.shared_content_access_level = shared_content_access_level @@ -81373,20 +84219,22 @@ def __init__(self, shared_content_access_level = bb.Attribute("shared_content_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRestoreMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRestoreMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRestoreMemberDetails_validator = bv.Struct(SharedContentRestoreMemberDetails) -class SharedContentRestoreMemberType(bb.Struct): +class SharedContentRestoreMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81395,17 +84243,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentRestoreMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentRestoreMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentRestoreMemberType_validator = bv.Struct(SharedContentRestoreMemberType) + class SharedContentUnshareDetails(bb.Struct): """ Unshared file/folder by clearing membership. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -81413,20 +84264,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentUnshareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentUnshareDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentUnshareDetails_validator = bv.Struct(SharedContentUnshareDetails) -class SharedContentUnshareType(bb.Struct): +class SharedContentUnshareType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81435,10 +84288,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentUnshareType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentUnshareType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentUnshareType_validator = bv.Struct(SharedContentUnshareType) + class SharedContentViewDetails(bb.Struct): """ Previewed shared file/folder. @@ -81452,17 +84309,19 @@ class SharedContentViewDetails(bb.Struct): """ __slots__ = [ - '_shared_content_link_value', - '_shared_content_owner_value', - '_shared_content_access_level_value', + "_shared_content_link_value", + "_shared_content_owner_value", + "_shared_content_access_level_value", ] _has_required_fields = True - def __init__(self, - shared_content_link=None, - shared_content_access_level=None, - shared_content_owner=None): + def __init__( + self, + shared_content_link=None, + shared_content_access_level=None, + shared_content_owner=None, + ): self._shared_content_link_value = bb.NOT_SET self._shared_content_owner_value = bb.NOT_SET self._shared_content_access_level_value = bb.NOT_SET @@ -81483,20 +84342,22 @@ def __init__(self, shared_content_access_level = bb.Attribute("shared_content_access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentViewDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentViewDetails_validator = bv.Struct(SharedContentViewDetails) -class SharedContentViewType(bb.Struct): +class SharedContentViewType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81505,10 +84366,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedContentViewType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedContentViewType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedContentViewType_validator = bv.Struct(SharedContentViewType) + class SharedFolderChangeLinkPolicyDetails(bb.Struct): """ Changed who can access shared folder via link. @@ -81521,15 +84386,13 @@ class SharedFolderChangeLinkPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -81544,20 +84407,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeLinkPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderChangeLinkPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderChangeLinkPolicyDetails_validator = bv.Struct(SharedFolderChangeLinkPolicyDetails) -class SharedFolderChangeLinkPolicyType(bb.Struct): +class SharedFolderChangeLinkPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81566,10 +84431,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeLinkPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderChangeLinkPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderChangeLinkPolicyType_validator = bv.Struct(SharedFolderChangeLinkPolicyType) + class SharedFolderChangeMembersInheritancePolicyDetails(bb.Struct): """ Changed whether shared folder inherits members from parent folder. @@ -81582,15 +84451,13 @@ class SharedFolderChangeMembersInheritancePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -81605,20 +84472,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeMembersInheritancePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderChangeMembersInheritancePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedFolderChangeMembersInheritancePolicyDetails_validator = bv.Struct(SharedFolderChangeMembersInheritancePolicyDetails) -class SharedFolderChangeMembersInheritancePolicyType(bb.Struct): +SharedFolderChangeMembersInheritancePolicyDetails_validator = bv.Struct( + SharedFolderChangeMembersInheritancePolicyDetails +) + +class SharedFolderChangeMembersInheritancePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81627,9 +84498,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeMembersInheritancePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderChangeMembersInheritancePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharedFolderChangeMembersInheritancePolicyType_validator = bv.Struct( + SharedFolderChangeMembersInheritancePolicyType +) -SharedFolderChangeMembersInheritancePolicyType_validator = bv.Struct(SharedFolderChangeMembersInheritancePolicyType) class SharedFolderChangeMembersManagementPolicyDetails(bb.Struct): """ @@ -81643,15 +84520,13 @@ class SharedFolderChangeMembersManagementPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -81666,20 +84541,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeMembersManagementPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderChangeMembersManagementPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedFolderChangeMembersManagementPolicyDetails_validator = bv.Struct(SharedFolderChangeMembersManagementPolicyDetails) -class SharedFolderChangeMembersManagementPolicyType(bb.Struct): +SharedFolderChangeMembersManagementPolicyDetails_validator = bv.Struct( + SharedFolderChangeMembersManagementPolicyDetails +) + +class SharedFolderChangeMembersManagementPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81688,9 +84567,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeMembersManagementPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderChangeMembersManagementPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharedFolderChangeMembersManagementPolicyType_validator = bv.Struct( + SharedFolderChangeMembersManagementPolicyType +) -SharedFolderChangeMembersManagementPolicyType_validator = bv.Struct(SharedFolderChangeMembersManagementPolicyType) class SharedFolderChangeMembersPolicyDetails(bb.Struct): """ @@ -81704,15 +84589,13 @@ class SharedFolderChangeMembersPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -81727,20 +84610,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeMembersPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderChangeMembersPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderChangeMembersPolicyDetails_validator = bv.Struct(SharedFolderChangeMembersPolicyDetails) -class SharedFolderChangeMembersPolicyType(bb.Struct): +class SharedFolderChangeMembersPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81749,10 +84634,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderChangeMembersPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderChangeMembersPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderChangeMembersPolicyType_validator = bv.Struct(SharedFolderChangeMembersPolicyType) + class SharedFolderCreateDetails(bb.Struct): """ Created shared folder. @@ -81762,13 +84651,12 @@ class SharedFolderCreateDetails(bb.Struct): """ __slots__ = [ - '_target_ns_id_value', + "_target_ns_id_value", ] _has_required_fields = False - def __init__(self, - target_ns_id=None): + def __init__(self, target_ns_id=None): self._target_ns_id_value = bb.NOT_SET if target_ns_id is not None: self.target_ns_id = target_ns_id @@ -81777,20 +84665,22 @@ def __init__(self, target_ns_id = bb.Attribute("target_ns_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderCreateDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderCreateDetails_validator = bv.Struct(SharedFolderCreateDetails) -class SharedFolderCreateType(bb.Struct): +class SharedFolderCreateType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81799,17 +84689,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderCreateType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderCreateType_validator = bv.Struct(SharedFolderCreateType) + class SharedFolderDeclineInvitationDetails(bb.Struct): """ Declined team member's invite to shared folder. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -81817,20 +84710,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderDeclineInvitationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderDeclineInvitationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderDeclineInvitationDetails_validator = bv.Struct(SharedFolderDeclineInvitationDetails) -class SharedFolderDeclineInvitationType(bb.Struct): +class SharedFolderDeclineInvitationType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81839,10 +84734,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderDeclineInvitationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderDeclineInvitationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderDeclineInvitationType_validator = bv.Struct(SharedFolderDeclineInvitationType) + class SharedFolderMembersInheritancePolicy(bb.Union): """ Specifies if a shared folder inherits its members from the parent folder. @@ -81852,7 +84751,7 @@ class SharedFolderMembersInheritancePolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition dont_inherit_members = None # Attribute is overwritten below the class definition @@ -81866,7 +84765,7 @@ def is_dont_inherit_members(self): :rtype: bool """ - return self._tag == 'dont_inherit_members' + return self._tag == "dont_inherit_members" def is_inherit_members(self): """ @@ -81874,7 +84773,7 @@ def is_inherit_members(self): :rtype: bool """ - return self._tag == 'inherit_members' + return self._tag == "inherit_members" def is_other(self): """ @@ -81882,20 +84781,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMembersInheritancePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderMembersInheritancePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderMembersInheritancePolicy_validator = bv.Union(SharedFolderMembersInheritancePolicy) + class SharedFolderMountDetails(bb.Struct): """ Added shared folder to own Dropbox. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -81903,20 +84805,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMountDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderMountDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderMountDetails_validator = bv.Struct(SharedFolderMountDetails) -class SharedFolderMountType(bb.Struct): +class SharedFolderMountType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -81925,10 +84829,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMountType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderMountType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderMountType_validator = bv.Struct(SharedFolderMountType) + class SharedFolderNestDetails(bb.Struct): """ Changed parent of shared folder. @@ -81944,19 +84852,21 @@ class SharedFolderNestDetails(bb.Struct): """ __slots__ = [ - '_previous_parent_ns_id_value', - '_new_parent_ns_id_value', - '_previous_ns_path_value', - '_new_ns_path_value', + "_previous_parent_ns_id_value", + "_new_parent_ns_id_value", + "_previous_ns_path_value", + "_new_ns_path_value", ] _has_required_fields = False - def __init__(self, - previous_parent_ns_id=None, - new_parent_ns_id=None, - previous_ns_path=None, - new_ns_path=None): + def __init__( + self, + previous_parent_ns_id=None, + new_parent_ns_id=None, + previous_ns_path=None, + new_ns_path=None, + ): self._previous_parent_ns_id_value = bb.NOT_SET self._new_parent_ns_id_value = bb.NOT_SET self._previous_ns_path_value = bb.NOT_SET @@ -81983,20 +84893,22 @@ def __init__(self, new_ns_path = bb.Attribute("new_ns_path", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderNestDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderNestDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderNestDetails_validator = bv.Struct(SharedFolderNestDetails) -class SharedFolderNestType(bb.Struct): +class SharedFolderNestType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82005,10 +84917,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderNestType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderNestType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderNestType_validator = bv.Struct(SharedFolderNestType) + class SharedFolderTransferOwnershipDetails(bb.Struct): """ Transferred ownership of shared folder to another member. @@ -82020,15 +84936,13 @@ class SharedFolderTransferOwnershipDetails(bb.Struct): """ __slots__ = [ - '_previous_owner_email_value', - '_new_owner_email_value', + "_previous_owner_email_value", + "_new_owner_email_value", ] _has_required_fields = True - def __init__(self, - new_owner_email=None, - previous_owner_email=None): + def __init__(self, new_owner_email=None, previous_owner_email=None): self._previous_owner_email_value = bb.NOT_SET self._new_owner_email_value = bb.NOT_SET if previous_owner_email is not None: @@ -82043,20 +84957,22 @@ def __init__(self, new_owner_email = bb.Attribute("new_owner_email") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderTransferOwnershipDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderTransferOwnershipDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderTransferOwnershipDetails_validator = bv.Struct(SharedFolderTransferOwnershipDetails) -class SharedFolderTransferOwnershipType(bb.Struct): +class SharedFolderTransferOwnershipType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82065,17 +84981,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderTransferOwnershipType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderTransferOwnershipType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderTransferOwnershipType_validator = bv.Struct(SharedFolderTransferOwnershipType) + class SharedFolderUnmountDetails(bb.Struct): """ Deleted shared folder from Dropbox. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -82083,20 +85002,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderUnmountDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderUnmountDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderUnmountDetails_validator = bv.Struct(SharedFolderUnmountDetails) -class SharedFolderUnmountType(bb.Struct): +class SharedFolderUnmountType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82105,17 +85026,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderUnmountType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderUnmountType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderUnmountType_validator = bv.Struct(SharedFolderUnmountType) + class SharedFoldersCreateReportDetails(bb.Struct): """ Created shared folders report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -82123,10 +85047,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFoldersCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFoldersCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFoldersCreateReportDetails_validator = bv.Struct(SharedFoldersCreateReportDetails) + class SharedFoldersCreateReportFailedDetails(bb.Struct): """ Couldn't generate shared folders report. @@ -82136,13 +85064,12 @@ class SharedFoldersCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -82151,20 +85078,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFoldersCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFoldersCreateReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFoldersCreateReportFailedDetails_validator = bv.Struct(SharedFoldersCreateReportFailedDetails) -class SharedFoldersCreateReportFailedType(bb.Struct): +class SharedFoldersCreateReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82173,20 +85102,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFoldersCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFoldersCreateReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFoldersCreateReportFailedType_validator = bv.Struct(SharedFoldersCreateReportFailedType) -class SharedFoldersCreateReportType(bb.Struct): +class SharedFoldersCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82195,10 +85126,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFoldersCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFoldersCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFoldersCreateReportType_validator = bv.Struct(SharedFoldersCreateReportType) + class SharedLinkAccessLevel(bb.Union): """ Shared link access level. @@ -82208,7 +85143,7 @@ class SharedLinkAccessLevel(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition none = None # Attribute is overwritten below the class definition @@ -82224,7 +85159,7 @@ def is_none(self): :rtype: bool """ - return self._tag == 'none' + return self._tag == "none" def is_reader(self): """ @@ -82232,7 +85167,7 @@ def is_reader(self): :rtype: bool """ - return self._tag == 'reader' + return self._tag == "reader" def is_writer(self): """ @@ -82240,7 +85175,7 @@ def is_writer(self): :rtype: bool """ - return self._tag == 'writer' + return self._tag == "writer" def is_other(self): """ @@ -82248,13 +85183,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAccessLevel, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkAccessLevel, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkAccessLevel_validator = bv.Union(SharedLinkAccessLevel) + class SharedLinkAddExpiryDetails(bb.Struct): """ Added shared link expiration date. @@ -82266,15 +85205,13 @@ class SharedLinkAddExpiryDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_is_consolidation_action_value', + "_new_value_value", + "_is_consolidation_action_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - is_consolidation_action=None): + def __init__(self, new_value=None, is_consolidation_action=None): self._new_value_value = bb.NOT_SET self._is_consolidation_action_value = bb.NOT_SET if new_value is not None: @@ -82289,20 +85226,22 @@ def __init__(self, is_consolidation_action = bb.Attribute("is_consolidation_action", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAddExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkAddExpiryDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkAddExpiryDetails_validator = bv.Struct(SharedLinkAddExpiryDetails) -class SharedLinkAddExpiryType(bb.Struct): +class SharedLinkAddExpiryType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82311,10 +85250,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAddExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkAddExpiryType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkAddExpiryType_validator = bv.Struct(SharedLinkAddExpiryType) + class SharedLinkChangeExpiryDetails(bb.Struct): """ Changed shared link expiration date. @@ -82330,17 +85273,14 @@ class SharedLinkChangeExpiryDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', - '_is_consolidation_action_value', + "_new_value_value", + "_previous_value_value", + "_is_consolidation_action_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None, - is_consolidation_action=None): + def __init__(self, new_value=None, previous_value=None, is_consolidation_action=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._is_consolidation_action_value = bb.NOT_SET @@ -82361,20 +85301,22 @@ def __init__(self, is_consolidation_action = bb.Attribute("is_consolidation_action", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkChangeExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkChangeExpiryDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkChangeExpiryDetails_validator = bv.Struct(SharedLinkChangeExpiryDetails) -class SharedLinkChangeExpiryType(bb.Struct): +class SharedLinkChangeExpiryType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82383,10 +85325,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkChangeExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkChangeExpiryType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkChangeExpiryType_validator = bv.Struct(SharedLinkChangeExpiryType) + class SharedLinkChangeVisibilityDetails(bb.Struct): """ Changed visibility of shared link. @@ -82401,17 +85347,14 @@ class SharedLinkChangeVisibilityDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', - '_is_consolidation_action_value', + "_new_value_value", + "_previous_value_value", + "_is_consolidation_action_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None, - is_consolidation_action=None): + def __init__(self, new_value=None, previous_value=None, is_consolidation_action=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._is_consolidation_action_value = bb.NOT_SET @@ -82432,20 +85375,22 @@ def __init__(self, is_consolidation_action = bb.Attribute("is_consolidation_action", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkChangeVisibilityDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkChangeVisibilityDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkChangeVisibilityDetails_validator = bv.Struct(SharedLinkChangeVisibilityDetails) -class SharedLinkChangeVisibilityType(bb.Struct): +class SharedLinkChangeVisibilityType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82454,10 +85399,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkChangeVisibilityType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkChangeVisibilityType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkChangeVisibilityType_validator = bv.Struct(SharedLinkChangeVisibilityType) + class SharedLinkCopyDetails(bb.Struct): """ Added file/folder to Dropbox from shared link. @@ -82467,13 +85416,12 @@ class SharedLinkCopyDetails(bb.Struct): """ __slots__ = [ - '_shared_link_owner_value', + "_shared_link_owner_value", ] _has_required_fields = False - def __init__(self, - shared_link_owner=None): + def __init__(self, shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -82482,20 +85430,22 @@ def __init__(self, shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCopyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkCopyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkCopyDetails_validator = bv.Struct(SharedLinkCopyDetails) -class SharedLinkCopyType(bb.Struct): +class SharedLinkCopyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82504,10 +85454,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCopyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkCopyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkCopyType_validator = bv.Struct(SharedLinkCopyType) + class SharedLinkCreateDetails(bb.Struct): """ Created shared link. @@ -82518,35 +85472,38 @@ class SharedLinkCreateDetails(bb.Struct): """ __slots__ = [ - '_shared_link_access_level_value', + "_shared_link_access_level_value", ] _has_required_fields = False - def __init__(self, - shared_link_access_level=None): + def __init__(self, shared_link_access_level=None): self._shared_link_access_level_value = bb.NOT_SET if shared_link_access_level is not None: self.shared_link_access_level = shared_link_access_level # Instance attribute type: SharedLinkAccessLevel (validator is set below) - shared_link_access_level = bb.Attribute("shared_link_access_level", nullable=True, user_defined=True) + shared_link_access_level = bb.Attribute( + "shared_link_access_level", nullable=True, user_defined=True + ) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkCreateDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkCreateDetails_validator = bv.Struct(SharedLinkCreateDetails) -class SharedLinkCreateType(bb.Struct): +class SharedLinkCreateType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82555,10 +85512,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkCreateType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkCreateType_validator = bv.Struct(SharedLinkCreateType) + class SharedLinkDefaultPermissionsPolicy(bb.Union): """ Policy for deciding the default permissions granted through shared links @@ -82568,7 +85529,7 @@ class SharedLinkDefaultPermissionsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -82584,7 +85545,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_edit(self): """ @@ -82592,7 +85553,7 @@ def is_edit(self): :rtype: bool """ - return self._tag == 'edit' + return self._tag == "edit" def is_view(self): """ @@ -82600,7 +85561,7 @@ def is_view(self): :rtype: bool """ - return self._tag == 'view' + return self._tag == "view" def is_other(self): """ @@ -82608,13 +85569,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDefaultPermissionsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkDefaultPermissionsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkDefaultPermissionsPolicy_validator = bv.Union(SharedLinkDefaultPermissionsPolicy) + class SharedLinkDefaultPermissionsPolicyChangedDetails(bb.Struct): """ Changed shared link default permissions policy for team. @@ -82626,15 +85591,13 @@ class SharedLinkDefaultPermissionsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -82649,20 +85612,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDefaultPermissionsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkDefaultPermissionsPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedLinkDefaultPermissionsPolicyChangedDetails_validator = bv.Struct(SharedLinkDefaultPermissionsPolicyChangedDetails) -class SharedLinkDefaultPermissionsPolicyChangedType(bb.Struct): +SharedLinkDefaultPermissionsPolicyChangedDetails_validator = bv.Struct( + SharedLinkDefaultPermissionsPolicyChangedDetails +) + +class SharedLinkDefaultPermissionsPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82671,9 +85638,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDefaultPermissionsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkDefaultPermissionsPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharedLinkDefaultPermissionsPolicyChangedType_validator = bv.Struct( + SharedLinkDefaultPermissionsPolicyChangedType +) -SharedLinkDefaultPermissionsPolicyChangedType_validator = bv.Struct(SharedLinkDefaultPermissionsPolicyChangedType) class SharedLinkDisableDetails(bb.Struct): """ @@ -82684,13 +85657,12 @@ class SharedLinkDisableDetails(bb.Struct): """ __slots__ = [ - '_shared_link_owner_value', + "_shared_link_owner_value", ] _has_required_fields = False - def __init__(self, - shared_link_owner=None): + def __init__(self, shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -82699,20 +85671,22 @@ def __init__(self, shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDisableDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkDisableDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkDisableDetails_validator = bv.Struct(SharedLinkDisableDetails) -class SharedLinkDisableType(bb.Struct): +class SharedLinkDisableType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82721,10 +85695,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDisableType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkDisableType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkDisableType_validator = bv.Struct(SharedLinkDisableType) + class SharedLinkDownloadDetails(bb.Struct): """ Downloaded file/folder from shared link. @@ -82734,13 +85712,12 @@ class SharedLinkDownloadDetails(bb.Struct): """ __slots__ = [ - '_shared_link_owner_value', + "_shared_link_owner_value", ] _has_required_fields = False - def __init__(self, - shared_link_owner=None): + def __init__(self, shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -82749,20 +85726,22 @@ def __init__(self, shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkDownloadDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkDownloadDetails_validator = bv.Struct(SharedLinkDownloadDetails) -class SharedLinkDownloadType(bb.Struct): +class SharedLinkDownloadType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82771,10 +85750,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkDownloadType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkDownloadType_validator = bv.Struct(SharedLinkDownloadType) + class SharedLinkRemoveExpiryDetails(bb.Struct): """ Removed shared link expiration date. @@ -82785,13 +85768,12 @@ class SharedLinkRemoveExpiryDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - previous_value=None): + def __init__(self, previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -82800,20 +85782,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkRemoveExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkRemoveExpiryDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkRemoveExpiryDetails_validator = bv.Struct(SharedLinkRemoveExpiryDetails) -class SharedLinkRemoveExpiryType(bb.Struct): +class SharedLinkRemoveExpiryType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82822,17 +85806,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkRemoveExpiryType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkRemoveExpiryType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkRemoveExpiryType_validator = bv.Struct(SharedLinkRemoveExpiryType) + class SharedLinkRemoveVisitorDetails(bb.Struct): """ Removed link visitor. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -82840,20 +85827,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkRemoveVisitorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkRemoveVisitorDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkRemoveVisitorDetails_validator = bv.Struct(SharedLinkRemoveVisitorDetails) -class SharedLinkRemoveVisitorType(bb.Struct): +class SharedLinkRemoveVisitorType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82862,10 +85851,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkRemoveVisitorType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkRemoveVisitorType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkRemoveVisitorType_validator = bv.Struct(SharedLinkRemoveVisitorType) + class SharedLinkSettingsAddExpirationDetails(bb.Struct): """ Added an expiration date to the shared link. @@ -82880,17 +85873,14 @@ class SharedLinkSettingsAddExpirationDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_shared_content_link_value', - '_new_value_value', + "_shared_content_access_level_value", + "_shared_content_link_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - shared_content_link=None, - new_value=None): + def __init__(self, shared_content_access_level=None, shared_content_link=None, new_value=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -82911,20 +85901,22 @@ def __init__(self, new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAddExpirationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsAddExpirationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsAddExpirationDetails_validator = bv.Struct(SharedLinkSettingsAddExpirationDetails) -class SharedLinkSettingsAddExpirationType(bb.Struct): +class SharedLinkSettingsAddExpirationType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82933,10 +85925,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAddExpirationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsAddExpirationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsAddExpirationType_validator = bv.Struct(SharedLinkSettingsAddExpirationType) + class SharedLinkSettingsAddPasswordDetails(bb.Struct): """ Added a password to the shared link. @@ -82948,15 +85944,13 @@ class SharedLinkSettingsAddPasswordDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_shared_content_link_value', + "_shared_content_access_level_value", + "_shared_content_link_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - shared_content_link=None): + def __init__(self, shared_content_access_level=None, shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -82971,20 +85965,22 @@ def __init__(self, shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAddPasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsAddPasswordDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsAddPasswordDetails_validator = bv.Struct(SharedLinkSettingsAddPasswordDetails) -class SharedLinkSettingsAddPasswordType(bb.Struct): +class SharedLinkSettingsAddPasswordType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -82993,10 +85989,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAddPasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsAddPasswordType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsAddPasswordType_validator = bv.Struct(SharedLinkSettingsAddPasswordType) + class SharedLinkSettingsAllowDownloadDisabledDetails(bb.Struct): """ Disabled downloads. @@ -83008,15 +86008,13 @@ class SharedLinkSettingsAllowDownloadDisabledDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_shared_content_link_value', + "_shared_content_access_level_value", + "_shared_content_link_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - shared_content_link=None): + def __init__(self, shared_content_access_level=None, shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -83031,20 +86029,24 @@ def __init__(self, shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAllowDownloadDisabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsAllowDownloadDisabledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedLinkSettingsAllowDownloadDisabledDetails_validator = bv.Struct(SharedLinkSettingsAllowDownloadDisabledDetails) -class SharedLinkSettingsAllowDownloadDisabledType(bb.Struct): +SharedLinkSettingsAllowDownloadDisabledDetails_validator = bv.Struct( + SharedLinkSettingsAllowDownloadDisabledDetails +) + +class SharedLinkSettingsAllowDownloadDisabledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83053,9 +86055,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAllowDownloadDisabledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsAllowDownloadDisabledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharedLinkSettingsAllowDownloadDisabledType_validator = bv.Struct( + SharedLinkSettingsAllowDownloadDisabledType +) -SharedLinkSettingsAllowDownloadDisabledType_validator = bv.Struct(SharedLinkSettingsAllowDownloadDisabledType) class SharedLinkSettingsAllowDownloadEnabledDetails(bb.Struct): """ @@ -83068,15 +86076,13 @@ class SharedLinkSettingsAllowDownloadEnabledDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_shared_content_link_value', + "_shared_content_access_level_value", + "_shared_content_link_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - shared_content_link=None): + def __init__(self, shared_content_access_level=None, shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -83091,20 +86097,24 @@ def __init__(self, shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAllowDownloadEnabledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsAllowDownloadEnabledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedLinkSettingsAllowDownloadEnabledDetails_validator = bv.Struct(SharedLinkSettingsAllowDownloadEnabledDetails) -class SharedLinkSettingsAllowDownloadEnabledType(bb.Struct): +SharedLinkSettingsAllowDownloadEnabledDetails_validator = bv.Struct( + SharedLinkSettingsAllowDownloadEnabledDetails +) + +class SharedLinkSettingsAllowDownloadEnabledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83113,9 +86123,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsAllowDownloadEnabledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsAllowDownloadEnabledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharedLinkSettingsAllowDownloadEnabledType_validator = bv.Struct( + SharedLinkSettingsAllowDownloadEnabledType +) -SharedLinkSettingsAllowDownloadEnabledType_validator = bv.Struct(SharedLinkSettingsAllowDownloadEnabledType) class SharedLinkSettingsChangeAudienceDetails(bb.Struct): """ @@ -83132,19 +86148,21 @@ class SharedLinkSettingsChangeAudienceDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_shared_content_link_value', - '_new_value_value', - '_previous_value_value', + "_shared_content_access_level_value", + "_shared_content_link_value", + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - new_value=None, - shared_content_link=None, - previous_value=None): + def __init__( + self, + shared_content_access_level=None, + new_value=None, + shared_content_link=None, + previous_value=None, + ): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -83171,20 +86189,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsChangeAudienceDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsChangeAudienceDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedLinkSettingsChangeAudienceDetails_validator = bv.Struct(SharedLinkSettingsChangeAudienceDetails) -class SharedLinkSettingsChangeAudienceType(bb.Struct): +SharedLinkSettingsChangeAudienceDetails_validator = bv.Struct( + SharedLinkSettingsChangeAudienceDetails +) + +class SharedLinkSettingsChangeAudienceType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83193,10 +86215,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsChangeAudienceType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsChangeAudienceType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsChangeAudienceType_validator = bv.Struct(SharedLinkSettingsChangeAudienceType) + class SharedLinkSettingsChangeExpirationDetails(bb.Struct): """ Changed the expiration date of the shared link. @@ -83214,19 +86240,21 @@ class SharedLinkSettingsChangeExpirationDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_shared_content_link_value', - '_new_value_value', - '_previous_value_value', + "_shared_content_access_level_value", + "_shared_content_link_value", + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - shared_content_link=None, - new_value=None, - previous_value=None): + def __init__( + self, + shared_content_access_level=None, + shared_content_link=None, + new_value=None, + previous_value=None, + ): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET self._new_value_value = bb.NOT_SET @@ -83253,20 +86281,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsChangeExpirationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsChangeExpirationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedLinkSettingsChangeExpirationDetails_validator = bv.Struct(SharedLinkSettingsChangeExpirationDetails) -class SharedLinkSettingsChangeExpirationType(bb.Struct): +SharedLinkSettingsChangeExpirationDetails_validator = bv.Struct( + SharedLinkSettingsChangeExpirationDetails +) + +class SharedLinkSettingsChangeExpirationType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83275,10 +86307,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsChangeExpirationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsChangeExpirationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsChangeExpirationType_validator = bv.Struct(SharedLinkSettingsChangeExpirationType) + class SharedLinkSettingsChangePasswordDetails(bb.Struct): """ Changed the password of the shared link. @@ -83290,15 +86326,13 @@ class SharedLinkSettingsChangePasswordDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_shared_content_link_value', + "_shared_content_access_level_value", + "_shared_content_link_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - shared_content_link=None): + def __init__(self, shared_content_access_level=None, shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -83313,20 +86347,24 @@ def __init__(self, shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsChangePasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsChangePasswordDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedLinkSettingsChangePasswordDetails_validator = bv.Struct(SharedLinkSettingsChangePasswordDetails) -class SharedLinkSettingsChangePasswordType(bb.Struct): +SharedLinkSettingsChangePasswordDetails_validator = bv.Struct( + SharedLinkSettingsChangePasswordDetails +) + +class SharedLinkSettingsChangePasswordType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83335,10 +86373,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsChangePasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsChangePasswordType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsChangePasswordType_validator = bv.Struct(SharedLinkSettingsChangePasswordType) + class SharedLinkSettingsRemoveExpirationDetails(bb.Struct): """ Removed the expiration date from the shared link. @@ -83353,17 +86395,19 @@ class SharedLinkSettingsRemoveExpirationDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_shared_content_link_value', - '_previous_value_value', + "_shared_content_access_level_value", + "_shared_content_link_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - shared_content_link=None, - previous_value=None): + def __init__( + self, + shared_content_access_level=None, + shared_content_link=None, + previous_value=None, + ): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET @@ -83384,20 +86428,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsRemoveExpirationDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsRemoveExpirationDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedLinkSettingsRemoveExpirationDetails_validator = bv.Struct(SharedLinkSettingsRemoveExpirationDetails) -class SharedLinkSettingsRemoveExpirationType(bb.Struct): +SharedLinkSettingsRemoveExpirationDetails_validator = bv.Struct( + SharedLinkSettingsRemoveExpirationDetails +) + +class SharedLinkSettingsRemoveExpirationType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83406,10 +86454,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsRemoveExpirationType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsRemoveExpirationType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsRemoveExpirationType_validator = bv.Struct(SharedLinkSettingsRemoveExpirationType) + class SharedLinkSettingsRemovePasswordDetails(bb.Struct): """ Removed the password from the shared link. @@ -83421,15 +86473,13 @@ class SharedLinkSettingsRemovePasswordDetails(bb.Struct): """ __slots__ = [ - '_shared_content_access_level_value', - '_shared_content_link_value', + "_shared_content_access_level_value", + "_shared_content_link_value", ] _has_required_fields = True - def __init__(self, - shared_content_access_level=None, - shared_content_link=None): + def __init__(self, shared_content_access_level=None, shared_content_link=None): self._shared_content_access_level_value = bb.NOT_SET self._shared_content_link_value = bb.NOT_SET if shared_content_access_level is not None: @@ -83444,20 +86494,24 @@ def __init__(self, shared_content_link = bb.Attribute("shared_content_link", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsRemovePasswordDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsRemovePasswordDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharedLinkSettingsRemovePasswordDetails_validator = bv.Struct(SharedLinkSettingsRemovePasswordDetails) -class SharedLinkSettingsRemovePasswordType(bb.Struct): +SharedLinkSettingsRemovePasswordDetails_validator = bv.Struct( + SharedLinkSettingsRemovePasswordDetails +) + +class SharedLinkSettingsRemovePasswordType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83466,10 +86520,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkSettingsRemovePasswordType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkSettingsRemovePasswordType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkSettingsRemovePasswordType_validator = bv.Struct(SharedLinkSettingsRemovePasswordType) + class SharedLinkShareDetails(bb.Struct): """ Added members as audience of shared link. @@ -83481,15 +86539,13 @@ class SharedLinkShareDetails(bb.Struct): """ __slots__ = [ - '_shared_link_owner_value', - '_external_users_value', + "_shared_link_owner_value", + "_external_users_value", ] _has_required_fields = False - def __init__(self, - shared_link_owner=None, - external_users=None): + def __init__(self, shared_link_owner=None, external_users=None): self._shared_link_owner_value = bb.NOT_SET self._external_users_value = bb.NOT_SET if shared_link_owner is not None: @@ -83504,20 +86560,22 @@ def __init__(self, external_users = bb.Attribute("external_users", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkShareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkShareDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkShareDetails_validator = bv.Struct(SharedLinkShareDetails) -class SharedLinkShareType(bb.Struct): +class SharedLinkShareType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83526,10 +86584,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkShareType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkShareType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkShareType_validator = bv.Struct(SharedLinkShareType) + class SharedLinkViewDetails(bb.Struct): """ Opened shared link. @@ -83539,13 +86601,12 @@ class SharedLinkViewDetails(bb.Struct): """ __slots__ = [ - '_shared_link_owner_value', + "_shared_link_owner_value", ] _has_required_fields = False - def __init__(self, - shared_link_owner=None): + def __init__(self, shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -83554,20 +86615,22 @@ def __init__(self, shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkViewDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkViewDetails_validator = bv.Struct(SharedLinkViewDetails) -class SharedLinkViewType(bb.Struct): +class SharedLinkViewType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83576,10 +86639,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkViewType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkViewType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkViewType_validator = bv.Struct(SharedLinkViewType) + class SharedLinkVisibility(bb.Union): """ Defines who has access to a shared link. @@ -83589,7 +86656,7 @@ class SharedLinkVisibility(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_one = None # Attribute is overwritten below the class definition @@ -83607,7 +86674,7 @@ def is_no_one(self): :rtype: bool """ - return self._tag == 'no_one' + return self._tag == "no_one" def is_password(self): """ @@ -83615,7 +86682,7 @@ def is_password(self): :rtype: bool """ - return self._tag == 'password' + return self._tag == "password" def is_public(self): """ @@ -83623,7 +86690,7 @@ def is_public(self): :rtype: bool """ - return self._tag == 'public' + return self._tag == "public" def is_team_only(self): """ @@ -83631,7 +86698,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_other(self): """ @@ -83639,20 +86706,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkVisibility, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkVisibility, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkVisibility_validator = bv.Union(SharedLinkVisibility) + class SharedNoteOpenedDetails(bb.Struct): """ Opened shared Paper doc. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -83660,20 +86730,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedNoteOpenedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedNoteOpenedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedNoteOpenedDetails_validator = bv.Struct(SharedNoteOpenedDetails) -class SharedNoteOpenedType(bb.Struct): +class SharedNoteOpenedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83682,10 +86754,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedNoteOpenedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedNoteOpenedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedNoteOpenedType_validator = bv.Struct(SharedNoteOpenedType) + class SharingChangeFolderJoinPolicyDetails(bb.Struct): """ Changed whether team members can join shared folders owned outside team. @@ -83698,15 +86774,13 @@ class SharingChangeFolderJoinPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -83721,20 +86795,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeFolderJoinPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeFolderJoinPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingChangeFolderJoinPolicyDetails_validator = bv.Struct(SharingChangeFolderJoinPolicyDetails) -class SharingChangeFolderJoinPolicyType(bb.Struct): +class SharingChangeFolderJoinPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83743,10 +86819,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeFolderJoinPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeFolderJoinPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingChangeFolderJoinPolicyType_validator = bv.Struct(SharingChangeFolderJoinPolicyType) + class SharingChangeLinkAllowChangeExpirationPolicyDetails(bb.Struct): """ Changed the allow remove or change expiration policy for the links shared @@ -83759,15 +86839,13 @@ class SharingChangeLinkAllowChangeExpirationPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -83782,20 +86860,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkAllowChangeExpirationPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super( + SharingChangeLinkAllowChangeExpirationPolicyDetails, self + )._process_custom_annotations(annotation_type, field_path, processor) -SharingChangeLinkAllowChangeExpirationPolicyDetails_validator = bv.Struct(SharingChangeLinkAllowChangeExpirationPolicyDetails) -class SharingChangeLinkAllowChangeExpirationPolicyType(bb.Struct): +SharingChangeLinkAllowChangeExpirationPolicyDetails_validator = bv.Struct( + SharingChangeLinkAllowChangeExpirationPolicyDetails +) + +class SharingChangeLinkAllowChangeExpirationPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83804,9 +86886,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkAllowChangeExpirationPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeLinkAllowChangeExpirationPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharingChangeLinkAllowChangeExpirationPolicyType_validator = bv.Struct( + SharingChangeLinkAllowChangeExpirationPolicyType +) -SharingChangeLinkAllowChangeExpirationPolicyType_validator = bv.Struct(SharingChangeLinkAllowChangeExpirationPolicyType) class SharingChangeLinkDefaultExpirationPolicyDetails(bb.Struct): """ @@ -83819,15 +86907,13 @@ class SharingChangeLinkDefaultExpirationPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -83842,20 +86928,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkDefaultExpirationPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeLinkDefaultExpirationPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharingChangeLinkDefaultExpirationPolicyDetails_validator = bv.Struct(SharingChangeLinkDefaultExpirationPolicyDetails) -class SharingChangeLinkDefaultExpirationPolicyType(bb.Struct): +SharingChangeLinkDefaultExpirationPolicyDetails_validator = bv.Struct( + SharingChangeLinkDefaultExpirationPolicyDetails +) + +class SharingChangeLinkDefaultExpirationPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83864,9 +86954,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkDefaultExpirationPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeLinkDefaultExpirationPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharingChangeLinkDefaultExpirationPolicyType_validator = bv.Struct( + SharingChangeLinkDefaultExpirationPolicyType +) -SharingChangeLinkDefaultExpirationPolicyType_validator = bv.Struct(SharingChangeLinkDefaultExpirationPolicyType) class SharingChangeLinkEnforcePasswordPolicyDetails(bb.Struct): """ @@ -83879,15 +86975,13 @@ class SharingChangeLinkEnforcePasswordPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -83902,20 +86996,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkEnforcePasswordPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeLinkEnforcePasswordPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SharingChangeLinkEnforcePasswordPolicyDetails_validator = bv.Struct(SharingChangeLinkEnforcePasswordPolicyDetails) -class SharingChangeLinkEnforcePasswordPolicyType(bb.Struct): +SharingChangeLinkEnforcePasswordPolicyDetails_validator = bv.Struct( + SharingChangeLinkEnforcePasswordPolicyDetails +) + +class SharingChangeLinkEnforcePasswordPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83924,9 +87022,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkEnforcePasswordPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeLinkEnforcePasswordPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharingChangeLinkEnforcePasswordPolicyType_validator = bv.Struct( + SharingChangeLinkEnforcePasswordPolicyType +) -SharingChangeLinkEnforcePasswordPolicyType_validator = bv.Struct(SharingChangeLinkEnforcePasswordPolicyType) class SharingChangeLinkPolicyDetails(bb.Struct): """ @@ -83941,15 +87045,13 @@ class SharingChangeLinkPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -83964,20 +87066,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeLinkPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingChangeLinkPolicyDetails_validator = bv.Struct(SharingChangeLinkPolicyDetails) -class SharingChangeLinkPolicyType(bb.Struct): +class SharingChangeLinkPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -83986,10 +87090,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeLinkPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeLinkPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingChangeLinkPolicyType_validator = bv.Struct(SharingChangeLinkPolicyType) + class SharingChangeMemberPolicyDetails(bb.Struct): """ Changed whether members can share files/folders outside team. @@ -84002,15 +87110,13 @@ class SharingChangeMemberPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -84025,20 +87131,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeMemberPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeMemberPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingChangeMemberPolicyDetails_validator = bv.Struct(SharingChangeMemberPolicyDetails) -class SharingChangeMemberPolicyType(bb.Struct): +class SharingChangeMemberPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84047,10 +87155,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingChangeMemberPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingChangeMemberPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingChangeMemberPolicyType_validator = bv.Struct(SharingChangeMemberPolicyType) + class SharingFolderJoinPolicy(bb.Union): """ Policy for controlling if team members can join shared folders owned by non @@ -84061,7 +87173,7 @@ class SharingFolderJoinPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition from_anyone = None # Attribute is overwritten below the class definition @@ -84075,7 +87187,7 @@ def is_from_anyone(self): :rtype: bool """ - return self._tag == 'from_anyone' + return self._tag == "from_anyone" def is_from_team_only(self): """ @@ -84083,7 +87195,7 @@ def is_from_team_only(self): :rtype: bool """ - return self._tag == 'from_team_only' + return self._tag == "from_team_only" def is_other(self): """ @@ -84091,13 +87203,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingFolderJoinPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingFolderJoinPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingFolderJoinPolicy_validator = bv.Union(SharingFolderJoinPolicy) + class SharingLinkPolicy(bb.Union): """ Policy for controlling if team members can share links externally @@ -84107,7 +87223,7 @@ class SharingLinkPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default_no_one = None # Attribute is overwritten below the class definition @@ -84125,7 +87241,7 @@ def is_default_no_one(self): :rtype: bool """ - return self._tag == 'default_no_one' + return self._tag == "default_no_one" def is_default_private(self): """ @@ -84133,7 +87249,7 @@ def is_default_private(self): :rtype: bool """ - return self._tag == 'default_private' + return self._tag == "default_private" def is_default_public(self): """ @@ -84141,7 +87257,7 @@ def is_default_public(self): :rtype: bool """ - return self._tag == 'default_public' + return self._tag == "default_public" def is_only_private(self): """ @@ -84149,7 +87265,7 @@ def is_only_private(self): :rtype: bool """ - return self._tag == 'only_private' + return self._tag == "only_private" def is_other(self): """ @@ -84157,13 +87273,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingLinkPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingLinkPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingLinkPolicy_validator = bv.Union(SharingLinkPolicy) + class SharingMemberPolicy(bb.Union): """ External sharing policy @@ -84173,7 +87293,7 @@ class SharingMemberPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition allow = None # Attribute is overwritten below the class definition @@ -84189,7 +87309,7 @@ def is_allow(self): :rtype: bool """ - return self._tag == 'allow' + return self._tag == "allow" def is_forbid(self): """ @@ -84197,7 +87317,7 @@ def is_forbid(self): :rtype: bool """ - return self._tag == 'forbid' + return self._tag == "forbid" def is_forbid_with_exclusions(self): """ @@ -84205,7 +87325,7 @@ def is_forbid_with_exclusions(self): :rtype: bool """ - return self._tag == 'forbid_with_exclusions' + return self._tag == "forbid_with_exclusions" def is_other(self): """ @@ -84213,13 +87333,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingMemberPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharingMemberPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharingMemberPolicy_validator = bv.Union(SharingMemberPolicy) + class ShmodelDisableDownloadsDetails(bb.Struct): """ Disabled downloads for link. @@ -84229,13 +87353,12 @@ class ShmodelDisableDownloadsDetails(bb.Struct): """ __slots__ = [ - '_shared_link_owner_value', + "_shared_link_owner_value", ] _has_required_fields = False - def __init__(self, - shared_link_owner=None): + def __init__(self, shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -84244,20 +87367,22 @@ def __init__(self, shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelDisableDownloadsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShmodelDisableDownloadsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShmodelDisableDownloadsDetails_validator = bv.Struct(ShmodelDisableDownloadsDetails) -class ShmodelDisableDownloadsType(bb.Struct): +class ShmodelDisableDownloadsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84266,10 +87391,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelDisableDownloadsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShmodelDisableDownloadsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShmodelDisableDownloadsType_validator = bv.Struct(ShmodelDisableDownloadsType) + class ShmodelEnableDownloadsDetails(bb.Struct): """ Enabled downloads for link. @@ -84279,13 +87408,12 @@ class ShmodelEnableDownloadsDetails(bb.Struct): """ __slots__ = [ - '_shared_link_owner_value', + "_shared_link_owner_value", ] _has_required_fields = False - def __init__(self, - shared_link_owner=None): + def __init__(self, shared_link_owner=None): self._shared_link_owner_value = bb.NOT_SET if shared_link_owner is not None: self.shared_link_owner = shared_link_owner @@ -84294,20 +87422,22 @@ def __init__(self, shared_link_owner = bb.Attribute("shared_link_owner", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelEnableDownloadsDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShmodelEnableDownloadsDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShmodelEnableDownloadsDetails_validator = bv.Struct(ShmodelEnableDownloadsDetails) -class ShmodelEnableDownloadsType(bb.Struct): +class ShmodelEnableDownloadsType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84316,17 +87446,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelEnableDownloadsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShmodelEnableDownloadsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShmodelEnableDownloadsType_validator = bv.Struct(ShmodelEnableDownloadsType) + class ShmodelGroupShareDetails(bb.Struct): """ Shared link with group. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -84334,20 +87467,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelGroupShareDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShmodelGroupShareDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShmodelGroupShareDetails_validator = bv.Struct(ShmodelGroupShareDetails) -class ShmodelGroupShareType(bb.Struct): +class ShmodelGroupShareType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84356,10 +87491,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShmodelGroupShareType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShmodelGroupShareType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShmodelGroupShareType_validator = bv.Struct(ShmodelGroupShareType) + class ShowcaseAccessGrantedDetails(bb.Struct): """ Granted access to showcase. @@ -84369,13 +87508,12 @@ class ShowcaseAccessGrantedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -84384,20 +87522,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseAccessGrantedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseAccessGrantedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseAccessGrantedDetails_validator = bv.Struct(ShowcaseAccessGrantedDetails) -class ShowcaseAccessGrantedType(bb.Struct): +class ShowcaseAccessGrantedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84406,10 +87546,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseAccessGrantedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseAccessGrantedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseAccessGrantedType_validator = bv.Struct(ShowcaseAccessGrantedType) + class ShowcaseAddMemberDetails(bb.Struct): """ Added member to showcase. @@ -84419,13 +87563,12 @@ class ShowcaseAddMemberDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -84434,20 +87577,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseAddMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseAddMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseAddMemberDetails_validator = bv.Struct(ShowcaseAddMemberDetails) -class ShowcaseAddMemberType(bb.Struct): +class ShowcaseAddMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84456,10 +87601,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseAddMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseAddMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseAddMemberType_validator = bv.Struct(ShowcaseAddMemberType) + class ShowcaseArchivedDetails(bb.Struct): """ Archived showcase. @@ -84469,13 +87618,12 @@ class ShowcaseArchivedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -84484,20 +87632,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseArchivedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseArchivedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseArchivedDetails_validator = bv.Struct(ShowcaseArchivedDetails) -class ShowcaseArchivedType(bb.Struct): +class ShowcaseArchivedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84506,10 +87656,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseArchivedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseArchivedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseArchivedType_validator = bv.Struct(ShowcaseArchivedType) + class ShowcaseChangeDownloadPolicyDetails(bb.Struct): """ Enabled/disabled downloading files from Dropbox Showcase for team. @@ -84521,15 +87675,13 @@ class ShowcaseChangeDownloadPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -84544,20 +87696,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeDownloadPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseChangeDownloadPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseChangeDownloadPolicyDetails_validator = bv.Struct(ShowcaseChangeDownloadPolicyDetails) -class ShowcaseChangeDownloadPolicyType(bb.Struct): +class ShowcaseChangeDownloadPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84566,10 +87720,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeDownloadPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseChangeDownloadPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseChangeDownloadPolicyType_validator = bv.Struct(ShowcaseChangeDownloadPolicyType) + class ShowcaseChangeEnabledPolicyDetails(bb.Struct): """ Enabled/disabled Dropbox Showcase for team. @@ -84581,15 +87739,13 @@ class ShowcaseChangeEnabledPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -84604,20 +87760,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeEnabledPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseChangeEnabledPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseChangeEnabledPolicyDetails_validator = bv.Struct(ShowcaseChangeEnabledPolicyDetails) -class ShowcaseChangeEnabledPolicyType(bb.Struct): +class ShowcaseChangeEnabledPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84626,10 +87784,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeEnabledPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseChangeEnabledPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseChangeEnabledPolicyType_validator = bv.Struct(ShowcaseChangeEnabledPolicyType) + class ShowcaseChangeExternalSharingPolicyDetails(bb.Struct): """ Enabled/disabled sharing Dropbox Showcase externally for team. @@ -84641,15 +87803,13 @@ class ShowcaseChangeExternalSharingPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -84664,20 +87824,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeExternalSharingPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseChangeExternalSharingPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -ShowcaseChangeExternalSharingPolicyDetails_validator = bv.Struct(ShowcaseChangeExternalSharingPolicyDetails) -class ShowcaseChangeExternalSharingPolicyType(bb.Struct): +ShowcaseChangeExternalSharingPolicyDetails_validator = bv.Struct( + ShowcaseChangeExternalSharingPolicyDetails +) + +class ShowcaseChangeExternalSharingPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84686,9 +87850,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseChangeExternalSharingPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseChangeExternalSharingPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +ShowcaseChangeExternalSharingPolicyType_validator = bv.Struct( + ShowcaseChangeExternalSharingPolicyType +) -ShowcaseChangeExternalSharingPolicyType_validator = bv.Struct(ShowcaseChangeExternalSharingPolicyType) class ShowcaseCreatedDetails(bb.Struct): """ @@ -84699,13 +87869,12 @@ class ShowcaseCreatedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -84714,20 +87883,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseCreatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseCreatedDetails_validator = bv.Struct(ShowcaseCreatedDetails) -class ShowcaseCreatedType(bb.Struct): +class ShowcaseCreatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84736,10 +87907,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseCreatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseCreatedType_validator = bv.Struct(ShowcaseCreatedType) + class ShowcaseDeleteCommentDetails(bb.Struct): """ Deleted showcase comment. @@ -84751,15 +87926,13 @@ class ShowcaseDeleteCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -84774,20 +87947,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDeleteCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseDeleteCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseDeleteCommentDetails_validator = bv.Struct(ShowcaseDeleteCommentDetails) -class ShowcaseDeleteCommentType(bb.Struct): +class ShowcaseDeleteCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84796,10 +87971,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDeleteCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseDeleteCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseDeleteCommentType_validator = bv.Struct(ShowcaseDeleteCommentType) + class ShowcaseDocumentLogInfo(bb.Struct): """ Showcase document's logged information. @@ -84811,15 +87990,13 @@ class ShowcaseDocumentLogInfo(bb.Struct): """ __slots__ = [ - '_showcase_id_value', - '_showcase_title_value', + "_showcase_id_value", + "_showcase_title_value", ] _has_required_fields = True - def __init__(self, - showcase_id=None, - showcase_title=None): + def __init__(self, showcase_id=None, showcase_title=None): self._showcase_id_value = bb.NOT_SET self._showcase_title_value = bb.NOT_SET if showcase_id is not None: @@ -84834,10 +88011,14 @@ def __init__(self, showcase_title = bb.Attribute("showcase_title") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDocumentLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseDocumentLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseDocumentLogInfo_validator = bv.Struct(ShowcaseDocumentLogInfo) + class ShowcaseDownloadPolicy(bb.Union): """ Policy for controlling if files can be downloaded from Showcases by team @@ -84848,7 +88029,7 @@ class ShowcaseDownloadPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -84862,7 +88043,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -84870,7 +88051,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -84878,13 +88059,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDownloadPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseDownloadPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseDownloadPolicy_validator = bv.Union(ShowcaseDownloadPolicy) + class ShowcaseEditCommentDetails(bb.Struct): """ Edited showcase comment. @@ -84896,15 +88081,13 @@ class ShowcaseEditCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -84919,20 +88102,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEditCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseEditCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseEditCommentDetails_validator = bv.Struct(ShowcaseEditCommentDetails) -class ShowcaseEditCommentType(bb.Struct): +class ShowcaseEditCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84941,10 +88126,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEditCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseEditCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseEditCommentType_validator = bv.Struct(ShowcaseEditCommentType) + class ShowcaseEditedDetails(bb.Struct): """ Edited showcase. @@ -84954,13 +88143,12 @@ class ShowcaseEditedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -84969,20 +88157,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEditedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseEditedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseEditedDetails_validator = bv.Struct(ShowcaseEditedDetails) -class ShowcaseEditedType(bb.Struct): +class ShowcaseEditedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -84991,10 +88181,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEditedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseEditedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseEditedType_validator = bv.Struct(ShowcaseEditedType) + class ShowcaseEnabledPolicy(bb.Union): """ Policy for controlling whether Showcase is enabled. @@ -85004,7 +88198,7 @@ class ShowcaseEnabledPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -85018,7 +88212,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -85026,7 +88220,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -85034,13 +88228,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEnabledPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseEnabledPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseEnabledPolicy_validator = bv.Union(ShowcaseEnabledPolicy) + class ShowcaseExternalSharingPolicy(bb.Union): """ Policy for controlling if team members can share Showcases externally. @@ -85050,7 +88248,7 @@ class ShowcaseExternalSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -85064,7 +88262,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -85072,7 +88270,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -85080,13 +88278,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseExternalSharingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseExternalSharingPolicy_validator = bv.Union(ShowcaseExternalSharingPolicy) + class ShowcaseFileAddedDetails(bb.Struct): """ Added file to showcase. @@ -85096,13 +88298,12 @@ class ShowcaseFileAddedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85111,20 +88312,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseFileAddedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseFileAddedDetails_validator = bv.Struct(ShowcaseFileAddedDetails) -class ShowcaseFileAddedType(bb.Struct): +class ShowcaseFileAddedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85133,10 +88336,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseFileAddedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseFileAddedType_validator = bv.Struct(ShowcaseFileAddedType) + class ShowcaseFileDownloadDetails(bb.Struct): """ Downloaded file from showcase. @@ -85148,15 +88355,13 @@ class ShowcaseFileDownloadDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_download_type_value', + "_event_uuid_value", + "_download_type_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - download_type=None): + def __init__(self, event_uuid=None, download_type=None): self._event_uuid_value = bb.NOT_SET self._download_type_value = bb.NOT_SET if event_uuid is not None: @@ -85171,20 +88376,22 @@ def __init__(self, download_type = bb.Attribute("download_type") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileDownloadDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseFileDownloadDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseFileDownloadDetails_validator = bv.Struct(ShowcaseFileDownloadDetails) -class ShowcaseFileDownloadType(bb.Struct): +class ShowcaseFileDownloadType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85193,10 +88400,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileDownloadType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseFileDownloadType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseFileDownloadType_validator = bv.Struct(ShowcaseFileDownloadType) + class ShowcaseFileRemovedDetails(bb.Struct): """ Removed file from showcase. @@ -85206,13 +88417,12 @@ class ShowcaseFileRemovedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85221,20 +88431,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseFileRemovedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseFileRemovedDetails_validator = bv.Struct(ShowcaseFileRemovedDetails) -class ShowcaseFileRemovedType(bb.Struct): +class ShowcaseFileRemovedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85243,10 +88455,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseFileRemovedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseFileRemovedType_validator = bv.Struct(ShowcaseFileRemovedType) + class ShowcaseFileViewDetails(bb.Struct): """ Viewed file in showcase. @@ -85256,13 +88472,12 @@ class ShowcaseFileViewDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85271,20 +88486,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseFileViewDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseFileViewDetails_validator = bv.Struct(ShowcaseFileViewDetails) -class ShowcaseFileViewType(bb.Struct): +class ShowcaseFileViewType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85293,10 +88510,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseFileViewType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseFileViewType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseFileViewType_validator = bv.Struct(ShowcaseFileViewType) + class ShowcasePermanentlyDeletedDetails(bb.Struct): """ Permanently deleted showcase. @@ -85306,13 +88527,12 @@ class ShowcasePermanentlyDeletedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85321,20 +88541,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcasePermanentlyDeletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcasePermanentlyDeletedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcasePermanentlyDeletedDetails_validator = bv.Struct(ShowcasePermanentlyDeletedDetails) -class ShowcasePermanentlyDeletedType(bb.Struct): +class ShowcasePermanentlyDeletedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85343,10 +88565,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcasePermanentlyDeletedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcasePermanentlyDeletedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcasePermanentlyDeletedType_validator = bv.Struct(ShowcasePermanentlyDeletedType) + class ShowcasePostCommentDetails(bb.Struct): """ Added showcase comment. @@ -85358,15 +88584,13 @@ class ShowcasePostCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -85381,20 +88605,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcasePostCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcasePostCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcasePostCommentDetails_validator = bv.Struct(ShowcasePostCommentDetails) -class ShowcasePostCommentType(bb.Struct): +class ShowcasePostCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85403,10 +88629,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcasePostCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcasePostCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcasePostCommentType_validator = bv.Struct(ShowcasePostCommentType) + class ShowcaseRemoveMemberDetails(bb.Struct): """ Removed member from showcase. @@ -85416,13 +88646,12 @@ class ShowcaseRemoveMemberDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85431,20 +88660,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRemoveMemberDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseRemoveMemberDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseRemoveMemberDetails_validator = bv.Struct(ShowcaseRemoveMemberDetails) -class ShowcaseRemoveMemberType(bb.Struct): +class ShowcaseRemoveMemberType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85453,10 +88684,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRemoveMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseRemoveMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseRemoveMemberType_validator = bv.Struct(ShowcaseRemoveMemberType) + class ShowcaseRenamedDetails(bb.Struct): """ Renamed showcase. @@ -85466,13 +88701,12 @@ class ShowcaseRenamedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85481,20 +88715,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRenamedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseRenamedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseRenamedDetails_validator = bv.Struct(ShowcaseRenamedDetails) -class ShowcaseRenamedType(bb.Struct): +class ShowcaseRenamedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85503,10 +88739,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRenamedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseRenamedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseRenamedType_validator = bv.Struct(ShowcaseRenamedType) + class ShowcaseRequestAccessDetails(bb.Struct): """ Requested access to showcase. @@ -85516,13 +88756,12 @@ class ShowcaseRequestAccessDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85531,20 +88770,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRequestAccessDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseRequestAccessDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseRequestAccessDetails_validator = bv.Struct(ShowcaseRequestAccessDetails) -class ShowcaseRequestAccessType(bb.Struct): +class ShowcaseRequestAccessType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85553,10 +88794,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRequestAccessType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseRequestAccessType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseRequestAccessType_validator = bv.Struct(ShowcaseRequestAccessType) + class ShowcaseResolveCommentDetails(bb.Struct): """ Resolved showcase comment. @@ -85568,15 +88813,13 @@ class ShowcaseResolveCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -85591,20 +88834,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseResolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseResolveCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseResolveCommentDetails_validator = bv.Struct(ShowcaseResolveCommentDetails) -class ShowcaseResolveCommentType(bb.Struct): +class ShowcaseResolveCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85613,10 +88858,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseResolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseResolveCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseResolveCommentType_validator = bv.Struct(ShowcaseResolveCommentType) + class ShowcaseRestoredDetails(bb.Struct): """ Unarchived showcase. @@ -85626,13 +88875,12 @@ class ShowcaseRestoredDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85641,20 +88889,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRestoredDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseRestoredDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseRestoredDetails_validator = bv.Struct(ShowcaseRestoredDetails) -class ShowcaseRestoredType(bb.Struct): +class ShowcaseRestoredType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85663,10 +88913,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseRestoredType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseRestoredType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseRestoredType_validator = bv.Struct(ShowcaseRestoredType) + class ShowcaseTrashedDeprecatedDetails(bb.Struct): """ Deleted showcase (old version). @@ -85676,13 +88930,12 @@ class ShowcaseTrashedDeprecatedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85691,20 +88944,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseTrashedDeprecatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseTrashedDeprecatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseTrashedDeprecatedDetails_validator = bv.Struct(ShowcaseTrashedDeprecatedDetails) -class ShowcaseTrashedDeprecatedType(bb.Struct): +class ShowcaseTrashedDeprecatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85713,10 +88968,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseTrashedDeprecatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseTrashedDeprecatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseTrashedDeprecatedType_validator = bv.Struct(ShowcaseTrashedDeprecatedType) + class ShowcaseTrashedDetails(bb.Struct): """ Deleted showcase. @@ -85726,13 +88985,12 @@ class ShowcaseTrashedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85741,20 +88999,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseTrashedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseTrashedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseTrashedDetails_validator = bv.Struct(ShowcaseTrashedDetails) -class ShowcaseTrashedType(bb.Struct): +class ShowcaseTrashedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85763,10 +89023,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseTrashedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseTrashedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseTrashedType_validator = bv.Struct(ShowcaseTrashedType) + class ShowcaseUnresolveCommentDetails(bb.Struct): """ Unresolved showcase comment. @@ -85778,15 +89042,13 @@ class ShowcaseUnresolveCommentDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', - '_comment_text_value', + "_event_uuid_value", + "_comment_text_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None, - comment_text=None): + def __init__(self, event_uuid=None, comment_text=None): self._event_uuid_value = bb.NOT_SET self._comment_text_value = bb.NOT_SET if event_uuid is not None: @@ -85801,20 +89063,22 @@ def __init__(self, comment_text = bb.Attribute("comment_text", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUnresolveCommentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseUnresolveCommentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseUnresolveCommentDetails_validator = bv.Struct(ShowcaseUnresolveCommentDetails) -class ShowcaseUnresolveCommentType(bb.Struct): +class ShowcaseUnresolveCommentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85823,10 +89087,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUnresolveCommentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseUnresolveCommentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseUnresolveCommentType_validator = bv.Struct(ShowcaseUnresolveCommentType) + class ShowcaseUntrashedDeprecatedDetails(bb.Struct): """ Restored showcase (old version). @@ -85836,13 +89104,12 @@ class ShowcaseUntrashedDeprecatedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85851,20 +89118,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUntrashedDeprecatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseUntrashedDeprecatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseUntrashedDeprecatedDetails_validator = bv.Struct(ShowcaseUntrashedDeprecatedDetails) -class ShowcaseUntrashedDeprecatedType(bb.Struct): +class ShowcaseUntrashedDeprecatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85873,10 +89142,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUntrashedDeprecatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseUntrashedDeprecatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseUntrashedDeprecatedType_validator = bv.Struct(ShowcaseUntrashedDeprecatedType) + class ShowcaseUntrashedDetails(bb.Struct): """ Restored showcase. @@ -85886,13 +89159,12 @@ class ShowcaseUntrashedDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85901,20 +89173,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUntrashedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseUntrashedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseUntrashedDetails_validator = bv.Struct(ShowcaseUntrashedDetails) -class ShowcaseUntrashedType(bb.Struct): +class ShowcaseUntrashedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85923,10 +89197,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseUntrashedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseUntrashedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseUntrashedType_validator = bv.Struct(ShowcaseUntrashedType) + class ShowcaseViewDetails(bb.Struct): """ Viewed showcase. @@ -85936,13 +89214,12 @@ class ShowcaseViewDetails(bb.Struct): """ __slots__ = [ - '_event_uuid_value', + "_event_uuid_value", ] _has_required_fields = True - def __init__(self, - event_uuid=None): + def __init__(self, event_uuid=None): self._event_uuid_value = bb.NOT_SET if event_uuid is not None: self.event_uuid = event_uuid @@ -85951,20 +89228,22 @@ def __init__(self, event_uuid = bb.Attribute("event_uuid") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseViewDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseViewDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseViewDetails_validator = bv.Struct(ShowcaseViewDetails) -class ShowcaseViewType(bb.Struct): +class ShowcaseViewType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -85973,10 +89252,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseViewType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseViewType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseViewType_validator = bv.Struct(ShowcaseViewType) + class SignExternalSharingPolicy(bb.Union): """ Policy for deciding whether team users can share Sign content externally @@ -85986,7 +89269,7 @@ class SignExternalSharingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -86002,7 +89285,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -86010,7 +89293,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -86018,7 +89301,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -86026,13 +89309,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignExternalSharingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignExternalSharingPolicy_validator = bv.Union(SignExternalSharingPolicy) + class SignExternalSharingPolicyChangedDetails(bb.Struct): """ Changed Signatures external sharing policy for team. @@ -86044,15 +89331,13 @@ class SignExternalSharingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -86067,20 +89352,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignExternalSharingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignExternalSharingPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SignExternalSharingPolicyChangedDetails_validator = bv.Struct(SignExternalSharingPolicyChangedDetails) -class SignExternalSharingPolicyChangedType(bb.Struct): +SignExternalSharingPolicyChangedDetails_validator = bv.Struct( + SignExternalSharingPolicyChangedDetails +) + +class SignExternalSharingPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86089,17 +89378,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignExternalSharingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignExternalSharingPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignExternalSharingPolicyChangedType_validator = bv.Struct(SignExternalSharingPolicyChangedType) + class SignInAsSessionEndDetails(bb.Struct): """ Ended admin sign-in-as session. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -86107,20 +89399,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignInAsSessionEndDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignInAsSessionEndDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignInAsSessionEndDetails_validator = bv.Struct(SignInAsSessionEndDetails) -class SignInAsSessionEndType(bb.Struct): +class SignInAsSessionEndType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86129,17 +89423,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignInAsSessionEndType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignInAsSessionEndType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignInAsSessionEndType_validator = bv.Struct(SignInAsSessionEndType) + class SignInAsSessionStartDetails(bb.Struct): """ Started admin sign-in-as session. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -86147,20 +89444,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignInAsSessionStartDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignInAsSessionStartDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignInAsSessionStartDetails_validator = bv.Struct(SignInAsSessionStartDetails) -class SignInAsSessionStartType(bb.Struct): +class SignInAsSessionStartType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86169,10 +89468,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignInAsSessionStartType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignInAsSessionStartType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignInAsSessionStartType_validator = bv.Struct(SignInAsSessionStartType) + class SignSignatureRequestCanceledDetails(bb.Struct): """ Canceled signature request. @@ -86184,15 +89487,13 @@ class SignSignatureRequestCanceledDetails(bb.Struct): """ __slots__ = [ - '_recipient_value', - '_file_name_value', + "_recipient_value", + "_file_name_value", ] _has_required_fields = True - def __init__(self, - recipient=None, - file_name=None): + def __init__(self, recipient=None, file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -86207,20 +89508,22 @@ def __init__(self, file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestCanceledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestCanceledDetails_validator = bv.Struct(SignSignatureRequestCanceledDetails) -class SignSignatureRequestCanceledType(bb.Struct): +class SignSignatureRequestCanceledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86229,10 +89532,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestCanceledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestCanceledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestCanceledType_validator = bv.Struct(SignSignatureRequestCanceledType) + class SignSignatureRequestCompletedDetails(bb.Struct): """ Completed signature request. @@ -86244,15 +89551,13 @@ class SignSignatureRequestCompletedDetails(bb.Struct): """ __slots__ = [ - '_recipient_value', - '_file_name_value', + "_recipient_value", + "_file_name_value", ] _has_required_fields = True - def __init__(self, - recipient=None, - file_name=None): + def __init__(self, recipient=None, file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -86267,20 +89572,22 @@ def __init__(self, file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestCompletedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestCompletedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestCompletedDetails_validator = bv.Struct(SignSignatureRequestCompletedDetails) -class SignSignatureRequestCompletedType(bb.Struct): +class SignSignatureRequestCompletedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86289,10 +89596,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestCompletedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestCompletedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestCompletedType_validator = bv.Struct(SignSignatureRequestCompletedType) + class SignSignatureRequestDeclinedDetails(bb.Struct): """ Declined signature request. @@ -86304,15 +89615,13 @@ class SignSignatureRequestDeclinedDetails(bb.Struct): """ __slots__ = [ - '_recipient_value', - '_file_name_value', + "_recipient_value", + "_file_name_value", ] _has_required_fields = True - def __init__(self, - recipient=None, - file_name=None): + def __init__(self, recipient=None, file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -86327,20 +89636,22 @@ def __init__(self, file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestDeclinedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestDeclinedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestDeclinedDetails_validator = bv.Struct(SignSignatureRequestDeclinedDetails) -class SignSignatureRequestDeclinedType(bb.Struct): +class SignSignatureRequestDeclinedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86349,10 +89660,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestDeclinedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestDeclinedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestDeclinedType_validator = bv.Struct(SignSignatureRequestDeclinedType) + class SignSignatureRequestOpenedDetails(bb.Struct): """ Opened signature request. @@ -86364,15 +89679,13 @@ class SignSignatureRequestOpenedDetails(bb.Struct): """ __slots__ = [ - '_recipient_value', - '_file_name_value', + "_recipient_value", + "_file_name_value", ] _has_required_fields = True - def __init__(self, - recipient=None, - file_name=None): + def __init__(self, recipient=None, file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -86387,20 +89700,22 @@ def __init__(self, file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestOpenedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestOpenedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestOpenedDetails_validator = bv.Struct(SignSignatureRequestOpenedDetails) -class SignSignatureRequestOpenedType(bb.Struct): +class SignSignatureRequestOpenedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86409,10 +89724,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestOpenedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestOpenedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestOpenedType_validator = bv.Struct(SignSignatureRequestOpenedType) + class SignSignatureRequestReminderSentDetails(bb.Struct): """ Sent signature request reminder. @@ -86424,15 +89743,13 @@ class SignSignatureRequestReminderSentDetails(bb.Struct): """ __slots__ = [ - '_recipient_value', - '_file_name_value', + "_recipient_value", + "_file_name_value", ] _has_required_fields = True - def __init__(self, - recipient=None, - file_name=None): + def __init__(self, recipient=None, file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -86447,20 +89764,24 @@ def __init__(self, file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestReminderSentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestReminderSentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SignSignatureRequestReminderSentDetails_validator = bv.Struct(SignSignatureRequestReminderSentDetails) -class SignSignatureRequestReminderSentType(bb.Struct): +SignSignatureRequestReminderSentDetails_validator = bv.Struct( + SignSignatureRequestReminderSentDetails +) + +class SignSignatureRequestReminderSentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86469,10 +89790,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestReminderSentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestReminderSentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestReminderSentType_validator = bv.Struct(SignSignatureRequestReminderSentType) + class SignSignatureRequestSentDetails(bb.Struct): """ Sent signature request. @@ -86484,15 +89809,13 @@ class SignSignatureRequestSentDetails(bb.Struct): """ __slots__ = [ - '_recipient_value', - '_file_name_value', + "_recipient_value", + "_file_name_value", ] _has_required_fields = True - def __init__(self, - recipient=None, - file_name=None): + def __init__(self, recipient=None, file_name=None): self._recipient_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if recipient is not None: @@ -86507,20 +89830,22 @@ def __init__(self, file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestSentDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestSentDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestSentDetails_validator = bv.Struct(SignSignatureRequestSentDetails) -class SignSignatureRequestSentType(bb.Struct): +class SignSignatureRequestSentType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86529,10 +89854,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignSignatureRequestSentType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignSignatureRequestSentType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignSignatureRequestSentType_validator = bv.Struct(SignSignatureRequestSentType) + class SignTemplateCreatedDetails(bb.Struct): """ Created template. @@ -86544,15 +89873,13 @@ class SignTemplateCreatedDetails(bb.Struct): """ __slots__ = [ - '_access_level_value', - '_file_name_value', + "_access_level_value", + "_file_name_value", ] _has_required_fields = True - def __init__(self, - access_level=None, - file_name=None): + def __init__(self, access_level=None, file_name=None): self._access_level_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if access_level is not None: @@ -86567,20 +89894,22 @@ def __init__(self, file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignTemplateCreatedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignTemplateCreatedDetails_validator = bv.Struct(SignTemplateCreatedDetails) -class SignTemplateCreatedType(bb.Struct): +class SignTemplateCreatedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86589,10 +89918,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreatedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignTemplateCreatedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignTemplateCreatedType_validator = bv.Struct(SignTemplateCreatedType) + class SignTemplateCreationPermissionChangedDetails(bb.Struct): """ Changed template creation permission. @@ -86604,15 +89937,13 @@ class SignTemplateCreationPermissionChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -86627,20 +89958,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreationPermissionChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignTemplateCreationPermissionChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SignTemplateCreationPermissionChangedDetails_validator = bv.Struct(SignTemplateCreationPermissionChangedDetails) -class SignTemplateCreationPermissionChangedType(bb.Struct): +SignTemplateCreationPermissionChangedDetails_validator = bv.Struct( + SignTemplateCreationPermissionChangedDetails +) + +class SignTemplateCreationPermissionChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86649,9 +89984,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreationPermissionChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignTemplateCreationPermissionChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SignTemplateCreationPermissionChangedType_validator = bv.Struct( + SignTemplateCreationPermissionChangedType +) -SignTemplateCreationPermissionChangedType_validator = bv.Struct(SignTemplateCreationPermissionChangedType) class SignTemplateCreationPermissionPolicy(bb.Union): """ @@ -86662,7 +90003,7 @@ class SignTemplateCreationPermissionPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -86676,7 +90017,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -86684,7 +90025,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -86692,13 +90033,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateCreationPermissionPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignTemplateCreationPermissionPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignTemplateCreationPermissionPolicy_validator = bv.Union(SignTemplateCreationPermissionPolicy) + class SignTemplateSharedDetails(bb.Struct): """ Shared template. @@ -86710,15 +90055,13 @@ class SignTemplateSharedDetails(bb.Struct): """ __slots__ = [ - '_access_level_value', - '_file_name_value', + "_access_level_value", + "_file_name_value", ] _has_required_fields = True - def __init__(self, - access_level=None, - file_name=None): + def __init__(self, access_level=None, file_name=None): self._access_level_value = bb.NOT_SET self._file_name_value = bb.NOT_SET if access_level is not None: @@ -86733,20 +90076,22 @@ def __init__(self, file_name = bb.Attribute("file_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateSharedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignTemplateSharedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignTemplateSharedDetails_validator = bv.Struct(SignTemplateSharedDetails) -class SignTemplateSharedType(bb.Struct): +class SignTemplateSharedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86755,10 +90100,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SignTemplateSharedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SignTemplateSharedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SignTemplateSharedType_validator = bv.Struct(SignTemplateSharedType) + class SmartSyncChangePolicyDetails(bb.Struct): """ Changed default Smart Sync setting for team members. @@ -86770,15 +90119,13 @@ class SmartSyncChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -86793,20 +90140,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmartSyncChangePolicyDetails_validator = bv.Struct(SmartSyncChangePolicyDetails) -class SmartSyncChangePolicyType(bb.Struct): +class SmartSyncChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86815,17 +90164,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmartSyncChangePolicyType_validator = bv.Struct(SmartSyncChangePolicyType) + class SmartSyncCreateAdminPrivilegeReportDetails(bb.Struct): """ Created Smart Sync non-admin devices report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -86833,20 +90185,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncCreateAdminPrivilegeReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncCreateAdminPrivilegeReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -SmartSyncCreateAdminPrivilegeReportDetails_validator = bv.Struct(SmartSyncCreateAdminPrivilegeReportDetails) -class SmartSyncCreateAdminPrivilegeReportType(bb.Struct): +SmartSyncCreateAdminPrivilegeReportDetails_validator = bv.Struct( + SmartSyncCreateAdminPrivilegeReportDetails +) + +class SmartSyncCreateAdminPrivilegeReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86855,9 +90211,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncCreateAdminPrivilegeReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncCreateAdminPrivilegeReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SmartSyncCreateAdminPrivilegeReportType_validator = bv.Struct( + SmartSyncCreateAdminPrivilegeReportType +) -SmartSyncCreateAdminPrivilegeReportType_validator = bv.Struct(SmartSyncCreateAdminPrivilegeReportType) class SmartSyncNotOptOutDetails(bb.Struct): """ @@ -86870,15 +90232,13 @@ class SmartSyncNotOptOutDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -86893,20 +90253,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncNotOptOutDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncNotOptOutDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmartSyncNotOptOutDetails_validator = bv.Struct(SmartSyncNotOptOutDetails) -class SmartSyncNotOptOutType(bb.Struct): +class SmartSyncNotOptOutType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -86915,10 +90277,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncNotOptOutType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncNotOptOutType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmartSyncNotOptOutType_validator = bv.Struct(SmartSyncNotOptOutType) + class SmartSyncOptOutDetails(bb.Struct): """ Opted team out of Smart Sync. @@ -86930,15 +90296,13 @@ class SmartSyncOptOutDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -86953,10 +90317,14 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncOptOutDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncOptOutDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmartSyncOptOutDetails_validator = bv.Struct(SmartSyncOptOutDetails) + class SmartSyncOptOutPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -86964,7 +90332,7 @@ class SmartSyncOptOutPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -86978,7 +90346,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_opted_out(self): """ @@ -86986,7 +90354,7 @@ def is_opted_out(self): :rtype: bool """ - return self._tag == 'opted_out' + return self._tag == "opted_out" def is_other(self): """ @@ -86994,23 +90362,25 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncOptOutPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncOptOutPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmartSyncOptOutPolicy_validator = bv.Union(SmartSyncOptOutPolicy) -class SmartSyncOptOutType(bb.Struct): +class SmartSyncOptOutType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87019,10 +90389,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncOptOutType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncOptOutType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmartSyncOptOutType_validator = bv.Struct(SmartSyncOptOutType) + class SmarterSmartSyncPolicyChangedDetails(bb.Struct): """ Changed automatic Smart Sync setting for team. @@ -87034,15 +90408,13 @@ class SmarterSmartSyncPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -87057,20 +90429,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmarterSmartSyncPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmarterSmartSyncPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmarterSmartSyncPolicyChangedDetails_validator = bv.Struct(SmarterSmartSyncPolicyChangedDetails) -class SmarterSmartSyncPolicyChangedType(bb.Struct): +class SmarterSmartSyncPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87079,10 +90453,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmarterSmartSyncPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmarterSmartSyncPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmarterSmartSyncPolicyChangedType_validator = bv.Struct(SmarterSmartSyncPolicyChangedType) + class SpaceCapsType(bb.Union): """ Space limit alert policy @@ -87092,7 +90470,7 @@ class SpaceCapsType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition hard = None # Attribute is overwritten below the class definition @@ -87108,7 +90486,7 @@ def is_hard(self): :rtype: bool """ - return self._tag == 'hard' + return self._tag == "hard" def is_off(self): """ @@ -87116,7 +90494,7 @@ def is_off(self): :rtype: bool """ - return self._tag == 'off' + return self._tag == "off" def is_soft(self): """ @@ -87124,7 +90502,7 @@ def is_soft(self): :rtype: bool """ - return self._tag == 'soft' + return self._tag == "soft" def is_other(self): """ @@ -87132,13 +90510,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SpaceCapsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SpaceCapsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SpaceCapsType_validator = bv.Union(SpaceCapsType) + class SpaceLimitsStatus(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -87146,7 +90528,7 @@ class SpaceLimitsStatus(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition near_quota = None # Attribute is overwritten below the class definition @@ -87162,7 +90544,7 @@ def is_near_quota(self): :rtype: bool """ - return self._tag == 'near_quota' + return self._tag == "near_quota" def is_over_quota(self): """ @@ -87170,7 +90552,7 @@ def is_over_quota(self): :rtype: bool """ - return self._tag == 'over_quota' + return self._tag == "over_quota" def is_within_quota(self): """ @@ -87178,7 +90560,7 @@ def is_within_quota(self): :rtype: bool """ - return self._tag == 'within_quota' + return self._tag == "within_quota" def is_other(self): """ @@ -87186,13 +90568,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SpaceLimitsStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SpaceLimitsStatus, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SpaceLimitsStatus_validator = bv.Union(SpaceLimitsStatus) + class SsoAddCertDetails(bb.Struct): """ Added X.509 certificate for SSO. @@ -87202,13 +90588,12 @@ class SsoAddCertDetails(bb.Struct): """ __slots__ = [ - '_certificate_details_value', + "_certificate_details_value", ] _has_required_fields = True - def __init__(self, - certificate_details=None): + def __init__(self, certificate_details=None): self._certificate_details_value = bb.NOT_SET if certificate_details is not None: self.certificate_details = certificate_details @@ -87217,20 +90602,22 @@ def __init__(self, certificate_details = bb.Attribute("certificate_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddCertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoAddCertDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoAddCertDetails_validator = bv.Struct(SsoAddCertDetails) -class SsoAddCertType(bb.Struct): +class SsoAddCertType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87239,10 +90626,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddCertType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoAddCertType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoAddCertType_validator = bv.Struct(SsoAddCertType) + class SsoAddLoginUrlDetails(bb.Struct): """ Added sign-in URL for SSO. @@ -87252,13 +90643,12 @@ class SsoAddLoginUrlDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', + "_new_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None): + def __init__(self, new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -87267,20 +90657,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddLoginUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoAddLoginUrlDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoAddLoginUrlDetails_validator = bv.Struct(SsoAddLoginUrlDetails) -class SsoAddLoginUrlType(bb.Struct): +class SsoAddLoginUrlType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87289,10 +90681,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddLoginUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoAddLoginUrlType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoAddLoginUrlType_validator = bv.Struct(SsoAddLoginUrlType) + class SsoAddLogoutUrlDetails(bb.Struct): """ Added sign-out URL for SSO. @@ -87302,13 +90698,12 @@ class SsoAddLogoutUrlDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', + "_new_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None): + def __init__(self, new_value=None): self._new_value_value = bb.NOT_SET if new_value is not None: self.new_value = new_value @@ -87317,20 +90712,22 @@ def __init__(self, new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddLogoutUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoAddLogoutUrlDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoAddLogoutUrlDetails_validator = bv.Struct(SsoAddLogoutUrlDetails) -class SsoAddLogoutUrlType(bb.Struct): +class SsoAddLogoutUrlType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87339,10 +90736,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoAddLogoutUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoAddLogoutUrlType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoAddLogoutUrlType_validator = bv.Struct(SsoAddLogoutUrlType) + class SsoChangeCertDetails(bb.Struct): """ Changed X.509 certificate for SSO. @@ -87355,15 +90756,13 @@ class SsoChangeCertDetails(bb.Struct): """ __slots__ = [ - '_previous_certificate_details_value', - '_new_certificate_details_value', + "_previous_certificate_details_value", + "_new_certificate_details_value", ] _has_required_fields = True - def __init__(self, - new_certificate_details=None, - previous_certificate_details=None): + def __init__(self, new_certificate_details=None, previous_certificate_details=None): self._previous_certificate_details_value = bb.NOT_SET self._new_certificate_details_value = bb.NOT_SET if previous_certificate_details is not None: @@ -87372,26 +90771,30 @@ def __init__(self, self.new_certificate_details = new_certificate_details # Instance attribute type: Certificate (validator is set below) - previous_certificate_details = bb.Attribute("previous_certificate_details", nullable=True, user_defined=True) + previous_certificate_details = bb.Attribute( + "previous_certificate_details", nullable=True, user_defined=True + ) # Instance attribute type: Certificate (validator is set below) new_certificate_details = bb.Attribute("new_certificate_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeCertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangeCertDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangeCertDetails_validator = bv.Struct(SsoChangeCertDetails) -class SsoChangeCertType(bb.Struct): +class SsoChangeCertType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87400,10 +90803,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeCertType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangeCertType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangeCertType_validator = bv.Struct(SsoChangeCertType) + class SsoChangeLoginUrlDetails(bb.Struct): """ Changed sign-in URL for SSO. @@ -87415,15 +90822,13 @@ class SsoChangeLoginUrlDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -87438,20 +90843,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeLoginUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangeLoginUrlDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangeLoginUrlDetails_validator = bv.Struct(SsoChangeLoginUrlDetails) -class SsoChangeLoginUrlType(bb.Struct): +class SsoChangeLoginUrlType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87460,10 +90867,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeLoginUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangeLoginUrlType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangeLoginUrlType_validator = bv.Struct(SsoChangeLoginUrlType) + class SsoChangeLogoutUrlDetails(bb.Struct): """ Changed sign-out URL for SSO. @@ -87476,15 +90887,13 @@ class SsoChangeLogoutUrlDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = False - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -87499,20 +90908,22 @@ def __init__(self, new_value = bb.Attribute("new_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeLogoutUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangeLogoutUrlDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangeLogoutUrlDetails_validator = bv.Struct(SsoChangeLogoutUrlDetails) -class SsoChangeLogoutUrlType(bb.Struct): +class SsoChangeLogoutUrlType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87521,10 +90932,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeLogoutUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangeLogoutUrlType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangeLogoutUrlType_validator = bv.Struct(SsoChangeLogoutUrlType) + class SsoChangePolicyDetails(bb.Struct): """ Changed single sign-on setting for team. @@ -87537,15 +90952,13 @@ class SsoChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -87560,20 +90973,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangePolicyDetails_validator = bv.Struct(SsoChangePolicyDetails) -class SsoChangePolicyType(bb.Struct): +class SsoChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87582,10 +90997,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangePolicyType_validator = bv.Struct(SsoChangePolicyType) + class SsoChangeSamlIdentityModeDetails(bb.Struct): """ Changed SAML identity mode for SSO. @@ -87597,15 +91016,13 @@ class SsoChangeSamlIdentityModeDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -87620,20 +91037,22 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeSamlIdentityModeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangeSamlIdentityModeDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangeSamlIdentityModeDetails_validator = bv.Struct(SsoChangeSamlIdentityModeDetails) -class SsoChangeSamlIdentityModeType(bb.Struct): +class SsoChangeSamlIdentityModeType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87642,10 +91061,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoChangeSamlIdentityModeType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoChangeSamlIdentityModeType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoChangeSamlIdentityModeType_validator = bv.Struct(SsoChangeSamlIdentityModeType) + class SsoErrorDetails(bb.Struct): """ Failed to sign in via SSO. @@ -87655,13 +91078,12 @@ class SsoErrorDetails(bb.Struct): """ __slots__ = [ - '_error_details_value', + "_error_details_value", ] _has_required_fields = True - def __init__(self, - error_details=None): + def __init__(self, error_details=None): self._error_details_value = bb.NOT_SET if error_details is not None: self.error_details = error_details @@ -87670,20 +91092,22 @@ def __init__(self, error_details = bb.Attribute("error_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoErrorDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoErrorDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoErrorDetails_validator = bv.Struct(SsoErrorDetails) -class SsoErrorType(bb.Struct): +class SsoErrorType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87692,17 +91116,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoErrorType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoErrorType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoErrorType_validator = bv.Struct(SsoErrorType) + class SsoRemoveCertDetails(bb.Struct): """ Removed X.509 certificate for SSO. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -87710,20 +91137,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveCertDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoRemoveCertDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoRemoveCertDetails_validator = bv.Struct(SsoRemoveCertDetails) -class SsoRemoveCertType(bb.Struct): +class SsoRemoveCertType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87732,10 +91161,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveCertType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoRemoveCertType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoRemoveCertType_validator = bv.Struct(SsoRemoveCertType) + class SsoRemoveLoginUrlDetails(bb.Struct): """ Removed sign-in URL for SSO. @@ -87745,13 +91178,12 @@ class SsoRemoveLoginUrlDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None): + def __init__(self, previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -87760,20 +91192,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveLoginUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoRemoveLoginUrlDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoRemoveLoginUrlDetails_validator = bv.Struct(SsoRemoveLoginUrlDetails) -class SsoRemoveLoginUrlType(bb.Struct): +class SsoRemoveLoginUrlType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87782,10 +91216,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveLoginUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoRemoveLoginUrlType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoRemoveLoginUrlType_validator = bv.Struct(SsoRemoveLoginUrlType) + class SsoRemoveLogoutUrlDetails(bb.Struct): """ Removed sign-out URL for SSO. @@ -87795,13 +91233,12 @@ class SsoRemoveLogoutUrlDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None): + def __init__(self, previous_value=None): self._previous_value_value = bb.NOT_SET if previous_value is not None: self.previous_value = previous_value @@ -87810,20 +91247,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveLogoutUrlDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoRemoveLogoutUrlDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoRemoveLogoutUrlDetails_validator = bv.Struct(SsoRemoveLogoutUrlDetails) -class SsoRemoveLogoutUrlType(bb.Struct): +class SsoRemoveLogoutUrlType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87832,10 +91271,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SsoRemoveLogoutUrlType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SsoRemoveLogoutUrlType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SsoRemoveLogoutUrlType_validator = bv.Struct(SsoRemoveLogoutUrlType) + class StackCrossTeamAccessPolicy(bb.Union): """ Policy for whether a team's content can be reached via Stacks owned by other @@ -87846,7 +91289,7 @@ class StackCrossTeamAccessPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition allowed = None # Attribute is overwritten below the class definition @@ -87862,7 +91305,7 @@ def is_allowed(self): :rtype: bool """ - return self._tag == 'allowed' + return self._tag == "allowed" def is_default(self): """ @@ -87870,7 +91313,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disallowed(self): """ @@ -87878,7 +91321,7 @@ def is_disallowed(self): :rtype: bool """ - return self._tag == 'disallowed' + return self._tag == "disallowed" def is_other(self): """ @@ -87886,13 +91329,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StackCrossTeamAccessPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(StackCrossTeamAccessPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + StackCrossTeamAccessPolicy_validator = bv.Union(StackCrossTeamAccessPolicy) + class StackCrossTeamAccessPolicyChangedDetails(bb.Struct): """ Changed cross-team Stack access policy for team. @@ -87905,15 +91352,13 @@ class StackCrossTeamAccessPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -87928,20 +91373,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StackCrossTeamAccessPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(StackCrossTeamAccessPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -StackCrossTeamAccessPolicyChangedDetails_validator = bv.Struct(StackCrossTeamAccessPolicyChangedDetails) -class StackCrossTeamAccessPolicyChangedType(bb.Struct): +StackCrossTeamAccessPolicyChangedDetails_validator = bv.Struct( + StackCrossTeamAccessPolicyChangedDetails +) + +class StackCrossTeamAccessPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -87950,10 +91399,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StackCrossTeamAccessPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(StackCrossTeamAccessPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + StackCrossTeamAccessPolicyChangedType_validator = bv.Struct(StackCrossTeamAccessPolicyChangedType) + class StartedEnterpriseAdminSessionDetails(bb.Struct): """ Started enterprise admin session. @@ -87963,13 +91416,12 @@ class StartedEnterpriseAdminSessionDetails(bb.Struct): """ __slots__ = [ - '_federation_extra_details_value', + "_federation_extra_details_value", ] _has_required_fields = True - def __init__(self, - federation_extra_details=None): + def __init__(self, federation_extra_details=None): self._federation_extra_details_value = bb.NOT_SET if federation_extra_details is not None: self.federation_extra_details = federation_extra_details @@ -87978,20 +91430,22 @@ def __init__(self, federation_extra_details = bb.Attribute("federation_extra_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StartedEnterpriseAdminSessionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(StartedEnterpriseAdminSessionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + StartedEnterpriseAdminSessionDetails_validator = bv.Struct(StartedEnterpriseAdminSessionDetails) -class StartedEnterpriseAdminSessionType(bb.Struct): +class StartedEnterpriseAdminSessionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88000,10 +91454,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(StartedEnterpriseAdminSessionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(StartedEnterpriseAdminSessionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + StartedEnterpriseAdminSessionType_validator = bv.Struct(StartedEnterpriseAdminSessionType) + class TeamActivityCreateReportDetails(bb.Struct): """ Created team activity report. @@ -88015,15 +91473,13 @@ class TeamActivityCreateReportDetails(bb.Struct): """ __slots__ = [ - '_start_date_value', - '_end_date_value', + "_start_date_value", + "_end_date_value", ] _has_required_fields = True - def __init__(self, - start_date=None, - end_date=None): + def __init__(self, start_date=None, end_date=None): self._start_date_value = bb.NOT_SET self._end_date_value = bb.NOT_SET if start_date is not None: @@ -88038,10 +91494,14 @@ def __init__(self, end_date = bb.Attribute("end_date") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamActivityCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamActivityCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamActivityCreateReportDetails_validator = bv.Struct(TeamActivityCreateReportDetails) + class TeamActivityCreateReportFailDetails(bb.Struct): """ Couldn't generate team activity report. @@ -88051,13 +91511,12 @@ class TeamActivityCreateReportFailDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -88066,20 +91525,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamActivityCreateReportFailDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamActivityCreateReportFailDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamActivityCreateReportFailDetails_validator = bv.Struct(TeamActivityCreateReportFailDetails) -class TeamActivityCreateReportFailType(bb.Struct): +class TeamActivityCreateReportFailType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88088,20 +91549,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamActivityCreateReportFailType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamActivityCreateReportFailType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamActivityCreateReportFailType_validator = bv.Struct(TeamActivityCreateReportFailType) -class TeamActivityCreateReportType(bb.Struct): +class TeamActivityCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88110,10 +91573,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamActivityCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamActivityCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamActivityCreateReportType_validator = bv.Struct(TeamActivityCreateReportType) + class TeamBrandingPolicy(bb.Union): """ Policy for controlling team access to setting up branding feature @@ -88123,7 +91590,7 @@ class TeamBrandingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -88137,7 +91604,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -88145,7 +91612,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -88153,13 +91620,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamBrandingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamBrandingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamBrandingPolicy_validator = bv.Union(TeamBrandingPolicy) + class TeamBrandingPolicyChangedDetails(bb.Struct): """ Changed team branding policy for team. @@ -88171,15 +91642,13 @@ class TeamBrandingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -88194,20 +91663,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamBrandingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamBrandingPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamBrandingPolicyChangedDetails_validator = bv.Struct(TeamBrandingPolicyChangedDetails) -class TeamBrandingPolicyChangedType(bb.Struct): +class TeamBrandingPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88216,10 +91687,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamBrandingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamBrandingPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamBrandingPolicyChangedType_validator = bv.Struct(TeamBrandingPolicyChangedType) + class TeamDetails(bb.Struct): """ More details about the team. @@ -88229,13 +91704,12 @@ class TeamDetails(bb.Struct): """ __slots__ = [ - '_team_value', + "_team_value", ] _has_required_fields = True - def __init__(self, - team=None): + def __init__(self, team=None): self._team_value = bb.NOT_SET if team is not None: self.team = team @@ -88246,8 +91720,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(TeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + TeamDetails_validator = bv.Struct(TeamDetails) + class TeamEncryptionKeyActivateKeyDetails(bb.Struct): """ Activated team encryption key. @@ -88257,13 +91733,12 @@ class TeamEncryptionKeyActivateKeyDetails(bb.Struct): """ __slots__ = [ - '_key_management_type_value', + "_key_management_type_value", ] _has_required_fields = True - def __init__(self, - key_management_type=None): + def __init__(self, key_management_type=None): self._key_management_type_value = bb.NOT_SET if key_management_type is not None: self.key_management_type = key_management_type @@ -88272,20 +91747,22 @@ def __init__(self, key_management_type = bb.Attribute("key_management_type") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyActivateKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyActivateKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyActivateKeyDetails_validator = bv.Struct(TeamEncryptionKeyActivateKeyDetails) -class TeamEncryptionKeyActivateKeyType(bb.Struct): +class TeamEncryptionKeyActivateKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88294,17 +91771,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyActivateKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyActivateKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyActivateKeyType_validator = bv.Struct(TeamEncryptionKeyActivateKeyType) + class TeamEncryptionKeyCancelKeyDeletionDetails(bb.Struct): """ Canceled team encryption key deletion. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -88312,20 +91792,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyCancelKeyDeletionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyCancelKeyDeletionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamEncryptionKeyCancelKeyDeletionDetails_validator = bv.Struct(TeamEncryptionKeyCancelKeyDeletionDetails) -class TeamEncryptionKeyCancelKeyDeletionType(bb.Struct): +TeamEncryptionKeyCancelKeyDeletionDetails_validator = bv.Struct( + TeamEncryptionKeyCancelKeyDeletionDetails +) + +class TeamEncryptionKeyCancelKeyDeletionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88334,17 +91818,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyCancelKeyDeletionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyCancelKeyDeletionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyCancelKeyDeletionType_validator = bv.Struct(TeamEncryptionKeyCancelKeyDeletionType) + class TeamEncryptionKeyCreateKeyDetails(bb.Struct): """ Created team encryption key. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -88352,20 +91839,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyCreateKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyCreateKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyCreateKeyDetails_validator = bv.Struct(TeamEncryptionKeyCreateKeyDetails) -class TeamEncryptionKeyCreateKeyType(bb.Struct): +class TeamEncryptionKeyCreateKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88374,17 +91863,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyCreateKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyCreateKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyCreateKeyType_validator = bv.Struct(TeamEncryptionKeyCreateKeyType) + class TeamEncryptionKeyDeactivateKeyDetails(bb.Struct): """ Deactivated team encryption key. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -88392,20 +91884,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDeactivateKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyDeactivateKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyDeactivateKeyDetails_validator = bv.Struct(TeamEncryptionKeyDeactivateKeyDetails) -class TeamEncryptionKeyDeactivateKeyType(bb.Struct): +class TeamEncryptionKeyDeactivateKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88414,17 +91908,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDeactivateKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyDeactivateKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyDeactivateKeyType_validator = bv.Struct(TeamEncryptionKeyDeactivateKeyType) + class TeamEncryptionKeyDeleteKeyDetails(bb.Struct): """ Deleted team encryption key. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -88432,20 +91929,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDeleteKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyDeleteKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyDeleteKeyDetails_validator = bv.Struct(TeamEncryptionKeyDeleteKeyDetails) -class TeamEncryptionKeyDeleteKeyType(bb.Struct): +class TeamEncryptionKeyDeleteKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88454,17 +91953,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDeleteKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyDeleteKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyDeleteKeyType_validator = bv.Struct(TeamEncryptionKeyDeleteKeyType) + class TeamEncryptionKeyDisableKeyDetails(bb.Struct): """ Disabled team encryption key. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -88472,20 +91974,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDisableKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyDisableKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyDisableKeyDetails_validator = bv.Struct(TeamEncryptionKeyDisableKeyDetails) -class TeamEncryptionKeyDisableKeyType(bb.Struct): +class TeamEncryptionKeyDisableKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88494,17 +91998,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyDisableKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyDisableKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyDisableKeyType_validator = bv.Struct(TeamEncryptionKeyDisableKeyType) + class TeamEncryptionKeyEnableKeyDetails(bb.Struct): """ Enabled team encryption key. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -88512,20 +92019,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyEnableKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyEnableKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyEnableKeyDetails_validator = bv.Struct(TeamEncryptionKeyEnableKeyDetails) -class TeamEncryptionKeyEnableKeyType(bb.Struct): +class TeamEncryptionKeyEnableKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88534,17 +92043,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyEnableKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyEnableKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyEnableKeyType_validator = bv.Struct(TeamEncryptionKeyEnableKeyType) + class TeamEncryptionKeyRotateKeyDetails(bb.Struct): """ Rotated team encryption key. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -88552,20 +92064,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyRotateKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyRotateKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyRotateKeyDetails_validator = bv.Struct(TeamEncryptionKeyRotateKeyDetails) -class TeamEncryptionKeyRotateKeyType(bb.Struct): +class TeamEncryptionKeyRotateKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88574,17 +92088,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyRotateKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyRotateKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamEncryptionKeyRotateKeyType_validator = bv.Struct(TeamEncryptionKeyRotateKeyType) + class TeamEncryptionKeyScheduleKeyDeletionDetails(bb.Struct): """ Scheduled encryption key deletion. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -88592,20 +92109,24 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyScheduleKeyDeletionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyScheduleKeyDeletionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamEncryptionKeyScheduleKeyDeletionDetails_validator = bv.Struct(TeamEncryptionKeyScheduleKeyDeletionDetails) -class TeamEncryptionKeyScheduleKeyDeletionType(bb.Struct): +TeamEncryptionKeyScheduleKeyDeletionDetails_validator = bv.Struct( + TeamEncryptionKeyScheduleKeyDeletionDetails +) + +class TeamEncryptionKeyScheduleKeyDeletionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88614,9 +92135,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEncryptionKeyScheduleKeyDeletionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamEncryptionKeyScheduleKeyDeletionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamEncryptionKeyScheduleKeyDeletionType_validator = bv.Struct( + TeamEncryptionKeyScheduleKeyDeletionType +) -TeamEncryptionKeyScheduleKeyDeletionType_validator = bv.Struct(TeamEncryptionKeyScheduleKeyDeletionType) class TeamEvent(bb.Struct): """ @@ -88653,31 +92180,33 @@ class TeamEvent(bb.Struct): """ __slots__ = [ - '_timestamp_value', - '_event_category_value', - '_actor_value', - '_origin_value', - '_involve_non_team_member_value', - '_context_value', - '_participants_value', - '_assets_value', - '_event_type_value', - '_details_value', + "_timestamp_value", + "_event_category_value", + "_actor_value", + "_origin_value", + "_involve_non_team_member_value", + "_context_value", + "_participants_value", + "_assets_value", + "_event_type_value", + "_details_value", ] _has_required_fields = True - def __init__(self, - timestamp=None, - event_category=None, - event_type=None, - details=None, - actor=None, - origin=None, - involve_non_team_member=None, - context=None, - participants=None, - assets=None): + def __init__( + self, + timestamp=None, + event_category=None, + event_type=None, + details=None, + actor=None, + origin=None, + involve_non_team_member=None, + context=None, + participants=None, + assets=None, + ): self._timestamp_value = bb.NOT_SET self._event_category_value = bb.NOT_SET self._actor_value = bb.NOT_SET @@ -88742,8 +92271,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(TeamEvent, self)._process_custom_annotations(annotation_type, field_path, processor) + TeamEvent_validator = bv.Struct(TeamEvent) + class TeamExtensionsPolicy(bb.Union): """ Policy for controlling whether App Integrations are enabled for the team. @@ -88753,7 +92284,7 @@ class TeamExtensionsPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -88767,7 +92298,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -88775,7 +92306,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -88783,13 +92314,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamExtensionsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamExtensionsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamExtensionsPolicy_validator = bv.Union(TeamExtensionsPolicy) + class TeamExtensionsPolicyChangedDetails(bb.Struct): """ Changed App Integrations setting for team. @@ -88801,15 +92336,13 @@ class TeamExtensionsPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -88824,20 +92357,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamExtensionsPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamExtensionsPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamExtensionsPolicyChangedDetails_validator = bv.Struct(TeamExtensionsPolicyChangedDetails) -class TeamExtensionsPolicyChangedType(bb.Struct): +class TeamExtensionsPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88846,10 +92381,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamExtensionsPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamExtensionsPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamExtensionsPolicyChangedType_validator = bv.Struct(TeamExtensionsPolicyChangedType) + class TeamFolderChangeStatusDetails(bb.Struct): """ Changed archival status of team folder. @@ -88862,15 +92401,13 @@ class TeamFolderChangeStatusDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -88885,20 +92422,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderChangeStatusDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderChangeStatusDetails_validator = bv.Struct(TeamFolderChangeStatusDetails) -class TeamFolderChangeStatusType(bb.Struct): +class TeamFolderChangeStatusType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88907,17 +92446,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderChangeStatusType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderChangeStatusType_validator = bv.Struct(TeamFolderChangeStatusType) + class TeamFolderCreateDetails(bb.Struct): """ Created team folder in active status. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -88925,20 +92467,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderCreateDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderCreateDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderCreateDetails_validator = bv.Struct(TeamFolderCreateDetails) -class TeamFolderCreateType(bb.Struct): +class TeamFolderCreateType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88947,10 +92491,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderCreateType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderCreateType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderCreateType_validator = bv.Struct(TeamFolderCreateType) + class TeamFolderDowngradeDetails(bb.Struct): """ Downgraded team folder to regular shared folder. @@ -88960,13 +92508,12 @@ class TeamFolderDowngradeDetails(bb.Struct): """ __slots__ = [ - '_target_asset_index_value', + "_target_asset_index_value", ] _has_required_fields = True - def __init__(self, - target_asset_index=None): + def __init__(self, target_asset_index=None): self._target_asset_index_value = bb.NOT_SET if target_asset_index is not None: self.target_asset_index = target_asset_index @@ -88975,20 +92522,22 @@ def __init__(self, target_asset_index = bb.Attribute("target_asset_index") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderDowngradeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderDowngradeDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderDowngradeDetails_validator = bv.Struct(TeamFolderDowngradeDetails) -class TeamFolderDowngradeType(bb.Struct): +class TeamFolderDowngradeType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -88997,10 +92546,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderDowngradeType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderDowngradeType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderDowngradeType_validator = bv.Struct(TeamFolderDowngradeType) + class TeamFolderNotificationTarget(bb.Union): """ Team folder space limit notification target @@ -89010,7 +92563,7 @@ class TeamFolderNotificationTarget(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition admins = None # Attribute is overwritten below the class definition @@ -89028,7 +92581,7 @@ def is_admins(self): :rtype: bool """ - return self._tag == 'admins' + return self._tag == "admins" def is_both(self): """ @@ -89036,7 +92589,7 @@ def is_both(self): :rtype: bool """ - return self._tag == 'both' + return self._tag == "both" def is_editors(self): """ @@ -89044,7 +92597,7 @@ def is_editors(self): :rtype: bool """ - return self._tag == 'editors' + return self._tag == "editors" def is_silent(self): """ @@ -89052,7 +92605,7 @@ def is_silent(self): :rtype: bool """ - return self._tag == 'silent' + return self._tag == "silent" def is_other(self): """ @@ -89060,20 +92613,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderNotificationTarget, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderNotificationTarget, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderNotificationTarget_validator = bv.Union(TeamFolderNotificationTarget) + class TeamFolderPermanentlyDeleteDetails(bb.Struct): """ Permanently deleted archived team folder. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -89081,20 +92637,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderPermanentlyDeleteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderPermanentlyDeleteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderPermanentlyDeleteDetails_validator = bv.Struct(TeamFolderPermanentlyDeleteDetails) -class TeamFolderPermanentlyDeleteType(bb.Struct): +class TeamFolderPermanentlyDeleteType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89103,10 +92661,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderPermanentlyDeleteType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderPermanentlyDeleteType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderPermanentlyDeleteType_validator = bv.Struct(TeamFolderPermanentlyDeleteType) + class TeamFolderRenameDetails(bb.Struct): """ Renamed active/archived team folder. @@ -89118,15 +92680,13 @@ class TeamFolderRenameDetails(bb.Struct): """ __slots__ = [ - '_previous_folder_name_value', - '_new_folder_name_value', + "_previous_folder_name_value", + "_new_folder_name_value", ] _has_required_fields = True - def __init__(self, - previous_folder_name=None, - new_folder_name=None): + def __init__(self, previous_folder_name=None, new_folder_name=None): self._previous_folder_name_value = bb.NOT_SET self._new_folder_name_value = bb.NOT_SET if previous_folder_name is not None: @@ -89141,20 +92701,22 @@ def __init__(self, new_folder_name = bb.Attribute("new_folder_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRenameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderRenameDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderRenameDetails_validator = bv.Struct(TeamFolderRenameDetails) -class TeamFolderRenameType(bb.Struct): +class TeamFolderRenameType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89163,10 +92725,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderRenameType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderRenameType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderRenameType_validator = bv.Struct(TeamFolderRenameType) + class TeamFolderSpaceCapsType(bb.Union): """ Team folder space limit enforcement type @@ -89176,7 +92742,7 @@ class TeamFolderSpaceCapsType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition hard = None # Attribute is overwritten below the class definition @@ -89192,7 +92758,7 @@ def is_hard(self): :rtype: bool """ - return self._tag == 'hard' + return self._tag == "hard" def is_off(self): """ @@ -89200,7 +92766,7 @@ def is_off(self): :rtype: bool """ - return self._tag == 'off' + return self._tag == "off" def is_soft(self): """ @@ -89208,7 +92774,7 @@ def is_soft(self): :rtype: bool """ - return self._tag == 'soft' + return self._tag == "soft" def is_other(self): """ @@ -89216,13 +92782,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceCapsType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderSpaceCapsType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderSpaceCapsType_validator = bv.Union(TeamFolderSpaceCapsType) + class TeamFolderSpaceLimitsChangeCapsTypeDetails(bb.Struct): """ Changed team folder space limit enforcement type. @@ -89234,15 +92804,13 @@ class TeamFolderSpaceLimitsChangeCapsTypeDetails(bb.Struct): """ __slots__ = [ - '_previous_caps_type_value', - '_new_caps_type_value', + "_previous_caps_type_value", + "_new_caps_type_value", ] _has_required_fields = True - def __init__(self, - new_caps_type=None, - previous_caps_type=None): + def __init__(self, new_caps_type=None, previous_caps_type=None): self._previous_caps_type_value = bb.NOT_SET self._new_caps_type_value = bb.NOT_SET if previous_caps_type is not None: @@ -89257,20 +92825,24 @@ def __init__(self, new_caps_type = bb.Attribute("new_caps_type", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeCapsTypeDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderSpaceLimitsChangeCapsTypeDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamFolderSpaceLimitsChangeCapsTypeDetails_validator = bv.Struct(TeamFolderSpaceLimitsChangeCapsTypeDetails) -class TeamFolderSpaceLimitsChangeCapsTypeType(bb.Struct): +TeamFolderSpaceLimitsChangeCapsTypeDetails_validator = bv.Struct( + TeamFolderSpaceLimitsChangeCapsTypeDetails +) + +class TeamFolderSpaceLimitsChangeCapsTypeType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89279,9 +92851,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeCapsTypeType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderSpaceLimitsChangeCapsTypeType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamFolderSpaceLimitsChangeCapsTypeType_validator = bv.Struct( + TeamFolderSpaceLimitsChangeCapsTypeType +) -TeamFolderSpaceLimitsChangeCapsTypeType_validator = bv.Struct(TeamFolderSpaceLimitsChangeCapsTypeType) class TeamFolderSpaceLimitsChangeLimitDetails(bb.Struct): """ @@ -89294,15 +92872,13 @@ class TeamFolderSpaceLimitsChangeLimitDetails(bb.Struct): """ __slots__ = [ - '_previous_limit_bytes_value', - '_new_limit_bytes_value', + "_previous_limit_bytes_value", + "_new_limit_bytes_value", ] _has_required_fields = True - def __init__(self, - new_limit_bytes=None, - previous_limit_bytes=None): + def __init__(self, new_limit_bytes=None, previous_limit_bytes=None): self._previous_limit_bytes_value = bb.NOT_SET self._new_limit_bytes_value = bb.NOT_SET if previous_limit_bytes is not None: @@ -89317,20 +92893,24 @@ def __init__(self, new_limit_bytes = bb.Attribute("new_limit_bytes") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeLimitDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderSpaceLimitsChangeLimitDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamFolderSpaceLimitsChangeLimitDetails_validator = bv.Struct(TeamFolderSpaceLimitsChangeLimitDetails) -class TeamFolderSpaceLimitsChangeLimitType(bb.Struct): +TeamFolderSpaceLimitsChangeLimitDetails_validator = bv.Struct( + TeamFolderSpaceLimitsChangeLimitDetails +) + +class TeamFolderSpaceLimitsChangeLimitType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89339,10 +92919,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeLimitType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderSpaceLimitsChangeLimitType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFolderSpaceLimitsChangeLimitType_validator = bv.Struct(TeamFolderSpaceLimitsChangeLimitType) + class TeamFolderSpaceLimitsChangeNotificationTargetDetails(bb.Struct): """ Changed team folder space limit notification target. @@ -89354,15 +92938,13 @@ class TeamFolderSpaceLimitsChangeNotificationTargetDetails(bb.Struct): """ __slots__ = [ - '_previous_target_value', - '_new_target_value', + "_previous_target_value", + "_new_target_value", ] _has_required_fields = True - def __init__(self, - new_target=None, - previous_target=None): + def __init__(self, new_target=None, previous_target=None): self._previous_target_value = bb.NOT_SET self._new_target_value = bb.NOT_SET if previous_target is not None: @@ -89377,20 +92959,24 @@ def __init__(self, new_target = bb.Attribute("new_target", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeNotificationTargetDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super( + TeamFolderSpaceLimitsChangeNotificationTargetDetails, self + )._process_custom_annotations(annotation_type, field_path, processor) -TeamFolderSpaceLimitsChangeNotificationTargetDetails_validator = bv.Struct(TeamFolderSpaceLimitsChangeNotificationTargetDetails) -class TeamFolderSpaceLimitsChangeNotificationTargetType(bb.Struct): +TeamFolderSpaceLimitsChangeNotificationTargetDetails_validator = bv.Struct( + TeamFolderSpaceLimitsChangeNotificationTargetDetails +) + +class TeamFolderSpaceLimitsChangeNotificationTargetType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89399,17 +92985,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderSpaceLimitsChangeNotificationTargetType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFolderSpaceLimitsChangeNotificationTargetType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamFolderSpaceLimitsChangeNotificationTargetType_validator = bv.Struct( + TeamFolderSpaceLimitsChangeNotificationTargetType +) -TeamFolderSpaceLimitsChangeNotificationTargetType_validator = bv.Struct(TeamFolderSpaceLimitsChangeNotificationTargetType) class TeamFoldersCreateReportDetails(bb.Struct): """ Created team folders report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -89417,10 +93008,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFoldersCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFoldersCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFoldersCreateReportDetails_validator = bv.Struct(TeamFoldersCreateReportDetails) + class TeamFoldersCreateReportFailedDetails(bb.Struct): """ Couldn't generate team folders report. @@ -89430,13 +93025,12 @@ class TeamFoldersCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -89445,20 +93039,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFoldersCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFoldersCreateReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFoldersCreateReportFailedDetails_validator = bv.Struct(TeamFoldersCreateReportFailedDetails) -class TeamFoldersCreateReportFailedType(bb.Struct): +class TeamFoldersCreateReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89467,20 +93063,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFoldersCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFoldersCreateReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFoldersCreateReportFailedType_validator = bv.Struct(TeamFoldersCreateReportFailedType) -class TeamFoldersCreateReportType(bb.Struct): +class TeamFoldersCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89489,10 +93087,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFoldersCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamFoldersCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamFoldersCreateReportType_validator = bv.Struct(TeamFoldersCreateReportType) + class TeamInviteDetails(bb.Struct): """ Details about team invites @@ -89504,15 +93106,13 @@ class TeamInviteDetails(bb.Struct): """ __slots__ = [ - '_invite_method_value', - '_additional_license_purchase_value', + "_invite_method_value", + "_additional_license_purchase_value", ] _has_required_fields = True - def __init__(self, - invite_method=None, - additional_license_purchase=None): + def __init__(self, invite_method=None, additional_license_purchase=None): self._invite_method_value = bb.NOT_SET self._additional_license_purchase_value = bb.NOT_SET if invite_method is not None: @@ -89527,31 +93127,35 @@ def __init__(self, additional_license_purchase = bb.Attribute("additional_license_purchase", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamInviteDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamInviteDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamInviteDetails_validator = bv.Struct(TeamInviteDetails) + class TeamLinkedAppLogInfo(AppLogInfo): """ Team linked app """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False - def __init__(self, - app_id=None, - display_name=None): - super(TeamLinkedAppLogInfo, self).__init__(app_id, - display_name) + def __init__(self, app_id=None, display_name=None): + super(TeamLinkedAppLogInfo, self).__init__(app_id, display_name) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamLinkedAppLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamLinkedAppLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamLinkedAppLogInfo_validator = bv.Struct(TeamLinkedAppLogInfo) + class TeamLogInfo(bb.Struct): """ Team's logged information. @@ -89561,13 +93165,12 @@ class TeamLogInfo(bb.Struct): """ __slots__ = [ - '_display_name_value', + "_display_name_value", ] _has_required_fields = True - def __init__(self, - display_name=None): + def __init__(self, display_name=None): self._display_name_value = bb.NOT_SET if display_name is not None: self.display_name = display_name @@ -89578,8 +93181,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(TeamLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + TeamLogInfo_validator = bv.Struct(TeamLogInfo) + class TeamMemberLogInfo(UserLogInfo): """ Team member's logged information. @@ -89593,23 +93198,23 @@ class TeamMemberLogInfo(UserLogInfo): """ __slots__ = [ - '_team_member_id_value', - '_member_external_id_value', - '_team_value', + "_team_member_id_value", + "_member_external_id_value", + "_team_value", ] _has_required_fields = False - def __init__(self, - account_id=None, - display_name=None, - email=None, - team_member_id=None, - member_external_id=None, - team=None): - super(TeamMemberLogInfo, self).__init__(account_id, - display_name, - email) + def __init__( + self, + account_id=None, + display_name=None, + email=None, + team_member_id=None, + member_external_id=None, + team=None, + ): + super(TeamMemberLogInfo, self).__init__(account_id, display_name, email) self._team_member_id_value = bb.NOT_SET self._member_external_id_value = bb.NOT_SET self._team_value = bb.NOT_SET @@ -89630,10 +93235,14 @@ def __init__(self, team = bb.Attribute("team", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberLogInfo_validator = bv.Struct(TeamMemberLogInfo) + class TeamMemberStorageRequestPolicy(bb.Union): """ Policy for deciding whether team members can request increased storage @@ -89644,7 +93253,7 @@ class TeamMemberStorageRequestPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -89660,7 +93269,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_disabled(self): """ @@ -89668,7 +93277,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -89676,7 +93285,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -89684,13 +93293,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberStorageRequestPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberStorageRequestPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberStorageRequestPolicy_validator = bv.Union(TeamMemberStorageRequestPolicy) + class TeamMemberStorageRequestPolicyChangedDetails(bb.Struct): """ Changed team member storage request policy for team. @@ -89703,15 +93316,13 @@ class TeamMemberStorageRequestPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -89726,20 +93337,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberStorageRequestPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberStorageRequestPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMemberStorageRequestPolicyChangedDetails_validator = bv.Struct(TeamMemberStorageRequestPolicyChangedDetails) -class TeamMemberStorageRequestPolicyChangedType(bb.Struct): +TeamMemberStorageRequestPolicyChangedDetails_validator = bv.Struct( + TeamMemberStorageRequestPolicyChangedDetails +) + +class TeamMemberStorageRequestPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89748,9 +93363,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberStorageRequestPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberStorageRequestPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamMemberStorageRequestPolicyChangedType_validator = bv.Struct( + TeamMemberStorageRequestPolicyChangedType +) -TeamMemberStorageRequestPolicyChangedType_validator = bv.Struct(TeamMemberStorageRequestPolicyChangedType) class TeamMembershipType(bb.Union): """ @@ -89759,7 +93380,7 @@ class TeamMembershipType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition free = None # Attribute is overwritten below the class definition @@ -89775,7 +93396,7 @@ def is_free(self): :rtype: bool """ - return self._tag == 'free' + return self._tag == "free" def is_full(self): """ @@ -89783,7 +93404,7 @@ def is_full(self): :rtype: bool """ - return self._tag == 'full' + return self._tag == "full" def is_guest(self): """ @@ -89791,7 +93412,7 @@ def is_guest(self): :rtype: bool """ - return self._tag == 'guest' + return self._tag == "guest" def is_other(self): """ @@ -89799,13 +93420,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMembershipType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMembershipType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMembershipType_validator = bv.Union(TeamMembershipType) + class TeamMergeFromDetails(bb.Struct): """ Merged another team into this team. @@ -89815,13 +93440,12 @@ class TeamMergeFromDetails(bb.Struct): """ __slots__ = [ - '_team_name_value', + "_team_name_value", ] _has_required_fields = True - def __init__(self, - team_name=None): + def __init__(self, team_name=None): self._team_name_value = bb.NOT_SET if team_name is not None: self.team_name = team_name @@ -89830,20 +93454,22 @@ def __init__(self, team_name = bb.Attribute("team_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeFromDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeFromDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeFromDetails_validator = bv.Struct(TeamMergeFromDetails) -class TeamMergeFromType(bb.Struct): +class TeamMergeFromType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -89852,10 +93478,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeFromType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeFromType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeFromType_validator = bv.Struct(TeamMergeFromType) + class TeamMergeRequestAcceptedDetails(bb.Struct): """ Accepted a team merge request. @@ -89865,13 +93495,12 @@ class TeamMergeRequestAcceptedDetails(bb.Struct): """ __slots__ = [ - '_request_accepted_details_value', + "_request_accepted_details_value", ] _has_required_fields = True - def __init__(self, - request_accepted_details=None): + def __init__(self, request_accepted_details=None): self._request_accepted_details_value = bb.NOT_SET if request_accepted_details is not None: self.request_accepted_details = request_accepted_details @@ -89880,10 +93509,14 @@ def __init__(self, request_accepted_details = bb.Attribute("request_accepted_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestAcceptedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestAcceptedDetails_validator = bv.Struct(TeamMergeRequestAcceptedDetails) + class TeamMergeRequestAcceptedExtraDetails(bb.Union): """ Team merge request acceptance details @@ -89900,7 +93533,7 @@ class TeamMergeRequestAcceptedExtraDetails(bb.Union): :vartype TeamMergeRequestAcceptedExtraDetails.secondary_team: SecondaryTeamRequestAcceptedDetails """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -89913,7 +93546,7 @@ def primary_team(cls, val): :param PrimaryTeamRequestAcceptedDetails val: :rtype: TeamMergeRequestAcceptedExtraDetails """ - return cls('primary_team', val) + return cls("primary_team", val) @classmethod def secondary_team(cls, val): @@ -89924,7 +93557,7 @@ def secondary_team(cls, val): :param SecondaryTeamRequestAcceptedDetails val: :rtype: TeamMergeRequestAcceptedExtraDetails """ - return cls('secondary_team', val) + return cls("secondary_team", val) def is_primary_team(self): """ @@ -89932,7 +93565,7 @@ def is_primary_team(self): :rtype: bool """ - return self._tag == 'primary_team' + return self._tag == "primary_team" def is_secondary_team(self): """ @@ -89940,7 +93573,7 @@ def is_secondary_team(self): :rtype: bool """ - return self._tag == 'secondary_team' + return self._tag == "secondary_team" def is_other(self): """ @@ -89948,7 +93581,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_primary_team(self): """ @@ -89975,10 +93608,14 @@ def get_secondary_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestAcceptedExtraDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestAcceptedExtraDetails_validator = bv.Union(TeamMergeRequestAcceptedExtraDetails) + class TeamMergeRequestAcceptedShownToPrimaryTeamDetails(bb.Struct): """ Accepted a team merge request. @@ -89990,15 +93627,13 @@ class TeamMergeRequestAcceptedShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_by_value', + "_secondary_team_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_by=None): + def __init__(self, secondary_team=None, sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -90013,20 +93648,24 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestAcceptedShownToPrimaryTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestAcceptedShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestAcceptedShownToPrimaryTeamDetails) -class TeamMergeRequestAcceptedShownToPrimaryTeamType(bb.Struct): +TeamMergeRequestAcceptedShownToPrimaryTeamDetails_validator = bv.Struct( + TeamMergeRequestAcceptedShownToPrimaryTeamDetails +) + +class TeamMergeRequestAcceptedShownToPrimaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90035,9 +93674,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestAcceptedShownToPrimaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamMergeRequestAcceptedShownToPrimaryTeamType_validator = bv.Struct( + TeamMergeRequestAcceptedShownToPrimaryTeamType +) -TeamMergeRequestAcceptedShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestAcceptedShownToPrimaryTeamType) class TeamMergeRequestAcceptedShownToSecondaryTeamDetails(bb.Struct): """ @@ -90050,15 +93695,13 @@ class TeamMergeRequestAcceptedShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - '_primary_team_value', - '_sent_by_value', + "_primary_team_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - primary_team=None, - sent_by=None): + def __init__(self, primary_team=None, sent_by=None): self._primary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if primary_team is not None: @@ -90073,20 +93716,24 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super( + TeamMergeRequestAcceptedShownToSecondaryTeamDetails, self + )._process_custom_annotations(annotation_type, field_path, processor) -TeamMergeRequestAcceptedShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestAcceptedShownToSecondaryTeamDetails) -class TeamMergeRequestAcceptedShownToSecondaryTeamType(bb.Struct): +TeamMergeRequestAcceptedShownToSecondaryTeamDetails_validator = bv.Struct( + TeamMergeRequestAcceptedShownToSecondaryTeamDetails +) + +class TeamMergeRequestAcceptedShownToSecondaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90095,20 +93742,24 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestAcceptedShownToSecondaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestAcceptedShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestAcceptedShownToSecondaryTeamType) -class TeamMergeRequestAcceptedType(bb.Struct): +TeamMergeRequestAcceptedShownToSecondaryTeamType_validator = bv.Struct( + TeamMergeRequestAcceptedShownToSecondaryTeamType +) + +class TeamMergeRequestAcceptedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90117,10 +93768,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAcceptedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestAcceptedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestAcceptedType_validator = bv.Struct(TeamMergeRequestAcceptedType) + class TeamMergeRequestAutoCanceledDetails(bb.Struct): """ Automatically canceled team merge request. @@ -90130,13 +93785,12 @@ class TeamMergeRequestAutoCanceledDetails(bb.Struct): """ __slots__ = [ - '_details_value', + "_details_value", ] _has_required_fields = False - def __init__(self, - details=None): + def __init__(self, details=None): self._details_value = bb.NOT_SET if details is not None: self.details = details @@ -90145,20 +93799,22 @@ def __init__(self, details = bb.Attribute("details", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAutoCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestAutoCanceledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestAutoCanceledDetails_validator = bv.Struct(TeamMergeRequestAutoCanceledDetails) -class TeamMergeRequestAutoCanceledType(bb.Struct): +class TeamMergeRequestAutoCanceledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90167,10 +93823,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestAutoCanceledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestAutoCanceledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestAutoCanceledType_validator = bv.Struct(TeamMergeRequestAutoCanceledType) + class TeamMergeRequestCanceledDetails(bb.Struct): """ Canceled a team merge request. @@ -90180,13 +93840,12 @@ class TeamMergeRequestCanceledDetails(bb.Struct): """ __slots__ = [ - '_request_canceled_details_value', + "_request_canceled_details_value", ] _has_required_fields = True - def __init__(self, - request_canceled_details=None): + def __init__(self, request_canceled_details=None): self._request_canceled_details_value = bb.NOT_SET if request_canceled_details is not None: self.request_canceled_details = request_canceled_details @@ -90195,10 +93854,14 @@ def __init__(self, request_canceled_details = bb.Attribute("request_canceled_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestCanceledDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestCanceledDetails_validator = bv.Struct(TeamMergeRequestCanceledDetails) + class TeamMergeRequestCanceledExtraDetails(bb.Union): """ Team merge request cancellation details @@ -90215,7 +93878,7 @@ class TeamMergeRequestCanceledExtraDetails(bb.Union): :vartype TeamMergeRequestCanceledExtraDetails.secondary_team: SecondaryTeamRequestCanceledDetails """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -90228,7 +93891,7 @@ def primary_team(cls, val): :param PrimaryTeamRequestCanceledDetails val: :rtype: TeamMergeRequestCanceledExtraDetails """ - return cls('primary_team', val) + return cls("primary_team", val) @classmethod def secondary_team(cls, val): @@ -90239,7 +93902,7 @@ def secondary_team(cls, val): :param SecondaryTeamRequestCanceledDetails val: :rtype: TeamMergeRequestCanceledExtraDetails """ - return cls('secondary_team', val) + return cls("secondary_team", val) def is_primary_team(self): """ @@ -90247,7 +93910,7 @@ def is_primary_team(self): :rtype: bool """ - return self._tag == 'primary_team' + return self._tag == "primary_team" def is_secondary_team(self): """ @@ -90255,7 +93918,7 @@ def is_secondary_team(self): :rtype: bool """ - return self._tag == 'secondary_team' + return self._tag == "secondary_team" def is_other(self): """ @@ -90263,7 +93926,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_primary_team(self): """ @@ -90290,10 +93953,14 @@ def get_secondary_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestCanceledExtraDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestCanceledExtraDetails_validator = bv.Union(TeamMergeRequestCanceledExtraDetails) + class TeamMergeRequestCanceledShownToPrimaryTeamDetails(bb.Struct): """ Canceled a team merge request. @@ -90305,15 +93972,13 @@ class TeamMergeRequestCanceledShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_by_value', + "_secondary_team_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_by=None): + def __init__(self, secondary_team=None, sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -90328,20 +93993,24 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestCanceledShownToPrimaryTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestCanceledShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestCanceledShownToPrimaryTeamDetails) -class TeamMergeRequestCanceledShownToPrimaryTeamType(bb.Struct): +TeamMergeRequestCanceledShownToPrimaryTeamDetails_validator = bv.Struct( + TeamMergeRequestCanceledShownToPrimaryTeamDetails +) + +class TeamMergeRequestCanceledShownToPrimaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90350,9 +94019,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestCanceledShownToPrimaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamMergeRequestCanceledShownToPrimaryTeamType_validator = bv.Struct( + TeamMergeRequestCanceledShownToPrimaryTeamType +) -TeamMergeRequestCanceledShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestCanceledShownToPrimaryTeamType) class TeamMergeRequestCanceledShownToSecondaryTeamDetails(bb.Struct): """ @@ -90365,15 +94040,13 @@ class TeamMergeRequestCanceledShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - '_sent_to_value', - '_sent_by_value', + "_sent_to_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - sent_to=None, - sent_by=None): + def __init__(self, sent_to=None, sent_by=None): self._sent_to_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if sent_to is not None: @@ -90388,20 +94061,24 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super( + TeamMergeRequestCanceledShownToSecondaryTeamDetails, self + )._process_custom_annotations(annotation_type, field_path, processor) -TeamMergeRequestCanceledShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestCanceledShownToSecondaryTeamDetails) -class TeamMergeRequestCanceledShownToSecondaryTeamType(bb.Struct): +TeamMergeRequestCanceledShownToSecondaryTeamDetails_validator = bv.Struct( + TeamMergeRequestCanceledShownToSecondaryTeamDetails +) + +class TeamMergeRequestCanceledShownToSecondaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90410,20 +94087,24 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestCanceledShownToSecondaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestCanceledShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestCanceledShownToSecondaryTeamType) -class TeamMergeRequestCanceledType(bb.Struct): +TeamMergeRequestCanceledShownToSecondaryTeamType_validator = bv.Struct( + TeamMergeRequestCanceledShownToSecondaryTeamType +) + +class TeamMergeRequestCanceledType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90432,10 +94113,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestCanceledType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestCanceledType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestCanceledType_validator = bv.Struct(TeamMergeRequestCanceledType) + class TeamMergeRequestExpiredDetails(bb.Struct): """ Team merge request expired. @@ -90445,13 +94130,12 @@ class TeamMergeRequestExpiredDetails(bb.Struct): """ __slots__ = [ - '_request_expired_details_value', + "_request_expired_details_value", ] _has_required_fields = True - def __init__(self, - request_expired_details=None): + def __init__(self, request_expired_details=None): self._request_expired_details_value = bb.NOT_SET if request_expired_details is not None: self.request_expired_details = request_expired_details @@ -90460,10 +94144,14 @@ def __init__(self, request_expired_details = bb.Attribute("request_expired_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestExpiredDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestExpiredDetails_validator = bv.Struct(TeamMergeRequestExpiredDetails) + class TeamMergeRequestExpiredExtraDetails(bb.Union): """ Team merge request expiration details @@ -90480,7 +94168,7 @@ class TeamMergeRequestExpiredExtraDetails(bb.Union): :vartype TeamMergeRequestExpiredExtraDetails.secondary_team: SecondaryTeamRequestExpiredDetails """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -90493,7 +94181,7 @@ def primary_team(cls, val): :param PrimaryTeamRequestExpiredDetails val: :rtype: TeamMergeRequestExpiredExtraDetails """ - return cls('primary_team', val) + return cls("primary_team", val) @classmethod def secondary_team(cls, val): @@ -90504,7 +94192,7 @@ def secondary_team(cls, val): :param SecondaryTeamRequestExpiredDetails val: :rtype: TeamMergeRequestExpiredExtraDetails """ - return cls('secondary_team', val) + return cls("secondary_team", val) def is_primary_team(self): """ @@ -90512,7 +94200,7 @@ def is_primary_team(self): :rtype: bool """ - return self._tag == 'primary_team' + return self._tag == "primary_team" def is_secondary_team(self): """ @@ -90520,7 +94208,7 @@ def is_secondary_team(self): :rtype: bool """ - return self._tag == 'secondary_team' + return self._tag == "secondary_team" def is_other(self): """ @@ -90528,7 +94216,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_primary_team(self): """ @@ -90555,10 +94243,14 @@ def get_secondary_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestExpiredExtraDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestExpiredExtraDetails_validator = bv.Union(TeamMergeRequestExpiredExtraDetails) + class TeamMergeRequestExpiredShownToPrimaryTeamDetails(bb.Struct): """ Team merge request expired. @@ -90570,15 +94262,13 @@ class TeamMergeRequestExpiredShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_by_value', + "_secondary_team_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_by=None): + def __init__(self, secondary_team=None, sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -90593,20 +94283,24 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestExpiredShownToPrimaryTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestExpiredShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestExpiredShownToPrimaryTeamDetails) -class TeamMergeRequestExpiredShownToPrimaryTeamType(bb.Struct): +TeamMergeRequestExpiredShownToPrimaryTeamDetails_validator = bv.Struct( + TeamMergeRequestExpiredShownToPrimaryTeamDetails +) + +class TeamMergeRequestExpiredShownToPrimaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90615,9 +94309,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestExpiredShownToPrimaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamMergeRequestExpiredShownToPrimaryTeamType_validator = bv.Struct( + TeamMergeRequestExpiredShownToPrimaryTeamType +) -TeamMergeRequestExpiredShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestExpiredShownToPrimaryTeamType) class TeamMergeRequestExpiredShownToSecondaryTeamDetails(bb.Struct): """ @@ -90628,13 +94328,12 @@ class TeamMergeRequestExpiredShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - '_sent_to_value', + "_sent_to_value", ] _has_required_fields = True - def __init__(self, - sent_to=None): + def __init__(self, sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -90643,20 +94342,24 @@ def __init__(self, sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestExpiredShownToSecondaryTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestExpiredShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestExpiredShownToSecondaryTeamDetails) -class TeamMergeRequestExpiredShownToSecondaryTeamType(bb.Struct): +TeamMergeRequestExpiredShownToSecondaryTeamDetails_validator = bv.Struct( + TeamMergeRequestExpiredShownToSecondaryTeamDetails +) + +class TeamMergeRequestExpiredShownToSecondaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90665,20 +94368,24 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestExpiredShownToSecondaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestExpiredShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestExpiredShownToSecondaryTeamType) -class TeamMergeRequestExpiredType(bb.Struct): +TeamMergeRequestExpiredShownToSecondaryTeamType_validator = bv.Struct( + TeamMergeRequestExpiredShownToSecondaryTeamType +) + +class TeamMergeRequestExpiredType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90687,10 +94394,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestExpiredType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestExpiredType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestExpiredType_validator = bv.Struct(TeamMergeRequestExpiredType) + class TeamMergeRequestRejectedShownToPrimaryTeamDetails(bb.Struct): """ Rejected a team merge request. @@ -90702,15 +94413,13 @@ class TeamMergeRequestRejectedShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_by_value', + "_secondary_team_value", + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_by=None): + def __init__(self, secondary_team=None, sent_by=None): self._secondary_team_value = bb.NOT_SET self._sent_by_value = bb.NOT_SET if secondary_team is not None: @@ -90725,20 +94434,24 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestRejectedShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestRejectedShownToPrimaryTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestRejectedShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestRejectedShownToPrimaryTeamDetails) -class TeamMergeRequestRejectedShownToPrimaryTeamType(bb.Struct): +TeamMergeRequestRejectedShownToPrimaryTeamDetails_validator = bv.Struct( + TeamMergeRequestRejectedShownToPrimaryTeamDetails +) + +class TeamMergeRequestRejectedShownToPrimaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90747,9 +94460,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestRejectedShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestRejectedShownToPrimaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamMergeRequestRejectedShownToPrimaryTeamType_validator = bv.Struct( + TeamMergeRequestRejectedShownToPrimaryTeamType +) -TeamMergeRequestRejectedShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestRejectedShownToPrimaryTeamType) class TeamMergeRequestRejectedShownToSecondaryTeamDetails(bb.Struct): """ @@ -90760,13 +94479,12 @@ class TeamMergeRequestRejectedShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - '_sent_by_value', + "_sent_by_value", ] _has_required_fields = True - def __init__(self, - sent_by=None): + def __init__(self, sent_by=None): self._sent_by_value = bb.NOT_SET if sent_by is not None: self.sent_by = sent_by @@ -90775,20 +94493,24 @@ def __init__(self, sent_by = bb.Attribute("sent_by") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestRejectedShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super( + TeamMergeRequestRejectedShownToSecondaryTeamDetails, self + )._process_custom_annotations(annotation_type, field_path, processor) -TeamMergeRequestRejectedShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestRejectedShownToSecondaryTeamDetails) -class TeamMergeRequestRejectedShownToSecondaryTeamType(bb.Struct): +TeamMergeRequestRejectedShownToSecondaryTeamDetails_validator = bv.Struct( + TeamMergeRequestRejectedShownToSecondaryTeamDetails +) + +class TeamMergeRequestRejectedShownToSecondaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90797,9 +94519,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestRejectedShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestRejectedShownToSecondaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamMergeRequestRejectedShownToSecondaryTeamType_validator = bv.Struct( + TeamMergeRequestRejectedShownToSecondaryTeamType +) -TeamMergeRequestRejectedShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestRejectedShownToSecondaryTeamType) class TeamMergeRequestReminderDetails(bb.Struct): """ @@ -90810,13 +94538,12 @@ class TeamMergeRequestReminderDetails(bb.Struct): """ __slots__ = [ - '_request_reminder_details_value', + "_request_reminder_details_value", ] _has_required_fields = True - def __init__(self, - request_reminder_details=None): + def __init__(self, request_reminder_details=None): self._request_reminder_details_value = bb.NOT_SET if request_reminder_details is not None: self.request_reminder_details = request_reminder_details @@ -90825,10 +94552,14 @@ def __init__(self, request_reminder_details = bb.Attribute("request_reminder_details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestReminderDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestReminderDetails_validator = bv.Struct(TeamMergeRequestReminderDetails) + class TeamMergeRequestReminderExtraDetails(bb.Union): """ Team merge request reminder details @@ -90845,7 +94576,7 @@ class TeamMergeRequestReminderExtraDetails(bb.Union): :vartype TeamMergeRequestReminderExtraDetails.secondary_team: SecondaryTeamRequestReminderDetails """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -90858,7 +94589,7 @@ def primary_team(cls, val): :param PrimaryTeamRequestReminderDetails val: :rtype: TeamMergeRequestReminderExtraDetails """ - return cls('primary_team', val) + return cls("primary_team", val) @classmethod def secondary_team(cls, val): @@ -90869,7 +94600,7 @@ def secondary_team(cls, val): :param SecondaryTeamRequestReminderDetails val: :rtype: TeamMergeRequestReminderExtraDetails """ - return cls('secondary_team', val) + return cls("secondary_team", val) def is_primary_team(self): """ @@ -90877,7 +94608,7 @@ def is_primary_team(self): :rtype: bool """ - return self._tag == 'primary_team' + return self._tag == "primary_team" def is_secondary_team(self): """ @@ -90885,7 +94616,7 @@ def is_secondary_team(self): :rtype: bool """ - return self._tag == 'secondary_team' + return self._tag == "secondary_team" def is_other(self): """ @@ -90893,7 +94624,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_primary_team(self): """ @@ -90920,10 +94651,14 @@ def get_secondary_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderExtraDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestReminderExtraDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestReminderExtraDetails_validator = bv.Union(TeamMergeRequestReminderExtraDetails) + class TeamMergeRequestReminderShownToPrimaryTeamDetails(bb.Struct): """ Sent a team merge request reminder. @@ -90935,15 +94670,13 @@ class TeamMergeRequestReminderShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_to_value', + "_secondary_team_value", + "_sent_to_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_to=None): + def __init__(self, secondary_team=None, sent_to=None): self._secondary_team_value = bb.NOT_SET self._sent_to_value = bb.NOT_SET if secondary_team is not None: @@ -90958,20 +94691,24 @@ def __init__(self, sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestReminderShownToPrimaryTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestReminderShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestReminderShownToPrimaryTeamDetails) -class TeamMergeRequestReminderShownToPrimaryTeamType(bb.Struct): +TeamMergeRequestReminderShownToPrimaryTeamDetails_validator = bv.Struct( + TeamMergeRequestReminderShownToPrimaryTeamDetails +) + +class TeamMergeRequestReminderShownToPrimaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -90980,9 +94717,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestReminderShownToPrimaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamMergeRequestReminderShownToPrimaryTeamType_validator = bv.Struct( + TeamMergeRequestReminderShownToPrimaryTeamType +) -TeamMergeRequestReminderShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestReminderShownToPrimaryTeamType) class TeamMergeRequestReminderShownToSecondaryTeamDetails(bb.Struct): """ @@ -90993,13 +94736,12 @@ class TeamMergeRequestReminderShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - '_sent_to_value', + "_sent_to_value", ] _has_required_fields = True - def __init__(self, - sent_to=None): + def __init__(self, sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -91008,20 +94750,24 @@ def __init__(self, sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super( + TeamMergeRequestReminderShownToSecondaryTeamDetails, self + )._process_custom_annotations(annotation_type, field_path, processor) -TeamMergeRequestReminderShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestReminderShownToSecondaryTeamDetails) -class TeamMergeRequestReminderShownToSecondaryTeamType(bb.Struct): +TeamMergeRequestReminderShownToSecondaryTeamDetails_validator = bv.Struct( + TeamMergeRequestReminderShownToSecondaryTeamDetails +) + +class TeamMergeRequestReminderShownToSecondaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91030,20 +94776,24 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestReminderShownToSecondaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestReminderShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestReminderShownToSecondaryTeamType) -class TeamMergeRequestReminderType(bb.Struct): +TeamMergeRequestReminderShownToSecondaryTeamType_validator = bv.Struct( + TeamMergeRequestReminderShownToSecondaryTeamType +) + +class TeamMergeRequestReminderType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91052,10 +94802,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestReminderType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestReminderType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestReminderType_validator = bv.Struct(TeamMergeRequestReminderType) + class TeamMergeRequestRevokedDetails(bb.Struct): """ Canceled the team merge. @@ -91065,13 +94819,12 @@ class TeamMergeRequestRevokedDetails(bb.Struct): """ __slots__ = [ - '_team_value', + "_team_value", ] _has_required_fields = True - def __init__(self, - team=None): + def __init__(self, team=None): self._team_value = bb.NOT_SET if team is not None: self.team = team @@ -91080,20 +94833,22 @@ def __init__(self, team = bb.Attribute("team") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestRevokedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestRevokedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestRevokedDetails_validator = bv.Struct(TeamMergeRequestRevokedDetails) -class TeamMergeRequestRevokedType(bb.Struct): +class TeamMergeRequestRevokedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91102,10 +94857,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestRevokedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestRevokedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeRequestRevokedType_validator = bv.Struct(TeamMergeRequestRevokedType) + class TeamMergeRequestSentShownToPrimaryTeamDetails(bb.Struct): """ Requested to merge their Dropbox team into yours. @@ -91117,15 +94876,13 @@ class TeamMergeRequestSentShownToPrimaryTeamDetails(bb.Struct): """ __slots__ = [ - '_secondary_team_value', - '_sent_to_value', + "_secondary_team_value", + "_sent_to_value", ] _has_required_fields = True - def __init__(self, - secondary_team=None, - sent_to=None): + def __init__(self, secondary_team=None, sent_to=None): self._secondary_team_value = bb.NOT_SET self._sent_to_value = bb.NOT_SET if secondary_team is not None: @@ -91140,20 +94897,24 @@ def __init__(self, sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestSentShownToPrimaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestSentShownToPrimaryTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestSentShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestSentShownToPrimaryTeamDetails) -class TeamMergeRequestSentShownToPrimaryTeamType(bb.Struct): +TeamMergeRequestSentShownToPrimaryTeamDetails_validator = bv.Struct( + TeamMergeRequestSentShownToPrimaryTeamDetails +) + +class TeamMergeRequestSentShownToPrimaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91162,9 +94923,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestSentShownToPrimaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestSentShownToPrimaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamMergeRequestSentShownToPrimaryTeamType_validator = bv.Struct( + TeamMergeRequestSentShownToPrimaryTeamType +) -TeamMergeRequestSentShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestSentShownToPrimaryTeamType) class TeamMergeRequestSentShownToSecondaryTeamDetails(bb.Struct): """ @@ -91175,13 +94942,12 @@ class TeamMergeRequestSentShownToSecondaryTeamDetails(bb.Struct): """ __slots__ = [ - '_sent_to_value', + "_sent_to_value", ] _has_required_fields = True - def __init__(self, - sent_to=None): + def __init__(self, sent_to=None): self._sent_to_value = bb.NOT_SET if sent_to is not None: self.sent_to = sent_to @@ -91190,20 +94956,24 @@ def __init__(self, sent_to = bb.Attribute("sent_to") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestSentShownToSecondaryTeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestSentShownToSecondaryTeamDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamMergeRequestSentShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestSentShownToSecondaryTeamDetails) -class TeamMergeRequestSentShownToSecondaryTeamType(bb.Struct): +TeamMergeRequestSentShownToSecondaryTeamDetails_validator = bv.Struct( + TeamMergeRequestSentShownToSecondaryTeamDetails +) + +class TeamMergeRequestSentShownToSecondaryTeamType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91212,9 +94982,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeRequestSentShownToSecondaryTeamType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeRequestSentShownToSecondaryTeamType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamMergeRequestSentShownToSecondaryTeamType_validator = bv.Struct( + TeamMergeRequestSentShownToSecondaryTeamType +) -TeamMergeRequestSentShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestSentShownToSecondaryTeamType) class TeamMergeToDetails(bb.Struct): """ @@ -91225,13 +95001,12 @@ class TeamMergeToDetails(bb.Struct): """ __slots__ = [ - '_team_name_value', + "_team_name_value", ] _has_required_fields = True - def __init__(self, - team_name=None): + def __init__(self, team_name=None): self._team_name_value = bb.NOT_SET if team_name is not None: self.team_name = team_name @@ -91240,20 +95015,22 @@ def __init__(self, team_name = bb.Attribute("team_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeToDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeToDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeToDetails_validator = bv.Struct(TeamMergeToDetails) -class TeamMergeToType(bb.Struct): +class TeamMergeToType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91262,10 +95039,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMergeToType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMergeToType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMergeToType_validator = bv.Struct(TeamMergeToType) + class TeamName(bb.Struct): """ Team name details @@ -91277,15 +95058,13 @@ class TeamName(bb.Struct): """ __slots__ = [ - '_team_display_name_value', - '_team_legal_name_value', + "_team_display_name_value", + "_team_legal_name_value", ] _has_required_fields = True - def __init__(self, - team_display_name=None, - team_legal_name=None): + def __init__(self, team_display_name=None, team_legal_name=None): self._team_display_name_value = bb.NOT_SET self._team_legal_name_value = bb.NOT_SET if team_display_name is not None: @@ -91302,15 +95081,16 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(TeamName, self)._process_custom_annotations(annotation_type, field_path, processor) + TeamName_validator = bv.Struct(TeamName) + class TeamProfileAddBackgroundDetails(bb.Struct): """ Added team background to display on shared link headers. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -91318,20 +95098,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileAddBackgroundDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileAddBackgroundDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileAddBackgroundDetails_validator = bv.Struct(TeamProfileAddBackgroundDetails) -class TeamProfileAddBackgroundType(bb.Struct): +class TeamProfileAddBackgroundType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91340,17 +95122,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileAddBackgroundType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileAddBackgroundType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileAddBackgroundType_validator = bv.Struct(TeamProfileAddBackgroundType) + class TeamProfileAddLogoDetails(bb.Struct): """ Added team logo to display on shared link headers. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -91358,20 +95143,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileAddLogoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileAddLogoDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileAddLogoDetails_validator = bv.Struct(TeamProfileAddLogoDetails) -class TeamProfileAddLogoType(bb.Struct): +class TeamProfileAddLogoType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91380,17 +95167,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileAddLogoType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileAddLogoType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileAddLogoType_validator = bv.Struct(TeamProfileAddLogoType) + class TeamProfileChangeBackgroundDetails(bb.Struct): """ Changed team background displayed on shared link headers. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -91398,20 +95188,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeBackgroundDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileChangeBackgroundDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileChangeBackgroundDetails_validator = bv.Struct(TeamProfileChangeBackgroundDetails) -class TeamProfileChangeBackgroundType(bb.Struct): +class TeamProfileChangeBackgroundType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91420,10 +95212,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeBackgroundType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileChangeBackgroundType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileChangeBackgroundType_validator = bv.Struct(TeamProfileChangeBackgroundType) + class TeamProfileChangeDefaultLanguageDetails(bb.Struct): """ Changed default language for team. @@ -91435,15 +95231,13 @@ class TeamProfileChangeDefaultLanguageDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -91458,20 +95252,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeDefaultLanguageDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileChangeDefaultLanguageDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamProfileChangeDefaultLanguageDetails_validator = bv.Struct(TeamProfileChangeDefaultLanguageDetails) -class TeamProfileChangeDefaultLanguageType(bb.Struct): +TeamProfileChangeDefaultLanguageDetails_validator = bv.Struct( + TeamProfileChangeDefaultLanguageDetails +) + +class TeamProfileChangeDefaultLanguageType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91480,17 +95278,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeDefaultLanguageType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileChangeDefaultLanguageType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileChangeDefaultLanguageType_validator = bv.Struct(TeamProfileChangeDefaultLanguageType) + class TeamProfileChangeLogoDetails(bb.Struct): """ Changed team logo displayed on shared link headers. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -91498,20 +95299,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeLogoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileChangeLogoDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileChangeLogoDetails_validator = bv.Struct(TeamProfileChangeLogoDetails) -class TeamProfileChangeLogoType(bb.Struct): +class TeamProfileChangeLogoType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91520,10 +95323,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeLogoType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileChangeLogoType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileChangeLogoType_validator = bv.Struct(TeamProfileChangeLogoType) + class TeamProfileChangeNameDetails(bb.Struct): """ Changed team name. @@ -91535,15 +95342,13 @@ class TeamProfileChangeNameDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -91558,20 +95363,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeNameDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileChangeNameDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileChangeNameDetails_validator = bv.Struct(TeamProfileChangeNameDetails) -class TeamProfileChangeNameType(bb.Struct): +class TeamProfileChangeNameType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91580,17 +95387,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileChangeNameType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileChangeNameType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileChangeNameType_validator = bv.Struct(TeamProfileChangeNameType) + class TeamProfileRemoveBackgroundDetails(bb.Struct): """ Removed team background displayed on shared link headers. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -91598,20 +95408,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileRemoveBackgroundDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileRemoveBackgroundDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileRemoveBackgroundDetails_validator = bv.Struct(TeamProfileRemoveBackgroundDetails) -class TeamProfileRemoveBackgroundType(bb.Struct): +class TeamProfileRemoveBackgroundType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91620,17 +95432,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileRemoveBackgroundType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileRemoveBackgroundType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileRemoveBackgroundType_validator = bv.Struct(TeamProfileRemoveBackgroundType) + class TeamProfileRemoveLogoDetails(bb.Struct): """ Removed team logo displayed on shared link headers. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -91638,20 +95453,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileRemoveLogoDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileRemoveLogoDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileRemoveLogoDetails_validator = bv.Struct(TeamProfileRemoveLogoDetails) -class TeamProfileRemoveLogoType(bb.Struct): +class TeamProfileRemoveLogoType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91660,10 +95477,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamProfileRemoveLogoType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamProfileRemoveLogoType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamProfileRemoveLogoType_validator = bv.Struct(TeamProfileRemoveLogoType) + class TeamSelectiveSyncPolicy(bb.Union): """ Policy for controlling whether team selective sync is enabled for team. @@ -91673,7 +95494,7 @@ class TeamSelectiveSyncPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -91687,7 +95508,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -91695,7 +95516,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -91703,13 +95524,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSelectiveSyncPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSelectiveSyncPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamSelectiveSyncPolicy_validator = bv.Union(TeamSelectiveSyncPolicy) + class TeamSelectiveSyncPolicyChangedDetails(bb.Struct): """ Enabled/disabled Team Selective Sync for team. @@ -91721,15 +95546,13 @@ class TeamSelectiveSyncPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -91744,20 +95567,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSelectiveSyncPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSelectiveSyncPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamSelectiveSyncPolicyChangedDetails_validator = bv.Struct(TeamSelectiveSyncPolicyChangedDetails) -class TeamSelectiveSyncPolicyChangedType(bb.Struct): +class TeamSelectiveSyncPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91766,10 +95591,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSelectiveSyncPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSelectiveSyncPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamSelectiveSyncPolicyChangedType_validator = bv.Struct(TeamSelectiveSyncPolicyChangedType) + class TeamSelectiveSyncSettingsChangedDetails(bb.Struct): """ Changed sync default. @@ -91781,15 +95610,13 @@ class TeamSelectiveSyncSettingsChangedDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -91804,20 +95631,24 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSelectiveSyncSettingsChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSelectiveSyncSettingsChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamSelectiveSyncSettingsChangedDetails_validator = bv.Struct(TeamSelectiveSyncSettingsChangedDetails) -class TeamSelectiveSyncSettingsChangedType(bb.Struct): +TeamSelectiveSyncSettingsChangedDetails_validator = bv.Struct( + TeamSelectiveSyncSettingsChangedDetails +) + +class TeamSelectiveSyncSettingsChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91826,10 +95657,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSelectiveSyncSettingsChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSelectiveSyncSettingsChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamSelectiveSyncSettingsChangedType_validator = bv.Struct(TeamSelectiveSyncSettingsChangedType) + class TeamSharingWhitelistSubjectsChangedDetails(bb.Struct): """ Edited the approved list for sharing externally. @@ -91841,15 +95676,13 @@ class TeamSharingWhitelistSubjectsChangedDetails(bb.Struct): """ __slots__ = [ - '_added_whitelist_subjects_value', - '_removed_whitelist_subjects_value', + "_added_whitelist_subjects_value", + "_removed_whitelist_subjects_value", ] _has_required_fields = True - def __init__(self, - added_whitelist_subjects=None, - removed_whitelist_subjects=None): + def __init__(self, added_whitelist_subjects=None, removed_whitelist_subjects=None): self._added_whitelist_subjects_value = bb.NOT_SET self._removed_whitelist_subjects_value = bb.NOT_SET if added_whitelist_subjects is not None: @@ -91864,20 +95697,24 @@ def __init__(self, removed_whitelist_subjects = bb.Attribute("removed_whitelist_subjects") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSharingWhitelistSubjectsChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSharingWhitelistSubjectsChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -TeamSharingWhitelistSubjectsChangedDetails_validator = bv.Struct(TeamSharingWhitelistSubjectsChangedDetails) -class TeamSharingWhitelistSubjectsChangedType(bb.Struct): +TeamSharingWhitelistSubjectsChangedDetails_validator = bv.Struct( + TeamSharingWhitelistSubjectsChangedDetails +) + +class TeamSharingWhitelistSubjectsChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91886,17 +95723,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSharingWhitelistSubjectsChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSharingWhitelistSubjectsChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +TeamSharingWhitelistSubjectsChangedType_validator = bv.Struct( + TeamSharingWhitelistSubjectsChangedType +) -TeamSharingWhitelistSubjectsChangedType_validator = bv.Struct(TeamSharingWhitelistSubjectsChangedType) class TeamStorageCreateReportDetails(bb.Struct): """ Created team storage report. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -91904,10 +95746,14 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamStorageCreateReportDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamStorageCreateReportDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamStorageCreateReportDetails_validator = bv.Struct(TeamStorageCreateReportDetails) + class TeamStorageCreateReportFailedDetails(bb.Struct): """ Couldn't generate team storage report. @@ -91917,13 +95763,12 @@ class TeamStorageCreateReportFailedDetails(bb.Struct): """ __slots__ = [ - '_failure_reason_value', + "_failure_reason_value", ] _has_required_fields = True - def __init__(self, - failure_reason=None): + def __init__(self, failure_reason=None): self._failure_reason_value = bb.NOT_SET if failure_reason is not None: self.failure_reason = failure_reason @@ -91932,20 +95777,22 @@ def __init__(self, failure_reason = bb.Attribute("failure_reason", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamStorageCreateReportFailedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamStorageCreateReportFailedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamStorageCreateReportFailedDetails_validator = bv.Struct(TeamStorageCreateReportFailedDetails) -class TeamStorageCreateReportFailedType(bb.Struct): +class TeamStorageCreateReportFailedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91954,20 +95801,22 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamStorageCreateReportFailedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamStorageCreateReportFailedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamStorageCreateReportFailedType_validator = bv.Struct(TeamStorageCreateReportFailedType) -class TeamStorageCreateReportType(bb.Struct): +class TeamStorageCreateReportType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -91976,17 +95825,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamStorageCreateReportType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamStorageCreateReportType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamStorageCreateReportType_validator = bv.Struct(TeamStorageCreateReportType) + class TfaAddBackupPhoneDetails(bb.Struct): """ Added backup phone for two-factor authentication. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -91994,20 +95846,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddBackupPhoneDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaAddBackupPhoneDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaAddBackupPhoneDetails_validator = bv.Struct(TfaAddBackupPhoneDetails) -class TfaAddBackupPhoneType(bb.Struct): +class TfaAddBackupPhoneType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92016,17 +95870,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddBackupPhoneType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaAddBackupPhoneType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaAddBackupPhoneType_validator = bv.Struct(TfaAddBackupPhoneType) + class TfaAddExceptionDetails(bb.Struct): """ Added members to two factor authentication exception list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -92034,20 +95891,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaAddExceptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaAddExceptionDetails_validator = bv.Struct(TfaAddExceptionDetails) -class TfaAddExceptionType(bb.Struct): +class TfaAddExceptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92056,17 +95915,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaAddExceptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaAddExceptionType_validator = bv.Struct(TfaAddExceptionType) + class TfaAddSecurityKeyDetails(bb.Struct): """ Added security key for two-factor authentication. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -92074,20 +95936,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddSecurityKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaAddSecurityKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaAddSecurityKeyDetails_validator = bv.Struct(TfaAddSecurityKeyDetails) -class TfaAddSecurityKeyType(bb.Struct): +class TfaAddSecurityKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92096,17 +95960,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaAddSecurityKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaAddSecurityKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaAddSecurityKeyType_validator = bv.Struct(TfaAddSecurityKeyType) + class TfaChangeBackupPhoneDetails(bb.Struct): """ Changed backup phone for two-factor authentication. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -92114,20 +95981,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangeBackupPhoneDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaChangeBackupPhoneDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaChangeBackupPhoneDetails_validator = bv.Struct(TfaChangeBackupPhoneDetails) -class TfaChangeBackupPhoneType(bb.Struct): +class TfaChangeBackupPhoneType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92136,10 +96005,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangeBackupPhoneType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaChangeBackupPhoneType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaChangeBackupPhoneType_validator = bv.Struct(TfaChangeBackupPhoneType) + class TfaChangePolicyDetails(bb.Struct): """ Changed two-factor authentication setting for team. @@ -92151,15 +96024,13 @@ class TfaChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -92174,20 +96045,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaChangePolicyDetails_validator = bv.Struct(TfaChangePolicyDetails) -class TfaChangePolicyType(bb.Struct): +class TfaChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92196,10 +96069,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaChangePolicyType_validator = bv.Struct(TfaChangePolicyType) + class TfaChangeStatusDetails(bb.Struct): """ Enabled/disabled/changed two-factor authentication setting. @@ -92215,17 +96092,14 @@ class TfaChangeStatusDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', - '_used_rescue_code_value', + "_new_value_value", + "_previous_value_value", + "_used_rescue_code_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None, - used_rescue_code=None): + def __init__(self, new_value=None, previous_value=None, used_rescue_code=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET self._used_rescue_code_value = bb.NOT_SET @@ -92246,20 +96120,22 @@ def __init__(self, used_rescue_code = bb.Attribute("used_rescue_code", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangeStatusDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaChangeStatusDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaChangeStatusDetails_validator = bv.Struct(TfaChangeStatusDetails) -class TfaChangeStatusType(bb.Struct): +class TfaChangeStatusType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92268,10 +96144,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaChangeStatusType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaChangeStatusType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaChangeStatusType_validator = bv.Struct(TfaChangeStatusType) + class TfaConfiguration(bb.Union): """ Two factor authentication configuration. Note: the enabled option is @@ -92282,7 +96162,7 @@ class TfaConfiguration(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition authenticator = None # Attribute is overwritten below the class definition @@ -92300,7 +96180,7 @@ def is_authenticator(self): :rtype: bool """ - return self._tag == 'authenticator' + return self._tag == "authenticator" def is_disabled(self): """ @@ -92308,7 +96188,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -92316,7 +96196,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_sms(self): """ @@ -92324,7 +96204,7 @@ def is_sms(self): :rtype: bool """ - return self._tag == 'sms' + return self._tag == "sms" def is_other(self): """ @@ -92332,20 +96212,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaConfiguration, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaConfiguration, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaConfiguration_validator = bv.Union(TfaConfiguration) + class TfaRemoveBackupPhoneDetails(bb.Struct): """ Removed backup phone for two-factor authentication. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -92353,20 +96236,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveBackupPhoneDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaRemoveBackupPhoneDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaRemoveBackupPhoneDetails_validator = bv.Struct(TfaRemoveBackupPhoneDetails) -class TfaRemoveBackupPhoneType(bb.Struct): +class TfaRemoveBackupPhoneType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92375,17 +96260,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveBackupPhoneType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaRemoveBackupPhoneType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaRemoveBackupPhoneType_validator = bv.Struct(TfaRemoveBackupPhoneType) + class TfaRemoveExceptionDetails(bb.Struct): """ Removed members from two factor authentication exception list. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -92393,20 +96281,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveExceptionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaRemoveExceptionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaRemoveExceptionDetails_validator = bv.Struct(TfaRemoveExceptionDetails) -class TfaRemoveExceptionType(bb.Struct): +class TfaRemoveExceptionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92415,17 +96305,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveExceptionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaRemoveExceptionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaRemoveExceptionType_validator = bv.Struct(TfaRemoveExceptionType) + class TfaRemoveSecurityKeyDetails(bb.Struct): """ Removed security key for two-factor authentication. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -92433,20 +96326,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveSecurityKeyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaRemoveSecurityKeyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaRemoveSecurityKeyDetails_validator = bv.Struct(TfaRemoveSecurityKeyDetails) -class TfaRemoveSecurityKeyType(bb.Struct): +class TfaRemoveSecurityKeyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92455,17 +96350,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaRemoveSecurityKeyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaRemoveSecurityKeyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaRemoveSecurityKeyType_validator = bv.Struct(TfaRemoveSecurityKeyType) + class TfaResetDetails(bb.Struct): """ Reset two-factor authentication for team member. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -92473,20 +96371,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaResetDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaResetDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaResetDetails_validator = bv.Struct(TfaResetDetails) -class TfaResetType(bb.Struct): +class TfaResetType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92495,10 +96395,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TfaResetType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TfaResetType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TfaResetType_validator = bv.Struct(TfaResetType) + class TimeUnit(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -92506,7 +96410,7 @@ class TimeUnit(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition days = None # Attribute is overwritten below the class definition @@ -92532,7 +96436,7 @@ def is_days(self): :rtype: bool """ - return self._tag == 'days' + return self._tag == "days" def is_hours(self): """ @@ -92540,7 +96444,7 @@ def is_hours(self): :rtype: bool """ - return self._tag == 'hours' + return self._tag == "hours" def is_milliseconds(self): """ @@ -92548,7 +96452,7 @@ def is_milliseconds(self): :rtype: bool """ - return self._tag == 'milliseconds' + return self._tag == "milliseconds" def is_minutes(self): """ @@ -92556,7 +96460,7 @@ def is_minutes(self): :rtype: bool """ - return self._tag == 'minutes' + return self._tag == "minutes" def is_months(self): """ @@ -92564,7 +96468,7 @@ def is_months(self): :rtype: bool """ - return self._tag == 'months' + return self._tag == "months" def is_seconds(self): """ @@ -92572,7 +96476,7 @@ def is_seconds(self): :rtype: bool """ - return self._tag == 'seconds' + return self._tag == "seconds" def is_weeks(self): """ @@ -92580,7 +96484,7 @@ def is_weeks(self): :rtype: bool """ - return self._tag == 'weeks' + return self._tag == "weeks" def is_years(self): """ @@ -92588,7 +96492,7 @@ def is_years(self): :rtype: bool """ - return self._tag == 'years' + return self._tag == "years" def is_other(self): """ @@ -92596,13 +96500,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(TimeUnit, self)._process_custom_annotations(annotation_type, field_path, processor) + TimeUnit_validator = bv.Union(TimeUnit) + class TopLevelContentPolicy(bb.Union): """ Policy for deciding whether members can edit team folders at the top level @@ -92613,7 +96519,7 @@ class TopLevelContentPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition admins_only = None # Attribute is overwritten below the class definition @@ -92627,7 +96533,7 @@ def is_admins_only(self): :rtype: bool """ - return self._tag == 'admins_only' + return self._tag == "admins_only" def is_everyone(self): """ @@ -92635,7 +96541,7 @@ def is_everyone(self): :rtype: bool """ - return self._tag == 'everyone' + return self._tag == "everyone" def is_other(self): """ @@ -92643,13 +96549,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TopLevelContentPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TopLevelContentPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TopLevelContentPolicy_validator = bv.Union(TopLevelContentPolicy) + class TopLevelContentPolicyChangedDetails(bb.Struct): """ Changed top level content setting for team. @@ -92661,15 +96571,13 @@ class TopLevelContentPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -92684,20 +96592,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TopLevelContentPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TopLevelContentPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TopLevelContentPolicyChangedDetails_validator = bv.Struct(TopLevelContentPolicyChangedDetails) -class TopLevelContentPolicyChangedType(bb.Struct): +class TopLevelContentPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92706,10 +96616,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TopLevelContentPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TopLevelContentPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TopLevelContentPolicyChangedType_validator = bv.Struct(TopLevelContentPolicyChangedType) + class TrustedNonTeamMemberLogInfo(UserLogInfo): """ User that is not a member of the team but considered trusted. @@ -92721,21 +96635,21 @@ class TrustedNonTeamMemberLogInfo(UserLogInfo): """ __slots__ = [ - '_trusted_non_team_member_type_value', - '_team_value', + "_trusted_non_team_member_type_value", + "_team_value", ] _has_required_fields = True - def __init__(self, - trusted_non_team_member_type=None, - account_id=None, - display_name=None, - email=None, - team=None): - super(TrustedNonTeamMemberLogInfo, self).__init__(account_id, - display_name, - email) + def __init__( + self, + trusted_non_team_member_type=None, + account_id=None, + display_name=None, + email=None, + team=None, + ): + super(TrustedNonTeamMemberLogInfo, self).__init__(account_id, display_name, email) self._trusted_non_team_member_type_value = bb.NOT_SET self._team_value = bb.NOT_SET if trusted_non_team_member_type is not None: @@ -92750,10 +96664,14 @@ def __init__(self, team = bb.Attribute("team", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TrustedNonTeamMemberLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TrustedNonTeamMemberLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TrustedNonTeamMemberLogInfo_validator = bv.Struct(TrustedNonTeamMemberLogInfo) + class TrustedNonTeamMemberType(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -92761,7 +96679,7 @@ class TrustedNonTeamMemberType(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition enterprise_admin = None # Attribute is overwritten below the class definition @@ -92775,7 +96693,7 @@ def is_enterprise_admin(self): :rtype: bool """ - return self._tag == 'enterprise_admin' + return self._tag == "enterprise_admin" def is_multi_instance_admin(self): """ @@ -92783,7 +96701,7 @@ def is_multi_instance_admin(self): :rtype: bool """ - return self._tag == 'multi_instance_admin' + return self._tag == "multi_instance_admin" def is_other(self): """ @@ -92791,13 +96709,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TrustedNonTeamMemberType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TrustedNonTeamMemberType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TrustedNonTeamMemberType_validator = bv.Union(TrustedNonTeamMemberType) + class TrustedTeamsRequestAction(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -92805,7 +96727,7 @@ class TrustedTeamsRequestAction(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition accepted = None # Attribute is overwritten below the class definition @@ -92825,7 +96747,7 @@ def is_accepted(self): :rtype: bool """ - return self._tag == 'accepted' + return self._tag == "accepted" def is_declined(self): """ @@ -92833,7 +96755,7 @@ def is_declined(self): :rtype: bool """ - return self._tag == 'declined' + return self._tag == "declined" def is_expired(self): """ @@ -92841,7 +96763,7 @@ def is_expired(self): :rtype: bool """ - return self._tag == 'expired' + return self._tag == "expired" def is_invited(self): """ @@ -92849,7 +96771,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == 'invited' + return self._tag == "invited" def is_revoked(self): """ @@ -92857,7 +96779,7 @@ def is_revoked(self): :rtype: bool """ - return self._tag == 'revoked' + return self._tag == "revoked" def is_other(self): """ @@ -92865,13 +96787,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TrustedTeamsRequestAction, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TrustedTeamsRequestAction, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TrustedTeamsRequestAction_validator = bv.Union(TrustedTeamsRequestAction) + class TrustedTeamsRequestState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -92879,7 +96805,7 @@ class TrustedTeamsRequestState(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition invited = None # Attribute is overwritten below the class definition @@ -92895,7 +96821,7 @@ def is_invited(self): :rtype: bool """ - return self._tag == 'invited' + return self._tag == "invited" def is_linked(self): """ @@ -92903,7 +96829,7 @@ def is_linked(self): :rtype: bool """ - return self._tag == 'linked' + return self._tag == "linked" def is_unlinked(self): """ @@ -92911,7 +96837,7 @@ def is_unlinked(self): :rtype: bool """ - return self._tag == 'unlinked' + return self._tag == "unlinked" def is_other(self): """ @@ -92919,13 +96845,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TrustedTeamsRequestState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TrustedTeamsRequestState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TrustedTeamsRequestState_validator = bv.Union(TrustedTeamsRequestState) + class TwoAccountChangePolicyDetails(bb.Struct): """ Enabled/disabled option for members to link personal Dropbox account and @@ -92939,15 +96869,13 @@ class TwoAccountChangePolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -92962,20 +96890,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoAccountChangePolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TwoAccountChangePolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TwoAccountChangePolicyDetails_validator = bv.Struct(TwoAccountChangePolicyDetails) -class TwoAccountChangePolicyType(bb.Struct): +class TwoAccountChangePolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -92984,10 +96914,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoAccountChangePolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TwoAccountChangePolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TwoAccountChangePolicyType_validator = bv.Struct(TwoAccountChangePolicyType) + class TwoAccountPolicy(bb.Union): """ Policy for pairing personal account to work account @@ -92997,7 +96931,7 @@ class TwoAccountPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -93011,7 +96945,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -93019,7 +96953,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -93027,20 +96961,23 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoAccountPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TwoAccountPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TwoAccountPolicy_validator = bv.Union(TwoAccountPolicy) + class UndoNamingConventionDetails(bb.Struct): """ Reverted naming convention. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -93048,20 +96985,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UndoNamingConventionDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UndoNamingConventionDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UndoNamingConventionDetails_validator = bv.Struct(UndoNamingConventionDetails) -class UndoNamingConventionType(bb.Struct): +class UndoNamingConventionType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93070,17 +97009,20 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UndoNamingConventionType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UndoNamingConventionType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UndoNamingConventionType_validator = bv.Struct(UndoNamingConventionType) + class UndoOrganizeFolderWithTidyDetails(bb.Struct): """ Removed multi-file organize. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False @@ -93088,20 +97030,22 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UndoOrganizeFolderWithTidyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UndoOrganizeFolderWithTidyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UndoOrganizeFolderWithTidyDetails_validator = bv.Struct(UndoOrganizeFolderWithTidyDetails) -class UndoOrganizeFolderWithTidyType(bb.Struct): +class UndoOrganizeFolderWithTidyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93110,31 +97054,35 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UndoOrganizeFolderWithTidyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UndoOrganizeFolderWithTidyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UndoOrganizeFolderWithTidyType_validator = bv.Struct(UndoOrganizeFolderWithTidyType) + class UserLinkedAppLogInfo(AppLogInfo): """ User linked app """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False - def __init__(self, - app_id=None, - display_name=None): - super(UserLinkedAppLogInfo, self).__init__(app_id, - display_name) + def __init__(self, app_id=None, display_name=None): + super(UserLinkedAppLogInfo, self).__init__(app_id, display_name) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserLinkedAppLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserLinkedAppLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserLinkedAppLogInfo_validator = bv.Struct(UserLinkedAppLogInfo) + class UserNameLogInfo(bb.Struct): """ User's name logged information @@ -93148,17 +97096,14 @@ class UserNameLogInfo(bb.Struct): """ __slots__ = [ - '_given_name_value', - '_surname_value', - '_locale_value', + "_given_name_value", + "_surname_value", + "_locale_value", ] _has_required_fields = True - def __init__(self, - given_name=None, - surname=None, - locale=None): + def __init__(self, given_name=None, surname=None, locale=None): self._given_name_value = bb.NOT_SET self._surname_value = bb.NOT_SET self._locale_value = bb.NOT_SET @@ -93179,32 +97124,36 @@ def __init__(self, locale = bb.Attribute("locale", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserNameLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserNameLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserNameLogInfo_validator = bv.Struct(UserNameLogInfo) + class UserOrTeamLinkedAppLogInfo(AppLogInfo): """ User or team linked app. Used when linked type is missing due to historical data gap. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False - def __init__(self, - app_id=None, - display_name=None): - super(UserOrTeamLinkedAppLogInfo, self).__init__(app_id, - display_name) + def __init__(self, app_id=None, display_name=None): + super(UserOrTeamLinkedAppLogInfo, self).__init__(app_id, display_name) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserOrTeamLinkedAppLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserOrTeamLinkedAppLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserOrTeamLinkedAppLogInfo_validator = bv.Struct(UserOrTeamLinkedAppLogInfo) + class UserTagsAddedDetails(bb.Struct): """ Tagged a file. @@ -93214,13 +97163,12 @@ class UserTagsAddedDetails(bb.Struct): """ __slots__ = [ - '_values_value', + "_values_value", ] _has_required_fields = True - def __init__(self, - values=None): + def __init__(self, values=None): self._values_value = bb.NOT_SET if values is not None: self.values = values @@ -93229,20 +97177,22 @@ def __init__(self, values = bb.Attribute("values") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserTagsAddedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserTagsAddedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserTagsAddedDetails_validator = bv.Struct(UserTagsAddedDetails) -class UserTagsAddedType(bb.Struct): +class UserTagsAddedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93251,10 +97201,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserTagsAddedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserTagsAddedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserTagsAddedType_validator = bv.Struct(UserTagsAddedType) + class UserTagsRemovedDetails(bb.Struct): """ Removed tags. @@ -93264,13 +97218,12 @@ class UserTagsRemovedDetails(bb.Struct): """ __slots__ = [ - '_values_value', + "_values_value", ] _has_required_fields = True - def __init__(self, - values=None): + def __init__(self, values=None): self._values_value = bb.NOT_SET if values is not None: self.values = values @@ -93279,20 +97232,22 @@ def __init__(self, values = bb.Attribute("values") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserTagsRemovedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserTagsRemovedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserTagsRemovedDetails_validator = bv.Struct(UserTagsRemovedDetails) -class UserTagsRemovedType(bb.Struct): +class UserTagsRemovedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93301,10 +97256,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserTagsRemovedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserTagsRemovedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserTagsRemovedType_validator = bv.Struct(UserTagsRemovedType) + class ViewerInfoPolicyChangedDetails(bb.Struct): """ Changed team policy for viewer info. @@ -93316,15 +97275,13 @@ class ViewerInfoPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -93339,20 +97296,22 @@ def __init__(self, new_value = bb.Attribute("new_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ViewerInfoPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ViewerInfoPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ViewerInfoPolicyChangedDetails_validator = bv.Struct(ViewerInfoPolicyChangedDetails) -class ViewerInfoPolicyChangedType(bb.Struct): +class ViewerInfoPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93361,10 +97320,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ViewerInfoPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ViewerInfoPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ViewerInfoPolicyChangedType_validator = bv.Struct(ViewerInfoPolicyChangedType) + class WatermarkingPolicy(bb.Union): """ Policy for controlling team access to watermarking feature @@ -93374,7 +97337,7 @@ class WatermarkingPolicy(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -93388,7 +97351,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -93396,7 +97359,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -93404,13 +97367,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WatermarkingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WatermarkingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WatermarkingPolicy_validator = bv.Union(WatermarkingPolicy) + class WatermarkingPolicyChangedDetails(bb.Struct): """ Changed watermarking policy for team. @@ -93422,15 +97389,13 @@ class WatermarkingPolicyChangedDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = True - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -93445,20 +97410,22 @@ def __init__(self, previous_value = bb.Attribute("previous_value", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WatermarkingPolicyChangedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WatermarkingPolicyChangedDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WatermarkingPolicyChangedDetails_validator = bv.Struct(WatermarkingPolicyChangedDetails) -class WatermarkingPolicyChangedType(bb.Struct): +class WatermarkingPolicyChangedType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93467,10 +97434,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WatermarkingPolicyChangedType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WatermarkingPolicyChangedType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WatermarkingPolicyChangedType_validator = bv.Struct(WatermarkingPolicyChangedType) + class WebDeviceSessionLogInfo(DeviceSessionLogInfo): """ Information on active web sessions @@ -93486,25 +97457,25 @@ class WebDeviceSessionLogInfo(DeviceSessionLogInfo): """ __slots__ = [ - '_session_info_value', - '_user_agent_value', - '_os_value', - '_browser_value', + "_session_info_value", + "_user_agent_value", + "_os_value", + "_browser_value", ] _has_required_fields = True - def __init__(self, - user_agent=None, - os=None, - browser=None, - ip_address=None, - created=None, - updated=None, - session_info=None): - super(WebDeviceSessionLogInfo, self).__init__(ip_address, - created, - updated) + def __init__( + self, + user_agent=None, + os=None, + browser=None, + ip_address=None, + created=None, + updated=None, + session_info=None, + ): + super(WebDeviceSessionLogInfo, self).__init__(ip_address, created, updated) self._session_info_value = bb.NOT_SET self._user_agent_value = bb.NOT_SET self._os_value = bb.NOT_SET @@ -93531,29 +97502,35 @@ def __init__(self, browser = bb.Attribute("browser") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebDeviceSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebDeviceSessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WebDeviceSessionLogInfo_validator = bv.Struct(WebDeviceSessionLogInfo) + class WebSessionLogInfo(SessionLogInfo): """ Web session. """ - __slots__ = [ - ] + __slots__ = [] _has_required_fields = False - def __init__(self, - session_id=None): + def __init__(self, session_id=None): super(WebSessionLogInfo, self).__init__(session_id) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebSessionLogInfo, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WebSessionLogInfo_validator = bv.Struct(WebSessionLogInfo) + class WebSessionsChangeActiveSessionLimitDetails(bb.Struct): """ Changed limit on active sessions per member. @@ -93565,15 +97542,13 @@ class WebSessionsChangeActiveSessionLimitDetails(bb.Struct): """ __slots__ = [ - '_previous_value_value', - '_new_value_value', + "_previous_value_value", + "_new_value_value", ] _has_required_fields = True - def __init__(self, - previous_value=None, - new_value=None): + def __init__(self, previous_value=None, new_value=None): self._previous_value_value = bb.NOT_SET self._new_value_value = bb.NOT_SET if previous_value is not None: @@ -93588,20 +97563,24 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsChangeActiveSessionLimitDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebSessionsChangeActiveSessionLimitDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -WebSessionsChangeActiveSessionLimitDetails_validator = bv.Struct(WebSessionsChangeActiveSessionLimitDetails) -class WebSessionsChangeActiveSessionLimitType(bb.Struct): +WebSessionsChangeActiveSessionLimitDetails_validator = bv.Struct( + WebSessionsChangeActiveSessionLimitDetails +) + +class WebSessionsChangeActiveSessionLimitType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93610,9 +97589,15 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsChangeActiveSessionLimitType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebSessionsChangeActiveSessionLimitType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +WebSessionsChangeActiveSessionLimitType_validator = bv.Struct( + WebSessionsChangeActiveSessionLimitType +) -WebSessionsChangeActiveSessionLimitType_validator = bv.Struct(WebSessionsChangeActiveSessionLimitType) class WebSessionsChangeFixedLengthPolicyDetails(bb.Struct): """ @@ -93626,15 +97611,13 @@ class WebSessionsChangeFixedLengthPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -93649,20 +97632,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsChangeFixedLengthPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebSessionsChangeFixedLengthPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -WebSessionsChangeFixedLengthPolicyDetails_validator = bv.Struct(WebSessionsChangeFixedLengthPolicyDetails) -class WebSessionsChangeFixedLengthPolicyType(bb.Struct): +WebSessionsChangeFixedLengthPolicyDetails_validator = bv.Struct( + WebSessionsChangeFixedLengthPolicyDetails +) + +class WebSessionsChangeFixedLengthPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93671,10 +97658,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsChangeFixedLengthPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebSessionsChangeFixedLengthPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WebSessionsChangeFixedLengthPolicyType_validator = bv.Struct(WebSessionsChangeFixedLengthPolicyType) + class WebSessionsChangeIdleLengthPolicyDetails(bb.Struct): """ Changed how long team members can be idle while signed in to Dropbox.com. @@ -93687,15 +97678,13 @@ class WebSessionsChangeIdleLengthPolicyDetails(bb.Struct): """ __slots__ = [ - '_new_value_value', - '_previous_value_value', + "_new_value_value", + "_previous_value_value", ] _has_required_fields = False - def __init__(self, - new_value=None, - previous_value=None): + def __init__(self, new_value=None, previous_value=None): self._new_value_value = bb.NOT_SET self._previous_value_value = bb.NOT_SET if new_value is not None: @@ -93710,20 +97699,24 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsChangeIdleLengthPolicyDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebSessionsChangeIdleLengthPolicyDetails, self)._process_custom_annotations( + annotation_type, field_path, processor + ) -WebSessionsChangeIdleLengthPolicyDetails_validator = bv.Struct(WebSessionsChangeIdleLengthPolicyDetails) -class WebSessionsChangeIdleLengthPolicyType(bb.Struct): +WebSessionsChangeIdleLengthPolicyDetails_validator = bv.Struct( + WebSessionsChangeIdleLengthPolicyDetails +) + +class WebSessionsChangeIdleLengthPolicyType(bb.Struct): __slots__ = [ - '_description_value', + "_description_value", ] _has_required_fields = True - def __init__(self, - description=None): + def __init__(self, description=None): self._description_value = bb.NOT_SET if description is not None: self.description = description @@ -93732,10 +97725,14 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsChangeIdleLengthPolicyType, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebSessionsChangeIdleLengthPolicyType, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WebSessionsChangeIdleLengthPolicyType_validator = bv.Struct(WebSessionsChangeIdleLengthPolicyType) + class WebSessionsFixedLengthPolicy(bb.Union): """ Web sessions fixed length policy. @@ -93751,7 +97748,7 @@ class WebSessionsFixedLengthPolicy(bb.Union): Undefined fixed session length. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition undefined = None # Attribute is overwritten below the class definition @@ -93766,7 +97763,7 @@ def defined(cls, val): :param DurationLogInfo val: :rtype: WebSessionsFixedLengthPolicy """ - return cls('defined', val) + return cls("defined", val) def is_defined(self): """ @@ -93774,7 +97771,7 @@ def is_defined(self): :rtype: bool """ - return self._tag == 'defined' + return self._tag == "defined" def is_undefined(self): """ @@ -93782,7 +97779,7 @@ def is_undefined(self): :rtype: bool """ - return self._tag == 'undefined' + return self._tag == "undefined" def is_other(self): """ @@ -93790,7 +97787,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_defined(self): """ @@ -93805,10 +97802,14 @@ def get_defined(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsFixedLengthPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebSessionsFixedLengthPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WebSessionsFixedLengthPolicy_validator = bv.Union(WebSessionsFixedLengthPolicy) + class WebSessionsIdleLengthPolicy(bb.Union): """ Web sessions idle length policy. @@ -93824,7 +97825,7 @@ class WebSessionsIdleLengthPolicy(bb.Union): Undefined idle session length. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition undefined = None # Attribute is overwritten below the class definition @@ -93839,7 +97840,7 @@ def defined(cls, val): :param DurationLogInfo val: :rtype: WebSessionsIdleLengthPolicy """ - return cls('defined', val) + return cls("defined", val) def is_defined(self): """ @@ -93847,7 +97848,7 @@ def is_defined(self): :rtype: bool """ - return self._tag == 'defined' + return self._tag == "defined" def is_undefined(self): """ @@ -93855,7 +97856,7 @@ def is_undefined(self): :rtype: bool """ - return self._tag == 'undefined' + return self._tag == "undefined" def is_other(self): """ @@ -93863,7 +97864,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_defined(self): """ @@ -93878,7 +97879,10 @@ def get_defined(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WebSessionsIdleLengthPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(WebSessionsIdleLengthPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + WebSessionsIdleLengthPolicy_validator = bv.Union(WebSessionsIdleLengthPolicy) @@ -93897,160 +97901,200 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccessMethodLogInfo._sign_in_as_validator = WebSessionLogInfo_validator AccessMethodLogInfo._other_validator = bv.Void() AccessMethodLogInfo._tagmap = { - 'admin_console': AccessMethodLogInfo._admin_console_validator, - 'api': AccessMethodLogInfo._api_validator, - 'content_manager': AccessMethodLogInfo._content_manager_validator, - 'end_user': AccessMethodLogInfo._end_user_validator, - 'enterprise_console': AccessMethodLogInfo._enterprise_console_validator, - 'sign_in_as': AccessMethodLogInfo._sign_in_as_validator, - 'other': AccessMethodLogInfo._other_validator, + "admin_console": AccessMethodLogInfo._admin_console_validator, + "api": AccessMethodLogInfo._api_validator, + "content_manager": AccessMethodLogInfo._content_manager_validator, + "end_user": AccessMethodLogInfo._end_user_validator, + "enterprise_console": AccessMethodLogInfo._enterprise_console_validator, + "sign_in_as": AccessMethodLogInfo._sign_in_as_validator, + "other": AccessMethodLogInfo._other_validator, } -AccessMethodLogInfo.other = AccessMethodLogInfo('other') +AccessMethodLogInfo.other = AccessMethodLogInfo("other") AccountCaptureAvailability._available_validator = bv.Void() AccountCaptureAvailability._unavailable_validator = bv.Void() AccountCaptureAvailability._other_validator = bv.Void() AccountCaptureAvailability._tagmap = { - 'available': AccountCaptureAvailability._available_validator, - 'unavailable': AccountCaptureAvailability._unavailable_validator, - 'other': AccountCaptureAvailability._other_validator, + "available": AccountCaptureAvailability._available_validator, + "unavailable": AccountCaptureAvailability._unavailable_validator, + "other": AccountCaptureAvailability._other_validator, } -AccountCaptureAvailability.available = AccountCaptureAvailability('available') -AccountCaptureAvailability.unavailable = AccountCaptureAvailability('unavailable') -AccountCaptureAvailability.other = AccountCaptureAvailability('other') +AccountCaptureAvailability.available = AccountCaptureAvailability("available") +AccountCaptureAvailability.unavailable = AccountCaptureAvailability("unavailable") +AccountCaptureAvailability.other = AccountCaptureAvailability("other") AccountCaptureChangeAvailabilityDetails.new_value.validator = AccountCaptureAvailability_validator -AccountCaptureChangeAvailabilityDetails.previous_value.validator = bv.Nullable(AccountCaptureAvailability_validator) -AccountCaptureChangeAvailabilityDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +AccountCaptureChangeAvailabilityDetails.previous_value.validator = bv.Nullable( + AccountCaptureAvailability_validator +) +AccountCaptureChangeAvailabilityDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) AccountCaptureChangeAvailabilityDetails._all_fields_ = [ - ('new_value', AccountCaptureChangeAvailabilityDetails.new_value.validator), - ('previous_value', AccountCaptureChangeAvailabilityDetails.previous_value.validator), + ("new_value", AccountCaptureChangeAvailabilityDetails.new_value.validator), + ( + "previous_value", + AccountCaptureChangeAvailabilityDetails.previous_value.validator, + ), ] AccountCaptureChangeAvailabilityType.description.validator = bv.String() -AccountCaptureChangeAvailabilityType._all_field_names_ = set(['description']) -AccountCaptureChangeAvailabilityType._all_fields_ = [('description', AccountCaptureChangeAvailabilityType.description.validator)] +AccountCaptureChangeAvailabilityType._all_field_names_ = set(["description"]) +AccountCaptureChangeAvailabilityType._all_fields_ = [ + ("description", AccountCaptureChangeAvailabilityType.description.validator) +] AccountCaptureChangePolicyDetails.new_value.validator = AccountCapturePolicy_validator -AccountCaptureChangePolicyDetails.previous_value.validator = bv.Nullable(AccountCapturePolicy_validator) -AccountCaptureChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +AccountCaptureChangePolicyDetails.previous_value.validator = bv.Nullable( + AccountCapturePolicy_validator +) +AccountCaptureChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) AccountCaptureChangePolicyDetails._all_fields_ = [ - ('new_value', AccountCaptureChangePolicyDetails.new_value.validator), - ('previous_value', AccountCaptureChangePolicyDetails.previous_value.validator), + ("new_value", AccountCaptureChangePolicyDetails.new_value.validator), + ("previous_value", AccountCaptureChangePolicyDetails.previous_value.validator), ] AccountCaptureChangePolicyType.description.validator = bv.String() -AccountCaptureChangePolicyType._all_field_names_ = set(['description']) -AccountCaptureChangePolicyType._all_fields_ = [('description', AccountCaptureChangePolicyType.description.validator)] +AccountCaptureChangePolicyType._all_field_names_ = set(["description"]) +AccountCaptureChangePolicyType._all_fields_ = [ + ("description", AccountCaptureChangePolicyType.description.validator) +] AccountCaptureMigrateAccountDetails.domain_name.validator = bv.String() -AccountCaptureMigrateAccountDetails._all_field_names_ = set(['domain_name']) -AccountCaptureMigrateAccountDetails._all_fields_ = [('domain_name', AccountCaptureMigrateAccountDetails.domain_name.validator)] +AccountCaptureMigrateAccountDetails._all_field_names_ = set(["domain_name"]) +AccountCaptureMigrateAccountDetails._all_fields_ = [ + ("domain_name", AccountCaptureMigrateAccountDetails.domain_name.validator) +] AccountCaptureMigrateAccountType.description.validator = bv.String() -AccountCaptureMigrateAccountType._all_field_names_ = set(['description']) -AccountCaptureMigrateAccountType._all_fields_ = [('description', AccountCaptureMigrateAccountType.description.validator)] +AccountCaptureMigrateAccountType._all_field_names_ = set(["description"]) +AccountCaptureMigrateAccountType._all_fields_ = [ + ("description", AccountCaptureMigrateAccountType.description.validator) +] AccountCaptureNotificationEmailsSentDetails.domain_name.validator = bv.String() -AccountCaptureNotificationEmailsSentDetails.notification_type.validator = bv.Nullable(AccountCaptureNotificationType_validator) -AccountCaptureNotificationEmailsSentDetails._all_field_names_ = set([ - 'domain_name', - 'notification_type', -]) +AccountCaptureNotificationEmailsSentDetails.notification_type.validator = bv.Nullable( + AccountCaptureNotificationType_validator +) +AccountCaptureNotificationEmailsSentDetails._all_field_names_ = set( + [ + "domain_name", + "notification_type", + ] +) AccountCaptureNotificationEmailsSentDetails._all_fields_ = [ - ('domain_name', AccountCaptureNotificationEmailsSentDetails.domain_name.validator), - ('notification_type', AccountCaptureNotificationEmailsSentDetails.notification_type.validator), + ("domain_name", AccountCaptureNotificationEmailsSentDetails.domain_name.validator), + ( + "notification_type", + AccountCaptureNotificationEmailsSentDetails.notification_type.validator, + ), ] AccountCaptureNotificationEmailsSentType.description.validator = bv.String() -AccountCaptureNotificationEmailsSentType._all_field_names_ = set(['description']) -AccountCaptureNotificationEmailsSentType._all_fields_ = [('description', AccountCaptureNotificationEmailsSentType.description.validator)] +AccountCaptureNotificationEmailsSentType._all_field_names_ = set(["description"]) +AccountCaptureNotificationEmailsSentType._all_fields_ = [ + ("description", AccountCaptureNotificationEmailsSentType.description.validator) +] AccountCaptureNotificationType._actionable_notification_validator = bv.Void() AccountCaptureNotificationType._proactive_warning_notification_validator = bv.Void() AccountCaptureNotificationType._other_validator = bv.Void() AccountCaptureNotificationType._tagmap = { - 'actionable_notification': AccountCaptureNotificationType._actionable_notification_validator, - 'proactive_warning_notification': AccountCaptureNotificationType._proactive_warning_notification_validator, - 'other': AccountCaptureNotificationType._other_validator, + "actionable_notification": AccountCaptureNotificationType._actionable_notification_validator, + "proactive_warning_notification": AccountCaptureNotificationType._proactive_warning_notification_validator, + "other": AccountCaptureNotificationType._other_validator, } -AccountCaptureNotificationType.actionable_notification = AccountCaptureNotificationType('actionable_notification') -AccountCaptureNotificationType.proactive_warning_notification = AccountCaptureNotificationType('proactive_warning_notification') -AccountCaptureNotificationType.other = AccountCaptureNotificationType('other') +AccountCaptureNotificationType.actionable_notification = AccountCaptureNotificationType( + "actionable_notification" +) +AccountCaptureNotificationType.proactive_warning_notification = AccountCaptureNotificationType( + "proactive_warning_notification" +) +AccountCaptureNotificationType.other = AccountCaptureNotificationType("other") AccountCapturePolicy._all_users_validator = bv.Void() AccountCapturePolicy._disabled_validator = bv.Void() AccountCapturePolicy._invited_users_validator = bv.Void() AccountCapturePolicy._other_validator = bv.Void() AccountCapturePolicy._tagmap = { - 'all_users': AccountCapturePolicy._all_users_validator, - 'disabled': AccountCapturePolicy._disabled_validator, - 'invited_users': AccountCapturePolicy._invited_users_validator, - 'other': AccountCapturePolicy._other_validator, + "all_users": AccountCapturePolicy._all_users_validator, + "disabled": AccountCapturePolicy._disabled_validator, + "invited_users": AccountCapturePolicy._invited_users_validator, + "other": AccountCapturePolicy._other_validator, } -AccountCapturePolicy.all_users = AccountCapturePolicy('all_users') -AccountCapturePolicy.disabled = AccountCapturePolicy('disabled') -AccountCapturePolicy.invited_users = AccountCapturePolicy('invited_users') -AccountCapturePolicy.other = AccountCapturePolicy('other') +AccountCapturePolicy.all_users = AccountCapturePolicy("all_users") +AccountCapturePolicy.disabled = AccountCapturePolicy("disabled") +AccountCapturePolicy.invited_users = AccountCapturePolicy("invited_users") +AccountCapturePolicy.other = AccountCapturePolicy("other") AccountCaptureRelinquishAccountDetails.domain_name.validator = bv.String() -AccountCaptureRelinquishAccountDetails._all_field_names_ = set(['domain_name']) -AccountCaptureRelinquishAccountDetails._all_fields_ = [('domain_name', AccountCaptureRelinquishAccountDetails.domain_name.validator)] +AccountCaptureRelinquishAccountDetails._all_field_names_ = set(["domain_name"]) +AccountCaptureRelinquishAccountDetails._all_fields_ = [ + ("domain_name", AccountCaptureRelinquishAccountDetails.domain_name.validator) +] AccountCaptureRelinquishAccountType.description.validator = bv.String() -AccountCaptureRelinquishAccountType._all_field_names_ = set(['description']) -AccountCaptureRelinquishAccountType._all_fields_ = [('description', AccountCaptureRelinquishAccountType.description.validator)] +AccountCaptureRelinquishAccountType._all_field_names_ = set(["description"]) +AccountCaptureRelinquishAccountType._all_fields_ = [ + ("description", AccountCaptureRelinquishAccountType.description.validator) +] AccountLockOrUnlockedDetails.previous_value.validator = AccountState_validator AccountLockOrUnlockedDetails.new_value.validator = AccountState_validator -AccountLockOrUnlockedDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +AccountLockOrUnlockedDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) AccountLockOrUnlockedDetails._all_fields_ = [ - ('previous_value', AccountLockOrUnlockedDetails.previous_value.validator), - ('new_value', AccountLockOrUnlockedDetails.new_value.validator), + ("previous_value", AccountLockOrUnlockedDetails.previous_value.validator), + ("new_value", AccountLockOrUnlockedDetails.new_value.validator), ] AccountLockOrUnlockedType.description.validator = bv.String() -AccountLockOrUnlockedType._all_field_names_ = set(['description']) -AccountLockOrUnlockedType._all_fields_ = [('description', AccountLockOrUnlockedType.description.validator)] +AccountLockOrUnlockedType._all_field_names_ = set(["description"]) +AccountLockOrUnlockedType._all_fields_ = [ + ("description", AccountLockOrUnlockedType.description.validator) +] AccountState._locked_validator = bv.Void() AccountState._unlocked_validator = bv.Void() AccountState._other_validator = bv.Void() AccountState._tagmap = { - 'locked': AccountState._locked_validator, - 'unlocked': AccountState._unlocked_validator, - 'other': AccountState._other_validator, + "locked": AccountState._locked_validator, + "unlocked": AccountState._unlocked_validator, + "other": AccountState._other_validator, } -AccountState.locked = AccountState('locked') -AccountState.unlocked = AccountState('unlocked') -AccountState.other = AccountState('other') +AccountState.locked = AccountState("locked") +AccountState.unlocked = AccountState("unlocked") +AccountState.other = AccountState("other") ActionDetails._remove_action_validator = MemberRemoveActionType_validator ActionDetails._team_invite_details_validator = TeamInviteDetails_validator ActionDetails._team_join_details_validator = JoinTeamDetails_validator ActionDetails._other_validator = bv.Void() ActionDetails._tagmap = { - 'remove_action': ActionDetails._remove_action_validator, - 'team_invite_details': ActionDetails._team_invite_details_validator, - 'team_join_details': ActionDetails._team_join_details_validator, - 'other': ActionDetails._other_validator, + "remove_action": ActionDetails._remove_action_validator, + "team_invite_details": ActionDetails._team_invite_details_validator, + "team_join_details": ActionDetails._team_join_details_validator, + "other": ActionDetails._other_validator, } -ActionDetails.other = ActionDetails('other') +ActionDetails.other = ActionDetails("other") ActorLogInfo._admin_validator = UserLogInfo_validator ActorLogInfo._anonymous_validator = bv.Void() @@ -94060,52 +98104,56 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ActorLogInfo._user_validator = UserLogInfo_validator ActorLogInfo._other_validator = bv.Void() ActorLogInfo._tagmap = { - 'admin': ActorLogInfo._admin_validator, - 'anonymous': ActorLogInfo._anonymous_validator, - 'app': ActorLogInfo._app_validator, - 'dropbox': ActorLogInfo._dropbox_validator, - 'reseller': ActorLogInfo._reseller_validator, - 'user': ActorLogInfo._user_validator, - 'other': ActorLogInfo._other_validator, + "admin": ActorLogInfo._admin_validator, + "anonymous": ActorLogInfo._anonymous_validator, + "app": ActorLogInfo._app_validator, + "dropbox": ActorLogInfo._dropbox_validator, + "reseller": ActorLogInfo._reseller_validator, + "user": ActorLogInfo._user_validator, + "other": ActorLogInfo._other_validator, } -ActorLogInfo.anonymous = ActorLogInfo('anonymous') -ActorLogInfo.dropbox = ActorLogInfo('dropbox') -ActorLogInfo.other = ActorLogInfo('other') +ActorLogInfo.anonymous = ActorLogInfo("anonymous") +ActorLogInfo.dropbox = ActorLogInfo("dropbox") +ActorLogInfo.other = ActorLogInfo("other") AddonAssignedDetails.user_name.validator = UserNameLogInfo_validator AddonAssignedDetails.addon_name.validator = AddonLogInfo_validator -AddonAssignedDetails._all_field_names_ = set([ - 'user_name', - 'addon_name', -]) +AddonAssignedDetails._all_field_names_ = set( + [ + "user_name", + "addon_name", + ] +) AddonAssignedDetails._all_fields_ = [ - ('user_name', AddonAssignedDetails.user_name.validator), - ('addon_name', AddonAssignedDetails.addon_name.validator), + ("user_name", AddonAssignedDetails.user_name.validator), + ("addon_name", AddonAssignedDetails.addon_name.validator), ] AddonAssignedType.description.validator = bv.String() -AddonAssignedType._all_field_names_ = set(['description']) -AddonAssignedType._all_fields_ = [('description', AddonAssignedType.description.validator)] +AddonAssignedType._all_field_names_ = set(["description"]) +AddonAssignedType._all_fields_ = [("description", AddonAssignedType.description.validator)] AddonLogInfo.addon_name.validator = bv.String() -AddonLogInfo._all_field_names_ = set(['addon_name']) -AddonLogInfo._all_fields_ = [('addon_name', AddonLogInfo.addon_name.validator)] +AddonLogInfo._all_field_names_ = set(["addon_name"]) +AddonLogInfo._all_fields_ = [("addon_name", AddonLogInfo.addon_name.validator)] AddonRemovedDetails.user_name.validator = UserNameLogInfo_validator AddonRemovedDetails.addon_name.validator = AddonLogInfo_validator -AddonRemovedDetails._all_field_names_ = set([ - 'user_name', - 'addon_name', -]) +AddonRemovedDetails._all_field_names_ = set( + [ + "user_name", + "addon_name", + ] +) AddonRemovedDetails._all_fields_ = [ - ('user_name', AddonRemovedDetails.user_name.validator), - ('addon_name', AddonRemovedDetails.addon_name.validator), + ("user_name", AddonRemovedDetails.user_name.validator), + ("addon_name", AddonRemovedDetails.addon_name.validator), ] AddonRemovedType.description.validator = bv.String() -AddonRemovedType._all_field_names_ = set(['description']) -AddonRemovedType._all_fields_ = [('description', AddonRemovedType.description.validator)] +AddonRemovedType._all_field_names_ = set(["description"]) +AddonRemovedType._all_fields_ = [("description", AddonRemovedType.description.validator)] AdminAlertCategoryEnum._account_takeover_validator = bv.Void() AdminAlertCategoryEnum._data_loss_protection_validator = bv.Void() @@ -94116,24 +98164,24 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminAlertCategoryEnum._threat_management_validator = bv.Void() AdminAlertCategoryEnum._other_validator = bv.Void() AdminAlertCategoryEnum._tagmap = { - 'account_takeover': AdminAlertCategoryEnum._account_takeover_validator, - 'data_loss_protection': AdminAlertCategoryEnum._data_loss_protection_validator, - 'information_governance': AdminAlertCategoryEnum._information_governance_validator, - 'malware_sharing': AdminAlertCategoryEnum._malware_sharing_validator, - 'massive_file_operation': AdminAlertCategoryEnum._massive_file_operation_validator, - 'na': AdminAlertCategoryEnum._na_validator, - 'threat_management': AdminAlertCategoryEnum._threat_management_validator, - 'other': AdminAlertCategoryEnum._other_validator, + "account_takeover": AdminAlertCategoryEnum._account_takeover_validator, + "data_loss_protection": AdminAlertCategoryEnum._data_loss_protection_validator, + "information_governance": AdminAlertCategoryEnum._information_governance_validator, + "malware_sharing": AdminAlertCategoryEnum._malware_sharing_validator, + "massive_file_operation": AdminAlertCategoryEnum._massive_file_operation_validator, + "na": AdminAlertCategoryEnum._na_validator, + "threat_management": AdminAlertCategoryEnum._threat_management_validator, + "other": AdminAlertCategoryEnum._other_validator, } -AdminAlertCategoryEnum.account_takeover = AdminAlertCategoryEnum('account_takeover') -AdminAlertCategoryEnum.data_loss_protection = AdminAlertCategoryEnum('data_loss_protection') -AdminAlertCategoryEnum.information_governance = AdminAlertCategoryEnum('information_governance') -AdminAlertCategoryEnum.malware_sharing = AdminAlertCategoryEnum('malware_sharing') -AdminAlertCategoryEnum.massive_file_operation = AdminAlertCategoryEnum('massive_file_operation') -AdminAlertCategoryEnum.na = AdminAlertCategoryEnum('na') -AdminAlertCategoryEnum.threat_management = AdminAlertCategoryEnum('threat_management') -AdminAlertCategoryEnum.other = AdminAlertCategoryEnum('other') +AdminAlertCategoryEnum.account_takeover = AdminAlertCategoryEnum("account_takeover") +AdminAlertCategoryEnum.data_loss_protection = AdminAlertCategoryEnum("data_loss_protection") +AdminAlertCategoryEnum.information_governance = AdminAlertCategoryEnum("information_governance") +AdminAlertCategoryEnum.malware_sharing = AdminAlertCategoryEnum("malware_sharing") +AdminAlertCategoryEnum.massive_file_operation = AdminAlertCategoryEnum("massive_file_operation") +AdminAlertCategoryEnum.na = AdminAlertCategoryEnum("na") +AdminAlertCategoryEnum.threat_management = AdminAlertCategoryEnum("threat_management") +AdminAlertCategoryEnum.other = AdminAlertCategoryEnum("other") AdminAlertGeneralStateEnum._active_validator = bv.Void() AdminAlertGeneralStateEnum._dismissed_validator = bv.Void() @@ -94142,20 +98190,20 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminAlertGeneralStateEnum._resolved_validator = bv.Void() AdminAlertGeneralStateEnum._other_validator = bv.Void() AdminAlertGeneralStateEnum._tagmap = { - 'active': AdminAlertGeneralStateEnum._active_validator, - 'dismissed': AdminAlertGeneralStateEnum._dismissed_validator, - 'in_progress': AdminAlertGeneralStateEnum._in_progress_validator, - 'na': AdminAlertGeneralStateEnum._na_validator, - 'resolved': AdminAlertGeneralStateEnum._resolved_validator, - 'other': AdminAlertGeneralStateEnum._other_validator, + "active": AdminAlertGeneralStateEnum._active_validator, + "dismissed": AdminAlertGeneralStateEnum._dismissed_validator, + "in_progress": AdminAlertGeneralStateEnum._in_progress_validator, + "na": AdminAlertGeneralStateEnum._na_validator, + "resolved": AdminAlertGeneralStateEnum._resolved_validator, + "other": AdminAlertGeneralStateEnum._other_validator, } -AdminAlertGeneralStateEnum.active = AdminAlertGeneralStateEnum('active') -AdminAlertGeneralStateEnum.dismissed = AdminAlertGeneralStateEnum('dismissed') -AdminAlertGeneralStateEnum.in_progress = AdminAlertGeneralStateEnum('in_progress') -AdminAlertGeneralStateEnum.na = AdminAlertGeneralStateEnum('na') -AdminAlertGeneralStateEnum.resolved = AdminAlertGeneralStateEnum('resolved') -AdminAlertGeneralStateEnum.other = AdminAlertGeneralStateEnum('other') +AdminAlertGeneralStateEnum.active = AdminAlertGeneralStateEnum("active") +AdminAlertGeneralStateEnum.dismissed = AdminAlertGeneralStateEnum("dismissed") +AdminAlertGeneralStateEnum.in_progress = AdminAlertGeneralStateEnum("in_progress") +AdminAlertGeneralStateEnum.na = AdminAlertGeneralStateEnum("na") +AdminAlertGeneralStateEnum.resolved = AdminAlertGeneralStateEnum("resolved") +AdminAlertGeneralStateEnum.other = AdminAlertGeneralStateEnum("other") AdminAlertSeverityEnum._high_validator = bv.Void() AdminAlertSeverityEnum._info_validator = bv.Void() @@ -94164,42 +98212,61 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminAlertSeverityEnum._na_validator = bv.Void() AdminAlertSeverityEnum._other_validator = bv.Void() AdminAlertSeverityEnum._tagmap = { - 'high': AdminAlertSeverityEnum._high_validator, - 'info': AdminAlertSeverityEnum._info_validator, - 'low': AdminAlertSeverityEnum._low_validator, - 'medium': AdminAlertSeverityEnum._medium_validator, - 'na': AdminAlertSeverityEnum._na_validator, - 'other': AdminAlertSeverityEnum._other_validator, + "high": AdminAlertSeverityEnum._high_validator, + "info": AdminAlertSeverityEnum._info_validator, + "low": AdminAlertSeverityEnum._low_validator, + "medium": AdminAlertSeverityEnum._medium_validator, + "na": AdminAlertSeverityEnum._na_validator, + "other": AdminAlertSeverityEnum._other_validator, } -AdminAlertSeverityEnum.high = AdminAlertSeverityEnum('high') -AdminAlertSeverityEnum.info = AdminAlertSeverityEnum('info') -AdminAlertSeverityEnum.low = AdminAlertSeverityEnum('low') -AdminAlertSeverityEnum.medium = AdminAlertSeverityEnum('medium') -AdminAlertSeverityEnum.na = AdminAlertSeverityEnum('na') -AdminAlertSeverityEnum.other = AdminAlertSeverityEnum('other') +AdminAlertSeverityEnum.high = AdminAlertSeverityEnum("high") +AdminAlertSeverityEnum.info = AdminAlertSeverityEnum("info") +AdminAlertSeverityEnum.low = AdminAlertSeverityEnum("low") +AdminAlertSeverityEnum.medium = AdminAlertSeverityEnum("medium") +AdminAlertSeverityEnum.na = AdminAlertSeverityEnum("na") +AdminAlertSeverityEnum.other = AdminAlertSeverityEnum("other") -AdminAlertingAlertConfiguration.alert_state.validator = bv.Nullable(AdminAlertingAlertStatePolicy_validator) -AdminAlertingAlertConfiguration.sensitivity_level.validator = bv.Nullable(AdminAlertingAlertSensitivity_validator) -AdminAlertingAlertConfiguration.recipients_settings.validator = bv.Nullable(RecipientsConfiguration_validator) +AdminAlertingAlertConfiguration.alert_state.validator = bv.Nullable( + AdminAlertingAlertStatePolicy_validator +) +AdminAlertingAlertConfiguration.sensitivity_level.validator = bv.Nullable( + AdminAlertingAlertSensitivity_validator +) +AdminAlertingAlertConfiguration.recipients_settings.validator = bv.Nullable( + RecipientsConfiguration_validator +) AdminAlertingAlertConfiguration.text.validator = bv.Nullable(bv.String()) AdminAlertingAlertConfiguration.excluded_file_extensions.validator = bv.Nullable(bv.String()) -AdminAlertingAlertConfiguration.malware_exclusion_state.validator = bv.Nullable(MalwareExclusionState_validator) -AdminAlertingAlertConfiguration._all_field_names_ = set([ - 'alert_state', - 'sensitivity_level', - 'recipients_settings', - 'text', - 'excluded_file_extensions', - 'malware_exclusion_state', -]) +AdminAlertingAlertConfiguration.malware_exclusion_state.validator = bv.Nullable( + MalwareExclusionState_validator +) +AdminAlertingAlertConfiguration._all_field_names_ = set( + [ + "alert_state", + "sensitivity_level", + "recipients_settings", + "text", + "excluded_file_extensions", + "malware_exclusion_state", + ] +) AdminAlertingAlertConfiguration._all_fields_ = [ - ('alert_state', AdminAlertingAlertConfiguration.alert_state.validator), - ('sensitivity_level', AdminAlertingAlertConfiguration.sensitivity_level.validator), - ('recipients_settings', AdminAlertingAlertConfiguration.recipients_settings.validator), - ('text', AdminAlertingAlertConfiguration.text.validator), - ('excluded_file_extensions', AdminAlertingAlertConfiguration.excluded_file_extensions.validator), - ('malware_exclusion_state', AdminAlertingAlertConfiguration.malware_exclusion_state.validator), + ("alert_state", AdminAlertingAlertConfiguration.alert_state.validator), + ("sensitivity_level", AdminAlertingAlertConfiguration.sensitivity_level.validator), + ( + "recipients_settings", + AdminAlertingAlertConfiguration.recipients_settings.validator, + ), + ("text", AdminAlertingAlertConfiguration.text.validator), + ( + "excluded_file_extensions", + AdminAlertingAlertConfiguration.excluded_file_extensions.validator, + ), + ( + "malware_exclusion_state", + AdminAlertingAlertConfiguration.malware_exclusion_state.validator, + ), ] AdminAlertingAlertSensitivity._high_validator = bv.Void() @@ -94210,161 +98277,199 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminAlertingAlertSensitivity._medium_validator = bv.Void() AdminAlertingAlertSensitivity._other_validator = bv.Void() AdminAlertingAlertSensitivity._tagmap = { - 'high': AdminAlertingAlertSensitivity._high_validator, - 'highest': AdminAlertingAlertSensitivity._highest_validator, - 'invalid': AdminAlertingAlertSensitivity._invalid_validator, - 'low': AdminAlertingAlertSensitivity._low_validator, - 'lowest': AdminAlertingAlertSensitivity._lowest_validator, - 'medium': AdminAlertingAlertSensitivity._medium_validator, - 'other': AdminAlertingAlertSensitivity._other_validator, + "high": AdminAlertingAlertSensitivity._high_validator, + "highest": AdminAlertingAlertSensitivity._highest_validator, + "invalid": AdminAlertingAlertSensitivity._invalid_validator, + "low": AdminAlertingAlertSensitivity._low_validator, + "lowest": AdminAlertingAlertSensitivity._lowest_validator, + "medium": AdminAlertingAlertSensitivity._medium_validator, + "other": AdminAlertingAlertSensitivity._other_validator, } -AdminAlertingAlertSensitivity.high = AdminAlertingAlertSensitivity('high') -AdminAlertingAlertSensitivity.highest = AdminAlertingAlertSensitivity('highest') -AdminAlertingAlertSensitivity.invalid = AdminAlertingAlertSensitivity('invalid') -AdminAlertingAlertSensitivity.low = AdminAlertingAlertSensitivity('low') -AdminAlertingAlertSensitivity.lowest = AdminAlertingAlertSensitivity('lowest') -AdminAlertingAlertSensitivity.medium = AdminAlertingAlertSensitivity('medium') -AdminAlertingAlertSensitivity.other = AdminAlertingAlertSensitivity('other') +AdminAlertingAlertSensitivity.high = AdminAlertingAlertSensitivity("high") +AdminAlertingAlertSensitivity.highest = AdminAlertingAlertSensitivity("highest") +AdminAlertingAlertSensitivity.invalid = AdminAlertingAlertSensitivity("invalid") +AdminAlertingAlertSensitivity.low = AdminAlertingAlertSensitivity("low") +AdminAlertingAlertSensitivity.lowest = AdminAlertingAlertSensitivity("lowest") +AdminAlertingAlertSensitivity.medium = AdminAlertingAlertSensitivity("medium") +AdminAlertingAlertSensitivity.other = AdminAlertingAlertSensitivity("other") AdminAlertingAlertStateChangedDetails.alert_name.validator = bv.String() AdminAlertingAlertStateChangedDetails.alert_severity.validator = AdminAlertSeverityEnum_validator AdminAlertingAlertStateChangedDetails.alert_category.validator = AdminAlertCategoryEnum_validator AdminAlertingAlertStateChangedDetails.alert_instance_id.validator = bv.String() -AdminAlertingAlertStateChangedDetails.previous_value.validator = AdminAlertGeneralStateEnum_validator +AdminAlertingAlertStateChangedDetails.previous_value.validator = ( + AdminAlertGeneralStateEnum_validator +) AdminAlertingAlertStateChangedDetails.new_value.validator = AdminAlertGeneralStateEnum_validator -AdminAlertingAlertStateChangedDetails._all_field_names_ = set([ - 'alert_name', - 'alert_severity', - 'alert_category', - 'alert_instance_id', - 'previous_value', - 'new_value', -]) +AdminAlertingAlertStateChangedDetails._all_field_names_ = set( + [ + "alert_name", + "alert_severity", + "alert_category", + "alert_instance_id", + "previous_value", + "new_value", + ] +) AdminAlertingAlertStateChangedDetails._all_fields_ = [ - ('alert_name', AdminAlertingAlertStateChangedDetails.alert_name.validator), - ('alert_severity', AdminAlertingAlertStateChangedDetails.alert_severity.validator), - ('alert_category', AdminAlertingAlertStateChangedDetails.alert_category.validator), - ('alert_instance_id', AdminAlertingAlertStateChangedDetails.alert_instance_id.validator), - ('previous_value', AdminAlertingAlertStateChangedDetails.previous_value.validator), - ('new_value', AdminAlertingAlertStateChangedDetails.new_value.validator), + ("alert_name", AdminAlertingAlertStateChangedDetails.alert_name.validator), + ("alert_severity", AdminAlertingAlertStateChangedDetails.alert_severity.validator), + ("alert_category", AdminAlertingAlertStateChangedDetails.alert_category.validator), + ( + "alert_instance_id", + AdminAlertingAlertStateChangedDetails.alert_instance_id.validator, + ), + ("previous_value", AdminAlertingAlertStateChangedDetails.previous_value.validator), + ("new_value", AdminAlertingAlertStateChangedDetails.new_value.validator), ] AdminAlertingAlertStateChangedType.description.validator = bv.String() -AdminAlertingAlertStateChangedType._all_field_names_ = set(['description']) -AdminAlertingAlertStateChangedType._all_fields_ = [('description', AdminAlertingAlertStateChangedType.description.validator)] +AdminAlertingAlertStateChangedType._all_field_names_ = set(["description"]) +AdminAlertingAlertStateChangedType._all_fields_ = [ + ("description", AdminAlertingAlertStateChangedType.description.validator) +] AdminAlertingAlertStatePolicy._off_validator = bv.Void() AdminAlertingAlertStatePolicy._on_validator = bv.Void() AdminAlertingAlertStatePolicy._other_validator = bv.Void() AdminAlertingAlertStatePolicy._tagmap = { - 'off': AdminAlertingAlertStatePolicy._off_validator, - 'on': AdminAlertingAlertStatePolicy._on_validator, - 'other': AdminAlertingAlertStatePolicy._other_validator, + "off": AdminAlertingAlertStatePolicy._off_validator, + "on": AdminAlertingAlertStatePolicy._on_validator, + "other": AdminAlertingAlertStatePolicy._other_validator, } -AdminAlertingAlertStatePolicy.off = AdminAlertingAlertStatePolicy('off') -AdminAlertingAlertStatePolicy.on = AdminAlertingAlertStatePolicy('on') -AdminAlertingAlertStatePolicy.other = AdminAlertingAlertStatePolicy('other') +AdminAlertingAlertStatePolicy.off = AdminAlertingAlertStatePolicy("off") +AdminAlertingAlertStatePolicy.on = AdminAlertingAlertStatePolicy("on") +AdminAlertingAlertStatePolicy.other = AdminAlertingAlertStatePolicy("other") AdminAlertingChangedAlertConfigDetails.alert_name.validator = bv.String() -AdminAlertingChangedAlertConfigDetails.previous_alert_config.validator = AdminAlertingAlertConfiguration_validator -AdminAlertingChangedAlertConfigDetails.new_alert_config.validator = AdminAlertingAlertConfiguration_validator -AdminAlertingChangedAlertConfigDetails._all_field_names_ = set([ - 'alert_name', - 'previous_alert_config', - 'new_alert_config', -]) +AdminAlertingChangedAlertConfigDetails.previous_alert_config.validator = ( + AdminAlertingAlertConfiguration_validator +) +AdminAlertingChangedAlertConfigDetails.new_alert_config.validator = ( + AdminAlertingAlertConfiguration_validator +) +AdminAlertingChangedAlertConfigDetails._all_field_names_ = set( + [ + "alert_name", + "previous_alert_config", + "new_alert_config", + ] +) AdminAlertingChangedAlertConfigDetails._all_fields_ = [ - ('alert_name', AdminAlertingChangedAlertConfigDetails.alert_name.validator), - ('previous_alert_config', AdminAlertingChangedAlertConfigDetails.previous_alert_config.validator), - ('new_alert_config', AdminAlertingChangedAlertConfigDetails.new_alert_config.validator), + ("alert_name", AdminAlertingChangedAlertConfigDetails.alert_name.validator), + ( + "previous_alert_config", + AdminAlertingChangedAlertConfigDetails.previous_alert_config.validator, + ), + ( + "new_alert_config", + AdminAlertingChangedAlertConfigDetails.new_alert_config.validator, + ), ] AdminAlertingChangedAlertConfigType.description.validator = bv.String() -AdminAlertingChangedAlertConfigType._all_field_names_ = set(['description']) -AdminAlertingChangedAlertConfigType._all_fields_ = [('description', AdminAlertingChangedAlertConfigType.description.validator)] +AdminAlertingChangedAlertConfigType._all_field_names_ = set(["description"]) +AdminAlertingChangedAlertConfigType._all_fields_ = [ + ("description", AdminAlertingChangedAlertConfigType.description.validator) +] AdminAlertingTriggeredAlertDetails.alert_name.validator = bv.String() AdminAlertingTriggeredAlertDetails.alert_severity.validator = AdminAlertSeverityEnum_validator AdminAlertingTriggeredAlertDetails.alert_category.validator = AdminAlertCategoryEnum_validator AdminAlertingTriggeredAlertDetails.alert_instance_id.validator = bv.String() -AdminAlertingTriggeredAlertDetails._all_field_names_ = set([ - 'alert_name', - 'alert_severity', - 'alert_category', - 'alert_instance_id', -]) +AdminAlertingTriggeredAlertDetails._all_field_names_ = set( + [ + "alert_name", + "alert_severity", + "alert_category", + "alert_instance_id", + ] +) AdminAlertingTriggeredAlertDetails._all_fields_ = [ - ('alert_name', AdminAlertingTriggeredAlertDetails.alert_name.validator), - ('alert_severity', AdminAlertingTriggeredAlertDetails.alert_severity.validator), - ('alert_category', AdminAlertingTriggeredAlertDetails.alert_category.validator), - ('alert_instance_id', AdminAlertingTriggeredAlertDetails.alert_instance_id.validator), + ("alert_name", AdminAlertingTriggeredAlertDetails.alert_name.validator), + ("alert_severity", AdminAlertingTriggeredAlertDetails.alert_severity.validator), + ("alert_category", AdminAlertingTriggeredAlertDetails.alert_category.validator), + ( + "alert_instance_id", + AdminAlertingTriggeredAlertDetails.alert_instance_id.validator, + ), ] AdminAlertingTriggeredAlertType.description.validator = bv.String() -AdminAlertingTriggeredAlertType._all_field_names_ = set(['description']) -AdminAlertingTriggeredAlertType._all_fields_ = [('description', AdminAlertingTriggeredAlertType.description.validator)] +AdminAlertingTriggeredAlertType._all_field_names_ = set(["description"]) +AdminAlertingTriggeredAlertType._all_fields_ = [ + ("description", AdminAlertingTriggeredAlertType.description.validator) +] AdminConsoleAppPermission._default_for_listed_apps_validator = bv.Void() AdminConsoleAppPermission._default_for_unlisted_apps_validator = bv.Void() AdminConsoleAppPermission._other_validator = bv.Void() AdminConsoleAppPermission._tagmap = { - 'default_for_listed_apps': AdminConsoleAppPermission._default_for_listed_apps_validator, - 'default_for_unlisted_apps': AdminConsoleAppPermission._default_for_unlisted_apps_validator, - 'other': AdminConsoleAppPermission._other_validator, + "default_for_listed_apps": AdminConsoleAppPermission._default_for_listed_apps_validator, + "default_for_unlisted_apps": AdminConsoleAppPermission._default_for_unlisted_apps_validator, + "other": AdminConsoleAppPermission._other_validator, } -AdminConsoleAppPermission.default_for_listed_apps = AdminConsoleAppPermission('default_for_listed_apps') -AdminConsoleAppPermission.default_for_unlisted_apps = AdminConsoleAppPermission('default_for_unlisted_apps') -AdminConsoleAppPermission.other = AdminConsoleAppPermission('other') +AdminConsoleAppPermission.default_for_listed_apps = AdminConsoleAppPermission( + "default_for_listed_apps" +) +AdminConsoleAppPermission.default_for_unlisted_apps = AdminConsoleAppPermission( + "default_for_unlisted_apps" +) +AdminConsoleAppPermission.other = AdminConsoleAppPermission("other") AdminConsoleAppPolicy._allow_validator = bv.Void() AdminConsoleAppPolicy._block_validator = bv.Void() AdminConsoleAppPolicy._default_validator = bv.Void() AdminConsoleAppPolicy._other_validator = bv.Void() AdminConsoleAppPolicy._tagmap = { - 'allow': AdminConsoleAppPolicy._allow_validator, - 'block': AdminConsoleAppPolicy._block_validator, - 'default': AdminConsoleAppPolicy._default_validator, - 'other': AdminConsoleAppPolicy._other_validator, + "allow": AdminConsoleAppPolicy._allow_validator, + "block": AdminConsoleAppPolicy._block_validator, + "default": AdminConsoleAppPolicy._default_validator, + "other": AdminConsoleAppPolicy._other_validator, } -AdminConsoleAppPolicy.allow = AdminConsoleAppPolicy('allow') -AdminConsoleAppPolicy.block = AdminConsoleAppPolicy('block') -AdminConsoleAppPolicy.default = AdminConsoleAppPolicy('default') -AdminConsoleAppPolicy.other = AdminConsoleAppPolicy('other') +AdminConsoleAppPolicy.allow = AdminConsoleAppPolicy("allow") +AdminConsoleAppPolicy.block = AdminConsoleAppPolicy("block") +AdminConsoleAppPolicy.default = AdminConsoleAppPolicy("default") +AdminConsoleAppPolicy.other = AdminConsoleAppPolicy("other") AdminEmailRemindersChangedDetails.new_value.validator = AdminEmailRemindersPolicy_validator AdminEmailRemindersChangedDetails.previous_value.validator = AdminEmailRemindersPolicy_validator -AdminEmailRemindersChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +AdminEmailRemindersChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) AdminEmailRemindersChangedDetails._all_fields_ = [ - ('new_value', AdminEmailRemindersChangedDetails.new_value.validator), - ('previous_value', AdminEmailRemindersChangedDetails.previous_value.validator), + ("new_value", AdminEmailRemindersChangedDetails.new_value.validator), + ("previous_value", AdminEmailRemindersChangedDetails.previous_value.validator), ] AdminEmailRemindersChangedType.description.validator = bv.String() -AdminEmailRemindersChangedType._all_field_names_ = set(['description']) -AdminEmailRemindersChangedType._all_fields_ = [('description', AdminEmailRemindersChangedType.description.validator)] +AdminEmailRemindersChangedType._all_field_names_ = set(["description"]) +AdminEmailRemindersChangedType._all_fields_ = [ + ("description", AdminEmailRemindersChangedType.description.validator) +] AdminEmailRemindersPolicy._default_validator = bv.Void() AdminEmailRemindersPolicy._disabled_validator = bv.Void() AdminEmailRemindersPolicy._enabled_validator = bv.Void() AdminEmailRemindersPolicy._other_validator = bv.Void() AdminEmailRemindersPolicy._tagmap = { - 'default': AdminEmailRemindersPolicy._default_validator, - 'disabled': AdminEmailRemindersPolicy._disabled_validator, - 'enabled': AdminEmailRemindersPolicy._enabled_validator, - 'other': AdminEmailRemindersPolicy._other_validator, + "default": AdminEmailRemindersPolicy._default_validator, + "disabled": AdminEmailRemindersPolicy._disabled_validator, + "enabled": AdminEmailRemindersPolicy._enabled_validator, + "other": AdminEmailRemindersPolicy._other_validator, } -AdminEmailRemindersPolicy.default = AdminEmailRemindersPolicy('default') -AdminEmailRemindersPolicy.disabled = AdminEmailRemindersPolicy('disabled') -AdminEmailRemindersPolicy.enabled = AdminEmailRemindersPolicy('enabled') -AdminEmailRemindersPolicy.other = AdminEmailRemindersPolicy('other') +AdminEmailRemindersPolicy.default = AdminEmailRemindersPolicy("default") +AdminEmailRemindersPolicy.disabled = AdminEmailRemindersPolicy("disabled") +AdminEmailRemindersPolicy.enabled = AdminEmailRemindersPolicy("enabled") +AdminEmailRemindersPolicy.other = AdminEmailRemindersPolicy("other") AdminRole._billing_admin_validator = bv.Void() AdminRole._compliance_admin_validator = bv.Void() @@ -94380,34 +98485,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminRole._user_management_admin_validator = bv.Void() AdminRole._other_validator = bv.Void() AdminRole._tagmap = { - 'billing_admin': AdminRole._billing_admin_validator, - 'compliance_admin': AdminRole._compliance_admin_validator, - 'content_admin': AdminRole._content_admin_validator, - 'deprecated_freemium_team_member': AdminRole._deprecated_freemium_team_member_validator, - 'freemium_team_creator': AdminRole._freemium_team_creator_validator, - 'limited_admin': AdminRole._limited_admin_validator, - 'member_only': AdminRole._member_only_validator, - 'reporting_admin': AdminRole._reporting_admin_validator, - 'security_admin': AdminRole._security_admin_validator, - 'support_admin': AdminRole._support_admin_validator, - 'team_admin': AdminRole._team_admin_validator, - 'user_management_admin': AdminRole._user_management_admin_validator, - 'other': AdminRole._other_validator, + "billing_admin": AdminRole._billing_admin_validator, + "compliance_admin": AdminRole._compliance_admin_validator, + "content_admin": AdminRole._content_admin_validator, + "deprecated_freemium_team_member": AdminRole._deprecated_freemium_team_member_validator, + "freemium_team_creator": AdminRole._freemium_team_creator_validator, + "limited_admin": AdminRole._limited_admin_validator, + "member_only": AdminRole._member_only_validator, + "reporting_admin": AdminRole._reporting_admin_validator, + "security_admin": AdminRole._security_admin_validator, + "support_admin": AdminRole._support_admin_validator, + "team_admin": AdminRole._team_admin_validator, + "user_management_admin": AdminRole._user_management_admin_validator, + "other": AdminRole._other_validator, } -AdminRole.billing_admin = AdminRole('billing_admin') -AdminRole.compliance_admin = AdminRole('compliance_admin') -AdminRole.content_admin = AdminRole('content_admin') -AdminRole.deprecated_freemium_team_member = AdminRole('deprecated_freemium_team_member') -AdminRole.freemium_team_creator = AdminRole('freemium_team_creator') -AdminRole.limited_admin = AdminRole('limited_admin') -AdminRole.member_only = AdminRole('member_only') -AdminRole.reporting_admin = AdminRole('reporting_admin') -AdminRole.security_admin = AdminRole('security_admin') -AdminRole.support_admin = AdminRole('support_admin') -AdminRole.team_admin = AdminRole('team_admin') -AdminRole.user_management_admin = AdminRole('user_management_admin') -AdminRole.other = AdminRole('other') +AdminRole.billing_admin = AdminRole("billing_admin") +AdminRole.compliance_admin = AdminRole("compliance_admin") +AdminRole.content_admin = AdminRole("content_admin") +AdminRole.deprecated_freemium_team_member = AdminRole("deprecated_freemium_team_member") +AdminRole.freemium_team_creator = AdminRole("freemium_team_creator") +AdminRole.limited_admin = AdminRole("limited_admin") +AdminRole.member_only = AdminRole("member_only") +AdminRole.reporting_admin = AdminRole("reporting_admin") +AdminRole.security_admin = AdminRole("security_admin") +AdminRole.support_admin = AdminRole("support_admin") +AdminRole.team_admin = AdminRole("team_admin") +AdminRole.user_management_admin = AdminRole("user_management_admin") +AdminRole.other = AdminRole("other") AiThirdPartySharingDropboxBasePolicy._admins_only_validator = bv.Void() AiThirdPartySharingDropboxBasePolicy._default_validator = bv.Void() @@ -94415,33 +98520,52 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AiThirdPartySharingDropboxBasePolicy._enabled_validator = bv.Void() AiThirdPartySharingDropboxBasePolicy._other_validator = bv.Void() AiThirdPartySharingDropboxBasePolicy._tagmap = { - 'admins_only': AiThirdPartySharingDropboxBasePolicy._admins_only_validator, - 'default': AiThirdPartySharingDropboxBasePolicy._default_validator, - 'disabled': AiThirdPartySharingDropboxBasePolicy._disabled_validator, - 'enabled': AiThirdPartySharingDropboxBasePolicy._enabled_validator, - 'other': AiThirdPartySharingDropboxBasePolicy._other_validator, + "admins_only": AiThirdPartySharingDropboxBasePolicy._admins_only_validator, + "default": AiThirdPartySharingDropboxBasePolicy._default_validator, + "disabled": AiThirdPartySharingDropboxBasePolicy._disabled_validator, + "enabled": AiThirdPartySharingDropboxBasePolicy._enabled_validator, + "other": AiThirdPartySharingDropboxBasePolicy._other_validator, } -AiThirdPartySharingDropboxBasePolicy.admins_only = AiThirdPartySharingDropboxBasePolicy('admins_only') -AiThirdPartySharingDropboxBasePolicy.default = AiThirdPartySharingDropboxBasePolicy('default') -AiThirdPartySharingDropboxBasePolicy.disabled = AiThirdPartySharingDropboxBasePolicy('disabled') -AiThirdPartySharingDropboxBasePolicy.enabled = AiThirdPartySharingDropboxBasePolicy('enabled') -AiThirdPartySharingDropboxBasePolicy.other = AiThirdPartySharingDropboxBasePolicy('other') - -AiThirdPartySharingDropboxBasePolicyChangedDetails.new_value.validator = AiThirdPartySharingDropboxBasePolicy_validator -AiThirdPartySharingDropboxBasePolicyChangedDetails.previous_value.validator = AiThirdPartySharingDropboxBasePolicy_validator -AiThirdPartySharingDropboxBasePolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +AiThirdPartySharingDropboxBasePolicy.admins_only = AiThirdPartySharingDropboxBasePolicy( + "admins_only" +) +AiThirdPartySharingDropboxBasePolicy.default = AiThirdPartySharingDropboxBasePolicy("default") +AiThirdPartySharingDropboxBasePolicy.disabled = AiThirdPartySharingDropboxBasePolicy("disabled") +AiThirdPartySharingDropboxBasePolicy.enabled = AiThirdPartySharingDropboxBasePolicy("enabled") +AiThirdPartySharingDropboxBasePolicy.other = AiThirdPartySharingDropboxBasePolicy("other") + +AiThirdPartySharingDropboxBasePolicyChangedDetails.new_value.validator = ( + AiThirdPartySharingDropboxBasePolicy_validator +) +AiThirdPartySharingDropboxBasePolicyChangedDetails.previous_value.validator = ( + AiThirdPartySharingDropboxBasePolicy_validator +) +AiThirdPartySharingDropboxBasePolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) AiThirdPartySharingDropboxBasePolicyChangedDetails._all_fields_ = [ - ('new_value', AiThirdPartySharingDropboxBasePolicyChangedDetails.new_value.validator), - ('previous_value', AiThirdPartySharingDropboxBasePolicyChangedDetails.previous_value.validator), + ( + "new_value", + AiThirdPartySharingDropboxBasePolicyChangedDetails.new_value.validator, + ), + ( + "previous_value", + AiThirdPartySharingDropboxBasePolicyChangedDetails.previous_value.validator, + ), ] AiThirdPartySharingDropboxBasePolicyChangedType.description.validator = bv.String() -AiThirdPartySharingDropboxBasePolicyChangedType._all_field_names_ = set(['description']) -AiThirdPartySharingDropboxBasePolicyChangedType._all_fields_ = [('description', AiThirdPartySharingDropboxBasePolicyChangedType.description.validator)] +AiThirdPartySharingDropboxBasePolicyChangedType._all_field_names_ = set(["description"]) +AiThirdPartySharingDropboxBasePolicyChangedType._all_fields_ = [ + ( + "description", + AiThirdPartySharingDropboxBasePolicyChangedType.description.validator, + ) +] AlertRecipientsSettingType._custom_list_validator = bv.Void() AlertRecipientsSettingType._invalid_validator = bv.Void() @@ -94449,83 +98573,96 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AlertRecipientsSettingType._team_admins_validator = bv.Void() AlertRecipientsSettingType._other_validator = bv.Void() AlertRecipientsSettingType._tagmap = { - 'custom_list': AlertRecipientsSettingType._custom_list_validator, - 'invalid': AlertRecipientsSettingType._invalid_validator, - 'none': AlertRecipientsSettingType._none_validator, - 'team_admins': AlertRecipientsSettingType._team_admins_validator, - 'other': AlertRecipientsSettingType._other_validator, + "custom_list": AlertRecipientsSettingType._custom_list_validator, + "invalid": AlertRecipientsSettingType._invalid_validator, + "none": AlertRecipientsSettingType._none_validator, + "team_admins": AlertRecipientsSettingType._team_admins_validator, + "other": AlertRecipientsSettingType._other_validator, } -AlertRecipientsSettingType.custom_list = AlertRecipientsSettingType('custom_list') -AlertRecipientsSettingType.invalid = AlertRecipientsSettingType('invalid') -AlertRecipientsSettingType.none = AlertRecipientsSettingType('none') -AlertRecipientsSettingType.team_admins = AlertRecipientsSettingType('team_admins') -AlertRecipientsSettingType.other = AlertRecipientsSettingType('other') +AlertRecipientsSettingType.custom_list = AlertRecipientsSettingType("custom_list") +AlertRecipientsSettingType.invalid = AlertRecipientsSettingType("invalid") +AlertRecipientsSettingType.none = AlertRecipientsSettingType("none") +AlertRecipientsSettingType.team_admins = AlertRecipientsSettingType("team_admins") +AlertRecipientsSettingType.other = AlertRecipientsSettingType("other") AllowDownloadDisabledDetails._all_field_names_ = set([]) AllowDownloadDisabledDetails._all_fields_ = [] AllowDownloadDisabledType.description.validator = bv.String() -AllowDownloadDisabledType._all_field_names_ = set(['description']) -AllowDownloadDisabledType._all_fields_ = [('description', AllowDownloadDisabledType.description.validator)] +AllowDownloadDisabledType._all_field_names_ = set(["description"]) +AllowDownloadDisabledType._all_fields_ = [ + ("description", AllowDownloadDisabledType.description.validator) +] AllowDownloadEnabledDetails._all_field_names_ = set([]) AllowDownloadEnabledDetails._all_fields_ = [] AllowDownloadEnabledType.description.validator = bv.String() -AllowDownloadEnabledType._all_field_names_ = set(['description']) -AllowDownloadEnabledType._all_fields_ = [('description', AllowDownloadEnabledType.description.validator)] +AllowDownloadEnabledType._all_field_names_ = set(["description"]) +AllowDownloadEnabledType._all_fields_ = [ + ("description", AllowDownloadEnabledType.description.validator) +] ApiSessionLogInfo.request_id.validator = RequestId_validator -ApiSessionLogInfo._all_field_names_ = set(['request_id']) -ApiSessionLogInfo._all_fields_ = [('request_id', ApiSessionLogInfo.request_id.validator)] +ApiSessionLogInfo._all_field_names_ = set(["request_id"]) +ApiSessionLogInfo._all_fields_ = [("request_id", ApiSessionLogInfo.request_id.validator)] AppBlockedByPermissionsDetails.app_info.validator = AppLogInfo_validator -AppBlockedByPermissionsDetails._all_field_names_ = set(['app_info']) -AppBlockedByPermissionsDetails._all_fields_ = [('app_info', AppBlockedByPermissionsDetails.app_info.validator)] +AppBlockedByPermissionsDetails._all_field_names_ = set(["app_info"]) +AppBlockedByPermissionsDetails._all_fields_ = [ + ("app_info", AppBlockedByPermissionsDetails.app_info.validator) +] AppBlockedByPermissionsType.description.validator = bv.String() -AppBlockedByPermissionsType._all_field_names_ = set(['description']) -AppBlockedByPermissionsType._all_fields_ = [('description', AppBlockedByPermissionsType.description.validator)] +AppBlockedByPermissionsType._all_field_names_ = set(["description"]) +AppBlockedByPermissionsType._all_fields_ = [ + ("description", AppBlockedByPermissionsType.description.validator) +] AppLinkTeamDetails.app_info.validator = AppLogInfo_validator -AppLinkTeamDetails._all_field_names_ = set(['app_info']) -AppLinkTeamDetails._all_fields_ = [('app_info', AppLinkTeamDetails.app_info.validator)] +AppLinkTeamDetails._all_field_names_ = set(["app_info"]) +AppLinkTeamDetails._all_fields_ = [("app_info", AppLinkTeamDetails.app_info.validator)] AppLinkTeamType.description.validator = bv.String() -AppLinkTeamType._all_field_names_ = set(['description']) -AppLinkTeamType._all_fields_ = [('description', AppLinkTeamType.description.validator)] +AppLinkTeamType._all_field_names_ = set(["description"]) +AppLinkTeamType._all_fields_ = [("description", AppLinkTeamType.description.validator)] AppLinkUserDetails.app_info.validator = AppLogInfo_validator -AppLinkUserDetails._all_field_names_ = set(['app_info']) -AppLinkUserDetails._all_fields_ = [('app_info', AppLinkUserDetails.app_info.validator)] +AppLinkUserDetails._all_field_names_ = set(["app_info"]) +AppLinkUserDetails._all_fields_ = [("app_info", AppLinkUserDetails.app_info.validator)] AppLinkUserType.description.validator = bv.String() -AppLinkUserType._all_field_names_ = set(['description']) -AppLinkUserType._all_fields_ = [('description', AppLinkUserType.description.validator)] +AppLinkUserType._all_field_names_ = set(["description"]) +AppLinkUserType._all_fields_ = [("description", AppLinkUserType.description.validator)] AppLogInfo.app_id.validator = bv.Nullable(AppId_validator) AppLogInfo.display_name.validator = bv.Nullable(bv.String()) -AppLogInfo._field_names_ = set([ - 'app_id', - 'display_name', -]) +AppLogInfo._field_names_ = set( + [ + "app_id", + "display_name", + ] +) AppLogInfo._all_field_names_ = AppLogInfo._field_names_ AppLogInfo._fields_ = [ - ('app_id', AppLogInfo.app_id.validator), - ('display_name', AppLogInfo.display_name.validator), + ("app_id", AppLogInfo.app_id.validator), + ("display_name", AppLogInfo.display_name.validator), ] AppLogInfo._all_fields_ = AppLogInfo._fields_ AppLogInfo._tag_to_subtype_ = { - ('team_linked_app',): TeamLinkedAppLogInfo_validator, - ('user_linked_app',): UserLinkedAppLogInfo_validator, - ('user_or_team_linked_app',): UserOrTeamLinkedAppLogInfo_validator, + ("team_linked_app",): TeamLinkedAppLogInfo_validator, + ("user_linked_app",): UserLinkedAppLogInfo_validator, + ("user_or_team_linked_app",): UserOrTeamLinkedAppLogInfo_validator, } AppLogInfo._pytype_to_tag_and_subtype_ = { - TeamLinkedAppLogInfo: (('team_linked_app',), TeamLinkedAppLogInfo_validator), - UserLinkedAppLogInfo: (('user_linked_app',), UserLinkedAppLogInfo_validator), - UserOrTeamLinkedAppLogInfo: (('user_or_team_linked_app',), UserOrTeamLinkedAppLogInfo_validator), + TeamLinkedAppLogInfo: (("team_linked_app",), TeamLinkedAppLogInfo_validator), + UserLinkedAppLogInfo: (("user_linked_app",), UserLinkedAppLogInfo_validator), + UserOrTeamLinkedAppLogInfo: ( + ("user_or_team_linked_app",), + UserOrTeamLinkedAppLogInfo_validator, + ), } AppLogInfo._is_catch_all_ = True @@ -94533,76 +98670,86 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AppPermissionsChangedDetails.permission.validator = bv.Nullable(AdminConsoleAppPermission_validator) AppPermissionsChangedDetails.previous_value.validator = AdminConsoleAppPolicy_validator AppPermissionsChangedDetails.new_value.validator = AdminConsoleAppPolicy_validator -AppPermissionsChangedDetails._all_field_names_ = set([ - 'app_name', - 'permission', - 'previous_value', - 'new_value', -]) +AppPermissionsChangedDetails._all_field_names_ = set( + [ + "app_name", + "permission", + "previous_value", + "new_value", + ] +) AppPermissionsChangedDetails._all_fields_ = [ - ('app_name', AppPermissionsChangedDetails.app_name.validator), - ('permission', AppPermissionsChangedDetails.permission.validator), - ('previous_value', AppPermissionsChangedDetails.previous_value.validator), - ('new_value', AppPermissionsChangedDetails.new_value.validator), + ("app_name", AppPermissionsChangedDetails.app_name.validator), + ("permission", AppPermissionsChangedDetails.permission.validator), + ("previous_value", AppPermissionsChangedDetails.previous_value.validator), + ("new_value", AppPermissionsChangedDetails.new_value.validator), ] AppPermissionsChangedType.description.validator = bv.String() -AppPermissionsChangedType._all_field_names_ = set(['description']) -AppPermissionsChangedType._all_fields_ = [('description', AppPermissionsChangedType.description.validator)] +AppPermissionsChangedType._all_field_names_ = set(["description"]) +AppPermissionsChangedType._all_fields_ = [ + ("description", AppPermissionsChangedType.description.validator) +] AppUnlinkTeamDetails.app_info.validator = AppLogInfo_validator -AppUnlinkTeamDetails._all_field_names_ = set(['app_info']) -AppUnlinkTeamDetails._all_fields_ = [('app_info', AppUnlinkTeamDetails.app_info.validator)] +AppUnlinkTeamDetails._all_field_names_ = set(["app_info"]) +AppUnlinkTeamDetails._all_fields_ = [("app_info", AppUnlinkTeamDetails.app_info.validator)] AppUnlinkTeamType.description.validator = bv.String() -AppUnlinkTeamType._all_field_names_ = set(['description']) -AppUnlinkTeamType._all_fields_ = [('description', AppUnlinkTeamType.description.validator)] +AppUnlinkTeamType._all_field_names_ = set(["description"]) +AppUnlinkTeamType._all_fields_ = [("description", AppUnlinkTeamType.description.validator)] AppUnlinkUserDetails.app_info.validator = AppLogInfo_validator -AppUnlinkUserDetails._all_field_names_ = set(['app_info']) -AppUnlinkUserDetails._all_fields_ = [('app_info', AppUnlinkUserDetails.app_info.validator)] +AppUnlinkUserDetails._all_field_names_ = set(["app_info"]) +AppUnlinkUserDetails._all_fields_ = [("app_info", AppUnlinkUserDetails.app_info.validator)] AppUnlinkUserType.description.validator = bv.String() -AppUnlinkUserType._all_field_names_ = set(['description']) -AppUnlinkUserType._all_fields_ = [('description', AppUnlinkUserType.description.validator)] +AppUnlinkUserType._all_field_names_ = set(["description"]) +AppUnlinkUserType._all_fields_ = [("description", AppUnlinkUserType.description.validator)] AppleLoginChangePolicyDetails.new_value.validator = AppleLoginPolicy_validator AppleLoginChangePolicyDetails.previous_value.validator = bv.Nullable(AppleLoginPolicy_validator) -AppleLoginChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +AppleLoginChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) AppleLoginChangePolicyDetails._all_fields_ = [ - ('new_value', AppleLoginChangePolicyDetails.new_value.validator), - ('previous_value', AppleLoginChangePolicyDetails.previous_value.validator), + ("new_value", AppleLoginChangePolicyDetails.new_value.validator), + ("previous_value", AppleLoginChangePolicyDetails.previous_value.validator), ] AppleLoginChangePolicyType.description.validator = bv.String() -AppleLoginChangePolicyType._all_field_names_ = set(['description']) -AppleLoginChangePolicyType._all_fields_ = [('description', AppleLoginChangePolicyType.description.validator)] +AppleLoginChangePolicyType._all_field_names_ = set(["description"]) +AppleLoginChangePolicyType._all_fields_ = [ + ("description", AppleLoginChangePolicyType.description.validator) +] AppleLoginPolicy._default_validator = bv.Void() AppleLoginPolicy._disabled_validator = bv.Void() AppleLoginPolicy._enabled_validator = bv.Void() AppleLoginPolicy._other_validator = bv.Void() AppleLoginPolicy._tagmap = { - 'default': AppleLoginPolicy._default_validator, - 'disabled': AppleLoginPolicy._disabled_validator, - 'enabled': AppleLoginPolicy._enabled_validator, - 'other': AppleLoginPolicy._other_validator, + "default": AppleLoginPolicy._default_validator, + "disabled": AppleLoginPolicy._disabled_validator, + "enabled": AppleLoginPolicy._enabled_validator, + "other": AppleLoginPolicy._other_validator, } -AppleLoginPolicy.default = AppleLoginPolicy('default') -AppleLoginPolicy.disabled = AppleLoginPolicy('disabled') -AppleLoginPolicy.enabled = AppleLoginPolicy('enabled') -AppleLoginPolicy.other = AppleLoginPolicy('other') +AppleLoginPolicy.default = AppleLoginPolicy("default") +AppleLoginPolicy.disabled = AppleLoginPolicy("disabled") +AppleLoginPolicy.enabled = AppleLoginPolicy("enabled") +AppleLoginPolicy.other = AppleLoginPolicy("other") ApplyNamingConventionDetails._all_field_names_ = set([]) ApplyNamingConventionDetails._all_fields_ = [] ApplyNamingConventionType.description.validator = bv.String() -ApplyNamingConventionType._all_field_names_ = set(['description']) -ApplyNamingConventionType._all_fields_ = [('description', ApplyNamingConventionType.description.validator)] +ApplyNamingConventionType._all_field_names_ = set(["description"]) +ApplyNamingConventionType._all_fields_ = [ + ("description", ApplyNamingConventionType.description.validator) +] AssetLogInfo._file_validator = FileLogInfo_validator AssetLogInfo._folder_validator = FolderLogInfo_validator @@ -94611,279 +98758,323 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AssetLogInfo._showcase_document_validator = ShowcaseDocumentLogInfo_validator AssetLogInfo._other_validator = bv.Void() AssetLogInfo._tagmap = { - 'file': AssetLogInfo._file_validator, - 'folder': AssetLogInfo._folder_validator, - 'paper_document': AssetLogInfo._paper_document_validator, - 'paper_folder': AssetLogInfo._paper_folder_validator, - 'showcase_document': AssetLogInfo._showcase_document_validator, - 'other': AssetLogInfo._other_validator, + "file": AssetLogInfo._file_validator, + "folder": AssetLogInfo._folder_validator, + "paper_document": AssetLogInfo._paper_document_validator, + "paper_folder": AssetLogInfo._paper_folder_validator, + "showcase_document": AssetLogInfo._showcase_document_validator, + "other": AssetLogInfo._other_validator, } -AssetLogInfo.other = AssetLogInfo('other') +AssetLogInfo.other = AssetLogInfo("other") BackupAdminInvitationSentDetails._all_field_names_ = set([]) BackupAdminInvitationSentDetails._all_fields_ = [] BackupAdminInvitationSentType.description.validator = bv.String() -BackupAdminInvitationSentType._all_field_names_ = set(['description']) -BackupAdminInvitationSentType._all_fields_ = [('description', BackupAdminInvitationSentType.description.validator)] +BackupAdminInvitationSentType._all_field_names_ = set(["description"]) +BackupAdminInvitationSentType._all_fields_ = [ + ("description", BackupAdminInvitationSentType.description.validator) +] BackupInvitationOpenedDetails._all_field_names_ = set([]) BackupInvitationOpenedDetails._all_fields_ = [] BackupInvitationOpenedType.description.validator = bv.String() -BackupInvitationOpenedType._all_field_names_ = set(['description']) -BackupInvitationOpenedType._all_fields_ = [('description', BackupInvitationOpenedType.description.validator)] +BackupInvitationOpenedType._all_field_names_ = set(["description"]) +BackupInvitationOpenedType._all_fields_ = [ + ("description", BackupInvitationOpenedType.description.validator) +] BackupStatus._disabled_validator = bv.Void() BackupStatus._enabled_validator = bv.Void() BackupStatus._other_validator = bv.Void() BackupStatus._tagmap = { - 'disabled': BackupStatus._disabled_validator, - 'enabled': BackupStatus._enabled_validator, - 'other': BackupStatus._other_validator, + "disabled": BackupStatus._disabled_validator, + "enabled": BackupStatus._enabled_validator, + "other": BackupStatus._other_validator, } -BackupStatus.disabled = BackupStatus('disabled') -BackupStatus.enabled = BackupStatus('enabled') -BackupStatus.other = BackupStatus('other') +BackupStatus.disabled = BackupStatus("disabled") +BackupStatus.enabled = BackupStatus("enabled") +BackupStatus.other = BackupStatus("other") BinderAddPageDetails.event_uuid.validator = bv.String() BinderAddPageDetails.doc_title.validator = bv.String() BinderAddPageDetails.binder_item_name.validator = bv.String() -BinderAddPageDetails._all_field_names_ = set([ - 'event_uuid', - 'doc_title', - 'binder_item_name', -]) +BinderAddPageDetails._all_field_names_ = set( + [ + "event_uuid", + "doc_title", + "binder_item_name", + ] +) BinderAddPageDetails._all_fields_ = [ - ('event_uuid', BinderAddPageDetails.event_uuid.validator), - ('doc_title', BinderAddPageDetails.doc_title.validator), - ('binder_item_name', BinderAddPageDetails.binder_item_name.validator), + ("event_uuid", BinderAddPageDetails.event_uuid.validator), + ("doc_title", BinderAddPageDetails.doc_title.validator), + ("binder_item_name", BinderAddPageDetails.binder_item_name.validator), ] BinderAddPageType.description.validator = bv.String() -BinderAddPageType._all_field_names_ = set(['description']) -BinderAddPageType._all_fields_ = [('description', BinderAddPageType.description.validator)] +BinderAddPageType._all_field_names_ = set(["description"]) +BinderAddPageType._all_fields_ = [("description", BinderAddPageType.description.validator)] BinderAddSectionDetails.event_uuid.validator = bv.String() BinderAddSectionDetails.doc_title.validator = bv.String() BinderAddSectionDetails.binder_item_name.validator = bv.String() -BinderAddSectionDetails._all_field_names_ = set([ - 'event_uuid', - 'doc_title', - 'binder_item_name', -]) +BinderAddSectionDetails._all_field_names_ = set( + [ + "event_uuid", + "doc_title", + "binder_item_name", + ] +) BinderAddSectionDetails._all_fields_ = [ - ('event_uuid', BinderAddSectionDetails.event_uuid.validator), - ('doc_title', BinderAddSectionDetails.doc_title.validator), - ('binder_item_name', BinderAddSectionDetails.binder_item_name.validator), + ("event_uuid", BinderAddSectionDetails.event_uuid.validator), + ("doc_title", BinderAddSectionDetails.doc_title.validator), + ("binder_item_name", BinderAddSectionDetails.binder_item_name.validator), ] BinderAddSectionType.description.validator = bv.String() -BinderAddSectionType._all_field_names_ = set(['description']) -BinderAddSectionType._all_fields_ = [('description', BinderAddSectionType.description.validator)] +BinderAddSectionType._all_field_names_ = set(["description"]) +BinderAddSectionType._all_fields_ = [("description", BinderAddSectionType.description.validator)] BinderRemovePageDetails.event_uuid.validator = bv.String() BinderRemovePageDetails.doc_title.validator = bv.String() BinderRemovePageDetails.binder_item_name.validator = bv.String() -BinderRemovePageDetails._all_field_names_ = set([ - 'event_uuid', - 'doc_title', - 'binder_item_name', -]) +BinderRemovePageDetails._all_field_names_ = set( + [ + "event_uuid", + "doc_title", + "binder_item_name", + ] +) BinderRemovePageDetails._all_fields_ = [ - ('event_uuid', BinderRemovePageDetails.event_uuid.validator), - ('doc_title', BinderRemovePageDetails.doc_title.validator), - ('binder_item_name', BinderRemovePageDetails.binder_item_name.validator), + ("event_uuid", BinderRemovePageDetails.event_uuid.validator), + ("doc_title", BinderRemovePageDetails.doc_title.validator), + ("binder_item_name", BinderRemovePageDetails.binder_item_name.validator), ] BinderRemovePageType.description.validator = bv.String() -BinderRemovePageType._all_field_names_ = set(['description']) -BinderRemovePageType._all_fields_ = [('description', BinderRemovePageType.description.validator)] +BinderRemovePageType._all_field_names_ = set(["description"]) +BinderRemovePageType._all_fields_ = [("description", BinderRemovePageType.description.validator)] BinderRemoveSectionDetails.event_uuid.validator = bv.String() BinderRemoveSectionDetails.doc_title.validator = bv.String() BinderRemoveSectionDetails.binder_item_name.validator = bv.String() -BinderRemoveSectionDetails._all_field_names_ = set([ - 'event_uuid', - 'doc_title', - 'binder_item_name', -]) +BinderRemoveSectionDetails._all_field_names_ = set( + [ + "event_uuid", + "doc_title", + "binder_item_name", + ] +) BinderRemoveSectionDetails._all_fields_ = [ - ('event_uuid', BinderRemoveSectionDetails.event_uuid.validator), - ('doc_title', BinderRemoveSectionDetails.doc_title.validator), - ('binder_item_name', BinderRemoveSectionDetails.binder_item_name.validator), + ("event_uuid", BinderRemoveSectionDetails.event_uuid.validator), + ("doc_title", BinderRemoveSectionDetails.doc_title.validator), + ("binder_item_name", BinderRemoveSectionDetails.binder_item_name.validator), ] BinderRemoveSectionType.description.validator = bv.String() -BinderRemoveSectionType._all_field_names_ = set(['description']) -BinderRemoveSectionType._all_fields_ = [('description', BinderRemoveSectionType.description.validator)] +BinderRemoveSectionType._all_field_names_ = set(["description"]) +BinderRemoveSectionType._all_fields_ = [ + ("description", BinderRemoveSectionType.description.validator) +] BinderRenamePageDetails.event_uuid.validator = bv.String() BinderRenamePageDetails.doc_title.validator = bv.String() BinderRenamePageDetails.binder_item_name.validator = bv.String() BinderRenamePageDetails.previous_binder_item_name.validator = bv.Nullable(bv.String()) -BinderRenamePageDetails._all_field_names_ = set([ - 'event_uuid', - 'doc_title', - 'binder_item_name', - 'previous_binder_item_name', -]) +BinderRenamePageDetails._all_field_names_ = set( + [ + "event_uuid", + "doc_title", + "binder_item_name", + "previous_binder_item_name", + ] +) BinderRenamePageDetails._all_fields_ = [ - ('event_uuid', BinderRenamePageDetails.event_uuid.validator), - ('doc_title', BinderRenamePageDetails.doc_title.validator), - ('binder_item_name', BinderRenamePageDetails.binder_item_name.validator), - ('previous_binder_item_name', BinderRenamePageDetails.previous_binder_item_name.validator), + ("event_uuid", BinderRenamePageDetails.event_uuid.validator), + ("doc_title", BinderRenamePageDetails.doc_title.validator), + ("binder_item_name", BinderRenamePageDetails.binder_item_name.validator), + ( + "previous_binder_item_name", + BinderRenamePageDetails.previous_binder_item_name.validator, + ), ] BinderRenamePageType.description.validator = bv.String() -BinderRenamePageType._all_field_names_ = set(['description']) -BinderRenamePageType._all_fields_ = [('description', BinderRenamePageType.description.validator)] +BinderRenamePageType._all_field_names_ = set(["description"]) +BinderRenamePageType._all_fields_ = [("description", BinderRenamePageType.description.validator)] BinderRenameSectionDetails.event_uuid.validator = bv.String() BinderRenameSectionDetails.doc_title.validator = bv.String() BinderRenameSectionDetails.binder_item_name.validator = bv.String() BinderRenameSectionDetails.previous_binder_item_name.validator = bv.Nullable(bv.String()) -BinderRenameSectionDetails._all_field_names_ = set([ - 'event_uuid', - 'doc_title', - 'binder_item_name', - 'previous_binder_item_name', -]) +BinderRenameSectionDetails._all_field_names_ = set( + [ + "event_uuid", + "doc_title", + "binder_item_name", + "previous_binder_item_name", + ] +) BinderRenameSectionDetails._all_fields_ = [ - ('event_uuid', BinderRenameSectionDetails.event_uuid.validator), - ('doc_title', BinderRenameSectionDetails.doc_title.validator), - ('binder_item_name', BinderRenameSectionDetails.binder_item_name.validator), - ('previous_binder_item_name', BinderRenameSectionDetails.previous_binder_item_name.validator), + ("event_uuid", BinderRenameSectionDetails.event_uuid.validator), + ("doc_title", BinderRenameSectionDetails.doc_title.validator), + ("binder_item_name", BinderRenameSectionDetails.binder_item_name.validator), + ( + "previous_binder_item_name", + BinderRenameSectionDetails.previous_binder_item_name.validator, + ), ] BinderRenameSectionType.description.validator = bv.String() -BinderRenameSectionType._all_field_names_ = set(['description']) -BinderRenameSectionType._all_fields_ = [('description', BinderRenameSectionType.description.validator)] +BinderRenameSectionType._all_field_names_ = set(["description"]) +BinderRenameSectionType._all_fields_ = [ + ("description", BinderRenameSectionType.description.validator) +] BinderReorderPageDetails.event_uuid.validator = bv.String() BinderReorderPageDetails.doc_title.validator = bv.String() BinderReorderPageDetails.binder_item_name.validator = bv.String() -BinderReorderPageDetails._all_field_names_ = set([ - 'event_uuid', - 'doc_title', - 'binder_item_name', -]) +BinderReorderPageDetails._all_field_names_ = set( + [ + "event_uuid", + "doc_title", + "binder_item_name", + ] +) BinderReorderPageDetails._all_fields_ = [ - ('event_uuid', BinderReorderPageDetails.event_uuid.validator), - ('doc_title', BinderReorderPageDetails.doc_title.validator), - ('binder_item_name', BinderReorderPageDetails.binder_item_name.validator), + ("event_uuid", BinderReorderPageDetails.event_uuid.validator), + ("doc_title", BinderReorderPageDetails.doc_title.validator), + ("binder_item_name", BinderReorderPageDetails.binder_item_name.validator), ] BinderReorderPageType.description.validator = bv.String() -BinderReorderPageType._all_field_names_ = set(['description']) -BinderReorderPageType._all_fields_ = [('description', BinderReorderPageType.description.validator)] +BinderReorderPageType._all_field_names_ = set(["description"]) +BinderReorderPageType._all_fields_ = [("description", BinderReorderPageType.description.validator)] BinderReorderSectionDetails.event_uuid.validator = bv.String() BinderReorderSectionDetails.doc_title.validator = bv.String() BinderReorderSectionDetails.binder_item_name.validator = bv.String() -BinderReorderSectionDetails._all_field_names_ = set([ - 'event_uuid', - 'doc_title', - 'binder_item_name', -]) +BinderReorderSectionDetails._all_field_names_ = set( + [ + "event_uuid", + "doc_title", + "binder_item_name", + ] +) BinderReorderSectionDetails._all_fields_ = [ - ('event_uuid', BinderReorderSectionDetails.event_uuid.validator), - ('doc_title', BinderReorderSectionDetails.doc_title.validator), - ('binder_item_name', BinderReorderSectionDetails.binder_item_name.validator), + ("event_uuid", BinderReorderSectionDetails.event_uuid.validator), + ("doc_title", BinderReorderSectionDetails.doc_title.validator), + ("binder_item_name", BinderReorderSectionDetails.binder_item_name.validator), ] BinderReorderSectionType.description.validator = bv.String() -BinderReorderSectionType._all_field_names_ = set(['description']) -BinderReorderSectionType._all_fields_ = [('description', BinderReorderSectionType.description.validator)] +BinderReorderSectionType._all_field_names_ = set(["description"]) +BinderReorderSectionType._all_fields_ = [ + ("description", BinderReorderSectionType.description.validator) +] CameraUploadsPolicy._disabled_validator = bv.Void() CameraUploadsPolicy._enabled_validator = bv.Void() CameraUploadsPolicy._other_validator = bv.Void() CameraUploadsPolicy._tagmap = { - 'disabled': CameraUploadsPolicy._disabled_validator, - 'enabled': CameraUploadsPolicy._enabled_validator, - 'other': CameraUploadsPolicy._other_validator, + "disabled": CameraUploadsPolicy._disabled_validator, + "enabled": CameraUploadsPolicy._enabled_validator, + "other": CameraUploadsPolicy._other_validator, } -CameraUploadsPolicy.disabled = CameraUploadsPolicy('disabled') -CameraUploadsPolicy.enabled = CameraUploadsPolicy('enabled') -CameraUploadsPolicy.other = CameraUploadsPolicy('other') +CameraUploadsPolicy.disabled = CameraUploadsPolicy("disabled") +CameraUploadsPolicy.enabled = CameraUploadsPolicy("enabled") +CameraUploadsPolicy.other = CameraUploadsPolicy("other") CameraUploadsPolicyChangedDetails.new_value.validator = CameraUploadsPolicy_validator CameraUploadsPolicyChangedDetails.previous_value.validator = CameraUploadsPolicy_validator -CameraUploadsPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +CameraUploadsPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) CameraUploadsPolicyChangedDetails._all_fields_ = [ - ('new_value', CameraUploadsPolicyChangedDetails.new_value.validator), - ('previous_value', CameraUploadsPolicyChangedDetails.previous_value.validator), + ("new_value", CameraUploadsPolicyChangedDetails.new_value.validator), + ("previous_value", CameraUploadsPolicyChangedDetails.previous_value.validator), ] CameraUploadsPolicyChangedType.description.validator = bv.String() -CameraUploadsPolicyChangedType._all_field_names_ = set(['description']) -CameraUploadsPolicyChangedType._all_fields_ = [('description', CameraUploadsPolicyChangedType.description.validator)] +CameraUploadsPolicyChangedType._all_field_names_ = set(["description"]) +CameraUploadsPolicyChangedType._all_fields_ = [ + ("description", CameraUploadsPolicyChangedType.description.validator) +] CaptureTeamSpacePolicy._disabled_validator = bv.Void() CaptureTeamSpacePolicy._enabled_validator = bv.Void() CaptureTeamSpacePolicy._other_validator = bv.Void() CaptureTeamSpacePolicy._tagmap = { - 'disabled': CaptureTeamSpacePolicy._disabled_validator, - 'enabled': CaptureTeamSpacePolicy._enabled_validator, - 'other': CaptureTeamSpacePolicy._other_validator, + "disabled": CaptureTeamSpacePolicy._disabled_validator, + "enabled": CaptureTeamSpacePolicy._enabled_validator, + "other": CaptureTeamSpacePolicy._other_validator, } -CaptureTeamSpacePolicy.disabled = CaptureTeamSpacePolicy('disabled') -CaptureTeamSpacePolicy.enabled = CaptureTeamSpacePolicy('enabled') -CaptureTeamSpacePolicy.other = CaptureTeamSpacePolicy('other') +CaptureTeamSpacePolicy.disabled = CaptureTeamSpacePolicy("disabled") +CaptureTeamSpacePolicy.enabled = CaptureTeamSpacePolicy("enabled") +CaptureTeamSpacePolicy.other = CaptureTeamSpacePolicy("other") CaptureTeamSpacePolicyChangedDetails.new_value.validator = CaptureTeamSpacePolicy_validator CaptureTeamSpacePolicyChangedDetails.previous_value.validator = CaptureTeamSpacePolicy_validator -CaptureTeamSpacePolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +CaptureTeamSpacePolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) CaptureTeamSpacePolicyChangedDetails._all_fields_ = [ - ('new_value', CaptureTeamSpacePolicyChangedDetails.new_value.validator), - ('previous_value', CaptureTeamSpacePolicyChangedDetails.previous_value.validator), + ("new_value", CaptureTeamSpacePolicyChangedDetails.new_value.validator), + ("previous_value", CaptureTeamSpacePolicyChangedDetails.previous_value.validator), ] CaptureTeamSpacePolicyChangedType.description.validator = bv.String() -CaptureTeamSpacePolicyChangedType._all_field_names_ = set(['description']) -CaptureTeamSpacePolicyChangedType._all_fields_ = [('description', CaptureTeamSpacePolicyChangedType.description.validator)] +CaptureTeamSpacePolicyChangedType._all_field_names_ = set(["description"]) +CaptureTeamSpacePolicyChangedType._all_fields_ = [ + ("description", CaptureTeamSpacePolicyChangedType.description.validator) +] CaptureTranscriptPolicy._default_validator = bv.Void() CaptureTranscriptPolicy._disabled_validator = bv.Void() CaptureTranscriptPolicy._enabled_validator = bv.Void() CaptureTranscriptPolicy._other_validator = bv.Void() CaptureTranscriptPolicy._tagmap = { - 'default': CaptureTranscriptPolicy._default_validator, - 'disabled': CaptureTranscriptPolicy._disabled_validator, - 'enabled': CaptureTranscriptPolicy._enabled_validator, - 'other': CaptureTranscriptPolicy._other_validator, + "default": CaptureTranscriptPolicy._default_validator, + "disabled": CaptureTranscriptPolicy._disabled_validator, + "enabled": CaptureTranscriptPolicy._enabled_validator, + "other": CaptureTranscriptPolicy._other_validator, } -CaptureTranscriptPolicy.default = CaptureTranscriptPolicy('default') -CaptureTranscriptPolicy.disabled = CaptureTranscriptPolicy('disabled') -CaptureTranscriptPolicy.enabled = CaptureTranscriptPolicy('enabled') -CaptureTranscriptPolicy.other = CaptureTranscriptPolicy('other') +CaptureTranscriptPolicy.default = CaptureTranscriptPolicy("default") +CaptureTranscriptPolicy.disabled = CaptureTranscriptPolicy("disabled") +CaptureTranscriptPolicy.enabled = CaptureTranscriptPolicy("enabled") +CaptureTranscriptPolicy.other = CaptureTranscriptPolicy("other") CaptureTranscriptPolicyChangedDetails.new_value.validator = CaptureTranscriptPolicy_validator CaptureTranscriptPolicyChangedDetails.previous_value.validator = CaptureTranscriptPolicy_validator -CaptureTranscriptPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +CaptureTranscriptPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) CaptureTranscriptPolicyChangedDetails._all_fields_ = [ - ('new_value', CaptureTranscriptPolicyChangedDetails.new_value.validator), - ('previous_value', CaptureTranscriptPolicyChangedDetails.previous_value.validator), + ("new_value", CaptureTranscriptPolicyChangedDetails.new_value.validator), + ("previous_value", CaptureTranscriptPolicyChangedDetails.previous_value.validator), ] CaptureTranscriptPolicyChangedType.description.validator = bv.String() -CaptureTranscriptPolicyChangedType._all_field_names_ = set(['description']) -CaptureTranscriptPolicyChangedType._all_fields_ = [('description', CaptureTranscriptPolicyChangedType.description.validator)] +CaptureTranscriptPolicyChangedType._all_field_names_ = set(["description"]) +CaptureTranscriptPolicyChangedType._all_fields_ = [ + ("description", CaptureTranscriptPolicyChangedType.description.validator) +] Certificate.subject.validator = bv.String() Certificate.issuer.validator = bv.String() @@ -94892,109 +99083,146 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Certificate.serial_number.validator = bv.String() Certificate.sha1_fingerprint.validator = bv.String() Certificate.common_name.validator = bv.Nullable(bv.String()) -Certificate._all_field_names_ = set([ - 'subject', - 'issuer', - 'issue_date', - 'expiration_date', - 'serial_number', - 'sha1_fingerprint', - 'common_name', -]) +Certificate._all_field_names_ = set( + [ + "subject", + "issuer", + "issue_date", + "expiration_date", + "serial_number", + "sha1_fingerprint", + "common_name", + ] +) Certificate._all_fields_ = [ - ('subject', Certificate.subject.validator), - ('issuer', Certificate.issuer.validator), - ('issue_date', Certificate.issue_date.validator), - ('expiration_date', Certificate.expiration_date.validator), - ('serial_number', Certificate.serial_number.validator), - ('sha1_fingerprint', Certificate.sha1_fingerprint.validator), - ('common_name', Certificate.common_name.validator), + ("subject", Certificate.subject.validator), + ("issuer", Certificate.issuer.validator), + ("issue_date", Certificate.issue_date.validator), + ("expiration_date", Certificate.expiration_date.validator), + ("serial_number", Certificate.serial_number.validator), + ("sha1_fingerprint", Certificate.sha1_fingerprint.validator), + ("common_name", Certificate.common_name.validator), ] ChangeLinkExpirationPolicy._allowed_validator = bv.Void() ChangeLinkExpirationPolicy._not_allowed_validator = bv.Void() ChangeLinkExpirationPolicy._other_validator = bv.Void() ChangeLinkExpirationPolicy._tagmap = { - 'allowed': ChangeLinkExpirationPolicy._allowed_validator, - 'not_allowed': ChangeLinkExpirationPolicy._not_allowed_validator, - 'other': ChangeLinkExpirationPolicy._other_validator, + "allowed": ChangeLinkExpirationPolicy._allowed_validator, + "not_allowed": ChangeLinkExpirationPolicy._not_allowed_validator, + "other": ChangeLinkExpirationPolicy._other_validator, } -ChangeLinkExpirationPolicy.allowed = ChangeLinkExpirationPolicy('allowed') -ChangeLinkExpirationPolicy.not_allowed = ChangeLinkExpirationPolicy('not_allowed') -ChangeLinkExpirationPolicy.other = ChangeLinkExpirationPolicy('other') +ChangeLinkExpirationPolicy.allowed = ChangeLinkExpirationPolicy("allowed") +ChangeLinkExpirationPolicy.not_allowed = ChangeLinkExpirationPolicy("not_allowed") +ChangeLinkExpirationPolicy.other = ChangeLinkExpirationPolicy("other") ChangedEnterpriseAdminRoleDetails.previous_value.validator = FedAdminRole_validator ChangedEnterpriseAdminRoleDetails.new_value.validator = FedAdminRole_validator ChangedEnterpriseAdminRoleDetails.team_name.validator = bv.String() -ChangedEnterpriseAdminRoleDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', - 'team_name', -]) +ChangedEnterpriseAdminRoleDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + "team_name", + ] +) ChangedEnterpriseAdminRoleDetails._all_fields_ = [ - ('previous_value', ChangedEnterpriseAdminRoleDetails.previous_value.validator), - ('new_value', ChangedEnterpriseAdminRoleDetails.new_value.validator), - ('team_name', ChangedEnterpriseAdminRoleDetails.team_name.validator), + ("previous_value", ChangedEnterpriseAdminRoleDetails.previous_value.validator), + ("new_value", ChangedEnterpriseAdminRoleDetails.new_value.validator), + ("team_name", ChangedEnterpriseAdminRoleDetails.team_name.validator), ] ChangedEnterpriseAdminRoleType.description.validator = bv.String() -ChangedEnterpriseAdminRoleType._all_field_names_ = set(['description']) -ChangedEnterpriseAdminRoleType._all_fields_ = [('description', ChangedEnterpriseAdminRoleType.description.validator)] +ChangedEnterpriseAdminRoleType._all_field_names_ = set(["description"]) +ChangedEnterpriseAdminRoleType._all_fields_ = [ + ("description", ChangedEnterpriseAdminRoleType.description.validator) +] ChangedEnterpriseConnectedTeamStatusDetails.action.validator = FedHandshakeAction_validator -ChangedEnterpriseConnectedTeamStatusDetails.additional_info.validator = FederationStatusChangeAdditionalInfo_validator -ChangedEnterpriseConnectedTeamStatusDetails.previous_value.validator = TrustedTeamsRequestState_validator +ChangedEnterpriseConnectedTeamStatusDetails.additional_info.validator = ( + FederationStatusChangeAdditionalInfo_validator +) +ChangedEnterpriseConnectedTeamStatusDetails.previous_value.validator = ( + TrustedTeamsRequestState_validator +) ChangedEnterpriseConnectedTeamStatusDetails.new_value.validator = TrustedTeamsRequestState_validator -ChangedEnterpriseConnectedTeamStatusDetails._all_field_names_ = set([ - 'action', - 'additional_info', - 'previous_value', - 'new_value', -]) +ChangedEnterpriseConnectedTeamStatusDetails._all_field_names_ = set( + [ + "action", + "additional_info", + "previous_value", + "new_value", + ] +) ChangedEnterpriseConnectedTeamStatusDetails._all_fields_ = [ - ('action', ChangedEnterpriseConnectedTeamStatusDetails.action.validator), - ('additional_info', ChangedEnterpriseConnectedTeamStatusDetails.additional_info.validator), - ('previous_value', ChangedEnterpriseConnectedTeamStatusDetails.previous_value.validator), - ('new_value', ChangedEnterpriseConnectedTeamStatusDetails.new_value.validator), + ("action", ChangedEnterpriseConnectedTeamStatusDetails.action.validator), + ( + "additional_info", + ChangedEnterpriseConnectedTeamStatusDetails.additional_info.validator, + ), + ( + "previous_value", + ChangedEnterpriseConnectedTeamStatusDetails.previous_value.validator, + ), + ("new_value", ChangedEnterpriseConnectedTeamStatusDetails.new_value.validator), ] ChangedEnterpriseConnectedTeamStatusType.description.validator = bv.String() -ChangedEnterpriseConnectedTeamStatusType._all_field_names_ = set(['description']) -ChangedEnterpriseConnectedTeamStatusType._all_fields_ = [('description', ChangedEnterpriseConnectedTeamStatusType.description.validator)] +ChangedEnterpriseConnectedTeamStatusType._all_field_names_ = set(["description"]) +ChangedEnterpriseConnectedTeamStatusType._all_fields_ = [ + ("description", ChangedEnterpriseConnectedTeamStatusType.description.validator) +] -ClassificationChangePolicyDetails.previous_value.validator = ClassificationPolicyEnumWrapper_validator +ClassificationChangePolicyDetails.previous_value.validator = ( + ClassificationPolicyEnumWrapper_validator +) ClassificationChangePolicyDetails.new_value.validator = ClassificationPolicyEnumWrapper_validator ClassificationChangePolicyDetails.classification_type.validator = ClassificationType_validator -ClassificationChangePolicyDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', - 'classification_type', -]) +ClassificationChangePolicyDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + "classification_type", + ] +) ClassificationChangePolicyDetails._all_fields_ = [ - ('previous_value', ClassificationChangePolicyDetails.previous_value.validator), - ('new_value', ClassificationChangePolicyDetails.new_value.validator), - ('classification_type', ClassificationChangePolicyDetails.classification_type.validator), + ("previous_value", ClassificationChangePolicyDetails.previous_value.validator), + ("new_value", ClassificationChangePolicyDetails.new_value.validator), + ( + "classification_type", + ClassificationChangePolicyDetails.classification_type.validator, + ), ] ClassificationChangePolicyType.description.validator = bv.String() -ClassificationChangePolicyType._all_field_names_ = set(['description']) -ClassificationChangePolicyType._all_fields_ = [('description', ClassificationChangePolicyType.description.validator)] +ClassificationChangePolicyType._all_field_names_ = set(["description"]) +ClassificationChangePolicyType._all_fields_ = [ + ("description", ClassificationChangePolicyType.description.validator) +] ClassificationCreateReportDetails._all_field_names_ = set([]) ClassificationCreateReportDetails._all_fields_ = [] -ClassificationCreateReportFailDetails.failure_reason.validator = team.TeamReportFailureReason_validator -ClassificationCreateReportFailDetails._all_field_names_ = set(['failure_reason']) -ClassificationCreateReportFailDetails._all_fields_ = [('failure_reason', ClassificationCreateReportFailDetails.failure_reason.validator)] +ClassificationCreateReportFailDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +ClassificationCreateReportFailDetails._all_field_names_ = set(["failure_reason"]) +ClassificationCreateReportFailDetails._all_fields_ = [ + ("failure_reason", ClassificationCreateReportFailDetails.failure_reason.validator) +] ClassificationCreateReportFailType.description.validator = bv.String() -ClassificationCreateReportFailType._all_field_names_ = set(['description']) -ClassificationCreateReportFailType._all_fields_ = [('description', ClassificationCreateReportFailType.description.validator)] +ClassificationCreateReportFailType._all_field_names_ = set(["description"]) +ClassificationCreateReportFailType._all_fields_ = [ + ("description", ClassificationCreateReportFailType.description.validator) +] ClassificationCreateReportType.description.validator = bv.String() -ClassificationCreateReportType._all_field_names_ = set(['description']) -ClassificationCreateReportType._all_fields_ = [('description', ClassificationCreateReportType.description.validator)] +ClassificationCreateReportType._all_field_names_ = set(["description"]) +ClassificationCreateReportType._all_fields_ = [ + ("description", ClassificationCreateReportType.description.validator) +] ClassificationPolicyEnumWrapper._disabled_validator = bv.Void() ClassificationPolicyEnumWrapper._enabled_validator = bv.Void() @@ -95002,139 +99230,175 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ClassificationPolicyEnumWrapper._team_folders_validator = bv.Void() ClassificationPolicyEnumWrapper._other_validator = bv.Void() ClassificationPolicyEnumWrapper._tagmap = { - 'disabled': ClassificationPolicyEnumWrapper._disabled_validator, - 'enabled': ClassificationPolicyEnumWrapper._enabled_validator, - 'member_and_team_folders': ClassificationPolicyEnumWrapper._member_and_team_folders_validator, - 'team_folders': ClassificationPolicyEnumWrapper._team_folders_validator, - 'other': ClassificationPolicyEnumWrapper._other_validator, + "disabled": ClassificationPolicyEnumWrapper._disabled_validator, + "enabled": ClassificationPolicyEnumWrapper._enabled_validator, + "member_and_team_folders": ClassificationPolicyEnumWrapper._member_and_team_folders_validator, + "team_folders": ClassificationPolicyEnumWrapper._team_folders_validator, + "other": ClassificationPolicyEnumWrapper._other_validator, } -ClassificationPolicyEnumWrapper.disabled = ClassificationPolicyEnumWrapper('disabled') -ClassificationPolicyEnumWrapper.enabled = ClassificationPolicyEnumWrapper('enabled') -ClassificationPolicyEnumWrapper.member_and_team_folders = ClassificationPolicyEnumWrapper('member_and_team_folders') -ClassificationPolicyEnumWrapper.team_folders = ClassificationPolicyEnumWrapper('team_folders') -ClassificationPolicyEnumWrapper.other = ClassificationPolicyEnumWrapper('other') +ClassificationPolicyEnumWrapper.disabled = ClassificationPolicyEnumWrapper("disabled") +ClassificationPolicyEnumWrapper.enabled = ClassificationPolicyEnumWrapper("enabled") +ClassificationPolicyEnumWrapper.member_and_team_folders = ClassificationPolicyEnumWrapper( + "member_and_team_folders" +) +ClassificationPolicyEnumWrapper.team_folders = ClassificationPolicyEnumWrapper("team_folders") +ClassificationPolicyEnumWrapper.other = ClassificationPolicyEnumWrapper("other") ClassificationType._personal_information_validator = bv.Void() ClassificationType._pii_validator = bv.Void() ClassificationType._other_validator = bv.Void() ClassificationType._tagmap = { - 'personal_information': ClassificationType._personal_information_validator, - 'pii': ClassificationType._pii_validator, - 'other': ClassificationType._other_validator, + "personal_information": ClassificationType._personal_information_validator, + "pii": ClassificationType._pii_validator, + "other": ClassificationType._other_validator, } -ClassificationType.personal_information = ClassificationType('personal_information') -ClassificationType.pii = ClassificationType('pii') -ClassificationType.other = ClassificationType('other') +ClassificationType.personal_information = ClassificationType("personal_information") +ClassificationType.pii = ClassificationType("pii") +ClassificationType.other = ClassificationType("other") CollectionShareDetails.album_name.validator = bv.String() -CollectionShareDetails._all_field_names_ = set(['album_name']) -CollectionShareDetails._all_fields_ = [('album_name', CollectionShareDetails.album_name.validator)] +CollectionShareDetails._all_field_names_ = set(["album_name"]) +CollectionShareDetails._all_fields_ = [("album_name", CollectionShareDetails.album_name.validator)] CollectionShareType.description.validator = bv.String() -CollectionShareType._all_field_names_ = set(['description']) -CollectionShareType._all_fields_ = [('description', CollectionShareType.description.validator)] +CollectionShareType._all_field_names_ = set(["description"]) +CollectionShareType._all_fields_ = [("description", CollectionShareType.description.validator)] ComputerBackupPolicy._default_validator = bv.Void() ComputerBackupPolicy._disabled_validator = bv.Void() ComputerBackupPolicy._enabled_validator = bv.Void() ComputerBackupPolicy._other_validator = bv.Void() ComputerBackupPolicy._tagmap = { - 'default': ComputerBackupPolicy._default_validator, - 'disabled': ComputerBackupPolicy._disabled_validator, - 'enabled': ComputerBackupPolicy._enabled_validator, - 'other': ComputerBackupPolicy._other_validator, + "default": ComputerBackupPolicy._default_validator, + "disabled": ComputerBackupPolicy._disabled_validator, + "enabled": ComputerBackupPolicy._enabled_validator, + "other": ComputerBackupPolicy._other_validator, } -ComputerBackupPolicy.default = ComputerBackupPolicy('default') -ComputerBackupPolicy.disabled = ComputerBackupPolicy('disabled') -ComputerBackupPolicy.enabled = ComputerBackupPolicy('enabled') -ComputerBackupPolicy.other = ComputerBackupPolicy('other') +ComputerBackupPolicy.default = ComputerBackupPolicy("default") +ComputerBackupPolicy.disabled = ComputerBackupPolicy("disabled") +ComputerBackupPolicy.enabled = ComputerBackupPolicy("enabled") +ComputerBackupPolicy.other = ComputerBackupPolicy("other") ComputerBackupPolicyChangedDetails.new_value.validator = ComputerBackupPolicy_validator ComputerBackupPolicyChangedDetails.previous_value.validator = ComputerBackupPolicy_validator -ComputerBackupPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ComputerBackupPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ComputerBackupPolicyChangedDetails._all_fields_ = [ - ('new_value', ComputerBackupPolicyChangedDetails.new_value.validator), - ('previous_value', ComputerBackupPolicyChangedDetails.previous_value.validator), + ("new_value", ComputerBackupPolicyChangedDetails.new_value.validator), + ("previous_value", ComputerBackupPolicyChangedDetails.previous_value.validator), ] ComputerBackupPolicyChangedType.description.validator = bv.String() -ComputerBackupPolicyChangedType._all_field_names_ = set(['description']) -ComputerBackupPolicyChangedType._all_fields_ = [('description', ComputerBackupPolicyChangedType.description.validator)] +ComputerBackupPolicyChangedType._all_field_names_ = set(["description"]) +ComputerBackupPolicyChangedType._all_fields_ = [ + ("description", ComputerBackupPolicyChangedType.description.validator) +] ConnectedTeamName.team.validator = bv.String() -ConnectedTeamName._all_field_names_ = set(['team']) -ConnectedTeamName._all_fields_ = [('team', ConnectedTeamName.team.validator)] +ConnectedTeamName._all_field_names_ = set(["team"]) +ConnectedTeamName._all_fields_ = [("team", ConnectedTeamName.team.validator)] ContentAdministrationPolicyChangedDetails.new_value.validator = bv.String() ContentAdministrationPolicyChangedDetails.previous_value.validator = bv.String() -ContentAdministrationPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ContentAdministrationPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ContentAdministrationPolicyChangedDetails._all_fields_ = [ - ('new_value', ContentAdministrationPolicyChangedDetails.new_value.validator), - ('previous_value', ContentAdministrationPolicyChangedDetails.previous_value.validator), + ("new_value", ContentAdministrationPolicyChangedDetails.new_value.validator), + ( + "previous_value", + ContentAdministrationPolicyChangedDetails.previous_value.validator, + ), ] ContentAdministrationPolicyChangedType.description.validator = bv.String() -ContentAdministrationPolicyChangedType._all_field_names_ = set(['description']) -ContentAdministrationPolicyChangedType._all_fields_ = [('description', ContentAdministrationPolicyChangedType.description.validator)] - -ContentDeletionProtectionChangePolicyDetails.new_value.validator = ContentDeletionProtectionPolicy_validator -ContentDeletionProtectionChangePolicyDetails.new_threshold_bytes.validator = bv.Nullable(bv.UInt64()) -ContentDeletionProtectionChangePolicyDetails.previous_value.validator = bv.Nullable(ContentDeletionProtectionPolicy_validator) -ContentDeletionProtectionChangePolicyDetails.previous_threshold_bytes.validator = bv.Nullable(bv.UInt64()) -ContentDeletionProtectionChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'new_threshold_bytes', - 'previous_value', - 'previous_threshold_bytes', -]) +ContentAdministrationPolicyChangedType._all_field_names_ = set(["description"]) +ContentAdministrationPolicyChangedType._all_fields_ = [ + ("description", ContentAdministrationPolicyChangedType.description.validator) +] + +ContentDeletionProtectionChangePolicyDetails.new_value.validator = ( + ContentDeletionProtectionPolicy_validator +) +ContentDeletionProtectionChangePolicyDetails.new_threshold_bytes.validator = bv.Nullable( + bv.UInt64() +) +ContentDeletionProtectionChangePolicyDetails.previous_value.validator = bv.Nullable( + ContentDeletionProtectionPolicy_validator +) +ContentDeletionProtectionChangePolicyDetails.previous_threshold_bytes.validator = bv.Nullable( + bv.UInt64() +) +ContentDeletionProtectionChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "new_threshold_bytes", + "previous_value", + "previous_threshold_bytes", + ] +) ContentDeletionProtectionChangePolicyDetails._all_fields_ = [ - ('new_value', ContentDeletionProtectionChangePolicyDetails.new_value.validator), - ('new_threshold_bytes', ContentDeletionProtectionChangePolicyDetails.new_threshold_bytes.validator), - ('previous_value', ContentDeletionProtectionChangePolicyDetails.previous_value.validator), - ('previous_threshold_bytes', ContentDeletionProtectionChangePolicyDetails.previous_threshold_bytes.validator), + ("new_value", ContentDeletionProtectionChangePolicyDetails.new_value.validator), + ( + "new_threshold_bytes", + ContentDeletionProtectionChangePolicyDetails.new_threshold_bytes.validator, + ), + ( + "previous_value", + ContentDeletionProtectionChangePolicyDetails.previous_value.validator, + ), + ( + "previous_threshold_bytes", + ContentDeletionProtectionChangePolicyDetails.previous_threshold_bytes.validator, + ), ] ContentDeletionProtectionChangePolicyType.description.validator = bv.String() -ContentDeletionProtectionChangePolicyType._all_field_names_ = set(['description']) -ContentDeletionProtectionChangePolicyType._all_fields_ = [('description', ContentDeletionProtectionChangePolicyType.description.validator)] +ContentDeletionProtectionChangePolicyType._all_field_names_ = set(["description"]) +ContentDeletionProtectionChangePolicyType._all_fields_ = [ + ("description", ContentDeletionProtectionChangePolicyType.description.validator) +] ContentDeletionProtectionPolicy._off_validator = bv.Void() ContentDeletionProtectionPolicy._on_above_threshold_validator = bv.Void() ContentDeletionProtectionPolicy._on_all_files_validator = bv.Void() ContentDeletionProtectionPolicy._other_validator = bv.Void() ContentDeletionProtectionPolicy._tagmap = { - 'off': ContentDeletionProtectionPolicy._off_validator, - 'on_above_threshold': ContentDeletionProtectionPolicy._on_above_threshold_validator, - 'on_all_files': ContentDeletionProtectionPolicy._on_all_files_validator, - 'other': ContentDeletionProtectionPolicy._other_validator, + "off": ContentDeletionProtectionPolicy._off_validator, + "on_above_threshold": ContentDeletionProtectionPolicy._on_above_threshold_validator, + "on_all_files": ContentDeletionProtectionPolicy._on_all_files_validator, + "other": ContentDeletionProtectionPolicy._other_validator, } -ContentDeletionProtectionPolicy.off = ContentDeletionProtectionPolicy('off') -ContentDeletionProtectionPolicy.on_above_threshold = ContentDeletionProtectionPolicy('on_above_threshold') -ContentDeletionProtectionPolicy.on_all_files = ContentDeletionProtectionPolicy('on_all_files') -ContentDeletionProtectionPolicy.other = ContentDeletionProtectionPolicy('other') +ContentDeletionProtectionPolicy.off = ContentDeletionProtectionPolicy("off") +ContentDeletionProtectionPolicy.on_above_threshold = ContentDeletionProtectionPolicy( + "on_above_threshold" +) +ContentDeletionProtectionPolicy.on_all_files = ContentDeletionProtectionPolicy("on_all_files") +ContentDeletionProtectionPolicy.other = ContentDeletionProtectionPolicy("other") ContentPermanentDeletePolicy._disabled_validator = bv.Void() ContentPermanentDeletePolicy._enabled_validator = bv.Void() ContentPermanentDeletePolicy._other_validator = bv.Void() ContentPermanentDeletePolicy._tagmap = { - 'disabled': ContentPermanentDeletePolicy._disabled_validator, - 'enabled': ContentPermanentDeletePolicy._enabled_validator, - 'other': ContentPermanentDeletePolicy._other_validator, + "disabled": ContentPermanentDeletePolicy._disabled_validator, + "enabled": ContentPermanentDeletePolicy._enabled_validator, + "other": ContentPermanentDeletePolicy._other_validator, } -ContentPermanentDeletePolicy.disabled = ContentPermanentDeletePolicy('disabled') -ContentPermanentDeletePolicy.enabled = ContentPermanentDeletePolicy('enabled') -ContentPermanentDeletePolicy.other = ContentPermanentDeletePolicy('other') +ContentPermanentDeletePolicy.disabled = ContentPermanentDeletePolicy("disabled") +ContentPermanentDeletePolicy.enabled = ContentPermanentDeletePolicy("enabled") +ContentPermanentDeletePolicy.other = ContentPermanentDeletePolicy("other") ContextLogInfo._anonymous_validator = bv.Void() ContextLogInfo._non_team_member_validator = NonTeamMemberLogInfo_validator @@ -95144,344 +99408,428 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ContextLogInfo._trusted_non_team_member_validator = TrustedNonTeamMemberLogInfo_validator ContextLogInfo._other_validator = bv.Void() ContextLogInfo._tagmap = { - 'anonymous': ContextLogInfo._anonymous_validator, - 'non_team_member': ContextLogInfo._non_team_member_validator, - 'organization_team': ContextLogInfo._organization_team_validator, - 'team': ContextLogInfo._team_validator, - 'team_member': ContextLogInfo._team_member_validator, - 'trusted_non_team_member': ContextLogInfo._trusted_non_team_member_validator, - 'other': ContextLogInfo._other_validator, + "anonymous": ContextLogInfo._anonymous_validator, + "non_team_member": ContextLogInfo._non_team_member_validator, + "organization_team": ContextLogInfo._organization_team_validator, + "team": ContextLogInfo._team_validator, + "team_member": ContextLogInfo._team_member_validator, + "trusted_non_team_member": ContextLogInfo._trusted_non_team_member_validator, + "other": ContextLogInfo._other_validator, } -ContextLogInfo.anonymous = ContextLogInfo('anonymous') -ContextLogInfo.team = ContextLogInfo('team') -ContextLogInfo.other = ContextLogInfo('other') +ContextLogInfo.anonymous = ContextLogInfo("anonymous") +ContextLogInfo.team = ContextLogInfo("team") +ContextLogInfo.other = ContextLogInfo("other") CreateFolderDetails._all_field_names_ = set([]) CreateFolderDetails._all_fields_ = [] CreateFolderType.description.validator = bv.String() -CreateFolderType._all_field_names_ = set(['description']) -CreateFolderType._all_fields_ = [('description', CreateFolderType.description.validator)] +CreateFolderType._all_field_names_ = set(["description"]) +CreateFolderType._all_fields_ = [("description", CreateFolderType.description.validator)] CreateTeamInviteLinkDetails.link_url.validator = bv.String() CreateTeamInviteLinkDetails.expiry_date.validator = bv.String() -CreateTeamInviteLinkDetails._all_field_names_ = set([ - 'link_url', - 'expiry_date', -]) +CreateTeamInviteLinkDetails._all_field_names_ = set( + [ + "link_url", + "expiry_date", + ] +) CreateTeamInviteLinkDetails._all_fields_ = [ - ('link_url', CreateTeamInviteLinkDetails.link_url.validator), - ('expiry_date', CreateTeamInviteLinkDetails.expiry_date.validator), + ("link_url", CreateTeamInviteLinkDetails.link_url.validator), + ("expiry_date", CreateTeamInviteLinkDetails.expiry_date.validator), ] CreateTeamInviteLinkType.description.validator = bv.String() -CreateTeamInviteLinkType._all_field_names_ = set(['description']) -CreateTeamInviteLinkType._all_fields_ = [('description', CreateTeamInviteLinkType.description.validator)] +CreateTeamInviteLinkType._all_field_names_ = set(["description"]) +CreateTeamInviteLinkType._all_fields_ = [ + ("description", CreateTeamInviteLinkType.description.validator) +] DashAddedCommentToStackDetails.stack_name.validator = bv.String() DashAddedCommentToStackDetails.stack_item_name.validator = bv.String() DashAddedCommentToStackDetails.comment_text.validator = bv.String() DashAddedCommentToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashAddedCommentToStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_item_name', - 'comment_text', - 'stack_type', -]) +DashAddedCommentToStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_item_name", + "comment_text", + "stack_type", + ] +) DashAddedCommentToStackDetails._all_fields_ = [ - ('stack_name', DashAddedCommentToStackDetails.stack_name.validator), - ('stack_item_name', DashAddedCommentToStackDetails.stack_item_name.validator), - ('comment_text', DashAddedCommentToStackDetails.comment_text.validator), - ('stack_type', DashAddedCommentToStackDetails.stack_type.validator), + ("stack_name", DashAddedCommentToStackDetails.stack_name.validator), + ("stack_item_name", DashAddedCommentToStackDetails.stack_item_name.validator), + ("comment_text", DashAddedCommentToStackDetails.comment_text.validator), + ("stack_type", DashAddedCommentToStackDetails.stack_type.validator), ] DashAddedCommentToStackType.description.validator = bv.String() -DashAddedCommentToStackType._all_field_names_ = set(['description']) -DashAddedCommentToStackType._all_fields_ = [('description', DashAddedCommentToStackType.description.validator)] +DashAddedCommentToStackType._all_field_names_ = set(["description"]) +DashAddedCommentToStackType._all_fields_ = [ + ("description", DashAddedCommentToStackType.description.validator) +] DashAddedConnectorDetails.connector_name.validator = bv.String() DashAddedConnectorDetails.connector_status.validator = DashConnectorStatus_validator -DashAddedConnectorDetails._all_field_names_ = set([ - 'connector_name', - 'connector_status', -]) +DashAddedConnectorDetails._all_field_names_ = set( + [ + "connector_name", + "connector_status", + ] +) DashAddedConnectorDetails._all_fields_ = [ - ('connector_name', DashAddedConnectorDetails.connector_name.validator), - ('connector_status', DashAddedConnectorDetails.connector_status.validator), + ("connector_name", DashAddedConnectorDetails.connector_name.validator), + ("connector_status", DashAddedConnectorDetails.connector_status.validator), ] DashAddedConnectorType.description.validator = bv.String() -DashAddedConnectorType._all_field_names_ = set(['description']) -DashAddedConnectorType._all_fields_ = [('description', DashAddedConnectorType.description.validator)] +DashAddedConnectorType._all_field_names_ = set(["description"]) +DashAddedConnectorType._all_fields_ = [ + ("description", DashAddedConnectorType.description.validator) +] DashAddedLinkToStackDetails.stack_name.validator = bv.String() DashAddedLinkToStackDetails.stack_item_link.validator = bv.String() DashAddedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashAddedLinkToStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_item_link', - 'stack_type', -]) +DashAddedLinkToStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_item_link", + "stack_type", + ] +) DashAddedLinkToStackDetails._all_fields_ = [ - ('stack_name', DashAddedLinkToStackDetails.stack_name.validator), - ('stack_item_link', DashAddedLinkToStackDetails.stack_item_link.validator), - ('stack_type', DashAddedLinkToStackDetails.stack_type.validator), + ("stack_name", DashAddedLinkToStackDetails.stack_name.validator), + ("stack_item_link", DashAddedLinkToStackDetails.stack_item_link.validator), + ("stack_type", DashAddedLinkToStackDetails.stack_type.validator), ] DashAddedLinkToStackType.description.validator = bv.String() -DashAddedLinkToStackType._all_field_names_ = set(['description']) -DashAddedLinkToStackType._all_fields_ = [('description', DashAddedLinkToStackType.description.validator)] +DashAddedLinkToStackType._all_field_names_ = set(["description"]) +DashAddedLinkToStackType._all_fields_ = [ + ("description", DashAddedLinkToStackType.description.validator) +] DashAddedTeamEmailDomainAllowlistDetails.email_domain.validator = bv.String() -DashAddedTeamEmailDomainAllowlistDetails._all_field_names_ = set(['email_domain']) -DashAddedTeamEmailDomainAllowlistDetails._all_fields_ = [('email_domain', DashAddedTeamEmailDomainAllowlistDetails.email_domain.validator)] +DashAddedTeamEmailDomainAllowlistDetails._all_field_names_ = set(["email_domain"]) +DashAddedTeamEmailDomainAllowlistDetails._all_fields_ = [ + ("email_domain", DashAddedTeamEmailDomainAllowlistDetails.email_domain.validator) +] DashAddedTeamEmailDomainAllowlistType.description.validator = bv.String() -DashAddedTeamEmailDomainAllowlistType._all_field_names_ = set(['description']) -DashAddedTeamEmailDomainAllowlistType._all_fields_ = [('description', DashAddedTeamEmailDomainAllowlistType.description.validator)] +DashAddedTeamEmailDomainAllowlistType._all_field_names_ = set(["description"]) +DashAddedTeamEmailDomainAllowlistType._all_fields_ = [ + ("description", DashAddedTeamEmailDomainAllowlistType.description.validator) +] DashAdminAddedOrgWideConnectorDetails.connector_name.validator = bv.String() DashAdminAddedOrgWideConnectorDetails.connector_status.validator = DashConnectorStatus_validator -DashAdminAddedOrgWideConnectorDetails._all_field_names_ = set([ - 'connector_name', - 'connector_status', -]) +DashAdminAddedOrgWideConnectorDetails._all_field_names_ = set( + [ + "connector_name", + "connector_status", + ] +) DashAdminAddedOrgWideConnectorDetails._all_fields_ = [ - ('connector_name', DashAdminAddedOrgWideConnectorDetails.connector_name.validator), - ('connector_status', DashAdminAddedOrgWideConnectorDetails.connector_status.validator), + ("connector_name", DashAdminAddedOrgWideConnectorDetails.connector_name.validator), + ( + "connector_status", + DashAdminAddedOrgWideConnectorDetails.connector_status.validator, + ), ] DashAdminAddedOrgWideConnectorType.description.validator = bv.String() -DashAdminAddedOrgWideConnectorType._all_field_names_ = set(['description']) -DashAdminAddedOrgWideConnectorType._all_fields_ = [('description', DashAdminAddedOrgWideConnectorType.description.validator)] +DashAdminAddedOrgWideConnectorType._all_field_names_ = set(["description"]) +DashAdminAddedOrgWideConnectorType._all_fields_ = [ + ("description", DashAdminAddedOrgWideConnectorType.description.validator) +] DashAdminDisabledConnectorDetails.connector_name.validator = bv.String() -DashAdminDisabledConnectorDetails.connector_status.validator = bv.Nullable(DashConnectorStatus_validator) -DashAdminDisabledConnectorDetails._all_field_names_ = set([ - 'connector_name', - 'connector_status', -]) +DashAdminDisabledConnectorDetails.connector_status.validator = bv.Nullable( + DashConnectorStatus_validator +) +DashAdminDisabledConnectorDetails._all_field_names_ = set( + [ + "connector_name", + "connector_status", + ] +) DashAdminDisabledConnectorDetails._all_fields_ = [ - ('connector_name', DashAdminDisabledConnectorDetails.connector_name.validator), - ('connector_status', DashAdminDisabledConnectorDetails.connector_status.validator), + ("connector_name", DashAdminDisabledConnectorDetails.connector_name.validator), + ("connector_status", DashAdminDisabledConnectorDetails.connector_status.validator), ] DashAdminDisabledConnectorType.description.validator = bv.String() -DashAdminDisabledConnectorType._all_field_names_ = set(['description']) -DashAdminDisabledConnectorType._all_fields_ = [('description', DashAdminDisabledConnectorType.description.validator)] +DashAdminDisabledConnectorType._all_field_names_ = set(["description"]) +DashAdminDisabledConnectorType._all_fields_ = [ + ("description", DashAdminDisabledConnectorType.description.validator) +] DashAdminEnabledConnectorDetails.connector_name.validator = bv.String() -DashAdminEnabledConnectorDetails.connector_status.validator = bv.Nullable(DashConnectorStatus_validator) -DashAdminEnabledConnectorDetails._all_field_names_ = set([ - 'connector_name', - 'connector_status', -]) +DashAdminEnabledConnectorDetails.connector_status.validator = bv.Nullable( + DashConnectorStatus_validator +) +DashAdminEnabledConnectorDetails._all_field_names_ = set( + [ + "connector_name", + "connector_status", + ] +) DashAdminEnabledConnectorDetails._all_fields_ = [ - ('connector_name', DashAdminEnabledConnectorDetails.connector_name.validator), - ('connector_status', DashAdminEnabledConnectorDetails.connector_status.validator), + ("connector_name", DashAdminEnabledConnectorDetails.connector_name.validator), + ("connector_status", DashAdminEnabledConnectorDetails.connector_status.validator), ] DashAdminEnabledConnectorType.description.validator = bv.String() -DashAdminEnabledConnectorType._all_field_names_ = set(['description']) -DashAdminEnabledConnectorType._all_fields_ = [('description', DashAdminEnabledConnectorType.description.validator)] +DashAdminEnabledConnectorType._all_field_names_ = set(["description"]) +DashAdminEnabledConnectorType._all_fields_ = [ + ("description", DashAdminEnabledConnectorType.description.validator) +] DashAdminRemovedOrgWideConnectorDetails.connector_name.validator = bv.String() DashAdminRemovedOrgWideConnectorDetails.connector_status.validator = DashConnectorStatus_validator -DashAdminRemovedOrgWideConnectorDetails._all_field_names_ = set([ - 'connector_name', - 'connector_status', -]) +DashAdminRemovedOrgWideConnectorDetails._all_field_names_ = set( + [ + "connector_name", + "connector_status", + ] +) DashAdminRemovedOrgWideConnectorDetails._all_fields_ = [ - ('connector_name', DashAdminRemovedOrgWideConnectorDetails.connector_name.validator), - ('connector_status', DashAdminRemovedOrgWideConnectorDetails.connector_status.validator), + ( + "connector_name", + DashAdminRemovedOrgWideConnectorDetails.connector_name.validator, + ), + ( + "connector_status", + DashAdminRemovedOrgWideConnectorDetails.connector_status.validator, + ), ] DashAdminRemovedOrgWideConnectorType.description.validator = bv.String() -DashAdminRemovedOrgWideConnectorType._all_field_names_ = set(['description']) -DashAdminRemovedOrgWideConnectorType._all_fields_ = [('description', DashAdminRemovedOrgWideConnectorType.description.validator)] +DashAdminRemovedOrgWideConnectorType._all_field_names_ = set(["description"]) +DashAdminRemovedOrgWideConnectorType._all_fields_ = [ + ("description", DashAdminRemovedOrgWideConnectorType.description.validator) +] DashArchivedStackDetails.stack_name.validator = bv.String() DashArchivedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashArchivedStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashArchivedStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashArchivedStackDetails._all_fields_ = [ - ('stack_name', DashArchivedStackDetails.stack_name.validator), - ('stack_type', DashArchivedStackDetails.stack_type.validator), + ("stack_name", DashArchivedStackDetails.stack_name.validator), + ("stack_type", DashArchivedStackDetails.stack_type.validator), ] DashArchivedStackType.description.validator = bv.String() -DashArchivedStackType._all_field_names_ = set(['description']) -DashArchivedStackType._all_fields_ = [('description', DashArchivedStackType.description.validator)] +DashArchivedStackType._all_field_names_ = set(["description"]) +DashArchivedStackType._all_fields_ = [("description", DashArchivedStackType.description.validator)] DashChangedAudienceOfSharedLinkToStackDetails.stack_name.validator = bv.String() -DashChangedAudienceOfSharedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashChangedAudienceOfSharedLinkToStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashChangedAudienceOfSharedLinkToStackDetails.stack_type.validator = bv.Nullable( + DashStackType_validator +) +DashChangedAudienceOfSharedLinkToStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashChangedAudienceOfSharedLinkToStackDetails._all_fields_ = [ - ('stack_name', DashChangedAudienceOfSharedLinkToStackDetails.stack_name.validator), - ('stack_type', DashChangedAudienceOfSharedLinkToStackDetails.stack_type.validator), + ("stack_name", DashChangedAudienceOfSharedLinkToStackDetails.stack_name.validator), + ("stack_type", DashChangedAudienceOfSharedLinkToStackDetails.stack_type.validator), ] DashChangedAudienceOfSharedLinkToStackType.description.validator = bv.String() -DashChangedAudienceOfSharedLinkToStackType._all_field_names_ = set(['description']) -DashChangedAudienceOfSharedLinkToStackType._all_fields_ = [('description', DashChangedAudienceOfSharedLinkToStackType.description.validator)] +DashChangedAudienceOfSharedLinkToStackType._all_field_names_ = set(["description"]) +DashChangedAudienceOfSharedLinkToStackType._all_fields_ = [ + ("description", DashChangedAudienceOfSharedLinkToStackType.description.validator) +] DashClonedStackDetails.stack_name.validator = bv.String() DashClonedStackDetails.actor_email.validator = bv.String() DashClonedStackDetails.new_cloned_stack_name.validator = bv.String() DashClonedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashClonedStackDetails._all_field_names_ = set([ - 'stack_name', - 'actor_email', - 'new_cloned_stack_name', - 'stack_type', -]) +DashClonedStackDetails._all_field_names_ = set( + [ + "stack_name", + "actor_email", + "new_cloned_stack_name", + "stack_type", + ] +) DashClonedStackDetails._all_fields_ = [ - ('stack_name', DashClonedStackDetails.stack_name.validator), - ('actor_email', DashClonedStackDetails.actor_email.validator), - ('new_cloned_stack_name', DashClonedStackDetails.new_cloned_stack_name.validator), - ('stack_type', DashClonedStackDetails.stack_type.validator), + ("stack_name", DashClonedStackDetails.stack_name.validator), + ("actor_email", DashClonedStackDetails.actor_email.validator), + ("new_cloned_stack_name", DashClonedStackDetails.new_cloned_stack_name.validator), + ("stack_type", DashClonedStackDetails.stack_type.validator), ] DashClonedStackType.description.validator = bv.String() -DashClonedStackType._all_field_names_ = set(['description']) -DashClonedStackType._all_fields_ = [('description', DashClonedStackType.description.validator)] +DashClonedStackType._all_field_names_ = set(["description"]) +DashClonedStackType._all_fields_ = [("description", DashClonedStackType.description.validator)] DashConnectorStatus._fail_validator = bv.Void() DashConnectorStatus._success_validator = bv.Void() DashConnectorStatus._other_validator = bv.Void() DashConnectorStatus._tagmap = { - 'fail': DashConnectorStatus._fail_validator, - 'success': DashConnectorStatus._success_validator, - 'other': DashConnectorStatus._other_validator, + "fail": DashConnectorStatus._fail_validator, + "success": DashConnectorStatus._success_validator, + "other": DashConnectorStatus._other_validator, } -DashConnectorStatus.fail = DashConnectorStatus('fail') -DashConnectorStatus.success = DashConnectorStatus('success') -DashConnectorStatus.other = DashConnectorStatus('other') +DashConnectorStatus.fail = DashConnectorStatus("fail") +DashConnectorStatus.success = DashConnectorStatus("success") +DashConnectorStatus.other = DashConnectorStatus("other") DashConnectorToolsCallDetails.connector_name.validator = bv.String() DashConnectorToolsCallDetails.tool_name.validator = bv.String() DashConnectorToolsCallDetails.surface.validator = bv.Nullable(bv.String()) -DashConnectorToolsCallDetails._all_field_names_ = set([ - 'connector_name', - 'tool_name', - 'surface', -]) +DashConnectorToolsCallDetails._all_field_names_ = set( + [ + "connector_name", + "tool_name", + "surface", + ] +) DashConnectorToolsCallDetails._all_fields_ = [ - ('connector_name', DashConnectorToolsCallDetails.connector_name.validator), - ('tool_name', DashConnectorToolsCallDetails.tool_name.validator), - ('surface', DashConnectorToolsCallDetails.surface.validator), + ("connector_name", DashConnectorToolsCallDetails.connector_name.validator), + ("tool_name", DashConnectorToolsCallDetails.tool_name.validator), + ("surface", DashConnectorToolsCallDetails.surface.validator), ] DashConnectorToolsCallType.description.validator = bv.String() -DashConnectorToolsCallType._all_field_names_ = set(['description']) -DashConnectorToolsCallType._all_fields_ = [('description', DashConnectorToolsCallType.description.validator)] +DashConnectorToolsCallType._all_field_names_ = set(["description"]) +DashConnectorToolsCallType._all_fields_ = [ + ("description", DashConnectorToolsCallType.description.validator) +] DashCreatedStackDetails.stack_name.validator = bv.String() DashCreatedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashCreatedStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashCreatedStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashCreatedStackDetails._all_fields_ = [ - ('stack_name', DashCreatedStackDetails.stack_name.validator), - ('stack_type', DashCreatedStackDetails.stack_type.validator), + ("stack_name", DashCreatedStackDetails.stack_name.validator), + ("stack_type", DashCreatedStackDetails.stack_type.validator), ] DashCreatedStackType.description.validator = bv.String() -DashCreatedStackType._all_field_names_ = set(['description']) -DashCreatedStackType._all_fields_ = [('description', DashCreatedStackType.description.validator)] +DashCreatedStackType._all_field_names_ = set(["description"]) +DashCreatedStackType._all_fields_ = [("description", DashCreatedStackType.description.validator)] DashDeletedCommentFromStackDetails.stack_name.validator = bv.String() DashDeletedCommentFromStackDetails.stack_item_name.validator = bv.String() DashDeletedCommentFromStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashDeletedCommentFromStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_item_name', - 'stack_type', -]) +DashDeletedCommentFromStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_item_name", + "stack_type", + ] +) DashDeletedCommentFromStackDetails._all_fields_ = [ - ('stack_name', DashDeletedCommentFromStackDetails.stack_name.validator), - ('stack_item_name', DashDeletedCommentFromStackDetails.stack_item_name.validator), - ('stack_type', DashDeletedCommentFromStackDetails.stack_type.validator), + ("stack_name", DashDeletedCommentFromStackDetails.stack_name.validator), + ("stack_item_name", DashDeletedCommentFromStackDetails.stack_item_name.validator), + ("stack_type", DashDeletedCommentFromStackDetails.stack_type.validator), ] DashDeletedCommentFromStackType.description.validator = bv.String() -DashDeletedCommentFromStackType._all_field_names_ = set(['description']) -DashDeletedCommentFromStackType._all_fields_ = [('description', DashDeletedCommentFromStackType.description.validator)] +DashDeletedCommentFromStackType._all_field_names_ = set(["description"]) +DashDeletedCommentFromStackType._all_fields_ = [ + ("description", DashDeletedCommentFromStackType.description.validator) +] DashDeletedStackDetails.stack_name.validator = bv.String() DashDeletedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashDeletedStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashDeletedStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashDeletedStackDetails._all_fields_ = [ - ('stack_name', DashDeletedStackDetails.stack_name.validator), - ('stack_type', DashDeletedStackDetails.stack_type.validator), + ("stack_name", DashDeletedStackDetails.stack_name.validator), + ("stack_type", DashDeletedStackDetails.stack_type.validator), ] DashDeletedStackType.description.validator = bv.String() -DashDeletedStackType._all_field_names_ = set(['description']) -DashDeletedStackType._all_fields_ = [('description', DashDeletedStackType.description.validator)] +DashDeletedStackType._all_field_names_ = set(["description"]) +DashDeletedStackType._all_fields_ = [("description", DashDeletedStackType.description.validator)] DashEditedCommentInStackDetails.stack_name.validator = bv.String() DashEditedCommentInStackDetails.stack_item_name.validator = bv.String() DashEditedCommentInStackDetails.comment_text.validator = bv.String() DashEditedCommentInStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashEditedCommentInStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_item_name', - 'comment_text', - 'stack_type', -]) +DashEditedCommentInStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_item_name", + "comment_text", + "stack_type", + ] +) DashEditedCommentInStackDetails._all_fields_ = [ - ('stack_name', DashEditedCommentInStackDetails.stack_name.validator), - ('stack_item_name', DashEditedCommentInStackDetails.stack_item_name.validator), - ('comment_text', DashEditedCommentInStackDetails.comment_text.validator), - ('stack_type', DashEditedCommentInStackDetails.stack_type.validator), + ("stack_name", DashEditedCommentInStackDetails.stack_name.validator), + ("stack_item_name", DashEditedCommentInStackDetails.stack_item_name.validator), + ("comment_text", DashEditedCommentInStackDetails.comment_text.validator), + ("stack_type", DashEditedCommentInStackDetails.stack_type.validator), ] DashEditedCommentInStackType.description.validator = bv.String() -DashEditedCommentInStackType._all_field_names_ = set(['description']) -DashEditedCommentInStackType._all_fields_ = [('description', DashEditedCommentInStackType.description.validator)] +DashEditedCommentInStackType._all_field_names_ = set(["description"]) +DashEditedCommentInStackType._all_fields_ = [ + ("description", DashEditedCommentInStackType.description.validator) +] DashExternalSharingPolicy._default_validator = bv.Void() DashExternalSharingPolicy._disabled_validator = bv.Void() DashExternalSharingPolicy._enabled_validator = bv.Void() DashExternalSharingPolicy._other_validator = bv.Void() DashExternalSharingPolicy._tagmap = { - 'default': DashExternalSharingPolicy._default_validator, - 'disabled': DashExternalSharingPolicy._disabled_validator, - 'enabled': DashExternalSharingPolicy._enabled_validator, - 'other': DashExternalSharingPolicy._other_validator, + "default": DashExternalSharingPolicy._default_validator, + "disabled": DashExternalSharingPolicy._disabled_validator, + "enabled": DashExternalSharingPolicy._enabled_validator, + "other": DashExternalSharingPolicy._other_validator, } -DashExternalSharingPolicy.default = DashExternalSharingPolicy('default') -DashExternalSharingPolicy.disabled = DashExternalSharingPolicy('disabled') -DashExternalSharingPolicy.enabled = DashExternalSharingPolicy('enabled') -DashExternalSharingPolicy.other = DashExternalSharingPolicy('other') +DashExternalSharingPolicy.default = DashExternalSharingPolicy("default") +DashExternalSharingPolicy.disabled = DashExternalSharingPolicy("disabled") +DashExternalSharingPolicy.enabled = DashExternalSharingPolicy("enabled") +DashExternalSharingPolicy.other = DashExternalSharingPolicy("other") DashExternalSharingPolicyChangedDetails.new_value.validator = DashExternalSharingPolicy_validator -DashExternalSharingPolicyChangedDetails.previous_value.validator = DashExternalSharingPolicy_validator -DashExternalSharingPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +DashExternalSharingPolicyChangedDetails.previous_value.validator = ( + DashExternalSharingPolicy_validator +) +DashExternalSharingPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) DashExternalSharingPolicyChangedDetails._all_fields_ = [ - ('new_value', DashExternalSharingPolicyChangedDetails.new_value.validator), - ('previous_value', DashExternalSharingPolicyChangedDetails.previous_value.validator), + ("new_value", DashExternalSharingPolicyChangedDetails.new_value.validator), + ( + "previous_value", + DashExternalSharingPolicyChangedDetails.previous_value.validator, + ), ] DashExternalSharingPolicyChangedType.description.validator = bv.String() -DashExternalSharingPolicyChangedType._all_field_names_ = set(['description']) -DashExternalSharingPolicyChangedType._all_fields_ = [('description', DashExternalSharingPolicyChangedType.description.validator)] +DashExternalSharingPolicyChangedType._all_field_names_ = set(["description"]) +DashExternalSharingPolicyChangedType._all_fields_ = [ + ("description", DashExternalSharingPolicyChangedType.description.validator) +] DashExternalUserOpenedStackDetails.stack_name.validator = bv.String() DashExternalUserOpenedStackDetails.stack_sharing_scope.validator = DashStackSharingScope_validator @@ -95489,190 +99837,244 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DashExternalUserOpenedStackDetails.is_verified.validator = bv.Boolean() DashExternalUserOpenedStackDetails.stack_owner_team_id.validator = bv.Nullable(bv.Int64()) DashExternalUserOpenedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashExternalUserOpenedStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_sharing_scope', - 'is_invited', - 'is_verified', - 'stack_owner_team_id', - 'stack_type', -]) +DashExternalUserOpenedStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_sharing_scope", + "is_invited", + "is_verified", + "stack_owner_team_id", + "stack_type", + ] +) DashExternalUserOpenedStackDetails._all_fields_ = [ - ('stack_name', DashExternalUserOpenedStackDetails.stack_name.validator), - ('stack_sharing_scope', DashExternalUserOpenedStackDetails.stack_sharing_scope.validator), - ('is_invited', DashExternalUserOpenedStackDetails.is_invited.validator), - ('is_verified', DashExternalUserOpenedStackDetails.is_verified.validator), - ('stack_owner_team_id', DashExternalUserOpenedStackDetails.stack_owner_team_id.validator), - ('stack_type', DashExternalUserOpenedStackDetails.stack_type.validator), + ("stack_name", DashExternalUserOpenedStackDetails.stack_name.validator), + ( + "stack_sharing_scope", + DashExternalUserOpenedStackDetails.stack_sharing_scope.validator, + ), + ("is_invited", DashExternalUserOpenedStackDetails.is_invited.validator), + ("is_verified", DashExternalUserOpenedStackDetails.is_verified.validator), + ( + "stack_owner_team_id", + DashExternalUserOpenedStackDetails.stack_owner_team_id.validator, + ), + ("stack_type", DashExternalUserOpenedStackDetails.stack_type.validator), ] DashExternalUserOpenedStackType.description.validator = bv.String() -DashExternalUserOpenedStackType._all_field_names_ = set(['description']) -DashExternalUserOpenedStackType._all_fields_ = [('description', DashExternalUserOpenedStackType.description.validator)] +DashExternalUserOpenedStackType._all_field_names_ = set(["description"]) +DashExternalUserOpenedStackType._all_fields_ = [ + ("description", DashExternalUserOpenedStackType.description.validator) +] DashFirstLaunchedDesktopDetails.os_name.validator = bv.String() -DashFirstLaunchedDesktopDetails._all_field_names_ = set(['os_name']) -DashFirstLaunchedDesktopDetails._all_fields_ = [('os_name', DashFirstLaunchedDesktopDetails.os_name.validator)] +DashFirstLaunchedDesktopDetails._all_field_names_ = set(["os_name"]) +DashFirstLaunchedDesktopDetails._all_fields_ = [ + ("os_name", DashFirstLaunchedDesktopDetails.os_name.validator) +] DashFirstLaunchedDesktopType.description.validator = bv.String() -DashFirstLaunchedDesktopType._all_field_names_ = set(['description']) -DashFirstLaunchedDesktopType._all_fields_ = [('description', DashFirstLaunchedDesktopType.description.validator)] +DashFirstLaunchedDesktopType._all_field_names_ = set(["description"]) +DashFirstLaunchedDesktopType._all_fields_ = [ + ("description", DashFirstLaunchedDesktopType.description.validator) +] DashFirstLaunchedExtensionDetails.browser_name.validator = bv.String() -DashFirstLaunchedExtensionDetails._all_field_names_ = set(['browser_name']) -DashFirstLaunchedExtensionDetails._all_fields_ = [('browser_name', DashFirstLaunchedExtensionDetails.browser_name.validator)] +DashFirstLaunchedExtensionDetails._all_field_names_ = set(["browser_name"]) +DashFirstLaunchedExtensionDetails._all_fields_ = [ + ("browser_name", DashFirstLaunchedExtensionDetails.browser_name.validator) +] DashFirstLaunchedExtensionType.description.validator = bv.String() -DashFirstLaunchedExtensionType._all_field_names_ = set(['description']) -DashFirstLaunchedExtensionType._all_fields_ = [('description', DashFirstLaunchedExtensionType.description.validator)] +DashFirstLaunchedExtensionType._all_field_names_ = set(["description"]) +DashFirstLaunchedExtensionType._all_fields_ = [ + ("description", DashFirstLaunchedExtensionType.description.validator) +] DashFirstLaunchedWebStartPageDetails.browser_name.validator = bv.String() -DashFirstLaunchedWebStartPageDetails._all_field_names_ = set(['browser_name']) -DashFirstLaunchedWebStartPageDetails._all_fields_ = [('browser_name', DashFirstLaunchedWebStartPageDetails.browser_name.validator)] +DashFirstLaunchedWebStartPageDetails._all_field_names_ = set(["browser_name"]) +DashFirstLaunchedWebStartPageDetails._all_fields_ = [ + ("browser_name", DashFirstLaunchedWebStartPageDetails.browser_name.validator) +] DashFirstLaunchedWebStartPageType.description.validator = bv.String() -DashFirstLaunchedWebStartPageType._all_field_names_ = set(['description']) -DashFirstLaunchedWebStartPageType._all_fields_ = [('description', DashFirstLaunchedWebStartPageType.description.validator)] +DashFirstLaunchedWebStartPageType._all_field_names_ = set(["description"]) +DashFirstLaunchedWebStartPageType._all_fields_ = [ + ("description", DashFirstLaunchedWebStartPageType.description.validator) +] DashOpenedSharedLinkToStackDetails.stack_name.validator = bv.String() DashOpenedSharedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashOpenedSharedLinkToStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashOpenedSharedLinkToStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashOpenedSharedLinkToStackDetails._all_fields_ = [ - ('stack_name', DashOpenedSharedLinkToStackDetails.stack_name.validator), - ('stack_type', DashOpenedSharedLinkToStackDetails.stack_type.validator), + ("stack_name", DashOpenedSharedLinkToStackDetails.stack_name.validator), + ("stack_type", DashOpenedSharedLinkToStackDetails.stack_type.validator), ] DashOpenedSharedLinkToStackType.description.validator = bv.String() -DashOpenedSharedLinkToStackType._all_field_names_ = set(['description']) -DashOpenedSharedLinkToStackType._all_fields_ = [('description', DashOpenedSharedLinkToStackType.description.validator)] +DashOpenedSharedLinkToStackType._all_field_names_ = set(["description"]) +DashOpenedSharedLinkToStackType._all_fields_ = [ + ("description", DashOpenedSharedLinkToStackType.description.validator) +] DashOpenedStackDetails.stack_name.validator = bv.String() DashOpenedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashOpenedStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashOpenedStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashOpenedStackDetails._all_fields_ = [ - ('stack_name', DashOpenedStackDetails.stack_name.validator), - ('stack_type', DashOpenedStackDetails.stack_type.validator), + ("stack_name", DashOpenedStackDetails.stack_name.validator), + ("stack_type", DashOpenedStackDetails.stack_type.validator), ] DashOpenedStackType.description.validator = bv.String() -DashOpenedStackType._all_field_names_ = set(['description']) -DashOpenedStackType._all_fields_ = [('description', DashOpenedStackType.description.validator)] +DashOpenedStackType._all_field_names_ = set(["description"]) +DashOpenedStackType._all_fields_ = [("description", DashOpenedStackType.description.validator)] DashPreviewOptOutStatus._opted_in_validator = bv.Void() DashPreviewOptOutStatus._opted_out_validator = bv.Void() DashPreviewOptOutStatus._other_validator = bv.Void() DashPreviewOptOutStatus._tagmap = { - 'opted_in': DashPreviewOptOutStatus._opted_in_validator, - 'opted_out': DashPreviewOptOutStatus._opted_out_validator, - 'other': DashPreviewOptOutStatus._other_validator, + "opted_in": DashPreviewOptOutStatus._opted_in_validator, + "opted_out": DashPreviewOptOutStatus._opted_out_validator, + "other": DashPreviewOptOutStatus._other_validator, } -DashPreviewOptOutStatus.opted_in = DashPreviewOptOutStatus('opted_in') -DashPreviewOptOutStatus.opted_out = DashPreviewOptOutStatus('opted_out') -DashPreviewOptOutStatus.other = DashPreviewOptOutStatus('other') +DashPreviewOptOutStatus.opted_in = DashPreviewOptOutStatus("opted_in") +DashPreviewOptOutStatus.opted_out = DashPreviewOptOutStatus("opted_out") +DashPreviewOptOutStatus.other = DashPreviewOptOutStatus("other") DashPreviewOptOutStatusChangedDetails.opt_out_status.validator = DashPreviewOptOutStatus_validator -DashPreviewOptOutStatusChangedDetails._all_field_names_ = set(['opt_out_status']) -DashPreviewOptOutStatusChangedDetails._all_fields_ = [('opt_out_status', DashPreviewOptOutStatusChangedDetails.opt_out_status.validator)] +DashPreviewOptOutStatusChangedDetails._all_field_names_ = set(["opt_out_status"]) +DashPreviewOptOutStatusChangedDetails._all_fields_ = [ + ("opt_out_status", DashPreviewOptOutStatusChangedDetails.opt_out_status.validator) +] DashPreviewOptOutStatusChangedType.description.validator = bv.String() -DashPreviewOptOutStatusChangedType._all_field_names_ = set(['description']) -DashPreviewOptOutStatusChangedType._all_fields_ = [('description', DashPreviewOptOutStatusChangedType.description.validator)] +DashPreviewOptOutStatusChangedType._all_field_names_ = set(["description"]) +DashPreviewOptOutStatusChangedType._all_fields_ = [ + ("description", DashPreviewOptOutStatusChangedType.description.validator) +] DashRemovedConnectorDetails.connector_name.validator = bv.String() DashRemovedConnectorDetails.connector_status.validator = DashConnectorStatus_validator -DashRemovedConnectorDetails._all_field_names_ = set([ - 'connector_name', - 'connector_status', -]) +DashRemovedConnectorDetails._all_field_names_ = set( + [ + "connector_name", + "connector_status", + ] +) DashRemovedConnectorDetails._all_fields_ = [ - ('connector_name', DashRemovedConnectorDetails.connector_name.validator), - ('connector_status', DashRemovedConnectorDetails.connector_status.validator), + ("connector_name", DashRemovedConnectorDetails.connector_name.validator), + ("connector_status", DashRemovedConnectorDetails.connector_status.validator), ] DashRemovedConnectorType.description.validator = bv.String() -DashRemovedConnectorType._all_field_names_ = set(['description']) -DashRemovedConnectorType._all_fields_ = [('description', DashRemovedConnectorType.description.validator)] +DashRemovedConnectorType._all_field_names_ = set(["description"]) +DashRemovedConnectorType._all_fields_ = [ + ("description", DashRemovedConnectorType.description.validator) +] DashRemovedLinkFromStackDetails.stack_name.validator = bv.String() DashRemovedLinkFromStackDetails.stack_item_link.validator = bv.String() DashRemovedLinkFromStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashRemovedLinkFromStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_item_link', - 'stack_type', -]) +DashRemovedLinkFromStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_item_link", + "stack_type", + ] +) DashRemovedLinkFromStackDetails._all_fields_ = [ - ('stack_name', DashRemovedLinkFromStackDetails.stack_name.validator), - ('stack_item_link', DashRemovedLinkFromStackDetails.stack_item_link.validator), - ('stack_type', DashRemovedLinkFromStackDetails.stack_type.validator), + ("stack_name", DashRemovedLinkFromStackDetails.stack_name.validator), + ("stack_item_link", DashRemovedLinkFromStackDetails.stack_item_link.validator), + ("stack_type", DashRemovedLinkFromStackDetails.stack_type.validator), ] DashRemovedLinkFromStackType.description.validator = bv.String() -DashRemovedLinkFromStackType._all_field_names_ = set(['description']) -DashRemovedLinkFromStackType._all_fields_ = [('description', DashRemovedLinkFromStackType.description.validator)] +DashRemovedLinkFromStackType._all_field_names_ = set(["description"]) +DashRemovedLinkFromStackType._all_fields_ = [ + ("description", DashRemovedLinkFromStackType.description.validator) +] DashRemovedSharedLinkToStackDetails.stack_name.validator = bv.String() DashRemovedSharedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashRemovedSharedLinkToStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashRemovedSharedLinkToStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashRemovedSharedLinkToStackDetails._all_fields_ = [ - ('stack_name', DashRemovedSharedLinkToStackDetails.stack_name.validator), - ('stack_type', DashRemovedSharedLinkToStackDetails.stack_type.validator), + ("stack_name", DashRemovedSharedLinkToStackDetails.stack_name.validator), + ("stack_type", DashRemovedSharedLinkToStackDetails.stack_type.validator), ] DashRemovedSharedLinkToStackType.description.validator = bv.String() -DashRemovedSharedLinkToStackType._all_field_names_ = set(['description']) -DashRemovedSharedLinkToStackType._all_fields_ = [('description', DashRemovedSharedLinkToStackType.description.validator)] +DashRemovedSharedLinkToStackType._all_field_names_ = set(["description"]) +DashRemovedSharedLinkToStackType._all_fields_ = [ + ("description", DashRemovedSharedLinkToStackType.description.validator) +] DashRemovedTeamEmailDomainAllowlistDetails.email_domain.validator = bv.String() -DashRemovedTeamEmailDomainAllowlistDetails._all_field_names_ = set(['email_domain']) -DashRemovedTeamEmailDomainAllowlistDetails._all_fields_ = [('email_domain', DashRemovedTeamEmailDomainAllowlistDetails.email_domain.validator)] +DashRemovedTeamEmailDomainAllowlistDetails._all_field_names_ = set(["email_domain"]) +DashRemovedTeamEmailDomainAllowlistDetails._all_fields_ = [ + ("email_domain", DashRemovedTeamEmailDomainAllowlistDetails.email_domain.validator) +] DashRemovedTeamEmailDomainAllowlistType.description.validator = bv.String() -DashRemovedTeamEmailDomainAllowlistType._all_field_names_ = set(['description']) -DashRemovedTeamEmailDomainAllowlistType._all_fields_ = [('description', DashRemovedTeamEmailDomainAllowlistType.description.validator)] +DashRemovedTeamEmailDomainAllowlistType._all_field_names_ = set(["description"]) +DashRemovedTeamEmailDomainAllowlistType._all_fields_ = [ + ("description", DashRemovedTeamEmailDomainAllowlistType.description.validator) +] DashRenamedStackDetails.old_name.validator = bv.String() DashRenamedStackDetails.new_name.validator = bv.String() DashRenamedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashRenamedStackDetails._all_field_names_ = set([ - 'old_name', - 'new_name', - 'stack_type', -]) +DashRenamedStackDetails._all_field_names_ = set( + [ + "old_name", + "new_name", + "stack_type", + ] +) DashRenamedStackDetails._all_fields_ = [ - ('old_name', DashRenamedStackDetails.old_name.validator), - ('new_name', DashRenamedStackDetails.new_name.validator), - ('stack_type', DashRenamedStackDetails.stack_type.validator), + ("old_name", DashRenamedStackDetails.old_name.validator), + ("new_name", DashRenamedStackDetails.new_name.validator), + ("stack_type", DashRenamedStackDetails.stack_type.validator), ] DashRenamedStackType.description.validator = bv.String() -DashRenamedStackType._all_field_names_ = set(['description']) -DashRenamedStackType._all_fields_ = [('description', DashRenamedStackType.description.validator)] +DashRenamedStackType._all_field_names_ = set(["description"]) +DashRenamedStackType._all_fields_ = [("description", DashRenamedStackType.description.validator)] DashSharedLinkToStackDetails.stack_name.validator = bv.String() DashSharedLinkToStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashSharedLinkToStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashSharedLinkToStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashSharedLinkToStackDetails._all_fields_ = [ - ('stack_name', DashSharedLinkToStackDetails.stack_name.validator), - ('stack_type', DashSharedLinkToStackDetails.stack_type.validator), + ("stack_name", DashSharedLinkToStackDetails.stack_name.validator), + ("stack_type", DashSharedLinkToStackDetails.stack_type.validator), ] DashSharedLinkToStackType.description.validator = bv.String() -DashSharedLinkToStackType._all_field_names_ = set(['description']) -DashSharedLinkToStackType._all_fields_ = [('description', DashSharedLinkToStackType.description.validator)] +DashSharedLinkToStackType._all_field_names_ = set(["description"]) +DashSharedLinkToStackType._all_fields_ = [ + ("description", DashSharedLinkToStackType.description.validator) +] DashStackSharingScope._invited_validator = bv.Void() DashStackSharingScope._public_validator = bv.Void() @@ -95680,108 +100082,140 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DashStackSharingScope._unknown_validator = bv.Void() DashStackSharingScope._other_validator = bv.Void() DashStackSharingScope._tagmap = { - 'invited': DashStackSharingScope._invited_validator, - 'public': DashStackSharingScope._public_validator, - 'team': DashStackSharingScope._team_validator, - 'unknown': DashStackSharingScope._unknown_validator, - 'other': DashStackSharingScope._other_validator, + "invited": DashStackSharingScope._invited_validator, + "public": DashStackSharingScope._public_validator, + "team": DashStackSharingScope._team_validator, + "unknown": DashStackSharingScope._unknown_validator, + "other": DashStackSharingScope._other_validator, } -DashStackSharingScope.invited = DashStackSharingScope('invited') -DashStackSharingScope.public = DashStackSharingScope('public') -DashStackSharingScope.team = DashStackSharingScope('team') -DashStackSharingScope.unknown = DashStackSharingScope('unknown') -DashStackSharingScope.other = DashStackSharingScope('other') +DashStackSharingScope.invited = DashStackSharingScope("invited") +DashStackSharingScope.public = DashStackSharingScope("public") +DashStackSharingScope.team = DashStackSharingScope("team") +DashStackSharingScope.unknown = DashStackSharingScope("unknown") +DashStackSharingScope.other = DashStackSharingScope("other") DashStackType._cypress_validator = bv.Void() DashStackType._reference_container_validator = bv.Void() DashStackType._unknown_validator = bv.Void() DashStackType._other_validator = bv.Void() DashStackType._tagmap = { - 'cypress': DashStackType._cypress_validator, - 'reference_container': DashStackType._reference_container_validator, - 'unknown': DashStackType._unknown_validator, - 'other': DashStackType._other_validator, + "cypress": DashStackType._cypress_validator, + "reference_container": DashStackType._reference_container_validator, + "unknown": DashStackType._unknown_validator, + "other": DashStackType._other_validator, } -DashStackType.cypress = DashStackType('cypress') -DashStackType.reference_container = DashStackType('reference_container') -DashStackType.unknown = DashStackType('unknown') -DashStackType.other = DashStackType('other') +DashStackType.cypress = DashStackType("cypress") +DashStackType.reference_container = DashStackType("reference_container") +DashStackType.unknown = DashStackType("unknown") +DashStackType.other = DashStackType("other") DashUnarchivedStackDetails.stack_name.validator = bv.String() DashUnarchivedStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashUnarchivedStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashUnarchivedStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashUnarchivedStackDetails._all_fields_ = [ - ('stack_name', DashUnarchivedStackDetails.stack_name.validator), - ('stack_type', DashUnarchivedStackDetails.stack_type.validator), + ("stack_name", DashUnarchivedStackDetails.stack_name.validator), + ("stack_type", DashUnarchivedStackDetails.stack_type.validator), ] DashUnarchivedStackType.description.validator = bv.String() -DashUnarchivedStackType._all_field_names_ = set(['description']) -DashUnarchivedStackType._all_fields_ = [('description', DashUnarchivedStackType.description.validator)] +DashUnarchivedStackType._all_field_names_ = set(["description"]) +DashUnarchivedStackType._all_fields_ = [ + ("description", DashUnarchivedStackType.description.validator) +] DashViewedCompanyStackDetails.stack_name.validator = bv.String() DashViewedCompanyStackDetails.stack_type.validator = bv.Nullable(DashStackType_validator) -DashViewedCompanyStackDetails._all_field_names_ = set([ - 'stack_name', - 'stack_type', -]) +DashViewedCompanyStackDetails._all_field_names_ = set( + [ + "stack_name", + "stack_type", + ] +) DashViewedCompanyStackDetails._all_fields_ = [ - ('stack_name', DashViewedCompanyStackDetails.stack_name.validator), - ('stack_type', DashViewedCompanyStackDetails.stack_type.validator), + ("stack_name", DashViewedCompanyStackDetails.stack_name.validator), + ("stack_type", DashViewedCompanyStackDetails.stack_type.validator), ] DashViewedCompanyStackType.description.validator = bv.String() -DashViewedCompanyStackType._all_field_names_ = set(['description']) -DashViewedCompanyStackType._all_fields_ = [('description', DashViewedCompanyStackType.description.validator)] +DashViewedCompanyStackType._all_field_names_ = set(["description"]) +DashViewedCompanyStackType._all_fields_ = [ + ("description", DashViewedCompanyStackType.description.validator) +] DashViewedExternalAiActivityReportDetails._all_field_names_ = set([]) DashViewedExternalAiActivityReportDetails._all_fields_ = [] DashViewedExternalAiActivityReportType.description.validator = bv.String() -DashViewedExternalAiActivityReportType._all_field_names_ = set(['description']) -DashViewedExternalAiActivityReportType._all_fields_ = [('description', DashViewedExternalAiActivityReportType.description.validator)] +DashViewedExternalAiActivityReportType._all_field_names_ = set(["description"]) +DashViewedExternalAiActivityReportType._all_fields_ = [ + ("description", DashViewedExternalAiActivityReportType.description.validator) +] -DataPlacementRestrictionChangePolicyDetails.previous_value.validator = PlacementRestriction_validator +DataPlacementRestrictionChangePolicyDetails.previous_value.validator = ( + PlacementRestriction_validator +) DataPlacementRestrictionChangePolicyDetails.new_value.validator = PlacementRestriction_validator -DataPlacementRestrictionChangePolicyDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +DataPlacementRestrictionChangePolicyDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) DataPlacementRestrictionChangePolicyDetails._all_fields_ = [ - ('previous_value', DataPlacementRestrictionChangePolicyDetails.previous_value.validator), - ('new_value', DataPlacementRestrictionChangePolicyDetails.new_value.validator), + ( + "previous_value", + DataPlacementRestrictionChangePolicyDetails.previous_value.validator, + ), + ("new_value", DataPlacementRestrictionChangePolicyDetails.new_value.validator), ] DataPlacementRestrictionChangePolicyType.description.validator = bv.String() -DataPlacementRestrictionChangePolicyType._all_field_names_ = set(['description']) -DataPlacementRestrictionChangePolicyType._all_fields_ = [('description', DataPlacementRestrictionChangePolicyType.description.validator)] +DataPlacementRestrictionChangePolicyType._all_field_names_ = set(["description"]) +DataPlacementRestrictionChangePolicyType._all_fields_ = [ + ("description", DataPlacementRestrictionChangePolicyType.description.validator) +] -DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator = PlacementRestriction_validator -DataPlacementRestrictionSatisfyPolicyDetails._all_field_names_ = set(['placement_restriction']) -DataPlacementRestrictionSatisfyPolicyDetails._all_fields_ = [('placement_restriction', DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator)] +DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator = ( + PlacementRestriction_validator +) +DataPlacementRestrictionSatisfyPolicyDetails._all_field_names_ = set(["placement_restriction"]) +DataPlacementRestrictionSatisfyPolicyDetails._all_fields_ = [ + ( + "placement_restriction", + DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator, + ) +] DataPlacementRestrictionSatisfyPolicyType.description.validator = bv.String() -DataPlacementRestrictionSatisfyPolicyType._all_field_names_ = set(['description']) -DataPlacementRestrictionSatisfyPolicyType._all_fields_ = [('description', DataPlacementRestrictionSatisfyPolicyType.description.validator)] +DataPlacementRestrictionSatisfyPolicyType._all_field_names_ = set(["description"]) +DataPlacementRestrictionSatisfyPolicyType._all_fields_ = [ + ("description", DataPlacementRestrictionSatisfyPolicyType.description.validator) +] DataResidencyMigrationRequestSuccessfulDetails._all_field_names_ = set([]) DataResidencyMigrationRequestSuccessfulDetails._all_fields_ = [] DataResidencyMigrationRequestSuccessfulType.description.validator = bv.String() -DataResidencyMigrationRequestSuccessfulType._all_field_names_ = set(['description']) -DataResidencyMigrationRequestSuccessfulType._all_fields_ = [('description', DataResidencyMigrationRequestSuccessfulType.description.validator)] +DataResidencyMigrationRequestSuccessfulType._all_field_names_ = set(["description"]) +DataResidencyMigrationRequestSuccessfulType._all_fields_ = [ + ("description", DataResidencyMigrationRequestSuccessfulType.description.validator) +] DataResidencyMigrationRequestUnsuccessfulDetails._all_field_names_ = set([]) DataResidencyMigrationRequestUnsuccessfulDetails._all_fields_ = [] DataResidencyMigrationRequestUnsuccessfulType.description.validator = bv.String() -DataResidencyMigrationRequestUnsuccessfulType._all_field_names_ = set(['description']) -DataResidencyMigrationRequestUnsuccessfulType._all_fields_ = [('description', DataResidencyMigrationRequestUnsuccessfulType.description.validator)] +DataResidencyMigrationRequestUnsuccessfulType._all_field_names_ = set(["description"]) +DataResidencyMigrationRequestUnsuccessfulType._all_fields_ = [ + ("description", DataResidencyMigrationRequestUnsuccessfulType.description.validator) +] DefaultLinkExpirationDaysPolicy._day_1_validator = bv.Void() DefaultLinkExpirationDaysPolicy._day_180_validator = bv.Void() @@ -95793,62 +100227,80 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DefaultLinkExpirationDaysPolicy._year_1_validator = bv.Void() DefaultLinkExpirationDaysPolicy._other_validator = bv.Void() DefaultLinkExpirationDaysPolicy._tagmap = { - 'day_1': DefaultLinkExpirationDaysPolicy._day_1_validator, - 'day_180': DefaultLinkExpirationDaysPolicy._day_180_validator, - 'day_3': DefaultLinkExpirationDaysPolicy._day_3_validator, - 'day_30': DefaultLinkExpirationDaysPolicy._day_30_validator, - 'day_7': DefaultLinkExpirationDaysPolicy._day_7_validator, - 'day_90': DefaultLinkExpirationDaysPolicy._day_90_validator, - 'none': DefaultLinkExpirationDaysPolicy._none_validator, - 'year_1': DefaultLinkExpirationDaysPolicy._year_1_validator, - 'other': DefaultLinkExpirationDaysPolicy._other_validator, + "day_1": DefaultLinkExpirationDaysPolicy._day_1_validator, + "day_180": DefaultLinkExpirationDaysPolicy._day_180_validator, + "day_3": DefaultLinkExpirationDaysPolicy._day_3_validator, + "day_30": DefaultLinkExpirationDaysPolicy._day_30_validator, + "day_7": DefaultLinkExpirationDaysPolicy._day_7_validator, + "day_90": DefaultLinkExpirationDaysPolicy._day_90_validator, + "none": DefaultLinkExpirationDaysPolicy._none_validator, + "year_1": DefaultLinkExpirationDaysPolicy._year_1_validator, + "other": DefaultLinkExpirationDaysPolicy._other_validator, } -DefaultLinkExpirationDaysPolicy.day_1 = DefaultLinkExpirationDaysPolicy('day_1') -DefaultLinkExpirationDaysPolicy.day_180 = DefaultLinkExpirationDaysPolicy('day_180') -DefaultLinkExpirationDaysPolicy.day_3 = DefaultLinkExpirationDaysPolicy('day_3') -DefaultLinkExpirationDaysPolicy.day_30 = DefaultLinkExpirationDaysPolicy('day_30') -DefaultLinkExpirationDaysPolicy.day_7 = DefaultLinkExpirationDaysPolicy('day_7') -DefaultLinkExpirationDaysPolicy.day_90 = DefaultLinkExpirationDaysPolicy('day_90') -DefaultLinkExpirationDaysPolicy.none = DefaultLinkExpirationDaysPolicy('none') -DefaultLinkExpirationDaysPolicy.year_1 = DefaultLinkExpirationDaysPolicy('year_1') -DefaultLinkExpirationDaysPolicy.other = DefaultLinkExpirationDaysPolicy('other') +DefaultLinkExpirationDaysPolicy.day_1 = DefaultLinkExpirationDaysPolicy("day_1") +DefaultLinkExpirationDaysPolicy.day_180 = DefaultLinkExpirationDaysPolicy("day_180") +DefaultLinkExpirationDaysPolicy.day_3 = DefaultLinkExpirationDaysPolicy("day_3") +DefaultLinkExpirationDaysPolicy.day_30 = DefaultLinkExpirationDaysPolicy("day_30") +DefaultLinkExpirationDaysPolicy.day_7 = DefaultLinkExpirationDaysPolicy("day_7") +DefaultLinkExpirationDaysPolicy.day_90 = DefaultLinkExpirationDaysPolicy("day_90") +DefaultLinkExpirationDaysPolicy.none = DefaultLinkExpirationDaysPolicy("none") +DefaultLinkExpirationDaysPolicy.year_1 = DefaultLinkExpirationDaysPolicy("year_1") +DefaultLinkExpirationDaysPolicy.other = DefaultLinkExpirationDaysPolicy("other") DeleteTeamInviteLinkDetails.link_url.validator = bv.String() -DeleteTeamInviteLinkDetails._all_field_names_ = set(['link_url']) -DeleteTeamInviteLinkDetails._all_fields_ = [('link_url', DeleteTeamInviteLinkDetails.link_url.validator)] +DeleteTeamInviteLinkDetails._all_field_names_ = set(["link_url"]) +DeleteTeamInviteLinkDetails._all_fields_ = [ + ("link_url", DeleteTeamInviteLinkDetails.link_url.validator) +] DeleteTeamInviteLinkType.description.validator = bv.String() -DeleteTeamInviteLinkType._all_field_names_ = set(['description']) -DeleteTeamInviteLinkType._all_fields_ = [('description', DeleteTeamInviteLinkType.description.validator)] +DeleteTeamInviteLinkType._all_field_names_ = set(["description"]) +DeleteTeamInviteLinkType._all_fields_ = [ + ("description", DeleteTeamInviteLinkType.description.validator) +] DeviceSessionLogInfo.ip_address.validator = bv.Nullable(IpAddress_validator) DeviceSessionLogInfo.created.validator = bv.Nullable(common.DropboxTimestamp_validator) DeviceSessionLogInfo.updated.validator = bv.Nullable(common.DropboxTimestamp_validator) -DeviceSessionLogInfo._field_names_ = set([ - 'ip_address', - 'created', - 'updated', -]) +DeviceSessionLogInfo._field_names_ = set( + [ + "ip_address", + "created", + "updated", + ] +) DeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._field_names_ DeviceSessionLogInfo._fields_ = [ - ('ip_address', DeviceSessionLogInfo.ip_address.validator), - ('created', DeviceSessionLogInfo.created.validator), - ('updated', DeviceSessionLogInfo.updated.validator), + ("ip_address", DeviceSessionLogInfo.ip_address.validator), + ("created", DeviceSessionLogInfo.created.validator), + ("updated", DeviceSessionLogInfo.updated.validator), ] DeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._fields_ DeviceSessionLogInfo._tag_to_subtype_ = { - ('desktop_device_session',): DesktopDeviceSessionLogInfo_validator, - ('legacy_device_session',): LegacyDeviceSessionLogInfo_validator, - ('mobile_device_session',): MobileDeviceSessionLogInfo_validator, - ('web_device_session',): WebDeviceSessionLogInfo_validator, + ("desktop_device_session",): DesktopDeviceSessionLogInfo_validator, + ("legacy_device_session",): LegacyDeviceSessionLogInfo_validator, + ("mobile_device_session",): MobileDeviceSessionLogInfo_validator, + ("web_device_session",): WebDeviceSessionLogInfo_validator, } DeviceSessionLogInfo._pytype_to_tag_and_subtype_ = { - DesktopDeviceSessionLogInfo: (('desktop_device_session',), DesktopDeviceSessionLogInfo_validator), - LegacyDeviceSessionLogInfo: (('legacy_device_session',), LegacyDeviceSessionLogInfo_validator), - MobileDeviceSessionLogInfo: (('mobile_device_session',), MobileDeviceSessionLogInfo_validator), - WebDeviceSessionLogInfo: (('web_device_session',), WebDeviceSessionLogInfo_validator), + DesktopDeviceSessionLogInfo: ( + ("desktop_device_session",), + DesktopDeviceSessionLogInfo_validator, + ), + LegacyDeviceSessionLogInfo: ( + ("legacy_device_session",), + LegacyDeviceSessionLogInfo_validator, + ), + MobileDeviceSessionLogInfo: ( + ("mobile_device_session",), + MobileDeviceSessionLogInfo_validator, + ), + WebDeviceSessionLogInfo: ( + ("web_device_session",), + WebDeviceSessionLogInfo_validator, + ), } DeviceSessionLogInfo._is_catch_all_ = True @@ -95858,45 +100310,56 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DesktopDeviceSessionLogInfo.client_version.validator = bv.Nullable(bv.String()) DesktopDeviceSessionLogInfo.platform.validator = bv.String() DesktopDeviceSessionLogInfo.is_delete_on_unlink_supported.validator = bv.Boolean() -DesktopDeviceSessionLogInfo._field_names_ = set([ - 'session_info', - 'host_name', - 'client_type', - 'client_version', - 'platform', - 'is_delete_on_unlink_supported', -]) -DesktopDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union(DesktopDeviceSessionLogInfo._field_names_) +DesktopDeviceSessionLogInfo._field_names_ = set( + [ + "session_info", + "host_name", + "client_type", + "client_version", + "platform", + "is_delete_on_unlink_supported", + ] +) +DesktopDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union( + DesktopDeviceSessionLogInfo._field_names_ +) DesktopDeviceSessionLogInfo._fields_ = [ - ('session_info', DesktopDeviceSessionLogInfo.session_info.validator), - ('host_name', DesktopDeviceSessionLogInfo.host_name.validator), - ('client_type', DesktopDeviceSessionLogInfo.client_type.validator), - ('client_version', DesktopDeviceSessionLogInfo.client_version.validator), - ('platform', DesktopDeviceSessionLogInfo.platform.validator), - ('is_delete_on_unlink_supported', DesktopDeviceSessionLogInfo.is_delete_on_unlink_supported.validator), + ("session_info", DesktopDeviceSessionLogInfo.session_info.validator), + ("host_name", DesktopDeviceSessionLogInfo.host_name.validator), + ("client_type", DesktopDeviceSessionLogInfo.client_type.validator), + ("client_version", DesktopDeviceSessionLogInfo.client_version.validator), + ("platform", DesktopDeviceSessionLogInfo.platform.validator), + ( + "is_delete_on_unlink_supported", + DesktopDeviceSessionLogInfo.is_delete_on_unlink_supported.validator, + ), ] -DesktopDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + DesktopDeviceSessionLogInfo._fields_ +DesktopDeviceSessionLogInfo._all_fields_ = ( + DeviceSessionLogInfo._all_fields_ + DesktopDeviceSessionLogInfo._fields_ +) SessionLogInfo.session_id.validator = bv.Nullable(common.SessionId_validator) -SessionLogInfo._field_names_ = set(['session_id']) +SessionLogInfo._field_names_ = set(["session_id"]) SessionLogInfo._all_field_names_ = SessionLogInfo._field_names_ -SessionLogInfo._fields_ = [('session_id', SessionLogInfo.session_id.validator)] +SessionLogInfo._fields_ = [("session_id", SessionLogInfo.session_id.validator)] SessionLogInfo._all_fields_ = SessionLogInfo._fields_ SessionLogInfo._tag_to_subtype_ = { - ('desktop',): DesktopSessionLogInfo_validator, - ('mobile',): MobileSessionLogInfo_validator, - ('web',): WebSessionLogInfo_validator, + ("desktop",): DesktopSessionLogInfo_validator, + ("mobile",): MobileSessionLogInfo_validator, + ("web",): WebSessionLogInfo_validator, } SessionLogInfo._pytype_to_tag_and_subtype_ = { - DesktopSessionLogInfo: (('desktop',), DesktopSessionLogInfo_validator), - MobileSessionLogInfo: (('mobile',), MobileSessionLogInfo_validator), - WebSessionLogInfo: (('web',), WebSessionLogInfo_validator), + DesktopSessionLogInfo: (("desktop",), DesktopSessionLogInfo_validator), + MobileSessionLogInfo: (("mobile",), MobileSessionLogInfo_validator), + WebSessionLogInfo: (("web",), WebSessionLogInfo_validator), } SessionLogInfo._is_catch_all_ = True DesktopSessionLogInfo._field_names_ = set([]) -DesktopSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union(DesktopSessionLogInfo._field_names_) +DesktopSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union( + DesktopSessionLogInfo._field_names_ +) DesktopSessionLogInfo._fields_ = [] DesktopSessionLogInfo._all_fields_ = SessionLogInfo._all_fields_ + DesktopSessionLogInfo._fields_ @@ -95904,687 +100367,909 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeviceApprovalsAddExceptionDetails._all_fields_ = [] DeviceApprovalsAddExceptionType.description.validator = bv.String() -DeviceApprovalsAddExceptionType._all_field_names_ = set(['description']) -DeviceApprovalsAddExceptionType._all_fields_ = [('description', DeviceApprovalsAddExceptionType.description.validator)] - -DeviceApprovalsChangeDesktopPolicyDetails.new_value.validator = bv.Nullable(DeviceApprovalsPolicy_validator) -DeviceApprovalsChangeDesktopPolicyDetails.previous_value.validator = bv.Nullable(DeviceApprovalsPolicy_validator) -DeviceApprovalsChangeDesktopPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +DeviceApprovalsAddExceptionType._all_field_names_ = set(["description"]) +DeviceApprovalsAddExceptionType._all_fields_ = [ + ("description", DeviceApprovalsAddExceptionType.description.validator) +] + +DeviceApprovalsChangeDesktopPolicyDetails.new_value.validator = bv.Nullable( + DeviceApprovalsPolicy_validator +) +DeviceApprovalsChangeDesktopPolicyDetails.previous_value.validator = bv.Nullable( + DeviceApprovalsPolicy_validator +) +DeviceApprovalsChangeDesktopPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) DeviceApprovalsChangeDesktopPolicyDetails._all_fields_ = [ - ('new_value', DeviceApprovalsChangeDesktopPolicyDetails.new_value.validator), - ('previous_value', DeviceApprovalsChangeDesktopPolicyDetails.previous_value.validator), + ("new_value", DeviceApprovalsChangeDesktopPolicyDetails.new_value.validator), + ( + "previous_value", + DeviceApprovalsChangeDesktopPolicyDetails.previous_value.validator, + ), ] DeviceApprovalsChangeDesktopPolicyType.description.validator = bv.String() -DeviceApprovalsChangeDesktopPolicyType._all_field_names_ = set(['description']) -DeviceApprovalsChangeDesktopPolicyType._all_fields_ = [('description', DeviceApprovalsChangeDesktopPolicyType.description.validator)] - -DeviceApprovalsChangeMobilePolicyDetails.new_value.validator = bv.Nullable(DeviceApprovalsPolicy_validator) -DeviceApprovalsChangeMobilePolicyDetails.previous_value.validator = bv.Nullable(DeviceApprovalsPolicy_validator) -DeviceApprovalsChangeMobilePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +DeviceApprovalsChangeDesktopPolicyType._all_field_names_ = set(["description"]) +DeviceApprovalsChangeDesktopPolicyType._all_fields_ = [ + ("description", DeviceApprovalsChangeDesktopPolicyType.description.validator) +] + +DeviceApprovalsChangeMobilePolicyDetails.new_value.validator = bv.Nullable( + DeviceApprovalsPolicy_validator +) +DeviceApprovalsChangeMobilePolicyDetails.previous_value.validator = bv.Nullable( + DeviceApprovalsPolicy_validator +) +DeviceApprovalsChangeMobilePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) DeviceApprovalsChangeMobilePolicyDetails._all_fields_ = [ - ('new_value', DeviceApprovalsChangeMobilePolicyDetails.new_value.validator), - ('previous_value', DeviceApprovalsChangeMobilePolicyDetails.previous_value.validator), + ("new_value", DeviceApprovalsChangeMobilePolicyDetails.new_value.validator), + ( + "previous_value", + DeviceApprovalsChangeMobilePolicyDetails.previous_value.validator, + ), ] DeviceApprovalsChangeMobilePolicyType.description.validator = bv.String() -DeviceApprovalsChangeMobilePolicyType._all_field_names_ = set(['description']) -DeviceApprovalsChangeMobilePolicyType._all_fields_ = [('description', DeviceApprovalsChangeMobilePolicyType.description.validator)] - -DeviceApprovalsChangeOverageActionDetails.new_value.validator = bv.Nullable(team_policies.RolloutMethod_validator) -DeviceApprovalsChangeOverageActionDetails.previous_value.validator = bv.Nullable(team_policies.RolloutMethod_validator) -DeviceApprovalsChangeOverageActionDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +DeviceApprovalsChangeMobilePolicyType._all_field_names_ = set(["description"]) +DeviceApprovalsChangeMobilePolicyType._all_fields_ = [ + ("description", DeviceApprovalsChangeMobilePolicyType.description.validator) +] + +DeviceApprovalsChangeOverageActionDetails.new_value.validator = bv.Nullable( + team_policies.RolloutMethod_validator +) +DeviceApprovalsChangeOverageActionDetails.previous_value.validator = bv.Nullable( + team_policies.RolloutMethod_validator +) +DeviceApprovalsChangeOverageActionDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) DeviceApprovalsChangeOverageActionDetails._all_fields_ = [ - ('new_value', DeviceApprovalsChangeOverageActionDetails.new_value.validator), - ('previous_value', DeviceApprovalsChangeOverageActionDetails.previous_value.validator), + ("new_value", DeviceApprovalsChangeOverageActionDetails.new_value.validator), + ( + "previous_value", + DeviceApprovalsChangeOverageActionDetails.previous_value.validator, + ), ] DeviceApprovalsChangeOverageActionType.description.validator = bv.String() -DeviceApprovalsChangeOverageActionType._all_field_names_ = set(['description']) -DeviceApprovalsChangeOverageActionType._all_fields_ = [('description', DeviceApprovalsChangeOverageActionType.description.validator)] - -DeviceApprovalsChangeUnlinkActionDetails.new_value.validator = bv.Nullable(DeviceUnlinkPolicy_validator) -DeviceApprovalsChangeUnlinkActionDetails.previous_value.validator = bv.Nullable(DeviceUnlinkPolicy_validator) -DeviceApprovalsChangeUnlinkActionDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +DeviceApprovalsChangeOverageActionType._all_field_names_ = set(["description"]) +DeviceApprovalsChangeOverageActionType._all_fields_ = [ + ("description", DeviceApprovalsChangeOverageActionType.description.validator) +] + +DeviceApprovalsChangeUnlinkActionDetails.new_value.validator = bv.Nullable( + DeviceUnlinkPolicy_validator +) +DeviceApprovalsChangeUnlinkActionDetails.previous_value.validator = bv.Nullable( + DeviceUnlinkPolicy_validator +) +DeviceApprovalsChangeUnlinkActionDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) DeviceApprovalsChangeUnlinkActionDetails._all_fields_ = [ - ('new_value', DeviceApprovalsChangeUnlinkActionDetails.new_value.validator), - ('previous_value', DeviceApprovalsChangeUnlinkActionDetails.previous_value.validator), + ("new_value", DeviceApprovalsChangeUnlinkActionDetails.new_value.validator), + ( + "previous_value", + DeviceApprovalsChangeUnlinkActionDetails.previous_value.validator, + ), ] DeviceApprovalsChangeUnlinkActionType.description.validator = bv.String() -DeviceApprovalsChangeUnlinkActionType._all_field_names_ = set(['description']) -DeviceApprovalsChangeUnlinkActionType._all_fields_ = [('description', DeviceApprovalsChangeUnlinkActionType.description.validator)] +DeviceApprovalsChangeUnlinkActionType._all_field_names_ = set(["description"]) +DeviceApprovalsChangeUnlinkActionType._all_fields_ = [ + ("description", DeviceApprovalsChangeUnlinkActionType.description.validator) +] DeviceApprovalsPolicy._limited_validator = bv.Void() DeviceApprovalsPolicy._unlimited_validator = bv.Void() DeviceApprovalsPolicy._other_validator = bv.Void() DeviceApprovalsPolicy._tagmap = { - 'limited': DeviceApprovalsPolicy._limited_validator, - 'unlimited': DeviceApprovalsPolicy._unlimited_validator, - 'other': DeviceApprovalsPolicy._other_validator, + "limited": DeviceApprovalsPolicy._limited_validator, + "unlimited": DeviceApprovalsPolicy._unlimited_validator, + "other": DeviceApprovalsPolicy._other_validator, } -DeviceApprovalsPolicy.limited = DeviceApprovalsPolicy('limited') -DeviceApprovalsPolicy.unlimited = DeviceApprovalsPolicy('unlimited') -DeviceApprovalsPolicy.other = DeviceApprovalsPolicy('other') +DeviceApprovalsPolicy.limited = DeviceApprovalsPolicy("limited") +DeviceApprovalsPolicy.unlimited = DeviceApprovalsPolicy("unlimited") +DeviceApprovalsPolicy.other = DeviceApprovalsPolicy("other") DeviceApprovalsRemoveExceptionDetails._all_field_names_ = set([]) DeviceApprovalsRemoveExceptionDetails._all_fields_ = [] DeviceApprovalsRemoveExceptionType.description.validator = bv.String() -DeviceApprovalsRemoveExceptionType._all_field_names_ = set(['description']) -DeviceApprovalsRemoveExceptionType._all_fields_ = [('description', DeviceApprovalsRemoveExceptionType.description.validator)] +DeviceApprovalsRemoveExceptionType._all_field_names_ = set(["description"]) +DeviceApprovalsRemoveExceptionType._all_fields_ = [ + ("description", DeviceApprovalsRemoveExceptionType.description.validator) +] DeviceChangeIpDesktopDetails.device_session_info.validator = DeviceSessionLogInfo_validator -DeviceChangeIpDesktopDetails._all_field_names_ = set(['device_session_info']) -DeviceChangeIpDesktopDetails._all_fields_ = [('device_session_info', DeviceChangeIpDesktopDetails.device_session_info.validator)] +DeviceChangeIpDesktopDetails._all_field_names_ = set(["device_session_info"]) +DeviceChangeIpDesktopDetails._all_fields_ = [ + ("device_session_info", DeviceChangeIpDesktopDetails.device_session_info.validator) +] DeviceChangeIpDesktopType.description.validator = bv.String() -DeviceChangeIpDesktopType._all_field_names_ = set(['description']) -DeviceChangeIpDesktopType._all_fields_ = [('description', DeviceChangeIpDesktopType.description.validator)] +DeviceChangeIpDesktopType._all_field_names_ = set(["description"]) +DeviceChangeIpDesktopType._all_fields_ = [ + ("description", DeviceChangeIpDesktopType.description.validator) +] -DeviceChangeIpMobileDetails.device_session_info.validator = bv.Nullable(DeviceSessionLogInfo_validator) -DeviceChangeIpMobileDetails._all_field_names_ = set(['device_session_info']) -DeviceChangeIpMobileDetails._all_fields_ = [('device_session_info', DeviceChangeIpMobileDetails.device_session_info.validator)] +DeviceChangeIpMobileDetails.device_session_info.validator = bv.Nullable( + DeviceSessionLogInfo_validator +) +DeviceChangeIpMobileDetails._all_field_names_ = set(["device_session_info"]) +DeviceChangeIpMobileDetails._all_fields_ = [ + ("device_session_info", DeviceChangeIpMobileDetails.device_session_info.validator) +] DeviceChangeIpMobileType.description.validator = bv.String() -DeviceChangeIpMobileType._all_field_names_ = set(['description']) -DeviceChangeIpMobileType._all_fields_ = [('description', DeviceChangeIpMobileType.description.validator)] +DeviceChangeIpMobileType._all_field_names_ = set(["description"]) +DeviceChangeIpMobileType._all_fields_ = [ + ("description", DeviceChangeIpMobileType.description.validator) +] DeviceChangeIpWebDetails.user_agent.validator = bv.String() -DeviceChangeIpWebDetails._all_field_names_ = set(['user_agent']) -DeviceChangeIpWebDetails._all_fields_ = [('user_agent', DeviceChangeIpWebDetails.user_agent.validator)] +DeviceChangeIpWebDetails._all_field_names_ = set(["user_agent"]) +DeviceChangeIpWebDetails._all_fields_ = [ + ("user_agent", DeviceChangeIpWebDetails.user_agent.validator) +] DeviceChangeIpWebType.description.validator = bv.String() -DeviceChangeIpWebType._all_field_names_ = set(['description']) -DeviceChangeIpWebType._all_fields_ = [('description', DeviceChangeIpWebType.description.validator)] +DeviceChangeIpWebType._all_field_names_ = set(["description"]) +DeviceChangeIpWebType._all_fields_ = [("description", DeviceChangeIpWebType.description.validator)] DeviceDeleteOnUnlinkFailDetails.session_info.validator = bv.Nullable(SessionLogInfo_validator) DeviceDeleteOnUnlinkFailDetails.display_name.validator = bv.Nullable(bv.String()) DeviceDeleteOnUnlinkFailDetails.num_failures.validator = bv.Int64() -DeviceDeleteOnUnlinkFailDetails._all_field_names_ = set([ - 'session_info', - 'display_name', - 'num_failures', -]) +DeviceDeleteOnUnlinkFailDetails._all_field_names_ = set( + [ + "session_info", + "display_name", + "num_failures", + ] +) DeviceDeleteOnUnlinkFailDetails._all_fields_ = [ - ('session_info', DeviceDeleteOnUnlinkFailDetails.session_info.validator), - ('display_name', DeviceDeleteOnUnlinkFailDetails.display_name.validator), - ('num_failures', DeviceDeleteOnUnlinkFailDetails.num_failures.validator), + ("session_info", DeviceDeleteOnUnlinkFailDetails.session_info.validator), + ("display_name", DeviceDeleteOnUnlinkFailDetails.display_name.validator), + ("num_failures", DeviceDeleteOnUnlinkFailDetails.num_failures.validator), ] DeviceDeleteOnUnlinkFailType.description.validator = bv.String() -DeviceDeleteOnUnlinkFailType._all_field_names_ = set(['description']) -DeviceDeleteOnUnlinkFailType._all_fields_ = [('description', DeviceDeleteOnUnlinkFailType.description.validator)] +DeviceDeleteOnUnlinkFailType._all_field_names_ = set(["description"]) +DeviceDeleteOnUnlinkFailType._all_fields_ = [ + ("description", DeviceDeleteOnUnlinkFailType.description.validator) +] DeviceDeleteOnUnlinkSuccessDetails.session_info.validator = bv.Nullable(SessionLogInfo_validator) DeviceDeleteOnUnlinkSuccessDetails.display_name.validator = bv.Nullable(bv.String()) -DeviceDeleteOnUnlinkSuccessDetails._all_field_names_ = set([ - 'session_info', - 'display_name', -]) +DeviceDeleteOnUnlinkSuccessDetails._all_field_names_ = set( + [ + "session_info", + "display_name", + ] +) DeviceDeleteOnUnlinkSuccessDetails._all_fields_ = [ - ('session_info', DeviceDeleteOnUnlinkSuccessDetails.session_info.validator), - ('display_name', DeviceDeleteOnUnlinkSuccessDetails.display_name.validator), + ("session_info", DeviceDeleteOnUnlinkSuccessDetails.session_info.validator), + ("display_name", DeviceDeleteOnUnlinkSuccessDetails.display_name.validator), ] DeviceDeleteOnUnlinkSuccessType.description.validator = bv.String() -DeviceDeleteOnUnlinkSuccessType._all_field_names_ = set(['description']) -DeviceDeleteOnUnlinkSuccessType._all_fields_ = [('description', DeviceDeleteOnUnlinkSuccessType.description.validator)] +DeviceDeleteOnUnlinkSuccessType._all_field_names_ = set(["description"]) +DeviceDeleteOnUnlinkSuccessType._all_fields_ = [ + ("description", DeviceDeleteOnUnlinkSuccessType.description.validator) +] DeviceLinkFailDetails.ip_address.validator = bv.Nullable(IpAddress_validator) DeviceLinkFailDetails.device_type.validator = DeviceType_validator -DeviceLinkFailDetails._all_field_names_ = set([ - 'ip_address', - 'device_type', -]) +DeviceLinkFailDetails._all_field_names_ = set( + [ + "ip_address", + "device_type", + ] +) DeviceLinkFailDetails._all_fields_ = [ - ('ip_address', DeviceLinkFailDetails.ip_address.validator), - ('device_type', DeviceLinkFailDetails.device_type.validator), + ("ip_address", DeviceLinkFailDetails.ip_address.validator), + ("device_type", DeviceLinkFailDetails.device_type.validator), ] DeviceLinkFailType.description.validator = bv.String() -DeviceLinkFailType._all_field_names_ = set(['description']) -DeviceLinkFailType._all_fields_ = [('description', DeviceLinkFailType.description.validator)] +DeviceLinkFailType._all_field_names_ = set(["description"]) +DeviceLinkFailType._all_fields_ = [("description", DeviceLinkFailType.description.validator)] DeviceLinkSuccessDetails.device_session_info.validator = bv.Nullable(DeviceSessionLogInfo_validator) -DeviceLinkSuccessDetails._all_field_names_ = set(['device_session_info']) -DeviceLinkSuccessDetails._all_fields_ = [('device_session_info', DeviceLinkSuccessDetails.device_session_info.validator)] +DeviceLinkSuccessDetails._all_field_names_ = set(["device_session_info"]) +DeviceLinkSuccessDetails._all_fields_ = [ + ("device_session_info", DeviceLinkSuccessDetails.device_session_info.validator) +] DeviceLinkSuccessType.description.validator = bv.String() -DeviceLinkSuccessType._all_field_names_ = set(['description']) -DeviceLinkSuccessType._all_fields_ = [('description', DeviceLinkSuccessType.description.validator)] +DeviceLinkSuccessType._all_field_names_ = set(["description"]) +DeviceLinkSuccessType._all_fields_ = [("description", DeviceLinkSuccessType.description.validator)] DeviceManagementDisabledDetails._all_field_names_ = set([]) DeviceManagementDisabledDetails._all_fields_ = [] DeviceManagementDisabledType.description.validator = bv.String() -DeviceManagementDisabledType._all_field_names_ = set(['description']) -DeviceManagementDisabledType._all_fields_ = [('description', DeviceManagementDisabledType.description.validator)] +DeviceManagementDisabledType._all_field_names_ = set(["description"]) +DeviceManagementDisabledType._all_fields_ = [ + ("description", DeviceManagementDisabledType.description.validator) +] DeviceManagementEnabledDetails._all_field_names_ = set([]) DeviceManagementEnabledDetails._all_fields_ = [] DeviceManagementEnabledType.description.validator = bv.String() -DeviceManagementEnabledType._all_field_names_ = set(['description']) -DeviceManagementEnabledType._all_fields_ = [('description', DeviceManagementEnabledType.description.validator)] +DeviceManagementEnabledType._all_field_names_ = set(["description"]) +DeviceManagementEnabledType._all_fields_ = [ + ("description", DeviceManagementEnabledType.description.validator) +] -DeviceSyncBackupStatusChangedDetails.desktop_device_session_info.validator = DesktopDeviceSessionLogInfo_validator +DeviceSyncBackupStatusChangedDetails.desktop_device_session_info.validator = ( + DesktopDeviceSessionLogInfo_validator +) DeviceSyncBackupStatusChangedDetails.previous_value.validator = BackupStatus_validator DeviceSyncBackupStatusChangedDetails.new_value.validator = BackupStatus_validator -DeviceSyncBackupStatusChangedDetails._all_field_names_ = set([ - 'desktop_device_session_info', - 'previous_value', - 'new_value', -]) +DeviceSyncBackupStatusChangedDetails._all_field_names_ = set( + [ + "desktop_device_session_info", + "previous_value", + "new_value", + ] +) DeviceSyncBackupStatusChangedDetails._all_fields_ = [ - ('desktop_device_session_info', DeviceSyncBackupStatusChangedDetails.desktop_device_session_info.validator), - ('previous_value', DeviceSyncBackupStatusChangedDetails.previous_value.validator), - ('new_value', DeviceSyncBackupStatusChangedDetails.new_value.validator), + ( + "desktop_device_session_info", + DeviceSyncBackupStatusChangedDetails.desktop_device_session_info.validator, + ), + ("previous_value", DeviceSyncBackupStatusChangedDetails.previous_value.validator), + ("new_value", DeviceSyncBackupStatusChangedDetails.new_value.validator), ] DeviceSyncBackupStatusChangedType.description.validator = bv.String() -DeviceSyncBackupStatusChangedType._all_field_names_ = set(['description']) -DeviceSyncBackupStatusChangedType._all_fields_ = [('description', DeviceSyncBackupStatusChangedType.description.validator)] +DeviceSyncBackupStatusChangedType._all_field_names_ = set(["description"]) +DeviceSyncBackupStatusChangedType._all_fields_ = [ + ("description", DeviceSyncBackupStatusChangedType.description.validator) +] DeviceType._desktop_validator = bv.Void() DeviceType._mobile_validator = bv.Void() DeviceType._other_validator = bv.Void() DeviceType._tagmap = { - 'desktop': DeviceType._desktop_validator, - 'mobile': DeviceType._mobile_validator, - 'other': DeviceType._other_validator, + "desktop": DeviceType._desktop_validator, + "mobile": DeviceType._mobile_validator, + "other": DeviceType._other_validator, } -DeviceType.desktop = DeviceType('desktop') -DeviceType.mobile = DeviceType('mobile') -DeviceType.other = DeviceType('other') +DeviceType.desktop = DeviceType("desktop") +DeviceType.mobile = DeviceType("mobile") +DeviceType.other = DeviceType("other") DeviceUnlinkDetails.session_info.validator = bv.Nullable(SessionLogInfo_validator) DeviceUnlinkDetails.display_name.validator = bv.Nullable(bv.String()) DeviceUnlinkDetails.delete_data.validator = bv.Boolean() -DeviceUnlinkDetails._all_field_names_ = set([ - 'session_info', - 'display_name', - 'delete_data', -]) +DeviceUnlinkDetails._all_field_names_ = set( + [ + "session_info", + "display_name", + "delete_data", + ] +) DeviceUnlinkDetails._all_fields_ = [ - ('session_info', DeviceUnlinkDetails.session_info.validator), - ('display_name', DeviceUnlinkDetails.display_name.validator), - ('delete_data', DeviceUnlinkDetails.delete_data.validator), + ("session_info", DeviceUnlinkDetails.session_info.validator), + ("display_name", DeviceUnlinkDetails.display_name.validator), + ("delete_data", DeviceUnlinkDetails.delete_data.validator), ] DeviceUnlinkPolicy._keep_validator = bv.Void() DeviceUnlinkPolicy._remove_validator = bv.Void() DeviceUnlinkPolicy._other_validator = bv.Void() DeviceUnlinkPolicy._tagmap = { - 'keep': DeviceUnlinkPolicy._keep_validator, - 'remove': DeviceUnlinkPolicy._remove_validator, - 'other': DeviceUnlinkPolicy._other_validator, + "keep": DeviceUnlinkPolicy._keep_validator, + "remove": DeviceUnlinkPolicy._remove_validator, + "other": DeviceUnlinkPolicy._other_validator, } -DeviceUnlinkPolicy.keep = DeviceUnlinkPolicy('keep') -DeviceUnlinkPolicy.remove = DeviceUnlinkPolicy('remove') -DeviceUnlinkPolicy.other = DeviceUnlinkPolicy('other') +DeviceUnlinkPolicy.keep = DeviceUnlinkPolicy("keep") +DeviceUnlinkPolicy.remove = DeviceUnlinkPolicy("remove") +DeviceUnlinkPolicy.other = DeviceUnlinkPolicy("other") DeviceUnlinkType.description.validator = bv.String() -DeviceUnlinkType._all_field_names_ = set(['description']) -DeviceUnlinkType._all_fields_ = [('description', DeviceUnlinkType.description.validator)] +DeviceUnlinkType._all_field_names_ = set(["description"]) +DeviceUnlinkType._all_fields_ = [("description", DeviceUnlinkType.description.validator)] DirectoryRestrictionsAddMembersDetails._all_field_names_ = set([]) DirectoryRestrictionsAddMembersDetails._all_fields_ = [] DirectoryRestrictionsAddMembersType.description.validator = bv.String() -DirectoryRestrictionsAddMembersType._all_field_names_ = set(['description']) -DirectoryRestrictionsAddMembersType._all_fields_ = [('description', DirectoryRestrictionsAddMembersType.description.validator)] +DirectoryRestrictionsAddMembersType._all_field_names_ = set(["description"]) +DirectoryRestrictionsAddMembersType._all_fields_ = [ + ("description", DirectoryRestrictionsAddMembersType.description.validator) +] DirectoryRestrictionsRemoveMembersDetails._all_field_names_ = set([]) DirectoryRestrictionsRemoveMembersDetails._all_fields_ = [] DirectoryRestrictionsRemoveMembersType.description.validator = bv.String() -DirectoryRestrictionsRemoveMembersType._all_field_names_ = set(['description']) -DirectoryRestrictionsRemoveMembersType._all_fields_ = [('description', DirectoryRestrictionsRemoveMembersType.description.validator)] +DirectoryRestrictionsRemoveMembersType._all_field_names_ = set(["description"]) +DirectoryRestrictionsRemoveMembersType._all_fields_ = [ + ("description", DirectoryRestrictionsRemoveMembersType.description.validator) +] DisabledDomainInvitesDetails._all_field_names_ = set([]) DisabledDomainInvitesDetails._all_fields_ = [] DisabledDomainInvitesType.description.validator = bv.String() -DisabledDomainInvitesType._all_field_names_ = set(['description']) -DisabledDomainInvitesType._all_fields_ = [('description', DisabledDomainInvitesType.description.validator)] +DisabledDomainInvitesType._all_field_names_ = set(["description"]) +DisabledDomainInvitesType._all_fields_ = [ + ("description", DisabledDomainInvitesType.description.validator) +] DispositionActionType._automatic_delete_validator = bv.Void() DispositionActionType._automatic_permanently_delete_validator = bv.Void() DispositionActionType._other_validator = bv.Void() DispositionActionType._tagmap = { - 'automatic_delete': DispositionActionType._automatic_delete_validator, - 'automatic_permanently_delete': DispositionActionType._automatic_permanently_delete_validator, - 'other': DispositionActionType._other_validator, + "automatic_delete": DispositionActionType._automatic_delete_validator, + "automatic_permanently_delete": DispositionActionType._automatic_permanently_delete_validator, + "other": DispositionActionType._other_validator, } -DispositionActionType.automatic_delete = DispositionActionType('automatic_delete') -DispositionActionType.automatic_permanently_delete = DispositionActionType('automatic_permanently_delete') -DispositionActionType.other = DispositionActionType('other') +DispositionActionType.automatic_delete = DispositionActionType("automatic_delete") +DispositionActionType.automatic_permanently_delete = DispositionActionType( + "automatic_permanently_delete" +) +DispositionActionType.other = DispositionActionType("other") DomainInvitesApproveRequestToJoinTeamDetails._all_field_names_ = set([]) DomainInvitesApproveRequestToJoinTeamDetails._all_fields_ = [] DomainInvitesApproveRequestToJoinTeamType.description.validator = bv.String() -DomainInvitesApproveRequestToJoinTeamType._all_field_names_ = set(['description']) -DomainInvitesApproveRequestToJoinTeamType._all_fields_ = [('description', DomainInvitesApproveRequestToJoinTeamType.description.validator)] +DomainInvitesApproveRequestToJoinTeamType._all_field_names_ = set(["description"]) +DomainInvitesApproveRequestToJoinTeamType._all_fields_ = [ + ("description", DomainInvitesApproveRequestToJoinTeamType.description.validator) +] DomainInvitesDeclineRequestToJoinTeamDetails._all_field_names_ = set([]) DomainInvitesDeclineRequestToJoinTeamDetails._all_fields_ = [] DomainInvitesDeclineRequestToJoinTeamType.description.validator = bv.String() -DomainInvitesDeclineRequestToJoinTeamType._all_field_names_ = set(['description']) -DomainInvitesDeclineRequestToJoinTeamType._all_fields_ = [('description', DomainInvitesDeclineRequestToJoinTeamType.description.validator)] +DomainInvitesDeclineRequestToJoinTeamType._all_field_names_ = set(["description"]) +DomainInvitesDeclineRequestToJoinTeamType._all_fields_ = [ + ("description", DomainInvitesDeclineRequestToJoinTeamType.description.validator) +] DomainInvitesEmailExistingUsersDetails.domain_name.validator = bv.String() DomainInvitesEmailExistingUsersDetails.num_recipients.validator = bv.UInt64() -DomainInvitesEmailExistingUsersDetails._all_field_names_ = set([ - 'domain_name', - 'num_recipients', -]) +DomainInvitesEmailExistingUsersDetails._all_field_names_ = set( + [ + "domain_name", + "num_recipients", + ] +) DomainInvitesEmailExistingUsersDetails._all_fields_ = [ - ('domain_name', DomainInvitesEmailExistingUsersDetails.domain_name.validator), - ('num_recipients', DomainInvitesEmailExistingUsersDetails.num_recipients.validator), + ("domain_name", DomainInvitesEmailExistingUsersDetails.domain_name.validator), + ("num_recipients", DomainInvitesEmailExistingUsersDetails.num_recipients.validator), ] DomainInvitesEmailExistingUsersType.description.validator = bv.String() -DomainInvitesEmailExistingUsersType._all_field_names_ = set(['description']) -DomainInvitesEmailExistingUsersType._all_fields_ = [('description', DomainInvitesEmailExistingUsersType.description.validator)] +DomainInvitesEmailExistingUsersType._all_field_names_ = set(["description"]) +DomainInvitesEmailExistingUsersType._all_fields_ = [ + ("description", DomainInvitesEmailExistingUsersType.description.validator) +] DomainInvitesRequestToJoinTeamDetails._all_field_names_ = set([]) DomainInvitesRequestToJoinTeamDetails._all_fields_ = [] DomainInvitesRequestToJoinTeamType.description.validator = bv.String() -DomainInvitesRequestToJoinTeamType._all_field_names_ = set(['description']) -DomainInvitesRequestToJoinTeamType._all_fields_ = [('description', DomainInvitesRequestToJoinTeamType.description.validator)] +DomainInvitesRequestToJoinTeamType._all_field_names_ = set(["description"]) +DomainInvitesRequestToJoinTeamType._all_fields_ = [ + ("description", DomainInvitesRequestToJoinTeamType.description.validator) +] DomainInvitesSetInviteNewUserPrefToNoDetails._all_field_names_ = set([]) DomainInvitesSetInviteNewUserPrefToNoDetails._all_fields_ = [] DomainInvitesSetInviteNewUserPrefToNoType.description.validator = bv.String() -DomainInvitesSetInviteNewUserPrefToNoType._all_field_names_ = set(['description']) -DomainInvitesSetInviteNewUserPrefToNoType._all_fields_ = [('description', DomainInvitesSetInviteNewUserPrefToNoType.description.validator)] +DomainInvitesSetInviteNewUserPrefToNoType._all_field_names_ = set(["description"]) +DomainInvitesSetInviteNewUserPrefToNoType._all_fields_ = [ + ("description", DomainInvitesSetInviteNewUserPrefToNoType.description.validator) +] DomainInvitesSetInviteNewUserPrefToYesDetails._all_field_names_ = set([]) DomainInvitesSetInviteNewUserPrefToYesDetails._all_fields_ = [] DomainInvitesSetInviteNewUserPrefToYesType.description.validator = bv.String() -DomainInvitesSetInviteNewUserPrefToYesType._all_field_names_ = set(['description']) -DomainInvitesSetInviteNewUserPrefToYesType._all_fields_ = [('description', DomainInvitesSetInviteNewUserPrefToYesType.description.validator)] +DomainInvitesSetInviteNewUserPrefToYesType._all_field_names_ = set(["description"]) +DomainInvitesSetInviteNewUserPrefToYesType._all_fields_ = [ + ("description", DomainInvitesSetInviteNewUserPrefToYesType.description.validator) +] DomainVerificationAddDomainFailDetails.domain_name.validator = bv.String() DomainVerificationAddDomainFailDetails.verification_method.validator = bv.Nullable(bv.String()) -DomainVerificationAddDomainFailDetails._all_field_names_ = set([ - 'domain_name', - 'verification_method', -]) +DomainVerificationAddDomainFailDetails._all_field_names_ = set( + [ + "domain_name", + "verification_method", + ] +) DomainVerificationAddDomainFailDetails._all_fields_ = [ - ('domain_name', DomainVerificationAddDomainFailDetails.domain_name.validator), - ('verification_method', DomainVerificationAddDomainFailDetails.verification_method.validator), + ("domain_name", DomainVerificationAddDomainFailDetails.domain_name.validator), + ( + "verification_method", + DomainVerificationAddDomainFailDetails.verification_method.validator, + ), ] DomainVerificationAddDomainFailType.description.validator = bv.String() -DomainVerificationAddDomainFailType._all_field_names_ = set(['description']) -DomainVerificationAddDomainFailType._all_fields_ = [('description', DomainVerificationAddDomainFailType.description.validator)] +DomainVerificationAddDomainFailType._all_field_names_ = set(["description"]) +DomainVerificationAddDomainFailType._all_fields_ = [ + ("description", DomainVerificationAddDomainFailType.description.validator) +] DomainVerificationAddDomainSuccessDetails.domain_names.validator = bv.List(bv.String()) DomainVerificationAddDomainSuccessDetails.verification_method.validator = bv.Nullable(bv.String()) -DomainVerificationAddDomainSuccessDetails._all_field_names_ = set([ - 'domain_names', - 'verification_method', -]) +DomainVerificationAddDomainSuccessDetails._all_field_names_ = set( + [ + "domain_names", + "verification_method", + ] +) DomainVerificationAddDomainSuccessDetails._all_fields_ = [ - ('domain_names', DomainVerificationAddDomainSuccessDetails.domain_names.validator), - ('verification_method', DomainVerificationAddDomainSuccessDetails.verification_method.validator), + ("domain_names", DomainVerificationAddDomainSuccessDetails.domain_names.validator), + ( + "verification_method", + DomainVerificationAddDomainSuccessDetails.verification_method.validator, + ), ] DomainVerificationAddDomainSuccessType.description.validator = bv.String() -DomainVerificationAddDomainSuccessType._all_field_names_ = set(['description']) -DomainVerificationAddDomainSuccessType._all_fields_ = [('description', DomainVerificationAddDomainSuccessType.description.validator)] +DomainVerificationAddDomainSuccessType._all_field_names_ = set(["description"]) +DomainVerificationAddDomainSuccessType._all_fields_ = [ + ("description", DomainVerificationAddDomainSuccessType.description.validator) +] DomainVerificationRemoveDomainDetails.domain_names.validator = bv.List(bv.String()) -DomainVerificationRemoveDomainDetails._all_field_names_ = set(['domain_names']) -DomainVerificationRemoveDomainDetails._all_fields_ = [('domain_names', DomainVerificationRemoveDomainDetails.domain_names.validator)] +DomainVerificationRemoveDomainDetails._all_field_names_ = set(["domain_names"]) +DomainVerificationRemoveDomainDetails._all_fields_ = [ + ("domain_names", DomainVerificationRemoveDomainDetails.domain_names.validator) +] DomainVerificationRemoveDomainType.description.validator = bv.String() -DomainVerificationRemoveDomainType._all_field_names_ = set(['description']) -DomainVerificationRemoveDomainType._all_fields_ = [('description', DomainVerificationRemoveDomainType.description.validator)] +DomainVerificationRemoveDomainType._all_field_names_ = set(["description"]) +DomainVerificationRemoveDomainType._all_fields_ = [ + ("description", DomainVerificationRemoveDomainType.description.validator) +] DownloadPolicyType._allow_validator = bv.Void() DownloadPolicyType._disallow_validator = bv.Void() DownloadPolicyType._other_validator = bv.Void() DownloadPolicyType._tagmap = { - 'allow': DownloadPolicyType._allow_validator, - 'disallow': DownloadPolicyType._disallow_validator, - 'other': DownloadPolicyType._other_validator, + "allow": DownloadPolicyType._allow_validator, + "disallow": DownloadPolicyType._disallow_validator, + "other": DownloadPolicyType._other_validator, } -DownloadPolicyType.allow = DownloadPolicyType('allow') -DownloadPolicyType.disallow = DownloadPolicyType('disallow') -DownloadPolicyType.other = DownloadPolicyType('other') +DownloadPolicyType.allow = DownloadPolicyType("allow") +DownloadPolicyType.disallow = DownloadPolicyType("disallow") +DownloadPolicyType.other = DownloadPolicyType("other") DropboxPasswordsExportedDetails.platform.validator = bv.String() -DropboxPasswordsExportedDetails._all_field_names_ = set(['platform']) -DropboxPasswordsExportedDetails._all_fields_ = [('platform', DropboxPasswordsExportedDetails.platform.validator)] +DropboxPasswordsExportedDetails._all_field_names_ = set(["platform"]) +DropboxPasswordsExportedDetails._all_fields_ = [ + ("platform", DropboxPasswordsExportedDetails.platform.validator) +] DropboxPasswordsExportedType.description.validator = bv.String() -DropboxPasswordsExportedType._all_field_names_ = set(['description']) -DropboxPasswordsExportedType._all_fields_ = [('description', DropboxPasswordsExportedType.description.validator)] +DropboxPasswordsExportedType._all_field_names_ = set(["description"]) +DropboxPasswordsExportedType._all_fields_ = [ + ("description", DropboxPasswordsExportedType.description.validator) +] DropboxPasswordsNewDeviceEnrolledDetails.is_first_device.validator = bv.Boolean() DropboxPasswordsNewDeviceEnrolledDetails.platform.validator = bv.String() -DropboxPasswordsNewDeviceEnrolledDetails._all_field_names_ = set([ - 'is_first_device', - 'platform', -]) +DropboxPasswordsNewDeviceEnrolledDetails._all_field_names_ = set( + [ + "is_first_device", + "platform", + ] +) DropboxPasswordsNewDeviceEnrolledDetails._all_fields_ = [ - ('is_first_device', DropboxPasswordsNewDeviceEnrolledDetails.is_first_device.validator), - ('platform', DropboxPasswordsNewDeviceEnrolledDetails.platform.validator), + ( + "is_first_device", + DropboxPasswordsNewDeviceEnrolledDetails.is_first_device.validator, + ), + ("platform", DropboxPasswordsNewDeviceEnrolledDetails.platform.validator), ] DropboxPasswordsNewDeviceEnrolledType.description.validator = bv.String() -DropboxPasswordsNewDeviceEnrolledType._all_field_names_ = set(['description']) -DropboxPasswordsNewDeviceEnrolledType._all_fields_ = [('description', DropboxPasswordsNewDeviceEnrolledType.description.validator)] +DropboxPasswordsNewDeviceEnrolledType._all_field_names_ = set(["description"]) +DropboxPasswordsNewDeviceEnrolledType._all_fields_ = [ + ("description", DropboxPasswordsNewDeviceEnrolledType.description.validator) +] DropboxPasswordsPolicy._default_validator = bv.Void() DropboxPasswordsPolicy._disabled_validator = bv.Void() DropboxPasswordsPolicy._enabled_validator = bv.Void() DropboxPasswordsPolicy._other_validator = bv.Void() DropboxPasswordsPolicy._tagmap = { - 'default': DropboxPasswordsPolicy._default_validator, - 'disabled': DropboxPasswordsPolicy._disabled_validator, - 'enabled': DropboxPasswordsPolicy._enabled_validator, - 'other': DropboxPasswordsPolicy._other_validator, + "default": DropboxPasswordsPolicy._default_validator, + "disabled": DropboxPasswordsPolicy._disabled_validator, + "enabled": DropboxPasswordsPolicy._enabled_validator, + "other": DropboxPasswordsPolicy._other_validator, } -DropboxPasswordsPolicy.default = DropboxPasswordsPolicy('default') -DropboxPasswordsPolicy.disabled = DropboxPasswordsPolicy('disabled') -DropboxPasswordsPolicy.enabled = DropboxPasswordsPolicy('enabled') -DropboxPasswordsPolicy.other = DropboxPasswordsPolicy('other') +DropboxPasswordsPolicy.default = DropboxPasswordsPolicy("default") +DropboxPasswordsPolicy.disabled = DropboxPasswordsPolicy("disabled") +DropboxPasswordsPolicy.enabled = DropboxPasswordsPolicy("enabled") +DropboxPasswordsPolicy.other = DropboxPasswordsPolicy("other") DropboxPasswordsPolicyChangedDetails.new_value.validator = DropboxPasswordsPolicy_validator DropboxPasswordsPolicyChangedDetails.previous_value.validator = DropboxPasswordsPolicy_validator -DropboxPasswordsPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +DropboxPasswordsPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) DropboxPasswordsPolicyChangedDetails._all_fields_ = [ - ('new_value', DropboxPasswordsPolicyChangedDetails.new_value.validator), - ('previous_value', DropboxPasswordsPolicyChangedDetails.previous_value.validator), + ("new_value", DropboxPasswordsPolicyChangedDetails.new_value.validator), + ("previous_value", DropboxPasswordsPolicyChangedDetails.previous_value.validator), ] DropboxPasswordsPolicyChangedType.description.validator = bv.String() -DropboxPasswordsPolicyChangedType._all_field_names_ = set(['description']) -DropboxPasswordsPolicyChangedType._all_fields_ = [('description', DropboxPasswordsPolicyChangedType.description.validator)] +DropboxPasswordsPolicyChangedType._all_field_names_ = set(["description"]) +DropboxPasswordsPolicyChangedType._all_fields_ = [ + ("description", DropboxPasswordsPolicyChangedType.description.validator) +] DurationLogInfo.unit.validator = TimeUnit_validator DurationLogInfo.amount.validator = bv.UInt64() -DurationLogInfo._all_field_names_ = set([ - 'unit', - 'amount', -]) +DurationLogInfo._all_field_names_ = set( + [ + "unit", + "amount", + ] +) DurationLogInfo._all_fields_ = [ - ('unit', DurationLogInfo.unit.validator), - ('amount', DurationLogInfo.amount.validator), + ("unit", DurationLogInfo.unit.validator), + ("amount", DurationLogInfo.amount.validator), ] EmailIngestPolicy._disabled_validator = bv.Void() EmailIngestPolicy._enabled_validator = bv.Void() EmailIngestPolicy._other_validator = bv.Void() EmailIngestPolicy._tagmap = { - 'disabled': EmailIngestPolicy._disabled_validator, - 'enabled': EmailIngestPolicy._enabled_validator, - 'other': EmailIngestPolicy._other_validator, + "disabled": EmailIngestPolicy._disabled_validator, + "enabled": EmailIngestPolicy._enabled_validator, + "other": EmailIngestPolicy._other_validator, } -EmailIngestPolicy.disabled = EmailIngestPolicy('disabled') -EmailIngestPolicy.enabled = EmailIngestPolicy('enabled') -EmailIngestPolicy.other = EmailIngestPolicy('other') +EmailIngestPolicy.disabled = EmailIngestPolicy("disabled") +EmailIngestPolicy.enabled = EmailIngestPolicy("enabled") +EmailIngestPolicy.other = EmailIngestPolicy("other") EmailIngestPolicyChangedDetails.new_value.validator = EmailIngestPolicy_validator EmailIngestPolicyChangedDetails.previous_value.validator = EmailIngestPolicy_validator -EmailIngestPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +EmailIngestPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) EmailIngestPolicyChangedDetails._all_fields_ = [ - ('new_value', EmailIngestPolicyChangedDetails.new_value.validator), - ('previous_value', EmailIngestPolicyChangedDetails.previous_value.validator), + ("new_value", EmailIngestPolicyChangedDetails.new_value.validator), + ("previous_value", EmailIngestPolicyChangedDetails.previous_value.validator), ] EmailIngestPolicyChangedType.description.validator = bv.String() -EmailIngestPolicyChangedType._all_field_names_ = set(['description']) -EmailIngestPolicyChangedType._all_fields_ = [('description', EmailIngestPolicyChangedType.description.validator)] +EmailIngestPolicyChangedType._all_field_names_ = set(["description"]) +EmailIngestPolicyChangedType._all_fields_ = [ + ("description", EmailIngestPolicyChangedType.description.validator) +] EmailIngestReceiveFileDetails.inbox_name.validator = bv.String() EmailIngestReceiveFileDetails.attachment_names.validator = bv.List(bv.String()) EmailIngestReceiveFileDetails.subject.validator = bv.Nullable(bv.String()) EmailIngestReceiveFileDetails.from_name.validator = bv.Nullable(common.DisplayNameLegacy_validator) EmailIngestReceiveFileDetails.from_email.validator = bv.Nullable(EmailAddress_validator) -EmailIngestReceiveFileDetails._all_field_names_ = set([ - 'inbox_name', - 'attachment_names', - 'subject', - 'from_name', - 'from_email', -]) +EmailIngestReceiveFileDetails._all_field_names_ = set( + [ + "inbox_name", + "attachment_names", + "subject", + "from_name", + "from_email", + ] +) EmailIngestReceiveFileDetails._all_fields_ = [ - ('inbox_name', EmailIngestReceiveFileDetails.inbox_name.validator), - ('attachment_names', EmailIngestReceiveFileDetails.attachment_names.validator), - ('subject', EmailIngestReceiveFileDetails.subject.validator), - ('from_name', EmailIngestReceiveFileDetails.from_name.validator), - ('from_email', EmailIngestReceiveFileDetails.from_email.validator), + ("inbox_name", EmailIngestReceiveFileDetails.inbox_name.validator), + ("attachment_names", EmailIngestReceiveFileDetails.attachment_names.validator), + ("subject", EmailIngestReceiveFileDetails.subject.validator), + ("from_name", EmailIngestReceiveFileDetails.from_name.validator), + ("from_email", EmailIngestReceiveFileDetails.from_email.validator), ] EmailIngestReceiveFileType.description.validator = bv.String() -EmailIngestReceiveFileType._all_field_names_ = set(['description']) -EmailIngestReceiveFileType._all_fields_ = [('description', EmailIngestReceiveFileType.description.validator)] +EmailIngestReceiveFileType._all_field_names_ = set(["description"]) +EmailIngestReceiveFileType._all_fields_ = [ + ("description", EmailIngestReceiveFileType.description.validator) +] EmmAddExceptionDetails._all_field_names_ = set([]) EmmAddExceptionDetails._all_fields_ = [] EmmAddExceptionType.description.validator = bv.String() -EmmAddExceptionType._all_field_names_ = set(['description']) -EmmAddExceptionType._all_fields_ = [('description', EmmAddExceptionType.description.validator)] +EmmAddExceptionType._all_field_names_ = set(["description"]) +EmmAddExceptionType._all_fields_ = [("description", EmmAddExceptionType.description.validator)] EmmChangePolicyDetails.new_value.validator = team_policies.EmmState_validator EmmChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.EmmState_validator) -EmmChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +EmmChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) EmmChangePolicyDetails._all_fields_ = [ - ('new_value', EmmChangePolicyDetails.new_value.validator), - ('previous_value', EmmChangePolicyDetails.previous_value.validator), + ("new_value", EmmChangePolicyDetails.new_value.validator), + ("previous_value", EmmChangePolicyDetails.previous_value.validator), ] EmmChangePolicyType.description.validator = bv.String() -EmmChangePolicyType._all_field_names_ = set(['description']) -EmmChangePolicyType._all_fields_ = [('description', EmmChangePolicyType.description.validator)] +EmmChangePolicyType._all_field_names_ = set(["description"]) +EmmChangePolicyType._all_fields_ = [("description", EmmChangePolicyType.description.validator)] EmmCreateExceptionsReportDetails._all_field_names_ = set([]) EmmCreateExceptionsReportDetails._all_fields_ = [] EmmCreateExceptionsReportType.description.validator = bv.String() -EmmCreateExceptionsReportType._all_field_names_ = set(['description']) -EmmCreateExceptionsReportType._all_fields_ = [('description', EmmCreateExceptionsReportType.description.validator)] +EmmCreateExceptionsReportType._all_field_names_ = set(["description"]) +EmmCreateExceptionsReportType._all_fields_ = [ + ("description", EmmCreateExceptionsReportType.description.validator) +] EmmCreateUsageReportDetails._all_field_names_ = set([]) EmmCreateUsageReportDetails._all_fields_ = [] EmmCreateUsageReportType.description.validator = bv.String() -EmmCreateUsageReportType._all_field_names_ = set(['description']) -EmmCreateUsageReportType._all_fields_ = [('description', EmmCreateUsageReportType.description.validator)] +EmmCreateUsageReportType._all_field_names_ = set(["description"]) +EmmCreateUsageReportType._all_fields_ = [ + ("description", EmmCreateUsageReportType.description.validator) +] EmmErrorDetails.error_details.validator = FailureDetailsLogInfo_validator -EmmErrorDetails._all_field_names_ = set(['error_details']) -EmmErrorDetails._all_fields_ = [('error_details', EmmErrorDetails.error_details.validator)] +EmmErrorDetails._all_field_names_ = set(["error_details"]) +EmmErrorDetails._all_fields_ = [("error_details", EmmErrorDetails.error_details.validator)] EmmErrorType.description.validator = bv.String() -EmmErrorType._all_field_names_ = set(['description']) -EmmErrorType._all_fields_ = [('description', EmmErrorType.description.validator)] +EmmErrorType._all_field_names_ = set(["description"]) +EmmErrorType._all_fields_ = [("description", EmmErrorType.description.validator)] EmmRefreshAuthTokenDetails._all_field_names_ = set([]) EmmRefreshAuthTokenDetails._all_fields_ = [] EmmRefreshAuthTokenType.description.validator = bv.String() -EmmRefreshAuthTokenType._all_field_names_ = set(['description']) -EmmRefreshAuthTokenType._all_fields_ = [('description', EmmRefreshAuthTokenType.description.validator)] +EmmRefreshAuthTokenType._all_field_names_ = set(["description"]) +EmmRefreshAuthTokenType._all_fields_ = [ + ("description", EmmRefreshAuthTokenType.description.validator) +] EmmRemoveExceptionDetails._all_field_names_ = set([]) EmmRemoveExceptionDetails._all_fields_ = [] EmmRemoveExceptionType.description.validator = bv.String() -EmmRemoveExceptionType._all_field_names_ = set(['description']) -EmmRemoveExceptionType._all_fields_ = [('description', EmmRemoveExceptionType.description.validator)] +EmmRemoveExceptionType._all_field_names_ = set(["description"]) +EmmRemoveExceptionType._all_fields_ = [ + ("description", EmmRemoveExceptionType.description.validator) +] EnabledDomainInvitesDetails._all_field_names_ = set([]) EnabledDomainInvitesDetails._all_fields_ = [] EnabledDomainInvitesType.description.validator = bv.String() -EnabledDomainInvitesType._all_field_names_ = set(['description']) -EnabledDomainInvitesType._all_fields_ = [('description', EnabledDomainInvitesType.description.validator)] +EnabledDomainInvitesType._all_field_names_ = set(["description"]) +EnabledDomainInvitesType._all_fields_ = [ + ("description", EnabledDomainInvitesType.description.validator) +] EncryptedFolderCancelTeamKeyRotationDetails.team_key_id.validator = bv.String() -EncryptedFolderCancelTeamKeyRotationDetails._all_field_names_ = set(['team_key_id']) -EncryptedFolderCancelTeamKeyRotationDetails._all_fields_ = [('team_key_id', EncryptedFolderCancelTeamKeyRotationDetails.team_key_id.validator)] +EncryptedFolderCancelTeamKeyRotationDetails._all_field_names_ = set(["team_key_id"]) +EncryptedFolderCancelTeamKeyRotationDetails._all_fields_ = [ + ("team_key_id", EncryptedFolderCancelTeamKeyRotationDetails.team_key_id.validator) +] EncryptedFolderCancelTeamKeyRotationType.description.validator = bv.String() -EncryptedFolderCancelTeamKeyRotationType._all_field_names_ = set(['description']) -EncryptedFolderCancelTeamKeyRotationType._all_fields_ = [('description', EncryptedFolderCancelTeamKeyRotationType.description.validator)] +EncryptedFolderCancelTeamKeyRotationType._all_field_names_ = set(["description"]) +EncryptedFolderCancelTeamKeyRotationType._all_fields_ = [ + ("description", EncryptedFolderCancelTeamKeyRotationType.description.validator) +] EncryptedFolderEnrollBackupKeyDetails.backup_key_id.validator = bv.String() -EncryptedFolderEnrollBackupKeyDetails._all_field_names_ = set(['backup_key_id']) -EncryptedFolderEnrollBackupKeyDetails._all_fields_ = [('backup_key_id', EncryptedFolderEnrollBackupKeyDetails.backup_key_id.validator)] +EncryptedFolderEnrollBackupKeyDetails._all_field_names_ = set(["backup_key_id"]) +EncryptedFolderEnrollBackupKeyDetails._all_fields_ = [ + ("backup_key_id", EncryptedFolderEnrollBackupKeyDetails.backup_key_id.validator) +] EncryptedFolderEnrollBackupKeyType.description.validator = bv.String() -EncryptedFolderEnrollBackupKeyType._all_field_names_ = set(['description']) -EncryptedFolderEnrollBackupKeyType._all_fields_ = [('description', EncryptedFolderEnrollBackupKeyType.description.validator)] +EncryptedFolderEnrollBackupKeyType._all_field_names_ = set(["description"]) +EncryptedFolderEnrollBackupKeyType._all_fields_ = [ + ("description", EncryptedFolderEnrollBackupKeyType.description.validator) +] EncryptedFolderEnrollClientDetails.client_key_id.validator = bv.String() -EncryptedFolderEnrollClientDetails._all_field_names_ = set(['client_key_id']) -EncryptedFolderEnrollClientDetails._all_fields_ = [('client_key_id', EncryptedFolderEnrollClientDetails.client_key_id.validator)] +EncryptedFolderEnrollClientDetails._all_field_names_ = set(["client_key_id"]) +EncryptedFolderEnrollClientDetails._all_fields_ = [ + ("client_key_id", EncryptedFolderEnrollClientDetails.client_key_id.validator) +] EncryptedFolderEnrollClientType.description.validator = bv.String() -EncryptedFolderEnrollClientType._all_field_names_ = set(['description']) -EncryptedFolderEnrollClientType._all_fields_ = [('description', EncryptedFolderEnrollClientType.description.validator)] +EncryptedFolderEnrollClientType._all_field_names_ = set(["description"]) +EncryptedFolderEnrollClientType._all_fields_ = [ + ("description", EncryptedFolderEnrollClientType.description.validator) +] EncryptedFolderEnrollTeamDetails._all_field_names_ = set([]) EncryptedFolderEnrollTeamDetails._all_fields_ = [] EncryptedFolderEnrollTeamType.description.validator = bv.String() -EncryptedFolderEnrollTeamType._all_field_names_ = set(['description']) -EncryptedFolderEnrollTeamType._all_fields_ = [('description', EncryptedFolderEnrollTeamType.description.validator)] +EncryptedFolderEnrollTeamType._all_field_names_ = set(["description"]) +EncryptedFolderEnrollTeamType._all_fields_ = [ + ("description", EncryptedFolderEnrollTeamType.description.validator) +] EncryptedFolderFinishTeamUnenrollmentDetails._all_field_names_ = set([]) EncryptedFolderFinishTeamUnenrollmentDetails._all_fields_ = [] EncryptedFolderFinishTeamUnenrollmentType.description.validator = bv.String() -EncryptedFolderFinishTeamUnenrollmentType._all_field_names_ = set(['description']) -EncryptedFolderFinishTeamUnenrollmentType._all_fields_ = [('description', EncryptedFolderFinishTeamUnenrollmentType.description.validator)] +EncryptedFolderFinishTeamUnenrollmentType._all_field_names_ = set(["description"]) +EncryptedFolderFinishTeamUnenrollmentType._all_fields_ = [ + ("description", EncryptedFolderFinishTeamUnenrollmentType.description.validator) +] EncryptedFolderInitTeamKeyRotationDetails.team_key_id.validator = bv.String() -EncryptedFolderInitTeamKeyRotationDetails._all_field_names_ = set(['team_key_id']) -EncryptedFolderInitTeamKeyRotationDetails._all_fields_ = [('team_key_id', EncryptedFolderInitTeamKeyRotationDetails.team_key_id.validator)] +EncryptedFolderInitTeamKeyRotationDetails._all_field_names_ = set(["team_key_id"]) +EncryptedFolderInitTeamKeyRotationDetails._all_fields_ = [ + ("team_key_id", EncryptedFolderInitTeamKeyRotationDetails.team_key_id.validator) +] EncryptedFolderInitTeamKeyRotationType.description.validator = bv.String() -EncryptedFolderInitTeamKeyRotationType._all_field_names_ = set(['description']) -EncryptedFolderInitTeamKeyRotationType._all_fields_ = [('description', EncryptedFolderInitTeamKeyRotationType.description.validator)] +EncryptedFolderInitTeamKeyRotationType._all_field_names_ = set(["description"]) +EncryptedFolderInitTeamKeyRotationType._all_fields_ = [ + ("description", EncryptedFolderInitTeamKeyRotationType.description.validator) +] EncryptedFolderInitTeamUnenrollmentDetails._all_field_names_ = set([]) EncryptedFolderInitTeamUnenrollmentDetails._all_fields_ = [] EncryptedFolderInitTeamUnenrollmentType.description.validator = bv.String() -EncryptedFolderInitTeamUnenrollmentType._all_field_names_ = set(['description']) -EncryptedFolderInitTeamUnenrollmentType._all_fields_ = [('description', EncryptedFolderInitTeamUnenrollmentType.description.validator)] +EncryptedFolderInitTeamUnenrollmentType._all_field_names_ = set(["description"]) +EncryptedFolderInitTeamUnenrollmentType._all_fields_ = [ + ("description", EncryptedFolderInitTeamUnenrollmentType.description.validator) +] EncryptedFolderRemoveBackupKeyDetails.backup_key_id.validator = bv.String() -EncryptedFolderRemoveBackupKeyDetails._all_field_names_ = set(['backup_key_id']) -EncryptedFolderRemoveBackupKeyDetails._all_fields_ = [('backup_key_id', EncryptedFolderRemoveBackupKeyDetails.backup_key_id.validator)] +EncryptedFolderRemoveBackupKeyDetails._all_field_names_ = set(["backup_key_id"]) +EncryptedFolderRemoveBackupKeyDetails._all_fields_ = [ + ("backup_key_id", EncryptedFolderRemoveBackupKeyDetails.backup_key_id.validator) +] EncryptedFolderRemoveBackupKeyType.description.validator = bv.String() -EncryptedFolderRemoveBackupKeyType._all_field_names_ = set(['description']) -EncryptedFolderRemoveBackupKeyType._all_fields_ = [('description', EncryptedFolderRemoveBackupKeyType.description.validator)] +EncryptedFolderRemoveBackupKeyType._all_field_names_ = set(["description"]) +EncryptedFolderRemoveBackupKeyType._all_fields_ = [ + ("description", EncryptedFolderRemoveBackupKeyType.description.validator) +] EncryptedFolderRotateTeamKeyDetails.team_key_id.validator = bv.String() -EncryptedFolderRotateTeamKeyDetails._all_field_names_ = set(['team_key_id']) -EncryptedFolderRotateTeamKeyDetails._all_fields_ = [('team_key_id', EncryptedFolderRotateTeamKeyDetails.team_key_id.validator)] +EncryptedFolderRotateTeamKeyDetails._all_field_names_ = set(["team_key_id"]) +EncryptedFolderRotateTeamKeyDetails._all_fields_ = [ + ("team_key_id", EncryptedFolderRotateTeamKeyDetails.team_key_id.validator) +] EncryptedFolderRotateTeamKeyType.description.validator = bv.String() -EncryptedFolderRotateTeamKeyType._all_field_names_ = set(['description']) -EncryptedFolderRotateTeamKeyType._all_fields_ = [('description', EncryptedFolderRotateTeamKeyType.description.validator)] +EncryptedFolderRotateTeamKeyType._all_field_names_ = set(["description"]) +EncryptedFolderRotateTeamKeyType._all_fields_ = [ + ("description", EncryptedFolderRotateTeamKeyType.description.validator) +] EncryptedFolderUnenrollClientDetails.client_key_id.validator = bv.String() -EncryptedFolderUnenrollClientDetails._all_field_names_ = set(['client_key_id']) -EncryptedFolderUnenrollClientDetails._all_fields_ = [('client_key_id', EncryptedFolderUnenrollClientDetails.client_key_id.validator)] +EncryptedFolderUnenrollClientDetails._all_field_names_ = set(["client_key_id"]) +EncryptedFolderUnenrollClientDetails._all_fields_ = [ + ("client_key_id", EncryptedFolderUnenrollClientDetails.client_key_id.validator) +] EncryptedFolderUnenrollClientType.description.validator = bv.String() -EncryptedFolderUnenrollClientType._all_field_names_ = set(['description']) -EncryptedFolderUnenrollClientType._all_fields_ = [('description', EncryptedFolderUnenrollClientType.description.validator)] +EncryptedFolderUnenrollClientType._all_field_names_ = set(["description"]) +EncryptedFolderUnenrollClientType._all_fields_ = [ + ("description", EncryptedFolderUnenrollClientType.description.validator) +] -EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details.validator = FedExtraDetails_validator -EndedEnterpriseAdminSessionDeprecatedDetails._all_field_names_ = set(['federation_extra_details']) -EndedEnterpriseAdminSessionDeprecatedDetails._all_fields_ = [('federation_extra_details', EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details.validator)] +EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details.validator = ( + FedExtraDetails_validator +) +EndedEnterpriseAdminSessionDeprecatedDetails._all_field_names_ = set(["federation_extra_details"]) +EndedEnterpriseAdminSessionDeprecatedDetails._all_fields_ = [ + ( + "federation_extra_details", + EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details.validator, + ) +] EndedEnterpriseAdminSessionDeprecatedType.description.validator = bv.String() -EndedEnterpriseAdminSessionDeprecatedType._all_field_names_ = set(['description']) -EndedEnterpriseAdminSessionDeprecatedType._all_fields_ = [('description', EndedEnterpriseAdminSessionDeprecatedType.description.validator)] +EndedEnterpriseAdminSessionDeprecatedType._all_field_names_ = set(["description"]) +EndedEnterpriseAdminSessionDeprecatedType._all_fields_ = [ + ("description", EndedEnterpriseAdminSessionDeprecatedType.description.validator) +] EndedEnterpriseAdminSessionDetails._all_field_names_ = set([]) EndedEnterpriseAdminSessionDetails._all_fields_ = [] EndedEnterpriseAdminSessionType.description.validator = bv.String() -EndedEnterpriseAdminSessionType._all_field_names_ = set(['description']) -EndedEnterpriseAdminSessionType._all_fields_ = [('description', EndedEnterpriseAdminSessionType.description.validator)] +EndedEnterpriseAdminSessionType._all_field_names_ = set(["description"]) +EndedEnterpriseAdminSessionType._all_fields_ = [ + ("description", EndedEnterpriseAdminSessionType.description.validator) +] EnforceLinkPasswordPolicy._optional_validator = bv.Void() EnforceLinkPasswordPolicy._required_validator = bv.Void() EnforceLinkPasswordPolicy._other_validator = bv.Void() EnforceLinkPasswordPolicy._tagmap = { - 'optional': EnforceLinkPasswordPolicy._optional_validator, - 'required': EnforceLinkPasswordPolicy._required_validator, - 'other': EnforceLinkPasswordPolicy._other_validator, + "optional": EnforceLinkPasswordPolicy._optional_validator, + "required": EnforceLinkPasswordPolicy._required_validator, + "other": EnforceLinkPasswordPolicy._other_validator, } -EnforceLinkPasswordPolicy.optional = EnforceLinkPasswordPolicy('optional') -EnforceLinkPasswordPolicy.required = EnforceLinkPasswordPolicy('required') -EnforceLinkPasswordPolicy.other = EnforceLinkPasswordPolicy('other') +EnforceLinkPasswordPolicy.optional = EnforceLinkPasswordPolicy("optional") +EnforceLinkPasswordPolicy.required = EnforceLinkPasswordPolicy("required") +EnforceLinkPasswordPolicy.other = EnforceLinkPasswordPolicy("other") EnterpriseSettingsLockingDetails.team_name.validator = bv.String() EnterpriseSettingsLockingDetails.settings_page_name.validator = bv.String() EnterpriseSettingsLockingDetails.previous_settings_page_locking_state.validator = bv.String() EnterpriseSettingsLockingDetails.new_settings_page_locking_state.validator = bv.String() -EnterpriseSettingsLockingDetails._all_field_names_ = set([ - 'team_name', - 'settings_page_name', - 'previous_settings_page_locking_state', - 'new_settings_page_locking_state', -]) +EnterpriseSettingsLockingDetails._all_field_names_ = set( + [ + "team_name", + "settings_page_name", + "previous_settings_page_locking_state", + "new_settings_page_locking_state", + ] +) EnterpriseSettingsLockingDetails._all_fields_ = [ - ('team_name', EnterpriseSettingsLockingDetails.team_name.validator), - ('settings_page_name', EnterpriseSettingsLockingDetails.settings_page_name.validator), - ('previous_settings_page_locking_state', EnterpriseSettingsLockingDetails.previous_settings_page_locking_state.validator), - ('new_settings_page_locking_state', EnterpriseSettingsLockingDetails.new_settings_page_locking_state.validator), + ("team_name", EnterpriseSettingsLockingDetails.team_name.validator), + ( + "settings_page_name", + EnterpriseSettingsLockingDetails.settings_page_name.validator, + ), + ( + "previous_settings_page_locking_state", + EnterpriseSettingsLockingDetails.previous_settings_page_locking_state.validator, + ), + ( + "new_settings_page_locking_state", + EnterpriseSettingsLockingDetails.new_settings_page_locking_state.validator, + ), ] EnterpriseSettingsLockingType.description.validator = bv.String() -EnterpriseSettingsLockingType._all_field_names_ = set(['description']) -EnterpriseSettingsLockingType._all_fields_ = [('description', EnterpriseSettingsLockingType.description.validator)] +EnterpriseSettingsLockingType._all_field_names_ = set(["description"]) +EnterpriseSettingsLockingType._all_fields_ = [ + ("description", EnterpriseSettingsLockingType.description.validator) +] EventCategory._admin_alerting_validator = bv.Void() EventCategory._apps_validator = bv.Void() @@ -96614,69 +101299,81 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventCategory._trusted_teams_validator = bv.Void() EventCategory._other_validator = bv.Void() EventCategory._tagmap = { - 'admin_alerting': EventCategory._admin_alerting_validator, - 'apps': EventCategory._apps_validator, - 'comments': EventCategory._comments_validator, - 'dash': EventCategory._dash_validator, - 'data_governance': EventCategory._data_governance_validator, - 'devices': EventCategory._devices_validator, - 'domains': EventCategory._domains_validator, - 'encryption': EventCategory._encryption_validator, - 'file_operations': EventCategory._file_operations_validator, - 'file_requests': EventCategory._file_requests_validator, - 'groups': EventCategory._groups_validator, - 'logins': EventCategory._logins_validator, - 'members': EventCategory._members_validator, - 'paper': EventCategory._paper_validator, - 'passwords': EventCategory._passwords_validator, - 'protect': EventCategory._protect_validator, - 'reports': EventCategory._reports_validator, - 'sharing': EventCategory._sharing_validator, - 'showcase': EventCategory._showcase_validator, - 'signatures': EventCategory._signatures_validator, - 'sso': EventCategory._sso_validator, - 'team_folders': EventCategory._team_folders_validator, - 'team_policies': EventCategory._team_policies_validator, - 'team_profile': EventCategory._team_profile_validator, - 'tfa': EventCategory._tfa_validator, - 'trusted_teams': EventCategory._trusted_teams_validator, - 'other': EventCategory._other_validator, + "admin_alerting": EventCategory._admin_alerting_validator, + "apps": EventCategory._apps_validator, + "comments": EventCategory._comments_validator, + "dash": EventCategory._dash_validator, + "data_governance": EventCategory._data_governance_validator, + "devices": EventCategory._devices_validator, + "domains": EventCategory._domains_validator, + "encryption": EventCategory._encryption_validator, + "file_operations": EventCategory._file_operations_validator, + "file_requests": EventCategory._file_requests_validator, + "groups": EventCategory._groups_validator, + "logins": EventCategory._logins_validator, + "members": EventCategory._members_validator, + "paper": EventCategory._paper_validator, + "passwords": EventCategory._passwords_validator, + "protect": EventCategory._protect_validator, + "reports": EventCategory._reports_validator, + "sharing": EventCategory._sharing_validator, + "showcase": EventCategory._showcase_validator, + "signatures": EventCategory._signatures_validator, + "sso": EventCategory._sso_validator, + "team_folders": EventCategory._team_folders_validator, + "team_policies": EventCategory._team_policies_validator, + "team_profile": EventCategory._team_profile_validator, + "tfa": EventCategory._tfa_validator, + "trusted_teams": EventCategory._trusted_teams_validator, + "other": EventCategory._other_validator, } -EventCategory.admin_alerting = EventCategory('admin_alerting') -EventCategory.apps = EventCategory('apps') -EventCategory.comments = EventCategory('comments') -EventCategory.dash = EventCategory('dash') -EventCategory.data_governance = EventCategory('data_governance') -EventCategory.devices = EventCategory('devices') -EventCategory.domains = EventCategory('domains') -EventCategory.encryption = EventCategory('encryption') -EventCategory.file_operations = EventCategory('file_operations') -EventCategory.file_requests = EventCategory('file_requests') -EventCategory.groups = EventCategory('groups') -EventCategory.logins = EventCategory('logins') -EventCategory.members = EventCategory('members') -EventCategory.paper = EventCategory('paper') -EventCategory.passwords = EventCategory('passwords') -EventCategory.protect = EventCategory('protect') -EventCategory.reports = EventCategory('reports') -EventCategory.sharing = EventCategory('sharing') -EventCategory.showcase = EventCategory('showcase') -EventCategory.signatures = EventCategory('signatures') -EventCategory.sso = EventCategory('sso') -EventCategory.team_folders = EventCategory('team_folders') -EventCategory.team_policies = EventCategory('team_policies') -EventCategory.team_profile = EventCategory('team_profile') -EventCategory.tfa = EventCategory('tfa') -EventCategory.trusted_teams = EventCategory('trusted_teams') -EventCategory.other = EventCategory('other') - -EventDetails._admin_alerting_alert_state_changed_details_validator = AdminAlertingAlertStateChangedDetails_validator -EventDetails._admin_alerting_changed_alert_config_details_validator = AdminAlertingChangedAlertConfigDetails_validator -EventDetails._admin_alerting_triggered_alert_details_validator = AdminAlertingTriggeredAlertDetails_validator -EventDetails._ransomware_restore_process_completed_details_validator = RansomwareRestoreProcessCompletedDetails_validator -EventDetails._ransomware_restore_process_started_details_validator = RansomwareRestoreProcessStartedDetails_validator -EventDetails._app_blocked_by_permissions_details_validator = AppBlockedByPermissionsDetails_validator +EventCategory.admin_alerting = EventCategory("admin_alerting") +EventCategory.apps = EventCategory("apps") +EventCategory.comments = EventCategory("comments") +EventCategory.dash = EventCategory("dash") +EventCategory.data_governance = EventCategory("data_governance") +EventCategory.devices = EventCategory("devices") +EventCategory.domains = EventCategory("domains") +EventCategory.encryption = EventCategory("encryption") +EventCategory.file_operations = EventCategory("file_operations") +EventCategory.file_requests = EventCategory("file_requests") +EventCategory.groups = EventCategory("groups") +EventCategory.logins = EventCategory("logins") +EventCategory.members = EventCategory("members") +EventCategory.paper = EventCategory("paper") +EventCategory.passwords = EventCategory("passwords") +EventCategory.protect = EventCategory("protect") +EventCategory.reports = EventCategory("reports") +EventCategory.sharing = EventCategory("sharing") +EventCategory.showcase = EventCategory("showcase") +EventCategory.signatures = EventCategory("signatures") +EventCategory.sso = EventCategory("sso") +EventCategory.team_folders = EventCategory("team_folders") +EventCategory.team_policies = EventCategory("team_policies") +EventCategory.team_profile = EventCategory("team_profile") +EventCategory.tfa = EventCategory("tfa") +EventCategory.trusted_teams = EventCategory("trusted_teams") +EventCategory.other = EventCategory("other") + +EventDetails._admin_alerting_alert_state_changed_details_validator = ( + AdminAlertingAlertStateChangedDetails_validator +) +EventDetails._admin_alerting_changed_alert_config_details_validator = ( + AdminAlertingChangedAlertConfigDetails_validator +) +EventDetails._admin_alerting_triggered_alert_details_validator = ( + AdminAlertingTriggeredAlertDetails_validator +) +EventDetails._ransomware_restore_process_completed_details_validator = ( + RansomwareRestoreProcessCompletedDetails_validator +) +EventDetails._ransomware_restore_process_started_details_validator = ( + RansomwareRestoreProcessStartedDetails_validator +) +EventDetails._app_blocked_by_permissions_details_validator = ( + AppBlockedByPermissionsDetails_validator +) EventDetails._app_link_team_details_validator = AppLinkTeamDetails_validator EventDetails._app_link_user_details_validator = AppLinkUserDetails_validator EventDetails._app_unlink_team_details_validator = AppUnlinkTeamDetails_validator @@ -96684,118 +101381,272 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._integration_connected_details_validator = IntegrationConnectedDetails_validator EventDetails._integration_disconnected_details_validator = IntegrationDisconnectedDetails_validator EventDetails._file_add_comment_details_validator = FileAddCommentDetails_validator -EventDetails._file_change_comment_subscription_details_validator = FileChangeCommentSubscriptionDetails_validator +EventDetails._file_change_comment_subscription_details_validator = ( + FileChangeCommentSubscriptionDetails_validator +) EventDetails._file_delete_comment_details_validator = FileDeleteCommentDetails_validator EventDetails._file_edit_comment_details_validator = FileEditCommentDetails_validator EventDetails._file_like_comment_details_validator = FileLikeCommentDetails_validator EventDetails._file_resolve_comment_details_validator = FileResolveCommentDetails_validator EventDetails._file_unlike_comment_details_validator = FileUnlikeCommentDetails_validator EventDetails._file_unresolve_comment_details_validator = FileUnresolveCommentDetails_validator -EventDetails._dash_added_comment_to_stack_details_validator = DashAddedCommentToStackDetails_validator +EventDetails._dash_added_comment_to_stack_details_validator = ( + DashAddedCommentToStackDetails_validator +) EventDetails._dash_added_connector_details_validator = DashAddedConnectorDetails_validator EventDetails._dash_added_link_to_stack_details_validator = DashAddedLinkToStackDetails_validator -EventDetails._dash_added_team_email_domain_allowlist_details_validator = DashAddedTeamEmailDomainAllowlistDetails_validator -EventDetails._dash_admin_added_org_wide_connector_details_validator = DashAdminAddedOrgWideConnectorDetails_validator -EventDetails._dash_admin_disabled_connector_details_validator = DashAdminDisabledConnectorDetails_validator -EventDetails._dash_admin_enabled_connector_details_validator = DashAdminEnabledConnectorDetails_validator -EventDetails._dash_admin_removed_org_wide_connector_details_validator = DashAdminRemovedOrgWideConnectorDetails_validator +EventDetails._dash_added_team_email_domain_allowlist_details_validator = ( + DashAddedTeamEmailDomainAllowlistDetails_validator +) +EventDetails._dash_admin_added_org_wide_connector_details_validator = ( + DashAdminAddedOrgWideConnectorDetails_validator +) +EventDetails._dash_admin_disabled_connector_details_validator = ( + DashAdminDisabledConnectorDetails_validator +) +EventDetails._dash_admin_enabled_connector_details_validator = ( + DashAdminEnabledConnectorDetails_validator +) +EventDetails._dash_admin_removed_org_wide_connector_details_validator = ( + DashAdminRemovedOrgWideConnectorDetails_validator +) EventDetails._dash_archived_stack_details_validator = DashArchivedStackDetails_validator -EventDetails._dash_changed_audience_of_shared_link_to_stack_details_validator = DashChangedAudienceOfSharedLinkToStackDetails_validator +EventDetails._dash_changed_audience_of_shared_link_to_stack_details_validator = ( + DashChangedAudienceOfSharedLinkToStackDetails_validator +) EventDetails._dash_cloned_stack_details_validator = DashClonedStackDetails_validator EventDetails._dash_connector_tools_call_details_validator = DashConnectorToolsCallDetails_validator EventDetails._dash_created_stack_details_validator = DashCreatedStackDetails_validator -EventDetails._dash_deleted_comment_from_stack_details_validator = DashDeletedCommentFromStackDetails_validator +EventDetails._dash_deleted_comment_from_stack_details_validator = ( + DashDeletedCommentFromStackDetails_validator +) EventDetails._dash_deleted_stack_details_validator = DashDeletedStackDetails_validator -EventDetails._dash_edited_comment_in_stack_details_validator = DashEditedCommentInStackDetails_validator -EventDetails._dash_external_user_opened_stack_details_validator = DashExternalUserOpenedStackDetails_validator -EventDetails._dash_first_launched_desktop_details_validator = DashFirstLaunchedDesktopDetails_validator -EventDetails._dash_first_launched_extension_details_validator = DashFirstLaunchedExtensionDetails_validator -EventDetails._dash_first_launched_web_start_page_details_validator = DashFirstLaunchedWebStartPageDetails_validator -EventDetails._dash_opened_shared_link_to_stack_details_validator = DashOpenedSharedLinkToStackDetails_validator +EventDetails._dash_edited_comment_in_stack_details_validator = ( + DashEditedCommentInStackDetails_validator +) +EventDetails._dash_external_user_opened_stack_details_validator = ( + DashExternalUserOpenedStackDetails_validator +) +EventDetails._dash_first_launched_desktop_details_validator = ( + DashFirstLaunchedDesktopDetails_validator +) +EventDetails._dash_first_launched_extension_details_validator = ( + DashFirstLaunchedExtensionDetails_validator +) +EventDetails._dash_first_launched_web_start_page_details_validator = ( + DashFirstLaunchedWebStartPageDetails_validator +) +EventDetails._dash_opened_shared_link_to_stack_details_validator = ( + DashOpenedSharedLinkToStackDetails_validator +) EventDetails._dash_opened_stack_details_validator = DashOpenedStackDetails_validator -EventDetails._dash_preview_opt_out_status_changed_details_validator = DashPreviewOptOutStatusChangedDetails_validator +EventDetails._dash_preview_opt_out_status_changed_details_validator = ( + DashPreviewOptOutStatusChangedDetails_validator +) EventDetails._dash_removed_connector_details_validator = DashRemovedConnectorDetails_validator -EventDetails._dash_removed_link_from_stack_details_validator = DashRemovedLinkFromStackDetails_validator -EventDetails._dash_removed_shared_link_to_stack_details_validator = DashRemovedSharedLinkToStackDetails_validator -EventDetails._dash_removed_team_email_domain_allowlist_details_validator = DashRemovedTeamEmailDomainAllowlistDetails_validator +EventDetails._dash_removed_link_from_stack_details_validator = ( + DashRemovedLinkFromStackDetails_validator +) +EventDetails._dash_removed_shared_link_to_stack_details_validator = ( + DashRemovedSharedLinkToStackDetails_validator +) +EventDetails._dash_removed_team_email_domain_allowlist_details_validator = ( + DashRemovedTeamEmailDomainAllowlistDetails_validator +) EventDetails._dash_renamed_stack_details_validator = DashRenamedStackDetails_validator EventDetails._dash_shared_link_to_stack_details_validator = DashSharedLinkToStackDetails_validator EventDetails._dash_unarchived_stack_details_validator = DashUnarchivedStackDetails_validator EventDetails._dash_viewed_company_stack_details_validator = DashViewedCompanyStackDetails_validator -EventDetails._dash_viewed_external_ai_activity_report_details_validator = DashViewedExternalAiActivityReportDetails_validator -EventDetails._governance_policy_add_folders_details_validator = GovernancePolicyAddFoldersDetails_validator -EventDetails._governance_policy_add_folder_failed_details_validator = GovernancePolicyAddFolderFailedDetails_validator -EventDetails._governance_policy_content_disposed_details_validator = GovernancePolicyContentDisposedDetails_validator +EventDetails._dash_viewed_external_ai_activity_report_details_validator = ( + DashViewedExternalAiActivityReportDetails_validator +) +EventDetails._governance_policy_add_folders_details_validator = ( + GovernancePolicyAddFoldersDetails_validator +) +EventDetails._governance_policy_add_folder_failed_details_validator = ( + GovernancePolicyAddFolderFailedDetails_validator +) +EventDetails._governance_policy_content_disposed_details_validator = ( + GovernancePolicyContentDisposedDetails_validator +) EventDetails._governance_policy_create_details_validator = GovernancePolicyCreateDetails_validator EventDetails._governance_policy_delete_details_validator = GovernancePolicyDeleteDetails_validator -EventDetails._governance_policy_edit_details_details_validator = GovernancePolicyEditDetailsDetails_validator -EventDetails._governance_policy_edit_duration_details_validator = GovernancePolicyEditDurationDetails_validator -EventDetails._governance_policy_export_created_details_validator = GovernancePolicyExportCreatedDetails_validator -EventDetails._governance_policy_export_removed_details_validator = GovernancePolicyExportRemovedDetails_validator -EventDetails._governance_policy_remove_folders_details_validator = GovernancePolicyRemoveFoldersDetails_validator -EventDetails._governance_policy_report_created_details_validator = GovernancePolicyReportCreatedDetails_validator -EventDetails._governance_policy_zip_part_downloaded_details_validator = GovernancePolicyZipPartDownloadedDetails_validator -EventDetails._legal_holds_activate_a_hold_details_validator = LegalHoldsActivateAHoldDetails_validator +EventDetails._governance_policy_edit_details_details_validator = ( + GovernancePolicyEditDetailsDetails_validator +) +EventDetails._governance_policy_edit_duration_details_validator = ( + GovernancePolicyEditDurationDetails_validator +) +EventDetails._governance_policy_export_created_details_validator = ( + GovernancePolicyExportCreatedDetails_validator +) +EventDetails._governance_policy_export_removed_details_validator = ( + GovernancePolicyExportRemovedDetails_validator +) +EventDetails._governance_policy_remove_folders_details_validator = ( + GovernancePolicyRemoveFoldersDetails_validator +) +EventDetails._governance_policy_report_created_details_validator = ( + GovernancePolicyReportCreatedDetails_validator +) +EventDetails._governance_policy_zip_part_downloaded_details_validator = ( + GovernancePolicyZipPartDownloadedDetails_validator +) +EventDetails._legal_holds_activate_a_hold_details_validator = ( + LegalHoldsActivateAHoldDetails_validator +) EventDetails._legal_holds_add_members_details_validator = LegalHoldsAddMembersDetails_validator -EventDetails._legal_holds_change_hold_details_details_validator = LegalHoldsChangeHoldDetailsDetails_validator -EventDetails._legal_holds_change_hold_name_details_validator = LegalHoldsChangeHoldNameDetails_validator +EventDetails._legal_holds_change_hold_details_details_validator = ( + LegalHoldsChangeHoldDetailsDetails_validator +) +EventDetails._legal_holds_change_hold_name_details_validator = ( + LegalHoldsChangeHoldNameDetails_validator +) EventDetails._legal_holds_export_a_hold_details_validator = LegalHoldsExportAHoldDetails_validator -EventDetails._legal_holds_export_cancelled_details_validator = LegalHoldsExportCancelledDetails_validator -EventDetails._legal_holds_export_downloaded_details_validator = LegalHoldsExportDownloadedDetails_validator -EventDetails._legal_holds_export_removed_details_validator = LegalHoldsExportRemovedDetails_validator +EventDetails._legal_holds_export_cancelled_details_validator = ( + LegalHoldsExportCancelledDetails_validator +) +EventDetails._legal_holds_export_downloaded_details_validator = ( + LegalHoldsExportDownloadedDetails_validator +) +EventDetails._legal_holds_export_removed_details_validator = ( + LegalHoldsExportRemovedDetails_validator +) EventDetails._legal_holds_release_a_hold_details_validator = LegalHoldsReleaseAHoldDetails_validator -EventDetails._legal_holds_remove_members_details_validator = LegalHoldsRemoveMembersDetails_validator +EventDetails._legal_holds_remove_members_details_validator = ( + LegalHoldsRemoveMembersDetails_validator +) EventDetails._legal_holds_report_a_hold_details_validator = LegalHoldsReportAHoldDetails_validator EventDetails._device_change_ip_desktop_details_validator = DeviceChangeIpDesktopDetails_validator EventDetails._device_change_ip_mobile_details_validator = DeviceChangeIpMobileDetails_validator EventDetails._device_change_ip_web_details_validator = DeviceChangeIpWebDetails_validator -EventDetails._device_delete_on_unlink_fail_details_validator = DeviceDeleteOnUnlinkFailDetails_validator -EventDetails._device_delete_on_unlink_success_details_validator = DeviceDeleteOnUnlinkSuccessDetails_validator +EventDetails._device_delete_on_unlink_fail_details_validator = ( + DeviceDeleteOnUnlinkFailDetails_validator +) +EventDetails._device_delete_on_unlink_success_details_validator = ( + DeviceDeleteOnUnlinkSuccessDetails_validator +) EventDetails._device_link_fail_details_validator = DeviceLinkFailDetails_validator EventDetails._device_link_success_details_validator = DeviceLinkSuccessDetails_validator -EventDetails._device_management_disabled_details_validator = DeviceManagementDisabledDetails_validator +EventDetails._device_management_disabled_details_validator = ( + DeviceManagementDisabledDetails_validator +) EventDetails._device_management_enabled_details_validator = DeviceManagementEnabledDetails_validator -EventDetails._device_sync_backup_status_changed_details_validator = DeviceSyncBackupStatusChangedDetails_validator +EventDetails._device_sync_backup_status_changed_details_validator = ( + DeviceSyncBackupStatusChangedDetails_validator +) EventDetails._device_unlink_details_validator = DeviceUnlinkDetails_validator -EventDetails._dropbox_passwords_exported_details_validator = DropboxPasswordsExportedDetails_validator -EventDetails._dropbox_passwords_new_device_enrolled_details_validator = DropboxPasswordsNewDeviceEnrolledDetails_validator +EventDetails._dropbox_passwords_exported_details_validator = ( + DropboxPasswordsExportedDetails_validator +) +EventDetails._dropbox_passwords_new_device_enrolled_details_validator = ( + DropboxPasswordsNewDeviceEnrolledDetails_validator +) EventDetails._emm_refresh_auth_token_details_validator = EmmRefreshAuthTokenDetails_validator -EventDetails._external_drive_backup_eligibility_status_checked_details_validator = ExternalDriveBackupEligibilityStatusCheckedDetails_validator -EventDetails._external_drive_backup_status_changed_details_validator = ExternalDriveBackupStatusChangedDetails_validator -EventDetails._account_capture_change_availability_details_validator = AccountCaptureChangeAvailabilityDetails_validator -EventDetails._account_capture_migrate_account_details_validator = AccountCaptureMigrateAccountDetails_validator -EventDetails._account_capture_notification_emails_sent_details_validator = AccountCaptureNotificationEmailsSentDetails_validator -EventDetails._account_capture_relinquish_account_details_validator = AccountCaptureRelinquishAccountDetails_validator +EventDetails._external_drive_backup_eligibility_status_checked_details_validator = ( + ExternalDriveBackupEligibilityStatusCheckedDetails_validator +) +EventDetails._external_drive_backup_status_changed_details_validator = ( + ExternalDriveBackupStatusChangedDetails_validator +) +EventDetails._account_capture_change_availability_details_validator = ( + AccountCaptureChangeAvailabilityDetails_validator +) +EventDetails._account_capture_migrate_account_details_validator = ( + AccountCaptureMigrateAccountDetails_validator +) +EventDetails._account_capture_notification_emails_sent_details_validator = ( + AccountCaptureNotificationEmailsSentDetails_validator +) +EventDetails._account_capture_relinquish_account_details_validator = ( + AccountCaptureRelinquishAccountDetails_validator +) EventDetails._disabled_domain_invites_details_validator = DisabledDomainInvitesDetails_validator -EventDetails._domain_invites_approve_request_to_join_team_details_validator = DomainInvitesApproveRequestToJoinTeamDetails_validator -EventDetails._domain_invites_decline_request_to_join_team_details_validator = DomainInvitesDeclineRequestToJoinTeamDetails_validator -EventDetails._domain_invites_email_existing_users_details_validator = DomainInvitesEmailExistingUsersDetails_validator -EventDetails._domain_invites_request_to_join_team_details_validator = DomainInvitesRequestToJoinTeamDetails_validator -EventDetails._domain_invites_set_invite_new_user_pref_to_no_details_validator = DomainInvitesSetInviteNewUserPrefToNoDetails_validator -EventDetails._domain_invites_set_invite_new_user_pref_to_yes_details_validator = DomainInvitesSetInviteNewUserPrefToYesDetails_validator -EventDetails._domain_verification_add_domain_fail_details_validator = DomainVerificationAddDomainFailDetails_validator -EventDetails._domain_verification_add_domain_success_details_validator = DomainVerificationAddDomainSuccessDetails_validator -EventDetails._domain_verification_remove_domain_details_validator = DomainVerificationRemoveDomainDetails_validator +EventDetails._domain_invites_approve_request_to_join_team_details_validator = ( + DomainInvitesApproveRequestToJoinTeamDetails_validator +) +EventDetails._domain_invites_decline_request_to_join_team_details_validator = ( + DomainInvitesDeclineRequestToJoinTeamDetails_validator +) +EventDetails._domain_invites_email_existing_users_details_validator = ( + DomainInvitesEmailExistingUsersDetails_validator +) +EventDetails._domain_invites_request_to_join_team_details_validator = ( + DomainInvitesRequestToJoinTeamDetails_validator +) +EventDetails._domain_invites_set_invite_new_user_pref_to_no_details_validator = ( + DomainInvitesSetInviteNewUserPrefToNoDetails_validator +) +EventDetails._domain_invites_set_invite_new_user_pref_to_yes_details_validator = ( + DomainInvitesSetInviteNewUserPrefToYesDetails_validator +) +EventDetails._domain_verification_add_domain_fail_details_validator = ( + DomainVerificationAddDomainFailDetails_validator +) +EventDetails._domain_verification_add_domain_success_details_validator = ( + DomainVerificationAddDomainSuccessDetails_validator +) +EventDetails._domain_verification_remove_domain_details_validator = ( + DomainVerificationRemoveDomainDetails_validator +) EventDetails._enabled_domain_invites_details_validator = EnabledDomainInvitesDetails_validator -EventDetails._encrypted_folder_cancel_team_key_rotation_details_validator = EncryptedFolderCancelTeamKeyRotationDetails_validator -EventDetails._encrypted_folder_enroll_backup_key_details_validator = EncryptedFolderEnrollBackupKeyDetails_validator -EventDetails._encrypted_folder_enroll_client_details_validator = EncryptedFolderEnrollClientDetails_validator -EventDetails._encrypted_folder_enroll_team_details_validator = EncryptedFolderEnrollTeamDetails_validator -EventDetails._encrypted_folder_finish_team_unenrollment_details_validator = EncryptedFolderFinishTeamUnenrollmentDetails_validator -EventDetails._encrypted_folder_init_team_key_rotation_details_validator = EncryptedFolderInitTeamKeyRotationDetails_validator -EventDetails._encrypted_folder_init_team_unenrollment_details_validator = EncryptedFolderInitTeamUnenrollmentDetails_validator -EventDetails._encrypted_folder_remove_backup_key_details_validator = EncryptedFolderRemoveBackupKeyDetails_validator -EventDetails._encrypted_folder_rotate_team_key_details_validator = EncryptedFolderRotateTeamKeyDetails_validator -EventDetails._encrypted_folder_unenroll_client_details_validator = EncryptedFolderUnenrollClientDetails_validator -EventDetails._team_encryption_key_activate_key_details_validator = TeamEncryptionKeyActivateKeyDetails_validator -EventDetails._team_encryption_key_cancel_key_deletion_details_validator = TeamEncryptionKeyCancelKeyDeletionDetails_validator -EventDetails._team_encryption_key_create_key_details_validator = TeamEncryptionKeyCreateKeyDetails_validator -EventDetails._team_encryption_key_deactivate_key_details_validator = TeamEncryptionKeyDeactivateKeyDetails_validator -EventDetails._team_encryption_key_delete_key_details_validator = TeamEncryptionKeyDeleteKeyDetails_validator -EventDetails._team_encryption_key_disable_key_details_validator = TeamEncryptionKeyDisableKeyDetails_validator -EventDetails._team_encryption_key_enable_key_details_validator = TeamEncryptionKeyEnableKeyDetails_validator -EventDetails._team_encryption_key_rotate_key_details_validator = TeamEncryptionKeyRotateKeyDetails_validator -EventDetails._team_encryption_key_schedule_key_deletion_details_validator = TeamEncryptionKeyScheduleKeyDeletionDetails_validator +EventDetails._encrypted_folder_cancel_team_key_rotation_details_validator = ( + EncryptedFolderCancelTeamKeyRotationDetails_validator +) +EventDetails._encrypted_folder_enroll_backup_key_details_validator = ( + EncryptedFolderEnrollBackupKeyDetails_validator +) +EventDetails._encrypted_folder_enroll_client_details_validator = ( + EncryptedFolderEnrollClientDetails_validator +) +EventDetails._encrypted_folder_enroll_team_details_validator = ( + EncryptedFolderEnrollTeamDetails_validator +) +EventDetails._encrypted_folder_finish_team_unenrollment_details_validator = ( + EncryptedFolderFinishTeamUnenrollmentDetails_validator +) +EventDetails._encrypted_folder_init_team_key_rotation_details_validator = ( + EncryptedFolderInitTeamKeyRotationDetails_validator +) +EventDetails._encrypted_folder_init_team_unenrollment_details_validator = ( + EncryptedFolderInitTeamUnenrollmentDetails_validator +) +EventDetails._encrypted_folder_remove_backup_key_details_validator = ( + EncryptedFolderRemoveBackupKeyDetails_validator +) +EventDetails._encrypted_folder_rotate_team_key_details_validator = ( + EncryptedFolderRotateTeamKeyDetails_validator +) +EventDetails._encrypted_folder_unenroll_client_details_validator = ( + EncryptedFolderUnenrollClientDetails_validator +) +EventDetails._team_encryption_key_activate_key_details_validator = ( + TeamEncryptionKeyActivateKeyDetails_validator +) +EventDetails._team_encryption_key_cancel_key_deletion_details_validator = ( + TeamEncryptionKeyCancelKeyDeletionDetails_validator +) +EventDetails._team_encryption_key_create_key_details_validator = ( + TeamEncryptionKeyCreateKeyDetails_validator +) +EventDetails._team_encryption_key_deactivate_key_details_validator = ( + TeamEncryptionKeyDeactivateKeyDetails_validator +) +EventDetails._team_encryption_key_delete_key_details_validator = ( + TeamEncryptionKeyDeleteKeyDetails_validator +) +EventDetails._team_encryption_key_disable_key_details_validator = ( + TeamEncryptionKeyDisableKeyDetails_validator +) +EventDetails._team_encryption_key_enable_key_details_validator = ( + TeamEncryptionKeyEnableKeyDetails_validator +) +EventDetails._team_encryption_key_rotate_key_details_validator = ( + TeamEncryptionKeyRotateKeyDetails_validator +) +EventDetails._team_encryption_key_schedule_key_deletion_details_validator = ( + TeamEncryptionKeyScheduleKeyDeletionDetails_validator +) EventDetails._apply_naming_convention_details_validator = ApplyNamingConventionDetails_validator EventDetails._create_folder_details_validator = CreateFolderDetails_validator EventDetails._file_add_details_validator = FileAddDetails_validator @@ -96805,7 +101656,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._file_download_details_validator = FileDownloadDetails_validator EventDetails._file_edit_details_validator = FileEditDetails_validator EventDetails._file_get_copy_reference_details_validator = FileGetCopyReferenceDetails_validator -EventDetails._file_locking_lock_status_changed_details_validator = FileLockingLockStatusChangedDetails_validator +EventDetails._file_locking_lock_status_changed_details_validator = ( + FileLockingLockStatusChangedDetails_validator +) EventDetails._file_move_details_validator = FileMoveDetails_validator EventDetails._file_permanently_delete_details_validator = FilePermanentlyDeleteDetails_validator EventDetails._file_preview_details_validator = FilePreviewDetails_validator @@ -96814,20 +101667,32 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._file_revert_details_validator = FileRevertDetails_validator EventDetails._file_rollback_changes_details_validator = FileRollbackChangesDetails_validator EventDetails._file_save_copy_reference_details_validator = FileSaveCopyReferenceDetails_validator -EventDetails._folder_overview_description_changed_details_validator = FolderOverviewDescriptionChangedDetails_validator -EventDetails._folder_overview_item_pinned_details_validator = FolderOverviewItemPinnedDetails_validator -EventDetails._folder_overview_item_unpinned_details_validator = FolderOverviewItemUnpinnedDetails_validator +EventDetails._folder_overview_description_changed_details_validator = ( + FolderOverviewDescriptionChangedDetails_validator +) +EventDetails._folder_overview_item_pinned_details_validator = ( + FolderOverviewItemPinnedDetails_validator +) +EventDetails._folder_overview_item_unpinned_details_validator = ( + FolderOverviewItemUnpinnedDetails_validator +) EventDetails._media_hub_file_downloaded_details_validator = MediaHubFileDownloadedDetails_validator EventDetails._object_label_added_details_validator = ObjectLabelAddedDetails_validator EventDetails._object_label_removed_details_validator = ObjectLabelRemovedDetails_validator -EventDetails._object_label_updated_value_details_validator = ObjectLabelUpdatedValueDetails_validator +EventDetails._object_label_updated_value_details_validator = ( + ObjectLabelUpdatedValueDetails_validator +) EventDetails._organize_folder_with_tidy_details_validator = OrganizeFolderWithTidyDetails_validator EventDetails._replay_file_delete_details_validator = ReplayFileDeleteDetails_validator EventDetails._replay_file_downloaded_details_validator = ReplayFileDownloadedDetails_validator -EventDetails._replay_team_project_created_details_validator = ReplayTeamProjectCreatedDetails_validator +EventDetails._replay_team_project_created_details_validator = ( + ReplayTeamProjectCreatedDetails_validator +) EventDetails._rewind_folder_details_validator = RewindFolderDetails_validator EventDetails._undo_naming_convention_details_validator = UndoNamingConventionDetails_validator -EventDetails._undo_organize_folder_with_tidy_details_validator = UndoOrganizeFolderWithTidyDetails_validator +EventDetails._undo_organize_folder_with_tidy_details_validator = ( + UndoOrganizeFolderWithTidyDetails_validator +) EventDetails._user_tags_added_details_validator = UserTagsAddedDetails_validator EventDetails._user_tags_removed_details_validator = UserTagsRemovedDetails_validator EventDetails._email_ingest_receive_file_details_validator = EmailIngestReceiveFileDetails_validator @@ -96840,12 +101705,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._group_add_external_id_details_validator = GroupAddExternalIdDetails_validator EventDetails._group_add_member_details_validator = GroupAddMemberDetails_validator EventDetails._group_change_external_id_details_validator = GroupChangeExternalIdDetails_validator -EventDetails._group_change_management_type_details_validator = GroupChangeManagementTypeDetails_validator +EventDetails._group_change_management_type_details_validator = ( + GroupChangeManagementTypeDetails_validator +) EventDetails._group_change_member_role_details_validator = GroupChangeMemberRoleDetails_validator EventDetails._group_create_details_validator = GroupCreateDetails_validator EventDetails._group_delete_details_validator = GroupDeleteDetails_validator EventDetails._group_description_updated_details_validator = GroupDescriptionUpdatedDetails_validator -EventDetails._group_external_sharing_setting_override_changed_details_validator = GroupExternalSharingSettingOverrideChangedDetails_validator +EventDetails._group_external_sharing_setting_override_changed_details_validator = ( + GroupExternalSharingSettingOverrideChangedDetails_validator +) EventDetails._group_join_policy_updated_details_validator = GroupJoinPolicyUpdatedDetails_validator EventDetails._group_moved_details_validator = GroupMovedDetails_validator EventDetails._group_remove_external_id_details_validator = GroupRemoveExternalIdDetails_validator @@ -96853,19 +101722,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._group_rename_details_validator = GroupRenameDetails_validator EventDetails._account_lock_or_unlocked_details_validator = AccountLockOrUnlockedDetails_validator EventDetails._emm_error_details_validator = EmmErrorDetails_validator -EventDetails._guest_admin_signed_in_via_trusted_teams_details_validator = GuestAdminSignedInViaTrustedTeamsDetails_validator -EventDetails._guest_admin_signed_out_via_trusted_teams_details_validator = GuestAdminSignedOutViaTrustedTeamsDetails_validator +EventDetails._guest_admin_signed_in_via_trusted_teams_details_validator = ( + GuestAdminSignedInViaTrustedTeamsDetails_validator +) +EventDetails._guest_admin_signed_out_via_trusted_teams_details_validator = ( + GuestAdminSignedOutViaTrustedTeamsDetails_validator +) EventDetails._login_fail_details_validator = LoginFailDetails_validator EventDetails._login_success_details_validator = LoginSuccessDetails_validator EventDetails._logout_details_validator = LogoutDetails_validator -EventDetails._reseller_support_session_end_details_validator = ResellerSupportSessionEndDetails_validator -EventDetails._reseller_support_session_start_details_validator = ResellerSupportSessionStartDetails_validator +EventDetails._reseller_support_session_end_details_validator = ( + ResellerSupportSessionEndDetails_validator +) +EventDetails._reseller_support_session_start_details_validator = ( + ResellerSupportSessionStartDetails_validator +) EventDetails._sign_in_as_session_end_details_validator = SignInAsSessionEndDetails_validator EventDetails._sign_in_as_session_start_details_validator = SignInAsSessionStartDetails_validator EventDetails._sso_error_details_validator = SsoErrorDetails_validator EventDetails._addon_assigned_details_validator = AddonAssignedDetails_validator EventDetails._addon_removed_details_validator = AddonRemovedDetails_validator -EventDetails._backup_admin_invitation_sent_details_validator = BackupAdminInvitationSentDetails_validator +EventDetails._backup_admin_invitation_sent_details_validator = ( + BackupAdminInvitationSentDetails_validator +) EventDetails._backup_invitation_opened_details_validator = BackupInvitationOpenedDetails_validator EventDetails._create_team_invite_link_details_validator = CreateTeamInviteLinkDetails_validator EventDetails._delete_team_invite_link_details_validator = DeleteTeamInviteLinkDetails_validator @@ -96874,27 +101753,55 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._member_change_admin_role_details_validator = MemberChangeAdminRoleDetails_validator EventDetails._member_change_email_details_validator = MemberChangeEmailDetails_validator EventDetails._member_change_external_id_details_validator = MemberChangeExternalIdDetails_validator -EventDetails._member_change_membership_type_details_validator = MemberChangeMembershipTypeDetails_validator +EventDetails._member_change_membership_type_details_validator = ( + MemberChangeMembershipTypeDetails_validator +) EventDetails._member_change_name_details_validator = MemberChangeNameDetails_validator -EventDetails._member_change_reseller_role_details_validator = MemberChangeResellerRoleDetails_validator +EventDetails._member_change_reseller_role_details_validator = ( + MemberChangeResellerRoleDetails_validator +) EventDetails._member_change_status_details_validator = MemberChangeStatusDetails_validator -EventDetails._member_delete_manual_contacts_details_validator = MemberDeleteManualContactsDetails_validator -EventDetails._member_delete_profile_photo_details_validator = MemberDeleteProfilePhotoDetails_validator -EventDetails._member_permanently_delete_account_contents_details_validator = MemberPermanentlyDeleteAccountContentsDetails_validator +EventDetails._member_delete_manual_contacts_details_validator = ( + MemberDeleteManualContactsDetails_validator +) +EventDetails._member_delete_profile_photo_details_validator = ( + MemberDeleteProfilePhotoDetails_validator +) +EventDetails._member_permanently_delete_account_contents_details_validator = ( + MemberPermanentlyDeleteAccountContentsDetails_validator +) EventDetails._member_remove_external_id_details_validator = MemberRemoveExternalIdDetails_validator EventDetails._member_set_profile_photo_details_validator = MemberSetProfilePhotoDetails_validator -EventDetails._member_space_limits_add_custom_quota_details_validator = MemberSpaceLimitsAddCustomQuotaDetails_validator -EventDetails._member_space_limits_change_custom_quota_details_validator = MemberSpaceLimitsChangeCustomQuotaDetails_validator -EventDetails._member_space_limits_change_status_details_validator = MemberSpaceLimitsChangeStatusDetails_validator -EventDetails._member_space_limits_remove_custom_quota_details_validator = MemberSpaceLimitsRemoveCustomQuotaDetails_validator +EventDetails._member_space_limits_add_custom_quota_details_validator = ( + MemberSpaceLimitsAddCustomQuotaDetails_validator +) +EventDetails._member_space_limits_change_custom_quota_details_validator = ( + MemberSpaceLimitsChangeCustomQuotaDetails_validator +) +EventDetails._member_space_limits_change_status_details_validator = ( + MemberSpaceLimitsChangeStatusDetails_validator +) +EventDetails._member_space_limits_remove_custom_quota_details_validator = ( + MemberSpaceLimitsRemoveCustomQuotaDetails_validator +) EventDetails._member_suggest_details_validator = MemberSuggestDetails_validator -EventDetails._member_transfer_account_contents_details_validator = MemberTransferAccountContentsDetails_validator -EventDetails._pending_secondary_email_added_details_validator = PendingSecondaryEmailAddedDetails_validator -EventDetails._product_assigned_to_member_details_validator = ProductAssignedToMemberDetails_validator -EventDetails._product_removed_from_member_details_validator = ProductRemovedFromMemberDetails_validator +EventDetails._member_transfer_account_contents_details_validator = ( + MemberTransferAccountContentsDetails_validator +) +EventDetails._pending_secondary_email_added_details_validator = ( + PendingSecondaryEmailAddedDetails_validator +) +EventDetails._product_assigned_to_member_details_validator = ( + ProductAssignedToMemberDetails_validator +) +EventDetails._product_removed_from_member_details_validator = ( + ProductRemovedFromMemberDetails_validator +) EventDetails._secondary_email_deleted_details_validator = SecondaryEmailDeletedDetails_validator EventDetails._secondary_email_verified_details_validator = SecondaryEmailVerifiedDetails_validator -EventDetails._secondary_mails_policy_changed_details_validator = SecondaryMailsPolicyChangedDetails_validator +EventDetails._secondary_mails_policy_changed_details_validator = ( + SecondaryMailsPolicyChangedDetails_validator +) EventDetails._binder_add_page_details_validator = BinderAddPageDetails_validator EventDetails._binder_add_section_details_validator = BinderAddSectionDetails_validator EventDetails._binder_remove_page_details_validator = BinderRemovePageDetails_validator @@ -96904,18 +101811,32 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._binder_reorder_page_details_validator = BinderReorderPageDetails_validator EventDetails._binder_reorder_section_details_validator = BinderReorderSectionDetails_validator EventDetails._paper_content_add_member_details_validator = PaperContentAddMemberDetails_validator -EventDetails._paper_content_add_to_folder_details_validator = PaperContentAddToFolderDetails_validator +EventDetails._paper_content_add_to_folder_details_validator = ( + PaperContentAddToFolderDetails_validator +) EventDetails._paper_content_archive_details_validator = PaperContentArchiveDetails_validator EventDetails._paper_content_create_details_validator = PaperContentCreateDetails_validator -EventDetails._paper_content_permanently_delete_details_validator = PaperContentPermanentlyDeleteDetails_validator -EventDetails._paper_content_remove_from_folder_details_validator = PaperContentRemoveFromFolderDetails_validator -EventDetails._paper_content_remove_member_details_validator = PaperContentRemoveMemberDetails_validator +EventDetails._paper_content_permanently_delete_details_validator = ( + PaperContentPermanentlyDeleteDetails_validator +) +EventDetails._paper_content_remove_from_folder_details_validator = ( + PaperContentRemoveFromFolderDetails_validator +) +EventDetails._paper_content_remove_member_details_validator = ( + PaperContentRemoveMemberDetails_validator +) EventDetails._paper_content_rename_details_validator = PaperContentRenameDetails_validator EventDetails._paper_content_restore_details_validator = PaperContentRestoreDetails_validator EventDetails._paper_doc_add_comment_details_validator = PaperDocAddCommentDetails_validator -EventDetails._paper_doc_change_member_role_details_validator = PaperDocChangeMemberRoleDetails_validator -EventDetails._paper_doc_change_sharing_policy_details_validator = PaperDocChangeSharingPolicyDetails_validator -EventDetails._paper_doc_change_subscription_details_validator = PaperDocChangeSubscriptionDetails_validator +EventDetails._paper_doc_change_member_role_details_validator = ( + PaperDocChangeMemberRoleDetails_validator +) +EventDetails._paper_doc_change_sharing_policy_details_validator = ( + PaperDocChangeSharingPolicyDetails_validator +) +EventDetails._paper_doc_change_subscription_details_validator = ( + PaperDocChangeSubscriptionDetails_validator +) EventDetails._paper_doc_deleted_details_validator = PaperDocDeletedDetails_validator EventDetails._paper_doc_delete_comment_details_validator = PaperDocDeleteCommentDetails_validator EventDetails._paper_doc_download_details_validator = PaperDocDownloadDetails_validator @@ -96923,94 +101844,206 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._paper_doc_edit_comment_details_validator = PaperDocEditCommentDetails_validator EventDetails._paper_doc_followed_details_validator = PaperDocFollowedDetails_validator EventDetails._paper_doc_mention_details_validator = PaperDocMentionDetails_validator -EventDetails._paper_doc_ownership_changed_details_validator = PaperDocOwnershipChangedDetails_validator +EventDetails._paper_doc_ownership_changed_details_validator = ( + PaperDocOwnershipChangedDetails_validator +) EventDetails._paper_doc_request_access_details_validator = PaperDocRequestAccessDetails_validator EventDetails._paper_doc_resolve_comment_details_validator = PaperDocResolveCommentDetails_validator EventDetails._paper_doc_revert_details_validator = PaperDocRevertDetails_validator EventDetails._paper_doc_slack_share_details_validator = PaperDocSlackShareDetails_validator EventDetails._paper_doc_team_invite_details_validator = PaperDocTeamInviteDetails_validator EventDetails._paper_doc_trashed_details_validator = PaperDocTrashedDetails_validator -EventDetails._paper_doc_unresolve_comment_details_validator = PaperDocUnresolveCommentDetails_validator +EventDetails._paper_doc_unresolve_comment_details_validator = ( + PaperDocUnresolveCommentDetails_validator +) EventDetails._paper_doc_untrashed_details_validator = PaperDocUntrashedDetails_validator EventDetails._paper_doc_view_details_validator = PaperDocViewDetails_validator EventDetails._paper_external_view_allow_details_validator = PaperExternalViewAllowDetails_validator -EventDetails._paper_external_view_default_team_details_validator = PaperExternalViewDefaultTeamDetails_validator -EventDetails._paper_external_view_forbid_details_validator = PaperExternalViewForbidDetails_validator -EventDetails._paper_folder_change_subscription_details_validator = PaperFolderChangeSubscriptionDetails_validator +EventDetails._paper_external_view_default_team_details_validator = ( + PaperExternalViewDefaultTeamDetails_validator +) +EventDetails._paper_external_view_forbid_details_validator = ( + PaperExternalViewForbidDetails_validator +) +EventDetails._paper_folder_change_subscription_details_validator = ( + PaperFolderChangeSubscriptionDetails_validator +) EventDetails._paper_folder_deleted_details_validator = PaperFolderDeletedDetails_validator EventDetails._paper_folder_followed_details_validator = PaperFolderFollowedDetails_validator EventDetails._paper_folder_team_invite_details_validator = PaperFolderTeamInviteDetails_validator -EventDetails._paper_published_link_change_permission_details_validator = PaperPublishedLinkChangePermissionDetails_validator -EventDetails._paper_published_link_create_details_validator = PaperPublishedLinkCreateDetails_validator -EventDetails._paper_published_link_disabled_details_validator = PaperPublishedLinkDisabledDetails_validator +EventDetails._paper_published_link_change_permission_details_validator = ( + PaperPublishedLinkChangePermissionDetails_validator +) +EventDetails._paper_published_link_create_details_validator = ( + PaperPublishedLinkCreateDetails_validator +) +EventDetails._paper_published_link_disabled_details_validator = ( + PaperPublishedLinkDisabledDetails_validator +) EventDetails._paper_published_link_view_details_validator = PaperPublishedLinkViewDetails_validator EventDetails._password_change_details_validator = PasswordChangeDetails_validator EventDetails._password_reset_details_validator = PasswordResetDetails_validator EventDetails._password_reset_all_details_validator = PasswordResetAllDetails_validator -EventDetails._protect_internal_domains_changed_details_validator = ProtectInternalDomainsChangedDetails_validator -EventDetails._classification_create_report_details_validator = ClassificationCreateReportDetails_validator -EventDetails._classification_create_report_fail_details_validator = ClassificationCreateReportFailDetails_validator -EventDetails._emm_create_exceptions_report_details_validator = EmmCreateExceptionsReportDetails_validator +EventDetails._protect_internal_domains_changed_details_validator = ( + ProtectInternalDomainsChangedDetails_validator +) +EventDetails._classification_create_report_details_validator = ( + ClassificationCreateReportDetails_validator +) +EventDetails._classification_create_report_fail_details_validator = ( + ClassificationCreateReportFailDetails_validator +) +EventDetails._emm_create_exceptions_report_details_validator = ( + EmmCreateExceptionsReportDetails_validator +) EventDetails._emm_create_usage_report_details_validator = EmmCreateUsageReportDetails_validator EventDetails._export_members_report_details_validator = ExportMembersReportDetails_validator -EventDetails._export_members_report_fail_details_validator = ExportMembersReportFailDetails_validator -EventDetails._external_sharing_create_report_details_validator = ExternalSharingCreateReportDetails_validator -EventDetails._external_sharing_report_failed_details_validator = ExternalSharingReportFailedDetails_validator -EventDetails._member_access_details_create_report_details_validator = MemberAccessDetailsCreateReportDetails_validator -EventDetails._member_access_details_create_report_failed_details_validator = MemberAccessDetailsCreateReportFailedDetails_validator -EventDetails._no_expiration_link_gen_create_report_details_validator = NoExpirationLinkGenCreateReportDetails_validator -EventDetails._no_expiration_link_gen_report_failed_details_validator = NoExpirationLinkGenReportFailedDetails_validator -EventDetails._no_password_link_gen_create_report_details_validator = NoPasswordLinkGenCreateReportDetails_validator -EventDetails._no_password_link_gen_report_failed_details_validator = NoPasswordLinkGenReportFailedDetails_validator -EventDetails._no_password_link_view_create_report_details_validator = NoPasswordLinkViewCreateReportDetails_validator -EventDetails._no_password_link_view_report_failed_details_validator = NoPasswordLinkViewReportFailedDetails_validator -EventDetails._outdated_link_view_create_report_details_validator = OutdatedLinkViewCreateReportDetails_validator -EventDetails._outdated_link_view_report_failed_details_validator = OutdatedLinkViewReportFailedDetails_validator +EventDetails._export_members_report_fail_details_validator = ( + ExportMembersReportFailDetails_validator +) +EventDetails._external_sharing_create_report_details_validator = ( + ExternalSharingCreateReportDetails_validator +) +EventDetails._external_sharing_report_failed_details_validator = ( + ExternalSharingReportFailedDetails_validator +) +EventDetails._member_access_details_create_report_details_validator = ( + MemberAccessDetailsCreateReportDetails_validator +) +EventDetails._member_access_details_create_report_failed_details_validator = ( + MemberAccessDetailsCreateReportFailedDetails_validator +) +EventDetails._no_expiration_link_gen_create_report_details_validator = ( + NoExpirationLinkGenCreateReportDetails_validator +) +EventDetails._no_expiration_link_gen_report_failed_details_validator = ( + NoExpirationLinkGenReportFailedDetails_validator +) +EventDetails._no_password_link_gen_create_report_details_validator = ( + NoPasswordLinkGenCreateReportDetails_validator +) +EventDetails._no_password_link_gen_report_failed_details_validator = ( + NoPasswordLinkGenReportFailedDetails_validator +) +EventDetails._no_password_link_view_create_report_details_validator = ( + NoPasswordLinkViewCreateReportDetails_validator +) +EventDetails._no_password_link_view_report_failed_details_validator = ( + NoPasswordLinkViewReportFailedDetails_validator +) +EventDetails._outdated_link_view_create_report_details_validator = ( + OutdatedLinkViewCreateReportDetails_validator +) +EventDetails._outdated_link_view_report_failed_details_validator = ( + OutdatedLinkViewReportFailedDetails_validator +) EventDetails._paper_admin_export_start_details_validator = PaperAdminExportStartDetails_validator -EventDetails._ransomware_alert_create_report_details_validator = RansomwareAlertCreateReportDetails_validator -EventDetails._ransomware_alert_create_report_failed_details_validator = RansomwareAlertCreateReportFailedDetails_validator -EventDetails._shared_folders_create_report_details_validator = SharedFoldersCreateReportDetails_validator -EventDetails._shared_folders_create_report_failed_details_validator = SharedFoldersCreateReportFailedDetails_validator -EventDetails._smart_sync_create_admin_privilege_report_details_validator = SmartSyncCreateAdminPrivilegeReportDetails_validator -EventDetails._team_activity_create_report_details_validator = TeamActivityCreateReportDetails_validator -EventDetails._team_activity_create_report_fail_details_validator = TeamActivityCreateReportFailDetails_validator -EventDetails._team_folders_create_report_details_validator = TeamFoldersCreateReportDetails_validator -EventDetails._team_folders_create_report_failed_details_validator = TeamFoldersCreateReportFailedDetails_validator -EventDetails._team_storage_create_report_details_validator = TeamStorageCreateReportDetails_validator -EventDetails._team_storage_create_report_failed_details_validator = TeamStorageCreateReportFailedDetails_validator +EventDetails._ransomware_alert_create_report_details_validator = ( + RansomwareAlertCreateReportDetails_validator +) +EventDetails._ransomware_alert_create_report_failed_details_validator = ( + RansomwareAlertCreateReportFailedDetails_validator +) +EventDetails._shared_folders_create_report_details_validator = ( + SharedFoldersCreateReportDetails_validator +) +EventDetails._shared_folders_create_report_failed_details_validator = ( + SharedFoldersCreateReportFailedDetails_validator +) +EventDetails._smart_sync_create_admin_privilege_report_details_validator = ( + SmartSyncCreateAdminPrivilegeReportDetails_validator +) +EventDetails._team_activity_create_report_details_validator = ( + TeamActivityCreateReportDetails_validator +) +EventDetails._team_activity_create_report_fail_details_validator = ( + TeamActivityCreateReportFailDetails_validator +) +EventDetails._team_folders_create_report_details_validator = ( + TeamFoldersCreateReportDetails_validator +) +EventDetails._team_folders_create_report_failed_details_validator = ( + TeamFoldersCreateReportFailedDetails_validator +) +EventDetails._team_storage_create_report_details_validator = ( + TeamStorageCreateReportDetails_validator +) +EventDetails._team_storage_create_report_failed_details_validator = ( + TeamStorageCreateReportFailedDetails_validator +) EventDetails._collection_share_details_validator = CollectionShareDetails_validator EventDetails._file_transfers_file_add_details_validator = FileTransfersFileAddDetails_validator -EventDetails._file_transfers_transfer_delete_details_validator = FileTransfersTransferDeleteDetails_validator -EventDetails._file_transfers_transfer_download_details_validator = FileTransfersTransferDownloadDetails_validator -EventDetails._file_transfers_transfer_send_details_validator = FileTransfersTransferSendDetails_validator -EventDetails._file_transfers_transfer_view_details_validator = FileTransfersTransferViewDetails_validator +EventDetails._file_transfers_transfer_delete_details_validator = ( + FileTransfersTransferDeleteDetails_validator +) +EventDetails._file_transfers_transfer_download_details_validator = ( + FileTransfersTransferDownloadDetails_validator +) +EventDetails._file_transfers_transfer_send_details_validator = ( + FileTransfersTransferSendDetails_validator +) +EventDetails._file_transfers_transfer_view_details_validator = ( + FileTransfersTransferViewDetails_validator +) EventDetails._media_hub_project_team_add_details_validator = MediaHubProjectTeamAddDetails_validator -EventDetails._media_hub_project_team_delete_details_validator = MediaHubProjectTeamDeleteDetails_validator -EventDetails._media_hub_project_team_role_changed_details_validator = MediaHubProjectTeamRoleChangedDetails_validator -EventDetails._media_hub_shared_link_audience_changed_details_validator = MediaHubSharedLinkAudienceChangedDetails_validator -EventDetails._media_hub_shared_link_created_details_validator = MediaHubSharedLinkCreatedDetails_validator -EventDetails._media_hub_shared_link_download_setting_changed_details_validator = MediaHubSharedLinkDownloadSettingChangedDetails_validator -EventDetails._media_hub_shared_link_revoked_details_validator = MediaHubSharedLinkRevokedDetails_validator +EventDetails._media_hub_project_team_delete_details_validator = ( + MediaHubProjectTeamDeleteDetails_validator +) +EventDetails._media_hub_project_team_role_changed_details_validator = ( + MediaHubProjectTeamRoleChangedDetails_validator +) +EventDetails._media_hub_shared_link_audience_changed_details_validator = ( + MediaHubSharedLinkAudienceChangedDetails_validator +) +EventDetails._media_hub_shared_link_created_details_validator = ( + MediaHubSharedLinkCreatedDetails_validator +) +EventDetails._media_hub_shared_link_download_setting_changed_details_validator = ( + MediaHubSharedLinkDownloadSettingChangedDetails_validator +) +EventDetails._media_hub_shared_link_revoked_details_validator = ( + MediaHubSharedLinkRevokedDetails_validator +) EventDetails._note_acl_invite_only_details_validator = NoteAclInviteOnlyDetails_validator EventDetails._note_acl_link_details_validator = NoteAclLinkDetails_validator EventDetails._note_acl_team_link_details_validator = NoteAclTeamLinkDetails_validator EventDetails._note_shared_details_validator = NoteSharedDetails_validator EventDetails._note_share_receive_details_validator = NoteShareReceiveDetails_validator EventDetails._open_note_shared_details_validator = OpenNoteSharedDetails_validator -EventDetails._replay_file_shared_link_created_details_validator = ReplayFileSharedLinkCreatedDetails_validator -EventDetails._replay_file_shared_link_modified_details_validator = ReplayFileSharedLinkModifiedDetails_validator +EventDetails._replay_file_shared_link_created_details_validator = ( + ReplayFileSharedLinkCreatedDetails_validator +) +EventDetails._replay_file_shared_link_modified_details_validator = ( + ReplayFileSharedLinkModifiedDetails_validator +) EventDetails._replay_project_team_add_details_validator = ReplayProjectTeamAddDetails_validator -EventDetails._replay_project_team_delete_details_validator = ReplayProjectTeamDeleteDetails_validator +EventDetails._replay_project_team_delete_details_validator = ( + ReplayProjectTeamDeleteDetails_validator +) EventDetails._send_and_track_file_added_details_validator = SendAndTrackFileAddedDetails_validator -EventDetails._send_and_track_file_renamed_details_validator = SendAndTrackFileRenamedDetails_validator -EventDetails._send_and_track_file_updated_details_validator = SendAndTrackFileUpdatedDetails_validator -EventDetails._send_and_track_link_created_details_validator = SendAndTrackLinkCreatedDetails_validator -EventDetails._send_and_track_link_deleted_details_validator = SendAndTrackLinkDeletedDetails_validator -EventDetails._send_and_track_link_updated_details_validator = SendAndTrackLinkUpdatedDetails_validator +EventDetails._send_and_track_file_renamed_details_validator = ( + SendAndTrackFileRenamedDetails_validator +) +EventDetails._send_and_track_file_updated_details_validator = ( + SendAndTrackFileUpdatedDetails_validator +) +EventDetails._send_and_track_link_created_details_validator = ( + SendAndTrackLinkCreatedDetails_validator +) +EventDetails._send_and_track_link_deleted_details_validator = ( + SendAndTrackLinkDeletedDetails_validator +) +EventDetails._send_and_track_link_updated_details_validator = ( + SendAndTrackLinkUpdatedDetails_validator +) EventDetails._send_and_track_link_viewed_details_validator = SendAndTrackLinkViewedDetails_validator -EventDetails._send_and_track_removed_file_and_associated_links_details_validator = SendAndTrackRemovedFileAndAssociatedLinksDetails_validator +EventDetails._send_and_track_removed_file_and_associated_links_details_validator = ( + SendAndTrackRemovedFileAndAssociatedLinksDetails_validator +) EventDetails._sf_add_group_details_validator = SfAddGroupDetails_validator -EventDetails._sf_allow_non_members_to_view_shared_links_details_validator = SfAllowNonMembersToViewSharedLinksDetails_validator +EventDetails._sf_allow_non_members_to_view_shared_links_details_validator = ( + SfAllowNonMembersToViewSharedLinksDetails_validator +) EventDetails._sf_external_invite_warn_details_validator = SfExternalInviteWarnDetails_validator EventDetails._sf_fb_invite_details_validator = SfFbInviteDetails_validator EventDetails._sf_fb_invite_change_role_details_validator = SfFbInviteChangeRoleDetails_validator @@ -97022,58 +102055,130 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._sf_team_join_details_validator = SfTeamJoinDetails_validator EventDetails._sf_team_join_from_oob_link_details_validator = SfTeamJoinFromOobLinkDetails_validator EventDetails._sf_team_uninvite_details_validator = SfTeamUninviteDetails_validator -EventDetails._shared_content_add_invitees_details_validator = SharedContentAddInviteesDetails_validator -EventDetails._shared_content_add_link_expiry_details_validator = SharedContentAddLinkExpiryDetails_validator -EventDetails._shared_content_add_link_password_details_validator = SharedContentAddLinkPasswordDetails_validator +EventDetails._shared_content_add_invitees_details_validator = ( + SharedContentAddInviteesDetails_validator +) +EventDetails._shared_content_add_link_expiry_details_validator = ( + SharedContentAddLinkExpiryDetails_validator +) +EventDetails._shared_content_add_link_password_details_validator = ( + SharedContentAddLinkPasswordDetails_validator +) EventDetails._shared_content_add_member_details_validator = SharedContentAddMemberDetails_validator -EventDetails._shared_content_change_downloads_policy_details_validator = SharedContentChangeDownloadsPolicyDetails_validator -EventDetails._shared_content_change_invitee_role_details_validator = SharedContentChangeInviteeRoleDetails_validator -EventDetails._shared_content_change_link_audience_details_validator = SharedContentChangeLinkAudienceDetails_validator -EventDetails._shared_content_change_link_expiry_details_validator = SharedContentChangeLinkExpiryDetails_validator -EventDetails._shared_content_change_link_password_details_validator = SharedContentChangeLinkPasswordDetails_validator -EventDetails._shared_content_change_member_role_details_validator = SharedContentChangeMemberRoleDetails_validator -EventDetails._shared_content_change_viewer_info_policy_details_validator = SharedContentChangeViewerInfoPolicyDetails_validator -EventDetails._shared_content_claim_invitation_details_validator = SharedContentClaimInvitationDetails_validator +EventDetails._shared_content_change_downloads_policy_details_validator = ( + SharedContentChangeDownloadsPolicyDetails_validator +) +EventDetails._shared_content_change_invitee_role_details_validator = ( + SharedContentChangeInviteeRoleDetails_validator +) +EventDetails._shared_content_change_link_audience_details_validator = ( + SharedContentChangeLinkAudienceDetails_validator +) +EventDetails._shared_content_change_link_expiry_details_validator = ( + SharedContentChangeLinkExpiryDetails_validator +) +EventDetails._shared_content_change_link_password_details_validator = ( + SharedContentChangeLinkPasswordDetails_validator +) +EventDetails._shared_content_change_member_role_details_validator = ( + SharedContentChangeMemberRoleDetails_validator +) +EventDetails._shared_content_change_viewer_info_policy_details_validator = ( + SharedContentChangeViewerInfoPolicyDetails_validator +) +EventDetails._shared_content_claim_invitation_details_validator = ( + SharedContentClaimInvitationDetails_validator +) EventDetails._shared_content_copy_details_validator = SharedContentCopyDetails_validator EventDetails._shared_content_download_details_validator = SharedContentDownloadDetails_validator -EventDetails._shared_content_relinquish_membership_details_validator = SharedContentRelinquishMembershipDetails_validator -EventDetails._shared_content_remove_invitees_details_validator = SharedContentRemoveInviteesDetails_validator -EventDetails._shared_content_remove_link_expiry_details_validator = SharedContentRemoveLinkExpiryDetails_validator -EventDetails._shared_content_remove_link_password_details_validator = SharedContentRemoveLinkPasswordDetails_validator -EventDetails._shared_content_remove_member_details_validator = SharedContentRemoveMemberDetails_validator -EventDetails._shared_content_request_access_details_validator = SharedContentRequestAccessDetails_validator -EventDetails._shared_content_restore_invitees_details_validator = SharedContentRestoreInviteesDetails_validator -EventDetails._shared_content_restore_member_details_validator = SharedContentRestoreMemberDetails_validator +EventDetails._shared_content_relinquish_membership_details_validator = ( + SharedContentRelinquishMembershipDetails_validator +) +EventDetails._shared_content_remove_invitees_details_validator = ( + SharedContentRemoveInviteesDetails_validator +) +EventDetails._shared_content_remove_link_expiry_details_validator = ( + SharedContentRemoveLinkExpiryDetails_validator +) +EventDetails._shared_content_remove_link_password_details_validator = ( + SharedContentRemoveLinkPasswordDetails_validator +) +EventDetails._shared_content_remove_member_details_validator = ( + SharedContentRemoveMemberDetails_validator +) +EventDetails._shared_content_request_access_details_validator = ( + SharedContentRequestAccessDetails_validator +) +EventDetails._shared_content_restore_invitees_details_validator = ( + SharedContentRestoreInviteesDetails_validator +) +EventDetails._shared_content_restore_member_details_validator = ( + SharedContentRestoreMemberDetails_validator +) EventDetails._shared_content_unshare_details_validator = SharedContentUnshareDetails_validator EventDetails._shared_content_view_details_validator = SharedContentViewDetails_validator -EventDetails._shared_folder_change_link_policy_details_validator = SharedFolderChangeLinkPolicyDetails_validator -EventDetails._shared_folder_change_members_inheritance_policy_details_validator = SharedFolderChangeMembersInheritancePolicyDetails_validator -EventDetails._shared_folder_change_members_management_policy_details_validator = SharedFolderChangeMembersManagementPolicyDetails_validator -EventDetails._shared_folder_change_members_policy_details_validator = SharedFolderChangeMembersPolicyDetails_validator +EventDetails._shared_folder_change_link_policy_details_validator = ( + SharedFolderChangeLinkPolicyDetails_validator +) +EventDetails._shared_folder_change_members_inheritance_policy_details_validator = ( + SharedFolderChangeMembersInheritancePolicyDetails_validator +) +EventDetails._shared_folder_change_members_management_policy_details_validator = ( + SharedFolderChangeMembersManagementPolicyDetails_validator +) +EventDetails._shared_folder_change_members_policy_details_validator = ( + SharedFolderChangeMembersPolicyDetails_validator +) EventDetails._shared_folder_create_details_validator = SharedFolderCreateDetails_validator -EventDetails._shared_folder_decline_invitation_details_validator = SharedFolderDeclineInvitationDetails_validator +EventDetails._shared_folder_decline_invitation_details_validator = ( + SharedFolderDeclineInvitationDetails_validator +) EventDetails._shared_folder_mount_details_validator = SharedFolderMountDetails_validator EventDetails._shared_folder_nest_details_validator = SharedFolderNestDetails_validator -EventDetails._shared_folder_transfer_ownership_details_validator = SharedFolderTransferOwnershipDetails_validator +EventDetails._shared_folder_transfer_ownership_details_validator = ( + SharedFolderTransferOwnershipDetails_validator +) EventDetails._shared_folder_unmount_details_validator = SharedFolderUnmountDetails_validator EventDetails._shared_link_add_expiry_details_validator = SharedLinkAddExpiryDetails_validator EventDetails._shared_link_change_expiry_details_validator = SharedLinkChangeExpiryDetails_validator -EventDetails._shared_link_change_visibility_details_validator = SharedLinkChangeVisibilityDetails_validator +EventDetails._shared_link_change_visibility_details_validator = ( + SharedLinkChangeVisibilityDetails_validator +) EventDetails._shared_link_copy_details_validator = SharedLinkCopyDetails_validator EventDetails._shared_link_create_details_validator = SharedLinkCreateDetails_validator EventDetails._shared_link_disable_details_validator = SharedLinkDisableDetails_validator EventDetails._shared_link_download_details_validator = SharedLinkDownloadDetails_validator EventDetails._shared_link_remove_expiry_details_validator = SharedLinkRemoveExpiryDetails_validator -EventDetails._shared_link_remove_visitor_details_validator = SharedLinkRemoveVisitorDetails_validator -EventDetails._shared_link_settings_add_expiration_details_validator = SharedLinkSettingsAddExpirationDetails_validator -EventDetails._shared_link_settings_add_password_details_validator = SharedLinkSettingsAddPasswordDetails_validator -EventDetails._shared_link_settings_allow_download_disabled_details_validator = SharedLinkSettingsAllowDownloadDisabledDetails_validator -EventDetails._shared_link_settings_allow_download_enabled_details_validator = SharedLinkSettingsAllowDownloadEnabledDetails_validator -EventDetails._shared_link_settings_change_audience_details_validator = SharedLinkSettingsChangeAudienceDetails_validator -EventDetails._shared_link_settings_change_expiration_details_validator = SharedLinkSettingsChangeExpirationDetails_validator -EventDetails._shared_link_settings_change_password_details_validator = SharedLinkSettingsChangePasswordDetails_validator -EventDetails._shared_link_settings_remove_expiration_details_validator = SharedLinkSettingsRemoveExpirationDetails_validator -EventDetails._shared_link_settings_remove_password_details_validator = SharedLinkSettingsRemovePasswordDetails_validator +EventDetails._shared_link_remove_visitor_details_validator = ( + SharedLinkRemoveVisitorDetails_validator +) +EventDetails._shared_link_settings_add_expiration_details_validator = ( + SharedLinkSettingsAddExpirationDetails_validator +) +EventDetails._shared_link_settings_add_password_details_validator = ( + SharedLinkSettingsAddPasswordDetails_validator +) +EventDetails._shared_link_settings_allow_download_disabled_details_validator = ( + SharedLinkSettingsAllowDownloadDisabledDetails_validator +) +EventDetails._shared_link_settings_allow_download_enabled_details_validator = ( + SharedLinkSettingsAllowDownloadEnabledDetails_validator +) +EventDetails._shared_link_settings_change_audience_details_validator = ( + SharedLinkSettingsChangeAudienceDetails_validator +) +EventDetails._shared_link_settings_change_expiration_details_validator = ( + SharedLinkSettingsChangeExpirationDetails_validator +) +EventDetails._shared_link_settings_change_password_details_validator = ( + SharedLinkSettingsChangePasswordDetails_validator +) +EventDetails._shared_link_settings_remove_expiration_details_validator = ( + SharedLinkSettingsRemoveExpirationDetails_validator +) +EventDetails._shared_link_settings_remove_password_details_validator = ( + SharedLinkSettingsRemovePasswordDetails_validator +) EventDetails._shared_link_share_details_validator = SharedLinkShareDetails_validator EventDetails._shared_link_view_details_validator = SharedLinkViewDetails_validator EventDetails._shared_note_opened_details_validator = SharedNoteOpenedDetails_validator @@ -97091,7 +102196,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._showcase_file_download_details_validator = ShowcaseFileDownloadDetails_validator EventDetails._showcase_file_removed_details_validator = ShowcaseFileRemovedDetails_validator EventDetails._showcase_file_view_details_validator = ShowcaseFileViewDetails_validator -EventDetails._showcase_permanently_deleted_details_validator = ShowcasePermanentlyDeletedDetails_validator +EventDetails._showcase_permanently_deleted_details_validator = ( + ShowcasePermanentlyDeletedDetails_validator +) EventDetails._showcase_post_comment_details_validator = ShowcasePostCommentDetails_validator EventDetails._showcase_remove_member_details_validator = ShowcaseRemoveMemberDetails_validator EventDetails._showcase_renamed_details_validator = ShowcaseRenamedDetails_validator @@ -97099,17 +102206,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._showcase_resolve_comment_details_validator = ShowcaseResolveCommentDetails_validator EventDetails._showcase_restored_details_validator = ShowcaseRestoredDetails_validator EventDetails._showcase_trashed_details_validator = ShowcaseTrashedDetails_validator -EventDetails._showcase_trashed_deprecated_details_validator = ShowcaseTrashedDeprecatedDetails_validator -EventDetails._showcase_unresolve_comment_details_validator = ShowcaseUnresolveCommentDetails_validator +EventDetails._showcase_trashed_deprecated_details_validator = ( + ShowcaseTrashedDeprecatedDetails_validator +) +EventDetails._showcase_unresolve_comment_details_validator = ( + ShowcaseUnresolveCommentDetails_validator +) EventDetails._showcase_untrashed_details_validator = ShowcaseUntrashedDetails_validator -EventDetails._showcase_untrashed_deprecated_details_validator = ShowcaseUntrashedDeprecatedDetails_validator +EventDetails._showcase_untrashed_deprecated_details_validator = ( + ShowcaseUntrashedDeprecatedDetails_validator +) EventDetails._showcase_view_details_validator = ShowcaseViewDetails_validator -EventDetails._sign_signature_request_canceled_details_validator = SignSignatureRequestCanceledDetails_validator -EventDetails._sign_signature_request_completed_details_validator = SignSignatureRequestCompletedDetails_validator -EventDetails._sign_signature_request_declined_details_validator = SignSignatureRequestDeclinedDetails_validator -EventDetails._sign_signature_request_opened_details_validator = SignSignatureRequestOpenedDetails_validator -EventDetails._sign_signature_request_reminder_sent_details_validator = SignSignatureRequestReminderSentDetails_validator -EventDetails._sign_signature_request_sent_details_validator = SignSignatureRequestSentDetails_validator +EventDetails._sign_signature_request_canceled_details_validator = ( + SignSignatureRequestCanceledDetails_validator +) +EventDetails._sign_signature_request_completed_details_validator = ( + SignSignatureRequestCompletedDetails_validator +) +EventDetails._sign_signature_request_declined_details_validator = ( + SignSignatureRequestDeclinedDetails_validator +) +EventDetails._sign_signature_request_opened_details_validator = ( + SignSignatureRequestOpenedDetails_validator +) +EventDetails._sign_signature_request_reminder_sent_details_validator = ( + SignSignatureRequestReminderSentDetails_validator +) +EventDetails._sign_signature_request_sent_details_validator = ( + SignSignatureRequestSentDetails_validator +) EventDetails._sign_template_created_details_validator = SignTemplateCreatedDetails_validator EventDetails._sign_template_shared_details_validator = SignTemplateSharedDetails_validator EventDetails._risc_security_event_details_validator = RiscSecurityEventDetails_validator @@ -97119,141 +102244,351 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._sso_change_cert_details_validator = SsoChangeCertDetails_validator EventDetails._sso_change_login_url_details_validator = SsoChangeLoginUrlDetails_validator EventDetails._sso_change_logout_url_details_validator = SsoChangeLogoutUrlDetails_validator -EventDetails._sso_change_saml_identity_mode_details_validator = SsoChangeSamlIdentityModeDetails_validator +EventDetails._sso_change_saml_identity_mode_details_validator = ( + SsoChangeSamlIdentityModeDetails_validator +) EventDetails._sso_remove_cert_details_validator = SsoRemoveCertDetails_validator EventDetails._sso_remove_login_url_details_validator = SsoRemoveLoginUrlDetails_validator EventDetails._sso_remove_logout_url_details_validator = SsoRemoveLogoutUrlDetails_validator EventDetails._team_folder_change_status_details_validator = TeamFolderChangeStatusDetails_validator EventDetails._team_folder_create_details_validator = TeamFolderCreateDetails_validator EventDetails._team_folder_downgrade_details_validator = TeamFolderDowngradeDetails_validator -EventDetails._team_folder_permanently_delete_details_validator = TeamFolderPermanentlyDeleteDetails_validator +EventDetails._team_folder_permanently_delete_details_validator = ( + TeamFolderPermanentlyDeleteDetails_validator +) EventDetails._team_folder_rename_details_validator = TeamFolderRenameDetails_validator -EventDetails._team_folder_space_limits_change_caps_type_details_validator = TeamFolderSpaceLimitsChangeCapsTypeDetails_validator -EventDetails._team_folder_space_limits_change_limit_details_validator = TeamFolderSpaceLimitsChangeLimitDetails_validator -EventDetails._team_folder_space_limits_change_notification_target_details_validator = TeamFolderSpaceLimitsChangeNotificationTargetDetails_validator -EventDetails._team_selective_sync_settings_changed_details_validator = TeamSelectiveSyncSettingsChangedDetails_validator -EventDetails._account_capture_change_policy_details_validator = AccountCaptureChangePolicyDetails_validator -EventDetails._admin_email_reminders_changed_details_validator = AdminEmailRemindersChangedDetails_validator -EventDetails._ai_third_party_sharing_dropbox_base_policy_changed_details_validator = AiThirdPartySharingDropboxBasePolicyChangedDetails_validator +EventDetails._team_folder_space_limits_change_caps_type_details_validator = ( + TeamFolderSpaceLimitsChangeCapsTypeDetails_validator +) +EventDetails._team_folder_space_limits_change_limit_details_validator = ( + TeamFolderSpaceLimitsChangeLimitDetails_validator +) +EventDetails._team_folder_space_limits_change_notification_target_details_validator = ( + TeamFolderSpaceLimitsChangeNotificationTargetDetails_validator +) +EventDetails._team_selective_sync_settings_changed_details_validator = ( + TeamSelectiveSyncSettingsChangedDetails_validator +) +EventDetails._account_capture_change_policy_details_validator = ( + AccountCaptureChangePolicyDetails_validator +) +EventDetails._admin_email_reminders_changed_details_validator = ( + AdminEmailRemindersChangedDetails_validator +) +EventDetails._ai_third_party_sharing_dropbox_base_policy_changed_details_validator = ( + AiThirdPartySharingDropboxBasePolicyChangedDetails_validator +) EventDetails._allow_download_disabled_details_validator = AllowDownloadDisabledDetails_validator EventDetails._allow_download_enabled_details_validator = AllowDownloadEnabledDetails_validator EventDetails._apple_login_change_policy_details_validator = AppleLoginChangePolicyDetails_validator EventDetails._app_permissions_changed_details_validator = AppPermissionsChangedDetails_validator -EventDetails._camera_uploads_policy_changed_details_validator = CameraUploadsPolicyChangedDetails_validator -EventDetails._capture_team_space_policy_changed_details_validator = CaptureTeamSpacePolicyChangedDetails_validator -EventDetails._capture_transcript_policy_changed_details_validator = CaptureTranscriptPolicyChangedDetails_validator -EventDetails._classification_change_policy_details_validator = ClassificationChangePolicyDetails_validator -EventDetails._computer_backup_policy_changed_details_validator = ComputerBackupPolicyChangedDetails_validator -EventDetails._content_administration_policy_changed_details_validator = ContentAdministrationPolicyChangedDetails_validator -EventDetails._content_deletion_protection_change_policy_details_validator = ContentDeletionProtectionChangePolicyDetails_validator -EventDetails._dash_external_sharing_policy_changed_details_validator = DashExternalSharingPolicyChangedDetails_validator -EventDetails._data_placement_restriction_change_policy_details_validator = DataPlacementRestrictionChangePolicyDetails_validator -EventDetails._data_placement_restriction_satisfy_policy_details_validator = DataPlacementRestrictionSatisfyPolicyDetails_validator -EventDetails._device_approvals_add_exception_details_validator = DeviceApprovalsAddExceptionDetails_validator -EventDetails._device_approvals_change_desktop_policy_details_validator = DeviceApprovalsChangeDesktopPolicyDetails_validator -EventDetails._device_approvals_change_mobile_policy_details_validator = DeviceApprovalsChangeMobilePolicyDetails_validator -EventDetails._device_approvals_change_overage_action_details_validator = DeviceApprovalsChangeOverageActionDetails_validator -EventDetails._device_approvals_change_unlink_action_details_validator = DeviceApprovalsChangeUnlinkActionDetails_validator -EventDetails._device_approvals_remove_exception_details_validator = DeviceApprovalsRemoveExceptionDetails_validator -EventDetails._directory_restrictions_add_members_details_validator = DirectoryRestrictionsAddMembersDetails_validator -EventDetails._directory_restrictions_remove_members_details_validator = DirectoryRestrictionsRemoveMembersDetails_validator -EventDetails._dropbox_passwords_policy_changed_details_validator = DropboxPasswordsPolicyChangedDetails_validator -EventDetails._email_ingest_policy_changed_details_validator = EmailIngestPolicyChangedDetails_validator +EventDetails._camera_uploads_policy_changed_details_validator = ( + CameraUploadsPolicyChangedDetails_validator +) +EventDetails._capture_team_space_policy_changed_details_validator = ( + CaptureTeamSpacePolicyChangedDetails_validator +) +EventDetails._capture_transcript_policy_changed_details_validator = ( + CaptureTranscriptPolicyChangedDetails_validator +) +EventDetails._classification_change_policy_details_validator = ( + ClassificationChangePolicyDetails_validator +) +EventDetails._computer_backup_policy_changed_details_validator = ( + ComputerBackupPolicyChangedDetails_validator +) +EventDetails._content_administration_policy_changed_details_validator = ( + ContentAdministrationPolicyChangedDetails_validator +) +EventDetails._content_deletion_protection_change_policy_details_validator = ( + ContentDeletionProtectionChangePolicyDetails_validator +) +EventDetails._dash_external_sharing_policy_changed_details_validator = ( + DashExternalSharingPolicyChangedDetails_validator +) +EventDetails._data_placement_restriction_change_policy_details_validator = ( + DataPlacementRestrictionChangePolicyDetails_validator +) +EventDetails._data_placement_restriction_satisfy_policy_details_validator = ( + DataPlacementRestrictionSatisfyPolicyDetails_validator +) +EventDetails._device_approvals_add_exception_details_validator = ( + DeviceApprovalsAddExceptionDetails_validator +) +EventDetails._device_approvals_change_desktop_policy_details_validator = ( + DeviceApprovalsChangeDesktopPolicyDetails_validator +) +EventDetails._device_approvals_change_mobile_policy_details_validator = ( + DeviceApprovalsChangeMobilePolicyDetails_validator +) +EventDetails._device_approvals_change_overage_action_details_validator = ( + DeviceApprovalsChangeOverageActionDetails_validator +) +EventDetails._device_approvals_change_unlink_action_details_validator = ( + DeviceApprovalsChangeUnlinkActionDetails_validator +) +EventDetails._device_approvals_remove_exception_details_validator = ( + DeviceApprovalsRemoveExceptionDetails_validator +) +EventDetails._directory_restrictions_add_members_details_validator = ( + DirectoryRestrictionsAddMembersDetails_validator +) +EventDetails._directory_restrictions_remove_members_details_validator = ( + DirectoryRestrictionsRemoveMembersDetails_validator +) +EventDetails._dropbox_passwords_policy_changed_details_validator = ( + DropboxPasswordsPolicyChangedDetails_validator +) +EventDetails._email_ingest_policy_changed_details_validator = ( + EmailIngestPolicyChangedDetails_validator +) EventDetails._emm_add_exception_details_validator = EmmAddExceptionDetails_validator EventDetails._emm_change_policy_details_validator = EmmChangePolicyDetails_validator EventDetails._emm_remove_exception_details_validator = EmmRemoveExceptionDetails_validator -EventDetails._extended_version_history_change_policy_details_validator = ExtendedVersionHistoryChangePolicyDetails_validator -EventDetails._external_drive_backup_policy_changed_details_validator = ExternalDriveBackupPolicyChangedDetails_validator -EventDetails._file_comments_change_policy_details_validator = FileCommentsChangePolicyDetails_validator -EventDetails._file_locking_policy_changed_details_validator = FileLockingPolicyChangedDetails_validator -EventDetails._file_provider_migration_policy_changed_details_validator = FileProviderMigrationPolicyChangedDetails_validator -EventDetails._file_requests_change_policy_details_validator = FileRequestsChangePolicyDetails_validator -EventDetails._file_requests_emails_enabled_details_validator = FileRequestsEmailsEnabledDetails_validator -EventDetails._file_requests_emails_restricted_to_team_only_details_validator = FileRequestsEmailsRestrictedToTeamOnlyDetails_validator -EventDetails._file_transfers_policy_changed_details_validator = FileTransfersPolicyChangedDetails_validator -EventDetails._flexible_file_names_policy_changed_details_validator = FlexibleFileNamesPolicyChangedDetails_validator -EventDetails._folder_link_restriction_policy_changed_details_validator = FolderLinkRestrictionPolicyChangedDetails_validator +EventDetails._extended_version_history_change_policy_details_validator = ( + ExtendedVersionHistoryChangePolicyDetails_validator +) +EventDetails._external_drive_backup_policy_changed_details_validator = ( + ExternalDriveBackupPolicyChangedDetails_validator +) +EventDetails._file_comments_change_policy_details_validator = ( + FileCommentsChangePolicyDetails_validator +) +EventDetails._file_locking_policy_changed_details_validator = ( + FileLockingPolicyChangedDetails_validator +) +EventDetails._file_provider_migration_policy_changed_details_validator = ( + FileProviderMigrationPolicyChangedDetails_validator +) +EventDetails._file_requests_change_policy_details_validator = ( + FileRequestsChangePolicyDetails_validator +) +EventDetails._file_requests_emails_enabled_details_validator = ( + FileRequestsEmailsEnabledDetails_validator +) +EventDetails._file_requests_emails_restricted_to_team_only_details_validator = ( + FileRequestsEmailsRestrictedToTeamOnlyDetails_validator +) +EventDetails._file_transfers_policy_changed_details_validator = ( + FileTransfersPolicyChangedDetails_validator +) +EventDetails._flexible_file_names_policy_changed_details_validator = ( + FlexibleFileNamesPolicyChangedDetails_validator +) +EventDetails._folder_link_restriction_policy_changed_details_validator = ( + FolderLinkRestrictionPolicyChangedDetails_validator +) EventDetails._google_sso_change_policy_details_validator = GoogleSsoChangePolicyDetails_validator -EventDetails._group_user_management_change_policy_details_validator = GroupUserManagementChangePolicyDetails_validator -EventDetails._integration_policy_changed_details_validator = IntegrationPolicyChangedDetails_validator -EventDetails._invite_acceptance_email_policy_changed_details_validator = InviteAcceptanceEmailPolicyChangedDetails_validator -EventDetails._media_hub_adding_people_policy_changed_details_validator = MediaHubAddingPeoplePolicyChangedDetails_validator -EventDetails._media_hub_download_policy_changed_details_validator = MediaHubDownloadPolicyChangedDetails_validator -EventDetails._media_hub_link_sharing_policy_changed_details_validator = MediaHubLinkSharingPolicyChangedDetails_validator -EventDetails._member_requests_change_policy_details_validator = MemberRequestsChangePolicyDetails_validator -EventDetails._member_send_invite_policy_changed_details_validator = MemberSendInvitePolicyChangedDetails_validator -EventDetails._member_space_limits_add_exception_details_validator = MemberSpaceLimitsAddExceptionDetails_validator -EventDetails._member_space_limits_change_caps_type_policy_details_validator = MemberSpaceLimitsChangeCapsTypePolicyDetails_validator -EventDetails._member_space_limits_change_policy_details_validator = MemberSpaceLimitsChangePolicyDetails_validator -EventDetails._member_space_limits_remove_exception_details_validator = MemberSpaceLimitsRemoveExceptionDetails_validator -EventDetails._member_suggestions_change_policy_details_validator = MemberSuggestionsChangePolicyDetails_validator -EventDetails._microsoft_login_change_policy_details_validator = MicrosoftLoginChangePolicyDetails_validator -EventDetails._microsoft_office_addin_change_policy_details_validator = MicrosoftOfficeAddinChangePolicyDetails_validator -EventDetails._multi_team_identity_policy_changed_details_validator = MultiTeamIdentityPolicyChangedDetails_validator -EventDetails._network_control_change_policy_details_validator = NetworkControlChangePolicyDetails_validator -EventDetails._paper_change_deployment_policy_details_validator = PaperChangeDeploymentPolicyDetails_validator -EventDetails._paper_change_member_link_policy_details_validator = PaperChangeMemberLinkPolicyDetails_validator -EventDetails._paper_change_member_policy_details_validator = PaperChangeMemberPolicyDetails_validator +EventDetails._group_user_management_change_policy_details_validator = ( + GroupUserManagementChangePolicyDetails_validator +) +EventDetails._integration_policy_changed_details_validator = ( + IntegrationPolicyChangedDetails_validator +) +EventDetails._invite_acceptance_email_policy_changed_details_validator = ( + InviteAcceptanceEmailPolicyChangedDetails_validator +) +EventDetails._media_hub_adding_people_policy_changed_details_validator = ( + MediaHubAddingPeoplePolicyChangedDetails_validator +) +EventDetails._media_hub_download_policy_changed_details_validator = ( + MediaHubDownloadPolicyChangedDetails_validator +) +EventDetails._media_hub_link_sharing_policy_changed_details_validator = ( + MediaHubLinkSharingPolicyChangedDetails_validator +) +EventDetails._member_requests_change_policy_details_validator = ( + MemberRequestsChangePolicyDetails_validator +) +EventDetails._member_send_invite_policy_changed_details_validator = ( + MemberSendInvitePolicyChangedDetails_validator +) +EventDetails._member_space_limits_add_exception_details_validator = ( + MemberSpaceLimitsAddExceptionDetails_validator +) +EventDetails._member_space_limits_change_caps_type_policy_details_validator = ( + MemberSpaceLimitsChangeCapsTypePolicyDetails_validator +) +EventDetails._member_space_limits_change_policy_details_validator = ( + MemberSpaceLimitsChangePolicyDetails_validator +) +EventDetails._member_space_limits_remove_exception_details_validator = ( + MemberSpaceLimitsRemoveExceptionDetails_validator +) +EventDetails._member_suggestions_change_policy_details_validator = ( + MemberSuggestionsChangePolicyDetails_validator +) +EventDetails._microsoft_login_change_policy_details_validator = ( + MicrosoftLoginChangePolicyDetails_validator +) +EventDetails._microsoft_office_addin_change_policy_details_validator = ( + MicrosoftOfficeAddinChangePolicyDetails_validator +) +EventDetails._multi_team_identity_policy_changed_details_validator = ( + MultiTeamIdentityPolicyChangedDetails_validator +) +EventDetails._network_control_change_policy_details_validator = ( + NetworkControlChangePolicyDetails_validator +) +EventDetails._paper_change_deployment_policy_details_validator = ( + PaperChangeDeploymentPolicyDetails_validator +) +EventDetails._paper_change_member_link_policy_details_validator = ( + PaperChangeMemberLinkPolicyDetails_validator +) +EventDetails._paper_change_member_policy_details_validator = ( + PaperChangeMemberPolicyDetails_validator +) EventDetails._paper_change_policy_details_validator = PaperChangePolicyDetails_validator -EventDetails._paper_default_folder_policy_changed_details_validator = PaperDefaultFolderPolicyChangedDetails_validator -EventDetails._paper_desktop_policy_changed_details_validator = PaperDesktopPolicyChangedDetails_validator -EventDetails._paper_enabled_users_group_addition_details_validator = PaperEnabledUsersGroupAdditionDetails_validator -EventDetails._paper_enabled_users_group_removal_details_validator = PaperEnabledUsersGroupRemovalDetails_validator -EventDetails._passkey_login_policy_changed_details_validator = PasskeyLoginPolicyChangedDetails_validator -EventDetails._password_strength_requirements_change_policy_details_validator = PasswordStrengthRequirementsChangePolicyDetails_validator -EventDetails._permanent_delete_change_policy_details_validator = PermanentDeleteChangePolicyDetails_validator -EventDetails._previews_ai_policy_changed_details_validator = PreviewsAiPolicyChangedDetails_validator -EventDetails._replay_adding_people_policy_changed_details_validator = ReplayAddingPeoplePolicyChangedDetails_validator -EventDetails._replay_sharing_policy_changed_details_validator = ReplaySharingPolicyChangedDetails_validator -EventDetails._reseller_support_change_policy_details_validator = ResellerSupportChangePolicyDetails_validator +EventDetails._paper_default_folder_policy_changed_details_validator = ( + PaperDefaultFolderPolicyChangedDetails_validator +) +EventDetails._paper_desktop_policy_changed_details_validator = ( + PaperDesktopPolicyChangedDetails_validator +) +EventDetails._paper_enabled_users_group_addition_details_validator = ( + PaperEnabledUsersGroupAdditionDetails_validator +) +EventDetails._paper_enabled_users_group_removal_details_validator = ( + PaperEnabledUsersGroupRemovalDetails_validator +) +EventDetails._passkey_login_policy_changed_details_validator = ( + PasskeyLoginPolicyChangedDetails_validator +) +EventDetails._password_strength_requirements_change_policy_details_validator = ( + PasswordStrengthRequirementsChangePolicyDetails_validator +) +EventDetails._permanent_delete_change_policy_details_validator = ( + PermanentDeleteChangePolicyDetails_validator +) +EventDetails._previews_ai_policy_changed_details_validator = ( + PreviewsAiPolicyChangedDetails_validator +) +EventDetails._replay_adding_people_policy_changed_details_validator = ( + ReplayAddingPeoplePolicyChangedDetails_validator +) +EventDetails._replay_sharing_policy_changed_details_validator = ( + ReplaySharingPolicyChangedDetails_validator +) +EventDetails._reseller_support_change_policy_details_validator = ( + ResellerSupportChangePolicyDetails_validator +) EventDetails._rewind_policy_changed_details_validator = RewindPolicyChangedDetails_validator -EventDetails._send_and_track_policy_changed_details_validator = SendAndTrackPolicyChangedDetails_validator -EventDetails._send_external_sharing_policy_changed_details_validator = SendExternalSharingPolicyChangedDetails_validator -EventDetails._send_for_signature_policy_changed_details_validator = SendForSignaturePolicyChangedDetails_validator -EventDetails._shared_link_default_permissions_policy_changed_details_validator = SharedLinkDefaultPermissionsPolicyChangedDetails_validator -EventDetails._sharing_change_folder_join_policy_details_validator = SharingChangeFolderJoinPolicyDetails_validator -EventDetails._sharing_change_link_allow_change_expiration_policy_details_validator = SharingChangeLinkAllowChangeExpirationPolicyDetails_validator -EventDetails._sharing_change_link_default_expiration_policy_details_validator = SharingChangeLinkDefaultExpirationPolicyDetails_validator -EventDetails._sharing_change_link_enforce_password_policy_details_validator = SharingChangeLinkEnforcePasswordPolicyDetails_validator -EventDetails._sharing_change_link_policy_details_validator = SharingChangeLinkPolicyDetails_validator -EventDetails._sharing_change_member_policy_details_validator = SharingChangeMemberPolicyDetails_validator -EventDetails._showcase_change_download_policy_details_validator = ShowcaseChangeDownloadPolicyDetails_validator -EventDetails._showcase_change_enabled_policy_details_validator = ShowcaseChangeEnabledPolicyDetails_validator -EventDetails._showcase_change_external_sharing_policy_details_validator = ShowcaseChangeExternalSharingPolicyDetails_validator -EventDetails._sign_external_sharing_policy_changed_details_validator = SignExternalSharingPolicyChangedDetails_validator -EventDetails._sign_template_creation_permission_changed_details_validator = SignTemplateCreationPermissionChangedDetails_validator -EventDetails._smarter_smart_sync_policy_changed_details_validator = SmarterSmartSyncPolicyChangedDetails_validator +EventDetails._send_and_track_policy_changed_details_validator = ( + SendAndTrackPolicyChangedDetails_validator +) +EventDetails._send_external_sharing_policy_changed_details_validator = ( + SendExternalSharingPolicyChangedDetails_validator +) +EventDetails._send_for_signature_policy_changed_details_validator = ( + SendForSignaturePolicyChangedDetails_validator +) +EventDetails._shared_link_default_permissions_policy_changed_details_validator = ( + SharedLinkDefaultPermissionsPolicyChangedDetails_validator +) +EventDetails._sharing_change_folder_join_policy_details_validator = ( + SharingChangeFolderJoinPolicyDetails_validator +) +EventDetails._sharing_change_link_allow_change_expiration_policy_details_validator = ( + SharingChangeLinkAllowChangeExpirationPolicyDetails_validator +) +EventDetails._sharing_change_link_default_expiration_policy_details_validator = ( + SharingChangeLinkDefaultExpirationPolicyDetails_validator +) +EventDetails._sharing_change_link_enforce_password_policy_details_validator = ( + SharingChangeLinkEnforcePasswordPolicyDetails_validator +) +EventDetails._sharing_change_link_policy_details_validator = ( + SharingChangeLinkPolicyDetails_validator +) +EventDetails._sharing_change_member_policy_details_validator = ( + SharingChangeMemberPolicyDetails_validator +) +EventDetails._showcase_change_download_policy_details_validator = ( + ShowcaseChangeDownloadPolicyDetails_validator +) +EventDetails._showcase_change_enabled_policy_details_validator = ( + ShowcaseChangeEnabledPolicyDetails_validator +) +EventDetails._showcase_change_external_sharing_policy_details_validator = ( + ShowcaseChangeExternalSharingPolicyDetails_validator +) +EventDetails._sign_external_sharing_policy_changed_details_validator = ( + SignExternalSharingPolicyChangedDetails_validator +) +EventDetails._sign_template_creation_permission_changed_details_validator = ( + SignTemplateCreationPermissionChangedDetails_validator +) +EventDetails._smarter_smart_sync_policy_changed_details_validator = ( + SmarterSmartSyncPolicyChangedDetails_validator +) EventDetails._smart_sync_change_policy_details_validator = SmartSyncChangePolicyDetails_validator EventDetails._smart_sync_not_opt_out_details_validator = SmartSyncNotOptOutDetails_validator EventDetails._smart_sync_opt_out_details_validator = SmartSyncOptOutDetails_validator EventDetails._sso_change_policy_details_validator = SsoChangePolicyDetails_validator -EventDetails._stack_cross_team_access_policy_changed_details_validator = StackCrossTeamAccessPolicyChangedDetails_validator -EventDetails._team_branding_policy_changed_details_validator = TeamBrandingPolicyChangedDetails_validator -EventDetails._team_extensions_policy_changed_details_validator = TeamExtensionsPolicyChangedDetails_validator -EventDetails._team_member_storage_request_policy_changed_details_validator = TeamMemberStorageRequestPolicyChangedDetails_validator -EventDetails._team_selective_sync_policy_changed_details_validator = TeamSelectiveSyncPolicyChangedDetails_validator -EventDetails._team_sharing_whitelist_subjects_changed_details_validator = TeamSharingWhitelistSubjectsChangedDetails_validator +EventDetails._stack_cross_team_access_policy_changed_details_validator = ( + StackCrossTeamAccessPolicyChangedDetails_validator +) +EventDetails._team_branding_policy_changed_details_validator = ( + TeamBrandingPolicyChangedDetails_validator +) +EventDetails._team_extensions_policy_changed_details_validator = ( + TeamExtensionsPolicyChangedDetails_validator +) +EventDetails._team_member_storage_request_policy_changed_details_validator = ( + TeamMemberStorageRequestPolicyChangedDetails_validator +) +EventDetails._team_selective_sync_policy_changed_details_validator = ( + TeamSelectiveSyncPolicyChangedDetails_validator +) +EventDetails._team_sharing_whitelist_subjects_changed_details_validator = ( + TeamSharingWhitelistSubjectsChangedDetails_validator +) EventDetails._tfa_add_exception_details_validator = TfaAddExceptionDetails_validator EventDetails._tfa_change_policy_details_validator = TfaChangePolicyDetails_validator EventDetails._tfa_remove_exception_details_validator = TfaRemoveExceptionDetails_validator -EventDetails._top_level_content_policy_changed_details_validator = TopLevelContentPolicyChangedDetails_validator +EventDetails._top_level_content_policy_changed_details_validator = ( + TopLevelContentPolicyChangedDetails_validator +) EventDetails._two_account_change_policy_details_validator = TwoAccountChangePolicyDetails_validator -EventDetails._viewer_info_policy_changed_details_validator = ViewerInfoPolicyChangedDetails_validator -EventDetails._watermarking_policy_changed_details_validator = WatermarkingPolicyChangedDetails_validator -EventDetails._web_sessions_change_active_session_limit_details_validator = WebSessionsChangeActiveSessionLimitDetails_validator -EventDetails._web_sessions_change_fixed_length_policy_details_validator = WebSessionsChangeFixedLengthPolicyDetails_validator -EventDetails._web_sessions_change_idle_length_policy_details_validator = WebSessionsChangeIdleLengthPolicyDetails_validator -EventDetails._data_residency_migration_request_successful_details_validator = DataResidencyMigrationRequestSuccessfulDetails_validator -EventDetails._data_residency_migration_request_unsuccessful_details_validator = DataResidencyMigrationRequestUnsuccessfulDetails_validator +EventDetails._viewer_info_policy_changed_details_validator = ( + ViewerInfoPolicyChangedDetails_validator +) +EventDetails._watermarking_policy_changed_details_validator = ( + WatermarkingPolicyChangedDetails_validator +) +EventDetails._web_sessions_change_active_session_limit_details_validator = ( + WebSessionsChangeActiveSessionLimitDetails_validator +) +EventDetails._web_sessions_change_fixed_length_policy_details_validator = ( + WebSessionsChangeFixedLengthPolicyDetails_validator +) +EventDetails._web_sessions_change_idle_length_policy_details_validator = ( + WebSessionsChangeIdleLengthPolicyDetails_validator +) +EventDetails._data_residency_migration_request_successful_details_validator = ( + DataResidencyMigrationRequestSuccessfulDetails_validator +) +EventDetails._data_residency_migration_request_unsuccessful_details_validator = ( + DataResidencyMigrationRequestUnsuccessfulDetails_validator +) EventDetails._team_merge_from_details_validator = TeamMergeFromDetails_validator EventDetails._team_merge_to_details_validator = TeamMergeToDetails_validator -EventDetails._team_profile_add_background_details_validator = TeamProfileAddBackgroundDetails_validator +EventDetails._team_profile_add_background_details_validator = ( + TeamProfileAddBackgroundDetails_validator +) EventDetails._team_profile_add_logo_details_validator = TeamProfileAddLogoDetails_validator -EventDetails._team_profile_change_background_details_validator = TeamProfileChangeBackgroundDetails_validator -EventDetails._team_profile_change_default_language_details_validator = TeamProfileChangeDefaultLanguageDetails_validator +EventDetails._team_profile_change_background_details_validator = ( + TeamProfileChangeBackgroundDetails_validator +) +EventDetails._team_profile_change_default_language_details_validator = ( + TeamProfileChangeDefaultLanguageDetails_validator +) EventDetails._team_profile_change_logo_details_validator = TeamProfileChangeLogoDetails_validator EventDetails._team_profile_change_name_details_validator = TeamProfileChangeNameDetails_validator -EventDetails._team_profile_remove_background_details_validator = TeamProfileRemoveBackgroundDetails_validator +EventDetails._team_profile_remove_background_details_validator = ( + TeamProfileRemoveBackgroundDetails_validator +) EventDetails._team_profile_remove_logo_details_validator = TeamProfileRemoveLogoDetails_validator EventDetails._passkey_add_details_validator = PasskeyAddDetails_validator EventDetails._passkey_remove_details_validator = PasskeyRemoveDetails_validator @@ -97264,663 +102599,719 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventDetails._tfa_remove_backup_phone_details_validator = TfaRemoveBackupPhoneDetails_validator EventDetails._tfa_remove_security_key_details_validator = TfaRemoveSecurityKeyDetails_validator EventDetails._tfa_reset_details_validator = TfaResetDetails_validator -EventDetails._changed_enterprise_admin_role_details_validator = ChangedEnterpriseAdminRoleDetails_validator -EventDetails._changed_enterprise_connected_team_status_details_validator = ChangedEnterpriseConnectedTeamStatusDetails_validator -EventDetails._ended_enterprise_admin_session_details_validator = EndedEnterpriseAdminSessionDetails_validator -EventDetails._ended_enterprise_admin_session_deprecated_details_validator = EndedEnterpriseAdminSessionDeprecatedDetails_validator -EventDetails._enterprise_settings_locking_details_validator = EnterpriseSettingsLockingDetails_validator +EventDetails._changed_enterprise_admin_role_details_validator = ( + ChangedEnterpriseAdminRoleDetails_validator +) +EventDetails._changed_enterprise_connected_team_status_details_validator = ( + ChangedEnterpriseConnectedTeamStatusDetails_validator +) +EventDetails._ended_enterprise_admin_session_details_validator = ( + EndedEnterpriseAdminSessionDetails_validator +) +EventDetails._ended_enterprise_admin_session_deprecated_details_validator = ( + EndedEnterpriseAdminSessionDeprecatedDetails_validator +) +EventDetails._enterprise_settings_locking_details_validator = ( + EnterpriseSettingsLockingDetails_validator +) EventDetails._guest_admin_change_status_details_validator = GuestAdminChangeStatusDetails_validator -EventDetails._started_enterprise_admin_session_details_validator = StartedEnterpriseAdminSessionDetails_validator -EventDetails._team_merge_request_accepted_details_validator = TeamMergeRequestAcceptedDetails_validator -EventDetails._team_merge_request_accepted_shown_to_primary_team_details_validator = TeamMergeRequestAcceptedShownToPrimaryTeamDetails_validator -EventDetails._team_merge_request_accepted_shown_to_secondary_team_details_validator = TeamMergeRequestAcceptedShownToSecondaryTeamDetails_validator -EventDetails._team_merge_request_auto_canceled_details_validator = TeamMergeRequestAutoCanceledDetails_validator -EventDetails._team_merge_request_canceled_details_validator = TeamMergeRequestCanceledDetails_validator -EventDetails._team_merge_request_canceled_shown_to_primary_team_details_validator = TeamMergeRequestCanceledShownToPrimaryTeamDetails_validator -EventDetails._team_merge_request_canceled_shown_to_secondary_team_details_validator = TeamMergeRequestCanceledShownToSecondaryTeamDetails_validator -EventDetails._team_merge_request_expired_details_validator = TeamMergeRequestExpiredDetails_validator -EventDetails._team_merge_request_expired_shown_to_primary_team_details_validator = TeamMergeRequestExpiredShownToPrimaryTeamDetails_validator -EventDetails._team_merge_request_expired_shown_to_secondary_team_details_validator = TeamMergeRequestExpiredShownToSecondaryTeamDetails_validator -EventDetails._team_merge_request_rejected_shown_to_primary_team_details_validator = TeamMergeRequestRejectedShownToPrimaryTeamDetails_validator -EventDetails._team_merge_request_rejected_shown_to_secondary_team_details_validator = TeamMergeRequestRejectedShownToSecondaryTeamDetails_validator -EventDetails._team_merge_request_reminder_details_validator = TeamMergeRequestReminderDetails_validator -EventDetails._team_merge_request_reminder_shown_to_primary_team_details_validator = TeamMergeRequestReminderShownToPrimaryTeamDetails_validator -EventDetails._team_merge_request_reminder_shown_to_secondary_team_details_validator = TeamMergeRequestReminderShownToSecondaryTeamDetails_validator -EventDetails._team_merge_request_revoked_details_validator = TeamMergeRequestRevokedDetails_validator -EventDetails._team_merge_request_sent_shown_to_primary_team_details_validator = TeamMergeRequestSentShownToPrimaryTeamDetails_validator -EventDetails._team_merge_request_sent_shown_to_secondary_team_details_validator = TeamMergeRequestSentShownToSecondaryTeamDetails_validator +EventDetails._started_enterprise_admin_session_details_validator = ( + StartedEnterpriseAdminSessionDetails_validator +) +EventDetails._team_merge_request_accepted_details_validator = ( + TeamMergeRequestAcceptedDetails_validator +) +EventDetails._team_merge_request_accepted_shown_to_primary_team_details_validator = ( + TeamMergeRequestAcceptedShownToPrimaryTeamDetails_validator +) +EventDetails._team_merge_request_accepted_shown_to_secondary_team_details_validator = ( + TeamMergeRequestAcceptedShownToSecondaryTeamDetails_validator +) +EventDetails._team_merge_request_auto_canceled_details_validator = ( + TeamMergeRequestAutoCanceledDetails_validator +) +EventDetails._team_merge_request_canceled_details_validator = ( + TeamMergeRequestCanceledDetails_validator +) +EventDetails._team_merge_request_canceled_shown_to_primary_team_details_validator = ( + TeamMergeRequestCanceledShownToPrimaryTeamDetails_validator +) +EventDetails._team_merge_request_canceled_shown_to_secondary_team_details_validator = ( + TeamMergeRequestCanceledShownToSecondaryTeamDetails_validator +) +EventDetails._team_merge_request_expired_details_validator = ( + TeamMergeRequestExpiredDetails_validator +) +EventDetails._team_merge_request_expired_shown_to_primary_team_details_validator = ( + TeamMergeRequestExpiredShownToPrimaryTeamDetails_validator +) +EventDetails._team_merge_request_expired_shown_to_secondary_team_details_validator = ( + TeamMergeRequestExpiredShownToSecondaryTeamDetails_validator +) +EventDetails._team_merge_request_rejected_shown_to_primary_team_details_validator = ( + TeamMergeRequestRejectedShownToPrimaryTeamDetails_validator +) +EventDetails._team_merge_request_rejected_shown_to_secondary_team_details_validator = ( + TeamMergeRequestRejectedShownToSecondaryTeamDetails_validator +) +EventDetails._team_merge_request_reminder_details_validator = ( + TeamMergeRequestReminderDetails_validator +) +EventDetails._team_merge_request_reminder_shown_to_primary_team_details_validator = ( + TeamMergeRequestReminderShownToPrimaryTeamDetails_validator +) +EventDetails._team_merge_request_reminder_shown_to_secondary_team_details_validator = ( + TeamMergeRequestReminderShownToSecondaryTeamDetails_validator +) +EventDetails._team_merge_request_revoked_details_validator = ( + TeamMergeRequestRevokedDetails_validator +) +EventDetails._team_merge_request_sent_shown_to_primary_team_details_validator = ( + TeamMergeRequestSentShownToPrimaryTeamDetails_validator +) +EventDetails._team_merge_request_sent_shown_to_secondary_team_details_validator = ( + TeamMergeRequestSentShownToSecondaryTeamDetails_validator +) EventDetails._missing_details_validator = MissingDetails_validator EventDetails._other_validator = bv.Void() EventDetails._tagmap = { - 'admin_alerting_alert_state_changed_details': EventDetails._admin_alerting_alert_state_changed_details_validator, - 'admin_alerting_changed_alert_config_details': EventDetails._admin_alerting_changed_alert_config_details_validator, - 'admin_alerting_triggered_alert_details': EventDetails._admin_alerting_triggered_alert_details_validator, - 'ransomware_restore_process_completed_details': EventDetails._ransomware_restore_process_completed_details_validator, - 'ransomware_restore_process_started_details': EventDetails._ransomware_restore_process_started_details_validator, - 'app_blocked_by_permissions_details': EventDetails._app_blocked_by_permissions_details_validator, - 'app_link_team_details': EventDetails._app_link_team_details_validator, - 'app_link_user_details': EventDetails._app_link_user_details_validator, - 'app_unlink_team_details': EventDetails._app_unlink_team_details_validator, - 'app_unlink_user_details': EventDetails._app_unlink_user_details_validator, - 'integration_connected_details': EventDetails._integration_connected_details_validator, - 'integration_disconnected_details': EventDetails._integration_disconnected_details_validator, - 'file_add_comment_details': EventDetails._file_add_comment_details_validator, - 'file_change_comment_subscription_details': EventDetails._file_change_comment_subscription_details_validator, - 'file_delete_comment_details': EventDetails._file_delete_comment_details_validator, - 'file_edit_comment_details': EventDetails._file_edit_comment_details_validator, - 'file_like_comment_details': EventDetails._file_like_comment_details_validator, - 'file_resolve_comment_details': EventDetails._file_resolve_comment_details_validator, - 'file_unlike_comment_details': EventDetails._file_unlike_comment_details_validator, - 'file_unresolve_comment_details': EventDetails._file_unresolve_comment_details_validator, - 'dash_added_comment_to_stack_details': EventDetails._dash_added_comment_to_stack_details_validator, - 'dash_added_connector_details': EventDetails._dash_added_connector_details_validator, - 'dash_added_link_to_stack_details': EventDetails._dash_added_link_to_stack_details_validator, - 'dash_added_team_email_domain_allowlist_details': EventDetails._dash_added_team_email_domain_allowlist_details_validator, - 'dash_admin_added_org_wide_connector_details': EventDetails._dash_admin_added_org_wide_connector_details_validator, - 'dash_admin_disabled_connector_details': EventDetails._dash_admin_disabled_connector_details_validator, - 'dash_admin_enabled_connector_details': EventDetails._dash_admin_enabled_connector_details_validator, - 'dash_admin_removed_org_wide_connector_details': EventDetails._dash_admin_removed_org_wide_connector_details_validator, - 'dash_archived_stack_details': EventDetails._dash_archived_stack_details_validator, - 'dash_changed_audience_of_shared_link_to_stack_details': EventDetails._dash_changed_audience_of_shared_link_to_stack_details_validator, - 'dash_cloned_stack_details': EventDetails._dash_cloned_stack_details_validator, - 'dash_connector_tools_call_details': EventDetails._dash_connector_tools_call_details_validator, - 'dash_created_stack_details': EventDetails._dash_created_stack_details_validator, - 'dash_deleted_comment_from_stack_details': EventDetails._dash_deleted_comment_from_stack_details_validator, - 'dash_deleted_stack_details': EventDetails._dash_deleted_stack_details_validator, - 'dash_edited_comment_in_stack_details': EventDetails._dash_edited_comment_in_stack_details_validator, - 'dash_external_user_opened_stack_details': EventDetails._dash_external_user_opened_stack_details_validator, - 'dash_first_launched_desktop_details': EventDetails._dash_first_launched_desktop_details_validator, - 'dash_first_launched_extension_details': EventDetails._dash_first_launched_extension_details_validator, - 'dash_first_launched_web_start_page_details': EventDetails._dash_first_launched_web_start_page_details_validator, - 'dash_opened_shared_link_to_stack_details': EventDetails._dash_opened_shared_link_to_stack_details_validator, - 'dash_opened_stack_details': EventDetails._dash_opened_stack_details_validator, - 'dash_preview_opt_out_status_changed_details': EventDetails._dash_preview_opt_out_status_changed_details_validator, - 'dash_removed_connector_details': EventDetails._dash_removed_connector_details_validator, - 'dash_removed_link_from_stack_details': EventDetails._dash_removed_link_from_stack_details_validator, - 'dash_removed_shared_link_to_stack_details': EventDetails._dash_removed_shared_link_to_stack_details_validator, - 'dash_removed_team_email_domain_allowlist_details': EventDetails._dash_removed_team_email_domain_allowlist_details_validator, - 'dash_renamed_stack_details': EventDetails._dash_renamed_stack_details_validator, - 'dash_shared_link_to_stack_details': EventDetails._dash_shared_link_to_stack_details_validator, - 'dash_unarchived_stack_details': EventDetails._dash_unarchived_stack_details_validator, - 'dash_viewed_company_stack_details': EventDetails._dash_viewed_company_stack_details_validator, - 'dash_viewed_external_ai_activity_report_details': EventDetails._dash_viewed_external_ai_activity_report_details_validator, - 'governance_policy_add_folders_details': EventDetails._governance_policy_add_folders_details_validator, - 'governance_policy_add_folder_failed_details': EventDetails._governance_policy_add_folder_failed_details_validator, - 'governance_policy_content_disposed_details': EventDetails._governance_policy_content_disposed_details_validator, - 'governance_policy_create_details': EventDetails._governance_policy_create_details_validator, - 'governance_policy_delete_details': EventDetails._governance_policy_delete_details_validator, - 'governance_policy_edit_details_details': EventDetails._governance_policy_edit_details_details_validator, - 'governance_policy_edit_duration_details': EventDetails._governance_policy_edit_duration_details_validator, - 'governance_policy_export_created_details': EventDetails._governance_policy_export_created_details_validator, - 'governance_policy_export_removed_details': EventDetails._governance_policy_export_removed_details_validator, - 'governance_policy_remove_folders_details': EventDetails._governance_policy_remove_folders_details_validator, - 'governance_policy_report_created_details': EventDetails._governance_policy_report_created_details_validator, - 'governance_policy_zip_part_downloaded_details': EventDetails._governance_policy_zip_part_downloaded_details_validator, - 'legal_holds_activate_a_hold_details': EventDetails._legal_holds_activate_a_hold_details_validator, - 'legal_holds_add_members_details': EventDetails._legal_holds_add_members_details_validator, - 'legal_holds_change_hold_details_details': EventDetails._legal_holds_change_hold_details_details_validator, - 'legal_holds_change_hold_name_details': EventDetails._legal_holds_change_hold_name_details_validator, - 'legal_holds_export_a_hold_details': EventDetails._legal_holds_export_a_hold_details_validator, - 'legal_holds_export_cancelled_details': EventDetails._legal_holds_export_cancelled_details_validator, - 'legal_holds_export_downloaded_details': EventDetails._legal_holds_export_downloaded_details_validator, - 'legal_holds_export_removed_details': EventDetails._legal_holds_export_removed_details_validator, - 'legal_holds_release_a_hold_details': EventDetails._legal_holds_release_a_hold_details_validator, - 'legal_holds_remove_members_details': EventDetails._legal_holds_remove_members_details_validator, - 'legal_holds_report_a_hold_details': EventDetails._legal_holds_report_a_hold_details_validator, - 'device_change_ip_desktop_details': EventDetails._device_change_ip_desktop_details_validator, - 'device_change_ip_mobile_details': EventDetails._device_change_ip_mobile_details_validator, - 'device_change_ip_web_details': EventDetails._device_change_ip_web_details_validator, - 'device_delete_on_unlink_fail_details': EventDetails._device_delete_on_unlink_fail_details_validator, - 'device_delete_on_unlink_success_details': EventDetails._device_delete_on_unlink_success_details_validator, - 'device_link_fail_details': EventDetails._device_link_fail_details_validator, - 'device_link_success_details': EventDetails._device_link_success_details_validator, - 'device_management_disabled_details': EventDetails._device_management_disabled_details_validator, - 'device_management_enabled_details': EventDetails._device_management_enabled_details_validator, - 'device_sync_backup_status_changed_details': EventDetails._device_sync_backup_status_changed_details_validator, - 'device_unlink_details': EventDetails._device_unlink_details_validator, - 'dropbox_passwords_exported_details': EventDetails._dropbox_passwords_exported_details_validator, - 'dropbox_passwords_new_device_enrolled_details': EventDetails._dropbox_passwords_new_device_enrolled_details_validator, - 'emm_refresh_auth_token_details': EventDetails._emm_refresh_auth_token_details_validator, - 'external_drive_backup_eligibility_status_checked_details': EventDetails._external_drive_backup_eligibility_status_checked_details_validator, - 'external_drive_backup_status_changed_details': EventDetails._external_drive_backup_status_changed_details_validator, - 'account_capture_change_availability_details': EventDetails._account_capture_change_availability_details_validator, - 'account_capture_migrate_account_details': EventDetails._account_capture_migrate_account_details_validator, - 'account_capture_notification_emails_sent_details': EventDetails._account_capture_notification_emails_sent_details_validator, - 'account_capture_relinquish_account_details': EventDetails._account_capture_relinquish_account_details_validator, - 'disabled_domain_invites_details': EventDetails._disabled_domain_invites_details_validator, - 'domain_invites_approve_request_to_join_team_details': EventDetails._domain_invites_approve_request_to_join_team_details_validator, - 'domain_invites_decline_request_to_join_team_details': EventDetails._domain_invites_decline_request_to_join_team_details_validator, - 'domain_invites_email_existing_users_details': EventDetails._domain_invites_email_existing_users_details_validator, - 'domain_invites_request_to_join_team_details': EventDetails._domain_invites_request_to_join_team_details_validator, - 'domain_invites_set_invite_new_user_pref_to_no_details': EventDetails._domain_invites_set_invite_new_user_pref_to_no_details_validator, - 'domain_invites_set_invite_new_user_pref_to_yes_details': EventDetails._domain_invites_set_invite_new_user_pref_to_yes_details_validator, - 'domain_verification_add_domain_fail_details': EventDetails._domain_verification_add_domain_fail_details_validator, - 'domain_verification_add_domain_success_details': EventDetails._domain_verification_add_domain_success_details_validator, - 'domain_verification_remove_domain_details': EventDetails._domain_verification_remove_domain_details_validator, - 'enabled_domain_invites_details': EventDetails._enabled_domain_invites_details_validator, - 'encrypted_folder_cancel_team_key_rotation_details': EventDetails._encrypted_folder_cancel_team_key_rotation_details_validator, - 'encrypted_folder_enroll_backup_key_details': EventDetails._encrypted_folder_enroll_backup_key_details_validator, - 'encrypted_folder_enroll_client_details': EventDetails._encrypted_folder_enroll_client_details_validator, - 'encrypted_folder_enroll_team_details': EventDetails._encrypted_folder_enroll_team_details_validator, - 'encrypted_folder_finish_team_unenrollment_details': EventDetails._encrypted_folder_finish_team_unenrollment_details_validator, - 'encrypted_folder_init_team_key_rotation_details': EventDetails._encrypted_folder_init_team_key_rotation_details_validator, - 'encrypted_folder_init_team_unenrollment_details': EventDetails._encrypted_folder_init_team_unenrollment_details_validator, - 'encrypted_folder_remove_backup_key_details': EventDetails._encrypted_folder_remove_backup_key_details_validator, - 'encrypted_folder_rotate_team_key_details': EventDetails._encrypted_folder_rotate_team_key_details_validator, - 'encrypted_folder_unenroll_client_details': EventDetails._encrypted_folder_unenroll_client_details_validator, - 'team_encryption_key_activate_key_details': EventDetails._team_encryption_key_activate_key_details_validator, - 'team_encryption_key_cancel_key_deletion_details': EventDetails._team_encryption_key_cancel_key_deletion_details_validator, - 'team_encryption_key_create_key_details': EventDetails._team_encryption_key_create_key_details_validator, - 'team_encryption_key_deactivate_key_details': EventDetails._team_encryption_key_deactivate_key_details_validator, - 'team_encryption_key_delete_key_details': EventDetails._team_encryption_key_delete_key_details_validator, - 'team_encryption_key_disable_key_details': EventDetails._team_encryption_key_disable_key_details_validator, - 'team_encryption_key_enable_key_details': EventDetails._team_encryption_key_enable_key_details_validator, - 'team_encryption_key_rotate_key_details': EventDetails._team_encryption_key_rotate_key_details_validator, - 'team_encryption_key_schedule_key_deletion_details': EventDetails._team_encryption_key_schedule_key_deletion_details_validator, - 'apply_naming_convention_details': EventDetails._apply_naming_convention_details_validator, - 'create_folder_details': EventDetails._create_folder_details_validator, - 'file_add_details': EventDetails._file_add_details_validator, - 'file_add_from_automation_details': EventDetails._file_add_from_automation_details_validator, - 'file_copy_details': EventDetails._file_copy_details_validator, - 'file_delete_details': EventDetails._file_delete_details_validator, - 'file_download_details': EventDetails._file_download_details_validator, - 'file_edit_details': EventDetails._file_edit_details_validator, - 'file_get_copy_reference_details': EventDetails._file_get_copy_reference_details_validator, - 'file_locking_lock_status_changed_details': EventDetails._file_locking_lock_status_changed_details_validator, - 'file_move_details': EventDetails._file_move_details_validator, - 'file_permanently_delete_details': EventDetails._file_permanently_delete_details_validator, - 'file_preview_details': EventDetails._file_preview_details_validator, - 'file_rename_details': EventDetails._file_rename_details_validator, - 'file_restore_details': EventDetails._file_restore_details_validator, - 'file_revert_details': EventDetails._file_revert_details_validator, - 'file_rollback_changes_details': EventDetails._file_rollback_changes_details_validator, - 'file_save_copy_reference_details': EventDetails._file_save_copy_reference_details_validator, - 'folder_overview_description_changed_details': EventDetails._folder_overview_description_changed_details_validator, - 'folder_overview_item_pinned_details': EventDetails._folder_overview_item_pinned_details_validator, - 'folder_overview_item_unpinned_details': EventDetails._folder_overview_item_unpinned_details_validator, - 'media_hub_file_downloaded_details': EventDetails._media_hub_file_downloaded_details_validator, - 'object_label_added_details': EventDetails._object_label_added_details_validator, - 'object_label_removed_details': EventDetails._object_label_removed_details_validator, - 'object_label_updated_value_details': EventDetails._object_label_updated_value_details_validator, - 'organize_folder_with_tidy_details': EventDetails._organize_folder_with_tidy_details_validator, - 'replay_file_delete_details': EventDetails._replay_file_delete_details_validator, - 'replay_file_downloaded_details': EventDetails._replay_file_downloaded_details_validator, - 'replay_team_project_created_details': EventDetails._replay_team_project_created_details_validator, - 'rewind_folder_details': EventDetails._rewind_folder_details_validator, - 'undo_naming_convention_details': EventDetails._undo_naming_convention_details_validator, - 'undo_organize_folder_with_tidy_details': EventDetails._undo_organize_folder_with_tidy_details_validator, - 'user_tags_added_details': EventDetails._user_tags_added_details_validator, - 'user_tags_removed_details': EventDetails._user_tags_removed_details_validator, - 'email_ingest_receive_file_details': EventDetails._email_ingest_receive_file_details_validator, - 'file_request_auto_close_details': EventDetails._file_request_auto_close_details_validator, - 'file_request_change_details': EventDetails._file_request_change_details_validator, - 'file_request_close_details': EventDetails._file_request_close_details_validator, - 'file_request_create_details': EventDetails._file_request_create_details_validator, - 'file_request_delete_details': EventDetails._file_request_delete_details_validator, - 'file_request_receive_file_details': EventDetails._file_request_receive_file_details_validator, - 'group_add_external_id_details': EventDetails._group_add_external_id_details_validator, - 'group_add_member_details': EventDetails._group_add_member_details_validator, - 'group_change_external_id_details': EventDetails._group_change_external_id_details_validator, - 'group_change_management_type_details': EventDetails._group_change_management_type_details_validator, - 'group_change_member_role_details': EventDetails._group_change_member_role_details_validator, - 'group_create_details': EventDetails._group_create_details_validator, - 'group_delete_details': EventDetails._group_delete_details_validator, - 'group_description_updated_details': EventDetails._group_description_updated_details_validator, - 'group_external_sharing_setting_override_changed_details': EventDetails._group_external_sharing_setting_override_changed_details_validator, - 'group_join_policy_updated_details': EventDetails._group_join_policy_updated_details_validator, - 'group_moved_details': EventDetails._group_moved_details_validator, - 'group_remove_external_id_details': EventDetails._group_remove_external_id_details_validator, - 'group_remove_member_details': EventDetails._group_remove_member_details_validator, - 'group_rename_details': EventDetails._group_rename_details_validator, - 'account_lock_or_unlocked_details': EventDetails._account_lock_or_unlocked_details_validator, - 'emm_error_details': EventDetails._emm_error_details_validator, - 'guest_admin_signed_in_via_trusted_teams_details': EventDetails._guest_admin_signed_in_via_trusted_teams_details_validator, - 'guest_admin_signed_out_via_trusted_teams_details': EventDetails._guest_admin_signed_out_via_trusted_teams_details_validator, - 'login_fail_details': EventDetails._login_fail_details_validator, - 'login_success_details': EventDetails._login_success_details_validator, - 'logout_details': EventDetails._logout_details_validator, - 'reseller_support_session_end_details': EventDetails._reseller_support_session_end_details_validator, - 'reseller_support_session_start_details': EventDetails._reseller_support_session_start_details_validator, - 'sign_in_as_session_end_details': EventDetails._sign_in_as_session_end_details_validator, - 'sign_in_as_session_start_details': EventDetails._sign_in_as_session_start_details_validator, - 'sso_error_details': EventDetails._sso_error_details_validator, - 'addon_assigned_details': EventDetails._addon_assigned_details_validator, - 'addon_removed_details': EventDetails._addon_removed_details_validator, - 'backup_admin_invitation_sent_details': EventDetails._backup_admin_invitation_sent_details_validator, - 'backup_invitation_opened_details': EventDetails._backup_invitation_opened_details_validator, - 'create_team_invite_link_details': EventDetails._create_team_invite_link_details_validator, - 'delete_team_invite_link_details': EventDetails._delete_team_invite_link_details_validator, - 'member_add_external_id_details': EventDetails._member_add_external_id_details_validator, - 'member_add_name_details': EventDetails._member_add_name_details_validator, - 'member_change_admin_role_details': EventDetails._member_change_admin_role_details_validator, - 'member_change_email_details': EventDetails._member_change_email_details_validator, - 'member_change_external_id_details': EventDetails._member_change_external_id_details_validator, - 'member_change_membership_type_details': EventDetails._member_change_membership_type_details_validator, - 'member_change_name_details': EventDetails._member_change_name_details_validator, - 'member_change_reseller_role_details': EventDetails._member_change_reseller_role_details_validator, - 'member_change_status_details': EventDetails._member_change_status_details_validator, - 'member_delete_manual_contacts_details': EventDetails._member_delete_manual_contacts_details_validator, - 'member_delete_profile_photo_details': EventDetails._member_delete_profile_photo_details_validator, - 'member_permanently_delete_account_contents_details': EventDetails._member_permanently_delete_account_contents_details_validator, - 'member_remove_external_id_details': EventDetails._member_remove_external_id_details_validator, - 'member_set_profile_photo_details': EventDetails._member_set_profile_photo_details_validator, - 'member_space_limits_add_custom_quota_details': EventDetails._member_space_limits_add_custom_quota_details_validator, - 'member_space_limits_change_custom_quota_details': EventDetails._member_space_limits_change_custom_quota_details_validator, - 'member_space_limits_change_status_details': EventDetails._member_space_limits_change_status_details_validator, - 'member_space_limits_remove_custom_quota_details': EventDetails._member_space_limits_remove_custom_quota_details_validator, - 'member_suggest_details': EventDetails._member_suggest_details_validator, - 'member_transfer_account_contents_details': EventDetails._member_transfer_account_contents_details_validator, - 'pending_secondary_email_added_details': EventDetails._pending_secondary_email_added_details_validator, - 'product_assigned_to_member_details': EventDetails._product_assigned_to_member_details_validator, - 'product_removed_from_member_details': EventDetails._product_removed_from_member_details_validator, - 'secondary_email_deleted_details': EventDetails._secondary_email_deleted_details_validator, - 'secondary_email_verified_details': EventDetails._secondary_email_verified_details_validator, - 'secondary_mails_policy_changed_details': EventDetails._secondary_mails_policy_changed_details_validator, - 'binder_add_page_details': EventDetails._binder_add_page_details_validator, - 'binder_add_section_details': EventDetails._binder_add_section_details_validator, - 'binder_remove_page_details': EventDetails._binder_remove_page_details_validator, - 'binder_remove_section_details': EventDetails._binder_remove_section_details_validator, - 'binder_rename_page_details': EventDetails._binder_rename_page_details_validator, - 'binder_rename_section_details': EventDetails._binder_rename_section_details_validator, - 'binder_reorder_page_details': EventDetails._binder_reorder_page_details_validator, - 'binder_reorder_section_details': EventDetails._binder_reorder_section_details_validator, - 'paper_content_add_member_details': EventDetails._paper_content_add_member_details_validator, - 'paper_content_add_to_folder_details': EventDetails._paper_content_add_to_folder_details_validator, - 'paper_content_archive_details': EventDetails._paper_content_archive_details_validator, - 'paper_content_create_details': EventDetails._paper_content_create_details_validator, - 'paper_content_permanently_delete_details': EventDetails._paper_content_permanently_delete_details_validator, - 'paper_content_remove_from_folder_details': EventDetails._paper_content_remove_from_folder_details_validator, - 'paper_content_remove_member_details': EventDetails._paper_content_remove_member_details_validator, - 'paper_content_rename_details': EventDetails._paper_content_rename_details_validator, - 'paper_content_restore_details': EventDetails._paper_content_restore_details_validator, - 'paper_doc_add_comment_details': EventDetails._paper_doc_add_comment_details_validator, - 'paper_doc_change_member_role_details': EventDetails._paper_doc_change_member_role_details_validator, - 'paper_doc_change_sharing_policy_details': EventDetails._paper_doc_change_sharing_policy_details_validator, - 'paper_doc_change_subscription_details': EventDetails._paper_doc_change_subscription_details_validator, - 'paper_doc_deleted_details': EventDetails._paper_doc_deleted_details_validator, - 'paper_doc_delete_comment_details': EventDetails._paper_doc_delete_comment_details_validator, - 'paper_doc_download_details': EventDetails._paper_doc_download_details_validator, - 'paper_doc_edit_details': EventDetails._paper_doc_edit_details_validator, - 'paper_doc_edit_comment_details': EventDetails._paper_doc_edit_comment_details_validator, - 'paper_doc_followed_details': EventDetails._paper_doc_followed_details_validator, - 'paper_doc_mention_details': EventDetails._paper_doc_mention_details_validator, - 'paper_doc_ownership_changed_details': EventDetails._paper_doc_ownership_changed_details_validator, - 'paper_doc_request_access_details': EventDetails._paper_doc_request_access_details_validator, - 'paper_doc_resolve_comment_details': EventDetails._paper_doc_resolve_comment_details_validator, - 'paper_doc_revert_details': EventDetails._paper_doc_revert_details_validator, - 'paper_doc_slack_share_details': EventDetails._paper_doc_slack_share_details_validator, - 'paper_doc_team_invite_details': EventDetails._paper_doc_team_invite_details_validator, - 'paper_doc_trashed_details': EventDetails._paper_doc_trashed_details_validator, - 'paper_doc_unresolve_comment_details': EventDetails._paper_doc_unresolve_comment_details_validator, - 'paper_doc_untrashed_details': EventDetails._paper_doc_untrashed_details_validator, - 'paper_doc_view_details': EventDetails._paper_doc_view_details_validator, - 'paper_external_view_allow_details': EventDetails._paper_external_view_allow_details_validator, - 'paper_external_view_default_team_details': EventDetails._paper_external_view_default_team_details_validator, - 'paper_external_view_forbid_details': EventDetails._paper_external_view_forbid_details_validator, - 'paper_folder_change_subscription_details': EventDetails._paper_folder_change_subscription_details_validator, - 'paper_folder_deleted_details': EventDetails._paper_folder_deleted_details_validator, - 'paper_folder_followed_details': EventDetails._paper_folder_followed_details_validator, - 'paper_folder_team_invite_details': EventDetails._paper_folder_team_invite_details_validator, - 'paper_published_link_change_permission_details': EventDetails._paper_published_link_change_permission_details_validator, - 'paper_published_link_create_details': EventDetails._paper_published_link_create_details_validator, - 'paper_published_link_disabled_details': EventDetails._paper_published_link_disabled_details_validator, - 'paper_published_link_view_details': EventDetails._paper_published_link_view_details_validator, - 'password_change_details': EventDetails._password_change_details_validator, - 'password_reset_details': EventDetails._password_reset_details_validator, - 'password_reset_all_details': EventDetails._password_reset_all_details_validator, - 'protect_internal_domains_changed_details': EventDetails._protect_internal_domains_changed_details_validator, - 'classification_create_report_details': EventDetails._classification_create_report_details_validator, - 'classification_create_report_fail_details': EventDetails._classification_create_report_fail_details_validator, - 'emm_create_exceptions_report_details': EventDetails._emm_create_exceptions_report_details_validator, - 'emm_create_usage_report_details': EventDetails._emm_create_usage_report_details_validator, - 'export_members_report_details': EventDetails._export_members_report_details_validator, - 'export_members_report_fail_details': EventDetails._export_members_report_fail_details_validator, - 'external_sharing_create_report_details': EventDetails._external_sharing_create_report_details_validator, - 'external_sharing_report_failed_details': EventDetails._external_sharing_report_failed_details_validator, - 'member_access_details_create_report_details': EventDetails._member_access_details_create_report_details_validator, - 'member_access_details_create_report_failed_details': EventDetails._member_access_details_create_report_failed_details_validator, - 'no_expiration_link_gen_create_report_details': EventDetails._no_expiration_link_gen_create_report_details_validator, - 'no_expiration_link_gen_report_failed_details': EventDetails._no_expiration_link_gen_report_failed_details_validator, - 'no_password_link_gen_create_report_details': EventDetails._no_password_link_gen_create_report_details_validator, - 'no_password_link_gen_report_failed_details': EventDetails._no_password_link_gen_report_failed_details_validator, - 'no_password_link_view_create_report_details': EventDetails._no_password_link_view_create_report_details_validator, - 'no_password_link_view_report_failed_details': EventDetails._no_password_link_view_report_failed_details_validator, - 'outdated_link_view_create_report_details': EventDetails._outdated_link_view_create_report_details_validator, - 'outdated_link_view_report_failed_details': EventDetails._outdated_link_view_report_failed_details_validator, - 'paper_admin_export_start_details': EventDetails._paper_admin_export_start_details_validator, - 'ransomware_alert_create_report_details': EventDetails._ransomware_alert_create_report_details_validator, - 'ransomware_alert_create_report_failed_details': EventDetails._ransomware_alert_create_report_failed_details_validator, - 'shared_folders_create_report_details': EventDetails._shared_folders_create_report_details_validator, - 'shared_folders_create_report_failed_details': EventDetails._shared_folders_create_report_failed_details_validator, - 'smart_sync_create_admin_privilege_report_details': EventDetails._smart_sync_create_admin_privilege_report_details_validator, - 'team_activity_create_report_details': EventDetails._team_activity_create_report_details_validator, - 'team_activity_create_report_fail_details': EventDetails._team_activity_create_report_fail_details_validator, - 'team_folders_create_report_details': EventDetails._team_folders_create_report_details_validator, - 'team_folders_create_report_failed_details': EventDetails._team_folders_create_report_failed_details_validator, - 'team_storage_create_report_details': EventDetails._team_storage_create_report_details_validator, - 'team_storage_create_report_failed_details': EventDetails._team_storage_create_report_failed_details_validator, - 'collection_share_details': EventDetails._collection_share_details_validator, - 'file_transfers_file_add_details': EventDetails._file_transfers_file_add_details_validator, - 'file_transfers_transfer_delete_details': EventDetails._file_transfers_transfer_delete_details_validator, - 'file_transfers_transfer_download_details': EventDetails._file_transfers_transfer_download_details_validator, - 'file_transfers_transfer_send_details': EventDetails._file_transfers_transfer_send_details_validator, - 'file_transfers_transfer_view_details': EventDetails._file_transfers_transfer_view_details_validator, - 'media_hub_project_team_add_details': EventDetails._media_hub_project_team_add_details_validator, - 'media_hub_project_team_delete_details': EventDetails._media_hub_project_team_delete_details_validator, - 'media_hub_project_team_role_changed_details': EventDetails._media_hub_project_team_role_changed_details_validator, - 'media_hub_shared_link_audience_changed_details': EventDetails._media_hub_shared_link_audience_changed_details_validator, - 'media_hub_shared_link_created_details': EventDetails._media_hub_shared_link_created_details_validator, - 'media_hub_shared_link_download_setting_changed_details': EventDetails._media_hub_shared_link_download_setting_changed_details_validator, - 'media_hub_shared_link_revoked_details': EventDetails._media_hub_shared_link_revoked_details_validator, - 'note_acl_invite_only_details': EventDetails._note_acl_invite_only_details_validator, - 'note_acl_link_details': EventDetails._note_acl_link_details_validator, - 'note_acl_team_link_details': EventDetails._note_acl_team_link_details_validator, - 'note_shared_details': EventDetails._note_shared_details_validator, - 'note_share_receive_details': EventDetails._note_share_receive_details_validator, - 'open_note_shared_details': EventDetails._open_note_shared_details_validator, - 'replay_file_shared_link_created_details': EventDetails._replay_file_shared_link_created_details_validator, - 'replay_file_shared_link_modified_details': EventDetails._replay_file_shared_link_modified_details_validator, - 'replay_project_team_add_details': EventDetails._replay_project_team_add_details_validator, - 'replay_project_team_delete_details': EventDetails._replay_project_team_delete_details_validator, - 'send_and_track_file_added_details': EventDetails._send_and_track_file_added_details_validator, - 'send_and_track_file_renamed_details': EventDetails._send_and_track_file_renamed_details_validator, - 'send_and_track_file_updated_details': EventDetails._send_and_track_file_updated_details_validator, - 'send_and_track_link_created_details': EventDetails._send_and_track_link_created_details_validator, - 'send_and_track_link_deleted_details': EventDetails._send_and_track_link_deleted_details_validator, - 'send_and_track_link_updated_details': EventDetails._send_and_track_link_updated_details_validator, - 'send_and_track_link_viewed_details': EventDetails._send_and_track_link_viewed_details_validator, - 'send_and_track_removed_file_and_associated_links_details': EventDetails._send_and_track_removed_file_and_associated_links_details_validator, - 'sf_add_group_details': EventDetails._sf_add_group_details_validator, - 'sf_allow_non_members_to_view_shared_links_details': EventDetails._sf_allow_non_members_to_view_shared_links_details_validator, - 'sf_external_invite_warn_details': EventDetails._sf_external_invite_warn_details_validator, - 'sf_fb_invite_details': EventDetails._sf_fb_invite_details_validator, - 'sf_fb_invite_change_role_details': EventDetails._sf_fb_invite_change_role_details_validator, - 'sf_fb_uninvite_details': EventDetails._sf_fb_uninvite_details_validator, - 'sf_invite_group_details': EventDetails._sf_invite_group_details_validator, - 'sf_team_grant_access_details': EventDetails._sf_team_grant_access_details_validator, - 'sf_team_invite_details': EventDetails._sf_team_invite_details_validator, - 'sf_team_invite_change_role_details': EventDetails._sf_team_invite_change_role_details_validator, - 'sf_team_join_details': EventDetails._sf_team_join_details_validator, - 'sf_team_join_from_oob_link_details': EventDetails._sf_team_join_from_oob_link_details_validator, - 'sf_team_uninvite_details': EventDetails._sf_team_uninvite_details_validator, - 'shared_content_add_invitees_details': EventDetails._shared_content_add_invitees_details_validator, - 'shared_content_add_link_expiry_details': EventDetails._shared_content_add_link_expiry_details_validator, - 'shared_content_add_link_password_details': EventDetails._shared_content_add_link_password_details_validator, - 'shared_content_add_member_details': EventDetails._shared_content_add_member_details_validator, - 'shared_content_change_downloads_policy_details': EventDetails._shared_content_change_downloads_policy_details_validator, - 'shared_content_change_invitee_role_details': EventDetails._shared_content_change_invitee_role_details_validator, - 'shared_content_change_link_audience_details': EventDetails._shared_content_change_link_audience_details_validator, - 'shared_content_change_link_expiry_details': EventDetails._shared_content_change_link_expiry_details_validator, - 'shared_content_change_link_password_details': EventDetails._shared_content_change_link_password_details_validator, - 'shared_content_change_member_role_details': EventDetails._shared_content_change_member_role_details_validator, - 'shared_content_change_viewer_info_policy_details': EventDetails._shared_content_change_viewer_info_policy_details_validator, - 'shared_content_claim_invitation_details': EventDetails._shared_content_claim_invitation_details_validator, - 'shared_content_copy_details': EventDetails._shared_content_copy_details_validator, - 'shared_content_download_details': EventDetails._shared_content_download_details_validator, - 'shared_content_relinquish_membership_details': EventDetails._shared_content_relinquish_membership_details_validator, - 'shared_content_remove_invitees_details': EventDetails._shared_content_remove_invitees_details_validator, - 'shared_content_remove_link_expiry_details': EventDetails._shared_content_remove_link_expiry_details_validator, - 'shared_content_remove_link_password_details': EventDetails._shared_content_remove_link_password_details_validator, - 'shared_content_remove_member_details': EventDetails._shared_content_remove_member_details_validator, - 'shared_content_request_access_details': EventDetails._shared_content_request_access_details_validator, - 'shared_content_restore_invitees_details': EventDetails._shared_content_restore_invitees_details_validator, - 'shared_content_restore_member_details': EventDetails._shared_content_restore_member_details_validator, - 'shared_content_unshare_details': EventDetails._shared_content_unshare_details_validator, - 'shared_content_view_details': EventDetails._shared_content_view_details_validator, - 'shared_folder_change_link_policy_details': EventDetails._shared_folder_change_link_policy_details_validator, - 'shared_folder_change_members_inheritance_policy_details': EventDetails._shared_folder_change_members_inheritance_policy_details_validator, - 'shared_folder_change_members_management_policy_details': EventDetails._shared_folder_change_members_management_policy_details_validator, - 'shared_folder_change_members_policy_details': EventDetails._shared_folder_change_members_policy_details_validator, - 'shared_folder_create_details': EventDetails._shared_folder_create_details_validator, - 'shared_folder_decline_invitation_details': EventDetails._shared_folder_decline_invitation_details_validator, - 'shared_folder_mount_details': EventDetails._shared_folder_mount_details_validator, - 'shared_folder_nest_details': EventDetails._shared_folder_nest_details_validator, - 'shared_folder_transfer_ownership_details': EventDetails._shared_folder_transfer_ownership_details_validator, - 'shared_folder_unmount_details': EventDetails._shared_folder_unmount_details_validator, - 'shared_link_add_expiry_details': EventDetails._shared_link_add_expiry_details_validator, - 'shared_link_change_expiry_details': EventDetails._shared_link_change_expiry_details_validator, - 'shared_link_change_visibility_details': EventDetails._shared_link_change_visibility_details_validator, - 'shared_link_copy_details': EventDetails._shared_link_copy_details_validator, - 'shared_link_create_details': EventDetails._shared_link_create_details_validator, - 'shared_link_disable_details': EventDetails._shared_link_disable_details_validator, - 'shared_link_download_details': EventDetails._shared_link_download_details_validator, - 'shared_link_remove_expiry_details': EventDetails._shared_link_remove_expiry_details_validator, - 'shared_link_remove_visitor_details': EventDetails._shared_link_remove_visitor_details_validator, - 'shared_link_settings_add_expiration_details': EventDetails._shared_link_settings_add_expiration_details_validator, - 'shared_link_settings_add_password_details': EventDetails._shared_link_settings_add_password_details_validator, - 'shared_link_settings_allow_download_disabled_details': EventDetails._shared_link_settings_allow_download_disabled_details_validator, - 'shared_link_settings_allow_download_enabled_details': EventDetails._shared_link_settings_allow_download_enabled_details_validator, - 'shared_link_settings_change_audience_details': EventDetails._shared_link_settings_change_audience_details_validator, - 'shared_link_settings_change_expiration_details': EventDetails._shared_link_settings_change_expiration_details_validator, - 'shared_link_settings_change_password_details': EventDetails._shared_link_settings_change_password_details_validator, - 'shared_link_settings_remove_expiration_details': EventDetails._shared_link_settings_remove_expiration_details_validator, - 'shared_link_settings_remove_password_details': EventDetails._shared_link_settings_remove_password_details_validator, - 'shared_link_share_details': EventDetails._shared_link_share_details_validator, - 'shared_link_view_details': EventDetails._shared_link_view_details_validator, - 'shared_note_opened_details': EventDetails._shared_note_opened_details_validator, - 'shmodel_disable_downloads_details': EventDetails._shmodel_disable_downloads_details_validator, - 'shmodel_enable_downloads_details': EventDetails._shmodel_enable_downloads_details_validator, - 'shmodel_group_share_details': EventDetails._shmodel_group_share_details_validator, - 'showcase_access_granted_details': EventDetails._showcase_access_granted_details_validator, - 'showcase_add_member_details': EventDetails._showcase_add_member_details_validator, - 'showcase_archived_details': EventDetails._showcase_archived_details_validator, - 'showcase_created_details': EventDetails._showcase_created_details_validator, - 'showcase_delete_comment_details': EventDetails._showcase_delete_comment_details_validator, - 'showcase_edited_details': EventDetails._showcase_edited_details_validator, - 'showcase_edit_comment_details': EventDetails._showcase_edit_comment_details_validator, - 'showcase_file_added_details': EventDetails._showcase_file_added_details_validator, - 'showcase_file_download_details': EventDetails._showcase_file_download_details_validator, - 'showcase_file_removed_details': EventDetails._showcase_file_removed_details_validator, - 'showcase_file_view_details': EventDetails._showcase_file_view_details_validator, - 'showcase_permanently_deleted_details': EventDetails._showcase_permanently_deleted_details_validator, - 'showcase_post_comment_details': EventDetails._showcase_post_comment_details_validator, - 'showcase_remove_member_details': EventDetails._showcase_remove_member_details_validator, - 'showcase_renamed_details': EventDetails._showcase_renamed_details_validator, - 'showcase_request_access_details': EventDetails._showcase_request_access_details_validator, - 'showcase_resolve_comment_details': EventDetails._showcase_resolve_comment_details_validator, - 'showcase_restored_details': EventDetails._showcase_restored_details_validator, - 'showcase_trashed_details': EventDetails._showcase_trashed_details_validator, - 'showcase_trashed_deprecated_details': EventDetails._showcase_trashed_deprecated_details_validator, - 'showcase_unresolve_comment_details': EventDetails._showcase_unresolve_comment_details_validator, - 'showcase_untrashed_details': EventDetails._showcase_untrashed_details_validator, - 'showcase_untrashed_deprecated_details': EventDetails._showcase_untrashed_deprecated_details_validator, - 'showcase_view_details': EventDetails._showcase_view_details_validator, - 'sign_signature_request_canceled_details': EventDetails._sign_signature_request_canceled_details_validator, - 'sign_signature_request_completed_details': EventDetails._sign_signature_request_completed_details_validator, - 'sign_signature_request_declined_details': EventDetails._sign_signature_request_declined_details_validator, - 'sign_signature_request_opened_details': EventDetails._sign_signature_request_opened_details_validator, - 'sign_signature_request_reminder_sent_details': EventDetails._sign_signature_request_reminder_sent_details_validator, - 'sign_signature_request_sent_details': EventDetails._sign_signature_request_sent_details_validator, - 'sign_template_created_details': EventDetails._sign_template_created_details_validator, - 'sign_template_shared_details': EventDetails._sign_template_shared_details_validator, - 'risc_security_event_details': EventDetails._risc_security_event_details_validator, - 'sso_add_cert_details': EventDetails._sso_add_cert_details_validator, - 'sso_add_login_url_details': EventDetails._sso_add_login_url_details_validator, - 'sso_add_logout_url_details': EventDetails._sso_add_logout_url_details_validator, - 'sso_change_cert_details': EventDetails._sso_change_cert_details_validator, - 'sso_change_login_url_details': EventDetails._sso_change_login_url_details_validator, - 'sso_change_logout_url_details': EventDetails._sso_change_logout_url_details_validator, - 'sso_change_saml_identity_mode_details': EventDetails._sso_change_saml_identity_mode_details_validator, - 'sso_remove_cert_details': EventDetails._sso_remove_cert_details_validator, - 'sso_remove_login_url_details': EventDetails._sso_remove_login_url_details_validator, - 'sso_remove_logout_url_details': EventDetails._sso_remove_logout_url_details_validator, - 'team_folder_change_status_details': EventDetails._team_folder_change_status_details_validator, - 'team_folder_create_details': EventDetails._team_folder_create_details_validator, - 'team_folder_downgrade_details': EventDetails._team_folder_downgrade_details_validator, - 'team_folder_permanently_delete_details': EventDetails._team_folder_permanently_delete_details_validator, - 'team_folder_rename_details': EventDetails._team_folder_rename_details_validator, - 'team_folder_space_limits_change_caps_type_details': EventDetails._team_folder_space_limits_change_caps_type_details_validator, - 'team_folder_space_limits_change_limit_details': EventDetails._team_folder_space_limits_change_limit_details_validator, - 'team_folder_space_limits_change_notification_target_details': EventDetails._team_folder_space_limits_change_notification_target_details_validator, - 'team_selective_sync_settings_changed_details': EventDetails._team_selective_sync_settings_changed_details_validator, - 'account_capture_change_policy_details': EventDetails._account_capture_change_policy_details_validator, - 'admin_email_reminders_changed_details': EventDetails._admin_email_reminders_changed_details_validator, - 'ai_third_party_sharing_dropbox_base_policy_changed_details': EventDetails._ai_third_party_sharing_dropbox_base_policy_changed_details_validator, - 'allow_download_disabled_details': EventDetails._allow_download_disabled_details_validator, - 'allow_download_enabled_details': EventDetails._allow_download_enabled_details_validator, - 'apple_login_change_policy_details': EventDetails._apple_login_change_policy_details_validator, - 'app_permissions_changed_details': EventDetails._app_permissions_changed_details_validator, - 'camera_uploads_policy_changed_details': EventDetails._camera_uploads_policy_changed_details_validator, - 'capture_team_space_policy_changed_details': EventDetails._capture_team_space_policy_changed_details_validator, - 'capture_transcript_policy_changed_details': EventDetails._capture_transcript_policy_changed_details_validator, - 'classification_change_policy_details': EventDetails._classification_change_policy_details_validator, - 'computer_backup_policy_changed_details': EventDetails._computer_backup_policy_changed_details_validator, - 'content_administration_policy_changed_details': EventDetails._content_administration_policy_changed_details_validator, - 'content_deletion_protection_change_policy_details': EventDetails._content_deletion_protection_change_policy_details_validator, - 'dash_external_sharing_policy_changed_details': EventDetails._dash_external_sharing_policy_changed_details_validator, - 'data_placement_restriction_change_policy_details': EventDetails._data_placement_restriction_change_policy_details_validator, - 'data_placement_restriction_satisfy_policy_details': EventDetails._data_placement_restriction_satisfy_policy_details_validator, - 'device_approvals_add_exception_details': EventDetails._device_approvals_add_exception_details_validator, - 'device_approvals_change_desktop_policy_details': EventDetails._device_approvals_change_desktop_policy_details_validator, - 'device_approvals_change_mobile_policy_details': EventDetails._device_approvals_change_mobile_policy_details_validator, - 'device_approvals_change_overage_action_details': EventDetails._device_approvals_change_overage_action_details_validator, - 'device_approvals_change_unlink_action_details': EventDetails._device_approvals_change_unlink_action_details_validator, - 'device_approvals_remove_exception_details': EventDetails._device_approvals_remove_exception_details_validator, - 'directory_restrictions_add_members_details': EventDetails._directory_restrictions_add_members_details_validator, - 'directory_restrictions_remove_members_details': EventDetails._directory_restrictions_remove_members_details_validator, - 'dropbox_passwords_policy_changed_details': EventDetails._dropbox_passwords_policy_changed_details_validator, - 'email_ingest_policy_changed_details': EventDetails._email_ingest_policy_changed_details_validator, - 'emm_add_exception_details': EventDetails._emm_add_exception_details_validator, - 'emm_change_policy_details': EventDetails._emm_change_policy_details_validator, - 'emm_remove_exception_details': EventDetails._emm_remove_exception_details_validator, - 'extended_version_history_change_policy_details': EventDetails._extended_version_history_change_policy_details_validator, - 'external_drive_backup_policy_changed_details': EventDetails._external_drive_backup_policy_changed_details_validator, - 'file_comments_change_policy_details': EventDetails._file_comments_change_policy_details_validator, - 'file_locking_policy_changed_details': EventDetails._file_locking_policy_changed_details_validator, - 'file_provider_migration_policy_changed_details': EventDetails._file_provider_migration_policy_changed_details_validator, - 'file_requests_change_policy_details': EventDetails._file_requests_change_policy_details_validator, - 'file_requests_emails_enabled_details': EventDetails._file_requests_emails_enabled_details_validator, - 'file_requests_emails_restricted_to_team_only_details': EventDetails._file_requests_emails_restricted_to_team_only_details_validator, - 'file_transfers_policy_changed_details': EventDetails._file_transfers_policy_changed_details_validator, - 'flexible_file_names_policy_changed_details': EventDetails._flexible_file_names_policy_changed_details_validator, - 'folder_link_restriction_policy_changed_details': EventDetails._folder_link_restriction_policy_changed_details_validator, - 'google_sso_change_policy_details': EventDetails._google_sso_change_policy_details_validator, - 'group_user_management_change_policy_details': EventDetails._group_user_management_change_policy_details_validator, - 'integration_policy_changed_details': EventDetails._integration_policy_changed_details_validator, - 'invite_acceptance_email_policy_changed_details': EventDetails._invite_acceptance_email_policy_changed_details_validator, - 'media_hub_adding_people_policy_changed_details': EventDetails._media_hub_adding_people_policy_changed_details_validator, - 'media_hub_download_policy_changed_details': EventDetails._media_hub_download_policy_changed_details_validator, - 'media_hub_link_sharing_policy_changed_details': EventDetails._media_hub_link_sharing_policy_changed_details_validator, - 'member_requests_change_policy_details': EventDetails._member_requests_change_policy_details_validator, - 'member_send_invite_policy_changed_details': EventDetails._member_send_invite_policy_changed_details_validator, - 'member_space_limits_add_exception_details': EventDetails._member_space_limits_add_exception_details_validator, - 'member_space_limits_change_caps_type_policy_details': EventDetails._member_space_limits_change_caps_type_policy_details_validator, - 'member_space_limits_change_policy_details': EventDetails._member_space_limits_change_policy_details_validator, - 'member_space_limits_remove_exception_details': EventDetails._member_space_limits_remove_exception_details_validator, - 'member_suggestions_change_policy_details': EventDetails._member_suggestions_change_policy_details_validator, - 'microsoft_login_change_policy_details': EventDetails._microsoft_login_change_policy_details_validator, - 'microsoft_office_addin_change_policy_details': EventDetails._microsoft_office_addin_change_policy_details_validator, - 'multi_team_identity_policy_changed_details': EventDetails._multi_team_identity_policy_changed_details_validator, - 'network_control_change_policy_details': EventDetails._network_control_change_policy_details_validator, - 'paper_change_deployment_policy_details': EventDetails._paper_change_deployment_policy_details_validator, - 'paper_change_member_link_policy_details': EventDetails._paper_change_member_link_policy_details_validator, - 'paper_change_member_policy_details': EventDetails._paper_change_member_policy_details_validator, - 'paper_change_policy_details': EventDetails._paper_change_policy_details_validator, - 'paper_default_folder_policy_changed_details': EventDetails._paper_default_folder_policy_changed_details_validator, - 'paper_desktop_policy_changed_details': EventDetails._paper_desktop_policy_changed_details_validator, - 'paper_enabled_users_group_addition_details': EventDetails._paper_enabled_users_group_addition_details_validator, - 'paper_enabled_users_group_removal_details': EventDetails._paper_enabled_users_group_removal_details_validator, - 'passkey_login_policy_changed_details': EventDetails._passkey_login_policy_changed_details_validator, - 'password_strength_requirements_change_policy_details': EventDetails._password_strength_requirements_change_policy_details_validator, - 'permanent_delete_change_policy_details': EventDetails._permanent_delete_change_policy_details_validator, - 'previews_ai_policy_changed_details': EventDetails._previews_ai_policy_changed_details_validator, - 'replay_adding_people_policy_changed_details': EventDetails._replay_adding_people_policy_changed_details_validator, - 'replay_sharing_policy_changed_details': EventDetails._replay_sharing_policy_changed_details_validator, - 'reseller_support_change_policy_details': EventDetails._reseller_support_change_policy_details_validator, - 'rewind_policy_changed_details': EventDetails._rewind_policy_changed_details_validator, - 'send_and_track_policy_changed_details': EventDetails._send_and_track_policy_changed_details_validator, - 'send_external_sharing_policy_changed_details': EventDetails._send_external_sharing_policy_changed_details_validator, - 'send_for_signature_policy_changed_details': EventDetails._send_for_signature_policy_changed_details_validator, - 'shared_link_default_permissions_policy_changed_details': EventDetails._shared_link_default_permissions_policy_changed_details_validator, - 'sharing_change_folder_join_policy_details': EventDetails._sharing_change_folder_join_policy_details_validator, - 'sharing_change_link_allow_change_expiration_policy_details': EventDetails._sharing_change_link_allow_change_expiration_policy_details_validator, - 'sharing_change_link_default_expiration_policy_details': EventDetails._sharing_change_link_default_expiration_policy_details_validator, - 'sharing_change_link_enforce_password_policy_details': EventDetails._sharing_change_link_enforce_password_policy_details_validator, - 'sharing_change_link_policy_details': EventDetails._sharing_change_link_policy_details_validator, - 'sharing_change_member_policy_details': EventDetails._sharing_change_member_policy_details_validator, - 'showcase_change_download_policy_details': EventDetails._showcase_change_download_policy_details_validator, - 'showcase_change_enabled_policy_details': EventDetails._showcase_change_enabled_policy_details_validator, - 'showcase_change_external_sharing_policy_details': EventDetails._showcase_change_external_sharing_policy_details_validator, - 'sign_external_sharing_policy_changed_details': EventDetails._sign_external_sharing_policy_changed_details_validator, - 'sign_template_creation_permission_changed_details': EventDetails._sign_template_creation_permission_changed_details_validator, - 'smarter_smart_sync_policy_changed_details': EventDetails._smarter_smart_sync_policy_changed_details_validator, - 'smart_sync_change_policy_details': EventDetails._smart_sync_change_policy_details_validator, - 'smart_sync_not_opt_out_details': EventDetails._smart_sync_not_opt_out_details_validator, - 'smart_sync_opt_out_details': EventDetails._smart_sync_opt_out_details_validator, - 'sso_change_policy_details': EventDetails._sso_change_policy_details_validator, - 'stack_cross_team_access_policy_changed_details': EventDetails._stack_cross_team_access_policy_changed_details_validator, - 'team_branding_policy_changed_details': EventDetails._team_branding_policy_changed_details_validator, - 'team_extensions_policy_changed_details': EventDetails._team_extensions_policy_changed_details_validator, - 'team_member_storage_request_policy_changed_details': EventDetails._team_member_storage_request_policy_changed_details_validator, - 'team_selective_sync_policy_changed_details': EventDetails._team_selective_sync_policy_changed_details_validator, - 'team_sharing_whitelist_subjects_changed_details': EventDetails._team_sharing_whitelist_subjects_changed_details_validator, - 'tfa_add_exception_details': EventDetails._tfa_add_exception_details_validator, - 'tfa_change_policy_details': EventDetails._tfa_change_policy_details_validator, - 'tfa_remove_exception_details': EventDetails._tfa_remove_exception_details_validator, - 'top_level_content_policy_changed_details': EventDetails._top_level_content_policy_changed_details_validator, - 'two_account_change_policy_details': EventDetails._two_account_change_policy_details_validator, - 'viewer_info_policy_changed_details': EventDetails._viewer_info_policy_changed_details_validator, - 'watermarking_policy_changed_details': EventDetails._watermarking_policy_changed_details_validator, - 'web_sessions_change_active_session_limit_details': EventDetails._web_sessions_change_active_session_limit_details_validator, - 'web_sessions_change_fixed_length_policy_details': EventDetails._web_sessions_change_fixed_length_policy_details_validator, - 'web_sessions_change_idle_length_policy_details': EventDetails._web_sessions_change_idle_length_policy_details_validator, - 'data_residency_migration_request_successful_details': EventDetails._data_residency_migration_request_successful_details_validator, - 'data_residency_migration_request_unsuccessful_details': EventDetails._data_residency_migration_request_unsuccessful_details_validator, - 'team_merge_from_details': EventDetails._team_merge_from_details_validator, - 'team_merge_to_details': EventDetails._team_merge_to_details_validator, - 'team_profile_add_background_details': EventDetails._team_profile_add_background_details_validator, - 'team_profile_add_logo_details': EventDetails._team_profile_add_logo_details_validator, - 'team_profile_change_background_details': EventDetails._team_profile_change_background_details_validator, - 'team_profile_change_default_language_details': EventDetails._team_profile_change_default_language_details_validator, - 'team_profile_change_logo_details': EventDetails._team_profile_change_logo_details_validator, - 'team_profile_change_name_details': EventDetails._team_profile_change_name_details_validator, - 'team_profile_remove_background_details': EventDetails._team_profile_remove_background_details_validator, - 'team_profile_remove_logo_details': EventDetails._team_profile_remove_logo_details_validator, - 'passkey_add_details': EventDetails._passkey_add_details_validator, - 'passkey_remove_details': EventDetails._passkey_remove_details_validator, - 'tfa_add_backup_phone_details': EventDetails._tfa_add_backup_phone_details_validator, - 'tfa_add_security_key_details': EventDetails._tfa_add_security_key_details_validator, - 'tfa_change_backup_phone_details': EventDetails._tfa_change_backup_phone_details_validator, - 'tfa_change_status_details': EventDetails._tfa_change_status_details_validator, - 'tfa_remove_backup_phone_details': EventDetails._tfa_remove_backup_phone_details_validator, - 'tfa_remove_security_key_details': EventDetails._tfa_remove_security_key_details_validator, - 'tfa_reset_details': EventDetails._tfa_reset_details_validator, - 'changed_enterprise_admin_role_details': EventDetails._changed_enterprise_admin_role_details_validator, - 'changed_enterprise_connected_team_status_details': EventDetails._changed_enterprise_connected_team_status_details_validator, - 'ended_enterprise_admin_session_details': EventDetails._ended_enterprise_admin_session_details_validator, - 'ended_enterprise_admin_session_deprecated_details': EventDetails._ended_enterprise_admin_session_deprecated_details_validator, - 'enterprise_settings_locking_details': EventDetails._enterprise_settings_locking_details_validator, - 'guest_admin_change_status_details': EventDetails._guest_admin_change_status_details_validator, - 'started_enterprise_admin_session_details': EventDetails._started_enterprise_admin_session_details_validator, - 'team_merge_request_accepted_details': EventDetails._team_merge_request_accepted_details_validator, - 'team_merge_request_accepted_shown_to_primary_team_details': EventDetails._team_merge_request_accepted_shown_to_primary_team_details_validator, - 'team_merge_request_accepted_shown_to_secondary_team_details': EventDetails._team_merge_request_accepted_shown_to_secondary_team_details_validator, - 'team_merge_request_auto_canceled_details': EventDetails._team_merge_request_auto_canceled_details_validator, - 'team_merge_request_canceled_details': EventDetails._team_merge_request_canceled_details_validator, - 'team_merge_request_canceled_shown_to_primary_team_details': EventDetails._team_merge_request_canceled_shown_to_primary_team_details_validator, - 'team_merge_request_canceled_shown_to_secondary_team_details': EventDetails._team_merge_request_canceled_shown_to_secondary_team_details_validator, - 'team_merge_request_expired_details': EventDetails._team_merge_request_expired_details_validator, - 'team_merge_request_expired_shown_to_primary_team_details': EventDetails._team_merge_request_expired_shown_to_primary_team_details_validator, - 'team_merge_request_expired_shown_to_secondary_team_details': EventDetails._team_merge_request_expired_shown_to_secondary_team_details_validator, - 'team_merge_request_rejected_shown_to_primary_team_details': EventDetails._team_merge_request_rejected_shown_to_primary_team_details_validator, - 'team_merge_request_rejected_shown_to_secondary_team_details': EventDetails._team_merge_request_rejected_shown_to_secondary_team_details_validator, - 'team_merge_request_reminder_details': EventDetails._team_merge_request_reminder_details_validator, - 'team_merge_request_reminder_shown_to_primary_team_details': EventDetails._team_merge_request_reminder_shown_to_primary_team_details_validator, - 'team_merge_request_reminder_shown_to_secondary_team_details': EventDetails._team_merge_request_reminder_shown_to_secondary_team_details_validator, - 'team_merge_request_revoked_details': EventDetails._team_merge_request_revoked_details_validator, - 'team_merge_request_sent_shown_to_primary_team_details': EventDetails._team_merge_request_sent_shown_to_primary_team_details_validator, - 'team_merge_request_sent_shown_to_secondary_team_details': EventDetails._team_merge_request_sent_shown_to_secondary_team_details_validator, - 'missing_details': EventDetails._missing_details_validator, - 'other': EventDetails._other_validator, + "admin_alerting_alert_state_changed_details": EventDetails._admin_alerting_alert_state_changed_details_validator, + "admin_alerting_changed_alert_config_details": EventDetails._admin_alerting_changed_alert_config_details_validator, + "admin_alerting_triggered_alert_details": EventDetails._admin_alerting_triggered_alert_details_validator, + "ransomware_restore_process_completed_details": EventDetails._ransomware_restore_process_completed_details_validator, + "ransomware_restore_process_started_details": EventDetails._ransomware_restore_process_started_details_validator, + "app_blocked_by_permissions_details": EventDetails._app_blocked_by_permissions_details_validator, + "app_link_team_details": EventDetails._app_link_team_details_validator, + "app_link_user_details": EventDetails._app_link_user_details_validator, + "app_unlink_team_details": EventDetails._app_unlink_team_details_validator, + "app_unlink_user_details": EventDetails._app_unlink_user_details_validator, + "integration_connected_details": EventDetails._integration_connected_details_validator, + "integration_disconnected_details": EventDetails._integration_disconnected_details_validator, + "file_add_comment_details": EventDetails._file_add_comment_details_validator, + "file_change_comment_subscription_details": EventDetails._file_change_comment_subscription_details_validator, + "file_delete_comment_details": EventDetails._file_delete_comment_details_validator, + "file_edit_comment_details": EventDetails._file_edit_comment_details_validator, + "file_like_comment_details": EventDetails._file_like_comment_details_validator, + "file_resolve_comment_details": EventDetails._file_resolve_comment_details_validator, + "file_unlike_comment_details": EventDetails._file_unlike_comment_details_validator, + "file_unresolve_comment_details": EventDetails._file_unresolve_comment_details_validator, + "dash_added_comment_to_stack_details": EventDetails._dash_added_comment_to_stack_details_validator, + "dash_added_connector_details": EventDetails._dash_added_connector_details_validator, + "dash_added_link_to_stack_details": EventDetails._dash_added_link_to_stack_details_validator, + "dash_added_team_email_domain_allowlist_details": EventDetails._dash_added_team_email_domain_allowlist_details_validator, + "dash_admin_added_org_wide_connector_details": EventDetails._dash_admin_added_org_wide_connector_details_validator, + "dash_admin_disabled_connector_details": EventDetails._dash_admin_disabled_connector_details_validator, + "dash_admin_enabled_connector_details": EventDetails._dash_admin_enabled_connector_details_validator, + "dash_admin_removed_org_wide_connector_details": EventDetails._dash_admin_removed_org_wide_connector_details_validator, + "dash_archived_stack_details": EventDetails._dash_archived_stack_details_validator, + "dash_changed_audience_of_shared_link_to_stack_details": EventDetails._dash_changed_audience_of_shared_link_to_stack_details_validator, + "dash_cloned_stack_details": EventDetails._dash_cloned_stack_details_validator, + "dash_connector_tools_call_details": EventDetails._dash_connector_tools_call_details_validator, + "dash_created_stack_details": EventDetails._dash_created_stack_details_validator, + "dash_deleted_comment_from_stack_details": EventDetails._dash_deleted_comment_from_stack_details_validator, + "dash_deleted_stack_details": EventDetails._dash_deleted_stack_details_validator, + "dash_edited_comment_in_stack_details": EventDetails._dash_edited_comment_in_stack_details_validator, + "dash_external_user_opened_stack_details": EventDetails._dash_external_user_opened_stack_details_validator, + "dash_first_launched_desktop_details": EventDetails._dash_first_launched_desktop_details_validator, + "dash_first_launched_extension_details": EventDetails._dash_first_launched_extension_details_validator, + "dash_first_launched_web_start_page_details": EventDetails._dash_first_launched_web_start_page_details_validator, + "dash_opened_shared_link_to_stack_details": EventDetails._dash_opened_shared_link_to_stack_details_validator, + "dash_opened_stack_details": EventDetails._dash_opened_stack_details_validator, + "dash_preview_opt_out_status_changed_details": EventDetails._dash_preview_opt_out_status_changed_details_validator, + "dash_removed_connector_details": EventDetails._dash_removed_connector_details_validator, + "dash_removed_link_from_stack_details": EventDetails._dash_removed_link_from_stack_details_validator, + "dash_removed_shared_link_to_stack_details": EventDetails._dash_removed_shared_link_to_stack_details_validator, + "dash_removed_team_email_domain_allowlist_details": EventDetails._dash_removed_team_email_domain_allowlist_details_validator, + "dash_renamed_stack_details": EventDetails._dash_renamed_stack_details_validator, + "dash_shared_link_to_stack_details": EventDetails._dash_shared_link_to_stack_details_validator, + "dash_unarchived_stack_details": EventDetails._dash_unarchived_stack_details_validator, + "dash_viewed_company_stack_details": EventDetails._dash_viewed_company_stack_details_validator, + "dash_viewed_external_ai_activity_report_details": EventDetails._dash_viewed_external_ai_activity_report_details_validator, + "governance_policy_add_folders_details": EventDetails._governance_policy_add_folders_details_validator, + "governance_policy_add_folder_failed_details": EventDetails._governance_policy_add_folder_failed_details_validator, + "governance_policy_content_disposed_details": EventDetails._governance_policy_content_disposed_details_validator, + "governance_policy_create_details": EventDetails._governance_policy_create_details_validator, + "governance_policy_delete_details": EventDetails._governance_policy_delete_details_validator, + "governance_policy_edit_details_details": EventDetails._governance_policy_edit_details_details_validator, + "governance_policy_edit_duration_details": EventDetails._governance_policy_edit_duration_details_validator, + "governance_policy_export_created_details": EventDetails._governance_policy_export_created_details_validator, + "governance_policy_export_removed_details": EventDetails._governance_policy_export_removed_details_validator, + "governance_policy_remove_folders_details": EventDetails._governance_policy_remove_folders_details_validator, + "governance_policy_report_created_details": EventDetails._governance_policy_report_created_details_validator, + "governance_policy_zip_part_downloaded_details": EventDetails._governance_policy_zip_part_downloaded_details_validator, + "legal_holds_activate_a_hold_details": EventDetails._legal_holds_activate_a_hold_details_validator, + "legal_holds_add_members_details": EventDetails._legal_holds_add_members_details_validator, + "legal_holds_change_hold_details_details": EventDetails._legal_holds_change_hold_details_details_validator, + "legal_holds_change_hold_name_details": EventDetails._legal_holds_change_hold_name_details_validator, + "legal_holds_export_a_hold_details": EventDetails._legal_holds_export_a_hold_details_validator, + "legal_holds_export_cancelled_details": EventDetails._legal_holds_export_cancelled_details_validator, + "legal_holds_export_downloaded_details": EventDetails._legal_holds_export_downloaded_details_validator, + "legal_holds_export_removed_details": EventDetails._legal_holds_export_removed_details_validator, + "legal_holds_release_a_hold_details": EventDetails._legal_holds_release_a_hold_details_validator, + "legal_holds_remove_members_details": EventDetails._legal_holds_remove_members_details_validator, + "legal_holds_report_a_hold_details": EventDetails._legal_holds_report_a_hold_details_validator, + "device_change_ip_desktop_details": EventDetails._device_change_ip_desktop_details_validator, + "device_change_ip_mobile_details": EventDetails._device_change_ip_mobile_details_validator, + "device_change_ip_web_details": EventDetails._device_change_ip_web_details_validator, + "device_delete_on_unlink_fail_details": EventDetails._device_delete_on_unlink_fail_details_validator, + "device_delete_on_unlink_success_details": EventDetails._device_delete_on_unlink_success_details_validator, + "device_link_fail_details": EventDetails._device_link_fail_details_validator, + "device_link_success_details": EventDetails._device_link_success_details_validator, + "device_management_disabled_details": EventDetails._device_management_disabled_details_validator, + "device_management_enabled_details": EventDetails._device_management_enabled_details_validator, + "device_sync_backup_status_changed_details": EventDetails._device_sync_backup_status_changed_details_validator, + "device_unlink_details": EventDetails._device_unlink_details_validator, + "dropbox_passwords_exported_details": EventDetails._dropbox_passwords_exported_details_validator, + "dropbox_passwords_new_device_enrolled_details": EventDetails._dropbox_passwords_new_device_enrolled_details_validator, + "emm_refresh_auth_token_details": EventDetails._emm_refresh_auth_token_details_validator, + "external_drive_backup_eligibility_status_checked_details": EventDetails._external_drive_backup_eligibility_status_checked_details_validator, + "external_drive_backup_status_changed_details": EventDetails._external_drive_backup_status_changed_details_validator, + "account_capture_change_availability_details": EventDetails._account_capture_change_availability_details_validator, + "account_capture_migrate_account_details": EventDetails._account_capture_migrate_account_details_validator, + "account_capture_notification_emails_sent_details": EventDetails._account_capture_notification_emails_sent_details_validator, + "account_capture_relinquish_account_details": EventDetails._account_capture_relinquish_account_details_validator, + "disabled_domain_invites_details": EventDetails._disabled_domain_invites_details_validator, + "domain_invites_approve_request_to_join_team_details": EventDetails._domain_invites_approve_request_to_join_team_details_validator, + "domain_invites_decline_request_to_join_team_details": EventDetails._domain_invites_decline_request_to_join_team_details_validator, + "domain_invites_email_existing_users_details": EventDetails._domain_invites_email_existing_users_details_validator, + "domain_invites_request_to_join_team_details": EventDetails._domain_invites_request_to_join_team_details_validator, + "domain_invites_set_invite_new_user_pref_to_no_details": EventDetails._domain_invites_set_invite_new_user_pref_to_no_details_validator, + "domain_invites_set_invite_new_user_pref_to_yes_details": EventDetails._domain_invites_set_invite_new_user_pref_to_yes_details_validator, + "domain_verification_add_domain_fail_details": EventDetails._domain_verification_add_domain_fail_details_validator, + "domain_verification_add_domain_success_details": EventDetails._domain_verification_add_domain_success_details_validator, + "domain_verification_remove_domain_details": EventDetails._domain_verification_remove_domain_details_validator, + "enabled_domain_invites_details": EventDetails._enabled_domain_invites_details_validator, + "encrypted_folder_cancel_team_key_rotation_details": EventDetails._encrypted_folder_cancel_team_key_rotation_details_validator, + "encrypted_folder_enroll_backup_key_details": EventDetails._encrypted_folder_enroll_backup_key_details_validator, + "encrypted_folder_enroll_client_details": EventDetails._encrypted_folder_enroll_client_details_validator, + "encrypted_folder_enroll_team_details": EventDetails._encrypted_folder_enroll_team_details_validator, + "encrypted_folder_finish_team_unenrollment_details": EventDetails._encrypted_folder_finish_team_unenrollment_details_validator, + "encrypted_folder_init_team_key_rotation_details": EventDetails._encrypted_folder_init_team_key_rotation_details_validator, + "encrypted_folder_init_team_unenrollment_details": EventDetails._encrypted_folder_init_team_unenrollment_details_validator, + "encrypted_folder_remove_backup_key_details": EventDetails._encrypted_folder_remove_backup_key_details_validator, + "encrypted_folder_rotate_team_key_details": EventDetails._encrypted_folder_rotate_team_key_details_validator, + "encrypted_folder_unenroll_client_details": EventDetails._encrypted_folder_unenroll_client_details_validator, + "team_encryption_key_activate_key_details": EventDetails._team_encryption_key_activate_key_details_validator, + "team_encryption_key_cancel_key_deletion_details": EventDetails._team_encryption_key_cancel_key_deletion_details_validator, + "team_encryption_key_create_key_details": EventDetails._team_encryption_key_create_key_details_validator, + "team_encryption_key_deactivate_key_details": EventDetails._team_encryption_key_deactivate_key_details_validator, + "team_encryption_key_delete_key_details": EventDetails._team_encryption_key_delete_key_details_validator, + "team_encryption_key_disable_key_details": EventDetails._team_encryption_key_disable_key_details_validator, + "team_encryption_key_enable_key_details": EventDetails._team_encryption_key_enable_key_details_validator, + "team_encryption_key_rotate_key_details": EventDetails._team_encryption_key_rotate_key_details_validator, + "team_encryption_key_schedule_key_deletion_details": EventDetails._team_encryption_key_schedule_key_deletion_details_validator, + "apply_naming_convention_details": EventDetails._apply_naming_convention_details_validator, + "create_folder_details": EventDetails._create_folder_details_validator, + "file_add_details": EventDetails._file_add_details_validator, + "file_add_from_automation_details": EventDetails._file_add_from_automation_details_validator, + "file_copy_details": EventDetails._file_copy_details_validator, + "file_delete_details": EventDetails._file_delete_details_validator, + "file_download_details": EventDetails._file_download_details_validator, + "file_edit_details": EventDetails._file_edit_details_validator, + "file_get_copy_reference_details": EventDetails._file_get_copy_reference_details_validator, + "file_locking_lock_status_changed_details": EventDetails._file_locking_lock_status_changed_details_validator, + "file_move_details": EventDetails._file_move_details_validator, + "file_permanently_delete_details": EventDetails._file_permanently_delete_details_validator, + "file_preview_details": EventDetails._file_preview_details_validator, + "file_rename_details": EventDetails._file_rename_details_validator, + "file_restore_details": EventDetails._file_restore_details_validator, + "file_revert_details": EventDetails._file_revert_details_validator, + "file_rollback_changes_details": EventDetails._file_rollback_changes_details_validator, + "file_save_copy_reference_details": EventDetails._file_save_copy_reference_details_validator, + "folder_overview_description_changed_details": EventDetails._folder_overview_description_changed_details_validator, + "folder_overview_item_pinned_details": EventDetails._folder_overview_item_pinned_details_validator, + "folder_overview_item_unpinned_details": EventDetails._folder_overview_item_unpinned_details_validator, + "media_hub_file_downloaded_details": EventDetails._media_hub_file_downloaded_details_validator, + "object_label_added_details": EventDetails._object_label_added_details_validator, + "object_label_removed_details": EventDetails._object_label_removed_details_validator, + "object_label_updated_value_details": EventDetails._object_label_updated_value_details_validator, + "organize_folder_with_tidy_details": EventDetails._organize_folder_with_tidy_details_validator, + "replay_file_delete_details": EventDetails._replay_file_delete_details_validator, + "replay_file_downloaded_details": EventDetails._replay_file_downloaded_details_validator, + "replay_team_project_created_details": EventDetails._replay_team_project_created_details_validator, + "rewind_folder_details": EventDetails._rewind_folder_details_validator, + "undo_naming_convention_details": EventDetails._undo_naming_convention_details_validator, + "undo_organize_folder_with_tidy_details": EventDetails._undo_organize_folder_with_tidy_details_validator, + "user_tags_added_details": EventDetails._user_tags_added_details_validator, + "user_tags_removed_details": EventDetails._user_tags_removed_details_validator, + "email_ingest_receive_file_details": EventDetails._email_ingest_receive_file_details_validator, + "file_request_auto_close_details": EventDetails._file_request_auto_close_details_validator, + "file_request_change_details": EventDetails._file_request_change_details_validator, + "file_request_close_details": EventDetails._file_request_close_details_validator, + "file_request_create_details": EventDetails._file_request_create_details_validator, + "file_request_delete_details": EventDetails._file_request_delete_details_validator, + "file_request_receive_file_details": EventDetails._file_request_receive_file_details_validator, + "group_add_external_id_details": EventDetails._group_add_external_id_details_validator, + "group_add_member_details": EventDetails._group_add_member_details_validator, + "group_change_external_id_details": EventDetails._group_change_external_id_details_validator, + "group_change_management_type_details": EventDetails._group_change_management_type_details_validator, + "group_change_member_role_details": EventDetails._group_change_member_role_details_validator, + "group_create_details": EventDetails._group_create_details_validator, + "group_delete_details": EventDetails._group_delete_details_validator, + "group_description_updated_details": EventDetails._group_description_updated_details_validator, + "group_external_sharing_setting_override_changed_details": EventDetails._group_external_sharing_setting_override_changed_details_validator, + "group_join_policy_updated_details": EventDetails._group_join_policy_updated_details_validator, + "group_moved_details": EventDetails._group_moved_details_validator, + "group_remove_external_id_details": EventDetails._group_remove_external_id_details_validator, + "group_remove_member_details": EventDetails._group_remove_member_details_validator, + "group_rename_details": EventDetails._group_rename_details_validator, + "account_lock_or_unlocked_details": EventDetails._account_lock_or_unlocked_details_validator, + "emm_error_details": EventDetails._emm_error_details_validator, + "guest_admin_signed_in_via_trusted_teams_details": EventDetails._guest_admin_signed_in_via_trusted_teams_details_validator, + "guest_admin_signed_out_via_trusted_teams_details": EventDetails._guest_admin_signed_out_via_trusted_teams_details_validator, + "login_fail_details": EventDetails._login_fail_details_validator, + "login_success_details": EventDetails._login_success_details_validator, + "logout_details": EventDetails._logout_details_validator, + "reseller_support_session_end_details": EventDetails._reseller_support_session_end_details_validator, + "reseller_support_session_start_details": EventDetails._reseller_support_session_start_details_validator, + "sign_in_as_session_end_details": EventDetails._sign_in_as_session_end_details_validator, + "sign_in_as_session_start_details": EventDetails._sign_in_as_session_start_details_validator, + "sso_error_details": EventDetails._sso_error_details_validator, + "addon_assigned_details": EventDetails._addon_assigned_details_validator, + "addon_removed_details": EventDetails._addon_removed_details_validator, + "backup_admin_invitation_sent_details": EventDetails._backup_admin_invitation_sent_details_validator, + "backup_invitation_opened_details": EventDetails._backup_invitation_opened_details_validator, + "create_team_invite_link_details": EventDetails._create_team_invite_link_details_validator, + "delete_team_invite_link_details": EventDetails._delete_team_invite_link_details_validator, + "member_add_external_id_details": EventDetails._member_add_external_id_details_validator, + "member_add_name_details": EventDetails._member_add_name_details_validator, + "member_change_admin_role_details": EventDetails._member_change_admin_role_details_validator, + "member_change_email_details": EventDetails._member_change_email_details_validator, + "member_change_external_id_details": EventDetails._member_change_external_id_details_validator, + "member_change_membership_type_details": EventDetails._member_change_membership_type_details_validator, + "member_change_name_details": EventDetails._member_change_name_details_validator, + "member_change_reseller_role_details": EventDetails._member_change_reseller_role_details_validator, + "member_change_status_details": EventDetails._member_change_status_details_validator, + "member_delete_manual_contacts_details": EventDetails._member_delete_manual_contacts_details_validator, + "member_delete_profile_photo_details": EventDetails._member_delete_profile_photo_details_validator, + "member_permanently_delete_account_contents_details": EventDetails._member_permanently_delete_account_contents_details_validator, + "member_remove_external_id_details": EventDetails._member_remove_external_id_details_validator, + "member_set_profile_photo_details": EventDetails._member_set_profile_photo_details_validator, + "member_space_limits_add_custom_quota_details": EventDetails._member_space_limits_add_custom_quota_details_validator, + "member_space_limits_change_custom_quota_details": EventDetails._member_space_limits_change_custom_quota_details_validator, + "member_space_limits_change_status_details": EventDetails._member_space_limits_change_status_details_validator, + "member_space_limits_remove_custom_quota_details": EventDetails._member_space_limits_remove_custom_quota_details_validator, + "member_suggest_details": EventDetails._member_suggest_details_validator, + "member_transfer_account_contents_details": EventDetails._member_transfer_account_contents_details_validator, + "pending_secondary_email_added_details": EventDetails._pending_secondary_email_added_details_validator, + "product_assigned_to_member_details": EventDetails._product_assigned_to_member_details_validator, + "product_removed_from_member_details": EventDetails._product_removed_from_member_details_validator, + "secondary_email_deleted_details": EventDetails._secondary_email_deleted_details_validator, + "secondary_email_verified_details": EventDetails._secondary_email_verified_details_validator, + "secondary_mails_policy_changed_details": EventDetails._secondary_mails_policy_changed_details_validator, + "binder_add_page_details": EventDetails._binder_add_page_details_validator, + "binder_add_section_details": EventDetails._binder_add_section_details_validator, + "binder_remove_page_details": EventDetails._binder_remove_page_details_validator, + "binder_remove_section_details": EventDetails._binder_remove_section_details_validator, + "binder_rename_page_details": EventDetails._binder_rename_page_details_validator, + "binder_rename_section_details": EventDetails._binder_rename_section_details_validator, + "binder_reorder_page_details": EventDetails._binder_reorder_page_details_validator, + "binder_reorder_section_details": EventDetails._binder_reorder_section_details_validator, + "paper_content_add_member_details": EventDetails._paper_content_add_member_details_validator, + "paper_content_add_to_folder_details": EventDetails._paper_content_add_to_folder_details_validator, + "paper_content_archive_details": EventDetails._paper_content_archive_details_validator, + "paper_content_create_details": EventDetails._paper_content_create_details_validator, + "paper_content_permanently_delete_details": EventDetails._paper_content_permanently_delete_details_validator, + "paper_content_remove_from_folder_details": EventDetails._paper_content_remove_from_folder_details_validator, + "paper_content_remove_member_details": EventDetails._paper_content_remove_member_details_validator, + "paper_content_rename_details": EventDetails._paper_content_rename_details_validator, + "paper_content_restore_details": EventDetails._paper_content_restore_details_validator, + "paper_doc_add_comment_details": EventDetails._paper_doc_add_comment_details_validator, + "paper_doc_change_member_role_details": EventDetails._paper_doc_change_member_role_details_validator, + "paper_doc_change_sharing_policy_details": EventDetails._paper_doc_change_sharing_policy_details_validator, + "paper_doc_change_subscription_details": EventDetails._paper_doc_change_subscription_details_validator, + "paper_doc_deleted_details": EventDetails._paper_doc_deleted_details_validator, + "paper_doc_delete_comment_details": EventDetails._paper_doc_delete_comment_details_validator, + "paper_doc_download_details": EventDetails._paper_doc_download_details_validator, + "paper_doc_edit_details": EventDetails._paper_doc_edit_details_validator, + "paper_doc_edit_comment_details": EventDetails._paper_doc_edit_comment_details_validator, + "paper_doc_followed_details": EventDetails._paper_doc_followed_details_validator, + "paper_doc_mention_details": EventDetails._paper_doc_mention_details_validator, + "paper_doc_ownership_changed_details": EventDetails._paper_doc_ownership_changed_details_validator, + "paper_doc_request_access_details": EventDetails._paper_doc_request_access_details_validator, + "paper_doc_resolve_comment_details": EventDetails._paper_doc_resolve_comment_details_validator, + "paper_doc_revert_details": EventDetails._paper_doc_revert_details_validator, + "paper_doc_slack_share_details": EventDetails._paper_doc_slack_share_details_validator, + "paper_doc_team_invite_details": EventDetails._paper_doc_team_invite_details_validator, + "paper_doc_trashed_details": EventDetails._paper_doc_trashed_details_validator, + "paper_doc_unresolve_comment_details": EventDetails._paper_doc_unresolve_comment_details_validator, + "paper_doc_untrashed_details": EventDetails._paper_doc_untrashed_details_validator, + "paper_doc_view_details": EventDetails._paper_doc_view_details_validator, + "paper_external_view_allow_details": EventDetails._paper_external_view_allow_details_validator, + "paper_external_view_default_team_details": EventDetails._paper_external_view_default_team_details_validator, + "paper_external_view_forbid_details": EventDetails._paper_external_view_forbid_details_validator, + "paper_folder_change_subscription_details": EventDetails._paper_folder_change_subscription_details_validator, + "paper_folder_deleted_details": EventDetails._paper_folder_deleted_details_validator, + "paper_folder_followed_details": EventDetails._paper_folder_followed_details_validator, + "paper_folder_team_invite_details": EventDetails._paper_folder_team_invite_details_validator, + "paper_published_link_change_permission_details": EventDetails._paper_published_link_change_permission_details_validator, + "paper_published_link_create_details": EventDetails._paper_published_link_create_details_validator, + "paper_published_link_disabled_details": EventDetails._paper_published_link_disabled_details_validator, + "paper_published_link_view_details": EventDetails._paper_published_link_view_details_validator, + "password_change_details": EventDetails._password_change_details_validator, + "password_reset_details": EventDetails._password_reset_details_validator, + "password_reset_all_details": EventDetails._password_reset_all_details_validator, + "protect_internal_domains_changed_details": EventDetails._protect_internal_domains_changed_details_validator, + "classification_create_report_details": EventDetails._classification_create_report_details_validator, + "classification_create_report_fail_details": EventDetails._classification_create_report_fail_details_validator, + "emm_create_exceptions_report_details": EventDetails._emm_create_exceptions_report_details_validator, + "emm_create_usage_report_details": EventDetails._emm_create_usage_report_details_validator, + "export_members_report_details": EventDetails._export_members_report_details_validator, + "export_members_report_fail_details": EventDetails._export_members_report_fail_details_validator, + "external_sharing_create_report_details": EventDetails._external_sharing_create_report_details_validator, + "external_sharing_report_failed_details": EventDetails._external_sharing_report_failed_details_validator, + "member_access_details_create_report_details": EventDetails._member_access_details_create_report_details_validator, + "member_access_details_create_report_failed_details": EventDetails._member_access_details_create_report_failed_details_validator, + "no_expiration_link_gen_create_report_details": EventDetails._no_expiration_link_gen_create_report_details_validator, + "no_expiration_link_gen_report_failed_details": EventDetails._no_expiration_link_gen_report_failed_details_validator, + "no_password_link_gen_create_report_details": EventDetails._no_password_link_gen_create_report_details_validator, + "no_password_link_gen_report_failed_details": EventDetails._no_password_link_gen_report_failed_details_validator, + "no_password_link_view_create_report_details": EventDetails._no_password_link_view_create_report_details_validator, + "no_password_link_view_report_failed_details": EventDetails._no_password_link_view_report_failed_details_validator, + "outdated_link_view_create_report_details": EventDetails._outdated_link_view_create_report_details_validator, + "outdated_link_view_report_failed_details": EventDetails._outdated_link_view_report_failed_details_validator, + "paper_admin_export_start_details": EventDetails._paper_admin_export_start_details_validator, + "ransomware_alert_create_report_details": EventDetails._ransomware_alert_create_report_details_validator, + "ransomware_alert_create_report_failed_details": EventDetails._ransomware_alert_create_report_failed_details_validator, + "shared_folders_create_report_details": EventDetails._shared_folders_create_report_details_validator, + "shared_folders_create_report_failed_details": EventDetails._shared_folders_create_report_failed_details_validator, + "smart_sync_create_admin_privilege_report_details": EventDetails._smart_sync_create_admin_privilege_report_details_validator, + "team_activity_create_report_details": EventDetails._team_activity_create_report_details_validator, + "team_activity_create_report_fail_details": EventDetails._team_activity_create_report_fail_details_validator, + "team_folders_create_report_details": EventDetails._team_folders_create_report_details_validator, + "team_folders_create_report_failed_details": EventDetails._team_folders_create_report_failed_details_validator, + "team_storage_create_report_details": EventDetails._team_storage_create_report_details_validator, + "team_storage_create_report_failed_details": EventDetails._team_storage_create_report_failed_details_validator, + "collection_share_details": EventDetails._collection_share_details_validator, + "file_transfers_file_add_details": EventDetails._file_transfers_file_add_details_validator, + "file_transfers_transfer_delete_details": EventDetails._file_transfers_transfer_delete_details_validator, + "file_transfers_transfer_download_details": EventDetails._file_transfers_transfer_download_details_validator, + "file_transfers_transfer_send_details": EventDetails._file_transfers_transfer_send_details_validator, + "file_transfers_transfer_view_details": EventDetails._file_transfers_transfer_view_details_validator, + "media_hub_project_team_add_details": EventDetails._media_hub_project_team_add_details_validator, + "media_hub_project_team_delete_details": EventDetails._media_hub_project_team_delete_details_validator, + "media_hub_project_team_role_changed_details": EventDetails._media_hub_project_team_role_changed_details_validator, + "media_hub_shared_link_audience_changed_details": EventDetails._media_hub_shared_link_audience_changed_details_validator, + "media_hub_shared_link_created_details": EventDetails._media_hub_shared_link_created_details_validator, + "media_hub_shared_link_download_setting_changed_details": EventDetails._media_hub_shared_link_download_setting_changed_details_validator, + "media_hub_shared_link_revoked_details": EventDetails._media_hub_shared_link_revoked_details_validator, + "note_acl_invite_only_details": EventDetails._note_acl_invite_only_details_validator, + "note_acl_link_details": EventDetails._note_acl_link_details_validator, + "note_acl_team_link_details": EventDetails._note_acl_team_link_details_validator, + "note_shared_details": EventDetails._note_shared_details_validator, + "note_share_receive_details": EventDetails._note_share_receive_details_validator, + "open_note_shared_details": EventDetails._open_note_shared_details_validator, + "replay_file_shared_link_created_details": EventDetails._replay_file_shared_link_created_details_validator, + "replay_file_shared_link_modified_details": EventDetails._replay_file_shared_link_modified_details_validator, + "replay_project_team_add_details": EventDetails._replay_project_team_add_details_validator, + "replay_project_team_delete_details": EventDetails._replay_project_team_delete_details_validator, + "send_and_track_file_added_details": EventDetails._send_and_track_file_added_details_validator, + "send_and_track_file_renamed_details": EventDetails._send_and_track_file_renamed_details_validator, + "send_and_track_file_updated_details": EventDetails._send_and_track_file_updated_details_validator, + "send_and_track_link_created_details": EventDetails._send_and_track_link_created_details_validator, + "send_and_track_link_deleted_details": EventDetails._send_and_track_link_deleted_details_validator, + "send_and_track_link_updated_details": EventDetails._send_and_track_link_updated_details_validator, + "send_and_track_link_viewed_details": EventDetails._send_and_track_link_viewed_details_validator, + "send_and_track_removed_file_and_associated_links_details": EventDetails._send_and_track_removed_file_and_associated_links_details_validator, + "sf_add_group_details": EventDetails._sf_add_group_details_validator, + "sf_allow_non_members_to_view_shared_links_details": EventDetails._sf_allow_non_members_to_view_shared_links_details_validator, + "sf_external_invite_warn_details": EventDetails._sf_external_invite_warn_details_validator, + "sf_fb_invite_details": EventDetails._sf_fb_invite_details_validator, + "sf_fb_invite_change_role_details": EventDetails._sf_fb_invite_change_role_details_validator, + "sf_fb_uninvite_details": EventDetails._sf_fb_uninvite_details_validator, + "sf_invite_group_details": EventDetails._sf_invite_group_details_validator, + "sf_team_grant_access_details": EventDetails._sf_team_grant_access_details_validator, + "sf_team_invite_details": EventDetails._sf_team_invite_details_validator, + "sf_team_invite_change_role_details": EventDetails._sf_team_invite_change_role_details_validator, + "sf_team_join_details": EventDetails._sf_team_join_details_validator, + "sf_team_join_from_oob_link_details": EventDetails._sf_team_join_from_oob_link_details_validator, + "sf_team_uninvite_details": EventDetails._sf_team_uninvite_details_validator, + "shared_content_add_invitees_details": EventDetails._shared_content_add_invitees_details_validator, + "shared_content_add_link_expiry_details": EventDetails._shared_content_add_link_expiry_details_validator, + "shared_content_add_link_password_details": EventDetails._shared_content_add_link_password_details_validator, + "shared_content_add_member_details": EventDetails._shared_content_add_member_details_validator, + "shared_content_change_downloads_policy_details": EventDetails._shared_content_change_downloads_policy_details_validator, + "shared_content_change_invitee_role_details": EventDetails._shared_content_change_invitee_role_details_validator, + "shared_content_change_link_audience_details": EventDetails._shared_content_change_link_audience_details_validator, + "shared_content_change_link_expiry_details": EventDetails._shared_content_change_link_expiry_details_validator, + "shared_content_change_link_password_details": EventDetails._shared_content_change_link_password_details_validator, + "shared_content_change_member_role_details": EventDetails._shared_content_change_member_role_details_validator, + "shared_content_change_viewer_info_policy_details": EventDetails._shared_content_change_viewer_info_policy_details_validator, + "shared_content_claim_invitation_details": EventDetails._shared_content_claim_invitation_details_validator, + "shared_content_copy_details": EventDetails._shared_content_copy_details_validator, + "shared_content_download_details": EventDetails._shared_content_download_details_validator, + "shared_content_relinquish_membership_details": EventDetails._shared_content_relinquish_membership_details_validator, + "shared_content_remove_invitees_details": EventDetails._shared_content_remove_invitees_details_validator, + "shared_content_remove_link_expiry_details": EventDetails._shared_content_remove_link_expiry_details_validator, + "shared_content_remove_link_password_details": EventDetails._shared_content_remove_link_password_details_validator, + "shared_content_remove_member_details": EventDetails._shared_content_remove_member_details_validator, + "shared_content_request_access_details": EventDetails._shared_content_request_access_details_validator, + "shared_content_restore_invitees_details": EventDetails._shared_content_restore_invitees_details_validator, + "shared_content_restore_member_details": EventDetails._shared_content_restore_member_details_validator, + "shared_content_unshare_details": EventDetails._shared_content_unshare_details_validator, + "shared_content_view_details": EventDetails._shared_content_view_details_validator, + "shared_folder_change_link_policy_details": EventDetails._shared_folder_change_link_policy_details_validator, + "shared_folder_change_members_inheritance_policy_details": EventDetails._shared_folder_change_members_inheritance_policy_details_validator, + "shared_folder_change_members_management_policy_details": EventDetails._shared_folder_change_members_management_policy_details_validator, + "shared_folder_change_members_policy_details": EventDetails._shared_folder_change_members_policy_details_validator, + "shared_folder_create_details": EventDetails._shared_folder_create_details_validator, + "shared_folder_decline_invitation_details": EventDetails._shared_folder_decline_invitation_details_validator, + "shared_folder_mount_details": EventDetails._shared_folder_mount_details_validator, + "shared_folder_nest_details": EventDetails._shared_folder_nest_details_validator, + "shared_folder_transfer_ownership_details": EventDetails._shared_folder_transfer_ownership_details_validator, + "shared_folder_unmount_details": EventDetails._shared_folder_unmount_details_validator, + "shared_link_add_expiry_details": EventDetails._shared_link_add_expiry_details_validator, + "shared_link_change_expiry_details": EventDetails._shared_link_change_expiry_details_validator, + "shared_link_change_visibility_details": EventDetails._shared_link_change_visibility_details_validator, + "shared_link_copy_details": EventDetails._shared_link_copy_details_validator, + "shared_link_create_details": EventDetails._shared_link_create_details_validator, + "shared_link_disable_details": EventDetails._shared_link_disable_details_validator, + "shared_link_download_details": EventDetails._shared_link_download_details_validator, + "shared_link_remove_expiry_details": EventDetails._shared_link_remove_expiry_details_validator, + "shared_link_remove_visitor_details": EventDetails._shared_link_remove_visitor_details_validator, + "shared_link_settings_add_expiration_details": EventDetails._shared_link_settings_add_expiration_details_validator, + "shared_link_settings_add_password_details": EventDetails._shared_link_settings_add_password_details_validator, + "shared_link_settings_allow_download_disabled_details": EventDetails._shared_link_settings_allow_download_disabled_details_validator, + "shared_link_settings_allow_download_enabled_details": EventDetails._shared_link_settings_allow_download_enabled_details_validator, + "shared_link_settings_change_audience_details": EventDetails._shared_link_settings_change_audience_details_validator, + "shared_link_settings_change_expiration_details": EventDetails._shared_link_settings_change_expiration_details_validator, + "shared_link_settings_change_password_details": EventDetails._shared_link_settings_change_password_details_validator, + "shared_link_settings_remove_expiration_details": EventDetails._shared_link_settings_remove_expiration_details_validator, + "shared_link_settings_remove_password_details": EventDetails._shared_link_settings_remove_password_details_validator, + "shared_link_share_details": EventDetails._shared_link_share_details_validator, + "shared_link_view_details": EventDetails._shared_link_view_details_validator, + "shared_note_opened_details": EventDetails._shared_note_opened_details_validator, + "shmodel_disable_downloads_details": EventDetails._shmodel_disable_downloads_details_validator, + "shmodel_enable_downloads_details": EventDetails._shmodel_enable_downloads_details_validator, + "shmodel_group_share_details": EventDetails._shmodel_group_share_details_validator, + "showcase_access_granted_details": EventDetails._showcase_access_granted_details_validator, + "showcase_add_member_details": EventDetails._showcase_add_member_details_validator, + "showcase_archived_details": EventDetails._showcase_archived_details_validator, + "showcase_created_details": EventDetails._showcase_created_details_validator, + "showcase_delete_comment_details": EventDetails._showcase_delete_comment_details_validator, + "showcase_edited_details": EventDetails._showcase_edited_details_validator, + "showcase_edit_comment_details": EventDetails._showcase_edit_comment_details_validator, + "showcase_file_added_details": EventDetails._showcase_file_added_details_validator, + "showcase_file_download_details": EventDetails._showcase_file_download_details_validator, + "showcase_file_removed_details": EventDetails._showcase_file_removed_details_validator, + "showcase_file_view_details": EventDetails._showcase_file_view_details_validator, + "showcase_permanently_deleted_details": EventDetails._showcase_permanently_deleted_details_validator, + "showcase_post_comment_details": EventDetails._showcase_post_comment_details_validator, + "showcase_remove_member_details": EventDetails._showcase_remove_member_details_validator, + "showcase_renamed_details": EventDetails._showcase_renamed_details_validator, + "showcase_request_access_details": EventDetails._showcase_request_access_details_validator, + "showcase_resolve_comment_details": EventDetails._showcase_resolve_comment_details_validator, + "showcase_restored_details": EventDetails._showcase_restored_details_validator, + "showcase_trashed_details": EventDetails._showcase_trashed_details_validator, + "showcase_trashed_deprecated_details": EventDetails._showcase_trashed_deprecated_details_validator, + "showcase_unresolve_comment_details": EventDetails._showcase_unresolve_comment_details_validator, + "showcase_untrashed_details": EventDetails._showcase_untrashed_details_validator, + "showcase_untrashed_deprecated_details": EventDetails._showcase_untrashed_deprecated_details_validator, + "showcase_view_details": EventDetails._showcase_view_details_validator, + "sign_signature_request_canceled_details": EventDetails._sign_signature_request_canceled_details_validator, + "sign_signature_request_completed_details": EventDetails._sign_signature_request_completed_details_validator, + "sign_signature_request_declined_details": EventDetails._sign_signature_request_declined_details_validator, + "sign_signature_request_opened_details": EventDetails._sign_signature_request_opened_details_validator, + "sign_signature_request_reminder_sent_details": EventDetails._sign_signature_request_reminder_sent_details_validator, + "sign_signature_request_sent_details": EventDetails._sign_signature_request_sent_details_validator, + "sign_template_created_details": EventDetails._sign_template_created_details_validator, + "sign_template_shared_details": EventDetails._sign_template_shared_details_validator, + "risc_security_event_details": EventDetails._risc_security_event_details_validator, + "sso_add_cert_details": EventDetails._sso_add_cert_details_validator, + "sso_add_login_url_details": EventDetails._sso_add_login_url_details_validator, + "sso_add_logout_url_details": EventDetails._sso_add_logout_url_details_validator, + "sso_change_cert_details": EventDetails._sso_change_cert_details_validator, + "sso_change_login_url_details": EventDetails._sso_change_login_url_details_validator, + "sso_change_logout_url_details": EventDetails._sso_change_logout_url_details_validator, + "sso_change_saml_identity_mode_details": EventDetails._sso_change_saml_identity_mode_details_validator, + "sso_remove_cert_details": EventDetails._sso_remove_cert_details_validator, + "sso_remove_login_url_details": EventDetails._sso_remove_login_url_details_validator, + "sso_remove_logout_url_details": EventDetails._sso_remove_logout_url_details_validator, + "team_folder_change_status_details": EventDetails._team_folder_change_status_details_validator, + "team_folder_create_details": EventDetails._team_folder_create_details_validator, + "team_folder_downgrade_details": EventDetails._team_folder_downgrade_details_validator, + "team_folder_permanently_delete_details": EventDetails._team_folder_permanently_delete_details_validator, + "team_folder_rename_details": EventDetails._team_folder_rename_details_validator, + "team_folder_space_limits_change_caps_type_details": EventDetails._team_folder_space_limits_change_caps_type_details_validator, + "team_folder_space_limits_change_limit_details": EventDetails._team_folder_space_limits_change_limit_details_validator, + "team_folder_space_limits_change_notification_target_details": EventDetails._team_folder_space_limits_change_notification_target_details_validator, + "team_selective_sync_settings_changed_details": EventDetails._team_selective_sync_settings_changed_details_validator, + "account_capture_change_policy_details": EventDetails._account_capture_change_policy_details_validator, + "admin_email_reminders_changed_details": EventDetails._admin_email_reminders_changed_details_validator, + "ai_third_party_sharing_dropbox_base_policy_changed_details": EventDetails._ai_third_party_sharing_dropbox_base_policy_changed_details_validator, + "allow_download_disabled_details": EventDetails._allow_download_disabled_details_validator, + "allow_download_enabled_details": EventDetails._allow_download_enabled_details_validator, + "apple_login_change_policy_details": EventDetails._apple_login_change_policy_details_validator, + "app_permissions_changed_details": EventDetails._app_permissions_changed_details_validator, + "camera_uploads_policy_changed_details": EventDetails._camera_uploads_policy_changed_details_validator, + "capture_team_space_policy_changed_details": EventDetails._capture_team_space_policy_changed_details_validator, + "capture_transcript_policy_changed_details": EventDetails._capture_transcript_policy_changed_details_validator, + "classification_change_policy_details": EventDetails._classification_change_policy_details_validator, + "computer_backup_policy_changed_details": EventDetails._computer_backup_policy_changed_details_validator, + "content_administration_policy_changed_details": EventDetails._content_administration_policy_changed_details_validator, + "content_deletion_protection_change_policy_details": EventDetails._content_deletion_protection_change_policy_details_validator, + "dash_external_sharing_policy_changed_details": EventDetails._dash_external_sharing_policy_changed_details_validator, + "data_placement_restriction_change_policy_details": EventDetails._data_placement_restriction_change_policy_details_validator, + "data_placement_restriction_satisfy_policy_details": EventDetails._data_placement_restriction_satisfy_policy_details_validator, + "device_approvals_add_exception_details": EventDetails._device_approvals_add_exception_details_validator, + "device_approvals_change_desktop_policy_details": EventDetails._device_approvals_change_desktop_policy_details_validator, + "device_approvals_change_mobile_policy_details": EventDetails._device_approvals_change_mobile_policy_details_validator, + "device_approvals_change_overage_action_details": EventDetails._device_approvals_change_overage_action_details_validator, + "device_approvals_change_unlink_action_details": EventDetails._device_approvals_change_unlink_action_details_validator, + "device_approvals_remove_exception_details": EventDetails._device_approvals_remove_exception_details_validator, + "directory_restrictions_add_members_details": EventDetails._directory_restrictions_add_members_details_validator, + "directory_restrictions_remove_members_details": EventDetails._directory_restrictions_remove_members_details_validator, + "dropbox_passwords_policy_changed_details": EventDetails._dropbox_passwords_policy_changed_details_validator, + "email_ingest_policy_changed_details": EventDetails._email_ingest_policy_changed_details_validator, + "emm_add_exception_details": EventDetails._emm_add_exception_details_validator, + "emm_change_policy_details": EventDetails._emm_change_policy_details_validator, + "emm_remove_exception_details": EventDetails._emm_remove_exception_details_validator, + "extended_version_history_change_policy_details": EventDetails._extended_version_history_change_policy_details_validator, + "external_drive_backup_policy_changed_details": EventDetails._external_drive_backup_policy_changed_details_validator, + "file_comments_change_policy_details": EventDetails._file_comments_change_policy_details_validator, + "file_locking_policy_changed_details": EventDetails._file_locking_policy_changed_details_validator, + "file_provider_migration_policy_changed_details": EventDetails._file_provider_migration_policy_changed_details_validator, + "file_requests_change_policy_details": EventDetails._file_requests_change_policy_details_validator, + "file_requests_emails_enabled_details": EventDetails._file_requests_emails_enabled_details_validator, + "file_requests_emails_restricted_to_team_only_details": EventDetails._file_requests_emails_restricted_to_team_only_details_validator, + "file_transfers_policy_changed_details": EventDetails._file_transfers_policy_changed_details_validator, + "flexible_file_names_policy_changed_details": EventDetails._flexible_file_names_policy_changed_details_validator, + "folder_link_restriction_policy_changed_details": EventDetails._folder_link_restriction_policy_changed_details_validator, + "google_sso_change_policy_details": EventDetails._google_sso_change_policy_details_validator, + "group_user_management_change_policy_details": EventDetails._group_user_management_change_policy_details_validator, + "integration_policy_changed_details": EventDetails._integration_policy_changed_details_validator, + "invite_acceptance_email_policy_changed_details": EventDetails._invite_acceptance_email_policy_changed_details_validator, + "media_hub_adding_people_policy_changed_details": EventDetails._media_hub_adding_people_policy_changed_details_validator, + "media_hub_download_policy_changed_details": EventDetails._media_hub_download_policy_changed_details_validator, + "media_hub_link_sharing_policy_changed_details": EventDetails._media_hub_link_sharing_policy_changed_details_validator, + "member_requests_change_policy_details": EventDetails._member_requests_change_policy_details_validator, + "member_send_invite_policy_changed_details": EventDetails._member_send_invite_policy_changed_details_validator, + "member_space_limits_add_exception_details": EventDetails._member_space_limits_add_exception_details_validator, + "member_space_limits_change_caps_type_policy_details": EventDetails._member_space_limits_change_caps_type_policy_details_validator, + "member_space_limits_change_policy_details": EventDetails._member_space_limits_change_policy_details_validator, + "member_space_limits_remove_exception_details": EventDetails._member_space_limits_remove_exception_details_validator, + "member_suggestions_change_policy_details": EventDetails._member_suggestions_change_policy_details_validator, + "microsoft_login_change_policy_details": EventDetails._microsoft_login_change_policy_details_validator, + "microsoft_office_addin_change_policy_details": EventDetails._microsoft_office_addin_change_policy_details_validator, + "multi_team_identity_policy_changed_details": EventDetails._multi_team_identity_policy_changed_details_validator, + "network_control_change_policy_details": EventDetails._network_control_change_policy_details_validator, + "paper_change_deployment_policy_details": EventDetails._paper_change_deployment_policy_details_validator, + "paper_change_member_link_policy_details": EventDetails._paper_change_member_link_policy_details_validator, + "paper_change_member_policy_details": EventDetails._paper_change_member_policy_details_validator, + "paper_change_policy_details": EventDetails._paper_change_policy_details_validator, + "paper_default_folder_policy_changed_details": EventDetails._paper_default_folder_policy_changed_details_validator, + "paper_desktop_policy_changed_details": EventDetails._paper_desktop_policy_changed_details_validator, + "paper_enabled_users_group_addition_details": EventDetails._paper_enabled_users_group_addition_details_validator, + "paper_enabled_users_group_removal_details": EventDetails._paper_enabled_users_group_removal_details_validator, + "passkey_login_policy_changed_details": EventDetails._passkey_login_policy_changed_details_validator, + "password_strength_requirements_change_policy_details": EventDetails._password_strength_requirements_change_policy_details_validator, + "permanent_delete_change_policy_details": EventDetails._permanent_delete_change_policy_details_validator, + "previews_ai_policy_changed_details": EventDetails._previews_ai_policy_changed_details_validator, + "replay_adding_people_policy_changed_details": EventDetails._replay_adding_people_policy_changed_details_validator, + "replay_sharing_policy_changed_details": EventDetails._replay_sharing_policy_changed_details_validator, + "reseller_support_change_policy_details": EventDetails._reseller_support_change_policy_details_validator, + "rewind_policy_changed_details": EventDetails._rewind_policy_changed_details_validator, + "send_and_track_policy_changed_details": EventDetails._send_and_track_policy_changed_details_validator, + "send_external_sharing_policy_changed_details": EventDetails._send_external_sharing_policy_changed_details_validator, + "send_for_signature_policy_changed_details": EventDetails._send_for_signature_policy_changed_details_validator, + "shared_link_default_permissions_policy_changed_details": EventDetails._shared_link_default_permissions_policy_changed_details_validator, + "sharing_change_folder_join_policy_details": EventDetails._sharing_change_folder_join_policy_details_validator, + "sharing_change_link_allow_change_expiration_policy_details": EventDetails._sharing_change_link_allow_change_expiration_policy_details_validator, + "sharing_change_link_default_expiration_policy_details": EventDetails._sharing_change_link_default_expiration_policy_details_validator, + "sharing_change_link_enforce_password_policy_details": EventDetails._sharing_change_link_enforce_password_policy_details_validator, + "sharing_change_link_policy_details": EventDetails._sharing_change_link_policy_details_validator, + "sharing_change_member_policy_details": EventDetails._sharing_change_member_policy_details_validator, + "showcase_change_download_policy_details": EventDetails._showcase_change_download_policy_details_validator, + "showcase_change_enabled_policy_details": EventDetails._showcase_change_enabled_policy_details_validator, + "showcase_change_external_sharing_policy_details": EventDetails._showcase_change_external_sharing_policy_details_validator, + "sign_external_sharing_policy_changed_details": EventDetails._sign_external_sharing_policy_changed_details_validator, + "sign_template_creation_permission_changed_details": EventDetails._sign_template_creation_permission_changed_details_validator, + "smarter_smart_sync_policy_changed_details": EventDetails._smarter_smart_sync_policy_changed_details_validator, + "smart_sync_change_policy_details": EventDetails._smart_sync_change_policy_details_validator, + "smart_sync_not_opt_out_details": EventDetails._smart_sync_not_opt_out_details_validator, + "smart_sync_opt_out_details": EventDetails._smart_sync_opt_out_details_validator, + "sso_change_policy_details": EventDetails._sso_change_policy_details_validator, + "stack_cross_team_access_policy_changed_details": EventDetails._stack_cross_team_access_policy_changed_details_validator, + "team_branding_policy_changed_details": EventDetails._team_branding_policy_changed_details_validator, + "team_extensions_policy_changed_details": EventDetails._team_extensions_policy_changed_details_validator, + "team_member_storage_request_policy_changed_details": EventDetails._team_member_storage_request_policy_changed_details_validator, + "team_selective_sync_policy_changed_details": EventDetails._team_selective_sync_policy_changed_details_validator, + "team_sharing_whitelist_subjects_changed_details": EventDetails._team_sharing_whitelist_subjects_changed_details_validator, + "tfa_add_exception_details": EventDetails._tfa_add_exception_details_validator, + "tfa_change_policy_details": EventDetails._tfa_change_policy_details_validator, + "tfa_remove_exception_details": EventDetails._tfa_remove_exception_details_validator, + "top_level_content_policy_changed_details": EventDetails._top_level_content_policy_changed_details_validator, + "two_account_change_policy_details": EventDetails._two_account_change_policy_details_validator, + "viewer_info_policy_changed_details": EventDetails._viewer_info_policy_changed_details_validator, + "watermarking_policy_changed_details": EventDetails._watermarking_policy_changed_details_validator, + "web_sessions_change_active_session_limit_details": EventDetails._web_sessions_change_active_session_limit_details_validator, + "web_sessions_change_fixed_length_policy_details": EventDetails._web_sessions_change_fixed_length_policy_details_validator, + "web_sessions_change_idle_length_policy_details": EventDetails._web_sessions_change_idle_length_policy_details_validator, + "data_residency_migration_request_successful_details": EventDetails._data_residency_migration_request_successful_details_validator, + "data_residency_migration_request_unsuccessful_details": EventDetails._data_residency_migration_request_unsuccessful_details_validator, + "team_merge_from_details": EventDetails._team_merge_from_details_validator, + "team_merge_to_details": EventDetails._team_merge_to_details_validator, + "team_profile_add_background_details": EventDetails._team_profile_add_background_details_validator, + "team_profile_add_logo_details": EventDetails._team_profile_add_logo_details_validator, + "team_profile_change_background_details": EventDetails._team_profile_change_background_details_validator, + "team_profile_change_default_language_details": EventDetails._team_profile_change_default_language_details_validator, + "team_profile_change_logo_details": EventDetails._team_profile_change_logo_details_validator, + "team_profile_change_name_details": EventDetails._team_profile_change_name_details_validator, + "team_profile_remove_background_details": EventDetails._team_profile_remove_background_details_validator, + "team_profile_remove_logo_details": EventDetails._team_profile_remove_logo_details_validator, + "passkey_add_details": EventDetails._passkey_add_details_validator, + "passkey_remove_details": EventDetails._passkey_remove_details_validator, + "tfa_add_backup_phone_details": EventDetails._tfa_add_backup_phone_details_validator, + "tfa_add_security_key_details": EventDetails._tfa_add_security_key_details_validator, + "tfa_change_backup_phone_details": EventDetails._tfa_change_backup_phone_details_validator, + "tfa_change_status_details": EventDetails._tfa_change_status_details_validator, + "tfa_remove_backup_phone_details": EventDetails._tfa_remove_backup_phone_details_validator, + "tfa_remove_security_key_details": EventDetails._tfa_remove_security_key_details_validator, + "tfa_reset_details": EventDetails._tfa_reset_details_validator, + "changed_enterprise_admin_role_details": EventDetails._changed_enterprise_admin_role_details_validator, + "changed_enterprise_connected_team_status_details": EventDetails._changed_enterprise_connected_team_status_details_validator, + "ended_enterprise_admin_session_details": EventDetails._ended_enterprise_admin_session_details_validator, + "ended_enterprise_admin_session_deprecated_details": EventDetails._ended_enterprise_admin_session_deprecated_details_validator, + "enterprise_settings_locking_details": EventDetails._enterprise_settings_locking_details_validator, + "guest_admin_change_status_details": EventDetails._guest_admin_change_status_details_validator, + "started_enterprise_admin_session_details": EventDetails._started_enterprise_admin_session_details_validator, + "team_merge_request_accepted_details": EventDetails._team_merge_request_accepted_details_validator, + "team_merge_request_accepted_shown_to_primary_team_details": EventDetails._team_merge_request_accepted_shown_to_primary_team_details_validator, + "team_merge_request_accepted_shown_to_secondary_team_details": EventDetails._team_merge_request_accepted_shown_to_secondary_team_details_validator, + "team_merge_request_auto_canceled_details": EventDetails._team_merge_request_auto_canceled_details_validator, + "team_merge_request_canceled_details": EventDetails._team_merge_request_canceled_details_validator, + "team_merge_request_canceled_shown_to_primary_team_details": EventDetails._team_merge_request_canceled_shown_to_primary_team_details_validator, + "team_merge_request_canceled_shown_to_secondary_team_details": EventDetails._team_merge_request_canceled_shown_to_secondary_team_details_validator, + "team_merge_request_expired_details": EventDetails._team_merge_request_expired_details_validator, + "team_merge_request_expired_shown_to_primary_team_details": EventDetails._team_merge_request_expired_shown_to_primary_team_details_validator, + "team_merge_request_expired_shown_to_secondary_team_details": EventDetails._team_merge_request_expired_shown_to_secondary_team_details_validator, + "team_merge_request_rejected_shown_to_primary_team_details": EventDetails._team_merge_request_rejected_shown_to_primary_team_details_validator, + "team_merge_request_rejected_shown_to_secondary_team_details": EventDetails._team_merge_request_rejected_shown_to_secondary_team_details_validator, + "team_merge_request_reminder_details": EventDetails._team_merge_request_reminder_details_validator, + "team_merge_request_reminder_shown_to_primary_team_details": EventDetails._team_merge_request_reminder_shown_to_primary_team_details_validator, + "team_merge_request_reminder_shown_to_secondary_team_details": EventDetails._team_merge_request_reminder_shown_to_secondary_team_details_validator, + "team_merge_request_revoked_details": EventDetails._team_merge_request_revoked_details_validator, + "team_merge_request_sent_shown_to_primary_team_details": EventDetails._team_merge_request_sent_shown_to_primary_team_details_validator, + "team_merge_request_sent_shown_to_secondary_team_details": EventDetails._team_merge_request_sent_shown_to_secondary_team_details_validator, + "missing_details": EventDetails._missing_details_validator, + "other": EventDetails._other_validator, } -EventDetails.other = EventDetails('other') +EventDetails.other = EventDetails("other") -EventType._admin_alerting_alert_state_changed_validator = AdminAlertingAlertStateChangedType_validator -EventType._admin_alerting_changed_alert_config_validator = AdminAlertingChangedAlertConfigType_validator +EventType._admin_alerting_alert_state_changed_validator = ( + AdminAlertingAlertStateChangedType_validator +) +EventType._admin_alerting_changed_alert_config_validator = ( + AdminAlertingChangedAlertConfigType_validator +) EventType._admin_alerting_triggered_alert_validator = AdminAlertingTriggeredAlertType_validator -EventType._ransomware_restore_process_completed_validator = RansomwareRestoreProcessCompletedType_validator -EventType._ransomware_restore_process_started_validator = RansomwareRestoreProcessStartedType_validator +EventType._ransomware_restore_process_completed_validator = ( + RansomwareRestoreProcessCompletedType_validator +) +EventType._ransomware_restore_process_started_validator = ( + RansomwareRestoreProcessStartedType_validator +) EventType._app_blocked_by_permissions_validator = AppBlockedByPermissionsType_validator EventType._app_link_team_validator = AppLinkTeamType_validator EventType._app_link_user_validator = AppLinkUserType_validator @@ -97939,13 +103330,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._dash_added_comment_to_stack_validator = DashAddedCommentToStackType_validator EventType._dash_added_connector_validator = DashAddedConnectorType_validator EventType._dash_added_link_to_stack_validator = DashAddedLinkToStackType_validator -EventType._dash_added_team_email_domain_allowlist_validator = DashAddedTeamEmailDomainAllowlistType_validator -EventType._dash_admin_added_org_wide_connector_validator = DashAdminAddedOrgWideConnectorType_validator +EventType._dash_added_team_email_domain_allowlist_validator = ( + DashAddedTeamEmailDomainAllowlistType_validator +) +EventType._dash_admin_added_org_wide_connector_validator = ( + DashAdminAddedOrgWideConnectorType_validator +) EventType._dash_admin_disabled_connector_validator = DashAdminDisabledConnectorType_validator EventType._dash_admin_enabled_connector_validator = DashAdminEnabledConnectorType_validator -EventType._dash_admin_removed_org_wide_connector_validator = DashAdminRemovedOrgWideConnectorType_validator +EventType._dash_admin_removed_org_wide_connector_validator = ( + DashAdminRemovedOrgWideConnectorType_validator +) EventType._dash_archived_stack_validator = DashArchivedStackType_validator -EventType._dash_changed_audience_of_shared_link_to_stack_validator = DashChangedAudienceOfSharedLinkToStackType_validator +EventType._dash_changed_audience_of_shared_link_to_stack_validator = ( + DashChangedAudienceOfSharedLinkToStackType_validator +) EventType._dash_cloned_stack_validator = DashClonedStackType_validator EventType._dash_connector_tools_call_validator = DashConnectorToolsCallType_validator EventType._dash_created_stack_validator = DashCreatedStackType_validator @@ -97955,22 +103354,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._dash_external_user_opened_stack_validator = DashExternalUserOpenedStackType_validator EventType._dash_first_launched_desktop_validator = DashFirstLaunchedDesktopType_validator EventType._dash_first_launched_extension_validator = DashFirstLaunchedExtensionType_validator -EventType._dash_first_launched_web_start_page_validator = DashFirstLaunchedWebStartPageType_validator +EventType._dash_first_launched_web_start_page_validator = ( + DashFirstLaunchedWebStartPageType_validator +) EventType._dash_opened_shared_link_to_stack_validator = DashOpenedSharedLinkToStackType_validator EventType._dash_opened_stack_validator = DashOpenedStackType_validator -EventType._dash_preview_opt_out_status_changed_validator = DashPreviewOptOutStatusChangedType_validator +EventType._dash_preview_opt_out_status_changed_validator = ( + DashPreviewOptOutStatusChangedType_validator +) EventType._dash_removed_connector_validator = DashRemovedConnectorType_validator EventType._dash_removed_link_from_stack_validator = DashRemovedLinkFromStackType_validator EventType._dash_removed_shared_link_to_stack_validator = DashRemovedSharedLinkToStackType_validator -EventType._dash_removed_team_email_domain_allowlist_validator = DashRemovedTeamEmailDomainAllowlistType_validator +EventType._dash_removed_team_email_domain_allowlist_validator = ( + DashRemovedTeamEmailDomainAllowlistType_validator +) EventType._dash_renamed_stack_validator = DashRenamedStackType_validator EventType._dash_shared_link_to_stack_validator = DashSharedLinkToStackType_validator EventType._dash_unarchived_stack_validator = DashUnarchivedStackType_validator EventType._dash_viewed_company_stack_validator = DashViewedCompanyStackType_validator -EventType._dash_viewed_external_ai_activity_report_validator = DashViewedExternalAiActivityReportType_validator +EventType._dash_viewed_external_ai_activity_report_validator = ( + DashViewedExternalAiActivityReportType_validator +) EventType._governance_policy_add_folders_validator = GovernancePolicyAddFoldersType_validator -EventType._governance_policy_add_folder_failed_validator = GovernancePolicyAddFolderFailedType_validator -EventType._governance_policy_content_disposed_validator = GovernancePolicyContentDisposedType_validator +EventType._governance_policy_add_folder_failed_validator = ( + GovernancePolicyAddFolderFailedType_validator +) +EventType._governance_policy_content_disposed_validator = ( + GovernancePolicyContentDisposedType_validator +) EventType._governance_policy_create_validator = GovernancePolicyCreateType_validator EventType._governance_policy_delete_validator = GovernancePolicyDeleteType_validator EventType._governance_policy_edit_details_validator = GovernancePolicyEditDetailsType_validator @@ -97979,7 +103390,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._governance_policy_export_removed_validator = GovernancePolicyExportRemovedType_validator EventType._governance_policy_remove_folders_validator = GovernancePolicyRemoveFoldersType_validator EventType._governance_policy_report_created_validator = GovernancePolicyReportCreatedType_validator -EventType._governance_policy_zip_part_downloaded_validator = GovernancePolicyZipPartDownloadedType_validator +EventType._governance_policy_zip_part_downloaded_validator = ( + GovernancePolicyZipPartDownloadedType_validator +) EventType._legal_holds_activate_a_hold_validator = LegalHoldsActivateAHoldType_validator EventType._legal_holds_add_members_validator = LegalHoldsAddMembersType_validator EventType._legal_holds_change_hold_details_validator = LegalHoldsChangeHoldDetailsType_validator @@ -98003,44 +103416,92 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._device_sync_backup_status_changed_validator = DeviceSyncBackupStatusChangedType_validator EventType._device_unlink_validator = DeviceUnlinkType_validator EventType._dropbox_passwords_exported_validator = DropboxPasswordsExportedType_validator -EventType._dropbox_passwords_new_device_enrolled_validator = DropboxPasswordsNewDeviceEnrolledType_validator +EventType._dropbox_passwords_new_device_enrolled_validator = ( + DropboxPasswordsNewDeviceEnrolledType_validator +) EventType._emm_refresh_auth_token_validator = EmmRefreshAuthTokenType_validator -EventType._external_drive_backup_eligibility_status_checked_validator = ExternalDriveBackupEligibilityStatusCheckedType_validator -EventType._external_drive_backup_status_changed_validator = ExternalDriveBackupStatusChangedType_validator -EventType._account_capture_change_availability_validator = AccountCaptureChangeAvailabilityType_validator +EventType._external_drive_backup_eligibility_status_checked_validator = ( + ExternalDriveBackupEligibilityStatusCheckedType_validator +) +EventType._external_drive_backup_status_changed_validator = ( + ExternalDriveBackupStatusChangedType_validator +) +EventType._account_capture_change_availability_validator = ( + AccountCaptureChangeAvailabilityType_validator +) EventType._account_capture_migrate_account_validator = AccountCaptureMigrateAccountType_validator -EventType._account_capture_notification_emails_sent_validator = AccountCaptureNotificationEmailsSentType_validator -EventType._account_capture_relinquish_account_validator = AccountCaptureRelinquishAccountType_validator +EventType._account_capture_notification_emails_sent_validator = ( + AccountCaptureNotificationEmailsSentType_validator +) +EventType._account_capture_relinquish_account_validator = ( + AccountCaptureRelinquishAccountType_validator +) EventType._disabled_domain_invites_validator = DisabledDomainInvitesType_validator -EventType._domain_invites_approve_request_to_join_team_validator = DomainInvitesApproveRequestToJoinTeamType_validator -EventType._domain_invites_decline_request_to_join_team_validator = DomainInvitesDeclineRequestToJoinTeamType_validator -EventType._domain_invites_email_existing_users_validator = DomainInvitesEmailExistingUsersType_validator -EventType._domain_invites_request_to_join_team_validator = DomainInvitesRequestToJoinTeamType_validator -EventType._domain_invites_set_invite_new_user_pref_to_no_validator = DomainInvitesSetInviteNewUserPrefToNoType_validator -EventType._domain_invites_set_invite_new_user_pref_to_yes_validator = DomainInvitesSetInviteNewUserPrefToYesType_validator -EventType._domain_verification_add_domain_fail_validator = DomainVerificationAddDomainFailType_validator -EventType._domain_verification_add_domain_success_validator = DomainVerificationAddDomainSuccessType_validator -EventType._domain_verification_remove_domain_validator = DomainVerificationRemoveDomainType_validator +EventType._domain_invites_approve_request_to_join_team_validator = ( + DomainInvitesApproveRequestToJoinTeamType_validator +) +EventType._domain_invites_decline_request_to_join_team_validator = ( + DomainInvitesDeclineRequestToJoinTeamType_validator +) +EventType._domain_invites_email_existing_users_validator = ( + DomainInvitesEmailExistingUsersType_validator +) +EventType._domain_invites_request_to_join_team_validator = ( + DomainInvitesRequestToJoinTeamType_validator +) +EventType._domain_invites_set_invite_new_user_pref_to_no_validator = ( + DomainInvitesSetInviteNewUserPrefToNoType_validator +) +EventType._domain_invites_set_invite_new_user_pref_to_yes_validator = ( + DomainInvitesSetInviteNewUserPrefToYesType_validator +) +EventType._domain_verification_add_domain_fail_validator = ( + DomainVerificationAddDomainFailType_validator +) +EventType._domain_verification_add_domain_success_validator = ( + DomainVerificationAddDomainSuccessType_validator +) +EventType._domain_verification_remove_domain_validator = ( + DomainVerificationRemoveDomainType_validator +) EventType._enabled_domain_invites_validator = EnabledDomainInvitesType_validator -EventType._encrypted_folder_cancel_team_key_rotation_validator = EncryptedFolderCancelTeamKeyRotationType_validator -EventType._encrypted_folder_enroll_backup_key_validator = EncryptedFolderEnrollBackupKeyType_validator +EventType._encrypted_folder_cancel_team_key_rotation_validator = ( + EncryptedFolderCancelTeamKeyRotationType_validator +) +EventType._encrypted_folder_enroll_backup_key_validator = ( + EncryptedFolderEnrollBackupKeyType_validator +) EventType._encrypted_folder_enroll_client_validator = EncryptedFolderEnrollClientType_validator EventType._encrypted_folder_enroll_team_validator = EncryptedFolderEnrollTeamType_validator -EventType._encrypted_folder_finish_team_unenrollment_validator = EncryptedFolderFinishTeamUnenrollmentType_validator -EventType._encrypted_folder_init_team_key_rotation_validator = EncryptedFolderInitTeamKeyRotationType_validator -EventType._encrypted_folder_init_team_unenrollment_validator = EncryptedFolderInitTeamUnenrollmentType_validator -EventType._encrypted_folder_remove_backup_key_validator = EncryptedFolderRemoveBackupKeyType_validator +EventType._encrypted_folder_finish_team_unenrollment_validator = ( + EncryptedFolderFinishTeamUnenrollmentType_validator +) +EventType._encrypted_folder_init_team_key_rotation_validator = ( + EncryptedFolderInitTeamKeyRotationType_validator +) +EventType._encrypted_folder_init_team_unenrollment_validator = ( + EncryptedFolderInitTeamUnenrollmentType_validator +) +EventType._encrypted_folder_remove_backup_key_validator = ( + EncryptedFolderRemoveBackupKeyType_validator +) EventType._encrypted_folder_rotate_team_key_validator = EncryptedFolderRotateTeamKeyType_validator EventType._encrypted_folder_unenroll_client_validator = EncryptedFolderUnenrollClientType_validator EventType._team_encryption_key_activate_key_validator = TeamEncryptionKeyActivateKeyType_validator -EventType._team_encryption_key_cancel_key_deletion_validator = TeamEncryptionKeyCancelKeyDeletionType_validator +EventType._team_encryption_key_cancel_key_deletion_validator = ( + TeamEncryptionKeyCancelKeyDeletionType_validator +) EventType._team_encryption_key_create_key_validator = TeamEncryptionKeyCreateKeyType_validator -EventType._team_encryption_key_deactivate_key_validator = TeamEncryptionKeyDeactivateKeyType_validator +EventType._team_encryption_key_deactivate_key_validator = ( + TeamEncryptionKeyDeactivateKeyType_validator +) EventType._team_encryption_key_delete_key_validator = TeamEncryptionKeyDeleteKeyType_validator EventType._team_encryption_key_disable_key_validator = TeamEncryptionKeyDisableKeyType_validator EventType._team_encryption_key_enable_key_validator = TeamEncryptionKeyEnableKeyType_validator EventType._team_encryption_key_rotate_key_validator = TeamEncryptionKeyRotateKeyType_validator -EventType._team_encryption_key_schedule_key_deletion_validator = TeamEncryptionKeyScheduleKeyDeletionType_validator +EventType._team_encryption_key_schedule_key_deletion_validator = ( + TeamEncryptionKeyScheduleKeyDeletionType_validator +) EventType._apply_naming_convention_validator = ApplyNamingConventionType_validator EventType._create_folder_validator = CreateFolderType_validator EventType._file_add_validator = FileAddType_validator @@ -98059,7 +103520,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._file_revert_validator = FileRevertType_validator EventType._file_rollback_changes_validator = FileRollbackChangesType_validator EventType._file_save_copy_reference_validator = FileSaveCopyReferenceType_validator -EventType._folder_overview_description_changed_validator = FolderOverviewDescriptionChangedType_validator +EventType._folder_overview_description_changed_validator = ( + FolderOverviewDescriptionChangedType_validator +) EventType._folder_overview_item_pinned_validator = FolderOverviewItemPinnedType_validator EventType._folder_overview_item_unpinned_validator = FolderOverviewItemUnpinnedType_validator EventType._media_hub_file_downloaded_validator = MediaHubFileDownloadedType_validator @@ -98090,7 +103553,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._group_create_validator = GroupCreateType_validator EventType._group_delete_validator = GroupDeleteType_validator EventType._group_description_updated_validator = GroupDescriptionUpdatedType_validator -EventType._group_external_sharing_setting_override_changed_validator = GroupExternalSharingSettingOverrideChangedType_validator +EventType._group_external_sharing_setting_override_changed_validator = ( + GroupExternalSharingSettingOverrideChangedType_validator +) EventType._group_join_policy_updated_validator = GroupJoinPolicyUpdatedType_validator EventType._group_moved_validator = GroupMovedType_validator EventType._group_remove_external_id_validator = GroupRemoveExternalIdType_validator @@ -98098,8 +103563,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._group_rename_validator = GroupRenameType_validator EventType._account_lock_or_unlocked_validator = AccountLockOrUnlockedType_validator EventType._emm_error_validator = EmmErrorType_validator -EventType._guest_admin_signed_in_via_trusted_teams_validator = GuestAdminSignedInViaTrustedTeamsType_validator -EventType._guest_admin_signed_out_via_trusted_teams_validator = GuestAdminSignedOutViaTrustedTeamsType_validator +EventType._guest_admin_signed_in_via_trusted_teams_validator = ( + GuestAdminSignedInViaTrustedTeamsType_validator +) +EventType._guest_admin_signed_out_via_trusted_teams_validator = ( + GuestAdminSignedOutViaTrustedTeamsType_validator +) EventType._login_fail_validator = LoginFailType_validator EventType._login_success_validator = LoginSuccessType_validator EventType._logout_validator = LogoutType_validator @@ -98125,13 +103594,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._member_change_status_validator = MemberChangeStatusType_validator EventType._member_delete_manual_contacts_validator = MemberDeleteManualContactsType_validator EventType._member_delete_profile_photo_validator = MemberDeleteProfilePhotoType_validator -EventType._member_permanently_delete_account_contents_validator = MemberPermanentlyDeleteAccountContentsType_validator +EventType._member_permanently_delete_account_contents_validator = ( + MemberPermanentlyDeleteAccountContentsType_validator +) EventType._member_remove_external_id_validator = MemberRemoveExternalIdType_validator EventType._member_set_profile_photo_validator = MemberSetProfilePhotoType_validator -EventType._member_space_limits_add_custom_quota_validator = MemberSpaceLimitsAddCustomQuotaType_validator -EventType._member_space_limits_change_custom_quota_validator = MemberSpaceLimitsChangeCustomQuotaType_validator +EventType._member_space_limits_add_custom_quota_validator = ( + MemberSpaceLimitsAddCustomQuotaType_validator +) +EventType._member_space_limits_change_custom_quota_validator = ( + MemberSpaceLimitsChangeCustomQuotaType_validator +) EventType._member_space_limits_change_status_validator = MemberSpaceLimitsChangeStatusType_validator -EventType._member_space_limits_remove_custom_quota_validator = MemberSpaceLimitsRemoveCustomQuotaType_validator +EventType._member_space_limits_remove_custom_quota_validator = ( + MemberSpaceLimitsRemoveCustomQuotaType_validator +) EventType._member_suggest_validator = MemberSuggestType_validator EventType._member_transfer_account_contents_validator = MemberTransferAccountContentsType_validator EventType._pending_secondary_email_added_validator = PendingSecondaryEmailAddedType_validator @@ -98185,7 +103662,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._paper_folder_deleted_validator = PaperFolderDeletedType_validator EventType._paper_folder_followed_validator = PaperFolderFollowedType_validator EventType._paper_folder_team_invite_validator = PaperFolderTeamInviteType_validator -EventType._paper_published_link_change_permission_validator = PaperPublishedLinkChangePermissionType_validator +EventType._paper_published_link_change_permission_validator = ( + PaperPublishedLinkChangePermissionType_validator +) EventType._paper_published_link_create_validator = PaperPublishedLinkCreateType_validator EventType._paper_published_link_disabled_validator = PaperPublishedLinkDisabledType_validator EventType._paper_published_link_view_validator = PaperPublishedLinkViewType_validator @@ -98194,29 +103673,53 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._password_reset_all_validator = PasswordResetAllType_validator EventType._protect_internal_domains_changed_validator = ProtectInternalDomainsChangedType_validator EventType._classification_create_report_validator = ClassificationCreateReportType_validator -EventType._classification_create_report_fail_validator = ClassificationCreateReportFailType_validator +EventType._classification_create_report_fail_validator = ( + ClassificationCreateReportFailType_validator +) EventType._emm_create_exceptions_report_validator = EmmCreateExceptionsReportType_validator EventType._emm_create_usage_report_validator = EmmCreateUsageReportType_validator EventType._export_members_report_validator = ExportMembersReportType_validator EventType._export_members_report_fail_validator = ExportMembersReportFailType_validator EventType._external_sharing_create_report_validator = ExternalSharingCreateReportType_validator EventType._external_sharing_report_failed_validator = ExternalSharingReportFailedType_validator -EventType._member_access_details_create_report_validator = MemberAccessDetailsCreateReportType_validator -EventType._member_access_details_create_report_failed_validator = MemberAccessDetailsCreateReportFailedType_validator -EventType._no_expiration_link_gen_create_report_validator = NoExpirationLinkGenCreateReportType_validator -EventType._no_expiration_link_gen_report_failed_validator = NoExpirationLinkGenReportFailedType_validator -EventType._no_password_link_gen_create_report_validator = NoPasswordLinkGenCreateReportType_validator -EventType._no_password_link_gen_report_failed_validator = NoPasswordLinkGenReportFailedType_validator -EventType._no_password_link_view_create_report_validator = NoPasswordLinkViewCreateReportType_validator -EventType._no_password_link_view_report_failed_validator = NoPasswordLinkViewReportFailedType_validator +EventType._member_access_details_create_report_validator = ( + MemberAccessDetailsCreateReportType_validator +) +EventType._member_access_details_create_report_failed_validator = ( + MemberAccessDetailsCreateReportFailedType_validator +) +EventType._no_expiration_link_gen_create_report_validator = ( + NoExpirationLinkGenCreateReportType_validator +) +EventType._no_expiration_link_gen_report_failed_validator = ( + NoExpirationLinkGenReportFailedType_validator +) +EventType._no_password_link_gen_create_report_validator = ( + NoPasswordLinkGenCreateReportType_validator +) +EventType._no_password_link_gen_report_failed_validator = ( + NoPasswordLinkGenReportFailedType_validator +) +EventType._no_password_link_view_create_report_validator = ( + NoPasswordLinkViewCreateReportType_validator +) +EventType._no_password_link_view_report_failed_validator = ( + NoPasswordLinkViewReportFailedType_validator +) EventType._outdated_link_view_create_report_validator = OutdatedLinkViewCreateReportType_validator EventType._outdated_link_view_report_failed_validator = OutdatedLinkViewReportFailedType_validator EventType._paper_admin_export_start_validator = PaperAdminExportStartType_validator EventType._ransomware_alert_create_report_validator = RansomwareAlertCreateReportType_validator -EventType._ransomware_alert_create_report_failed_validator = RansomwareAlertCreateReportFailedType_validator +EventType._ransomware_alert_create_report_failed_validator = ( + RansomwareAlertCreateReportFailedType_validator +) EventType._shared_folders_create_report_validator = SharedFoldersCreateReportType_validator -EventType._shared_folders_create_report_failed_validator = SharedFoldersCreateReportFailedType_validator -EventType._smart_sync_create_admin_privilege_report_validator = SmartSyncCreateAdminPrivilegeReportType_validator +EventType._shared_folders_create_report_failed_validator = ( + SharedFoldersCreateReportFailedType_validator +) +EventType._smart_sync_create_admin_privilege_report_validator = ( + SmartSyncCreateAdminPrivilegeReportType_validator +) EventType._team_activity_create_report_validator = TeamActivityCreateReportType_validator EventType._team_activity_create_report_fail_validator = TeamActivityCreateReportFailType_validator EventType._team_folders_create_report_validator = TeamFoldersCreateReportType_validator @@ -98231,10 +103734,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._file_transfers_transfer_view_validator = FileTransfersTransferViewType_validator EventType._media_hub_project_team_add_validator = MediaHubProjectTeamAddType_validator EventType._media_hub_project_team_delete_validator = MediaHubProjectTeamDeleteType_validator -EventType._media_hub_project_team_role_changed_validator = MediaHubProjectTeamRoleChangedType_validator -EventType._media_hub_shared_link_audience_changed_validator = MediaHubSharedLinkAudienceChangedType_validator +EventType._media_hub_project_team_role_changed_validator = ( + MediaHubProjectTeamRoleChangedType_validator +) +EventType._media_hub_shared_link_audience_changed_validator = ( + MediaHubSharedLinkAudienceChangedType_validator +) EventType._media_hub_shared_link_created_validator = MediaHubSharedLinkCreatedType_validator -EventType._media_hub_shared_link_download_setting_changed_validator = MediaHubSharedLinkDownloadSettingChangedType_validator +EventType._media_hub_shared_link_download_setting_changed_validator = ( + MediaHubSharedLinkDownloadSettingChangedType_validator +) EventType._media_hub_shared_link_revoked_validator = MediaHubSharedLinkRevokedType_validator EventType._note_acl_invite_only_validator = NoteAclInviteOnlyType_validator EventType._note_acl_link_validator = NoteAclLinkType_validator @@ -98253,9 +103762,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._send_and_track_link_deleted_validator = SendAndTrackLinkDeletedType_validator EventType._send_and_track_link_updated_validator = SendAndTrackLinkUpdatedType_validator EventType._send_and_track_link_viewed_validator = SendAndTrackLinkViewedType_validator -EventType._send_and_track_removed_file_and_associated_links_validator = SendAndTrackRemovedFileAndAssociatedLinksType_validator +EventType._send_and_track_removed_file_and_associated_links_validator = ( + SendAndTrackRemovedFileAndAssociatedLinksType_validator +) EventType._sf_add_group_validator = SfAddGroupType_validator -EventType._sf_allow_non_members_to_view_shared_links_validator = SfAllowNonMembersToViewSharedLinksType_validator +EventType._sf_allow_non_members_to_view_shared_links_validator = ( + SfAllowNonMembersToViewSharedLinksType_validator +) EventType._sf_external_invite_warn_validator = SfExternalInviteWarnType_validator EventType._sf_fb_invite_validator = SfFbInviteType_validator EventType._sf_fb_invite_change_role_validator = SfFbInviteChangeRoleType_validator @@ -98271,20 +103784,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._shared_content_add_link_expiry_validator = SharedContentAddLinkExpiryType_validator EventType._shared_content_add_link_password_validator = SharedContentAddLinkPasswordType_validator EventType._shared_content_add_member_validator = SharedContentAddMemberType_validator -EventType._shared_content_change_downloads_policy_validator = SharedContentChangeDownloadsPolicyType_validator -EventType._shared_content_change_invitee_role_validator = SharedContentChangeInviteeRoleType_validator -EventType._shared_content_change_link_audience_validator = SharedContentChangeLinkAudienceType_validator +EventType._shared_content_change_downloads_policy_validator = ( + SharedContentChangeDownloadsPolicyType_validator +) +EventType._shared_content_change_invitee_role_validator = ( + SharedContentChangeInviteeRoleType_validator +) +EventType._shared_content_change_link_audience_validator = ( + SharedContentChangeLinkAudienceType_validator +) EventType._shared_content_change_link_expiry_validator = SharedContentChangeLinkExpiryType_validator -EventType._shared_content_change_link_password_validator = SharedContentChangeLinkPasswordType_validator +EventType._shared_content_change_link_password_validator = ( + SharedContentChangeLinkPasswordType_validator +) EventType._shared_content_change_member_role_validator = SharedContentChangeMemberRoleType_validator -EventType._shared_content_change_viewer_info_policy_validator = SharedContentChangeViewerInfoPolicyType_validator +EventType._shared_content_change_viewer_info_policy_validator = ( + SharedContentChangeViewerInfoPolicyType_validator +) EventType._shared_content_claim_invitation_validator = SharedContentClaimInvitationType_validator EventType._shared_content_copy_validator = SharedContentCopyType_validator EventType._shared_content_download_validator = SharedContentDownloadType_validator -EventType._shared_content_relinquish_membership_validator = SharedContentRelinquishMembershipType_validator +EventType._shared_content_relinquish_membership_validator = ( + SharedContentRelinquishMembershipType_validator +) EventType._shared_content_remove_invitees_validator = SharedContentRemoveInviteesType_validator EventType._shared_content_remove_link_expiry_validator = SharedContentRemoveLinkExpiryType_validator -EventType._shared_content_remove_link_password_validator = SharedContentRemoveLinkPasswordType_validator +EventType._shared_content_remove_link_password_validator = ( + SharedContentRemoveLinkPasswordType_validator +) EventType._shared_content_remove_member_validator = SharedContentRemoveMemberType_validator EventType._shared_content_request_access_validator = SharedContentRequestAccessType_validator EventType._shared_content_restore_invitees_validator = SharedContentRestoreInviteesType_validator @@ -98292,9 +103819,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._shared_content_unshare_validator = SharedContentUnshareType_validator EventType._shared_content_view_validator = SharedContentViewType_validator EventType._shared_folder_change_link_policy_validator = SharedFolderChangeLinkPolicyType_validator -EventType._shared_folder_change_members_inheritance_policy_validator = SharedFolderChangeMembersInheritancePolicyType_validator -EventType._shared_folder_change_members_management_policy_validator = SharedFolderChangeMembersManagementPolicyType_validator -EventType._shared_folder_change_members_policy_validator = SharedFolderChangeMembersPolicyType_validator +EventType._shared_folder_change_members_inheritance_policy_validator = ( + SharedFolderChangeMembersInheritancePolicyType_validator +) +EventType._shared_folder_change_members_management_policy_validator = ( + SharedFolderChangeMembersManagementPolicyType_validator +) +EventType._shared_folder_change_members_policy_validator = ( + SharedFolderChangeMembersPolicyType_validator +) EventType._shared_folder_create_validator = SharedFolderCreateType_validator EventType._shared_folder_decline_invitation_validator = SharedFolderDeclineInvitationType_validator EventType._shared_folder_mount_validator = SharedFolderMountType_validator @@ -98310,15 +103843,31 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._shared_link_download_validator = SharedLinkDownloadType_validator EventType._shared_link_remove_expiry_validator = SharedLinkRemoveExpiryType_validator EventType._shared_link_remove_visitor_validator = SharedLinkRemoveVisitorType_validator -EventType._shared_link_settings_add_expiration_validator = SharedLinkSettingsAddExpirationType_validator +EventType._shared_link_settings_add_expiration_validator = ( + SharedLinkSettingsAddExpirationType_validator +) EventType._shared_link_settings_add_password_validator = SharedLinkSettingsAddPasswordType_validator -EventType._shared_link_settings_allow_download_disabled_validator = SharedLinkSettingsAllowDownloadDisabledType_validator -EventType._shared_link_settings_allow_download_enabled_validator = SharedLinkSettingsAllowDownloadEnabledType_validator -EventType._shared_link_settings_change_audience_validator = SharedLinkSettingsChangeAudienceType_validator -EventType._shared_link_settings_change_expiration_validator = SharedLinkSettingsChangeExpirationType_validator -EventType._shared_link_settings_change_password_validator = SharedLinkSettingsChangePasswordType_validator -EventType._shared_link_settings_remove_expiration_validator = SharedLinkSettingsRemoveExpirationType_validator -EventType._shared_link_settings_remove_password_validator = SharedLinkSettingsRemovePasswordType_validator +EventType._shared_link_settings_allow_download_disabled_validator = ( + SharedLinkSettingsAllowDownloadDisabledType_validator +) +EventType._shared_link_settings_allow_download_enabled_validator = ( + SharedLinkSettingsAllowDownloadEnabledType_validator +) +EventType._shared_link_settings_change_audience_validator = ( + SharedLinkSettingsChangeAudienceType_validator +) +EventType._shared_link_settings_change_expiration_validator = ( + SharedLinkSettingsChangeExpirationType_validator +) +EventType._shared_link_settings_change_password_validator = ( + SharedLinkSettingsChangePasswordType_validator +) +EventType._shared_link_settings_remove_expiration_validator = ( + SharedLinkSettingsRemoveExpirationType_validator +) +EventType._shared_link_settings_remove_password_validator = ( + SharedLinkSettingsRemovePasswordType_validator +) EventType._shared_link_share_validator = SharedLinkShareType_validator EventType._shared_link_view_validator = SharedLinkViewType_validator EventType._shared_note_opened_validator = SharedNoteOpenedType_validator @@ -98353,7 +103902,9 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._sign_signature_request_completed_validator = SignSignatureRequestCompletedType_validator EventType._sign_signature_request_declined_validator = SignSignatureRequestDeclinedType_validator EventType._sign_signature_request_opened_validator = SignSignatureRequestOpenedType_validator -EventType._sign_signature_request_reminder_sent_validator = SignSignatureRequestReminderSentType_validator +EventType._sign_signature_request_reminder_sent_validator = ( + SignSignatureRequestReminderSentType_validator +) EventType._sign_signature_request_sent_validator = SignSignatureRequestSentType_validator EventType._sign_template_created_validator = SignTemplateCreatedType_validator EventType._sign_template_shared_validator = SignTemplateSharedType_validator @@ -98373,111 +103924,207 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._team_folder_downgrade_validator = TeamFolderDowngradeType_validator EventType._team_folder_permanently_delete_validator = TeamFolderPermanentlyDeleteType_validator EventType._team_folder_rename_validator = TeamFolderRenameType_validator -EventType._team_folder_space_limits_change_caps_type_validator = TeamFolderSpaceLimitsChangeCapsTypeType_validator -EventType._team_folder_space_limits_change_limit_validator = TeamFolderSpaceLimitsChangeLimitType_validator -EventType._team_folder_space_limits_change_notification_target_validator = TeamFolderSpaceLimitsChangeNotificationTargetType_validator -EventType._team_selective_sync_settings_changed_validator = TeamSelectiveSyncSettingsChangedType_validator +EventType._team_folder_space_limits_change_caps_type_validator = ( + TeamFolderSpaceLimitsChangeCapsTypeType_validator +) +EventType._team_folder_space_limits_change_limit_validator = ( + TeamFolderSpaceLimitsChangeLimitType_validator +) +EventType._team_folder_space_limits_change_notification_target_validator = ( + TeamFolderSpaceLimitsChangeNotificationTargetType_validator +) +EventType._team_selective_sync_settings_changed_validator = ( + TeamSelectiveSyncSettingsChangedType_validator +) EventType._account_capture_change_policy_validator = AccountCaptureChangePolicyType_validator EventType._admin_email_reminders_changed_validator = AdminEmailRemindersChangedType_validator -EventType._ai_third_party_sharing_dropbox_base_policy_changed_validator = AiThirdPartySharingDropboxBasePolicyChangedType_validator +EventType._ai_third_party_sharing_dropbox_base_policy_changed_validator = ( + AiThirdPartySharingDropboxBasePolicyChangedType_validator +) EventType._allow_download_disabled_validator = AllowDownloadDisabledType_validator EventType._allow_download_enabled_validator = AllowDownloadEnabledType_validator EventType._apple_login_change_policy_validator = AppleLoginChangePolicyType_validator EventType._app_permissions_changed_validator = AppPermissionsChangedType_validator EventType._camera_uploads_policy_changed_validator = CameraUploadsPolicyChangedType_validator EventType._capture_team_space_policy_changed_validator = CaptureTeamSpacePolicyChangedType_validator -EventType._capture_transcript_policy_changed_validator = CaptureTranscriptPolicyChangedType_validator +EventType._capture_transcript_policy_changed_validator = ( + CaptureTranscriptPolicyChangedType_validator +) EventType._classification_change_policy_validator = ClassificationChangePolicyType_validator EventType._computer_backup_policy_changed_validator = ComputerBackupPolicyChangedType_validator -EventType._content_administration_policy_changed_validator = ContentAdministrationPolicyChangedType_validator -EventType._content_deletion_protection_change_policy_validator = ContentDeletionProtectionChangePolicyType_validator -EventType._dash_external_sharing_policy_changed_validator = DashExternalSharingPolicyChangedType_validator -EventType._data_placement_restriction_change_policy_validator = DataPlacementRestrictionChangePolicyType_validator -EventType._data_placement_restriction_satisfy_policy_validator = DataPlacementRestrictionSatisfyPolicyType_validator +EventType._content_administration_policy_changed_validator = ( + ContentAdministrationPolicyChangedType_validator +) +EventType._content_deletion_protection_change_policy_validator = ( + ContentDeletionProtectionChangePolicyType_validator +) +EventType._dash_external_sharing_policy_changed_validator = ( + DashExternalSharingPolicyChangedType_validator +) +EventType._data_placement_restriction_change_policy_validator = ( + DataPlacementRestrictionChangePolicyType_validator +) +EventType._data_placement_restriction_satisfy_policy_validator = ( + DataPlacementRestrictionSatisfyPolicyType_validator +) EventType._device_approvals_add_exception_validator = DeviceApprovalsAddExceptionType_validator -EventType._device_approvals_change_desktop_policy_validator = DeviceApprovalsChangeDesktopPolicyType_validator -EventType._device_approvals_change_mobile_policy_validator = DeviceApprovalsChangeMobilePolicyType_validator -EventType._device_approvals_change_overage_action_validator = DeviceApprovalsChangeOverageActionType_validator -EventType._device_approvals_change_unlink_action_validator = DeviceApprovalsChangeUnlinkActionType_validator -EventType._device_approvals_remove_exception_validator = DeviceApprovalsRemoveExceptionType_validator -EventType._directory_restrictions_add_members_validator = DirectoryRestrictionsAddMembersType_validator -EventType._directory_restrictions_remove_members_validator = DirectoryRestrictionsRemoveMembersType_validator +EventType._device_approvals_change_desktop_policy_validator = ( + DeviceApprovalsChangeDesktopPolicyType_validator +) +EventType._device_approvals_change_mobile_policy_validator = ( + DeviceApprovalsChangeMobilePolicyType_validator +) +EventType._device_approvals_change_overage_action_validator = ( + DeviceApprovalsChangeOverageActionType_validator +) +EventType._device_approvals_change_unlink_action_validator = ( + DeviceApprovalsChangeUnlinkActionType_validator +) +EventType._device_approvals_remove_exception_validator = ( + DeviceApprovalsRemoveExceptionType_validator +) +EventType._directory_restrictions_add_members_validator = ( + DirectoryRestrictionsAddMembersType_validator +) +EventType._directory_restrictions_remove_members_validator = ( + DirectoryRestrictionsRemoveMembersType_validator +) EventType._dropbox_passwords_policy_changed_validator = DropboxPasswordsPolicyChangedType_validator EventType._email_ingest_policy_changed_validator = EmailIngestPolicyChangedType_validator EventType._emm_add_exception_validator = EmmAddExceptionType_validator EventType._emm_change_policy_validator = EmmChangePolicyType_validator EventType._emm_remove_exception_validator = EmmRemoveExceptionType_validator -EventType._extended_version_history_change_policy_validator = ExtendedVersionHistoryChangePolicyType_validator -EventType._external_drive_backup_policy_changed_validator = ExternalDriveBackupPolicyChangedType_validator +EventType._extended_version_history_change_policy_validator = ( + ExtendedVersionHistoryChangePolicyType_validator +) +EventType._external_drive_backup_policy_changed_validator = ( + ExternalDriveBackupPolicyChangedType_validator +) EventType._file_comments_change_policy_validator = FileCommentsChangePolicyType_validator EventType._file_locking_policy_changed_validator = FileLockingPolicyChangedType_validator -EventType._file_provider_migration_policy_changed_validator = FileProviderMigrationPolicyChangedType_validator +EventType._file_provider_migration_policy_changed_validator = ( + FileProviderMigrationPolicyChangedType_validator +) EventType._file_requests_change_policy_validator = FileRequestsChangePolicyType_validator EventType._file_requests_emails_enabled_validator = FileRequestsEmailsEnabledType_validator -EventType._file_requests_emails_restricted_to_team_only_validator = FileRequestsEmailsRestrictedToTeamOnlyType_validator +EventType._file_requests_emails_restricted_to_team_only_validator = ( + FileRequestsEmailsRestrictedToTeamOnlyType_validator +) EventType._file_transfers_policy_changed_validator = FileTransfersPolicyChangedType_validator -EventType._flexible_file_names_policy_changed_validator = FlexibleFileNamesPolicyChangedType_validator -EventType._folder_link_restriction_policy_changed_validator = FolderLinkRestrictionPolicyChangedType_validator +EventType._flexible_file_names_policy_changed_validator = ( + FlexibleFileNamesPolicyChangedType_validator +) +EventType._folder_link_restriction_policy_changed_validator = ( + FolderLinkRestrictionPolicyChangedType_validator +) EventType._google_sso_change_policy_validator = GoogleSsoChangePolicyType_validator -EventType._group_user_management_change_policy_validator = GroupUserManagementChangePolicyType_validator +EventType._group_user_management_change_policy_validator = ( + GroupUserManagementChangePolicyType_validator +) EventType._integration_policy_changed_validator = IntegrationPolicyChangedType_validator -EventType._invite_acceptance_email_policy_changed_validator = InviteAcceptanceEmailPolicyChangedType_validator -EventType._media_hub_adding_people_policy_changed_validator = MediaHubAddingPeoplePolicyChangedType_validator +EventType._invite_acceptance_email_policy_changed_validator = ( + InviteAcceptanceEmailPolicyChangedType_validator +) +EventType._media_hub_adding_people_policy_changed_validator = ( + MediaHubAddingPeoplePolicyChangedType_validator +) EventType._media_hub_download_policy_changed_validator = MediaHubDownloadPolicyChangedType_validator -EventType._media_hub_link_sharing_policy_changed_validator = MediaHubLinkSharingPolicyChangedType_validator +EventType._media_hub_link_sharing_policy_changed_validator = ( + MediaHubLinkSharingPolicyChangedType_validator +) EventType._member_requests_change_policy_validator = MemberRequestsChangePolicyType_validator EventType._member_send_invite_policy_changed_validator = MemberSendInvitePolicyChangedType_validator EventType._member_space_limits_add_exception_validator = MemberSpaceLimitsAddExceptionType_validator -EventType._member_space_limits_change_caps_type_policy_validator = MemberSpaceLimitsChangeCapsTypePolicyType_validator +EventType._member_space_limits_change_caps_type_policy_validator = ( + MemberSpaceLimitsChangeCapsTypePolicyType_validator +) EventType._member_space_limits_change_policy_validator = MemberSpaceLimitsChangePolicyType_validator -EventType._member_space_limits_remove_exception_validator = MemberSpaceLimitsRemoveExceptionType_validator +EventType._member_space_limits_remove_exception_validator = ( + MemberSpaceLimitsRemoveExceptionType_validator +) EventType._member_suggestions_change_policy_validator = MemberSuggestionsChangePolicyType_validator EventType._microsoft_login_change_policy_validator = MicrosoftLoginChangePolicyType_validator -EventType._microsoft_office_addin_change_policy_validator = MicrosoftOfficeAddinChangePolicyType_validator -EventType._multi_team_identity_policy_changed_validator = MultiTeamIdentityPolicyChangedType_validator +EventType._microsoft_office_addin_change_policy_validator = ( + MicrosoftOfficeAddinChangePolicyType_validator +) +EventType._multi_team_identity_policy_changed_validator = ( + MultiTeamIdentityPolicyChangedType_validator +) EventType._network_control_change_policy_validator = NetworkControlChangePolicyType_validator EventType._paper_change_deployment_policy_validator = PaperChangeDeploymentPolicyType_validator EventType._paper_change_member_link_policy_validator = PaperChangeMemberLinkPolicyType_validator EventType._paper_change_member_policy_validator = PaperChangeMemberPolicyType_validator EventType._paper_change_policy_validator = PaperChangePolicyType_validator -EventType._paper_default_folder_policy_changed_validator = PaperDefaultFolderPolicyChangedType_validator +EventType._paper_default_folder_policy_changed_validator = ( + PaperDefaultFolderPolicyChangedType_validator +) EventType._paper_desktop_policy_changed_validator = PaperDesktopPolicyChangedType_validator -EventType._paper_enabled_users_group_addition_validator = PaperEnabledUsersGroupAdditionType_validator +EventType._paper_enabled_users_group_addition_validator = ( + PaperEnabledUsersGroupAdditionType_validator +) EventType._paper_enabled_users_group_removal_validator = PaperEnabledUsersGroupRemovalType_validator EventType._passkey_login_policy_changed_validator = PasskeyLoginPolicyChangedType_validator -EventType._password_strength_requirements_change_policy_validator = PasswordStrengthRequirementsChangePolicyType_validator +EventType._password_strength_requirements_change_policy_validator = ( + PasswordStrengthRequirementsChangePolicyType_validator +) EventType._permanent_delete_change_policy_validator = PermanentDeleteChangePolicyType_validator EventType._previews_ai_policy_changed_validator = PreviewsAiPolicyChangedType_validator -EventType._replay_adding_people_policy_changed_validator = ReplayAddingPeoplePolicyChangedType_validator +EventType._replay_adding_people_policy_changed_validator = ( + ReplayAddingPeoplePolicyChangedType_validator +) EventType._replay_sharing_policy_changed_validator = ReplaySharingPolicyChangedType_validator EventType._reseller_support_change_policy_validator = ResellerSupportChangePolicyType_validator EventType._rewind_policy_changed_validator = RewindPolicyChangedType_validator EventType._send_and_track_policy_changed_validator = SendAndTrackPolicyChangedType_validator -EventType._send_external_sharing_policy_changed_validator = SendExternalSharingPolicyChangedType_validator +EventType._send_external_sharing_policy_changed_validator = ( + SendExternalSharingPolicyChangedType_validator +) EventType._send_for_signature_policy_changed_validator = SendForSignaturePolicyChangedType_validator -EventType._shared_link_default_permissions_policy_changed_validator = SharedLinkDefaultPermissionsPolicyChangedType_validator +EventType._shared_link_default_permissions_policy_changed_validator = ( + SharedLinkDefaultPermissionsPolicyChangedType_validator +) EventType._sharing_change_folder_join_policy_validator = SharingChangeFolderJoinPolicyType_validator -EventType._sharing_change_link_allow_change_expiration_policy_validator = SharingChangeLinkAllowChangeExpirationPolicyType_validator -EventType._sharing_change_link_default_expiration_policy_validator = SharingChangeLinkDefaultExpirationPolicyType_validator -EventType._sharing_change_link_enforce_password_policy_validator = SharingChangeLinkEnforcePasswordPolicyType_validator +EventType._sharing_change_link_allow_change_expiration_policy_validator = ( + SharingChangeLinkAllowChangeExpirationPolicyType_validator +) +EventType._sharing_change_link_default_expiration_policy_validator = ( + SharingChangeLinkDefaultExpirationPolicyType_validator +) +EventType._sharing_change_link_enforce_password_policy_validator = ( + SharingChangeLinkEnforcePasswordPolicyType_validator +) EventType._sharing_change_link_policy_validator = SharingChangeLinkPolicyType_validator EventType._sharing_change_member_policy_validator = SharingChangeMemberPolicyType_validator EventType._showcase_change_download_policy_validator = ShowcaseChangeDownloadPolicyType_validator EventType._showcase_change_enabled_policy_validator = ShowcaseChangeEnabledPolicyType_validator -EventType._showcase_change_external_sharing_policy_validator = ShowcaseChangeExternalSharingPolicyType_validator -EventType._sign_external_sharing_policy_changed_validator = SignExternalSharingPolicyChangedType_validator -EventType._sign_template_creation_permission_changed_validator = SignTemplateCreationPermissionChangedType_validator +EventType._showcase_change_external_sharing_policy_validator = ( + ShowcaseChangeExternalSharingPolicyType_validator +) +EventType._sign_external_sharing_policy_changed_validator = ( + SignExternalSharingPolicyChangedType_validator +) +EventType._sign_template_creation_permission_changed_validator = ( + SignTemplateCreationPermissionChangedType_validator +) EventType._smarter_smart_sync_policy_changed_validator = SmarterSmartSyncPolicyChangedType_validator EventType._smart_sync_change_policy_validator = SmartSyncChangePolicyType_validator EventType._smart_sync_not_opt_out_validator = SmartSyncNotOptOutType_validator EventType._smart_sync_opt_out_validator = SmartSyncOptOutType_validator EventType._sso_change_policy_validator = SsoChangePolicyType_validator -EventType._stack_cross_team_access_policy_changed_validator = StackCrossTeamAccessPolicyChangedType_validator +EventType._stack_cross_team_access_policy_changed_validator = ( + StackCrossTeamAccessPolicyChangedType_validator +) EventType._team_branding_policy_changed_validator = TeamBrandingPolicyChangedType_validator EventType._team_extensions_policy_changed_validator = TeamExtensionsPolicyChangedType_validator -EventType._team_member_storage_request_policy_changed_validator = TeamMemberStorageRequestPolicyChangedType_validator -EventType._team_selective_sync_policy_changed_validator = TeamSelectiveSyncPolicyChangedType_validator -EventType._team_sharing_whitelist_subjects_changed_validator = TeamSharingWhitelistSubjectsChangedType_validator +EventType._team_member_storage_request_policy_changed_validator = ( + TeamMemberStorageRequestPolicyChangedType_validator +) +EventType._team_selective_sync_policy_changed_validator = ( + TeamSelectiveSyncPolicyChangedType_validator +) +EventType._team_sharing_whitelist_subjects_changed_validator = ( + TeamSharingWhitelistSubjectsChangedType_validator +) EventType._tfa_add_exception_validator = TfaAddExceptionType_validator EventType._tfa_change_policy_validator = TfaChangePolicyType_validator EventType._tfa_remove_exception_validator = TfaRemoveExceptionType_validator @@ -98485,17 +104132,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._two_account_change_policy_validator = TwoAccountChangePolicyType_validator EventType._viewer_info_policy_changed_validator = ViewerInfoPolicyChangedType_validator EventType._watermarking_policy_changed_validator = WatermarkingPolicyChangedType_validator -EventType._web_sessions_change_active_session_limit_validator = WebSessionsChangeActiveSessionLimitType_validator -EventType._web_sessions_change_fixed_length_policy_validator = WebSessionsChangeFixedLengthPolicyType_validator -EventType._web_sessions_change_idle_length_policy_validator = WebSessionsChangeIdleLengthPolicyType_validator -EventType._data_residency_migration_request_successful_validator = DataResidencyMigrationRequestSuccessfulType_validator -EventType._data_residency_migration_request_unsuccessful_validator = DataResidencyMigrationRequestUnsuccessfulType_validator +EventType._web_sessions_change_active_session_limit_validator = ( + WebSessionsChangeActiveSessionLimitType_validator +) +EventType._web_sessions_change_fixed_length_policy_validator = ( + WebSessionsChangeFixedLengthPolicyType_validator +) +EventType._web_sessions_change_idle_length_policy_validator = ( + WebSessionsChangeIdleLengthPolicyType_validator +) +EventType._data_residency_migration_request_successful_validator = ( + DataResidencyMigrationRequestSuccessfulType_validator +) +EventType._data_residency_migration_request_unsuccessful_validator = ( + DataResidencyMigrationRequestUnsuccessfulType_validator +) EventType._team_merge_from_validator = TeamMergeFromType_validator EventType._team_merge_to_validator = TeamMergeToType_validator EventType._team_profile_add_background_validator = TeamProfileAddBackgroundType_validator EventType._team_profile_add_logo_validator = TeamProfileAddLogoType_validator EventType._team_profile_change_background_validator = TeamProfileChangeBackgroundType_validator -EventType._team_profile_change_default_language_validator = TeamProfileChangeDefaultLanguageType_validator +EventType._team_profile_change_default_language_validator = ( + TeamProfileChangeDefaultLanguageType_validator +) EventType._team_profile_change_logo_validator = TeamProfileChangeLogoType_validator EventType._team_profile_change_name_validator = TeamProfileChangeNameType_validator EventType._team_profile_remove_background_validator = TeamProfileRemoveBackgroundType_validator @@ -98510,654 +104169,682 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventType._tfa_remove_security_key_validator = TfaRemoveSecurityKeyType_validator EventType._tfa_reset_validator = TfaResetType_validator EventType._changed_enterprise_admin_role_validator = ChangedEnterpriseAdminRoleType_validator -EventType._changed_enterprise_connected_team_status_validator = ChangedEnterpriseConnectedTeamStatusType_validator +EventType._changed_enterprise_connected_team_status_validator = ( + ChangedEnterpriseConnectedTeamStatusType_validator +) EventType._ended_enterprise_admin_session_validator = EndedEnterpriseAdminSessionType_validator -EventType._ended_enterprise_admin_session_deprecated_validator = EndedEnterpriseAdminSessionDeprecatedType_validator +EventType._ended_enterprise_admin_session_deprecated_validator = ( + EndedEnterpriseAdminSessionDeprecatedType_validator +) EventType._enterprise_settings_locking_validator = EnterpriseSettingsLockingType_validator EventType._guest_admin_change_status_validator = GuestAdminChangeStatusType_validator EventType._started_enterprise_admin_session_validator = StartedEnterpriseAdminSessionType_validator EventType._team_merge_request_accepted_validator = TeamMergeRequestAcceptedType_validator -EventType._team_merge_request_accepted_shown_to_primary_team_validator = TeamMergeRequestAcceptedShownToPrimaryTeamType_validator -EventType._team_merge_request_accepted_shown_to_secondary_team_validator = TeamMergeRequestAcceptedShownToSecondaryTeamType_validator +EventType._team_merge_request_accepted_shown_to_primary_team_validator = ( + TeamMergeRequestAcceptedShownToPrimaryTeamType_validator +) +EventType._team_merge_request_accepted_shown_to_secondary_team_validator = ( + TeamMergeRequestAcceptedShownToSecondaryTeamType_validator +) EventType._team_merge_request_auto_canceled_validator = TeamMergeRequestAutoCanceledType_validator EventType._team_merge_request_canceled_validator = TeamMergeRequestCanceledType_validator -EventType._team_merge_request_canceled_shown_to_primary_team_validator = TeamMergeRequestCanceledShownToPrimaryTeamType_validator -EventType._team_merge_request_canceled_shown_to_secondary_team_validator = TeamMergeRequestCanceledShownToSecondaryTeamType_validator +EventType._team_merge_request_canceled_shown_to_primary_team_validator = ( + TeamMergeRequestCanceledShownToPrimaryTeamType_validator +) +EventType._team_merge_request_canceled_shown_to_secondary_team_validator = ( + TeamMergeRequestCanceledShownToSecondaryTeamType_validator +) EventType._team_merge_request_expired_validator = TeamMergeRequestExpiredType_validator -EventType._team_merge_request_expired_shown_to_primary_team_validator = TeamMergeRequestExpiredShownToPrimaryTeamType_validator -EventType._team_merge_request_expired_shown_to_secondary_team_validator = TeamMergeRequestExpiredShownToSecondaryTeamType_validator -EventType._team_merge_request_rejected_shown_to_primary_team_validator = TeamMergeRequestRejectedShownToPrimaryTeamType_validator -EventType._team_merge_request_rejected_shown_to_secondary_team_validator = TeamMergeRequestRejectedShownToSecondaryTeamType_validator +EventType._team_merge_request_expired_shown_to_primary_team_validator = ( + TeamMergeRequestExpiredShownToPrimaryTeamType_validator +) +EventType._team_merge_request_expired_shown_to_secondary_team_validator = ( + TeamMergeRequestExpiredShownToSecondaryTeamType_validator +) +EventType._team_merge_request_rejected_shown_to_primary_team_validator = ( + TeamMergeRequestRejectedShownToPrimaryTeamType_validator +) +EventType._team_merge_request_rejected_shown_to_secondary_team_validator = ( + TeamMergeRequestRejectedShownToSecondaryTeamType_validator +) EventType._team_merge_request_reminder_validator = TeamMergeRequestReminderType_validator -EventType._team_merge_request_reminder_shown_to_primary_team_validator = TeamMergeRequestReminderShownToPrimaryTeamType_validator -EventType._team_merge_request_reminder_shown_to_secondary_team_validator = TeamMergeRequestReminderShownToSecondaryTeamType_validator +EventType._team_merge_request_reminder_shown_to_primary_team_validator = ( + TeamMergeRequestReminderShownToPrimaryTeamType_validator +) +EventType._team_merge_request_reminder_shown_to_secondary_team_validator = ( + TeamMergeRequestReminderShownToSecondaryTeamType_validator +) EventType._team_merge_request_revoked_validator = TeamMergeRequestRevokedType_validator -EventType._team_merge_request_sent_shown_to_primary_team_validator = TeamMergeRequestSentShownToPrimaryTeamType_validator -EventType._team_merge_request_sent_shown_to_secondary_team_validator = TeamMergeRequestSentShownToSecondaryTeamType_validator +EventType._team_merge_request_sent_shown_to_primary_team_validator = ( + TeamMergeRequestSentShownToPrimaryTeamType_validator +) +EventType._team_merge_request_sent_shown_to_secondary_team_validator = ( + TeamMergeRequestSentShownToSecondaryTeamType_validator +) EventType._other_validator = bv.Void() EventType._tagmap = { - 'admin_alerting_alert_state_changed': EventType._admin_alerting_alert_state_changed_validator, - 'admin_alerting_changed_alert_config': EventType._admin_alerting_changed_alert_config_validator, - 'admin_alerting_triggered_alert': EventType._admin_alerting_triggered_alert_validator, - 'ransomware_restore_process_completed': EventType._ransomware_restore_process_completed_validator, - 'ransomware_restore_process_started': EventType._ransomware_restore_process_started_validator, - 'app_blocked_by_permissions': EventType._app_blocked_by_permissions_validator, - 'app_link_team': EventType._app_link_team_validator, - 'app_link_user': EventType._app_link_user_validator, - 'app_unlink_team': EventType._app_unlink_team_validator, - 'app_unlink_user': EventType._app_unlink_user_validator, - 'integration_connected': EventType._integration_connected_validator, - 'integration_disconnected': EventType._integration_disconnected_validator, - 'file_add_comment': EventType._file_add_comment_validator, - 'file_change_comment_subscription': EventType._file_change_comment_subscription_validator, - 'file_delete_comment': EventType._file_delete_comment_validator, - 'file_edit_comment': EventType._file_edit_comment_validator, - 'file_like_comment': EventType._file_like_comment_validator, - 'file_resolve_comment': EventType._file_resolve_comment_validator, - 'file_unlike_comment': EventType._file_unlike_comment_validator, - 'file_unresolve_comment': EventType._file_unresolve_comment_validator, - 'dash_added_comment_to_stack': EventType._dash_added_comment_to_stack_validator, - 'dash_added_connector': EventType._dash_added_connector_validator, - 'dash_added_link_to_stack': EventType._dash_added_link_to_stack_validator, - 'dash_added_team_email_domain_allowlist': EventType._dash_added_team_email_domain_allowlist_validator, - 'dash_admin_added_org_wide_connector': EventType._dash_admin_added_org_wide_connector_validator, - 'dash_admin_disabled_connector': EventType._dash_admin_disabled_connector_validator, - 'dash_admin_enabled_connector': EventType._dash_admin_enabled_connector_validator, - 'dash_admin_removed_org_wide_connector': EventType._dash_admin_removed_org_wide_connector_validator, - 'dash_archived_stack': EventType._dash_archived_stack_validator, - 'dash_changed_audience_of_shared_link_to_stack': EventType._dash_changed_audience_of_shared_link_to_stack_validator, - 'dash_cloned_stack': EventType._dash_cloned_stack_validator, - 'dash_connector_tools_call': EventType._dash_connector_tools_call_validator, - 'dash_created_stack': EventType._dash_created_stack_validator, - 'dash_deleted_comment_from_stack': EventType._dash_deleted_comment_from_stack_validator, - 'dash_deleted_stack': EventType._dash_deleted_stack_validator, - 'dash_edited_comment_in_stack': EventType._dash_edited_comment_in_stack_validator, - 'dash_external_user_opened_stack': EventType._dash_external_user_opened_stack_validator, - 'dash_first_launched_desktop': EventType._dash_first_launched_desktop_validator, - 'dash_first_launched_extension': EventType._dash_first_launched_extension_validator, - 'dash_first_launched_web_start_page': EventType._dash_first_launched_web_start_page_validator, - 'dash_opened_shared_link_to_stack': EventType._dash_opened_shared_link_to_stack_validator, - 'dash_opened_stack': EventType._dash_opened_stack_validator, - 'dash_preview_opt_out_status_changed': EventType._dash_preview_opt_out_status_changed_validator, - 'dash_removed_connector': EventType._dash_removed_connector_validator, - 'dash_removed_link_from_stack': EventType._dash_removed_link_from_stack_validator, - 'dash_removed_shared_link_to_stack': EventType._dash_removed_shared_link_to_stack_validator, - 'dash_removed_team_email_domain_allowlist': EventType._dash_removed_team_email_domain_allowlist_validator, - 'dash_renamed_stack': EventType._dash_renamed_stack_validator, - 'dash_shared_link_to_stack': EventType._dash_shared_link_to_stack_validator, - 'dash_unarchived_stack': EventType._dash_unarchived_stack_validator, - 'dash_viewed_company_stack': EventType._dash_viewed_company_stack_validator, - 'dash_viewed_external_ai_activity_report': EventType._dash_viewed_external_ai_activity_report_validator, - 'governance_policy_add_folders': EventType._governance_policy_add_folders_validator, - 'governance_policy_add_folder_failed': EventType._governance_policy_add_folder_failed_validator, - 'governance_policy_content_disposed': EventType._governance_policy_content_disposed_validator, - 'governance_policy_create': EventType._governance_policy_create_validator, - 'governance_policy_delete': EventType._governance_policy_delete_validator, - 'governance_policy_edit_details': EventType._governance_policy_edit_details_validator, - 'governance_policy_edit_duration': EventType._governance_policy_edit_duration_validator, - 'governance_policy_export_created': EventType._governance_policy_export_created_validator, - 'governance_policy_export_removed': EventType._governance_policy_export_removed_validator, - 'governance_policy_remove_folders': EventType._governance_policy_remove_folders_validator, - 'governance_policy_report_created': EventType._governance_policy_report_created_validator, - 'governance_policy_zip_part_downloaded': EventType._governance_policy_zip_part_downloaded_validator, - 'legal_holds_activate_a_hold': EventType._legal_holds_activate_a_hold_validator, - 'legal_holds_add_members': EventType._legal_holds_add_members_validator, - 'legal_holds_change_hold_details': EventType._legal_holds_change_hold_details_validator, - 'legal_holds_change_hold_name': EventType._legal_holds_change_hold_name_validator, - 'legal_holds_export_a_hold': EventType._legal_holds_export_a_hold_validator, - 'legal_holds_export_cancelled': EventType._legal_holds_export_cancelled_validator, - 'legal_holds_export_downloaded': EventType._legal_holds_export_downloaded_validator, - 'legal_holds_export_removed': EventType._legal_holds_export_removed_validator, - 'legal_holds_release_a_hold': EventType._legal_holds_release_a_hold_validator, - 'legal_holds_remove_members': EventType._legal_holds_remove_members_validator, - 'legal_holds_report_a_hold': EventType._legal_holds_report_a_hold_validator, - 'device_change_ip_desktop': EventType._device_change_ip_desktop_validator, - 'device_change_ip_mobile': EventType._device_change_ip_mobile_validator, - 'device_change_ip_web': EventType._device_change_ip_web_validator, - 'device_delete_on_unlink_fail': EventType._device_delete_on_unlink_fail_validator, - 'device_delete_on_unlink_success': EventType._device_delete_on_unlink_success_validator, - 'device_link_fail': EventType._device_link_fail_validator, - 'device_link_success': EventType._device_link_success_validator, - 'device_management_disabled': EventType._device_management_disabled_validator, - 'device_management_enabled': EventType._device_management_enabled_validator, - 'device_sync_backup_status_changed': EventType._device_sync_backup_status_changed_validator, - 'device_unlink': EventType._device_unlink_validator, - 'dropbox_passwords_exported': EventType._dropbox_passwords_exported_validator, - 'dropbox_passwords_new_device_enrolled': EventType._dropbox_passwords_new_device_enrolled_validator, - 'emm_refresh_auth_token': EventType._emm_refresh_auth_token_validator, - 'external_drive_backup_eligibility_status_checked': EventType._external_drive_backup_eligibility_status_checked_validator, - 'external_drive_backup_status_changed': EventType._external_drive_backup_status_changed_validator, - 'account_capture_change_availability': EventType._account_capture_change_availability_validator, - 'account_capture_migrate_account': EventType._account_capture_migrate_account_validator, - 'account_capture_notification_emails_sent': EventType._account_capture_notification_emails_sent_validator, - 'account_capture_relinquish_account': EventType._account_capture_relinquish_account_validator, - 'disabled_domain_invites': EventType._disabled_domain_invites_validator, - 'domain_invites_approve_request_to_join_team': EventType._domain_invites_approve_request_to_join_team_validator, - 'domain_invites_decline_request_to_join_team': EventType._domain_invites_decline_request_to_join_team_validator, - 'domain_invites_email_existing_users': EventType._domain_invites_email_existing_users_validator, - 'domain_invites_request_to_join_team': EventType._domain_invites_request_to_join_team_validator, - 'domain_invites_set_invite_new_user_pref_to_no': EventType._domain_invites_set_invite_new_user_pref_to_no_validator, - 'domain_invites_set_invite_new_user_pref_to_yes': EventType._domain_invites_set_invite_new_user_pref_to_yes_validator, - 'domain_verification_add_domain_fail': EventType._domain_verification_add_domain_fail_validator, - 'domain_verification_add_domain_success': EventType._domain_verification_add_domain_success_validator, - 'domain_verification_remove_domain': EventType._domain_verification_remove_domain_validator, - 'enabled_domain_invites': EventType._enabled_domain_invites_validator, - 'encrypted_folder_cancel_team_key_rotation': EventType._encrypted_folder_cancel_team_key_rotation_validator, - 'encrypted_folder_enroll_backup_key': EventType._encrypted_folder_enroll_backup_key_validator, - 'encrypted_folder_enroll_client': EventType._encrypted_folder_enroll_client_validator, - 'encrypted_folder_enroll_team': EventType._encrypted_folder_enroll_team_validator, - 'encrypted_folder_finish_team_unenrollment': EventType._encrypted_folder_finish_team_unenrollment_validator, - 'encrypted_folder_init_team_key_rotation': EventType._encrypted_folder_init_team_key_rotation_validator, - 'encrypted_folder_init_team_unenrollment': EventType._encrypted_folder_init_team_unenrollment_validator, - 'encrypted_folder_remove_backup_key': EventType._encrypted_folder_remove_backup_key_validator, - 'encrypted_folder_rotate_team_key': EventType._encrypted_folder_rotate_team_key_validator, - 'encrypted_folder_unenroll_client': EventType._encrypted_folder_unenroll_client_validator, - 'team_encryption_key_activate_key': EventType._team_encryption_key_activate_key_validator, - 'team_encryption_key_cancel_key_deletion': EventType._team_encryption_key_cancel_key_deletion_validator, - 'team_encryption_key_create_key': EventType._team_encryption_key_create_key_validator, - 'team_encryption_key_deactivate_key': EventType._team_encryption_key_deactivate_key_validator, - 'team_encryption_key_delete_key': EventType._team_encryption_key_delete_key_validator, - 'team_encryption_key_disable_key': EventType._team_encryption_key_disable_key_validator, - 'team_encryption_key_enable_key': EventType._team_encryption_key_enable_key_validator, - 'team_encryption_key_rotate_key': EventType._team_encryption_key_rotate_key_validator, - 'team_encryption_key_schedule_key_deletion': EventType._team_encryption_key_schedule_key_deletion_validator, - 'apply_naming_convention': EventType._apply_naming_convention_validator, - 'create_folder': EventType._create_folder_validator, - 'file_add': EventType._file_add_validator, - 'file_add_from_automation': EventType._file_add_from_automation_validator, - 'file_copy': EventType._file_copy_validator, - 'file_delete': EventType._file_delete_validator, - 'file_download': EventType._file_download_validator, - 'file_edit': EventType._file_edit_validator, - 'file_get_copy_reference': EventType._file_get_copy_reference_validator, - 'file_locking_lock_status_changed': EventType._file_locking_lock_status_changed_validator, - 'file_move': EventType._file_move_validator, - 'file_permanently_delete': EventType._file_permanently_delete_validator, - 'file_preview': EventType._file_preview_validator, - 'file_rename': EventType._file_rename_validator, - 'file_restore': EventType._file_restore_validator, - 'file_revert': EventType._file_revert_validator, - 'file_rollback_changes': EventType._file_rollback_changes_validator, - 'file_save_copy_reference': EventType._file_save_copy_reference_validator, - 'folder_overview_description_changed': EventType._folder_overview_description_changed_validator, - 'folder_overview_item_pinned': EventType._folder_overview_item_pinned_validator, - 'folder_overview_item_unpinned': EventType._folder_overview_item_unpinned_validator, - 'media_hub_file_downloaded': EventType._media_hub_file_downloaded_validator, - 'object_label_added': EventType._object_label_added_validator, - 'object_label_removed': EventType._object_label_removed_validator, - 'object_label_updated_value': EventType._object_label_updated_value_validator, - 'organize_folder_with_tidy': EventType._organize_folder_with_tidy_validator, - 'replay_file_delete': EventType._replay_file_delete_validator, - 'replay_file_downloaded': EventType._replay_file_downloaded_validator, - 'replay_team_project_created': EventType._replay_team_project_created_validator, - 'rewind_folder': EventType._rewind_folder_validator, - 'undo_naming_convention': EventType._undo_naming_convention_validator, - 'undo_organize_folder_with_tidy': EventType._undo_organize_folder_with_tidy_validator, - 'user_tags_added': EventType._user_tags_added_validator, - 'user_tags_removed': EventType._user_tags_removed_validator, - 'email_ingest_receive_file': EventType._email_ingest_receive_file_validator, - 'file_request_auto_close': EventType._file_request_auto_close_validator, - 'file_request_change': EventType._file_request_change_validator, - 'file_request_close': EventType._file_request_close_validator, - 'file_request_create': EventType._file_request_create_validator, - 'file_request_delete': EventType._file_request_delete_validator, - 'file_request_receive_file': EventType._file_request_receive_file_validator, - 'group_add_external_id': EventType._group_add_external_id_validator, - 'group_add_member': EventType._group_add_member_validator, - 'group_change_external_id': EventType._group_change_external_id_validator, - 'group_change_management_type': EventType._group_change_management_type_validator, - 'group_change_member_role': EventType._group_change_member_role_validator, - 'group_create': EventType._group_create_validator, - 'group_delete': EventType._group_delete_validator, - 'group_description_updated': EventType._group_description_updated_validator, - 'group_external_sharing_setting_override_changed': EventType._group_external_sharing_setting_override_changed_validator, - 'group_join_policy_updated': EventType._group_join_policy_updated_validator, - 'group_moved': EventType._group_moved_validator, - 'group_remove_external_id': EventType._group_remove_external_id_validator, - 'group_remove_member': EventType._group_remove_member_validator, - 'group_rename': EventType._group_rename_validator, - 'account_lock_or_unlocked': EventType._account_lock_or_unlocked_validator, - 'emm_error': EventType._emm_error_validator, - 'guest_admin_signed_in_via_trusted_teams': EventType._guest_admin_signed_in_via_trusted_teams_validator, - 'guest_admin_signed_out_via_trusted_teams': EventType._guest_admin_signed_out_via_trusted_teams_validator, - 'login_fail': EventType._login_fail_validator, - 'login_success': EventType._login_success_validator, - 'logout': EventType._logout_validator, - 'reseller_support_session_end': EventType._reseller_support_session_end_validator, - 'reseller_support_session_start': EventType._reseller_support_session_start_validator, - 'sign_in_as_session_end': EventType._sign_in_as_session_end_validator, - 'sign_in_as_session_start': EventType._sign_in_as_session_start_validator, - 'sso_error': EventType._sso_error_validator, - 'addon_assigned': EventType._addon_assigned_validator, - 'addon_removed': EventType._addon_removed_validator, - 'backup_admin_invitation_sent': EventType._backup_admin_invitation_sent_validator, - 'backup_invitation_opened': EventType._backup_invitation_opened_validator, - 'create_team_invite_link': EventType._create_team_invite_link_validator, - 'delete_team_invite_link': EventType._delete_team_invite_link_validator, - 'member_add_external_id': EventType._member_add_external_id_validator, - 'member_add_name': EventType._member_add_name_validator, - 'member_change_admin_role': EventType._member_change_admin_role_validator, - 'member_change_email': EventType._member_change_email_validator, - 'member_change_external_id': EventType._member_change_external_id_validator, - 'member_change_membership_type': EventType._member_change_membership_type_validator, - 'member_change_name': EventType._member_change_name_validator, - 'member_change_reseller_role': EventType._member_change_reseller_role_validator, - 'member_change_status': EventType._member_change_status_validator, - 'member_delete_manual_contacts': EventType._member_delete_manual_contacts_validator, - 'member_delete_profile_photo': EventType._member_delete_profile_photo_validator, - 'member_permanently_delete_account_contents': EventType._member_permanently_delete_account_contents_validator, - 'member_remove_external_id': EventType._member_remove_external_id_validator, - 'member_set_profile_photo': EventType._member_set_profile_photo_validator, - 'member_space_limits_add_custom_quota': EventType._member_space_limits_add_custom_quota_validator, - 'member_space_limits_change_custom_quota': EventType._member_space_limits_change_custom_quota_validator, - 'member_space_limits_change_status': EventType._member_space_limits_change_status_validator, - 'member_space_limits_remove_custom_quota': EventType._member_space_limits_remove_custom_quota_validator, - 'member_suggest': EventType._member_suggest_validator, - 'member_transfer_account_contents': EventType._member_transfer_account_contents_validator, - 'pending_secondary_email_added': EventType._pending_secondary_email_added_validator, - 'product_assigned_to_member': EventType._product_assigned_to_member_validator, - 'product_removed_from_member': EventType._product_removed_from_member_validator, - 'secondary_email_deleted': EventType._secondary_email_deleted_validator, - 'secondary_email_verified': EventType._secondary_email_verified_validator, - 'secondary_mails_policy_changed': EventType._secondary_mails_policy_changed_validator, - 'binder_add_page': EventType._binder_add_page_validator, - 'binder_add_section': EventType._binder_add_section_validator, - 'binder_remove_page': EventType._binder_remove_page_validator, - 'binder_remove_section': EventType._binder_remove_section_validator, - 'binder_rename_page': EventType._binder_rename_page_validator, - 'binder_rename_section': EventType._binder_rename_section_validator, - 'binder_reorder_page': EventType._binder_reorder_page_validator, - 'binder_reorder_section': EventType._binder_reorder_section_validator, - 'paper_content_add_member': EventType._paper_content_add_member_validator, - 'paper_content_add_to_folder': EventType._paper_content_add_to_folder_validator, - 'paper_content_archive': EventType._paper_content_archive_validator, - 'paper_content_create': EventType._paper_content_create_validator, - 'paper_content_permanently_delete': EventType._paper_content_permanently_delete_validator, - 'paper_content_remove_from_folder': EventType._paper_content_remove_from_folder_validator, - 'paper_content_remove_member': EventType._paper_content_remove_member_validator, - 'paper_content_rename': EventType._paper_content_rename_validator, - 'paper_content_restore': EventType._paper_content_restore_validator, - 'paper_doc_add_comment': EventType._paper_doc_add_comment_validator, - 'paper_doc_change_member_role': EventType._paper_doc_change_member_role_validator, - 'paper_doc_change_sharing_policy': EventType._paper_doc_change_sharing_policy_validator, - 'paper_doc_change_subscription': EventType._paper_doc_change_subscription_validator, - 'paper_doc_deleted': EventType._paper_doc_deleted_validator, - 'paper_doc_delete_comment': EventType._paper_doc_delete_comment_validator, - 'paper_doc_download': EventType._paper_doc_download_validator, - 'paper_doc_edit': EventType._paper_doc_edit_validator, - 'paper_doc_edit_comment': EventType._paper_doc_edit_comment_validator, - 'paper_doc_followed': EventType._paper_doc_followed_validator, - 'paper_doc_mention': EventType._paper_doc_mention_validator, - 'paper_doc_ownership_changed': EventType._paper_doc_ownership_changed_validator, - 'paper_doc_request_access': EventType._paper_doc_request_access_validator, - 'paper_doc_resolve_comment': EventType._paper_doc_resolve_comment_validator, - 'paper_doc_revert': EventType._paper_doc_revert_validator, - 'paper_doc_slack_share': EventType._paper_doc_slack_share_validator, - 'paper_doc_team_invite': EventType._paper_doc_team_invite_validator, - 'paper_doc_trashed': EventType._paper_doc_trashed_validator, - 'paper_doc_unresolve_comment': EventType._paper_doc_unresolve_comment_validator, - 'paper_doc_untrashed': EventType._paper_doc_untrashed_validator, - 'paper_doc_view': EventType._paper_doc_view_validator, - 'paper_external_view_allow': EventType._paper_external_view_allow_validator, - 'paper_external_view_default_team': EventType._paper_external_view_default_team_validator, - 'paper_external_view_forbid': EventType._paper_external_view_forbid_validator, - 'paper_folder_change_subscription': EventType._paper_folder_change_subscription_validator, - 'paper_folder_deleted': EventType._paper_folder_deleted_validator, - 'paper_folder_followed': EventType._paper_folder_followed_validator, - 'paper_folder_team_invite': EventType._paper_folder_team_invite_validator, - 'paper_published_link_change_permission': EventType._paper_published_link_change_permission_validator, - 'paper_published_link_create': EventType._paper_published_link_create_validator, - 'paper_published_link_disabled': EventType._paper_published_link_disabled_validator, - 'paper_published_link_view': EventType._paper_published_link_view_validator, - 'password_change': EventType._password_change_validator, - 'password_reset': EventType._password_reset_validator, - 'password_reset_all': EventType._password_reset_all_validator, - 'protect_internal_domains_changed': EventType._protect_internal_domains_changed_validator, - 'classification_create_report': EventType._classification_create_report_validator, - 'classification_create_report_fail': EventType._classification_create_report_fail_validator, - 'emm_create_exceptions_report': EventType._emm_create_exceptions_report_validator, - 'emm_create_usage_report': EventType._emm_create_usage_report_validator, - 'export_members_report': EventType._export_members_report_validator, - 'export_members_report_fail': EventType._export_members_report_fail_validator, - 'external_sharing_create_report': EventType._external_sharing_create_report_validator, - 'external_sharing_report_failed': EventType._external_sharing_report_failed_validator, - 'member_access_details_create_report': EventType._member_access_details_create_report_validator, - 'member_access_details_create_report_failed': EventType._member_access_details_create_report_failed_validator, - 'no_expiration_link_gen_create_report': EventType._no_expiration_link_gen_create_report_validator, - 'no_expiration_link_gen_report_failed': EventType._no_expiration_link_gen_report_failed_validator, - 'no_password_link_gen_create_report': EventType._no_password_link_gen_create_report_validator, - 'no_password_link_gen_report_failed': EventType._no_password_link_gen_report_failed_validator, - 'no_password_link_view_create_report': EventType._no_password_link_view_create_report_validator, - 'no_password_link_view_report_failed': EventType._no_password_link_view_report_failed_validator, - 'outdated_link_view_create_report': EventType._outdated_link_view_create_report_validator, - 'outdated_link_view_report_failed': EventType._outdated_link_view_report_failed_validator, - 'paper_admin_export_start': EventType._paper_admin_export_start_validator, - 'ransomware_alert_create_report': EventType._ransomware_alert_create_report_validator, - 'ransomware_alert_create_report_failed': EventType._ransomware_alert_create_report_failed_validator, - 'shared_folders_create_report': EventType._shared_folders_create_report_validator, - 'shared_folders_create_report_failed': EventType._shared_folders_create_report_failed_validator, - 'smart_sync_create_admin_privilege_report': EventType._smart_sync_create_admin_privilege_report_validator, - 'team_activity_create_report': EventType._team_activity_create_report_validator, - 'team_activity_create_report_fail': EventType._team_activity_create_report_fail_validator, - 'team_folders_create_report': EventType._team_folders_create_report_validator, - 'team_folders_create_report_failed': EventType._team_folders_create_report_failed_validator, - 'team_storage_create_report': EventType._team_storage_create_report_validator, - 'team_storage_create_report_failed': EventType._team_storage_create_report_failed_validator, - 'collection_share': EventType._collection_share_validator, - 'file_transfers_file_add': EventType._file_transfers_file_add_validator, - 'file_transfers_transfer_delete': EventType._file_transfers_transfer_delete_validator, - 'file_transfers_transfer_download': EventType._file_transfers_transfer_download_validator, - 'file_transfers_transfer_send': EventType._file_transfers_transfer_send_validator, - 'file_transfers_transfer_view': EventType._file_transfers_transfer_view_validator, - 'media_hub_project_team_add': EventType._media_hub_project_team_add_validator, - 'media_hub_project_team_delete': EventType._media_hub_project_team_delete_validator, - 'media_hub_project_team_role_changed': EventType._media_hub_project_team_role_changed_validator, - 'media_hub_shared_link_audience_changed': EventType._media_hub_shared_link_audience_changed_validator, - 'media_hub_shared_link_created': EventType._media_hub_shared_link_created_validator, - 'media_hub_shared_link_download_setting_changed': EventType._media_hub_shared_link_download_setting_changed_validator, - 'media_hub_shared_link_revoked': EventType._media_hub_shared_link_revoked_validator, - 'note_acl_invite_only': EventType._note_acl_invite_only_validator, - 'note_acl_link': EventType._note_acl_link_validator, - 'note_acl_team_link': EventType._note_acl_team_link_validator, - 'note_shared': EventType._note_shared_validator, - 'note_share_receive': EventType._note_share_receive_validator, - 'open_note_shared': EventType._open_note_shared_validator, - 'replay_file_shared_link_created': EventType._replay_file_shared_link_created_validator, - 'replay_file_shared_link_modified': EventType._replay_file_shared_link_modified_validator, - 'replay_project_team_add': EventType._replay_project_team_add_validator, - 'replay_project_team_delete': EventType._replay_project_team_delete_validator, - 'send_and_track_file_added': EventType._send_and_track_file_added_validator, - 'send_and_track_file_renamed': EventType._send_and_track_file_renamed_validator, - 'send_and_track_file_updated': EventType._send_and_track_file_updated_validator, - 'send_and_track_link_created': EventType._send_and_track_link_created_validator, - 'send_and_track_link_deleted': EventType._send_and_track_link_deleted_validator, - 'send_and_track_link_updated': EventType._send_and_track_link_updated_validator, - 'send_and_track_link_viewed': EventType._send_and_track_link_viewed_validator, - 'send_and_track_removed_file_and_associated_links': EventType._send_and_track_removed_file_and_associated_links_validator, - 'sf_add_group': EventType._sf_add_group_validator, - 'sf_allow_non_members_to_view_shared_links': EventType._sf_allow_non_members_to_view_shared_links_validator, - 'sf_external_invite_warn': EventType._sf_external_invite_warn_validator, - 'sf_fb_invite': EventType._sf_fb_invite_validator, - 'sf_fb_invite_change_role': EventType._sf_fb_invite_change_role_validator, - 'sf_fb_uninvite': EventType._sf_fb_uninvite_validator, - 'sf_invite_group': EventType._sf_invite_group_validator, - 'sf_team_grant_access': EventType._sf_team_grant_access_validator, - 'sf_team_invite': EventType._sf_team_invite_validator, - 'sf_team_invite_change_role': EventType._sf_team_invite_change_role_validator, - 'sf_team_join': EventType._sf_team_join_validator, - 'sf_team_join_from_oob_link': EventType._sf_team_join_from_oob_link_validator, - 'sf_team_uninvite': EventType._sf_team_uninvite_validator, - 'shared_content_add_invitees': EventType._shared_content_add_invitees_validator, - 'shared_content_add_link_expiry': EventType._shared_content_add_link_expiry_validator, - 'shared_content_add_link_password': EventType._shared_content_add_link_password_validator, - 'shared_content_add_member': EventType._shared_content_add_member_validator, - 'shared_content_change_downloads_policy': EventType._shared_content_change_downloads_policy_validator, - 'shared_content_change_invitee_role': EventType._shared_content_change_invitee_role_validator, - 'shared_content_change_link_audience': EventType._shared_content_change_link_audience_validator, - 'shared_content_change_link_expiry': EventType._shared_content_change_link_expiry_validator, - 'shared_content_change_link_password': EventType._shared_content_change_link_password_validator, - 'shared_content_change_member_role': EventType._shared_content_change_member_role_validator, - 'shared_content_change_viewer_info_policy': EventType._shared_content_change_viewer_info_policy_validator, - 'shared_content_claim_invitation': EventType._shared_content_claim_invitation_validator, - 'shared_content_copy': EventType._shared_content_copy_validator, - 'shared_content_download': EventType._shared_content_download_validator, - 'shared_content_relinquish_membership': EventType._shared_content_relinquish_membership_validator, - 'shared_content_remove_invitees': EventType._shared_content_remove_invitees_validator, - 'shared_content_remove_link_expiry': EventType._shared_content_remove_link_expiry_validator, - 'shared_content_remove_link_password': EventType._shared_content_remove_link_password_validator, - 'shared_content_remove_member': EventType._shared_content_remove_member_validator, - 'shared_content_request_access': EventType._shared_content_request_access_validator, - 'shared_content_restore_invitees': EventType._shared_content_restore_invitees_validator, - 'shared_content_restore_member': EventType._shared_content_restore_member_validator, - 'shared_content_unshare': EventType._shared_content_unshare_validator, - 'shared_content_view': EventType._shared_content_view_validator, - 'shared_folder_change_link_policy': EventType._shared_folder_change_link_policy_validator, - 'shared_folder_change_members_inheritance_policy': EventType._shared_folder_change_members_inheritance_policy_validator, - 'shared_folder_change_members_management_policy': EventType._shared_folder_change_members_management_policy_validator, - 'shared_folder_change_members_policy': EventType._shared_folder_change_members_policy_validator, - 'shared_folder_create': EventType._shared_folder_create_validator, - 'shared_folder_decline_invitation': EventType._shared_folder_decline_invitation_validator, - 'shared_folder_mount': EventType._shared_folder_mount_validator, - 'shared_folder_nest': EventType._shared_folder_nest_validator, - 'shared_folder_transfer_ownership': EventType._shared_folder_transfer_ownership_validator, - 'shared_folder_unmount': EventType._shared_folder_unmount_validator, - 'shared_link_add_expiry': EventType._shared_link_add_expiry_validator, - 'shared_link_change_expiry': EventType._shared_link_change_expiry_validator, - 'shared_link_change_visibility': EventType._shared_link_change_visibility_validator, - 'shared_link_copy': EventType._shared_link_copy_validator, - 'shared_link_create': EventType._shared_link_create_validator, - 'shared_link_disable': EventType._shared_link_disable_validator, - 'shared_link_download': EventType._shared_link_download_validator, - 'shared_link_remove_expiry': EventType._shared_link_remove_expiry_validator, - 'shared_link_remove_visitor': EventType._shared_link_remove_visitor_validator, - 'shared_link_settings_add_expiration': EventType._shared_link_settings_add_expiration_validator, - 'shared_link_settings_add_password': EventType._shared_link_settings_add_password_validator, - 'shared_link_settings_allow_download_disabled': EventType._shared_link_settings_allow_download_disabled_validator, - 'shared_link_settings_allow_download_enabled': EventType._shared_link_settings_allow_download_enabled_validator, - 'shared_link_settings_change_audience': EventType._shared_link_settings_change_audience_validator, - 'shared_link_settings_change_expiration': EventType._shared_link_settings_change_expiration_validator, - 'shared_link_settings_change_password': EventType._shared_link_settings_change_password_validator, - 'shared_link_settings_remove_expiration': EventType._shared_link_settings_remove_expiration_validator, - 'shared_link_settings_remove_password': EventType._shared_link_settings_remove_password_validator, - 'shared_link_share': EventType._shared_link_share_validator, - 'shared_link_view': EventType._shared_link_view_validator, - 'shared_note_opened': EventType._shared_note_opened_validator, - 'shmodel_disable_downloads': EventType._shmodel_disable_downloads_validator, - 'shmodel_enable_downloads': EventType._shmodel_enable_downloads_validator, - 'shmodel_group_share': EventType._shmodel_group_share_validator, - 'showcase_access_granted': EventType._showcase_access_granted_validator, - 'showcase_add_member': EventType._showcase_add_member_validator, - 'showcase_archived': EventType._showcase_archived_validator, - 'showcase_created': EventType._showcase_created_validator, - 'showcase_delete_comment': EventType._showcase_delete_comment_validator, - 'showcase_edited': EventType._showcase_edited_validator, - 'showcase_edit_comment': EventType._showcase_edit_comment_validator, - 'showcase_file_added': EventType._showcase_file_added_validator, - 'showcase_file_download': EventType._showcase_file_download_validator, - 'showcase_file_removed': EventType._showcase_file_removed_validator, - 'showcase_file_view': EventType._showcase_file_view_validator, - 'showcase_permanently_deleted': EventType._showcase_permanently_deleted_validator, - 'showcase_post_comment': EventType._showcase_post_comment_validator, - 'showcase_remove_member': EventType._showcase_remove_member_validator, - 'showcase_renamed': EventType._showcase_renamed_validator, - 'showcase_request_access': EventType._showcase_request_access_validator, - 'showcase_resolve_comment': EventType._showcase_resolve_comment_validator, - 'showcase_restored': EventType._showcase_restored_validator, - 'showcase_trashed': EventType._showcase_trashed_validator, - 'showcase_trashed_deprecated': EventType._showcase_trashed_deprecated_validator, - 'showcase_unresolve_comment': EventType._showcase_unresolve_comment_validator, - 'showcase_untrashed': EventType._showcase_untrashed_validator, - 'showcase_untrashed_deprecated': EventType._showcase_untrashed_deprecated_validator, - 'showcase_view': EventType._showcase_view_validator, - 'sign_signature_request_canceled': EventType._sign_signature_request_canceled_validator, - 'sign_signature_request_completed': EventType._sign_signature_request_completed_validator, - 'sign_signature_request_declined': EventType._sign_signature_request_declined_validator, - 'sign_signature_request_opened': EventType._sign_signature_request_opened_validator, - 'sign_signature_request_reminder_sent': EventType._sign_signature_request_reminder_sent_validator, - 'sign_signature_request_sent': EventType._sign_signature_request_sent_validator, - 'sign_template_created': EventType._sign_template_created_validator, - 'sign_template_shared': EventType._sign_template_shared_validator, - 'risc_security_event': EventType._risc_security_event_validator, - 'sso_add_cert': EventType._sso_add_cert_validator, - 'sso_add_login_url': EventType._sso_add_login_url_validator, - 'sso_add_logout_url': EventType._sso_add_logout_url_validator, - 'sso_change_cert': EventType._sso_change_cert_validator, - 'sso_change_login_url': EventType._sso_change_login_url_validator, - 'sso_change_logout_url': EventType._sso_change_logout_url_validator, - 'sso_change_saml_identity_mode': EventType._sso_change_saml_identity_mode_validator, - 'sso_remove_cert': EventType._sso_remove_cert_validator, - 'sso_remove_login_url': EventType._sso_remove_login_url_validator, - 'sso_remove_logout_url': EventType._sso_remove_logout_url_validator, - 'team_folder_change_status': EventType._team_folder_change_status_validator, - 'team_folder_create': EventType._team_folder_create_validator, - 'team_folder_downgrade': EventType._team_folder_downgrade_validator, - 'team_folder_permanently_delete': EventType._team_folder_permanently_delete_validator, - 'team_folder_rename': EventType._team_folder_rename_validator, - 'team_folder_space_limits_change_caps_type': EventType._team_folder_space_limits_change_caps_type_validator, - 'team_folder_space_limits_change_limit': EventType._team_folder_space_limits_change_limit_validator, - 'team_folder_space_limits_change_notification_target': EventType._team_folder_space_limits_change_notification_target_validator, - 'team_selective_sync_settings_changed': EventType._team_selective_sync_settings_changed_validator, - 'account_capture_change_policy': EventType._account_capture_change_policy_validator, - 'admin_email_reminders_changed': EventType._admin_email_reminders_changed_validator, - 'ai_third_party_sharing_dropbox_base_policy_changed': EventType._ai_third_party_sharing_dropbox_base_policy_changed_validator, - 'allow_download_disabled': EventType._allow_download_disabled_validator, - 'allow_download_enabled': EventType._allow_download_enabled_validator, - 'apple_login_change_policy': EventType._apple_login_change_policy_validator, - 'app_permissions_changed': EventType._app_permissions_changed_validator, - 'camera_uploads_policy_changed': EventType._camera_uploads_policy_changed_validator, - 'capture_team_space_policy_changed': EventType._capture_team_space_policy_changed_validator, - 'capture_transcript_policy_changed': EventType._capture_transcript_policy_changed_validator, - 'classification_change_policy': EventType._classification_change_policy_validator, - 'computer_backup_policy_changed': EventType._computer_backup_policy_changed_validator, - 'content_administration_policy_changed': EventType._content_administration_policy_changed_validator, - 'content_deletion_protection_change_policy': EventType._content_deletion_protection_change_policy_validator, - 'dash_external_sharing_policy_changed': EventType._dash_external_sharing_policy_changed_validator, - 'data_placement_restriction_change_policy': EventType._data_placement_restriction_change_policy_validator, - 'data_placement_restriction_satisfy_policy': EventType._data_placement_restriction_satisfy_policy_validator, - 'device_approvals_add_exception': EventType._device_approvals_add_exception_validator, - 'device_approvals_change_desktop_policy': EventType._device_approvals_change_desktop_policy_validator, - 'device_approvals_change_mobile_policy': EventType._device_approvals_change_mobile_policy_validator, - 'device_approvals_change_overage_action': EventType._device_approvals_change_overage_action_validator, - 'device_approvals_change_unlink_action': EventType._device_approvals_change_unlink_action_validator, - 'device_approvals_remove_exception': EventType._device_approvals_remove_exception_validator, - 'directory_restrictions_add_members': EventType._directory_restrictions_add_members_validator, - 'directory_restrictions_remove_members': EventType._directory_restrictions_remove_members_validator, - 'dropbox_passwords_policy_changed': EventType._dropbox_passwords_policy_changed_validator, - 'email_ingest_policy_changed': EventType._email_ingest_policy_changed_validator, - 'emm_add_exception': EventType._emm_add_exception_validator, - 'emm_change_policy': EventType._emm_change_policy_validator, - 'emm_remove_exception': EventType._emm_remove_exception_validator, - 'extended_version_history_change_policy': EventType._extended_version_history_change_policy_validator, - 'external_drive_backup_policy_changed': EventType._external_drive_backup_policy_changed_validator, - 'file_comments_change_policy': EventType._file_comments_change_policy_validator, - 'file_locking_policy_changed': EventType._file_locking_policy_changed_validator, - 'file_provider_migration_policy_changed': EventType._file_provider_migration_policy_changed_validator, - 'file_requests_change_policy': EventType._file_requests_change_policy_validator, - 'file_requests_emails_enabled': EventType._file_requests_emails_enabled_validator, - 'file_requests_emails_restricted_to_team_only': EventType._file_requests_emails_restricted_to_team_only_validator, - 'file_transfers_policy_changed': EventType._file_transfers_policy_changed_validator, - 'flexible_file_names_policy_changed': EventType._flexible_file_names_policy_changed_validator, - 'folder_link_restriction_policy_changed': EventType._folder_link_restriction_policy_changed_validator, - 'google_sso_change_policy': EventType._google_sso_change_policy_validator, - 'group_user_management_change_policy': EventType._group_user_management_change_policy_validator, - 'integration_policy_changed': EventType._integration_policy_changed_validator, - 'invite_acceptance_email_policy_changed': EventType._invite_acceptance_email_policy_changed_validator, - 'media_hub_adding_people_policy_changed': EventType._media_hub_adding_people_policy_changed_validator, - 'media_hub_download_policy_changed': EventType._media_hub_download_policy_changed_validator, - 'media_hub_link_sharing_policy_changed': EventType._media_hub_link_sharing_policy_changed_validator, - 'member_requests_change_policy': EventType._member_requests_change_policy_validator, - 'member_send_invite_policy_changed': EventType._member_send_invite_policy_changed_validator, - 'member_space_limits_add_exception': EventType._member_space_limits_add_exception_validator, - 'member_space_limits_change_caps_type_policy': EventType._member_space_limits_change_caps_type_policy_validator, - 'member_space_limits_change_policy': EventType._member_space_limits_change_policy_validator, - 'member_space_limits_remove_exception': EventType._member_space_limits_remove_exception_validator, - 'member_suggestions_change_policy': EventType._member_suggestions_change_policy_validator, - 'microsoft_login_change_policy': EventType._microsoft_login_change_policy_validator, - 'microsoft_office_addin_change_policy': EventType._microsoft_office_addin_change_policy_validator, - 'multi_team_identity_policy_changed': EventType._multi_team_identity_policy_changed_validator, - 'network_control_change_policy': EventType._network_control_change_policy_validator, - 'paper_change_deployment_policy': EventType._paper_change_deployment_policy_validator, - 'paper_change_member_link_policy': EventType._paper_change_member_link_policy_validator, - 'paper_change_member_policy': EventType._paper_change_member_policy_validator, - 'paper_change_policy': EventType._paper_change_policy_validator, - 'paper_default_folder_policy_changed': EventType._paper_default_folder_policy_changed_validator, - 'paper_desktop_policy_changed': EventType._paper_desktop_policy_changed_validator, - 'paper_enabled_users_group_addition': EventType._paper_enabled_users_group_addition_validator, - 'paper_enabled_users_group_removal': EventType._paper_enabled_users_group_removal_validator, - 'passkey_login_policy_changed': EventType._passkey_login_policy_changed_validator, - 'password_strength_requirements_change_policy': EventType._password_strength_requirements_change_policy_validator, - 'permanent_delete_change_policy': EventType._permanent_delete_change_policy_validator, - 'previews_ai_policy_changed': EventType._previews_ai_policy_changed_validator, - 'replay_adding_people_policy_changed': EventType._replay_adding_people_policy_changed_validator, - 'replay_sharing_policy_changed': EventType._replay_sharing_policy_changed_validator, - 'reseller_support_change_policy': EventType._reseller_support_change_policy_validator, - 'rewind_policy_changed': EventType._rewind_policy_changed_validator, - 'send_and_track_policy_changed': EventType._send_and_track_policy_changed_validator, - 'send_external_sharing_policy_changed': EventType._send_external_sharing_policy_changed_validator, - 'send_for_signature_policy_changed': EventType._send_for_signature_policy_changed_validator, - 'shared_link_default_permissions_policy_changed': EventType._shared_link_default_permissions_policy_changed_validator, - 'sharing_change_folder_join_policy': EventType._sharing_change_folder_join_policy_validator, - 'sharing_change_link_allow_change_expiration_policy': EventType._sharing_change_link_allow_change_expiration_policy_validator, - 'sharing_change_link_default_expiration_policy': EventType._sharing_change_link_default_expiration_policy_validator, - 'sharing_change_link_enforce_password_policy': EventType._sharing_change_link_enforce_password_policy_validator, - 'sharing_change_link_policy': EventType._sharing_change_link_policy_validator, - 'sharing_change_member_policy': EventType._sharing_change_member_policy_validator, - 'showcase_change_download_policy': EventType._showcase_change_download_policy_validator, - 'showcase_change_enabled_policy': EventType._showcase_change_enabled_policy_validator, - 'showcase_change_external_sharing_policy': EventType._showcase_change_external_sharing_policy_validator, - 'sign_external_sharing_policy_changed': EventType._sign_external_sharing_policy_changed_validator, - 'sign_template_creation_permission_changed': EventType._sign_template_creation_permission_changed_validator, - 'smarter_smart_sync_policy_changed': EventType._smarter_smart_sync_policy_changed_validator, - 'smart_sync_change_policy': EventType._smart_sync_change_policy_validator, - 'smart_sync_not_opt_out': EventType._smart_sync_not_opt_out_validator, - 'smart_sync_opt_out': EventType._smart_sync_opt_out_validator, - 'sso_change_policy': EventType._sso_change_policy_validator, - 'stack_cross_team_access_policy_changed': EventType._stack_cross_team_access_policy_changed_validator, - 'team_branding_policy_changed': EventType._team_branding_policy_changed_validator, - 'team_extensions_policy_changed': EventType._team_extensions_policy_changed_validator, - 'team_member_storage_request_policy_changed': EventType._team_member_storage_request_policy_changed_validator, - 'team_selective_sync_policy_changed': EventType._team_selective_sync_policy_changed_validator, - 'team_sharing_whitelist_subjects_changed': EventType._team_sharing_whitelist_subjects_changed_validator, - 'tfa_add_exception': EventType._tfa_add_exception_validator, - 'tfa_change_policy': EventType._tfa_change_policy_validator, - 'tfa_remove_exception': EventType._tfa_remove_exception_validator, - 'top_level_content_policy_changed': EventType._top_level_content_policy_changed_validator, - 'two_account_change_policy': EventType._two_account_change_policy_validator, - 'viewer_info_policy_changed': EventType._viewer_info_policy_changed_validator, - 'watermarking_policy_changed': EventType._watermarking_policy_changed_validator, - 'web_sessions_change_active_session_limit': EventType._web_sessions_change_active_session_limit_validator, - 'web_sessions_change_fixed_length_policy': EventType._web_sessions_change_fixed_length_policy_validator, - 'web_sessions_change_idle_length_policy': EventType._web_sessions_change_idle_length_policy_validator, - 'data_residency_migration_request_successful': EventType._data_residency_migration_request_successful_validator, - 'data_residency_migration_request_unsuccessful': EventType._data_residency_migration_request_unsuccessful_validator, - 'team_merge_from': EventType._team_merge_from_validator, - 'team_merge_to': EventType._team_merge_to_validator, - 'team_profile_add_background': EventType._team_profile_add_background_validator, - 'team_profile_add_logo': EventType._team_profile_add_logo_validator, - 'team_profile_change_background': EventType._team_profile_change_background_validator, - 'team_profile_change_default_language': EventType._team_profile_change_default_language_validator, - 'team_profile_change_logo': EventType._team_profile_change_logo_validator, - 'team_profile_change_name': EventType._team_profile_change_name_validator, - 'team_profile_remove_background': EventType._team_profile_remove_background_validator, - 'team_profile_remove_logo': EventType._team_profile_remove_logo_validator, - 'passkey_add': EventType._passkey_add_validator, - 'passkey_remove': EventType._passkey_remove_validator, - 'tfa_add_backup_phone': EventType._tfa_add_backup_phone_validator, - 'tfa_add_security_key': EventType._tfa_add_security_key_validator, - 'tfa_change_backup_phone': EventType._tfa_change_backup_phone_validator, - 'tfa_change_status': EventType._tfa_change_status_validator, - 'tfa_remove_backup_phone': EventType._tfa_remove_backup_phone_validator, - 'tfa_remove_security_key': EventType._tfa_remove_security_key_validator, - 'tfa_reset': EventType._tfa_reset_validator, - 'changed_enterprise_admin_role': EventType._changed_enterprise_admin_role_validator, - 'changed_enterprise_connected_team_status': EventType._changed_enterprise_connected_team_status_validator, - 'ended_enterprise_admin_session': EventType._ended_enterprise_admin_session_validator, - 'ended_enterprise_admin_session_deprecated': EventType._ended_enterprise_admin_session_deprecated_validator, - 'enterprise_settings_locking': EventType._enterprise_settings_locking_validator, - 'guest_admin_change_status': EventType._guest_admin_change_status_validator, - 'started_enterprise_admin_session': EventType._started_enterprise_admin_session_validator, - 'team_merge_request_accepted': EventType._team_merge_request_accepted_validator, - 'team_merge_request_accepted_shown_to_primary_team': EventType._team_merge_request_accepted_shown_to_primary_team_validator, - 'team_merge_request_accepted_shown_to_secondary_team': EventType._team_merge_request_accepted_shown_to_secondary_team_validator, - 'team_merge_request_auto_canceled': EventType._team_merge_request_auto_canceled_validator, - 'team_merge_request_canceled': EventType._team_merge_request_canceled_validator, - 'team_merge_request_canceled_shown_to_primary_team': EventType._team_merge_request_canceled_shown_to_primary_team_validator, - 'team_merge_request_canceled_shown_to_secondary_team': EventType._team_merge_request_canceled_shown_to_secondary_team_validator, - 'team_merge_request_expired': EventType._team_merge_request_expired_validator, - 'team_merge_request_expired_shown_to_primary_team': EventType._team_merge_request_expired_shown_to_primary_team_validator, - 'team_merge_request_expired_shown_to_secondary_team': EventType._team_merge_request_expired_shown_to_secondary_team_validator, - 'team_merge_request_rejected_shown_to_primary_team': EventType._team_merge_request_rejected_shown_to_primary_team_validator, - 'team_merge_request_rejected_shown_to_secondary_team': EventType._team_merge_request_rejected_shown_to_secondary_team_validator, - 'team_merge_request_reminder': EventType._team_merge_request_reminder_validator, - 'team_merge_request_reminder_shown_to_primary_team': EventType._team_merge_request_reminder_shown_to_primary_team_validator, - 'team_merge_request_reminder_shown_to_secondary_team': EventType._team_merge_request_reminder_shown_to_secondary_team_validator, - 'team_merge_request_revoked': EventType._team_merge_request_revoked_validator, - 'team_merge_request_sent_shown_to_primary_team': EventType._team_merge_request_sent_shown_to_primary_team_validator, - 'team_merge_request_sent_shown_to_secondary_team': EventType._team_merge_request_sent_shown_to_secondary_team_validator, - 'other': EventType._other_validator, + "admin_alerting_alert_state_changed": EventType._admin_alerting_alert_state_changed_validator, + "admin_alerting_changed_alert_config": EventType._admin_alerting_changed_alert_config_validator, + "admin_alerting_triggered_alert": EventType._admin_alerting_triggered_alert_validator, + "ransomware_restore_process_completed": EventType._ransomware_restore_process_completed_validator, + "ransomware_restore_process_started": EventType._ransomware_restore_process_started_validator, + "app_blocked_by_permissions": EventType._app_blocked_by_permissions_validator, + "app_link_team": EventType._app_link_team_validator, + "app_link_user": EventType._app_link_user_validator, + "app_unlink_team": EventType._app_unlink_team_validator, + "app_unlink_user": EventType._app_unlink_user_validator, + "integration_connected": EventType._integration_connected_validator, + "integration_disconnected": EventType._integration_disconnected_validator, + "file_add_comment": EventType._file_add_comment_validator, + "file_change_comment_subscription": EventType._file_change_comment_subscription_validator, + "file_delete_comment": EventType._file_delete_comment_validator, + "file_edit_comment": EventType._file_edit_comment_validator, + "file_like_comment": EventType._file_like_comment_validator, + "file_resolve_comment": EventType._file_resolve_comment_validator, + "file_unlike_comment": EventType._file_unlike_comment_validator, + "file_unresolve_comment": EventType._file_unresolve_comment_validator, + "dash_added_comment_to_stack": EventType._dash_added_comment_to_stack_validator, + "dash_added_connector": EventType._dash_added_connector_validator, + "dash_added_link_to_stack": EventType._dash_added_link_to_stack_validator, + "dash_added_team_email_domain_allowlist": EventType._dash_added_team_email_domain_allowlist_validator, + "dash_admin_added_org_wide_connector": EventType._dash_admin_added_org_wide_connector_validator, + "dash_admin_disabled_connector": EventType._dash_admin_disabled_connector_validator, + "dash_admin_enabled_connector": EventType._dash_admin_enabled_connector_validator, + "dash_admin_removed_org_wide_connector": EventType._dash_admin_removed_org_wide_connector_validator, + "dash_archived_stack": EventType._dash_archived_stack_validator, + "dash_changed_audience_of_shared_link_to_stack": EventType._dash_changed_audience_of_shared_link_to_stack_validator, + "dash_cloned_stack": EventType._dash_cloned_stack_validator, + "dash_connector_tools_call": EventType._dash_connector_tools_call_validator, + "dash_created_stack": EventType._dash_created_stack_validator, + "dash_deleted_comment_from_stack": EventType._dash_deleted_comment_from_stack_validator, + "dash_deleted_stack": EventType._dash_deleted_stack_validator, + "dash_edited_comment_in_stack": EventType._dash_edited_comment_in_stack_validator, + "dash_external_user_opened_stack": EventType._dash_external_user_opened_stack_validator, + "dash_first_launched_desktop": EventType._dash_first_launched_desktop_validator, + "dash_first_launched_extension": EventType._dash_first_launched_extension_validator, + "dash_first_launched_web_start_page": EventType._dash_first_launched_web_start_page_validator, + "dash_opened_shared_link_to_stack": EventType._dash_opened_shared_link_to_stack_validator, + "dash_opened_stack": EventType._dash_opened_stack_validator, + "dash_preview_opt_out_status_changed": EventType._dash_preview_opt_out_status_changed_validator, + "dash_removed_connector": EventType._dash_removed_connector_validator, + "dash_removed_link_from_stack": EventType._dash_removed_link_from_stack_validator, + "dash_removed_shared_link_to_stack": EventType._dash_removed_shared_link_to_stack_validator, + "dash_removed_team_email_domain_allowlist": EventType._dash_removed_team_email_domain_allowlist_validator, + "dash_renamed_stack": EventType._dash_renamed_stack_validator, + "dash_shared_link_to_stack": EventType._dash_shared_link_to_stack_validator, + "dash_unarchived_stack": EventType._dash_unarchived_stack_validator, + "dash_viewed_company_stack": EventType._dash_viewed_company_stack_validator, + "dash_viewed_external_ai_activity_report": EventType._dash_viewed_external_ai_activity_report_validator, + "governance_policy_add_folders": EventType._governance_policy_add_folders_validator, + "governance_policy_add_folder_failed": EventType._governance_policy_add_folder_failed_validator, + "governance_policy_content_disposed": EventType._governance_policy_content_disposed_validator, + "governance_policy_create": EventType._governance_policy_create_validator, + "governance_policy_delete": EventType._governance_policy_delete_validator, + "governance_policy_edit_details": EventType._governance_policy_edit_details_validator, + "governance_policy_edit_duration": EventType._governance_policy_edit_duration_validator, + "governance_policy_export_created": EventType._governance_policy_export_created_validator, + "governance_policy_export_removed": EventType._governance_policy_export_removed_validator, + "governance_policy_remove_folders": EventType._governance_policy_remove_folders_validator, + "governance_policy_report_created": EventType._governance_policy_report_created_validator, + "governance_policy_zip_part_downloaded": EventType._governance_policy_zip_part_downloaded_validator, + "legal_holds_activate_a_hold": EventType._legal_holds_activate_a_hold_validator, + "legal_holds_add_members": EventType._legal_holds_add_members_validator, + "legal_holds_change_hold_details": EventType._legal_holds_change_hold_details_validator, + "legal_holds_change_hold_name": EventType._legal_holds_change_hold_name_validator, + "legal_holds_export_a_hold": EventType._legal_holds_export_a_hold_validator, + "legal_holds_export_cancelled": EventType._legal_holds_export_cancelled_validator, + "legal_holds_export_downloaded": EventType._legal_holds_export_downloaded_validator, + "legal_holds_export_removed": EventType._legal_holds_export_removed_validator, + "legal_holds_release_a_hold": EventType._legal_holds_release_a_hold_validator, + "legal_holds_remove_members": EventType._legal_holds_remove_members_validator, + "legal_holds_report_a_hold": EventType._legal_holds_report_a_hold_validator, + "device_change_ip_desktop": EventType._device_change_ip_desktop_validator, + "device_change_ip_mobile": EventType._device_change_ip_mobile_validator, + "device_change_ip_web": EventType._device_change_ip_web_validator, + "device_delete_on_unlink_fail": EventType._device_delete_on_unlink_fail_validator, + "device_delete_on_unlink_success": EventType._device_delete_on_unlink_success_validator, + "device_link_fail": EventType._device_link_fail_validator, + "device_link_success": EventType._device_link_success_validator, + "device_management_disabled": EventType._device_management_disabled_validator, + "device_management_enabled": EventType._device_management_enabled_validator, + "device_sync_backup_status_changed": EventType._device_sync_backup_status_changed_validator, + "device_unlink": EventType._device_unlink_validator, + "dropbox_passwords_exported": EventType._dropbox_passwords_exported_validator, + "dropbox_passwords_new_device_enrolled": EventType._dropbox_passwords_new_device_enrolled_validator, + "emm_refresh_auth_token": EventType._emm_refresh_auth_token_validator, + "external_drive_backup_eligibility_status_checked": EventType._external_drive_backup_eligibility_status_checked_validator, + "external_drive_backup_status_changed": EventType._external_drive_backup_status_changed_validator, + "account_capture_change_availability": EventType._account_capture_change_availability_validator, + "account_capture_migrate_account": EventType._account_capture_migrate_account_validator, + "account_capture_notification_emails_sent": EventType._account_capture_notification_emails_sent_validator, + "account_capture_relinquish_account": EventType._account_capture_relinquish_account_validator, + "disabled_domain_invites": EventType._disabled_domain_invites_validator, + "domain_invites_approve_request_to_join_team": EventType._domain_invites_approve_request_to_join_team_validator, + "domain_invites_decline_request_to_join_team": EventType._domain_invites_decline_request_to_join_team_validator, + "domain_invites_email_existing_users": EventType._domain_invites_email_existing_users_validator, + "domain_invites_request_to_join_team": EventType._domain_invites_request_to_join_team_validator, + "domain_invites_set_invite_new_user_pref_to_no": EventType._domain_invites_set_invite_new_user_pref_to_no_validator, + "domain_invites_set_invite_new_user_pref_to_yes": EventType._domain_invites_set_invite_new_user_pref_to_yes_validator, + "domain_verification_add_domain_fail": EventType._domain_verification_add_domain_fail_validator, + "domain_verification_add_domain_success": EventType._domain_verification_add_domain_success_validator, + "domain_verification_remove_domain": EventType._domain_verification_remove_domain_validator, + "enabled_domain_invites": EventType._enabled_domain_invites_validator, + "encrypted_folder_cancel_team_key_rotation": EventType._encrypted_folder_cancel_team_key_rotation_validator, + "encrypted_folder_enroll_backup_key": EventType._encrypted_folder_enroll_backup_key_validator, + "encrypted_folder_enroll_client": EventType._encrypted_folder_enroll_client_validator, + "encrypted_folder_enroll_team": EventType._encrypted_folder_enroll_team_validator, + "encrypted_folder_finish_team_unenrollment": EventType._encrypted_folder_finish_team_unenrollment_validator, + "encrypted_folder_init_team_key_rotation": EventType._encrypted_folder_init_team_key_rotation_validator, + "encrypted_folder_init_team_unenrollment": EventType._encrypted_folder_init_team_unenrollment_validator, + "encrypted_folder_remove_backup_key": EventType._encrypted_folder_remove_backup_key_validator, + "encrypted_folder_rotate_team_key": EventType._encrypted_folder_rotate_team_key_validator, + "encrypted_folder_unenroll_client": EventType._encrypted_folder_unenroll_client_validator, + "team_encryption_key_activate_key": EventType._team_encryption_key_activate_key_validator, + "team_encryption_key_cancel_key_deletion": EventType._team_encryption_key_cancel_key_deletion_validator, + "team_encryption_key_create_key": EventType._team_encryption_key_create_key_validator, + "team_encryption_key_deactivate_key": EventType._team_encryption_key_deactivate_key_validator, + "team_encryption_key_delete_key": EventType._team_encryption_key_delete_key_validator, + "team_encryption_key_disable_key": EventType._team_encryption_key_disable_key_validator, + "team_encryption_key_enable_key": EventType._team_encryption_key_enable_key_validator, + "team_encryption_key_rotate_key": EventType._team_encryption_key_rotate_key_validator, + "team_encryption_key_schedule_key_deletion": EventType._team_encryption_key_schedule_key_deletion_validator, + "apply_naming_convention": EventType._apply_naming_convention_validator, + "create_folder": EventType._create_folder_validator, + "file_add": EventType._file_add_validator, + "file_add_from_automation": EventType._file_add_from_automation_validator, + "file_copy": EventType._file_copy_validator, + "file_delete": EventType._file_delete_validator, + "file_download": EventType._file_download_validator, + "file_edit": EventType._file_edit_validator, + "file_get_copy_reference": EventType._file_get_copy_reference_validator, + "file_locking_lock_status_changed": EventType._file_locking_lock_status_changed_validator, + "file_move": EventType._file_move_validator, + "file_permanently_delete": EventType._file_permanently_delete_validator, + "file_preview": EventType._file_preview_validator, + "file_rename": EventType._file_rename_validator, + "file_restore": EventType._file_restore_validator, + "file_revert": EventType._file_revert_validator, + "file_rollback_changes": EventType._file_rollback_changes_validator, + "file_save_copy_reference": EventType._file_save_copy_reference_validator, + "folder_overview_description_changed": EventType._folder_overview_description_changed_validator, + "folder_overview_item_pinned": EventType._folder_overview_item_pinned_validator, + "folder_overview_item_unpinned": EventType._folder_overview_item_unpinned_validator, + "media_hub_file_downloaded": EventType._media_hub_file_downloaded_validator, + "object_label_added": EventType._object_label_added_validator, + "object_label_removed": EventType._object_label_removed_validator, + "object_label_updated_value": EventType._object_label_updated_value_validator, + "organize_folder_with_tidy": EventType._organize_folder_with_tidy_validator, + "replay_file_delete": EventType._replay_file_delete_validator, + "replay_file_downloaded": EventType._replay_file_downloaded_validator, + "replay_team_project_created": EventType._replay_team_project_created_validator, + "rewind_folder": EventType._rewind_folder_validator, + "undo_naming_convention": EventType._undo_naming_convention_validator, + "undo_organize_folder_with_tidy": EventType._undo_organize_folder_with_tidy_validator, + "user_tags_added": EventType._user_tags_added_validator, + "user_tags_removed": EventType._user_tags_removed_validator, + "email_ingest_receive_file": EventType._email_ingest_receive_file_validator, + "file_request_auto_close": EventType._file_request_auto_close_validator, + "file_request_change": EventType._file_request_change_validator, + "file_request_close": EventType._file_request_close_validator, + "file_request_create": EventType._file_request_create_validator, + "file_request_delete": EventType._file_request_delete_validator, + "file_request_receive_file": EventType._file_request_receive_file_validator, + "group_add_external_id": EventType._group_add_external_id_validator, + "group_add_member": EventType._group_add_member_validator, + "group_change_external_id": EventType._group_change_external_id_validator, + "group_change_management_type": EventType._group_change_management_type_validator, + "group_change_member_role": EventType._group_change_member_role_validator, + "group_create": EventType._group_create_validator, + "group_delete": EventType._group_delete_validator, + "group_description_updated": EventType._group_description_updated_validator, + "group_external_sharing_setting_override_changed": EventType._group_external_sharing_setting_override_changed_validator, + "group_join_policy_updated": EventType._group_join_policy_updated_validator, + "group_moved": EventType._group_moved_validator, + "group_remove_external_id": EventType._group_remove_external_id_validator, + "group_remove_member": EventType._group_remove_member_validator, + "group_rename": EventType._group_rename_validator, + "account_lock_or_unlocked": EventType._account_lock_or_unlocked_validator, + "emm_error": EventType._emm_error_validator, + "guest_admin_signed_in_via_trusted_teams": EventType._guest_admin_signed_in_via_trusted_teams_validator, + "guest_admin_signed_out_via_trusted_teams": EventType._guest_admin_signed_out_via_trusted_teams_validator, + "login_fail": EventType._login_fail_validator, + "login_success": EventType._login_success_validator, + "logout": EventType._logout_validator, + "reseller_support_session_end": EventType._reseller_support_session_end_validator, + "reseller_support_session_start": EventType._reseller_support_session_start_validator, + "sign_in_as_session_end": EventType._sign_in_as_session_end_validator, + "sign_in_as_session_start": EventType._sign_in_as_session_start_validator, + "sso_error": EventType._sso_error_validator, + "addon_assigned": EventType._addon_assigned_validator, + "addon_removed": EventType._addon_removed_validator, + "backup_admin_invitation_sent": EventType._backup_admin_invitation_sent_validator, + "backup_invitation_opened": EventType._backup_invitation_opened_validator, + "create_team_invite_link": EventType._create_team_invite_link_validator, + "delete_team_invite_link": EventType._delete_team_invite_link_validator, + "member_add_external_id": EventType._member_add_external_id_validator, + "member_add_name": EventType._member_add_name_validator, + "member_change_admin_role": EventType._member_change_admin_role_validator, + "member_change_email": EventType._member_change_email_validator, + "member_change_external_id": EventType._member_change_external_id_validator, + "member_change_membership_type": EventType._member_change_membership_type_validator, + "member_change_name": EventType._member_change_name_validator, + "member_change_reseller_role": EventType._member_change_reseller_role_validator, + "member_change_status": EventType._member_change_status_validator, + "member_delete_manual_contacts": EventType._member_delete_manual_contacts_validator, + "member_delete_profile_photo": EventType._member_delete_profile_photo_validator, + "member_permanently_delete_account_contents": EventType._member_permanently_delete_account_contents_validator, + "member_remove_external_id": EventType._member_remove_external_id_validator, + "member_set_profile_photo": EventType._member_set_profile_photo_validator, + "member_space_limits_add_custom_quota": EventType._member_space_limits_add_custom_quota_validator, + "member_space_limits_change_custom_quota": EventType._member_space_limits_change_custom_quota_validator, + "member_space_limits_change_status": EventType._member_space_limits_change_status_validator, + "member_space_limits_remove_custom_quota": EventType._member_space_limits_remove_custom_quota_validator, + "member_suggest": EventType._member_suggest_validator, + "member_transfer_account_contents": EventType._member_transfer_account_contents_validator, + "pending_secondary_email_added": EventType._pending_secondary_email_added_validator, + "product_assigned_to_member": EventType._product_assigned_to_member_validator, + "product_removed_from_member": EventType._product_removed_from_member_validator, + "secondary_email_deleted": EventType._secondary_email_deleted_validator, + "secondary_email_verified": EventType._secondary_email_verified_validator, + "secondary_mails_policy_changed": EventType._secondary_mails_policy_changed_validator, + "binder_add_page": EventType._binder_add_page_validator, + "binder_add_section": EventType._binder_add_section_validator, + "binder_remove_page": EventType._binder_remove_page_validator, + "binder_remove_section": EventType._binder_remove_section_validator, + "binder_rename_page": EventType._binder_rename_page_validator, + "binder_rename_section": EventType._binder_rename_section_validator, + "binder_reorder_page": EventType._binder_reorder_page_validator, + "binder_reorder_section": EventType._binder_reorder_section_validator, + "paper_content_add_member": EventType._paper_content_add_member_validator, + "paper_content_add_to_folder": EventType._paper_content_add_to_folder_validator, + "paper_content_archive": EventType._paper_content_archive_validator, + "paper_content_create": EventType._paper_content_create_validator, + "paper_content_permanently_delete": EventType._paper_content_permanently_delete_validator, + "paper_content_remove_from_folder": EventType._paper_content_remove_from_folder_validator, + "paper_content_remove_member": EventType._paper_content_remove_member_validator, + "paper_content_rename": EventType._paper_content_rename_validator, + "paper_content_restore": EventType._paper_content_restore_validator, + "paper_doc_add_comment": EventType._paper_doc_add_comment_validator, + "paper_doc_change_member_role": EventType._paper_doc_change_member_role_validator, + "paper_doc_change_sharing_policy": EventType._paper_doc_change_sharing_policy_validator, + "paper_doc_change_subscription": EventType._paper_doc_change_subscription_validator, + "paper_doc_deleted": EventType._paper_doc_deleted_validator, + "paper_doc_delete_comment": EventType._paper_doc_delete_comment_validator, + "paper_doc_download": EventType._paper_doc_download_validator, + "paper_doc_edit": EventType._paper_doc_edit_validator, + "paper_doc_edit_comment": EventType._paper_doc_edit_comment_validator, + "paper_doc_followed": EventType._paper_doc_followed_validator, + "paper_doc_mention": EventType._paper_doc_mention_validator, + "paper_doc_ownership_changed": EventType._paper_doc_ownership_changed_validator, + "paper_doc_request_access": EventType._paper_doc_request_access_validator, + "paper_doc_resolve_comment": EventType._paper_doc_resolve_comment_validator, + "paper_doc_revert": EventType._paper_doc_revert_validator, + "paper_doc_slack_share": EventType._paper_doc_slack_share_validator, + "paper_doc_team_invite": EventType._paper_doc_team_invite_validator, + "paper_doc_trashed": EventType._paper_doc_trashed_validator, + "paper_doc_unresolve_comment": EventType._paper_doc_unresolve_comment_validator, + "paper_doc_untrashed": EventType._paper_doc_untrashed_validator, + "paper_doc_view": EventType._paper_doc_view_validator, + "paper_external_view_allow": EventType._paper_external_view_allow_validator, + "paper_external_view_default_team": EventType._paper_external_view_default_team_validator, + "paper_external_view_forbid": EventType._paper_external_view_forbid_validator, + "paper_folder_change_subscription": EventType._paper_folder_change_subscription_validator, + "paper_folder_deleted": EventType._paper_folder_deleted_validator, + "paper_folder_followed": EventType._paper_folder_followed_validator, + "paper_folder_team_invite": EventType._paper_folder_team_invite_validator, + "paper_published_link_change_permission": EventType._paper_published_link_change_permission_validator, + "paper_published_link_create": EventType._paper_published_link_create_validator, + "paper_published_link_disabled": EventType._paper_published_link_disabled_validator, + "paper_published_link_view": EventType._paper_published_link_view_validator, + "password_change": EventType._password_change_validator, + "password_reset": EventType._password_reset_validator, + "password_reset_all": EventType._password_reset_all_validator, + "protect_internal_domains_changed": EventType._protect_internal_domains_changed_validator, + "classification_create_report": EventType._classification_create_report_validator, + "classification_create_report_fail": EventType._classification_create_report_fail_validator, + "emm_create_exceptions_report": EventType._emm_create_exceptions_report_validator, + "emm_create_usage_report": EventType._emm_create_usage_report_validator, + "export_members_report": EventType._export_members_report_validator, + "export_members_report_fail": EventType._export_members_report_fail_validator, + "external_sharing_create_report": EventType._external_sharing_create_report_validator, + "external_sharing_report_failed": EventType._external_sharing_report_failed_validator, + "member_access_details_create_report": EventType._member_access_details_create_report_validator, + "member_access_details_create_report_failed": EventType._member_access_details_create_report_failed_validator, + "no_expiration_link_gen_create_report": EventType._no_expiration_link_gen_create_report_validator, + "no_expiration_link_gen_report_failed": EventType._no_expiration_link_gen_report_failed_validator, + "no_password_link_gen_create_report": EventType._no_password_link_gen_create_report_validator, + "no_password_link_gen_report_failed": EventType._no_password_link_gen_report_failed_validator, + "no_password_link_view_create_report": EventType._no_password_link_view_create_report_validator, + "no_password_link_view_report_failed": EventType._no_password_link_view_report_failed_validator, + "outdated_link_view_create_report": EventType._outdated_link_view_create_report_validator, + "outdated_link_view_report_failed": EventType._outdated_link_view_report_failed_validator, + "paper_admin_export_start": EventType._paper_admin_export_start_validator, + "ransomware_alert_create_report": EventType._ransomware_alert_create_report_validator, + "ransomware_alert_create_report_failed": EventType._ransomware_alert_create_report_failed_validator, + "shared_folders_create_report": EventType._shared_folders_create_report_validator, + "shared_folders_create_report_failed": EventType._shared_folders_create_report_failed_validator, + "smart_sync_create_admin_privilege_report": EventType._smart_sync_create_admin_privilege_report_validator, + "team_activity_create_report": EventType._team_activity_create_report_validator, + "team_activity_create_report_fail": EventType._team_activity_create_report_fail_validator, + "team_folders_create_report": EventType._team_folders_create_report_validator, + "team_folders_create_report_failed": EventType._team_folders_create_report_failed_validator, + "team_storage_create_report": EventType._team_storage_create_report_validator, + "team_storage_create_report_failed": EventType._team_storage_create_report_failed_validator, + "collection_share": EventType._collection_share_validator, + "file_transfers_file_add": EventType._file_transfers_file_add_validator, + "file_transfers_transfer_delete": EventType._file_transfers_transfer_delete_validator, + "file_transfers_transfer_download": EventType._file_transfers_transfer_download_validator, + "file_transfers_transfer_send": EventType._file_transfers_transfer_send_validator, + "file_transfers_transfer_view": EventType._file_transfers_transfer_view_validator, + "media_hub_project_team_add": EventType._media_hub_project_team_add_validator, + "media_hub_project_team_delete": EventType._media_hub_project_team_delete_validator, + "media_hub_project_team_role_changed": EventType._media_hub_project_team_role_changed_validator, + "media_hub_shared_link_audience_changed": EventType._media_hub_shared_link_audience_changed_validator, + "media_hub_shared_link_created": EventType._media_hub_shared_link_created_validator, + "media_hub_shared_link_download_setting_changed": EventType._media_hub_shared_link_download_setting_changed_validator, + "media_hub_shared_link_revoked": EventType._media_hub_shared_link_revoked_validator, + "note_acl_invite_only": EventType._note_acl_invite_only_validator, + "note_acl_link": EventType._note_acl_link_validator, + "note_acl_team_link": EventType._note_acl_team_link_validator, + "note_shared": EventType._note_shared_validator, + "note_share_receive": EventType._note_share_receive_validator, + "open_note_shared": EventType._open_note_shared_validator, + "replay_file_shared_link_created": EventType._replay_file_shared_link_created_validator, + "replay_file_shared_link_modified": EventType._replay_file_shared_link_modified_validator, + "replay_project_team_add": EventType._replay_project_team_add_validator, + "replay_project_team_delete": EventType._replay_project_team_delete_validator, + "send_and_track_file_added": EventType._send_and_track_file_added_validator, + "send_and_track_file_renamed": EventType._send_and_track_file_renamed_validator, + "send_and_track_file_updated": EventType._send_and_track_file_updated_validator, + "send_and_track_link_created": EventType._send_and_track_link_created_validator, + "send_and_track_link_deleted": EventType._send_and_track_link_deleted_validator, + "send_and_track_link_updated": EventType._send_and_track_link_updated_validator, + "send_and_track_link_viewed": EventType._send_and_track_link_viewed_validator, + "send_and_track_removed_file_and_associated_links": EventType._send_and_track_removed_file_and_associated_links_validator, + "sf_add_group": EventType._sf_add_group_validator, + "sf_allow_non_members_to_view_shared_links": EventType._sf_allow_non_members_to_view_shared_links_validator, + "sf_external_invite_warn": EventType._sf_external_invite_warn_validator, + "sf_fb_invite": EventType._sf_fb_invite_validator, + "sf_fb_invite_change_role": EventType._sf_fb_invite_change_role_validator, + "sf_fb_uninvite": EventType._sf_fb_uninvite_validator, + "sf_invite_group": EventType._sf_invite_group_validator, + "sf_team_grant_access": EventType._sf_team_grant_access_validator, + "sf_team_invite": EventType._sf_team_invite_validator, + "sf_team_invite_change_role": EventType._sf_team_invite_change_role_validator, + "sf_team_join": EventType._sf_team_join_validator, + "sf_team_join_from_oob_link": EventType._sf_team_join_from_oob_link_validator, + "sf_team_uninvite": EventType._sf_team_uninvite_validator, + "shared_content_add_invitees": EventType._shared_content_add_invitees_validator, + "shared_content_add_link_expiry": EventType._shared_content_add_link_expiry_validator, + "shared_content_add_link_password": EventType._shared_content_add_link_password_validator, + "shared_content_add_member": EventType._shared_content_add_member_validator, + "shared_content_change_downloads_policy": EventType._shared_content_change_downloads_policy_validator, + "shared_content_change_invitee_role": EventType._shared_content_change_invitee_role_validator, + "shared_content_change_link_audience": EventType._shared_content_change_link_audience_validator, + "shared_content_change_link_expiry": EventType._shared_content_change_link_expiry_validator, + "shared_content_change_link_password": EventType._shared_content_change_link_password_validator, + "shared_content_change_member_role": EventType._shared_content_change_member_role_validator, + "shared_content_change_viewer_info_policy": EventType._shared_content_change_viewer_info_policy_validator, + "shared_content_claim_invitation": EventType._shared_content_claim_invitation_validator, + "shared_content_copy": EventType._shared_content_copy_validator, + "shared_content_download": EventType._shared_content_download_validator, + "shared_content_relinquish_membership": EventType._shared_content_relinquish_membership_validator, + "shared_content_remove_invitees": EventType._shared_content_remove_invitees_validator, + "shared_content_remove_link_expiry": EventType._shared_content_remove_link_expiry_validator, + "shared_content_remove_link_password": EventType._shared_content_remove_link_password_validator, + "shared_content_remove_member": EventType._shared_content_remove_member_validator, + "shared_content_request_access": EventType._shared_content_request_access_validator, + "shared_content_restore_invitees": EventType._shared_content_restore_invitees_validator, + "shared_content_restore_member": EventType._shared_content_restore_member_validator, + "shared_content_unshare": EventType._shared_content_unshare_validator, + "shared_content_view": EventType._shared_content_view_validator, + "shared_folder_change_link_policy": EventType._shared_folder_change_link_policy_validator, + "shared_folder_change_members_inheritance_policy": EventType._shared_folder_change_members_inheritance_policy_validator, + "shared_folder_change_members_management_policy": EventType._shared_folder_change_members_management_policy_validator, + "shared_folder_change_members_policy": EventType._shared_folder_change_members_policy_validator, + "shared_folder_create": EventType._shared_folder_create_validator, + "shared_folder_decline_invitation": EventType._shared_folder_decline_invitation_validator, + "shared_folder_mount": EventType._shared_folder_mount_validator, + "shared_folder_nest": EventType._shared_folder_nest_validator, + "shared_folder_transfer_ownership": EventType._shared_folder_transfer_ownership_validator, + "shared_folder_unmount": EventType._shared_folder_unmount_validator, + "shared_link_add_expiry": EventType._shared_link_add_expiry_validator, + "shared_link_change_expiry": EventType._shared_link_change_expiry_validator, + "shared_link_change_visibility": EventType._shared_link_change_visibility_validator, + "shared_link_copy": EventType._shared_link_copy_validator, + "shared_link_create": EventType._shared_link_create_validator, + "shared_link_disable": EventType._shared_link_disable_validator, + "shared_link_download": EventType._shared_link_download_validator, + "shared_link_remove_expiry": EventType._shared_link_remove_expiry_validator, + "shared_link_remove_visitor": EventType._shared_link_remove_visitor_validator, + "shared_link_settings_add_expiration": EventType._shared_link_settings_add_expiration_validator, + "shared_link_settings_add_password": EventType._shared_link_settings_add_password_validator, + "shared_link_settings_allow_download_disabled": EventType._shared_link_settings_allow_download_disabled_validator, + "shared_link_settings_allow_download_enabled": EventType._shared_link_settings_allow_download_enabled_validator, + "shared_link_settings_change_audience": EventType._shared_link_settings_change_audience_validator, + "shared_link_settings_change_expiration": EventType._shared_link_settings_change_expiration_validator, + "shared_link_settings_change_password": EventType._shared_link_settings_change_password_validator, + "shared_link_settings_remove_expiration": EventType._shared_link_settings_remove_expiration_validator, + "shared_link_settings_remove_password": EventType._shared_link_settings_remove_password_validator, + "shared_link_share": EventType._shared_link_share_validator, + "shared_link_view": EventType._shared_link_view_validator, + "shared_note_opened": EventType._shared_note_opened_validator, + "shmodel_disable_downloads": EventType._shmodel_disable_downloads_validator, + "shmodel_enable_downloads": EventType._shmodel_enable_downloads_validator, + "shmodel_group_share": EventType._shmodel_group_share_validator, + "showcase_access_granted": EventType._showcase_access_granted_validator, + "showcase_add_member": EventType._showcase_add_member_validator, + "showcase_archived": EventType._showcase_archived_validator, + "showcase_created": EventType._showcase_created_validator, + "showcase_delete_comment": EventType._showcase_delete_comment_validator, + "showcase_edited": EventType._showcase_edited_validator, + "showcase_edit_comment": EventType._showcase_edit_comment_validator, + "showcase_file_added": EventType._showcase_file_added_validator, + "showcase_file_download": EventType._showcase_file_download_validator, + "showcase_file_removed": EventType._showcase_file_removed_validator, + "showcase_file_view": EventType._showcase_file_view_validator, + "showcase_permanently_deleted": EventType._showcase_permanently_deleted_validator, + "showcase_post_comment": EventType._showcase_post_comment_validator, + "showcase_remove_member": EventType._showcase_remove_member_validator, + "showcase_renamed": EventType._showcase_renamed_validator, + "showcase_request_access": EventType._showcase_request_access_validator, + "showcase_resolve_comment": EventType._showcase_resolve_comment_validator, + "showcase_restored": EventType._showcase_restored_validator, + "showcase_trashed": EventType._showcase_trashed_validator, + "showcase_trashed_deprecated": EventType._showcase_trashed_deprecated_validator, + "showcase_unresolve_comment": EventType._showcase_unresolve_comment_validator, + "showcase_untrashed": EventType._showcase_untrashed_validator, + "showcase_untrashed_deprecated": EventType._showcase_untrashed_deprecated_validator, + "showcase_view": EventType._showcase_view_validator, + "sign_signature_request_canceled": EventType._sign_signature_request_canceled_validator, + "sign_signature_request_completed": EventType._sign_signature_request_completed_validator, + "sign_signature_request_declined": EventType._sign_signature_request_declined_validator, + "sign_signature_request_opened": EventType._sign_signature_request_opened_validator, + "sign_signature_request_reminder_sent": EventType._sign_signature_request_reminder_sent_validator, + "sign_signature_request_sent": EventType._sign_signature_request_sent_validator, + "sign_template_created": EventType._sign_template_created_validator, + "sign_template_shared": EventType._sign_template_shared_validator, + "risc_security_event": EventType._risc_security_event_validator, + "sso_add_cert": EventType._sso_add_cert_validator, + "sso_add_login_url": EventType._sso_add_login_url_validator, + "sso_add_logout_url": EventType._sso_add_logout_url_validator, + "sso_change_cert": EventType._sso_change_cert_validator, + "sso_change_login_url": EventType._sso_change_login_url_validator, + "sso_change_logout_url": EventType._sso_change_logout_url_validator, + "sso_change_saml_identity_mode": EventType._sso_change_saml_identity_mode_validator, + "sso_remove_cert": EventType._sso_remove_cert_validator, + "sso_remove_login_url": EventType._sso_remove_login_url_validator, + "sso_remove_logout_url": EventType._sso_remove_logout_url_validator, + "team_folder_change_status": EventType._team_folder_change_status_validator, + "team_folder_create": EventType._team_folder_create_validator, + "team_folder_downgrade": EventType._team_folder_downgrade_validator, + "team_folder_permanently_delete": EventType._team_folder_permanently_delete_validator, + "team_folder_rename": EventType._team_folder_rename_validator, + "team_folder_space_limits_change_caps_type": EventType._team_folder_space_limits_change_caps_type_validator, + "team_folder_space_limits_change_limit": EventType._team_folder_space_limits_change_limit_validator, + "team_folder_space_limits_change_notification_target": EventType._team_folder_space_limits_change_notification_target_validator, + "team_selective_sync_settings_changed": EventType._team_selective_sync_settings_changed_validator, + "account_capture_change_policy": EventType._account_capture_change_policy_validator, + "admin_email_reminders_changed": EventType._admin_email_reminders_changed_validator, + "ai_third_party_sharing_dropbox_base_policy_changed": EventType._ai_third_party_sharing_dropbox_base_policy_changed_validator, + "allow_download_disabled": EventType._allow_download_disabled_validator, + "allow_download_enabled": EventType._allow_download_enabled_validator, + "apple_login_change_policy": EventType._apple_login_change_policy_validator, + "app_permissions_changed": EventType._app_permissions_changed_validator, + "camera_uploads_policy_changed": EventType._camera_uploads_policy_changed_validator, + "capture_team_space_policy_changed": EventType._capture_team_space_policy_changed_validator, + "capture_transcript_policy_changed": EventType._capture_transcript_policy_changed_validator, + "classification_change_policy": EventType._classification_change_policy_validator, + "computer_backup_policy_changed": EventType._computer_backup_policy_changed_validator, + "content_administration_policy_changed": EventType._content_administration_policy_changed_validator, + "content_deletion_protection_change_policy": EventType._content_deletion_protection_change_policy_validator, + "dash_external_sharing_policy_changed": EventType._dash_external_sharing_policy_changed_validator, + "data_placement_restriction_change_policy": EventType._data_placement_restriction_change_policy_validator, + "data_placement_restriction_satisfy_policy": EventType._data_placement_restriction_satisfy_policy_validator, + "device_approvals_add_exception": EventType._device_approvals_add_exception_validator, + "device_approvals_change_desktop_policy": EventType._device_approvals_change_desktop_policy_validator, + "device_approvals_change_mobile_policy": EventType._device_approvals_change_mobile_policy_validator, + "device_approvals_change_overage_action": EventType._device_approvals_change_overage_action_validator, + "device_approvals_change_unlink_action": EventType._device_approvals_change_unlink_action_validator, + "device_approvals_remove_exception": EventType._device_approvals_remove_exception_validator, + "directory_restrictions_add_members": EventType._directory_restrictions_add_members_validator, + "directory_restrictions_remove_members": EventType._directory_restrictions_remove_members_validator, + "dropbox_passwords_policy_changed": EventType._dropbox_passwords_policy_changed_validator, + "email_ingest_policy_changed": EventType._email_ingest_policy_changed_validator, + "emm_add_exception": EventType._emm_add_exception_validator, + "emm_change_policy": EventType._emm_change_policy_validator, + "emm_remove_exception": EventType._emm_remove_exception_validator, + "extended_version_history_change_policy": EventType._extended_version_history_change_policy_validator, + "external_drive_backup_policy_changed": EventType._external_drive_backup_policy_changed_validator, + "file_comments_change_policy": EventType._file_comments_change_policy_validator, + "file_locking_policy_changed": EventType._file_locking_policy_changed_validator, + "file_provider_migration_policy_changed": EventType._file_provider_migration_policy_changed_validator, + "file_requests_change_policy": EventType._file_requests_change_policy_validator, + "file_requests_emails_enabled": EventType._file_requests_emails_enabled_validator, + "file_requests_emails_restricted_to_team_only": EventType._file_requests_emails_restricted_to_team_only_validator, + "file_transfers_policy_changed": EventType._file_transfers_policy_changed_validator, + "flexible_file_names_policy_changed": EventType._flexible_file_names_policy_changed_validator, + "folder_link_restriction_policy_changed": EventType._folder_link_restriction_policy_changed_validator, + "google_sso_change_policy": EventType._google_sso_change_policy_validator, + "group_user_management_change_policy": EventType._group_user_management_change_policy_validator, + "integration_policy_changed": EventType._integration_policy_changed_validator, + "invite_acceptance_email_policy_changed": EventType._invite_acceptance_email_policy_changed_validator, + "media_hub_adding_people_policy_changed": EventType._media_hub_adding_people_policy_changed_validator, + "media_hub_download_policy_changed": EventType._media_hub_download_policy_changed_validator, + "media_hub_link_sharing_policy_changed": EventType._media_hub_link_sharing_policy_changed_validator, + "member_requests_change_policy": EventType._member_requests_change_policy_validator, + "member_send_invite_policy_changed": EventType._member_send_invite_policy_changed_validator, + "member_space_limits_add_exception": EventType._member_space_limits_add_exception_validator, + "member_space_limits_change_caps_type_policy": EventType._member_space_limits_change_caps_type_policy_validator, + "member_space_limits_change_policy": EventType._member_space_limits_change_policy_validator, + "member_space_limits_remove_exception": EventType._member_space_limits_remove_exception_validator, + "member_suggestions_change_policy": EventType._member_suggestions_change_policy_validator, + "microsoft_login_change_policy": EventType._microsoft_login_change_policy_validator, + "microsoft_office_addin_change_policy": EventType._microsoft_office_addin_change_policy_validator, + "multi_team_identity_policy_changed": EventType._multi_team_identity_policy_changed_validator, + "network_control_change_policy": EventType._network_control_change_policy_validator, + "paper_change_deployment_policy": EventType._paper_change_deployment_policy_validator, + "paper_change_member_link_policy": EventType._paper_change_member_link_policy_validator, + "paper_change_member_policy": EventType._paper_change_member_policy_validator, + "paper_change_policy": EventType._paper_change_policy_validator, + "paper_default_folder_policy_changed": EventType._paper_default_folder_policy_changed_validator, + "paper_desktop_policy_changed": EventType._paper_desktop_policy_changed_validator, + "paper_enabled_users_group_addition": EventType._paper_enabled_users_group_addition_validator, + "paper_enabled_users_group_removal": EventType._paper_enabled_users_group_removal_validator, + "passkey_login_policy_changed": EventType._passkey_login_policy_changed_validator, + "password_strength_requirements_change_policy": EventType._password_strength_requirements_change_policy_validator, + "permanent_delete_change_policy": EventType._permanent_delete_change_policy_validator, + "previews_ai_policy_changed": EventType._previews_ai_policy_changed_validator, + "replay_adding_people_policy_changed": EventType._replay_adding_people_policy_changed_validator, + "replay_sharing_policy_changed": EventType._replay_sharing_policy_changed_validator, + "reseller_support_change_policy": EventType._reseller_support_change_policy_validator, + "rewind_policy_changed": EventType._rewind_policy_changed_validator, + "send_and_track_policy_changed": EventType._send_and_track_policy_changed_validator, + "send_external_sharing_policy_changed": EventType._send_external_sharing_policy_changed_validator, + "send_for_signature_policy_changed": EventType._send_for_signature_policy_changed_validator, + "shared_link_default_permissions_policy_changed": EventType._shared_link_default_permissions_policy_changed_validator, + "sharing_change_folder_join_policy": EventType._sharing_change_folder_join_policy_validator, + "sharing_change_link_allow_change_expiration_policy": EventType._sharing_change_link_allow_change_expiration_policy_validator, + "sharing_change_link_default_expiration_policy": EventType._sharing_change_link_default_expiration_policy_validator, + "sharing_change_link_enforce_password_policy": EventType._sharing_change_link_enforce_password_policy_validator, + "sharing_change_link_policy": EventType._sharing_change_link_policy_validator, + "sharing_change_member_policy": EventType._sharing_change_member_policy_validator, + "showcase_change_download_policy": EventType._showcase_change_download_policy_validator, + "showcase_change_enabled_policy": EventType._showcase_change_enabled_policy_validator, + "showcase_change_external_sharing_policy": EventType._showcase_change_external_sharing_policy_validator, + "sign_external_sharing_policy_changed": EventType._sign_external_sharing_policy_changed_validator, + "sign_template_creation_permission_changed": EventType._sign_template_creation_permission_changed_validator, + "smarter_smart_sync_policy_changed": EventType._smarter_smart_sync_policy_changed_validator, + "smart_sync_change_policy": EventType._smart_sync_change_policy_validator, + "smart_sync_not_opt_out": EventType._smart_sync_not_opt_out_validator, + "smart_sync_opt_out": EventType._smart_sync_opt_out_validator, + "sso_change_policy": EventType._sso_change_policy_validator, + "stack_cross_team_access_policy_changed": EventType._stack_cross_team_access_policy_changed_validator, + "team_branding_policy_changed": EventType._team_branding_policy_changed_validator, + "team_extensions_policy_changed": EventType._team_extensions_policy_changed_validator, + "team_member_storage_request_policy_changed": EventType._team_member_storage_request_policy_changed_validator, + "team_selective_sync_policy_changed": EventType._team_selective_sync_policy_changed_validator, + "team_sharing_whitelist_subjects_changed": EventType._team_sharing_whitelist_subjects_changed_validator, + "tfa_add_exception": EventType._tfa_add_exception_validator, + "tfa_change_policy": EventType._tfa_change_policy_validator, + "tfa_remove_exception": EventType._tfa_remove_exception_validator, + "top_level_content_policy_changed": EventType._top_level_content_policy_changed_validator, + "two_account_change_policy": EventType._two_account_change_policy_validator, + "viewer_info_policy_changed": EventType._viewer_info_policy_changed_validator, + "watermarking_policy_changed": EventType._watermarking_policy_changed_validator, + "web_sessions_change_active_session_limit": EventType._web_sessions_change_active_session_limit_validator, + "web_sessions_change_fixed_length_policy": EventType._web_sessions_change_fixed_length_policy_validator, + "web_sessions_change_idle_length_policy": EventType._web_sessions_change_idle_length_policy_validator, + "data_residency_migration_request_successful": EventType._data_residency_migration_request_successful_validator, + "data_residency_migration_request_unsuccessful": EventType._data_residency_migration_request_unsuccessful_validator, + "team_merge_from": EventType._team_merge_from_validator, + "team_merge_to": EventType._team_merge_to_validator, + "team_profile_add_background": EventType._team_profile_add_background_validator, + "team_profile_add_logo": EventType._team_profile_add_logo_validator, + "team_profile_change_background": EventType._team_profile_change_background_validator, + "team_profile_change_default_language": EventType._team_profile_change_default_language_validator, + "team_profile_change_logo": EventType._team_profile_change_logo_validator, + "team_profile_change_name": EventType._team_profile_change_name_validator, + "team_profile_remove_background": EventType._team_profile_remove_background_validator, + "team_profile_remove_logo": EventType._team_profile_remove_logo_validator, + "passkey_add": EventType._passkey_add_validator, + "passkey_remove": EventType._passkey_remove_validator, + "tfa_add_backup_phone": EventType._tfa_add_backup_phone_validator, + "tfa_add_security_key": EventType._tfa_add_security_key_validator, + "tfa_change_backup_phone": EventType._tfa_change_backup_phone_validator, + "tfa_change_status": EventType._tfa_change_status_validator, + "tfa_remove_backup_phone": EventType._tfa_remove_backup_phone_validator, + "tfa_remove_security_key": EventType._tfa_remove_security_key_validator, + "tfa_reset": EventType._tfa_reset_validator, + "changed_enterprise_admin_role": EventType._changed_enterprise_admin_role_validator, + "changed_enterprise_connected_team_status": EventType._changed_enterprise_connected_team_status_validator, + "ended_enterprise_admin_session": EventType._ended_enterprise_admin_session_validator, + "ended_enterprise_admin_session_deprecated": EventType._ended_enterprise_admin_session_deprecated_validator, + "enterprise_settings_locking": EventType._enterprise_settings_locking_validator, + "guest_admin_change_status": EventType._guest_admin_change_status_validator, + "started_enterprise_admin_session": EventType._started_enterprise_admin_session_validator, + "team_merge_request_accepted": EventType._team_merge_request_accepted_validator, + "team_merge_request_accepted_shown_to_primary_team": EventType._team_merge_request_accepted_shown_to_primary_team_validator, + "team_merge_request_accepted_shown_to_secondary_team": EventType._team_merge_request_accepted_shown_to_secondary_team_validator, + "team_merge_request_auto_canceled": EventType._team_merge_request_auto_canceled_validator, + "team_merge_request_canceled": EventType._team_merge_request_canceled_validator, + "team_merge_request_canceled_shown_to_primary_team": EventType._team_merge_request_canceled_shown_to_primary_team_validator, + "team_merge_request_canceled_shown_to_secondary_team": EventType._team_merge_request_canceled_shown_to_secondary_team_validator, + "team_merge_request_expired": EventType._team_merge_request_expired_validator, + "team_merge_request_expired_shown_to_primary_team": EventType._team_merge_request_expired_shown_to_primary_team_validator, + "team_merge_request_expired_shown_to_secondary_team": EventType._team_merge_request_expired_shown_to_secondary_team_validator, + "team_merge_request_rejected_shown_to_primary_team": EventType._team_merge_request_rejected_shown_to_primary_team_validator, + "team_merge_request_rejected_shown_to_secondary_team": EventType._team_merge_request_rejected_shown_to_secondary_team_validator, + "team_merge_request_reminder": EventType._team_merge_request_reminder_validator, + "team_merge_request_reminder_shown_to_primary_team": EventType._team_merge_request_reminder_shown_to_primary_team_validator, + "team_merge_request_reminder_shown_to_secondary_team": EventType._team_merge_request_reminder_shown_to_secondary_team_validator, + "team_merge_request_revoked": EventType._team_merge_request_revoked_validator, + "team_merge_request_sent_shown_to_primary_team": EventType._team_merge_request_sent_shown_to_primary_team_validator, + "team_merge_request_sent_shown_to_secondary_team": EventType._team_merge_request_sent_shown_to_secondary_team_validator, + "other": EventType._other_validator, } -EventType.other = EventType('other') +EventType.other = EventType("other") EventTypeArg._admin_alerting_alert_state_changed_validator = bv.Void() EventTypeArg._admin_alerting_changed_alert_config_validator = bv.Void() @@ -99779,1276 +105466,1557 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EventTypeArg._team_merge_request_sent_shown_to_secondary_team_validator = bv.Void() EventTypeArg._other_validator = bv.Void() EventTypeArg._tagmap = { - 'admin_alerting_alert_state_changed': EventTypeArg._admin_alerting_alert_state_changed_validator, - 'admin_alerting_changed_alert_config': EventTypeArg._admin_alerting_changed_alert_config_validator, - 'admin_alerting_triggered_alert': EventTypeArg._admin_alerting_triggered_alert_validator, - 'ransomware_restore_process_completed': EventTypeArg._ransomware_restore_process_completed_validator, - 'ransomware_restore_process_started': EventTypeArg._ransomware_restore_process_started_validator, - 'app_blocked_by_permissions': EventTypeArg._app_blocked_by_permissions_validator, - 'app_link_team': EventTypeArg._app_link_team_validator, - 'app_link_user': EventTypeArg._app_link_user_validator, - 'app_unlink_team': EventTypeArg._app_unlink_team_validator, - 'app_unlink_user': EventTypeArg._app_unlink_user_validator, - 'integration_connected': EventTypeArg._integration_connected_validator, - 'integration_disconnected': EventTypeArg._integration_disconnected_validator, - 'file_add_comment': EventTypeArg._file_add_comment_validator, - 'file_change_comment_subscription': EventTypeArg._file_change_comment_subscription_validator, - 'file_delete_comment': EventTypeArg._file_delete_comment_validator, - 'file_edit_comment': EventTypeArg._file_edit_comment_validator, - 'file_like_comment': EventTypeArg._file_like_comment_validator, - 'file_resolve_comment': EventTypeArg._file_resolve_comment_validator, - 'file_unlike_comment': EventTypeArg._file_unlike_comment_validator, - 'file_unresolve_comment': EventTypeArg._file_unresolve_comment_validator, - 'dash_added_comment_to_stack': EventTypeArg._dash_added_comment_to_stack_validator, - 'dash_added_connector': EventTypeArg._dash_added_connector_validator, - 'dash_added_link_to_stack': EventTypeArg._dash_added_link_to_stack_validator, - 'dash_added_team_email_domain_allowlist': EventTypeArg._dash_added_team_email_domain_allowlist_validator, - 'dash_admin_added_org_wide_connector': EventTypeArg._dash_admin_added_org_wide_connector_validator, - 'dash_admin_disabled_connector': EventTypeArg._dash_admin_disabled_connector_validator, - 'dash_admin_enabled_connector': EventTypeArg._dash_admin_enabled_connector_validator, - 'dash_admin_removed_org_wide_connector': EventTypeArg._dash_admin_removed_org_wide_connector_validator, - 'dash_archived_stack': EventTypeArg._dash_archived_stack_validator, - 'dash_changed_audience_of_shared_link_to_stack': EventTypeArg._dash_changed_audience_of_shared_link_to_stack_validator, - 'dash_cloned_stack': EventTypeArg._dash_cloned_stack_validator, - 'dash_connector_tools_call': EventTypeArg._dash_connector_tools_call_validator, - 'dash_created_stack': EventTypeArg._dash_created_stack_validator, - 'dash_deleted_comment_from_stack': EventTypeArg._dash_deleted_comment_from_stack_validator, - 'dash_deleted_stack': EventTypeArg._dash_deleted_stack_validator, - 'dash_edited_comment_in_stack': EventTypeArg._dash_edited_comment_in_stack_validator, - 'dash_external_user_opened_stack': EventTypeArg._dash_external_user_opened_stack_validator, - 'dash_first_launched_desktop': EventTypeArg._dash_first_launched_desktop_validator, - 'dash_first_launched_extension': EventTypeArg._dash_first_launched_extension_validator, - 'dash_first_launched_web_start_page': EventTypeArg._dash_first_launched_web_start_page_validator, - 'dash_opened_shared_link_to_stack': EventTypeArg._dash_opened_shared_link_to_stack_validator, - 'dash_opened_stack': EventTypeArg._dash_opened_stack_validator, - 'dash_preview_opt_out_status_changed': EventTypeArg._dash_preview_opt_out_status_changed_validator, - 'dash_removed_connector': EventTypeArg._dash_removed_connector_validator, - 'dash_removed_link_from_stack': EventTypeArg._dash_removed_link_from_stack_validator, - 'dash_removed_shared_link_to_stack': EventTypeArg._dash_removed_shared_link_to_stack_validator, - 'dash_removed_team_email_domain_allowlist': EventTypeArg._dash_removed_team_email_domain_allowlist_validator, - 'dash_renamed_stack': EventTypeArg._dash_renamed_stack_validator, - 'dash_shared_link_to_stack': EventTypeArg._dash_shared_link_to_stack_validator, - 'dash_unarchived_stack': EventTypeArg._dash_unarchived_stack_validator, - 'dash_viewed_company_stack': EventTypeArg._dash_viewed_company_stack_validator, - 'dash_viewed_external_ai_activity_report': EventTypeArg._dash_viewed_external_ai_activity_report_validator, - 'governance_policy_add_folders': EventTypeArg._governance_policy_add_folders_validator, - 'governance_policy_add_folder_failed': EventTypeArg._governance_policy_add_folder_failed_validator, - 'governance_policy_content_disposed': EventTypeArg._governance_policy_content_disposed_validator, - 'governance_policy_create': EventTypeArg._governance_policy_create_validator, - 'governance_policy_delete': EventTypeArg._governance_policy_delete_validator, - 'governance_policy_edit_details': EventTypeArg._governance_policy_edit_details_validator, - 'governance_policy_edit_duration': EventTypeArg._governance_policy_edit_duration_validator, - 'governance_policy_export_created': EventTypeArg._governance_policy_export_created_validator, - 'governance_policy_export_removed': EventTypeArg._governance_policy_export_removed_validator, - 'governance_policy_remove_folders': EventTypeArg._governance_policy_remove_folders_validator, - 'governance_policy_report_created': EventTypeArg._governance_policy_report_created_validator, - 'governance_policy_zip_part_downloaded': EventTypeArg._governance_policy_zip_part_downloaded_validator, - 'legal_holds_activate_a_hold': EventTypeArg._legal_holds_activate_a_hold_validator, - 'legal_holds_add_members': EventTypeArg._legal_holds_add_members_validator, - 'legal_holds_change_hold_details': EventTypeArg._legal_holds_change_hold_details_validator, - 'legal_holds_change_hold_name': EventTypeArg._legal_holds_change_hold_name_validator, - 'legal_holds_export_a_hold': EventTypeArg._legal_holds_export_a_hold_validator, - 'legal_holds_export_cancelled': EventTypeArg._legal_holds_export_cancelled_validator, - 'legal_holds_export_downloaded': EventTypeArg._legal_holds_export_downloaded_validator, - 'legal_holds_export_removed': EventTypeArg._legal_holds_export_removed_validator, - 'legal_holds_release_a_hold': EventTypeArg._legal_holds_release_a_hold_validator, - 'legal_holds_remove_members': EventTypeArg._legal_holds_remove_members_validator, - 'legal_holds_report_a_hold': EventTypeArg._legal_holds_report_a_hold_validator, - 'device_change_ip_desktop': EventTypeArg._device_change_ip_desktop_validator, - 'device_change_ip_mobile': EventTypeArg._device_change_ip_mobile_validator, - 'device_change_ip_web': EventTypeArg._device_change_ip_web_validator, - 'device_delete_on_unlink_fail': EventTypeArg._device_delete_on_unlink_fail_validator, - 'device_delete_on_unlink_success': EventTypeArg._device_delete_on_unlink_success_validator, - 'device_link_fail': EventTypeArg._device_link_fail_validator, - 'device_link_success': EventTypeArg._device_link_success_validator, - 'device_management_disabled': EventTypeArg._device_management_disabled_validator, - 'device_management_enabled': EventTypeArg._device_management_enabled_validator, - 'device_sync_backup_status_changed': EventTypeArg._device_sync_backup_status_changed_validator, - 'device_unlink': EventTypeArg._device_unlink_validator, - 'dropbox_passwords_exported': EventTypeArg._dropbox_passwords_exported_validator, - 'dropbox_passwords_new_device_enrolled': EventTypeArg._dropbox_passwords_new_device_enrolled_validator, - 'emm_refresh_auth_token': EventTypeArg._emm_refresh_auth_token_validator, - 'external_drive_backup_eligibility_status_checked': EventTypeArg._external_drive_backup_eligibility_status_checked_validator, - 'external_drive_backup_status_changed': EventTypeArg._external_drive_backup_status_changed_validator, - 'account_capture_change_availability': EventTypeArg._account_capture_change_availability_validator, - 'account_capture_migrate_account': EventTypeArg._account_capture_migrate_account_validator, - 'account_capture_notification_emails_sent': EventTypeArg._account_capture_notification_emails_sent_validator, - 'account_capture_relinquish_account': EventTypeArg._account_capture_relinquish_account_validator, - 'disabled_domain_invites': EventTypeArg._disabled_domain_invites_validator, - 'domain_invites_approve_request_to_join_team': EventTypeArg._domain_invites_approve_request_to_join_team_validator, - 'domain_invites_decline_request_to_join_team': EventTypeArg._domain_invites_decline_request_to_join_team_validator, - 'domain_invites_email_existing_users': EventTypeArg._domain_invites_email_existing_users_validator, - 'domain_invites_request_to_join_team': EventTypeArg._domain_invites_request_to_join_team_validator, - 'domain_invites_set_invite_new_user_pref_to_no': EventTypeArg._domain_invites_set_invite_new_user_pref_to_no_validator, - 'domain_invites_set_invite_new_user_pref_to_yes': EventTypeArg._domain_invites_set_invite_new_user_pref_to_yes_validator, - 'domain_verification_add_domain_fail': EventTypeArg._domain_verification_add_domain_fail_validator, - 'domain_verification_add_domain_success': EventTypeArg._domain_verification_add_domain_success_validator, - 'domain_verification_remove_domain': EventTypeArg._domain_verification_remove_domain_validator, - 'enabled_domain_invites': EventTypeArg._enabled_domain_invites_validator, - 'encrypted_folder_cancel_team_key_rotation': EventTypeArg._encrypted_folder_cancel_team_key_rotation_validator, - 'encrypted_folder_enroll_backup_key': EventTypeArg._encrypted_folder_enroll_backup_key_validator, - 'encrypted_folder_enroll_client': EventTypeArg._encrypted_folder_enroll_client_validator, - 'encrypted_folder_enroll_team': EventTypeArg._encrypted_folder_enroll_team_validator, - 'encrypted_folder_finish_team_unenrollment': EventTypeArg._encrypted_folder_finish_team_unenrollment_validator, - 'encrypted_folder_init_team_key_rotation': EventTypeArg._encrypted_folder_init_team_key_rotation_validator, - 'encrypted_folder_init_team_unenrollment': EventTypeArg._encrypted_folder_init_team_unenrollment_validator, - 'encrypted_folder_remove_backup_key': EventTypeArg._encrypted_folder_remove_backup_key_validator, - 'encrypted_folder_rotate_team_key': EventTypeArg._encrypted_folder_rotate_team_key_validator, - 'encrypted_folder_unenroll_client': EventTypeArg._encrypted_folder_unenroll_client_validator, - 'team_encryption_key_activate_key': EventTypeArg._team_encryption_key_activate_key_validator, - 'team_encryption_key_cancel_key_deletion': EventTypeArg._team_encryption_key_cancel_key_deletion_validator, - 'team_encryption_key_create_key': EventTypeArg._team_encryption_key_create_key_validator, - 'team_encryption_key_deactivate_key': EventTypeArg._team_encryption_key_deactivate_key_validator, - 'team_encryption_key_delete_key': EventTypeArg._team_encryption_key_delete_key_validator, - 'team_encryption_key_disable_key': EventTypeArg._team_encryption_key_disable_key_validator, - 'team_encryption_key_enable_key': EventTypeArg._team_encryption_key_enable_key_validator, - 'team_encryption_key_rotate_key': EventTypeArg._team_encryption_key_rotate_key_validator, - 'team_encryption_key_schedule_key_deletion': EventTypeArg._team_encryption_key_schedule_key_deletion_validator, - 'apply_naming_convention': EventTypeArg._apply_naming_convention_validator, - 'create_folder': EventTypeArg._create_folder_validator, - 'file_add': EventTypeArg._file_add_validator, - 'file_add_from_automation': EventTypeArg._file_add_from_automation_validator, - 'file_copy': EventTypeArg._file_copy_validator, - 'file_delete': EventTypeArg._file_delete_validator, - 'file_download': EventTypeArg._file_download_validator, - 'file_edit': EventTypeArg._file_edit_validator, - 'file_get_copy_reference': EventTypeArg._file_get_copy_reference_validator, - 'file_locking_lock_status_changed': EventTypeArg._file_locking_lock_status_changed_validator, - 'file_move': EventTypeArg._file_move_validator, - 'file_permanently_delete': EventTypeArg._file_permanently_delete_validator, - 'file_preview': EventTypeArg._file_preview_validator, - 'file_rename': EventTypeArg._file_rename_validator, - 'file_restore': EventTypeArg._file_restore_validator, - 'file_revert': EventTypeArg._file_revert_validator, - 'file_rollback_changes': EventTypeArg._file_rollback_changes_validator, - 'file_save_copy_reference': EventTypeArg._file_save_copy_reference_validator, - 'folder_overview_description_changed': EventTypeArg._folder_overview_description_changed_validator, - 'folder_overview_item_pinned': EventTypeArg._folder_overview_item_pinned_validator, - 'folder_overview_item_unpinned': EventTypeArg._folder_overview_item_unpinned_validator, - 'media_hub_file_downloaded': EventTypeArg._media_hub_file_downloaded_validator, - 'object_label_added': EventTypeArg._object_label_added_validator, - 'object_label_removed': EventTypeArg._object_label_removed_validator, - 'object_label_updated_value': EventTypeArg._object_label_updated_value_validator, - 'organize_folder_with_tidy': EventTypeArg._organize_folder_with_tidy_validator, - 'replay_file_delete': EventTypeArg._replay_file_delete_validator, - 'replay_file_downloaded': EventTypeArg._replay_file_downloaded_validator, - 'replay_team_project_created': EventTypeArg._replay_team_project_created_validator, - 'rewind_folder': EventTypeArg._rewind_folder_validator, - 'undo_naming_convention': EventTypeArg._undo_naming_convention_validator, - 'undo_organize_folder_with_tidy': EventTypeArg._undo_organize_folder_with_tidy_validator, - 'user_tags_added': EventTypeArg._user_tags_added_validator, - 'user_tags_removed': EventTypeArg._user_tags_removed_validator, - 'email_ingest_receive_file': EventTypeArg._email_ingest_receive_file_validator, - 'file_request_auto_close': EventTypeArg._file_request_auto_close_validator, - 'file_request_change': EventTypeArg._file_request_change_validator, - 'file_request_close': EventTypeArg._file_request_close_validator, - 'file_request_create': EventTypeArg._file_request_create_validator, - 'file_request_delete': EventTypeArg._file_request_delete_validator, - 'file_request_receive_file': EventTypeArg._file_request_receive_file_validator, - 'group_add_external_id': EventTypeArg._group_add_external_id_validator, - 'group_add_member': EventTypeArg._group_add_member_validator, - 'group_change_external_id': EventTypeArg._group_change_external_id_validator, - 'group_change_management_type': EventTypeArg._group_change_management_type_validator, - 'group_change_member_role': EventTypeArg._group_change_member_role_validator, - 'group_create': EventTypeArg._group_create_validator, - 'group_delete': EventTypeArg._group_delete_validator, - 'group_description_updated': EventTypeArg._group_description_updated_validator, - 'group_external_sharing_setting_override_changed': EventTypeArg._group_external_sharing_setting_override_changed_validator, - 'group_join_policy_updated': EventTypeArg._group_join_policy_updated_validator, - 'group_moved': EventTypeArg._group_moved_validator, - 'group_remove_external_id': EventTypeArg._group_remove_external_id_validator, - 'group_remove_member': EventTypeArg._group_remove_member_validator, - 'group_rename': EventTypeArg._group_rename_validator, - 'account_lock_or_unlocked': EventTypeArg._account_lock_or_unlocked_validator, - 'emm_error': EventTypeArg._emm_error_validator, - 'guest_admin_signed_in_via_trusted_teams': EventTypeArg._guest_admin_signed_in_via_trusted_teams_validator, - 'guest_admin_signed_out_via_trusted_teams': EventTypeArg._guest_admin_signed_out_via_trusted_teams_validator, - 'login_fail': EventTypeArg._login_fail_validator, - 'login_success': EventTypeArg._login_success_validator, - 'logout': EventTypeArg._logout_validator, - 'reseller_support_session_end': EventTypeArg._reseller_support_session_end_validator, - 'reseller_support_session_start': EventTypeArg._reseller_support_session_start_validator, - 'sign_in_as_session_end': EventTypeArg._sign_in_as_session_end_validator, - 'sign_in_as_session_start': EventTypeArg._sign_in_as_session_start_validator, - 'sso_error': EventTypeArg._sso_error_validator, - 'addon_assigned': EventTypeArg._addon_assigned_validator, - 'addon_removed': EventTypeArg._addon_removed_validator, - 'backup_admin_invitation_sent': EventTypeArg._backup_admin_invitation_sent_validator, - 'backup_invitation_opened': EventTypeArg._backup_invitation_opened_validator, - 'create_team_invite_link': EventTypeArg._create_team_invite_link_validator, - 'delete_team_invite_link': EventTypeArg._delete_team_invite_link_validator, - 'member_add_external_id': EventTypeArg._member_add_external_id_validator, - 'member_add_name': EventTypeArg._member_add_name_validator, - 'member_change_admin_role': EventTypeArg._member_change_admin_role_validator, - 'member_change_email': EventTypeArg._member_change_email_validator, - 'member_change_external_id': EventTypeArg._member_change_external_id_validator, - 'member_change_membership_type': EventTypeArg._member_change_membership_type_validator, - 'member_change_name': EventTypeArg._member_change_name_validator, - 'member_change_reseller_role': EventTypeArg._member_change_reseller_role_validator, - 'member_change_status': EventTypeArg._member_change_status_validator, - 'member_delete_manual_contacts': EventTypeArg._member_delete_manual_contacts_validator, - 'member_delete_profile_photo': EventTypeArg._member_delete_profile_photo_validator, - 'member_permanently_delete_account_contents': EventTypeArg._member_permanently_delete_account_contents_validator, - 'member_remove_external_id': EventTypeArg._member_remove_external_id_validator, - 'member_set_profile_photo': EventTypeArg._member_set_profile_photo_validator, - 'member_space_limits_add_custom_quota': EventTypeArg._member_space_limits_add_custom_quota_validator, - 'member_space_limits_change_custom_quota': EventTypeArg._member_space_limits_change_custom_quota_validator, - 'member_space_limits_change_status': EventTypeArg._member_space_limits_change_status_validator, - 'member_space_limits_remove_custom_quota': EventTypeArg._member_space_limits_remove_custom_quota_validator, - 'member_suggest': EventTypeArg._member_suggest_validator, - 'member_transfer_account_contents': EventTypeArg._member_transfer_account_contents_validator, - 'pending_secondary_email_added': EventTypeArg._pending_secondary_email_added_validator, - 'product_assigned_to_member': EventTypeArg._product_assigned_to_member_validator, - 'product_removed_from_member': EventTypeArg._product_removed_from_member_validator, - 'secondary_email_deleted': EventTypeArg._secondary_email_deleted_validator, - 'secondary_email_verified': EventTypeArg._secondary_email_verified_validator, - 'secondary_mails_policy_changed': EventTypeArg._secondary_mails_policy_changed_validator, - 'binder_add_page': EventTypeArg._binder_add_page_validator, - 'binder_add_section': EventTypeArg._binder_add_section_validator, - 'binder_remove_page': EventTypeArg._binder_remove_page_validator, - 'binder_remove_section': EventTypeArg._binder_remove_section_validator, - 'binder_rename_page': EventTypeArg._binder_rename_page_validator, - 'binder_rename_section': EventTypeArg._binder_rename_section_validator, - 'binder_reorder_page': EventTypeArg._binder_reorder_page_validator, - 'binder_reorder_section': EventTypeArg._binder_reorder_section_validator, - 'paper_content_add_member': EventTypeArg._paper_content_add_member_validator, - 'paper_content_add_to_folder': EventTypeArg._paper_content_add_to_folder_validator, - 'paper_content_archive': EventTypeArg._paper_content_archive_validator, - 'paper_content_create': EventTypeArg._paper_content_create_validator, - 'paper_content_permanently_delete': EventTypeArg._paper_content_permanently_delete_validator, - 'paper_content_remove_from_folder': EventTypeArg._paper_content_remove_from_folder_validator, - 'paper_content_remove_member': EventTypeArg._paper_content_remove_member_validator, - 'paper_content_rename': EventTypeArg._paper_content_rename_validator, - 'paper_content_restore': EventTypeArg._paper_content_restore_validator, - 'paper_doc_add_comment': EventTypeArg._paper_doc_add_comment_validator, - 'paper_doc_change_member_role': EventTypeArg._paper_doc_change_member_role_validator, - 'paper_doc_change_sharing_policy': EventTypeArg._paper_doc_change_sharing_policy_validator, - 'paper_doc_change_subscription': EventTypeArg._paper_doc_change_subscription_validator, - 'paper_doc_deleted': EventTypeArg._paper_doc_deleted_validator, - 'paper_doc_delete_comment': EventTypeArg._paper_doc_delete_comment_validator, - 'paper_doc_download': EventTypeArg._paper_doc_download_validator, - 'paper_doc_edit': EventTypeArg._paper_doc_edit_validator, - 'paper_doc_edit_comment': EventTypeArg._paper_doc_edit_comment_validator, - 'paper_doc_followed': EventTypeArg._paper_doc_followed_validator, - 'paper_doc_mention': EventTypeArg._paper_doc_mention_validator, - 'paper_doc_ownership_changed': EventTypeArg._paper_doc_ownership_changed_validator, - 'paper_doc_request_access': EventTypeArg._paper_doc_request_access_validator, - 'paper_doc_resolve_comment': EventTypeArg._paper_doc_resolve_comment_validator, - 'paper_doc_revert': EventTypeArg._paper_doc_revert_validator, - 'paper_doc_slack_share': EventTypeArg._paper_doc_slack_share_validator, - 'paper_doc_team_invite': EventTypeArg._paper_doc_team_invite_validator, - 'paper_doc_trashed': EventTypeArg._paper_doc_trashed_validator, - 'paper_doc_unresolve_comment': EventTypeArg._paper_doc_unresolve_comment_validator, - 'paper_doc_untrashed': EventTypeArg._paper_doc_untrashed_validator, - 'paper_doc_view': EventTypeArg._paper_doc_view_validator, - 'paper_external_view_allow': EventTypeArg._paper_external_view_allow_validator, - 'paper_external_view_default_team': EventTypeArg._paper_external_view_default_team_validator, - 'paper_external_view_forbid': EventTypeArg._paper_external_view_forbid_validator, - 'paper_folder_change_subscription': EventTypeArg._paper_folder_change_subscription_validator, - 'paper_folder_deleted': EventTypeArg._paper_folder_deleted_validator, - 'paper_folder_followed': EventTypeArg._paper_folder_followed_validator, - 'paper_folder_team_invite': EventTypeArg._paper_folder_team_invite_validator, - 'paper_published_link_change_permission': EventTypeArg._paper_published_link_change_permission_validator, - 'paper_published_link_create': EventTypeArg._paper_published_link_create_validator, - 'paper_published_link_disabled': EventTypeArg._paper_published_link_disabled_validator, - 'paper_published_link_view': EventTypeArg._paper_published_link_view_validator, - 'password_change': EventTypeArg._password_change_validator, - 'password_reset': EventTypeArg._password_reset_validator, - 'password_reset_all': EventTypeArg._password_reset_all_validator, - 'protect_internal_domains_changed': EventTypeArg._protect_internal_domains_changed_validator, - 'classification_create_report': EventTypeArg._classification_create_report_validator, - 'classification_create_report_fail': EventTypeArg._classification_create_report_fail_validator, - 'emm_create_exceptions_report': EventTypeArg._emm_create_exceptions_report_validator, - 'emm_create_usage_report': EventTypeArg._emm_create_usage_report_validator, - 'export_members_report': EventTypeArg._export_members_report_validator, - 'export_members_report_fail': EventTypeArg._export_members_report_fail_validator, - 'external_sharing_create_report': EventTypeArg._external_sharing_create_report_validator, - 'external_sharing_report_failed': EventTypeArg._external_sharing_report_failed_validator, - 'member_access_details_create_report': EventTypeArg._member_access_details_create_report_validator, - 'member_access_details_create_report_failed': EventTypeArg._member_access_details_create_report_failed_validator, - 'no_expiration_link_gen_create_report': EventTypeArg._no_expiration_link_gen_create_report_validator, - 'no_expiration_link_gen_report_failed': EventTypeArg._no_expiration_link_gen_report_failed_validator, - 'no_password_link_gen_create_report': EventTypeArg._no_password_link_gen_create_report_validator, - 'no_password_link_gen_report_failed': EventTypeArg._no_password_link_gen_report_failed_validator, - 'no_password_link_view_create_report': EventTypeArg._no_password_link_view_create_report_validator, - 'no_password_link_view_report_failed': EventTypeArg._no_password_link_view_report_failed_validator, - 'outdated_link_view_create_report': EventTypeArg._outdated_link_view_create_report_validator, - 'outdated_link_view_report_failed': EventTypeArg._outdated_link_view_report_failed_validator, - 'paper_admin_export_start': EventTypeArg._paper_admin_export_start_validator, - 'ransomware_alert_create_report': EventTypeArg._ransomware_alert_create_report_validator, - 'ransomware_alert_create_report_failed': EventTypeArg._ransomware_alert_create_report_failed_validator, - 'shared_folders_create_report': EventTypeArg._shared_folders_create_report_validator, - 'shared_folders_create_report_failed': EventTypeArg._shared_folders_create_report_failed_validator, - 'smart_sync_create_admin_privilege_report': EventTypeArg._smart_sync_create_admin_privilege_report_validator, - 'team_activity_create_report': EventTypeArg._team_activity_create_report_validator, - 'team_activity_create_report_fail': EventTypeArg._team_activity_create_report_fail_validator, - 'team_folders_create_report': EventTypeArg._team_folders_create_report_validator, - 'team_folders_create_report_failed': EventTypeArg._team_folders_create_report_failed_validator, - 'team_storage_create_report': EventTypeArg._team_storage_create_report_validator, - 'team_storage_create_report_failed': EventTypeArg._team_storage_create_report_failed_validator, - 'collection_share': EventTypeArg._collection_share_validator, - 'file_transfers_file_add': EventTypeArg._file_transfers_file_add_validator, - 'file_transfers_transfer_delete': EventTypeArg._file_transfers_transfer_delete_validator, - 'file_transfers_transfer_download': EventTypeArg._file_transfers_transfer_download_validator, - 'file_transfers_transfer_send': EventTypeArg._file_transfers_transfer_send_validator, - 'file_transfers_transfer_view': EventTypeArg._file_transfers_transfer_view_validator, - 'media_hub_project_team_add': EventTypeArg._media_hub_project_team_add_validator, - 'media_hub_project_team_delete': EventTypeArg._media_hub_project_team_delete_validator, - 'media_hub_project_team_role_changed': EventTypeArg._media_hub_project_team_role_changed_validator, - 'media_hub_shared_link_audience_changed': EventTypeArg._media_hub_shared_link_audience_changed_validator, - 'media_hub_shared_link_created': EventTypeArg._media_hub_shared_link_created_validator, - 'media_hub_shared_link_download_setting_changed': EventTypeArg._media_hub_shared_link_download_setting_changed_validator, - 'media_hub_shared_link_revoked': EventTypeArg._media_hub_shared_link_revoked_validator, - 'note_acl_invite_only': EventTypeArg._note_acl_invite_only_validator, - 'note_acl_link': EventTypeArg._note_acl_link_validator, - 'note_acl_team_link': EventTypeArg._note_acl_team_link_validator, - 'note_shared': EventTypeArg._note_shared_validator, - 'note_share_receive': EventTypeArg._note_share_receive_validator, - 'open_note_shared': EventTypeArg._open_note_shared_validator, - 'replay_file_shared_link_created': EventTypeArg._replay_file_shared_link_created_validator, - 'replay_file_shared_link_modified': EventTypeArg._replay_file_shared_link_modified_validator, - 'replay_project_team_add': EventTypeArg._replay_project_team_add_validator, - 'replay_project_team_delete': EventTypeArg._replay_project_team_delete_validator, - 'send_and_track_file_added': EventTypeArg._send_and_track_file_added_validator, - 'send_and_track_file_renamed': EventTypeArg._send_and_track_file_renamed_validator, - 'send_and_track_file_updated': EventTypeArg._send_and_track_file_updated_validator, - 'send_and_track_link_created': EventTypeArg._send_and_track_link_created_validator, - 'send_and_track_link_deleted': EventTypeArg._send_and_track_link_deleted_validator, - 'send_and_track_link_updated': EventTypeArg._send_and_track_link_updated_validator, - 'send_and_track_link_viewed': EventTypeArg._send_and_track_link_viewed_validator, - 'send_and_track_removed_file_and_associated_links': EventTypeArg._send_and_track_removed_file_and_associated_links_validator, - 'sf_add_group': EventTypeArg._sf_add_group_validator, - 'sf_allow_non_members_to_view_shared_links': EventTypeArg._sf_allow_non_members_to_view_shared_links_validator, - 'sf_external_invite_warn': EventTypeArg._sf_external_invite_warn_validator, - 'sf_fb_invite': EventTypeArg._sf_fb_invite_validator, - 'sf_fb_invite_change_role': EventTypeArg._sf_fb_invite_change_role_validator, - 'sf_fb_uninvite': EventTypeArg._sf_fb_uninvite_validator, - 'sf_invite_group': EventTypeArg._sf_invite_group_validator, - 'sf_team_grant_access': EventTypeArg._sf_team_grant_access_validator, - 'sf_team_invite': EventTypeArg._sf_team_invite_validator, - 'sf_team_invite_change_role': EventTypeArg._sf_team_invite_change_role_validator, - 'sf_team_join': EventTypeArg._sf_team_join_validator, - 'sf_team_join_from_oob_link': EventTypeArg._sf_team_join_from_oob_link_validator, - 'sf_team_uninvite': EventTypeArg._sf_team_uninvite_validator, - 'shared_content_add_invitees': EventTypeArg._shared_content_add_invitees_validator, - 'shared_content_add_link_expiry': EventTypeArg._shared_content_add_link_expiry_validator, - 'shared_content_add_link_password': EventTypeArg._shared_content_add_link_password_validator, - 'shared_content_add_member': EventTypeArg._shared_content_add_member_validator, - 'shared_content_change_downloads_policy': EventTypeArg._shared_content_change_downloads_policy_validator, - 'shared_content_change_invitee_role': EventTypeArg._shared_content_change_invitee_role_validator, - 'shared_content_change_link_audience': EventTypeArg._shared_content_change_link_audience_validator, - 'shared_content_change_link_expiry': EventTypeArg._shared_content_change_link_expiry_validator, - 'shared_content_change_link_password': EventTypeArg._shared_content_change_link_password_validator, - 'shared_content_change_member_role': EventTypeArg._shared_content_change_member_role_validator, - 'shared_content_change_viewer_info_policy': EventTypeArg._shared_content_change_viewer_info_policy_validator, - 'shared_content_claim_invitation': EventTypeArg._shared_content_claim_invitation_validator, - 'shared_content_copy': EventTypeArg._shared_content_copy_validator, - 'shared_content_download': EventTypeArg._shared_content_download_validator, - 'shared_content_relinquish_membership': EventTypeArg._shared_content_relinquish_membership_validator, - 'shared_content_remove_invitees': EventTypeArg._shared_content_remove_invitees_validator, - 'shared_content_remove_link_expiry': EventTypeArg._shared_content_remove_link_expiry_validator, - 'shared_content_remove_link_password': EventTypeArg._shared_content_remove_link_password_validator, - 'shared_content_remove_member': EventTypeArg._shared_content_remove_member_validator, - 'shared_content_request_access': EventTypeArg._shared_content_request_access_validator, - 'shared_content_restore_invitees': EventTypeArg._shared_content_restore_invitees_validator, - 'shared_content_restore_member': EventTypeArg._shared_content_restore_member_validator, - 'shared_content_unshare': EventTypeArg._shared_content_unshare_validator, - 'shared_content_view': EventTypeArg._shared_content_view_validator, - 'shared_folder_change_link_policy': EventTypeArg._shared_folder_change_link_policy_validator, - 'shared_folder_change_members_inheritance_policy': EventTypeArg._shared_folder_change_members_inheritance_policy_validator, - 'shared_folder_change_members_management_policy': EventTypeArg._shared_folder_change_members_management_policy_validator, - 'shared_folder_change_members_policy': EventTypeArg._shared_folder_change_members_policy_validator, - 'shared_folder_create': EventTypeArg._shared_folder_create_validator, - 'shared_folder_decline_invitation': EventTypeArg._shared_folder_decline_invitation_validator, - 'shared_folder_mount': EventTypeArg._shared_folder_mount_validator, - 'shared_folder_nest': EventTypeArg._shared_folder_nest_validator, - 'shared_folder_transfer_ownership': EventTypeArg._shared_folder_transfer_ownership_validator, - 'shared_folder_unmount': EventTypeArg._shared_folder_unmount_validator, - 'shared_link_add_expiry': EventTypeArg._shared_link_add_expiry_validator, - 'shared_link_change_expiry': EventTypeArg._shared_link_change_expiry_validator, - 'shared_link_change_visibility': EventTypeArg._shared_link_change_visibility_validator, - 'shared_link_copy': EventTypeArg._shared_link_copy_validator, - 'shared_link_create': EventTypeArg._shared_link_create_validator, - 'shared_link_disable': EventTypeArg._shared_link_disable_validator, - 'shared_link_download': EventTypeArg._shared_link_download_validator, - 'shared_link_remove_expiry': EventTypeArg._shared_link_remove_expiry_validator, - 'shared_link_remove_visitor': EventTypeArg._shared_link_remove_visitor_validator, - 'shared_link_settings_add_expiration': EventTypeArg._shared_link_settings_add_expiration_validator, - 'shared_link_settings_add_password': EventTypeArg._shared_link_settings_add_password_validator, - 'shared_link_settings_allow_download_disabled': EventTypeArg._shared_link_settings_allow_download_disabled_validator, - 'shared_link_settings_allow_download_enabled': EventTypeArg._shared_link_settings_allow_download_enabled_validator, - 'shared_link_settings_change_audience': EventTypeArg._shared_link_settings_change_audience_validator, - 'shared_link_settings_change_expiration': EventTypeArg._shared_link_settings_change_expiration_validator, - 'shared_link_settings_change_password': EventTypeArg._shared_link_settings_change_password_validator, - 'shared_link_settings_remove_expiration': EventTypeArg._shared_link_settings_remove_expiration_validator, - 'shared_link_settings_remove_password': EventTypeArg._shared_link_settings_remove_password_validator, - 'shared_link_share': EventTypeArg._shared_link_share_validator, - 'shared_link_view': EventTypeArg._shared_link_view_validator, - 'shared_note_opened': EventTypeArg._shared_note_opened_validator, - 'shmodel_disable_downloads': EventTypeArg._shmodel_disable_downloads_validator, - 'shmodel_enable_downloads': EventTypeArg._shmodel_enable_downloads_validator, - 'shmodel_group_share': EventTypeArg._shmodel_group_share_validator, - 'showcase_access_granted': EventTypeArg._showcase_access_granted_validator, - 'showcase_add_member': EventTypeArg._showcase_add_member_validator, - 'showcase_archived': EventTypeArg._showcase_archived_validator, - 'showcase_created': EventTypeArg._showcase_created_validator, - 'showcase_delete_comment': EventTypeArg._showcase_delete_comment_validator, - 'showcase_edited': EventTypeArg._showcase_edited_validator, - 'showcase_edit_comment': EventTypeArg._showcase_edit_comment_validator, - 'showcase_file_added': EventTypeArg._showcase_file_added_validator, - 'showcase_file_download': EventTypeArg._showcase_file_download_validator, - 'showcase_file_removed': EventTypeArg._showcase_file_removed_validator, - 'showcase_file_view': EventTypeArg._showcase_file_view_validator, - 'showcase_permanently_deleted': EventTypeArg._showcase_permanently_deleted_validator, - 'showcase_post_comment': EventTypeArg._showcase_post_comment_validator, - 'showcase_remove_member': EventTypeArg._showcase_remove_member_validator, - 'showcase_renamed': EventTypeArg._showcase_renamed_validator, - 'showcase_request_access': EventTypeArg._showcase_request_access_validator, - 'showcase_resolve_comment': EventTypeArg._showcase_resolve_comment_validator, - 'showcase_restored': EventTypeArg._showcase_restored_validator, - 'showcase_trashed': EventTypeArg._showcase_trashed_validator, - 'showcase_trashed_deprecated': EventTypeArg._showcase_trashed_deprecated_validator, - 'showcase_unresolve_comment': EventTypeArg._showcase_unresolve_comment_validator, - 'showcase_untrashed': EventTypeArg._showcase_untrashed_validator, - 'showcase_untrashed_deprecated': EventTypeArg._showcase_untrashed_deprecated_validator, - 'showcase_view': EventTypeArg._showcase_view_validator, - 'sign_signature_request_canceled': EventTypeArg._sign_signature_request_canceled_validator, - 'sign_signature_request_completed': EventTypeArg._sign_signature_request_completed_validator, - 'sign_signature_request_declined': EventTypeArg._sign_signature_request_declined_validator, - 'sign_signature_request_opened': EventTypeArg._sign_signature_request_opened_validator, - 'sign_signature_request_reminder_sent': EventTypeArg._sign_signature_request_reminder_sent_validator, - 'sign_signature_request_sent': EventTypeArg._sign_signature_request_sent_validator, - 'sign_template_created': EventTypeArg._sign_template_created_validator, - 'sign_template_shared': EventTypeArg._sign_template_shared_validator, - 'risc_security_event': EventTypeArg._risc_security_event_validator, - 'sso_add_cert': EventTypeArg._sso_add_cert_validator, - 'sso_add_login_url': EventTypeArg._sso_add_login_url_validator, - 'sso_add_logout_url': EventTypeArg._sso_add_logout_url_validator, - 'sso_change_cert': EventTypeArg._sso_change_cert_validator, - 'sso_change_login_url': EventTypeArg._sso_change_login_url_validator, - 'sso_change_logout_url': EventTypeArg._sso_change_logout_url_validator, - 'sso_change_saml_identity_mode': EventTypeArg._sso_change_saml_identity_mode_validator, - 'sso_remove_cert': EventTypeArg._sso_remove_cert_validator, - 'sso_remove_login_url': EventTypeArg._sso_remove_login_url_validator, - 'sso_remove_logout_url': EventTypeArg._sso_remove_logout_url_validator, - 'team_folder_change_status': EventTypeArg._team_folder_change_status_validator, - 'team_folder_create': EventTypeArg._team_folder_create_validator, - 'team_folder_downgrade': EventTypeArg._team_folder_downgrade_validator, - 'team_folder_permanently_delete': EventTypeArg._team_folder_permanently_delete_validator, - 'team_folder_rename': EventTypeArg._team_folder_rename_validator, - 'team_folder_space_limits_change_caps_type': EventTypeArg._team_folder_space_limits_change_caps_type_validator, - 'team_folder_space_limits_change_limit': EventTypeArg._team_folder_space_limits_change_limit_validator, - 'team_folder_space_limits_change_notification_target': EventTypeArg._team_folder_space_limits_change_notification_target_validator, - 'team_selective_sync_settings_changed': EventTypeArg._team_selective_sync_settings_changed_validator, - 'account_capture_change_policy': EventTypeArg._account_capture_change_policy_validator, - 'admin_email_reminders_changed': EventTypeArg._admin_email_reminders_changed_validator, - 'ai_third_party_sharing_dropbox_base_policy_changed': EventTypeArg._ai_third_party_sharing_dropbox_base_policy_changed_validator, - 'allow_download_disabled': EventTypeArg._allow_download_disabled_validator, - 'allow_download_enabled': EventTypeArg._allow_download_enabled_validator, - 'apple_login_change_policy': EventTypeArg._apple_login_change_policy_validator, - 'app_permissions_changed': EventTypeArg._app_permissions_changed_validator, - 'camera_uploads_policy_changed': EventTypeArg._camera_uploads_policy_changed_validator, - 'capture_team_space_policy_changed': EventTypeArg._capture_team_space_policy_changed_validator, - 'capture_transcript_policy_changed': EventTypeArg._capture_transcript_policy_changed_validator, - 'classification_change_policy': EventTypeArg._classification_change_policy_validator, - 'computer_backup_policy_changed': EventTypeArg._computer_backup_policy_changed_validator, - 'content_administration_policy_changed': EventTypeArg._content_administration_policy_changed_validator, - 'content_deletion_protection_change_policy': EventTypeArg._content_deletion_protection_change_policy_validator, - 'dash_external_sharing_policy_changed': EventTypeArg._dash_external_sharing_policy_changed_validator, - 'data_placement_restriction_change_policy': EventTypeArg._data_placement_restriction_change_policy_validator, - 'data_placement_restriction_satisfy_policy': EventTypeArg._data_placement_restriction_satisfy_policy_validator, - 'device_approvals_add_exception': EventTypeArg._device_approvals_add_exception_validator, - 'device_approvals_change_desktop_policy': EventTypeArg._device_approvals_change_desktop_policy_validator, - 'device_approvals_change_mobile_policy': EventTypeArg._device_approvals_change_mobile_policy_validator, - 'device_approvals_change_overage_action': EventTypeArg._device_approvals_change_overage_action_validator, - 'device_approvals_change_unlink_action': EventTypeArg._device_approvals_change_unlink_action_validator, - 'device_approvals_remove_exception': EventTypeArg._device_approvals_remove_exception_validator, - 'directory_restrictions_add_members': EventTypeArg._directory_restrictions_add_members_validator, - 'directory_restrictions_remove_members': EventTypeArg._directory_restrictions_remove_members_validator, - 'dropbox_passwords_policy_changed': EventTypeArg._dropbox_passwords_policy_changed_validator, - 'email_ingest_policy_changed': EventTypeArg._email_ingest_policy_changed_validator, - 'emm_add_exception': EventTypeArg._emm_add_exception_validator, - 'emm_change_policy': EventTypeArg._emm_change_policy_validator, - 'emm_remove_exception': EventTypeArg._emm_remove_exception_validator, - 'extended_version_history_change_policy': EventTypeArg._extended_version_history_change_policy_validator, - 'external_drive_backup_policy_changed': EventTypeArg._external_drive_backup_policy_changed_validator, - 'file_comments_change_policy': EventTypeArg._file_comments_change_policy_validator, - 'file_locking_policy_changed': EventTypeArg._file_locking_policy_changed_validator, - 'file_provider_migration_policy_changed': EventTypeArg._file_provider_migration_policy_changed_validator, - 'file_requests_change_policy': EventTypeArg._file_requests_change_policy_validator, - 'file_requests_emails_enabled': EventTypeArg._file_requests_emails_enabled_validator, - 'file_requests_emails_restricted_to_team_only': EventTypeArg._file_requests_emails_restricted_to_team_only_validator, - 'file_transfers_policy_changed': EventTypeArg._file_transfers_policy_changed_validator, - 'flexible_file_names_policy_changed': EventTypeArg._flexible_file_names_policy_changed_validator, - 'folder_link_restriction_policy_changed': EventTypeArg._folder_link_restriction_policy_changed_validator, - 'google_sso_change_policy': EventTypeArg._google_sso_change_policy_validator, - 'group_user_management_change_policy': EventTypeArg._group_user_management_change_policy_validator, - 'integration_policy_changed': EventTypeArg._integration_policy_changed_validator, - 'invite_acceptance_email_policy_changed': EventTypeArg._invite_acceptance_email_policy_changed_validator, - 'media_hub_adding_people_policy_changed': EventTypeArg._media_hub_adding_people_policy_changed_validator, - 'media_hub_download_policy_changed': EventTypeArg._media_hub_download_policy_changed_validator, - 'media_hub_link_sharing_policy_changed': EventTypeArg._media_hub_link_sharing_policy_changed_validator, - 'member_requests_change_policy': EventTypeArg._member_requests_change_policy_validator, - 'member_send_invite_policy_changed': EventTypeArg._member_send_invite_policy_changed_validator, - 'member_space_limits_add_exception': EventTypeArg._member_space_limits_add_exception_validator, - 'member_space_limits_change_caps_type_policy': EventTypeArg._member_space_limits_change_caps_type_policy_validator, - 'member_space_limits_change_policy': EventTypeArg._member_space_limits_change_policy_validator, - 'member_space_limits_remove_exception': EventTypeArg._member_space_limits_remove_exception_validator, - 'member_suggestions_change_policy': EventTypeArg._member_suggestions_change_policy_validator, - 'microsoft_login_change_policy': EventTypeArg._microsoft_login_change_policy_validator, - 'microsoft_office_addin_change_policy': EventTypeArg._microsoft_office_addin_change_policy_validator, - 'multi_team_identity_policy_changed': EventTypeArg._multi_team_identity_policy_changed_validator, - 'network_control_change_policy': EventTypeArg._network_control_change_policy_validator, - 'paper_change_deployment_policy': EventTypeArg._paper_change_deployment_policy_validator, - 'paper_change_member_link_policy': EventTypeArg._paper_change_member_link_policy_validator, - 'paper_change_member_policy': EventTypeArg._paper_change_member_policy_validator, - 'paper_change_policy': EventTypeArg._paper_change_policy_validator, - 'paper_default_folder_policy_changed': EventTypeArg._paper_default_folder_policy_changed_validator, - 'paper_desktop_policy_changed': EventTypeArg._paper_desktop_policy_changed_validator, - 'paper_enabled_users_group_addition': EventTypeArg._paper_enabled_users_group_addition_validator, - 'paper_enabled_users_group_removal': EventTypeArg._paper_enabled_users_group_removal_validator, - 'passkey_login_policy_changed': EventTypeArg._passkey_login_policy_changed_validator, - 'password_strength_requirements_change_policy': EventTypeArg._password_strength_requirements_change_policy_validator, - 'permanent_delete_change_policy': EventTypeArg._permanent_delete_change_policy_validator, - 'previews_ai_policy_changed': EventTypeArg._previews_ai_policy_changed_validator, - 'replay_adding_people_policy_changed': EventTypeArg._replay_adding_people_policy_changed_validator, - 'replay_sharing_policy_changed': EventTypeArg._replay_sharing_policy_changed_validator, - 'reseller_support_change_policy': EventTypeArg._reseller_support_change_policy_validator, - 'rewind_policy_changed': EventTypeArg._rewind_policy_changed_validator, - 'send_and_track_policy_changed': EventTypeArg._send_and_track_policy_changed_validator, - 'send_external_sharing_policy_changed': EventTypeArg._send_external_sharing_policy_changed_validator, - 'send_for_signature_policy_changed': EventTypeArg._send_for_signature_policy_changed_validator, - 'shared_link_default_permissions_policy_changed': EventTypeArg._shared_link_default_permissions_policy_changed_validator, - 'sharing_change_folder_join_policy': EventTypeArg._sharing_change_folder_join_policy_validator, - 'sharing_change_link_allow_change_expiration_policy': EventTypeArg._sharing_change_link_allow_change_expiration_policy_validator, - 'sharing_change_link_default_expiration_policy': EventTypeArg._sharing_change_link_default_expiration_policy_validator, - 'sharing_change_link_enforce_password_policy': EventTypeArg._sharing_change_link_enforce_password_policy_validator, - 'sharing_change_link_policy': EventTypeArg._sharing_change_link_policy_validator, - 'sharing_change_member_policy': EventTypeArg._sharing_change_member_policy_validator, - 'showcase_change_download_policy': EventTypeArg._showcase_change_download_policy_validator, - 'showcase_change_enabled_policy': EventTypeArg._showcase_change_enabled_policy_validator, - 'showcase_change_external_sharing_policy': EventTypeArg._showcase_change_external_sharing_policy_validator, - 'sign_external_sharing_policy_changed': EventTypeArg._sign_external_sharing_policy_changed_validator, - 'sign_template_creation_permission_changed': EventTypeArg._sign_template_creation_permission_changed_validator, - 'smarter_smart_sync_policy_changed': EventTypeArg._smarter_smart_sync_policy_changed_validator, - 'smart_sync_change_policy': EventTypeArg._smart_sync_change_policy_validator, - 'smart_sync_not_opt_out': EventTypeArg._smart_sync_not_opt_out_validator, - 'smart_sync_opt_out': EventTypeArg._smart_sync_opt_out_validator, - 'sso_change_policy': EventTypeArg._sso_change_policy_validator, - 'stack_cross_team_access_policy_changed': EventTypeArg._stack_cross_team_access_policy_changed_validator, - 'team_branding_policy_changed': EventTypeArg._team_branding_policy_changed_validator, - 'team_extensions_policy_changed': EventTypeArg._team_extensions_policy_changed_validator, - 'team_member_storage_request_policy_changed': EventTypeArg._team_member_storage_request_policy_changed_validator, - 'team_selective_sync_policy_changed': EventTypeArg._team_selective_sync_policy_changed_validator, - 'team_sharing_whitelist_subjects_changed': EventTypeArg._team_sharing_whitelist_subjects_changed_validator, - 'tfa_add_exception': EventTypeArg._tfa_add_exception_validator, - 'tfa_change_policy': EventTypeArg._tfa_change_policy_validator, - 'tfa_remove_exception': EventTypeArg._tfa_remove_exception_validator, - 'top_level_content_policy_changed': EventTypeArg._top_level_content_policy_changed_validator, - 'two_account_change_policy': EventTypeArg._two_account_change_policy_validator, - 'viewer_info_policy_changed': EventTypeArg._viewer_info_policy_changed_validator, - 'watermarking_policy_changed': EventTypeArg._watermarking_policy_changed_validator, - 'web_sessions_change_active_session_limit': EventTypeArg._web_sessions_change_active_session_limit_validator, - 'web_sessions_change_fixed_length_policy': EventTypeArg._web_sessions_change_fixed_length_policy_validator, - 'web_sessions_change_idle_length_policy': EventTypeArg._web_sessions_change_idle_length_policy_validator, - 'data_residency_migration_request_successful': EventTypeArg._data_residency_migration_request_successful_validator, - 'data_residency_migration_request_unsuccessful': EventTypeArg._data_residency_migration_request_unsuccessful_validator, - 'team_merge_from': EventTypeArg._team_merge_from_validator, - 'team_merge_to': EventTypeArg._team_merge_to_validator, - 'team_profile_add_background': EventTypeArg._team_profile_add_background_validator, - 'team_profile_add_logo': EventTypeArg._team_profile_add_logo_validator, - 'team_profile_change_background': EventTypeArg._team_profile_change_background_validator, - 'team_profile_change_default_language': EventTypeArg._team_profile_change_default_language_validator, - 'team_profile_change_logo': EventTypeArg._team_profile_change_logo_validator, - 'team_profile_change_name': EventTypeArg._team_profile_change_name_validator, - 'team_profile_remove_background': EventTypeArg._team_profile_remove_background_validator, - 'team_profile_remove_logo': EventTypeArg._team_profile_remove_logo_validator, - 'passkey_add': EventTypeArg._passkey_add_validator, - 'passkey_remove': EventTypeArg._passkey_remove_validator, - 'tfa_add_backup_phone': EventTypeArg._tfa_add_backup_phone_validator, - 'tfa_add_security_key': EventTypeArg._tfa_add_security_key_validator, - 'tfa_change_backup_phone': EventTypeArg._tfa_change_backup_phone_validator, - 'tfa_change_status': EventTypeArg._tfa_change_status_validator, - 'tfa_remove_backup_phone': EventTypeArg._tfa_remove_backup_phone_validator, - 'tfa_remove_security_key': EventTypeArg._tfa_remove_security_key_validator, - 'tfa_reset': EventTypeArg._tfa_reset_validator, - 'changed_enterprise_admin_role': EventTypeArg._changed_enterprise_admin_role_validator, - 'changed_enterprise_connected_team_status': EventTypeArg._changed_enterprise_connected_team_status_validator, - 'ended_enterprise_admin_session': EventTypeArg._ended_enterprise_admin_session_validator, - 'ended_enterprise_admin_session_deprecated': EventTypeArg._ended_enterprise_admin_session_deprecated_validator, - 'enterprise_settings_locking': EventTypeArg._enterprise_settings_locking_validator, - 'guest_admin_change_status': EventTypeArg._guest_admin_change_status_validator, - 'started_enterprise_admin_session': EventTypeArg._started_enterprise_admin_session_validator, - 'team_merge_request_accepted': EventTypeArg._team_merge_request_accepted_validator, - 'team_merge_request_accepted_shown_to_primary_team': EventTypeArg._team_merge_request_accepted_shown_to_primary_team_validator, - 'team_merge_request_accepted_shown_to_secondary_team': EventTypeArg._team_merge_request_accepted_shown_to_secondary_team_validator, - 'team_merge_request_auto_canceled': EventTypeArg._team_merge_request_auto_canceled_validator, - 'team_merge_request_canceled': EventTypeArg._team_merge_request_canceled_validator, - 'team_merge_request_canceled_shown_to_primary_team': EventTypeArg._team_merge_request_canceled_shown_to_primary_team_validator, - 'team_merge_request_canceled_shown_to_secondary_team': EventTypeArg._team_merge_request_canceled_shown_to_secondary_team_validator, - 'team_merge_request_expired': EventTypeArg._team_merge_request_expired_validator, - 'team_merge_request_expired_shown_to_primary_team': EventTypeArg._team_merge_request_expired_shown_to_primary_team_validator, - 'team_merge_request_expired_shown_to_secondary_team': EventTypeArg._team_merge_request_expired_shown_to_secondary_team_validator, - 'team_merge_request_rejected_shown_to_primary_team': EventTypeArg._team_merge_request_rejected_shown_to_primary_team_validator, - 'team_merge_request_rejected_shown_to_secondary_team': EventTypeArg._team_merge_request_rejected_shown_to_secondary_team_validator, - 'team_merge_request_reminder': EventTypeArg._team_merge_request_reminder_validator, - 'team_merge_request_reminder_shown_to_primary_team': EventTypeArg._team_merge_request_reminder_shown_to_primary_team_validator, - 'team_merge_request_reminder_shown_to_secondary_team': EventTypeArg._team_merge_request_reminder_shown_to_secondary_team_validator, - 'team_merge_request_revoked': EventTypeArg._team_merge_request_revoked_validator, - 'team_merge_request_sent_shown_to_primary_team': EventTypeArg._team_merge_request_sent_shown_to_primary_team_validator, - 'team_merge_request_sent_shown_to_secondary_team': EventTypeArg._team_merge_request_sent_shown_to_secondary_team_validator, - 'other': EventTypeArg._other_validator, + "admin_alerting_alert_state_changed": EventTypeArg._admin_alerting_alert_state_changed_validator, + "admin_alerting_changed_alert_config": EventTypeArg._admin_alerting_changed_alert_config_validator, + "admin_alerting_triggered_alert": EventTypeArg._admin_alerting_triggered_alert_validator, + "ransomware_restore_process_completed": EventTypeArg._ransomware_restore_process_completed_validator, + "ransomware_restore_process_started": EventTypeArg._ransomware_restore_process_started_validator, + "app_blocked_by_permissions": EventTypeArg._app_blocked_by_permissions_validator, + "app_link_team": EventTypeArg._app_link_team_validator, + "app_link_user": EventTypeArg._app_link_user_validator, + "app_unlink_team": EventTypeArg._app_unlink_team_validator, + "app_unlink_user": EventTypeArg._app_unlink_user_validator, + "integration_connected": EventTypeArg._integration_connected_validator, + "integration_disconnected": EventTypeArg._integration_disconnected_validator, + "file_add_comment": EventTypeArg._file_add_comment_validator, + "file_change_comment_subscription": EventTypeArg._file_change_comment_subscription_validator, + "file_delete_comment": EventTypeArg._file_delete_comment_validator, + "file_edit_comment": EventTypeArg._file_edit_comment_validator, + "file_like_comment": EventTypeArg._file_like_comment_validator, + "file_resolve_comment": EventTypeArg._file_resolve_comment_validator, + "file_unlike_comment": EventTypeArg._file_unlike_comment_validator, + "file_unresolve_comment": EventTypeArg._file_unresolve_comment_validator, + "dash_added_comment_to_stack": EventTypeArg._dash_added_comment_to_stack_validator, + "dash_added_connector": EventTypeArg._dash_added_connector_validator, + "dash_added_link_to_stack": EventTypeArg._dash_added_link_to_stack_validator, + "dash_added_team_email_domain_allowlist": EventTypeArg._dash_added_team_email_domain_allowlist_validator, + "dash_admin_added_org_wide_connector": EventTypeArg._dash_admin_added_org_wide_connector_validator, + "dash_admin_disabled_connector": EventTypeArg._dash_admin_disabled_connector_validator, + "dash_admin_enabled_connector": EventTypeArg._dash_admin_enabled_connector_validator, + "dash_admin_removed_org_wide_connector": EventTypeArg._dash_admin_removed_org_wide_connector_validator, + "dash_archived_stack": EventTypeArg._dash_archived_stack_validator, + "dash_changed_audience_of_shared_link_to_stack": EventTypeArg._dash_changed_audience_of_shared_link_to_stack_validator, + "dash_cloned_stack": EventTypeArg._dash_cloned_stack_validator, + "dash_connector_tools_call": EventTypeArg._dash_connector_tools_call_validator, + "dash_created_stack": EventTypeArg._dash_created_stack_validator, + "dash_deleted_comment_from_stack": EventTypeArg._dash_deleted_comment_from_stack_validator, + "dash_deleted_stack": EventTypeArg._dash_deleted_stack_validator, + "dash_edited_comment_in_stack": EventTypeArg._dash_edited_comment_in_stack_validator, + "dash_external_user_opened_stack": EventTypeArg._dash_external_user_opened_stack_validator, + "dash_first_launched_desktop": EventTypeArg._dash_first_launched_desktop_validator, + "dash_first_launched_extension": EventTypeArg._dash_first_launched_extension_validator, + "dash_first_launched_web_start_page": EventTypeArg._dash_first_launched_web_start_page_validator, + "dash_opened_shared_link_to_stack": EventTypeArg._dash_opened_shared_link_to_stack_validator, + "dash_opened_stack": EventTypeArg._dash_opened_stack_validator, + "dash_preview_opt_out_status_changed": EventTypeArg._dash_preview_opt_out_status_changed_validator, + "dash_removed_connector": EventTypeArg._dash_removed_connector_validator, + "dash_removed_link_from_stack": EventTypeArg._dash_removed_link_from_stack_validator, + "dash_removed_shared_link_to_stack": EventTypeArg._dash_removed_shared_link_to_stack_validator, + "dash_removed_team_email_domain_allowlist": EventTypeArg._dash_removed_team_email_domain_allowlist_validator, + "dash_renamed_stack": EventTypeArg._dash_renamed_stack_validator, + "dash_shared_link_to_stack": EventTypeArg._dash_shared_link_to_stack_validator, + "dash_unarchived_stack": EventTypeArg._dash_unarchived_stack_validator, + "dash_viewed_company_stack": EventTypeArg._dash_viewed_company_stack_validator, + "dash_viewed_external_ai_activity_report": EventTypeArg._dash_viewed_external_ai_activity_report_validator, + "governance_policy_add_folders": EventTypeArg._governance_policy_add_folders_validator, + "governance_policy_add_folder_failed": EventTypeArg._governance_policy_add_folder_failed_validator, + "governance_policy_content_disposed": EventTypeArg._governance_policy_content_disposed_validator, + "governance_policy_create": EventTypeArg._governance_policy_create_validator, + "governance_policy_delete": EventTypeArg._governance_policy_delete_validator, + "governance_policy_edit_details": EventTypeArg._governance_policy_edit_details_validator, + "governance_policy_edit_duration": EventTypeArg._governance_policy_edit_duration_validator, + "governance_policy_export_created": EventTypeArg._governance_policy_export_created_validator, + "governance_policy_export_removed": EventTypeArg._governance_policy_export_removed_validator, + "governance_policy_remove_folders": EventTypeArg._governance_policy_remove_folders_validator, + "governance_policy_report_created": EventTypeArg._governance_policy_report_created_validator, + "governance_policy_zip_part_downloaded": EventTypeArg._governance_policy_zip_part_downloaded_validator, + "legal_holds_activate_a_hold": EventTypeArg._legal_holds_activate_a_hold_validator, + "legal_holds_add_members": EventTypeArg._legal_holds_add_members_validator, + "legal_holds_change_hold_details": EventTypeArg._legal_holds_change_hold_details_validator, + "legal_holds_change_hold_name": EventTypeArg._legal_holds_change_hold_name_validator, + "legal_holds_export_a_hold": EventTypeArg._legal_holds_export_a_hold_validator, + "legal_holds_export_cancelled": EventTypeArg._legal_holds_export_cancelled_validator, + "legal_holds_export_downloaded": EventTypeArg._legal_holds_export_downloaded_validator, + "legal_holds_export_removed": EventTypeArg._legal_holds_export_removed_validator, + "legal_holds_release_a_hold": EventTypeArg._legal_holds_release_a_hold_validator, + "legal_holds_remove_members": EventTypeArg._legal_holds_remove_members_validator, + "legal_holds_report_a_hold": EventTypeArg._legal_holds_report_a_hold_validator, + "device_change_ip_desktop": EventTypeArg._device_change_ip_desktop_validator, + "device_change_ip_mobile": EventTypeArg._device_change_ip_mobile_validator, + "device_change_ip_web": EventTypeArg._device_change_ip_web_validator, + "device_delete_on_unlink_fail": EventTypeArg._device_delete_on_unlink_fail_validator, + "device_delete_on_unlink_success": EventTypeArg._device_delete_on_unlink_success_validator, + "device_link_fail": EventTypeArg._device_link_fail_validator, + "device_link_success": EventTypeArg._device_link_success_validator, + "device_management_disabled": EventTypeArg._device_management_disabled_validator, + "device_management_enabled": EventTypeArg._device_management_enabled_validator, + "device_sync_backup_status_changed": EventTypeArg._device_sync_backup_status_changed_validator, + "device_unlink": EventTypeArg._device_unlink_validator, + "dropbox_passwords_exported": EventTypeArg._dropbox_passwords_exported_validator, + "dropbox_passwords_new_device_enrolled": EventTypeArg._dropbox_passwords_new_device_enrolled_validator, + "emm_refresh_auth_token": EventTypeArg._emm_refresh_auth_token_validator, + "external_drive_backup_eligibility_status_checked": EventTypeArg._external_drive_backup_eligibility_status_checked_validator, + "external_drive_backup_status_changed": EventTypeArg._external_drive_backup_status_changed_validator, + "account_capture_change_availability": EventTypeArg._account_capture_change_availability_validator, + "account_capture_migrate_account": EventTypeArg._account_capture_migrate_account_validator, + "account_capture_notification_emails_sent": EventTypeArg._account_capture_notification_emails_sent_validator, + "account_capture_relinquish_account": EventTypeArg._account_capture_relinquish_account_validator, + "disabled_domain_invites": EventTypeArg._disabled_domain_invites_validator, + "domain_invites_approve_request_to_join_team": EventTypeArg._domain_invites_approve_request_to_join_team_validator, + "domain_invites_decline_request_to_join_team": EventTypeArg._domain_invites_decline_request_to_join_team_validator, + "domain_invites_email_existing_users": EventTypeArg._domain_invites_email_existing_users_validator, + "domain_invites_request_to_join_team": EventTypeArg._domain_invites_request_to_join_team_validator, + "domain_invites_set_invite_new_user_pref_to_no": EventTypeArg._domain_invites_set_invite_new_user_pref_to_no_validator, + "domain_invites_set_invite_new_user_pref_to_yes": EventTypeArg._domain_invites_set_invite_new_user_pref_to_yes_validator, + "domain_verification_add_domain_fail": EventTypeArg._domain_verification_add_domain_fail_validator, + "domain_verification_add_domain_success": EventTypeArg._domain_verification_add_domain_success_validator, + "domain_verification_remove_domain": EventTypeArg._domain_verification_remove_domain_validator, + "enabled_domain_invites": EventTypeArg._enabled_domain_invites_validator, + "encrypted_folder_cancel_team_key_rotation": EventTypeArg._encrypted_folder_cancel_team_key_rotation_validator, + "encrypted_folder_enroll_backup_key": EventTypeArg._encrypted_folder_enroll_backup_key_validator, + "encrypted_folder_enroll_client": EventTypeArg._encrypted_folder_enroll_client_validator, + "encrypted_folder_enroll_team": EventTypeArg._encrypted_folder_enroll_team_validator, + "encrypted_folder_finish_team_unenrollment": EventTypeArg._encrypted_folder_finish_team_unenrollment_validator, + "encrypted_folder_init_team_key_rotation": EventTypeArg._encrypted_folder_init_team_key_rotation_validator, + "encrypted_folder_init_team_unenrollment": EventTypeArg._encrypted_folder_init_team_unenrollment_validator, + "encrypted_folder_remove_backup_key": EventTypeArg._encrypted_folder_remove_backup_key_validator, + "encrypted_folder_rotate_team_key": EventTypeArg._encrypted_folder_rotate_team_key_validator, + "encrypted_folder_unenroll_client": EventTypeArg._encrypted_folder_unenroll_client_validator, + "team_encryption_key_activate_key": EventTypeArg._team_encryption_key_activate_key_validator, + "team_encryption_key_cancel_key_deletion": EventTypeArg._team_encryption_key_cancel_key_deletion_validator, + "team_encryption_key_create_key": EventTypeArg._team_encryption_key_create_key_validator, + "team_encryption_key_deactivate_key": EventTypeArg._team_encryption_key_deactivate_key_validator, + "team_encryption_key_delete_key": EventTypeArg._team_encryption_key_delete_key_validator, + "team_encryption_key_disable_key": EventTypeArg._team_encryption_key_disable_key_validator, + "team_encryption_key_enable_key": EventTypeArg._team_encryption_key_enable_key_validator, + "team_encryption_key_rotate_key": EventTypeArg._team_encryption_key_rotate_key_validator, + "team_encryption_key_schedule_key_deletion": EventTypeArg._team_encryption_key_schedule_key_deletion_validator, + "apply_naming_convention": EventTypeArg._apply_naming_convention_validator, + "create_folder": EventTypeArg._create_folder_validator, + "file_add": EventTypeArg._file_add_validator, + "file_add_from_automation": EventTypeArg._file_add_from_automation_validator, + "file_copy": EventTypeArg._file_copy_validator, + "file_delete": EventTypeArg._file_delete_validator, + "file_download": EventTypeArg._file_download_validator, + "file_edit": EventTypeArg._file_edit_validator, + "file_get_copy_reference": EventTypeArg._file_get_copy_reference_validator, + "file_locking_lock_status_changed": EventTypeArg._file_locking_lock_status_changed_validator, + "file_move": EventTypeArg._file_move_validator, + "file_permanently_delete": EventTypeArg._file_permanently_delete_validator, + "file_preview": EventTypeArg._file_preview_validator, + "file_rename": EventTypeArg._file_rename_validator, + "file_restore": EventTypeArg._file_restore_validator, + "file_revert": EventTypeArg._file_revert_validator, + "file_rollback_changes": EventTypeArg._file_rollback_changes_validator, + "file_save_copy_reference": EventTypeArg._file_save_copy_reference_validator, + "folder_overview_description_changed": EventTypeArg._folder_overview_description_changed_validator, + "folder_overview_item_pinned": EventTypeArg._folder_overview_item_pinned_validator, + "folder_overview_item_unpinned": EventTypeArg._folder_overview_item_unpinned_validator, + "media_hub_file_downloaded": EventTypeArg._media_hub_file_downloaded_validator, + "object_label_added": EventTypeArg._object_label_added_validator, + "object_label_removed": EventTypeArg._object_label_removed_validator, + "object_label_updated_value": EventTypeArg._object_label_updated_value_validator, + "organize_folder_with_tidy": EventTypeArg._organize_folder_with_tidy_validator, + "replay_file_delete": EventTypeArg._replay_file_delete_validator, + "replay_file_downloaded": EventTypeArg._replay_file_downloaded_validator, + "replay_team_project_created": EventTypeArg._replay_team_project_created_validator, + "rewind_folder": EventTypeArg._rewind_folder_validator, + "undo_naming_convention": EventTypeArg._undo_naming_convention_validator, + "undo_organize_folder_with_tidy": EventTypeArg._undo_organize_folder_with_tidy_validator, + "user_tags_added": EventTypeArg._user_tags_added_validator, + "user_tags_removed": EventTypeArg._user_tags_removed_validator, + "email_ingest_receive_file": EventTypeArg._email_ingest_receive_file_validator, + "file_request_auto_close": EventTypeArg._file_request_auto_close_validator, + "file_request_change": EventTypeArg._file_request_change_validator, + "file_request_close": EventTypeArg._file_request_close_validator, + "file_request_create": EventTypeArg._file_request_create_validator, + "file_request_delete": EventTypeArg._file_request_delete_validator, + "file_request_receive_file": EventTypeArg._file_request_receive_file_validator, + "group_add_external_id": EventTypeArg._group_add_external_id_validator, + "group_add_member": EventTypeArg._group_add_member_validator, + "group_change_external_id": EventTypeArg._group_change_external_id_validator, + "group_change_management_type": EventTypeArg._group_change_management_type_validator, + "group_change_member_role": EventTypeArg._group_change_member_role_validator, + "group_create": EventTypeArg._group_create_validator, + "group_delete": EventTypeArg._group_delete_validator, + "group_description_updated": EventTypeArg._group_description_updated_validator, + "group_external_sharing_setting_override_changed": EventTypeArg._group_external_sharing_setting_override_changed_validator, + "group_join_policy_updated": EventTypeArg._group_join_policy_updated_validator, + "group_moved": EventTypeArg._group_moved_validator, + "group_remove_external_id": EventTypeArg._group_remove_external_id_validator, + "group_remove_member": EventTypeArg._group_remove_member_validator, + "group_rename": EventTypeArg._group_rename_validator, + "account_lock_or_unlocked": EventTypeArg._account_lock_or_unlocked_validator, + "emm_error": EventTypeArg._emm_error_validator, + "guest_admin_signed_in_via_trusted_teams": EventTypeArg._guest_admin_signed_in_via_trusted_teams_validator, + "guest_admin_signed_out_via_trusted_teams": EventTypeArg._guest_admin_signed_out_via_trusted_teams_validator, + "login_fail": EventTypeArg._login_fail_validator, + "login_success": EventTypeArg._login_success_validator, + "logout": EventTypeArg._logout_validator, + "reseller_support_session_end": EventTypeArg._reseller_support_session_end_validator, + "reseller_support_session_start": EventTypeArg._reseller_support_session_start_validator, + "sign_in_as_session_end": EventTypeArg._sign_in_as_session_end_validator, + "sign_in_as_session_start": EventTypeArg._sign_in_as_session_start_validator, + "sso_error": EventTypeArg._sso_error_validator, + "addon_assigned": EventTypeArg._addon_assigned_validator, + "addon_removed": EventTypeArg._addon_removed_validator, + "backup_admin_invitation_sent": EventTypeArg._backup_admin_invitation_sent_validator, + "backup_invitation_opened": EventTypeArg._backup_invitation_opened_validator, + "create_team_invite_link": EventTypeArg._create_team_invite_link_validator, + "delete_team_invite_link": EventTypeArg._delete_team_invite_link_validator, + "member_add_external_id": EventTypeArg._member_add_external_id_validator, + "member_add_name": EventTypeArg._member_add_name_validator, + "member_change_admin_role": EventTypeArg._member_change_admin_role_validator, + "member_change_email": EventTypeArg._member_change_email_validator, + "member_change_external_id": EventTypeArg._member_change_external_id_validator, + "member_change_membership_type": EventTypeArg._member_change_membership_type_validator, + "member_change_name": EventTypeArg._member_change_name_validator, + "member_change_reseller_role": EventTypeArg._member_change_reseller_role_validator, + "member_change_status": EventTypeArg._member_change_status_validator, + "member_delete_manual_contacts": EventTypeArg._member_delete_manual_contacts_validator, + "member_delete_profile_photo": EventTypeArg._member_delete_profile_photo_validator, + "member_permanently_delete_account_contents": EventTypeArg._member_permanently_delete_account_contents_validator, + "member_remove_external_id": EventTypeArg._member_remove_external_id_validator, + "member_set_profile_photo": EventTypeArg._member_set_profile_photo_validator, + "member_space_limits_add_custom_quota": EventTypeArg._member_space_limits_add_custom_quota_validator, + "member_space_limits_change_custom_quota": EventTypeArg._member_space_limits_change_custom_quota_validator, + "member_space_limits_change_status": EventTypeArg._member_space_limits_change_status_validator, + "member_space_limits_remove_custom_quota": EventTypeArg._member_space_limits_remove_custom_quota_validator, + "member_suggest": EventTypeArg._member_suggest_validator, + "member_transfer_account_contents": EventTypeArg._member_transfer_account_contents_validator, + "pending_secondary_email_added": EventTypeArg._pending_secondary_email_added_validator, + "product_assigned_to_member": EventTypeArg._product_assigned_to_member_validator, + "product_removed_from_member": EventTypeArg._product_removed_from_member_validator, + "secondary_email_deleted": EventTypeArg._secondary_email_deleted_validator, + "secondary_email_verified": EventTypeArg._secondary_email_verified_validator, + "secondary_mails_policy_changed": EventTypeArg._secondary_mails_policy_changed_validator, + "binder_add_page": EventTypeArg._binder_add_page_validator, + "binder_add_section": EventTypeArg._binder_add_section_validator, + "binder_remove_page": EventTypeArg._binder_remove_page_validator, + "binder_remove_section": EventTypeArg._binder_remove_section_validator, + "binder_rename_page": EventTypeArg._binder_rename_page_validator, + "binder_rename_section": EventTypeArg._binder_rename_section_validator, + "binder_reorder_page": EventTypeArg._binder_reorder_page_validator, + "binder_reorder_section": EventTypeArg._binder_reorder_section_validator, + "paper_content_add_member": EventTypeArg._paper_content_add_member_validator, + "paper_content_add_to_folder": EventTypeArg._paper_content_add_to_folder_validator, + "paper_content_archive": EventTypeArg._paper_content_archive_validator, + "paper_content_create": EventTypeArg._paper_content_create_validator, + "paper_content_permanently_delete": EventTypeArg._paper_content_permanently_delete_validator, + "paper_content_remove_from_folder": EventTypeArg._paper_content_remove_from_folder_validator, + "paper_content_remove_member": EventTypeArg._paper_content_remove_member_validator, + "paper_content_rename": EventTypeArg._paper_content_rename_validator, + "paper_content_restore": EventTypeArg._paper_content_restore_validator, + "paper_doc_add_comment": EventTypeArg._paper_doc_add_comment_validator, + "paper_doc_change_member_role": EventTypeArg._paper_doc_change_member_role_validator, + "paper_doc_change_sharing_policy": EventTypeArg._paper_doc_change_sharing_policy_validator, + "paper_doc_change_subscription": EventTypeArg._paper_doc_change_subscription_validator, + "paper_doc_deleted": EventTypeArg._paper_doc_deleted_validator, + "paper_doc_delete_comment": EventTypeArg._paper_doc_delete_comment_validator, + "paper_doc_download": EventTypeArg._paper_doc_download_validator, + "paper_doc_edit": EventTypeArg._paper_doc_edit_validator, + "paper_doc_edit_comment": EventTypeArg._paper_doc_edit_comment_validator, + "paper_doc_followed": EventTypeArg._paper_doc_followed_validator, + "paper_doc_mention": EventTypeArg._paper_doc_mention_validator, + "paper_doc_ownership_changed": EventTypeArg._paper_doc_ownership_changed_validator, + "paper_doc_request_access": EventTypeArg._paper_doc_request_access_validator, + "paper_doc_resolve_comment": EventTypeArg._paper_doc_resolve_comment_validator, + "paper_doc_revert": EventTypeArg._paper_doc_revert_validator, + "paper_doc_slack_share": EventTypeArg._paper_doc_slack_share_validator, + "paper_doc_team_invite": EventTypeArg._paper_doc_team_invite_validator, + "paper_doc_trashed": EventTypeArg._paper_doc_trashed_validator, + "paper_doc_unresolve_comment": EventTypeArg._paper_doc_unresolve_comment_validator, + "paper_doc_untrashed": EventTypeArg._paper_doc_untrashed_validator, + "paper_doc_view": EventTypeArg._paper_doc_view_validator, + "paper_external_view_allow": EventTypeArg._paper_external_view_allow_validator, + "paper_external_view_default_team": EventTypeArg._paper_external_view_default_team_validator, + "paper_external_view_forbid": EventTypeArg._paper_external_view_forbid_validator, + "paper_folder_change_subscription": EventTypeArg._paper_folder_change_subscription_validator, + "paper_folder_deleted": EventTypeArg._paper_folder_deleted_validator, + "paper_folder_followed": EventTypeArg._paper_folder_followed_validator, + "paper_folder_team_invite": EventTypeArg._paper_folder_team_invite_validator, + "paper_published_link_change_permission": EventTypeArg._paper_published_link_change_permission_validator, + "paper_published_link_create": EventTypeArg._paper_published_link_create_validator, + "paper_published_link_disabled": EventTypeArg._paper_published_link_disabled_validator, + "paper_published_link_view": EventTypeArg._paper_published_link_view_validator, + "password_change": EventTypeArg._password_change_validator, + "password_reset": EventTypeArg._password_reset_validator, + "password_reset_all": EventTypeArg._password_reset_all_validator, + "protect_internal_domains_changed": EventTypeArg._protect_internal_domains_changed_validator, + "classification_create_report": EventTypeArg._classification_create_report_validator, + "classification_create_report_fail": EventTypeArg._classification_create_report_fail_validator, + "emm_create_exceptions_report": EventTypeArg._emm_create_exceptions_report_validator, + "emm_create_usage_report": EventTypeArg._emm_create_usage_report_validator, + "export_members_report": EventTypeArg._export_members_report_validator, + "export_members_report_fail": EventTypeArg._export_members_report_fail_validator, + "external_sharing_create_report": EventTypeArg._external_sharing_create_report_validator, + "external_sharing_report_failed": EventTypeArg._external_sharing_report_failed_validator, + "member_access_details_create_report": EventTypeArg._member_access_details_create_report_validator, + "member_access_details_create_report_failed": EventTypeArg._member_access_details_create_report_failed_validator, + "no_expiration_link_gen_create_report": EventTypeArg._no_expiration_link_gen_create_report_validator, + "no_expiration_link_gen_report_failed": EventTypeArg._no_expiration_link_gen_report_failed_validator, + "no_password_link_gen_create_report": EventTypeArg._no_password_link_gen_create_report_validator, + "no_password_link_gen_report_failed": EventTypeArg._no_password_link_gen_report_failed_validator, + "no_password_link_view_create_report": EventTypeArg._no_password_link_view_create_report_validator, + "no_password_link_view_report_failed": EventTypeArg._no_password_link_view_report_failed_validator, + "outdated_link_view_create_report": EventTypeArg._outdated_link_view_create_report_validator, + "outdated_link_view_report_failed": EventTypeArg._outdated_link_view_report_failed_validator, + "paper_admin_export_start": EventTypeArg._paper_admin_export_start_validator, + "ransomware_alert_create_report": EventTypeArg._ransomware_alert_create_report_validator, + "ransomware_alert_create_report_failed": EventTypeArg._ransomware_alert_create_report_failed_validator, + "shared_folders_create_report": EventTypeArg._shared_folders_create_report_validator, + "shared_folders_create_report_failed": EventTypeArg._shared_folders_create_report_failed_validator, + "smart_sync_create_admin_privilege_report": EventTypeArg._smart_sync_create_admin_privilege_report_validator, + "team_activity_create_report": EventTypeArg._team_activity_create_report_validator, + "team_activity_create_report_fail": EventTypeArg._team_activity_create_report_fail_validator, + "team_folders_create_report": EventTypeArg._team_folders_create_report_validator, + "team_folders_create_report_failed": EventTypeArg._team_folders_create_report_failed_validator, + "team_storage_create_report": EventTypeArg._team_storage_create_report_validator, + "team_storage_create_report_failed": EventTypeArg._team_storage_create_report_failed_validator, + "collection_share": EventTypeArg._collection_share_validator, + "file_transfers_file_add": EventTypeArg._file_transfers_file_add_validator, + "file_transfers_transfer_delete": EventTypeArg._file_transfers_transfer_delete_validator, + "file_transfers_transfer_download": EventTypeArg._file_transfers_transfer_download_validator, + "file_transfers_transfer_send": EventTypeArg._file_transfers_transfer_send_validator, + "file_transfers_transfer_view": EventTypeArg._file_transfers_transfer_view_validator, + "media_hub_project_team_add": EventTypeArg._media_hub_project_team_add_validator, + "media_hub_project_team_delete": EventTypeArg._media_hub_project_team_delete_validator, + "media_hub_project_team_role_changed": EventTypeArg._media_hub_project_team_role_changed_validator, + "media_hub_shared_link_audience_changed": EventTypeArg._media_hub_shared_link_audience_changed_validator, + "media_hub_shared_link_created": EventTypeArg._media_hub_shared_link_created_validator, + "media_hub_shared_link_download_setting_changed": EventTypeArg._media_hub_shared_link_download_setting_changed_validator, + "media_hub_shared_link_revoked": EventTypeArg._media_hub_shared_link_revoked_validator, + "note_acl_invite_only": EventTypeArg._note_acl_invite_only_validator, + "note_acl_link": EventTypeArg._note_acl_link_validator, + "note_acl_team_link": EventTypeArg._note_acl_team_link_validator, + "note_shared": EventTypeArg._note_shared_validator, + "note_share_receive": EventTypeArg._note_share_receive_validator, + "open_note_shared": EventTypeArg._open_note_shared_validator, + "replay_file_shared_link_created": EventTypeArg._replay_file_shared_link_created_validator, + "replay_file_shared_link_modified": EventTypeArg._replay_file_shared_link_modified_validator, + "replay_project_team_add": EventTypeArg._replay_project_team_add_validator, + "replay_project_team_delete": EventTypeArg._replay_project_team_delete_validator, + "send_and_track_file_added": EventTypeArg._send_and_track_file_added_validator, + "send_and_track_file_renamed": EventTypeArg._send_and_track_file_renamed_validator, + "send_and_track_file_updated": EventTypeArg._send_and_track_file_updated_validator, + "send_and_track_link_created": EventTypeArg._send_and_track_link_created_validator, + "send_and_track_link_deleted": EventTypeArg._send_and_track_link_deleted_validator, + "send_and_track_link_updated": EventTypeArg._send_and_track_link_updated_validator, + "send_and_track_link_viewed": EventTypeArg._send_and_track_link_viewed_validator, + "send_and_track_removed_file_and_associated_links": EventTypeArg._send_and_track_removed_file_and_associated_links_validator, + "sf_add_group": EventTypeArg._sf_add_group_validator, + "sf_allow_non_members_to_view_shared_links": EventTypeArg._sf_allow_non_members_to_view_shared_links_validator, + "sf_external_invite_warn": EventTypeArg._sf_external_invite_warn_validator, + "sf_fb_invite": EventTypeArg._sf_fb_invite_validator, + "sf_fb_invite_change_role": EventTypeArg._sf_fb_invite_change_role_validator, + "sf_fb_uninvite": EventTypeArg._sf_fb_uninvite_validator, + "sf_invite_group": EventTypeArg._sf_invite_group_validator, + "sf_team_grant_access": EventTypeArg._sf_team_grant_access_validator, + "sf_team_invite": EventTypeArg._sf_team_invite_validator, + "sf_team_invite_change_role": EventTypeArg._sf_team_invite_change_role_validator, + "sf_team_join": EventTypeArg._sf_team_join_validator, + "sf_team_join_from_oob_link": EventTypeArg._sf_team_join_from_oob_link_validator, + "sf_team_uninvite": EventTypeArg._sf_team_uninvite_validator, + "shared_content_add_invitees": EventTypeArg._shared_content_add_invitees_validator, + "shared_content_add_link_expiry": EventTypeArg._shared_content_add_link_expiry_validator, + "shared_content_add_link_password": EventTypeArg._shared_content_add_link_password_validator, + "shared_content_add_member": EventTypeArg._shared_content_add_member_validator, + "shared_content_change_downloads_policy": EventTypeArg._shared_content_change_downloads_policy_validator, + "shared_content_change_invitee_role": EventTypeArg._shared_content_change_invitee_role_validator, + "shared_content_change_link_audience": EventTypeArg._shared_content_change_link_audience_validator, + "shared_content_change_link_expiry": EventTypeArg._shared_content_change_link_expiry_validator, + "shared_content_change_link_password": EventTypeArg._shared_content_change_link_password_validator, + "shared_content_change_member_role": EventTypeArg._shared_content_change_member_role_validator, + "shared_content_change_viewer_info_policy": EventTypeArg._shared_content_change_viewer_info_policy_validator, + "shared_content_claim_invitation": EventTypeArg._shared_content_claim_invitation_validator, + "shared_content_copy": EventTypeArg._shared_content_copy_validator, + "shared_content_download": EventTypeArg._shared_content_download_validator, + "shared_content_relinquish_membership": EventTypeArg._shared_content_relinquish_membership_validator, + "shared_content_remove_invitees": EventTypeArg._shared_content_remove_invitees_validator, + "shared_content_remove_link_expiry": EventTypeArg._shared_content_remove_link_expiry_validator, + "shared_content_remove_link_password": EventTypeArg._shared_content_remove_link_password_validator, + "shared_content_remove_member": EventTypeArg._shared_content_remove_member_validator, + "shared_content_request_access": EventTypeArg._shared_content_request_access_validator, + "shared_content_restore_invitees": EventTypeArg._shared_content_restore_invitees_validator, + "shared_content_restore_member": EventTypeArg._shared_content_restore_member_validator, + "shared_content_unshare": EventTypeArg._shared_content_unshare_validator, + "shared_content_view": EventTypeArg._shared_content_view_validator, + "shared_folder_change_link_policy": EventTypeArg._shared_folder_change_link_policy_validator, + "shared_folder_change_members_inheritance_policy": EventTypeArg._shared_folder_change_members_inheritance_policy_validator, + "shared_folder_change_members_management_policy": EventTypeArg._shared_folder_change_members_management_policy_validator, + "shared_folder_change_members_policy": EventTypeArg._shared_folder_change_members_policy_validator, + "shared_folder_create": EventTypeArg._shared_folder_create_validator, + "shared_folder_decline_invitation": EventTypeArg._shared_folder_decline_invitation_validator, + "shared_folder_mount": EventTypeArg._shared_folder_mount_validator, + "shared_folder_nest": EventTypeArg._shared_folder_nest_validator, + "shared_folder_transfer_ownership": EventTypeArg._shared_folder_transfer_ownership_validator, + "shared_folder_unmount": EventTypeArg._shared_folder_unmount_validator, + "shared_link_add_expiry": EventTypeArg._shared_link_add_expiry_validator, + "shared_link_change_expiry": EventTypeArg._shared_link_change_expiry_validator, + "shared_link_change_visibility": EventTypeArg._shared_link_change_visibility_validator, + "shared_link_copy": EventTypeArg._shared_link_copy_validator, + "shared_link_create": EventTypeArg._shared_link_create_validator, + "shared_link_disable": EventTypeArg._shared_link_disable_validator, + "shared_link_download": EventTypeArg._shared_link_download_validator, + "shared_link_remove_expiry": EventTypeArg._shared_link_remove_expiry_validator, + "shared_link_remove_visitor": EventTypeArg._shared_link_remove_visitor_validator, + "shared_link_settings_add_expiration": EventTypeArg._shared_link_settings_add_expiration_validator, + "shared_link_settings_add_password": EventTypeArg._shared_link_settings_add_password_validator, + "shared_link_settings_allow_download_disabled": EventTypeArg._shared_link_settings_allow_download_disabled_validator, + "shared_link_settings_allow_download_enabled": EventTypeArg._shared_link_settings_allow_download_enabled_validator, + "shared_link_settings_change_audience": EventTypeArg._shared_link_settings_change_audience_validator, + "shared_link_settings_change_expiration": EventTypeArg._shared_link_settings_change_expiration_validator, + "shared_link_settings_change_password": EventTypeArg._shared_link_settings_change_password_validator, + "shared_link_settings_remove_expiration": EventTypeArg._shared_link_settings_remove_expiration_validator, + "shared_link_settings_remove_password": EventTypeArg._shared_link_settings_remove_password_validator, + "shared_link_share": EventTypeArg._shared_link_share_validator, + "shared_link_view": EventTypeArg._shared_link_view_validator, + "shared_note_opened": EventTypeArg._shared_note_opened_validator, + "shmodel_disable_downloads": EventTypeArg._shmodel_disable_downloads_validator, + "shmodel_enable_downloads": EventTypeArg._shmodel_enable_downloads_validator, + "shmodel_group_share": EventTypeArg._shmodel_group_share_validator, + "showcase_access_granted": EventTypeArg._showcase_access_granted_validator, + "showcase_add_member": EventTypeArg._showcase_add_member_validator, + "showcase_archived": EventTypeArg._showcase_archived_validator, + "showcase_created": EventTypeArg._showcase_created_validator, + "showcase_delete_comment": EventTypeArg._showcase_delete_comment_validator, + "showcase_edited": EventTypeArg._showcase_edited_validator, + "showcase_edit_comment": EventTypeArg._showcase_edit_comment_validator, + "showcase_file_added": EventTypeArg._showcase_file_added_validator, + "showcase_file_download": EventTypeArg._showcase_file_download_validator, + "showcase_file_removed": EventTypeArg._showcase_file_removed_validator, + "showcase_file_view": EventTypeArg._showcase_file_view_validator, + "showcase_permanently_deleted": EventTypeArg._showcase_permanently_deleted_validator, + "showcase_post_comment": EventTypeArg._showcase_post_comment_validator, + "showcase_remove_member": EventTypeArg._showcase_remove_member_validator, + "showcase_renamed": EventTypeArg._showcase_renamed_validator, + "showcase_request_access": EventTypeArg._showcase_request_access_validator, + "showcase_resolve_comment": EventTypeArg._showcase_resolve_comment_validator, + "showcase_restored": EventTypeArg._showcase_restored_validator, + "showcase_trashed": EventTypeArg._showcase_trashed_validator, + "showcase_trashed_deprecated": EventTypeArg._showcase_trashed_deprecated_validator, + "showcase_unresolve_comment": EventTypeArg._showcase_unresolve_comment_validator, + "showcase_untrashed": EventTypeArg._showcase_untrashed_validator, + "showcase_untrashed_deprecated": EventTypeArg._showcase_untrashed_deprecated_validator, + "showcase_view": EventTypeArg._showcase_view_validator, + "sign_signature_request_canceled": EventTypeArg._sign_signature_request_canceled_validator, + "sign_signature_request_completed": EventTypeArg._sign_signature_request_completed_validator, + "sign_signature_request_declined": EventTypeArg._sign_signature_request_declined_validator, + "sign_signature_request_opened": EventTypeArg._sign_signature_request_opened_validator, + "sign_signature_request_reminder_sent": EventTypeArg._sign_signature_request_reminder_sent_validator, + "sign_signature_request_sent": EventTypeArg._sign_signature_request_sent_validator, + "sign_template_created": EventTypeArg._sign_template_created_validator, + "sign_template_shared": EventTypeArg._sign_template_shared_validator, + "risc_security_event": EventTypeArg._risc_security_event_validator, + "sso_add_cert": EventTypeArg._sso_add_cert_validator, + "sso_add_login_url": EventTypeArg._sso_add_login_url_validator, + "sso_add_logout_url": EventTypeArg._sso_add_logout_url_validator, + "sso_change_cert": EventTypeArg._sso_change_cert_validator, + "sso_change_login_url": EventTypeArg._sso_change_login_url_validator, + "sso_change_logout_url": EventTypeArg._sso_change_logout_url_validator, + "sso_change_saml_identity_mode": EventTypeArg._sso_change_saml_identity_mode_validator, + "sso_remove_cert": EventTypeArg._sso_remove_cert_validator, + "sso_remove_login_url": EventTypeArg._sso_remove_login_url_validator, + "sso_remove_logout_url": EventTypeArg._sso_remove_logout_url_validator, + "team_folder_change_status": EventTypeArg._team_folder_change_status_validator, + "team_folder_create": EventTypeArg._team_folder_create_validator, + "team_folder_downgrade": EventTypeArg._team_folder_downgrade_validator, + "team_folder_permanently_delete": EventTypeArg._team_folder_permanently_delete_validator, + "team_folder_rename": EventTypeArg._team_folder_rename_validator, + "team_folder_space_limits_change_caps_type": EventTypeArg._team_folder_space_limits_change_caps_type_validator, + "team_folder_space_limits_change_limit": EventTypeArg._team_folder_space_limits_change_limit_validator, + "team_folder_space_limits_change_notification_target": EventTypeArg._team_folder_space_limits_change_notification_target_validator, + "team_selective_sync_settings_changed": EventTypeArg._team_selective_sync_settings_changed_validator, + "account_capture_change_policy": EventTypeArg._account_capture_change_policy_validator, + "admin_email_reminders_changed": EventTypeArg._admin_email_reminders_changed_validator, + "ai_third_party_sharing_dropbox_base_policy_changed": EventTypeArg._ai_third_party_sharing_dropbox_base_policy_changed_validator, + "allow_download_disabled": EventTypeArg._allow_download_disabled_validator, + "allow_download_enabled": EventTypeArg._allow_download_enabled_validator, + "apple_login_change_policy": EventTypeArg._apple_login_change_policy_validator, + "app_permissions_changed": EventTypeArg._app_permissions_changed_validator, + "camera_uploads_policy_changed": EventTypeArg._camera_uploads_policy_changed_validator, + "capture_team_space_policy_changed": EventTypeArg._capture_team_space_policy_changed_validator, + "capture_transcript_policy_changed": EventTypeArg._capture_transcript_policy_changed_validator, + "classification_change_policy": EventTypeArg._classification_change_policy_validator, + "computer_backup_policy_changed": EventTypeArg._computer_backup_policy_changed_validator, + "content_administration_policy_changed": EventTypeArg._content_administration_policy_changed_validator, + "content_deletion_protection_change_policy": EventTypeArg._content_deletion_protection_change_policy_validator, + "dash_external_sharing_policy_changed": EventTypeArg._dash_external_sharing_policy_changed_validator, + "data_placement_restriction_change_policy": EventTypeArg._data_placement_restriction_change_policy_validator, + "data_placement_restriction_satisfy_policy": EventTypeArg._data_placement_restriction_satisfy_policy_validator, + "device_approvals_add_exception": EventTypeArg._device_approvals_add_exception_validator, + "device_approvals_change_desktop_policy": EventTypeArg._device_approvals_change_desktop_policy_validator, + "device_approvals_change_mobile_policy": EventTypeArg._device_approvals_change_mobile_policy_validator, + "device_approvals_change_overage_action": EventTypeArg._device_approvals_change_overage_action_validator, + "device_approvals_change_unlink_action": EventTypeArg._device_approvals_change_unlink_action_validator, + "device_approvals_remove_exception": EventTypeArg._device_approvals_remove_exception_validator, + "directory_restrictions_add_members": EventTypeArg._directory_restrictions_add_members_validator, + "directory_restrictions_remove_members": EventTypeArg._directory_restrictions_remove_members_validator, + "dropbox_passwords_policy_changed": EventTypeArg._dropbox_passwords_policy_changed_validator, + "email_ingest_policy_changed": EventTypeArg._email_ingest_policy_changed_validator, + "emm_add_exception": EventTypeArg._emm_add_exception_validator, + "emm_change_policy": EventTypeArg._emm_change_policy_validator, + "emm_remove_exception": EventTypeArg._emm_remove_exception_validator, + "extended_version_history_change_policy": EventTypeArg._extended_version_history_change_policy_validator, + "external_drive_backup_policy_changed": EventTypeArg._external_drive_backup_policy_changed_validator, + "file_comments_change_policy": EventTypeArg._file_comments_change_policy_validator, + "file_locking_policy_changed": EventTypeArg._file_locking_policy_changed_validator, + "file_provider_migration_policy_changed": EventTypeArg._file_provider_migration_policy_changed_validator, + "file_requests_change_policy": EventTypeArg._file_requests_change_policy_validator, + "file_requests_emails_enabled": EventTypeArg._file_requests_emails_enabled_validator, + "file_requests_emails_restricted_to_team_only": EventTypeArg._file_requests_emails_restricted_to_team_only_validator, + "file_transfers_policy_changed": EventTypeArg._file_transfers_policy_changed_validator, + "flexible_file_names_policy_changed": EventTypeArg._flexible_file_names_policy_changed_validator, + "folder_link_restriction_policy_changed": EventTypeArg._folder_link_restriction_policy_changed_validator, + "google_sso_change_policy": EventTypeArg._google_sso_change_policy_validator, + "group_user_management_change_policy": EventTypeArg._group_user_management_change_policy_validator, + "integration_policy_changed": EventTypeArg._integration_policy_changed_validator, + "invite_acceptance_email_policy_changed": EventTypeArg._invite_acceptance_email_policy_changed_validator, + "media_hub_adding_people_policy_changed": EventTypeArg._media_hub_adding_people_policy_changed_validator, + "media_hub_download_policy_changed": EventTypeArg._media_hub_download_policy_changed_validator, + "media_hub_link_sharing_policy_changed": EventTypeArg._media_hub_link_sharing_policy_changed_validator, + "member_requests_change_policy": EventTypeArg._member_requests_change_policy_validator, + "member_send_invite_policy_changed": EventTypeArg._member_send_invite_policy_changed_validator, + "member_space_limits_add_exception": EventTypeArg._member_space_limits_add_exception_validator, + "member_space_limits_change_caps_type_policy": EventTypeArg._member_space_limits_change_caps_type_policy_validator, + "member_space_limits_change_policy": EventTypeArg._member_space_limits_change_policy_validator, + "member_space_limits_remove_exception": EventTypeArg._member_space_limits_remove_exception_validator, + "member_suggestions_change_policy": EventTypeArg._member_suggestions_change_policy_validator, + "microsoft_login_change_policy": EventTypeArg._microsoft_login_change_policy_validator, + "microsoft_office_addin_change_policy": EventTypeArg._microsoft_office_addin_change_policy_validator, + "multi_team_identity_policy_changed": EventTypeArg._multi_team_identity_policy_changed_validator, + "network_control_change_policy": EventTypeArg._network_control_change_policy_validator, + "paper_change_deployment_policy": EventTypeArg._paper_change_deployment_policy_validator, + "paper_change_member_link_policy": EventTypeArg._paper_change_member_link_policy_validator, + "paper_change_member_policy": EventTypeArg._paper_change_member_policy_validator, + "paper_change_policy": EventTypeArg._paper_change_policy_validator, + "paper_default_folder_policy_changed": EventTypeArg._paper_default_folder_policy_changed_validator, + "paper_desktop_policy_changed": EventTypeArg._paper_desktop_policy_changed_validator, + "paper_enabled_users_group_addition": EventTypeArg._paper_enabled_users_group_addition_validator, + "paper_enabled_users_group_removal": EventTypeArg._paper_enabled_users_group_removal_validator, + "passkey_login_policy_changed": EventTypeArg._passkey_login_policy_changed_validator, + "password_strength_requirements_change_policy": EventTypeArg._password_strength_requirements_change_policy_validator, + "permanent_delete_change_policy": EventTypeArg._permanent_delete_change_policy_validator, + "previews_ai_policy_changed": EventTypeArg._previews_ai_policy_changed_validator, + "replay_adding_people_policy_changed": EventTypeArg._replay_adding_people_policy_changed_validator, + "replay_sharing_policy_changed": EventTypeArg._replay_sharing_policy_changed_validator, + "reseller_support_change_policy": EventTypeArg._reseller_support_change_policy_validator, + "rewind_policy_changed": EventTypeArg._rewind_policy_changed_validator, + "send_and_track_policy_changed": EventTypeArg._send_and_track_policy_changed_validator, + "send_external_sharing_policy_changed": EventTypeArg._send_external_sharing_policy_changed_validator, + "send_for_signature_policy_changed": EventTypeArg._send_for_signature_policy_changed_validator, + "shared_link_default_permissions_policy_changed": EventTypeArg._shared_link_default_permissions_policy_changed_validator, + "sharing_change_folder_join_policy": EventTypeArg._sharing_change_folder_join_policy_validator, + "sharing_change_link_allow_change_expiration_policy": EventTypeArg._sharing_change_link_allow_change_expiration_policy_validator, + "sharing_change_link_default_expiration_policy": EventTypeArg._sharing_change_link_default_expiration_policy_validator, + "sharing_change_link_enforce_password_policy": EventTypeArg._sharing_change_link_enforce_password_policy_validator, + "sharing_change_link_policy": EventTypeArg._sharing_change_link_policy_validator, + "sharing_change_member_policy": EventTypeArg._sharing_change_member_policy_validator, + "showcase_change_download_policy": EventTypeArg._showcase_change_download_policy_validator, + "showcase_change_enabled_policy": EventTypeArg._showcase_change_enabled_policy_validator, + "showcase_change_external_sharing_policy": EventTypeArg._showcase_change_external_sharing_policy_validator, + "sign_external_sharing_policy_changed": EventTypeArg._sign_external_sharing_policy_changed_validator, + "sign_template_creation_permission_changed": EventTypeArg._sign_template_creation_permission_changed_validator, + "smarter_smart_sync_policy_changed": EventTypeArg._smarter_smart_sync_policy_changed_validator, + "smart_sync_change_policy": EventTypeArg._smart_sync_change_policy_validator, + "smart_sync_not_opt_out": EventTypeArg._smart_sync_not_opt_out_validator, + "smart_sync_opt_out": EventTypeArg._smart_sync_opt_out_validator, + "sso_change_policy": EventTypeArg._sso_change_policy_validator, + "stack_cross_team_access_policy_changed": EventTypeArg._stack_cross_team_access_policy_changed_validator, + "team_branding_policy_changed": EventTypeArg._team_branding_policy_changed_validator, + "team_extensions_policy_changed": EventTypeArg._team_extensions_policy_changed_validator, + "team_member_storage_request_policy_changed": EventTypeArg._team_member_storage_request_policy_changed_validator, + "team_selective_sync_policy_changed": EventTypeArg._team_selective_sync_policy_changed_validator, + "team_sharing_whitelist_subjects_changed": EventTypeArg._team_sharing_whitelist_subjects_changed_validator, + "tfa_add_exception": EventTypeArg._tfa_add_exception_validator, + "tfa_change_policy": EventTypeArg._tfa_change_policy_validator, + "tfa_remove_exception": EventTypeArg._tfa_remove_exception_validator, + "top_level_content_policy_changed": EventTypeArg._top_level_content_policy_changed_validator, + "two_account_change_policy": EventTypeArg._two_account_change_policy_validator, + "viewer_info_policy_changed": EventTypeArg._viewer_info_policy_changed_validator, + "watermarking_policy_changed": EventTypeArg._watermarking_policy_changed_validator, + "web_sessions_change_active_session_limit": EventTypeArg._web_sessions_change_active_session_limit_validator, + "web_sessions_change_fixed_length_policy": EventTypeArg._web_sessions_change_fixed_length_policy_validator, + "web_sessions_change_idle_length_policy": EventTypeArg._web_sessions_change_idle_length_policy_validator, + "data_residency_migration_request_successful": EventTypeArg._data_residency_migration_request_successful_validator, + "data_residency_migration_request_unsuccessful": EventTypeArg._data_residency_migration_request_unsuccessful_validator, + "team_merge_from": EventTypeArg._team_merge_from_validator, + "team_merge_to": EventTypeArg._team_merge_to_validator, + "team_profile_add_background": EventTypeArg._team_profile_add_background_validator, + "team_profile_add_logo": EventTypeArg._team_profile_add_logo_validator, + "team_profile_change_background": EventTypeArg._team_profile_change_background_validator, + "team_profile_change_default_language": EventTypeArg._team_profile_change_default_language_validator, + "team_profile_change_logo": EventTypeArg._team_profile_change_logo_validator, + "team_profile_change_name": EventTypeArg._team_profile_change_name_validator, + "team_profile_remove_background": EventTypeArg._team_profile_remove_background_validator, + "team_profile_remove_logo": EventTypeArg._team_profile_remove_logo_validator, + "passkey_add": EventTypeArg._passkey_add_validator, + "passkey_remove": EventTypeArg._passkey_remove_validator, + "tfa_add_backup_phone": EventTypeArg._tfa_add_backup_phone_validator, + "tfa_add_security_key": EventTypeArg._tfa_add_security_key_validator, + "tfa_change_backup_phone": EventTypeArg._tfa_change_backup_phone_validator, + "tfa_change_status": EventTypeArg._tfa_change_status_validator, + "tfa_remove_backup_phone": EventTypeArg._tfa_remove_backup_phone_validator, + "tfa_remove_security_key": EventTypeArg._tfa_remove_security_key_validator, + "tfa_reset": EventTypeArg._tfa_reset_validator, + "changed_enterprise_admin_role": EventTypeArg._changed_enterprise_admin_role_validator, + "changed_enterprise_connected_team_status": EventTypeArg._changed_enterprise_connected_team_status_validator, + "ended_enterprise_admin_session": EventTypeArg._ended_enterprise_admin_session_validator, + "ended_enterprise_admin_session_deprecated": EventTypeArg._ended_enterprise_admin_session_deprecated_validator, + "enterprise_settings_locking": EventTypeArg._enterprise_settings_locking_validator, + "guest_admin_change_status": EventTypeArg._guest_admin_change_status_validator, + "started_enterprise_admin_session": EventTypeArg._started_enterprise_admin_session_validator, + "team_merge_request_accepted": EventTypeArg._team_merge_request_accepted_validator, + "team_merge_request_accepted_shown_to_primary_team": EventTypeArg._team_merge_request_accepted_shown_to_primary_team_validator, + "team_merge_request_accepted_shown_to_secondary_team": EventTypeArg._team_merge_request_accepted_shown_to_secondary_team_validator, + "team_merge_request_auto_canceled": EventTypeArg._team_merge_request_auto_canceled_validator, + "team_merge_request_canceled": EventTypeArg._team_merge_request_canceled_validator, + "team_merge_request_canceled_shown_to_primary_team": EventTypeArg._team_merge_request_canceled_shown_to_primary_team_validator, + "team_merge_request_canceled_shown_to_secondary_team": EventTypeArg._team_merge_request_canceled_shown_to_secondary_team_validator, + "team_merge_request_expired": EventTypeArg._team_merge_request_expired_validator, + "team_merge_request_expired_shown_to_primary_team": EventTypeArg._team_merge_request_expired_shown_to_primary_team_validator, + "team_merge_request_expired_shown_to_secondary_team": EventTypeArg._team_merge_request_expired_shown_to_secondary_team_validator, + "team_merge_request_rejected_shown_to_primary_team": EventTypeArg._team_merge_request_rejected_shown_to_primary_team_validator, + "team_merge_request_rejected_shown_to_secondary_team": EventTypeArg._team_merge_request_rejected_shown_to_secondary_team_validator, + "team_merge_request_reminder": EventTypeArg._team_merge_request_reminder_validator, + "team_merge_request_reminder_shown_to_primary_team": EventTypeArg._team_merge_request_reminder_shown_to_primary_team_validator, + "team_merge_request_reminder_shown_to_secondary_team": EventTypeArg._team_merge_request_reminder_shown_to_secondary_team_validator, + "team_merge_request_revoked": EventTypeArg._team_merge_request_revoked_validator, + "team_merge_request_sent_shown_to_primary_team": EventTypeArg._team_merge_request_sent_shown_to_primary_team_validator, + "team_merge_request_sent_shown_to_secondary_team": EventTypeArg._team_merge_request_sent_shown_to_secondary_team_validator, + "other": EventTypeArg._other_validator, } -EventTypeArg.admin_alerting_alert_state_changed = EventTypeArg('admin_alerting_alert_state_changed') -EventTypeArg.admin_alerting_changed_alert_config = EventTypeArg('admin_alerting_changed_alert_config') -EventTypeArg.admin_alerting_triggered_alert = EventTypeArg('admin_alerting_triggered_alert') -EventTypeArg.ransomware_restore_process_completed = EventTypeArg('ransomware_restore_process_completed') -EventTypeArg.ransomware_restore_process_started = EventTypeArg('ransomware_restore_process_started') -EventTypeArg.app_blocked_by_permissions = EventTypeArg('app_blocked_by_permissions') -EventTypeArg.app_link_team = EventTypeArg('app_link_team') -EventTypeArg.app_link_user = EventTypeArg('app_link_user') -EventTypeArg.app_unlink_team = EventTypeArg('app_unlink_team') -EventTypeArg.app_unlink_user = EventTypeArg('app_unlink_user') -EventTypeArg.integration_connected = EventTypeArg('integration_connected') -EventTypeArg.integration_disconnected = EventTypeArg('integration_disconnected') -EventTypeArg.file_add_comment = EventTypeArg('file_add_comment') -EventTypeArg.file_change_comment_subscription = EventTypeArg('file_change_comment_subscription') -EventTypeArg.file_delete_comment = EventTypeArg('file_delete_comment') -EventTypeArg.file_edit_comment = EventTypeArg('file_edit_comment') -EventTypeArg.file_like_comment = EventTypeArg('file_like_comment') -EventTypeArg.file_resolve_comment = EventTypeArg('file_resolve_comment') -EventTypeArg.file_unlike_comment = EventTypeArg('file_unlike_comment') -EventTypeArg.file_unresolve_comment = EventTypeArg('file_unresolve_comment') -EventTypeArg.dash_added_comment_to_stack = EventTypeArg('dash_added_comment_to_stack') -EventTypeArg.dash_added_connector = EventTypeArg('dash_added_connector') -EventTypeArg.dash_added_link_to_stack = EventTypeArg('dash_added_link_to_stack') -EventTypeArg.dash_added_team_email_domain_allowlist = EventTypeArg('dash_added_team_email_domain_allowlist') -EventTypeArg.dash_admin_added_org_wide_connector = EventTypeArg('dash_admin_added_org_wide_connector') -EventTypeArg.dash_admin_disabled_connector = EventTypeArg('dash_admin_disabled_connector') -EventTypeArg.dash_admin_enabled_connector = EventTypeArg('dash_admin_enabled_connector') -EventTypeArg.dash_admin_removed_org_wide_connector = EventTypeArg('dash_admin_removed_org_wide_connector') -EventTypeArg.dash_archived_stack = EventTypeArg('dash_archived_stack') -EventTypeArg.dash_changed_audience_of_shared_link_to_stack = EventTypeArg('dash_changed_audience_of_shared_link_to_stack') -EventTypeArg.dash_cloned_stack = EventTypeArg('dash_cloned_stack') -EventTypeArg.dash_connector_tools_call = EventTypeArg('dash_connector_tools_call') -EventTypeArg.dash_created_stack = EventTypeArg('dash_created_stack') -EventTypeArg.dash_deleted_comment_from_stack = EventTypeArg('dash_deleted_comment_from_stack') -EventTypeArg.dash_deleted_stack = EventTypeArg('dash_deleted_stack') -EventTypeArg.dash_edited_comment_in_stack = EventTypeArg('dash_edited_comment_in_stack') -EventTypeArg.dash_external_user_opened_stack = EventTypeArg('dash_external_user_opened_stack') -EventTypeArg.dash_first_launched_desktop = EventTypeArg('dash_first_launched_desktop') -EventTypeArg.dash_first_launched_extension = EventTypeArg('dash_first_launched_extension') -EventTypeArg.dash_first_launched_web_start_page = EventTypeArg('dash_first_launched_web_start_page') -EventTypeArg.dash_opened_shared_link_to_stack = EventTypeArg('dash_opened_shared_link_to_stack') -EventTypeArg.dash_opened_stack = EventTypeArg('dash_opened_stack') -EventTypeArg.dash_preview_opt_out_status_changed = EventTypeArg('dash_preview_opt_out_status_changed') -EventTypeArg.dash_removed_connector = EventTypeArg('dash_removed_connector') -EventTypeArg.dash_removed_link_from_stack = EventTypeArg('dash_removed_link_from_stack') -EventTypeArg.dash_removed_shared_link_to_stack = EventTypeArg('dash_removed_shared_link_to_stack') -EventTypeArg.dash_removed_team_email_domain_allowlist = EventTypeArg('dash_removed_team_email_domain_allowlist') -EventTypeArg.dash_renamed_stack = EventTypeArg('dash_renamed_stack') -EventTypeArg.dash_shared_link_to_stack = EventTypeArg('dash_shared_link_to_stack') -EventTypeArg.dash_unarchived_stack = EventTypeArg('dash_unarchived_stack') -EventTypeArg.dash_viewed_company_stack = EventTypeArg('dash_viewed_company_stack') -EventTypeArg.dash_viewed_external_ai_activity_report = EventTypeArg('dash_viewed_external_ai_activity_report') -EventTypeArg.governance_policy_add_folders = EventTypeArg('governance_policy_add_folders') -EventTypeArg.governance_policy_add_folder_failed = EventTypeArg('governance_policy_add_folder_failed') -EventTypeArg.governance_policy_content_disposed = EventTypeArg('governance_policy_content_disposed') -EventTypeArg.governance_policy_create = EventTypeArg('governance_policy_create') -EventTypeArg.governance_policy_delete = EventTypeArg('governance_policy_delete') -EventTypeArg.governance_policy_edit_details = EventTypeArg('governance_policy_edit_details') -EventTypeArg.governance_policy_edit_duration = EventTypeArg('governance_policy_edit_duration') -EventTypeArg.governance_policy_export_created = EventTypeArg('governance_policy_export_created') -EventTypeArg.governance_policy_export_removed = EventTypeArg('governance_policy_export_removed') -EventTypeArg.governance_policy_remove_folders = EventTypeArg('governance_policy_remove_folders') -EventTypeArg.governance_policy_report_created = EventTypeArg('governance_policy_report_created') -EventTypeArg.governance_policy_zip_part_downloaded = EventTypeArg('governance_policy_zip_part_downloaded') -EventTypeArg.legal_holds_activate_a_hold = EventTypeArg('legal_holds_activate_a_hold') -EventTypeArg.legal_holds_add_members = EventTypeArg('legal_holds_add_members') -EventTypeArg.legal_holds_change_hold_details = EventTypeArg('legal_holds_change_hold_details') -EventTypeArg.legal_holds_change_hold_name = EventTypeArg('legal_holds_change_hold_name') -EventTypeArg.legal_holds_export_a_hold = EventTypeArg('legal_holds_export_a_hold') -EventTypeArg.legal_holds_export_cancelled = EventTypeArg('legal_holds_export_cancelled') -EventTypeArg.legal_holds_export_downloaded = EventTypeArg('legal_holds_export_downloaded') -EventTypeArg.legal_holds_export_removed = EventTypeArg('legal_holds_export_removed') -EventTypeArg.legal_holds_release_a_hold = EventTypeArg('legal_holds_release_a_hold') -EventTypeArg.legal_holds_remove_members = EventTypeArg('legal_holds_remove_members') -EventTypeArg.legal_holds_report_a_hold = EventTypeArg('legal_holds_report_a_hold') -EventTypeArg.device_change_ip_desktop = EventTypeArg('device_change_ip_desktop') -EventTypeArg.device_change_ip_mobile = EventTypeArg('device_change_ip_mobile') -EventTypeArg.device_change_ip_web = EventTypeArg('device_change_ip_web') -EventTypeArg.device_delete_on_unlink_fail = EventTypeArg('device_delete_on_unlink_fail') -EventTypeArg.device_delete_on_unlink_success = EventTypeArg('device_delete_on_unlink_success') -EventTypeArg.device_link_fail = EventTypeArg('device_link_fail') -EventTypeArg.device_link_success = EventTypeArg('device_link_success') -EventTypeArg.device_management_disabled = EventTypeArg('device_management_disabled') -EventTypeArg.device_management_enabled = EventTypeArg('device_management_enabled') -EventTypeArg.device_sync_backup_status_changed = EventTypeArg('device_sync_backup_status_changed') -EventTypeArg.device_unlink = EventTypeArg('device_unlink') -EventTypeArg.dropbox_passwords_exported = EventTypeArg('dropbox_passwords_exported') -EventTypeArg.dropbox_passwords_new_device_enrolled = EventTypeArg('dropbox_passwords_new_device_enrolled') -EventTypeArg.emm_refresh_auth_token = EventTypeArg('emm_refresh_auth_token') -EventTypeArg.external_drive_backup_eligibility_status_checked = EventTypeArg('external_drive_backup_eligibility_status_checked') -EventTypeArg.external_drive_backup_status_changed = EventTypeArg('external_drive_backup_status_changed') -EventTypeArg.account_capture_change_availability = EventTypeArg('account_capture_change_availability') -EventTypeArg.account_capture_migrate_account = EventTypeArg('account_capture_migrate_account') -EventTypeArg.account_capture_notification_emails_sent = EventTypeArg('account_capture_notification_emails_sent') -EventTypeArg.account_capture_relinquish_account = EventTypeArg('account_capture_relinquish_account') -EventTypeArg.disabled_domain_invites = EventTypeArg('disabled_domain_invites') -EventTypeArg.domain_invites_approve_request_to_join_team = EventTypeArg('domain_invites_approve_request_to_join_team') -EventTypeArg.domain_invites_decline_request_to_join_team = EventTypeArg('domain_invites_decline_request_to_join_team') -EventTypeArg.domain_invites_email_existing_users = EventTypeArg('domain_invites_email_existing_users') -EventTypeArg.domain_invites_request_to_join_team = EventTypeArg('domain_invites_request_to_join_team') -EventTypeArg.domain_invites_set_invite_new_user_pref_to_no = EventTypeArg('domain_invites_set_invite_new_user_pref_to_no') -EventTypeArg.domain_invites_set_invite_new_user_pref_to_yes = EventTypeArg('domain_invites_set_invite_new_user_pref_to_yes') -EventTypeArg.domain_verification_add_domain_fail = EventTypeArg('domain_verification_add_domain_fail') -EventTypeArg.domain_verification_add_domain_success = EventTypeArg('domain_verification_add_domain_success') -EventTypeArg.domain_verification_remove_domain = EventTypeArg('domain_verification_remove_domain') -EventTypeArg.enabled_domain_invites = EventTypeArg('enabled_domain_invites') -EventTypeArg.encrypted_folder_cancel_team_key_rotation = EventTypeArg('encrypted_folder_cancel_team_key_rotation') -EventTypeArg.encrypted_folder_enroll_backup_key = EventTypeArg('encrypted_folder_enroll_backup_key') -EventTypeArg.encrypted_folder_enroll_client = EventTypeArg('encrypted_folder_enroll_client') -EventTypeArg.encrypted_folder_enroll_team = EventTypeArg('encrypted_folder_enroll_team') -EventTypeArg.encrypted_folder_finish_team_unenrollment = EventTypeArg('encrypted_folder_finish_team_unenrollment') -EventTypeArg.encrypted_folder_init_team_key_rotation = EventTypeArg('encrypted_folder_init_team_key_rotation') -EventTypeArg.encrypted_folder_init_team_unenrollment = EventTypeArg('encrypted_folder_init_team_unenrollment') -EventTypeArg.encrypted_folder_remove_backup_key = EventTypeArg('encrypted_folder_remove_backup_key') -EventTypeArg.encrypted_folder_rotate_team_key = EventTypeArg('encrypted_folder_rotate_team_key') -EventTypeArg.encrypted_folder_unenroll_client = EventTypeArg('encrypted_folder_unenroll_client') -EventTypeArg.team_encryption_key_activate_key = EventTypeArg('team_encryption_key_activate_key') -EventTypeArg.team_encryption_key_cancel_key_deletion = EventTypeArg('team_encryption_key_cancel_key_deletion') -EventTypeArg.team_encryption_key_create_key = EventTypeArg('team_encryption_key_create_key') -EventTypeArg.team_encryption_key_deactivate_key = EventTypeArg('team_encryption_key_deactivate_key') -EventTypeArg.team_encryption_key_delete_key = EventTypeArg('team_encryption_key_delete_key') -EventTypeArg.team_encryption_key_disable_key = EventTypeArg('team_encryption_key_disable_key') -EventTypeArg.team_encryption_key_enable_key = EventTypeArg('team_encryption_key_enable_key') -EventTypeArg.team_encryption_key_rotate_key = EventTypeArg('team_encryption_key_rotate_key') -EventTypeArg.team_encryption_key_schedule_key_deletion = EventTypeArg('team_encryption_key_schedule_key_deletion') -EventTypeArg.apply_naming_convention = EventTypeArg('apply_naming_convention') -EventTypeArg.create_folder = EventTypeArg('create_folder') -EventTypeArg.file_add = EventTypeArg('file_add') -EventTypeArg.file_add_from_automation = EventTypeArg('file_add_from_automation') -EventTypeArg.file_copy = EventTypeArg('file_copy') -EventTypeArg.file_delete = EventTypeArg('file_delete') -EventTypeArg.file_download = EventTypeArg('file_download') -EventTypeArg.file_edit = EventTypeArg('file_edit') -EventTypeArg.file_get_copy_reference = EventTypeArg('file_get_copy_reference') -EventTypeArg.file_locking_lock_status_changed = EventTypeArg('file_locking_lock_status_changed') -EventTypeArg.file_move = EventTypeArg('file_move') -EventTypeArg.file_permanently_delete = EventTypeArg('file_permanently_delete') -EventTypeArg.file_preview = EventTypeArg('file_preview') -EventTypeArg.file_rename = EventTypeArg('file_rename') -EventTypeArg.file_restore = EventTypeArg('file_restore') -EventTypeArg.file_revert = EventTypeArg('file_revert') -EventTypeArg.file_rollback_changes = EventTypeArg('file_rollback_changes') -EventTypeArg.file_save_copy_reference = EventTypeArg('file_save_copy_reference') -EventTypeArg.folder_overview_description_changed = EventTypeArg('folder_overview_description_changed') -EventTypeArg.folder_overview_item_pinned = EventTypeArg('folder_overview_item_pinned') -EventTypeArg.folder_overview_item_unpinned = EventTypeArg('folder_overview_item_unpinned') -EventTypeArg.media_hub_file_downloaded = EventTypeArg('media_hub_file_downloaded') -EventTypeArg.object_label_added = EventTypeArg('object_label_added') -EventTypeArg.object_label_removed = EventTypeArg('object_label_removed') -EventTypeArg.object_label_updated_value = EventTypeArg('object_label_updated_value') -EventTypeArg.organize_folder_with_tidy = EventTypeArg('organize_folder_with_tidy') -EventTypeArg.replay_file_delete = EventTypeArg('replay_file_delete') -EventTypeArg.replay_file_downloaded = EventTypeArg('replay_file_downloaded') -EventTypeArg.replay_team_project_created = EventTypeArg('replay_team_project_created') -EventTypeArg.rewind_folder = EventTypeArg('rewind_folder') -EventTypeArg.undo_naming_convention = EventTypeArg('undo_naming_convention') -EventTypeArg.undo_organize_folder_with_tidy = EventTypeArg('undo_organize_folder_with_tidy') -EventTypeArg.user_tags_added = EventTypeArg('user_tags_added') -EventTypeArg.user_tags_removed = EventTypeArg('user_tags_removed') -EventTypeArg.email_ingest_receive_file = EventTypeArg('email_ingest_receive_file') -EventTypeArg.file_request_auto_close = EventTypeArg('file_request_auto_close') -EventTypeArg.file_request_change = EventTypeArg('file_request_change') -EventTypeArg.file_request_close = EventTypeArg('file_request_close') -EventTypeArg.file_request_create = EventTypeArg('file_request_create') -EventTypeArg.file_request_delete = EventTypeArg('file_request_delete') -EventTypeArg.file_request_receive_file = EventTypeArg('file_request_receive_file') -EventTypeArg.group_add_external_id = EventTypeArg('group_add_external_id') -EventTypeArg.group_add_member = EventTypeArg('group_add_member') -EventTypeArg.group_change_external_id = EventTypeArg('group_change_external_id') -EventTypeArg.group_change_management_type = EventTypeArg('group_change_management_type') -EventTypeArg.group_change_member_role = EventTypeArg('group_change_member_role') -EventTypeArg.group_create = EventTypeArg('group_create') -EventTypeArg.group_delete = EventTypeArg('group_delete') -EventTypeArg.group_description_updated = EventTypeArg('group_description_updated') -EventTypeArg.group_external_sharing_setting_override_changed = EventTypeArg('group_external_sharing_setting_override_changed') -EventTypeArg.group_join_policy_updated = EventTypeArg('group_join_policy_updated') -EventTypeArg.group_moved = EventTypeArg('group_moved') -EventTypeArg.group_remove_external_id = EventTypeArg('group_remove_external_id') -EventTypeArg.group_remove_member = EventTypeArg('group_remove_member') -EventTypeArg.group_rename = EventTypeArg('group_rename') -EventTypeArg.account_lock_or_unlocked = EventTypeArg('account_lock_or_unlocked') -EventTypeArg.emm_error = EventTypeArg('emm_error') -EventTypeArg.guest_admin_signed_in_via_trusted_teams = EventTypeArg('guest_admin_signed_in_via_trusted_teams') -EventTypeArg.guest_admin_signed_out_via_trusted_teams = EventTypeArg('guest_admin_signed_out_via_trusted_teams') -EventTypeArg.login_fail = EventTypeArg('login_fail') -EventTypeArg.login_success = EventTypeArg('login_success') -EventTypeArg.logout = EventTypeArg('logout') -EventTypeArg.reseller_support_session_end = EventTypeArg('reseller_support_session_end') -EventTypeArg.reseller_support_session_start = EventTypeArg('reseller_support_session_start') -EventTypeArg.sign_in_as_session_end = EventTypeArg('sign_in_as_session_end') -EventTypeArg.sign_in_as_session_start = EventTypeArg('sign_in_as_session_start') -EventTypeArg.sso_error = EventTypeArg('sso_error') -EventTypeArg.addon_assigned = EventTypeArg('addon_assigned') -EventTypeArg.addon_removed = EventTypeArg('addon_removed') -EventTypeArg.backup_admin_invitation_sent = EventTypeArg('backup_admin_invitation_sent') -EventTypeArg.backup_invitation_opened = EventTypeArg('backup_invitation_opened') -EventTypeArg.create_team_invite_link = EventTypeArg('create_team_invite_link') -EventTypeArg.delete_team_invite_link = EventTypeArg('delete_team_invite_link') -EventTypeArg.member_add_external_id = EventTypeArg('member_add_external_id') -EventTypeArg.member_add_name = EventTypeArg('member_add_name') -EventTypeArg.member_change_admin_role = EventTypeArg('member_change_admin_role') -EventTypeArg.member_change_email = EventTypeArg('member_change_email') -EventTypeArg.member_change_external_id = EventTypeArg('member_change_external_id') -EventTypeArg.member_change_membership_type = EventTypeArg('member_change_membership_type') -EventTypeArg.member_change_name = EventTypeArg('member_change_name') -EventTypeArg.member_change_reseller_role = EventTypeArg('member_change_reseller_role') -EventTypeArg.member_change_status = EventTypeArg('member_change_status') -EventTypeArg.member_delete_manual_contacts = EventTypeArg('member_delete_manual_contacts') -EventTypeArg.member_delete_profile_photo = EventTypeArg('member_delete_profile_photo') -EventTypeArg.member_permanently_delete_account_contents = EventTypeArg('member_permanently_delete_account_contents') -EventTypeArg.member_remove_external_id = EventTypeArg('member_remove_external_id') -EventTypeArg.member_set_profile_photo = EventTypeArg('member_set_profile_photo') -EventTypeArg.member_space_limits_add_custom_quota = EventTypeArg('member_space_limits_add_custom_quota') -EventTypeArg.member_space_limits_change_custom_quota = EventTypeArg('member_space_limits_change_custom_quota') -EventTypeArg.member_space_limits_change_status = EventTypeArg('member_space_limits_change_status') -EventTypeArg.member_space_limits_remove_custom_quota = EventTypeArg('member_space_limits_remove_custom_quota') -EventTypeArg.member_suggest = EventTypeArg('member_suggest') -EventTypeArg.member_transfer_account_contents = EventTypeArg('member_transfer_account_contents') -EventTypeArg.pending_secondary_email_added = EventTypeArg('pending_secondary_email_added') -EventTypeArg.product_assigned_to_member = EventTypeArg('product_assigned_to_member') -EventTypeArg.product_removed_from_member = EventTypeArg('product_removed_from_member') -EventTypeArg.secondary_email_deleted = EventTypeArg('secondary_email_deleted') -EventTypeArg.secondary_email_verified = EventTypeArg('secondary_email_verified') -EventTypeArg.secondary_mails_policy_changed = EventTypeArg('secondary_mails_policy_changed') -EventTypeArg.binder_add_page = EventTypeArg('binder_add_page') -EventTypeArg.binder_add_section = EventTypeArg('binder_add_section') -EventTypeArg.binder_remove_page = EventTypeArg('binder_remove_page') -EventTypeArg.binder_remove_section = EventTypeArg('binder_remove_section') -EventTypeArg.binder_rename_page = EventTypeArg('binder_rename_page') -EventTypeArg.binder_rename_section = EventTypeArg('binder_rename_section') -EventTypeArg.binder_reorder_page = EventTypeArg('binder_reorder_page') -EventTypeArg.binder_reorder_section = EventTypeArg('binder_reorder_section') -EventTypeArg.paper_content_add_member = EventTypeArg('paper_content_add_member') -EventTypeArg.paper_content_add_to_folder = EventTypeArg('paper_content_add_to_folder') -EventTypeArg.paper_content_archive = EventTypeArg('paper_content_archive') -EventTypeArg.paper_content_create = EventTypeArg('paper_content_create') -EventTypeArg.paper_content_permanently_delete = EventTypeArg('paper_content_permanently_delete') -EventTypeArg.paper_content_remove_from_folder = EventTypeArg('paper_content_remove_from_folder') -EventTypeArg.paper_content_remove_member = EventTypeArg('paper_content_remove_member') -EventTypeArg.paper_content_rename = EventTypeArg('paper_content_rename') -EventTypeArg.paper_content_restore = EventTypeArg('paper_content_restore') -EventTypeArg.paper_doc_add_comment = EventTypeArg('paper_doc_add_comment') -EventTypeArg.paper_doc_change_member_role = EventTypeArg('paper_doc_change_member_role') -EventTypeArg.paper_doc_change_sharing_policy = EventTypeArg('paper_doc_change_sharing_policy') -EventTypeArg.paper_doc_change_subscription = EventTypeArg('paper_doc_change_subscription') -EventTypeArg.paper_doc_deleted = EventTypeArg('paper_doc_deleted') -EventTypeArg.paper_doc_delete_comment = EventTypeArg('paper_doc_delete_comment') -EventTypeArg.paper_doc_download = EventTypeArg('paper_doc_download') -EventTypeArg.paper_doc_edit = EventTypeArg('paper_doc_edit') -EventTypeArg.paper_doc_edit_comment = EventTypeArg('paper_doc_edit_comment') -EventTypeArg.paper_doc_followed = EventTypeArg('paper_doc_followed') -EventTypeArg.paper_doc_mention = EventTypeArg('paper_doc_mention') -EventTypeArg.paper_doc_ownership_changed = EventTypeArg('paper_doc_ownership_changed') -EventTypeArg.paper_doc_request_access = EventTypeArg('paper_doc_request_access') -EventTypeArg.paper_doc_resolve_comment = EventTypeArg('paper_doc_resolve_comment') -EventTypeArg.paper_doc_revert = EventTypeArg('paper_doc_revert') -EventTypeArg.paper_doc_slack_share = EventTypeArg('paper_doc_slack_share') -EventTypeArg.paper_doc_team_invite = EventTypeArg('paper_doc_team_invite') -EventTypeArg.paper_doc_trashed = EventTypeArg('paper_doc_trashed') -EventTypeArg.paper_doc_unresolve_comment = EventTypeArg('paper_doc_unresolve_comment') -EventTypeArg.paper_doc_untrashed = EventTypeArg('paper_doc_untrashed') -EventTypeArg.paper_doc_view = EventTypeArg('paper_doc_view') -EventTypeArg.paper_external_view_allow = EventTypeArg('paper_external_view_allow') -EventTypeArg.paper_external_view_default_team = EventTypeArg('paper_external_view_default_team') -EventTypeArg.paper_external_view_forbid = EventTypeArg('paper_external_view_forbid') -EventTypeArg.paper_folder_change_subscription = EventTypeArg('paper_folder_change_subscription') -EventTypeArg.paper_folder_deleted = EventTypeArg('paper_folder_deleted') -EventTypeArg.paper_folder_followed = EventTypeArg('paper_folder_followed') -EventTypeArg.paper_folder_team_invite = EventTypeArg('paper_folder_team_invite') -EventTypeArg.paper_published_link_change_permission = EventTypeArg('paper_published_link_change_permission') -EventTypeArg.paper_published_link_create = EventTypeArg('paper_published_link_create') -EventTypeArg.paper_published_link_disabled = EventTypeArg('paper_published_link_disabled') -EventTypeArg.paper_published_link_view = EventTypeArg('paper_published_link_view') -EventTypeArg.password_change = EventTypeArg('password_change') -EventTypeArg.password_reset = EventTypeArg('password_reset') -EventTypeArg.password_reset_all = EventTypeArg('password_reset_all') -EventTypeArg.protect_internal_domains_changed = EventTypeArg('protect_internal_domains_changed') -EventTypeArg.classification_create_report = EventTypeArg('classification_create_report') -EventTypeArg.classification_create_report_fail = EventTypeArg('classification_create_report_fail') -EventTypeArg.emm_create_exceptions_report = EventTypeArg('emm_create_exceptions_report') -EventTypeArg.emm_create_usage_report = EventTypeArg('emm_create_usage_report') -EventTypeArg.export_members_report = EventTypeArg('export_members_report') -EventTypeArg.export_members_report_fail = EventTypeArg('export_members_report_fail') -EventTypeArg.external_sharing_create_report = EventTypeArg('external_sharing_create_report') -EventTypeArg.external_sharing_report_failed = EventTypeArg('external_sharing_report_failed') -EventTypeArg.member_access_details_create_report = EventTypeArg('member_access_details_create_report') -EventTypeArg.member_access_details_create_report_failed = EventTypeArg('member_access_details_create_report_failed') -EventTypeArg.no_expiration_link_gen_create_report = EventTypeArg('no_expiration_link_gen_create_report') -EventTypeArg.no_expiration_link_gen_report_failed = EventTypeArg('no_expiration_link_gen_report_failed') -EventTypeArg.no_password_link_gen_create_report = EventTypeArg('no_password_link_gen_create_report') -EventTypeArg.no_password_link_gen_report_failed = EventTypeArg('no_password_link_gen_report_failed') -EventTypeArg.no_password_link_view_create_report = EventTypeArg('no_password_link_view_create_report') -EventTypeArg.no_password_link_view_report_failed = EventTypeArg('no_password_link_view_report_failed') -EventTypeArg.outdated_link_view_create_report = EventTypeArg('outdated_link_view_create_report') -EventTypeArg.outdated_link_view_report_failed = EventTypeArg('outdated_link_view_report_failed') -EventTypeArg.paper_admin_export_start = EventTypeArg('paper_admin_export_start') -EventTypeArg.ransomware_alert_create_report = EventTypeArg('ransomware_alert_create_report') -EventTypeArg.ransomware_alert_create_report_failed = EventTypeArg('ransomware_alert_create_report_failed') -EventTypeArg.shared_folders_create_report = EventTypeArg('shared_folders_create_report') -EventTypeArg.shared_folders_create_report_failed = EventTypeArg('shared_folders_create_report_failed') -EventTypeArg.smart_sync_create_admin_privilege_report = EventTypeArg('smart_sync_create_admin_privilege_report') -EventTypeArg.team_activity_create_report = EventTypeArg('team_activity_create_report') -EventTypeArg.team_activity_create_report_fail = EventTypeArg('team_activity_create_report_fail') -EventTypeArg.team_folders_create_report = EventTypeArg('team_folders_create_report') -EventTypeArg.team_folders_create_report_failed = EventTypeArg('team_folders_create_report_failed') -EventTypeArg.team_storage_create_report = EventTypeArg('team_storage_create_report') -EventTypeArg.team_storage_create_report_failed = EventTypeArg('team_storage_create_report_failed') -EventTypeArg.collection_share = EventTypeArg('collection_share') -EventTypeArg.file_transfers_file_add = EventTypeArg('file_transfers_file_add') -EventTypeArg.file_transfers_transfer_delete = EventTypeArg('file_transfers_transfer_delete') -EventTypeArg.file_transfers_transfer_download = EventTypeArg('file_transfers_transfer_download') -EventTypeArg.file_transfers_transfer_send = EventTypeArg('file_transfers_transfer_send') -EventTypeArg.file_transfers_transfer_view = EventTypeArg('file_transfers_transfer_view') -EventTypeArg.media_hub_project_team_add = EventTypeArg('media_hub_project_team_add') -EventTypeArg.media_hub_project_team_delete = EventTypeArg('media_hub_project_team_delete') -EventTypeArg.media_hub_project_team_role_changed = EventTypeArg('media_hub_project_team_role_changed') -EventTypeArg.media_hub_shared_link_audience_changed = EventTypeArg('media_hub_shared_link_audience_changed') -EventTypeArg.media_hub_shared_link_created = EventTypeArg('media_hub_shared_link_created') -EventTypeArg.media_hub_shared_link_download_setting_changed = EventTypeArg('media_hub_shared_link_download_setting_changed') -EventTypeArg.media_hub_shared_link_revoked = EventTypeArg('media_hub_shared_link_revoked') -EventTypeArg.note_acl_invite_only = EventTypeArg('note_acl_invite_only') -EventTypeArg.note_acl_link = EventTypeArg('note_acl_link') -EventTypeArg.note_acl_team_link = EventTypeArg('note_acl_team_link') -EventTypeArg.note_shared = EventTypeArg('note_shared') -EventTypeArg.note_share_receive = EventTypeArg('note_share_receive') -EventTypeArg.open_note_shared = EventTypeArg('open_note_shared') -EventTypeArg.replay_file_shared_link_created = EventTypeArg('replay_file_shared_link_created') -EventTypeArg.replay_file_shared_link_modified = EventTypeArg('replay_file_shared_link_modified') -EventTypeArg.replay_project_team_add = EventTypeArg('replay_project_team_add') -EventTypeArg.replay_project_team_delete = EventTypeArg('replay_project_team_delete') -EventTypeArg.send_and_track_file_added = EventTypeArg('send_and_track_file_added') -EventTypeArg.send_and_track_file_renamed = EventTypeArg('send_and_track_file_renamed') -EventTypeArg.send_and_track_file_updated = EventTypeArg('send_and_track_file_updated') -EventTypeArg.send_and_track_link_created = EventTypeArg('send_and_track_link_created') -EventTypeArg.send_and_track_link_deleted = EventTypeArg('send_and_track_link_deleted') -EventTypeArg.send_and_track_link_updated = EventTypeArg('send_and_track_link_updated') -EventTypeArg.send_and_track_link_viewed = EventTypeArg('send_and_track_link_viewed') -EventTypeArg.send_and_track_removed_file_and_associated_links = EventTypeArg('send_and_track_removed_file_and_associated_links') -EventTypeArg.sf_add_group = EventTypeArg('sf_add_group') -EventTypeArg.sf_allow_non_members_to_view_shared_links = EventTypeArg('sf_allow_non_members_to_view_shared_links') -EventTypeArg.sf_external_invite_warn = EventTypeArg('sf_external_invite_warn') -EventTypeArg.sf_fb_invite = EventTypeArg('sf_fb_invite') -EventTypeArg.sf_fb_invite_change_role = EventTypeArg('sf_fb_invite_change_role') -EventTypeArg.sf_fb_uninvite = EventTypeArg('sf_fb_uninvite') -EventTypeArg.sf_invite_group = EventTypeArg('sf_invite_group') -EventTypeArg.sf_team_grant_access = EventTypeArg('sf_team_grant_access') -EventTypeArg.sf_team_invite = EventTypeArg('sf_team_invite') -EventTypeArg.sf_team_invite_change_role = EventTypeArg('sf_team_invite_change_role') -EventTypeArg.sf_team_join = EventTypeArg('sf_team_join') -EventTypeArg.sf_team_join_from_oob_link = EventTypeArg('sf_team_join_from_oob_link') -EventTypeArg.sf_team_uninvite = EventTypeArg('sf_team_uninvite') -EventTypeArg.shared_content_add_invitees = EventTypeArg('shared_content_add_invitees') -EventTypeArg.shared_content_add_link_expiry = EventTypeArg('shared_content_add_link_expiry') -EventTypeArg.shared_content_add_link_password = EventTypeArg('shared_content_add_link_password') -EventTypeArg.shared_content_add_member = EventTypeArg('shared_content_add_member') -EventTypeArg.shared_content_change_downloads_policy = EventTypeArg('shared_content_change_downloads_policy') -EventTypeArg.shared_content_change_invitee_role = EventTypeArg('shared_content_change_invitee_role') -EventTypeArg.shared_content_change_link_audience = EventTypeArg('shared_content_change_link_audience') -EventTypeArg.shared_content_change_link_expiry = EventTypeArg('shared_content_change_link_expiry') -EventTypeArg.shared_content_change_link_password = EventTypeArg('shared_content_change_link_password') -EventTypeArg.shared_content_change_member_role = EventTypeArg('shared_content_change_member_role') -EventTypeArg.shared_content_change_viewer_info_policy = EventTypeArg('shared_content_change_viewer_info_policy') -EventTypeArg.shared_content_claim_invitation = EventTypeArg('shared_content_claim_invitation') -EventTypeArg.shared_content_copy = EventTypeArg('shared_content_copy') -EventTypeArg.shared_content_download = EventTypeArg('shared_content_download') -EventTypeArg.shared_content_relinquish_membership = EventTypeArg('shared_content_relinquish_membership') -EventTypeArg.shared_content_remove_invitees = EventTypeArg('shared_content_remove_invitees') -EventTypeArg.shared_content_remove_link_expiry = EventTypeArg('shared_content_remove_link_expiry') -EventTypeArg.shared_content_remove_link_password = EventTypeArg('shared_content_remove_link_password') -EventTypeArg.shared_content_remove_member = EventTypeArg('shared_content_remove_member') -EventTypeArg.shared_content_request_access = EventTypeArg('shared_content_request_access') -EventTypeArg.shared_content_restore_invitees = EventTypeArg('shared_content_restore_invitees') -EventTypeArg.shared_content_restore_member = EventTypeArg('shared_content_restore_member') -EventTypeArg.shared_content_unshare = EventTypeArg('shared_content_unshare') -EventTypeArg.shared_content_view = EventTypeArg('shared_content_view') -EventTypeArg.shared_folder_change_link_policy = EventTypeArg('shared_folder_change_link_policy') -EventTypeArg.shared_folder_change_members_inheritance_policy = EventTypeArg('shared_folder_change_members_inheritance_policy') -EventTypeArg.shared_folder_change_members_management_policy = EventTypeArg('shared_folder_change_members_management_policy') -EventTypeArg.shared_folder_change_members_policy = EventTypeArg('shared_folder_change_members_policy') -EventTypeArg.shared_folder_create = EventTypeArg('shared_folder_create') -EventTypeArg.shared_folder_decline_invitation = EventTypeArg('shared_folder_decline_invitation') -EventTypeArg.shared_folder_mount = EventTypeArg('shared_folder_mount') -EventTypeArg.shared_folder_nest = EventTypeArg('shared_folder_nest') -EventTypeArg.shared_folder_transfer_ownership = EventTypeArg('shared_folder_transfer_ownership') -EventTypeArg.shared_folder_unmount = EventTypeArg('shared_folder_unmount') -EventTypeArg.shared_link_add_expiry = EventTypeArg('shared_link_add_expiry') -EventTypeArg.shared_link_change_expiry = EventTypeArg('shared_link_change_expiry') -EventTypeArg.shared_link_change_visibility = EventTypeArg('shared_link_change_visibility') -EventTypeArg.shared_link_copy = EventTypeArg('shared_link_copy') -EventTypeArg.shared_link_create = EventTypeArg('shared_link_create') -EventTypeArg.shared_link_disable = EventTypeArg('shared_link_disable') -EventTypeArg.shared_link_download = EventTypeArg('shared_link_download') -EventTypeArg.shared_link_remove_expiry = EventTypeArg('shared_link_remove_expiry') -EventTypeArg.shared_link_remove_visitor = EventTypeArg('shared_link_remove_visitor') -EventTypeArg.shared_link_settings_add_expiration = EventTypeArg('shared_link_settings_add_expiration') -EventTypeArg.shared_link_settings_add_password = EventTypeArg('shared_link_settings_add_password') -EventTypeArg.shared_link_settings_allow_download_disabled = EventTypeArg('shared_link_settings_allow_download_disabled') -EventTypeArg.shared_link_settings_allow_download_enabled = EventTypeArg('shared_link_settings_allow_download_enabled') -EventTypeArg.shared_link_settings_change_audience = EventTypeArg('shared_link_settings_change_audience') -EventTypeArg.shared_link_settings_change_expiration = EventTypeArg('shared_link_settings_change_expiration') -EventTypeArg.shared_link_settings_change_password = EventTypeArg('shared_link_settings_change_password') -EventTypeArg.shared_link_settings_remove_expiration = EventTypeArg('shared_link_settings_remove_expiration') -EventTypeArg.shared_link_settings_remove_password = EventTypeArg('shared_link_settings_remove_password') -EventTypeArg.shared_link_share = EventTypeArg('shared_link_share') -EventTypeArg.shared_link_view = EventTypeArg('shared_link_view') -EventTypeArg.shared_note_opened = EventTypeArg('shared_note_opened') -EventTypeArg.shmodel_disable_downloads = EventTypeArg('shmodel_disable_downloads') -EventTypeArg.shmodel_enable_downloads = EventTypeArg('shmodel_enable_downloads') -EventTypeArg.shmodel_group_share = EventTypeArg('shmodel_group_share') -EventTypeArg.showcase_access_granted = EventTypeArg('showcase_access_granted') -EventTypeArg.showcase_add_member = EventTypeArg('showcase_add_member') -EventTypeArg.showcase_archived = EventTypeArg('showcase_archived') -EventTypeArg.showcase_created = EventTypeArg('showcase_created') -EventTypeArg.showcase_delete_comment = EventTypeArg('showcase_delete_comment') -EventTypeArg.showcase_edited = EventTypeArg('showcase_edited') -EventTypeArg.showcase_edit_comment = EventTypeArg('showcase_edit_comment') -EventTypeArg.showcase_file_added = EventTypeArg('showcase_file_added') -EventTypeArg.showcase_file_download = EventTypeArg('showcase_file_download') -EventTypeArg.showcase_file_removed = EventTypeArg('showcase_file_removed') -EventTypeArg.showcase_file_view = EventTypeArg('showcase_file_view') -EventTypeArg.showcase_permanently_deleted = EventTypeArg('showcase_permanently_deleted') -EventTypeArg.showcase_post_comment = EventTypeArg('showcase_post_comment') -EventTypeArg.showcase_remove_member = EventTypeArg('showcase_remove_member') -EventTypeArg.showcase_renamed = EventTypeArg('showcase_renamed') -EventTypeArg.showcase_request_access = EventTypeArg('showcase_request_access') -EventTypeArg.showcase_resolve_comment = EventTypeArg('showcase_resolve_comment') -EventTypeArg.showcase_restored = EventTypeArg('showcase_restored') -EventTypeArg.showcase_trashed = EventTypeArg('showcase_trashed') -EventTypeArg.showcase_trashed_deprecated = EventTypeArg('showcase_trashed_deprecated') -EventTypeArg.showcase_unresolve_comment = EventTypeArg('showcase_unresolve_comment') -EventTypeArg.showcase_untrashed = EventTypeArg('showcase_untrashed') -EventTypeArg.showcase_untrashed_deprecated = EventTypeArg('showcase_untrashed_deprecated') -EventTypeArg.showcase_view = EventTypeArg('showcase_view') -EventTypeArg.sign_signature_request_canceled = EventTypeArg('sign_signature_request_canceled') -EventTypeArg.sign_signature_request_completed = EventTypeArg('sign_signature_request_completed') -EventTypeArg.sign_signature_request_declined = EventTypeArg('sign_signature_request_declined') -EventTypeArg.sign_signature_request_opened = EventTypeArg('sign_signature_request_opened') -EventTypeArg.sign_signature_request_reminder_sent = EventTypeArg('sign_signature_request_reminder_sent') -EventTypeArg.sign_signature_request_sent = EventTypeArg('sign_signature_request_sent') -EventTypeArg.sign_template_created = EventTypeArg('sign_template_created') -EventTypeArg.sign_template_shared = EventTypeArg('sign_template_shared') -EventTypeArg.risc_security_event = EventTypeArg('risc_security_event') -EventTypeArg.sso_add_cert = EventTypeArg('sso_add_cert') -EventTypeArg.sso_add_login_url = EventTypeArg('sso_add_login_url') -EventTypeArg.sso_add_logout_url = EventTypeArg('sso_add_logout_url') -EventTypeArg.sso_change_cert = EventTypeArg('sso_change_cert') -EventTypeArg.sso_change_login_url = EventTypeArg('sso_change_login_url') -EventTypeArg.sso_change_logout_url = EventTypeArg('sso_change_logout_url') -EventTypeArg.sso_change_saml_identity_mode = EventTypeArg('sso_change_saml_identity_mode') -EventTypeArg.sso_remove_cert = EventTypeArg('sso_remove_cert') -EventTypeArg.sso_remove_login_url = EventTypeArg('sso_remove_login_url') -EventTypeArg.sso_remove_logout_url = EventTypeArg('sso_remove_logout_url') -EventTypeArg.team_folder_change_status = EventTypeArg('team_folder_change_status') -EventTypeArg.team_folder_create = EventTypeArg('team_folder_create') -EventTypeArg.team_folder_downgrade = EventTypeArg('team_folder_downgrade') -EventTypeArg.team_folder_permanently_delete = EventTypeArg('team_folder_permanently_delete') -EventTypeArg.team_folder_rename = EventTypeArg('team_folder_rename') -EventTypeArg.team_folder_space_limits_change_caps_type = EventTypeArg('team_folder_space_limits_change_caps_type') -EventTypeArg.team_folder_space_limits_change_limit = EventTypeArg('team_folder_space_limits_change_limit') -EventTypeArg.team_folder_space_limits_change_notification_target = EventTypeArg('team_folder_space_limits_change_notification_target') -EventTypeArg.team_selective_sync_settings_changed = EventTypeArg('team_selective_sync_settings_changed') -EventTypeArg.account_capture_change_policy = EventTypeArg('account_capture_change_policy') -EventTypeArg.admin_email_reminders_changed = EventTypeArg('admin_email_reminders_changed') -EventTypeArg.ai_third_party_sharing_dropbox_base_policy_changed = EventTypeArg('ai_third_party_sharing_dropbox_base_policy_changed') -EventTypeArg.allow_download_disabled = EventTypeArg('allow_download_disabled') -EventTypeArg.allow_download_enabled = EventTypeArg('allow_download_enabled') -EventTypeArg.apple_login_change_policy = EventTypeArg('apple_login_change_policy') -EventTypeArg.app_permissions_changed = EventTypeArg('app_permissions_changed') -EventTypeArg.camera_uploads_policy_changed = EventTypeArg('camera_uploads_policy_changed') -EventTypeArg.capture_team_space_policy_changed = EventTypeArg('capture_team_space_policy_changed') -EventTypeArg.capture_transcript_policy_changed = EventTypeArg('capture_transcript_policy_changed') -EventTypeArg.classification_change_policy = EventTypeArg('classification_change_policy') -EventTypeArg.computer_backup_policy_changed = EventTypeArg('computer_backup_policy_changed') -EventTypeArg.content_administration_policy_changed = EventTypeArg('content_administration_policy_changed') -EventTypeArg.content_deletion_protection_change_policy = EventTypeArg('content_deletion_protection_change_policy') -EventTypeArg.dash_external_sharing_policy_changed = EventTypeArg('dash_external_sharing_policy_changed') -EventTypeArg.data_placement_restriction_change_policy = EventTypeArg('data_placement_restriction_change_policy') -EventTypeArg.data_placement_restriction_satisfy_policy = EventTypeArg('data_placement_restriction_satisfy_policy') -EventTypeArg.device_approvals_add_exception = EventTypeArg('device_approvals_add_exception') -EventTypeArg.device_approvals_change_desktop_policy = EventTypeArg('device_approvals_change_desktop_policy') -EventTypeArg.device_approvals_change_mobile_policy = EventTypeArg('device_approvals_change_mobile_policy') -EventTypeArg.device_approvals_change_overage_action = EventTypeArg('device_approvals_change_overage_action') -EventTypeArg.device_approvals_change_unlink_action = EventTypeArg('device_approvals_change_unlink_action') -EventTypeArg.device_approvals_remove_exception = EventTypeArg('device_approvals_remove_exception') -EventTypeArg.directory_restrictions_add_members = EventTypeArg('directory_restrictions_add_members') -EventTypeArg.directory_restrictions_remove_members = EventTypeArg('directory_restrictions_remove_members') -EventTypeArg.dropbox_passwords_policy_changed = EventTypeArg('dropbox_passwords_policy_changed') -EventTypeArg.email_ingest_policy_changed = EventTypeArg('email_ingest_policy_changed') -EventTypeArg.emm_add_exception = EventTypeArg('emm_add_exception') -EventTypeArg.emm_change_policy = EventTypeArg('emm_change_policy') -EventTypeArg.emm_remove_exception = EventTypeArg('emm_remove_exception') -EventTypeArg.extended_version_history_change_policy = EventTypeArg('extended_version_history_change_policy') -EventTypeArg.external_drive_backup_policy_changed = EventTypeArg('external_drive_backup_policy_changed') -EventTypeArg.file_comments_change_policy = EventTypeArg('file_comments_change_policy') -EventTypeArg.file_locking_policy_changed = EventTypeArg('file_locking_policy_changed') -EventTypeArg.file_provider_migration_policy_changed = EventTypeArg('file_provider_migration_policy_changed') -EventTypeArg.file_requests_change_policy = EventTypeArg('file_requests_change_policy') -EventTypeArg.file_requests_emails_enabled = EventTypeArg('file_requests_emails_enabled') -EventTypeArg.file_requests_emails_restricted_to_team_only = EventTypeArg('file_requests_emails_restricted_to_team_only') -EventTypeArg.file_transfers_policy_changed = EventTypeArg('file_transfers_policy_changed') -EventTypeArg.flexible_file_names_policy_changed = EventTypeArg('flexible_file_names_policy_changed') -EventTypeArg.folder_link_restriction_policy_changed = EventTypeArg('folder_link_restriction_policy_changed') -EventTypeArg.google_sso_change_policy = EventTypeArg('google_sso_change_policy') -EventTypeArg.group_user_management_change_policy = EventTypeArg('group_user_management_change_policy') -EventTypeArg.integration_policy_changed = EventTypeArg('integration_policy_changed') -EventTypeArg.invite_acceptance_email_policy_changed = EventTypeArg('invite_acceptance_email_policy_changed') -EventTypeArg.media_hub_adding_people_policy_changed = EventTypeArg('media_hub_adding_people_policy_changed') -EventTypeArg.media_hub_download_policy_changed = EventTypeArg('media_hub_download_policy_changed') -EventTypeArg.media_hub_link_sharing_policy_changed = EventTypeArg('media_hub_link_sharing_policy_changed') -EventTypeArg.member_requests_change_policy = EventTypeArg('member_requests_change_policy') -EventTypeArg.member_send_invite_policy_changed = EventTypeArg('member_send_invite_policy_changed') -EventTypeArg.member_space_limits_add_exception = EventTypeArg('member_space_limits_add_exception') -EventTypeArg.member_space_limits_change_caps_type_policy = EventTypeArg('member_space_limits_change_caps_type_policy') -EventTypeArg.member_space_limits_change_policy = EventTypeArg('member_space_limits_change_policy') -EventTypeArg.member_space_limits_remove_exception = EventTypeArg('member_space_limits_remove_exception') -EventTypeArg.member_suggestions_change_policy = EventTypeArg('member_suggestions_change_policy') -EventTypeArg.microsoft_login_change_policy = EventTypeArg('microsoft_login_change_policy') -EventTypeArg.microsoft_office_addin_change_policy = EventTypeArg('microsoft_office_addin_change_policy') -EventTypeArg.multi_team_identity_policy_changed = EventTypeArg('multi_team_identity_policy_changed') -EventTypeArg.network_control_change_policy = EventTypeArg('network_control_change_policy') -EventTypeArg.paper_change_deployment_policy = EventTypeArg('paper_change_deployment_policy') -EventTypeArg.paper_change_member_link_policy = EventTypeArg('paper_change_member_link_policy') -EventTypeArg.paper_change_member_policy = EventTypeArg('paper_change_member_policy') -EventTypeArg.paper_change_policy = EventTypeArg('paper_change_policy') -EventTypeArg.paper_default_folder_policy_changed = EventTypeArg('paper_default_folder_policy_changed') -EventTypeArg.paper_desktop_policy_changed = EventTypeArg('paper_desktop_policy_changed') -EventTypeArg.paper_enabled_users_group_addition = EventTypeArg('paper_enabled_users_group_addition') -EventTypeArg.paper_enabled_users_group_removal = EventTypeArg('paper_enabled_users_group_removal') -EventTypeArg.passkey_login_policy_changed = EventTypeArg('passkey_login_policy_changed') -EventTypeArg.password_strength_requirements_change_policy = EventTypeArg('password_strength_requirements_change_policy') -EventTypeArg.permanent_delete_change_policy = EventTypeArg('permanent_delete_change_policy') -EventTypeArg.previews_ai_policy_changed = EventTypeArg('previews_ai_policy_changed') -EventTypeArg.replay_adding_people_policy_changed = EventTypeArg('replay_adding_people_policy_changed') -EventTypeArg.replay_sharing_policy_changed = EventTypeArg('replay_sharing_policy_changed') -EventTypeArg.reseller_support_change_policy = EventTypeArg('reseller_support_change_policy') -EventTypeArg.rewind_policy_changed = EventTypeArg('rewind_policy_changed') -EventTypeArg.send_and_track_policy_changed = EventTypeArg('send_and_track_policy_changed') -EventTypeArg.send_external_sharing_policy_changed = EventTypeArg('send_external_sharing_policy_changed') -EventTypeArg.send_for_signature_policy_changed = EventTypeArg('send_for_signature_policy_changed') -EventTypeArg.shared_link_default_permissions_policy_changed = EventTypeArg('shared_link_default_permissions_policy_changed') -EventTypeArg.sharing_change_folder_join_policy = EventTypeArg('sharing_change_folder_join_policy') -EventTypeArg.sharing_change_link_allow_change_expiration_policy = EventTypeArg('sharing_change_link_allow_change_expiration_policy') -EventTypeArg.sharing_change_link_default_expiration_policy = EventTypeArg('sharing_change_link_default_expiration_policy') -EventTypeArg.sharing_change_link_enforce_password_policy = EventTypeArg('sharing_change_link_enforce_password_policy') -EventTypeArg.sharing_change_link_policy = EventTypeArg('sharing_change_link_policy') -EventTypeArg.sharing_change_member_policy = EventTypeArg('sharing_change_member_policy') -EventTypeArg.showcase_change_download_policy = EventTypeArg('showcase_change_download_policy') -EventTypeArg.showcase_change_enabled_policy = EventTypeArg('showcase_change_enabled_policy') -EventTypeArg.showcase_change_external_sharing_policy = EventTypeArg('showcase_change_external_sharing_policy') -EventTypeArg.sign_external_sharing_policy_changed = EventTypeArg('sign_external_sharing_policy_changed') -EventTypeArg.sign_template_creation_permission_changed = EventTypeArg('sign_template_creation_permission_changed') -EventTypeArg.smarter_smart_sync_policy_changed = EventTypeArg('smarter_smart_sync_policy_changed') -EventTypeArg.smart_sync_change_policy = EventTypeArg('smart_sync_change_policy') -EventTypeArg.smart_sync_not_opt_out = EventTypeArg('smart_sync_not_opt_out') -EventTypeArg.smart_sync_opt_out = EventTypeArg('smart_sync_opt_out') -EventTypeArg.sso_change_policy = EventTypeArg('sso_change_policy') -EventTypeArg.stack_cross_team_access_policy_changed = EventTypeArg('stack_cross_team_access_policy_changed') -EventTypeArg.team_branding_policy_changed = EventTypeArg('team_branding_policy_changed') -EventTypeArg.team_extensions_policy_changed = EventTypeArg('team_extensions_policy_changed') -EventTypeArg.team_member_storage_request_policy_changed = EventTypeArg('team_member_storage_request_policy_changed') -EventTypeArg.team_selective_sync_policy_changed = EventTypeArg('team_selective_sync_policy_changed') -EventTypeArg.team_sharing_whitelist_subjects_changed = EventTypeArg('team_sharing_whitelist_subjects_changed') -EventTypeArg.tfa_add_exception = EventTypeArg('tfa_add_exception') -EventTypeArg.tfa_change_policy = EventTypeArg('tfa_change_policy') -EventTypeArg.tfa_remove_exception = EventTypeArg('tfa_remove_exception') -EventTypeArg.top_level_content_policy_changed = EventTypeArg('top_level_content_policy_changed') -EventTypeArg.two_account_change_policy = EventTypeArg('two_account_change_policy') -EventTypeArg.viewer_info_policy_changed = EventTypeArg('viewer_info_policy_changed') -EventTypeArg.watermarking_policy_changed = EventTypeArg('watermarking_policy_changed') -EventTypeArg.web_sessions_change_active_session_limit = EventTypeArg('web_sessions_change_active_session_limit') -EventTypeArg.web_sessions_change_fixed_length_policy = EventTypeArg('web_sessions_change_fixed_length_policy') -EventTypeArg.web_sessions_change_idle_length_policy = EventTypeArg('web_sessions_change_idle_length_policy') -EventTypeArg.data_residency_migration_request_successful = EventTypeArg('data_residency_migration_request_successful') -EventTypeArg.data_residency_migration_request_unsuccessful = EventTypeArg('data_residency_migration_request_unsuccessful') -EventTypeArg.team_merge_from = EventTypeArg('team_merge_from') -EventTypeArg.team_merge_to = EventTypeArg('team_merge_to') -EventTypeArg.team_profile_add_background = EventTypeArg('team_profile_add_background') -EventTypeArg.team_profile_add_logo = EventTypeArg('team_profile_add_logo') -EventTypeArg.team_profile_change_background = EventTypeArg('team_profile_change_background') -EventTypeArg.team_profile_change_default_language = EventTypeArg('team_profile_change_default_language') -EventTypeArg.team_profile_change_logo = EventTypeArg('team_profile_change_logo') -EventTypeArg.team_profile_change_name = EventTypeArg('team_profile_change_name') -EventTypeArg.team_profile_remove_background = EventTypeArg('team_profile_remove_background') -EventTypeArg.team_profile_remove_logo = EventTypeArg('team_profile_remove_logo') -EventTypeArg.passkey_add = EventTypeArg('passkey_add') -EventTypeArg.passkey_remove = EventTypeArg('passkey_remove') -EventTypeArg.tfa_add_backup_phone = EventTypeArg('tfa_add_backup_phone') -EventTypeArg.tfa_add_security_key = EventTypeArg('tfa_add_security_key') -EventTypeArg.tfa_change_backup_phone = EventTypeArg('tfa_change_backup_phone') -EventTypeArg.tfa_change_status = EventTypeArg('tfa_change_status') -EventTypeArg.tfa_remove_backup_phone = EventTypeArg('tfa_remove_backup_phone') -EventTypeArg.tfa_remove_security_key = EventTypeArg('tfa_remove_security_key') -EventTypeArg.tfa_reset = EventTypeArg('tfa_reset') -EventTypeArg.changed_enterprise_admin_role = EventTypeArg('changed_enterprise_admin_role') -EventTypeArg.changed_enterprise_connected_team_status = EventTypeArg('changed_enterprise_connected_team_status') -EventTypeArg.ended_enterprise_admin_session = EventTypeArg('ended_enterprise_admin_session') -EventTypeArg.ended_enterprise_admin_session_deprecated = EventTypeArg('ended_enterprise_admin_session_deprecated') -EventTypeArg.enterprise_settings_locking = EventTypeArg('enterprise_settings_locking') -EventTypeArg.guest_admin_change_status = EventTypeArg('guest_admin_change_status') -EventTypeArg.started_enterprise_admin_session = EventTypeArg('started_enterprise_admin_session') -EventTypeArg.team_merge_request_accepted = EventTypeArg('team_merge_request_accepted') -EventTypeArg.team_merge_request_accepted_shown_to_primary_team = EventTypeArg('team_merge_request_accepted_shown_to_primary_team') -EventTypeArg.team_merge_request_accepted_shown_to_secondary_team = EventTypeArg('team_merge_request_accepted_shown_to_secondary_team') -EventTypeArg.team_merge_request_auto_canceled = EventTypeArg('team_merge_request_auto_canceled') -EventTypeArg.team_merge_request_canceled = EventTypeArg('team_merge_request_canceled') -EventTypeArg.team_merge_request_canceled_shown_to_primary_team = EventTypeArg('team_merge_request_canceled_shown_to_primary_team') -EventTypeArg.team_merge_request_canceled_shown_to_secondary_team = EventTypeArg('team_merge_request_canceled_shown_to_secondary_team') -EventTypeArg.team_merge_request_expired = EventTypeArg('team_merge_request_expired') -EventTypeArg.team_merge_request_expired_shown_to_primary_team = EventTypeArg('team_merge_request_expired_shown_to_primary_team') -EventTypeArg.team_merge_request_expired_shown_to_secondary_team = EventTypeArg('team_merge_request_expired_shown_to_secondary_team') -EventTypeArg.team_merge_request_rejected_shown_to_primary_team = EventTypeArg('team_merge_request_rejected_shown_to_primary_team') -EventTypeArg.team_merge_request_rejected_shown_to_secondary_team = EventTypeArg('team_merge_request_rejected_shown_to_secondary_team') -EventTypeArg.team_merge_request_reminder = EventTypeArg('team_merge_request_reminder') -EventTypeArg.team_merge_request_reminder_shown_to_primary_team = EventTypeArg('team_merge_request_reminder_shown_to_primary_team') -EventTypeArg.team_merge_request_reminder_shown_to_secondary_team = EventTypeArg('team_merge_request_reminder_shown_to_secondary_team') -EventTypeArg.team_merge_request_revoked = EventTypeArg('team_merge_request_revoked') -EventTypeArg.team_merge_request_sent_shown_to_primary_team = EventTypeArg('team_merge_request_sent_shown_to_primary_team') -EventTypeArg.team_merge_request_sent_shown_to_secondary_team = EventTypeArg('team_merge_request_sent_shown_to_secondary_team') -EventTypeArg.other = EventTypeArg('other') +EventTypeArg.admin_alerting_alert_state_changed = EventTypeArg("admin_alerting_alert_state_changed") +EventTypeArg.admin_alerting_changed_alert_config = EventTypeArg( + "admin_alerting_changed_alert_config" +) +EventTypeArg.admin_alerting_triggered_alert = EventTypeArg("admin_alerting_triggered_alert") +EventTypeArg.ransomware_restore_process_completed = EventTypeArg( + "ransomware_restore_process_completed" +) +EventTypeArg.ransomware_restore_process_started = EventTypeArg("ransomware_restore_process_started") +EventTypeArg.app_blocked_by_permissions = EventTypeArg("app_blocked_by_permissions") +EventTypeArg.app_link_team = EventTypeArg("app_link_team") +EventTypeArg.app_link_user = EventTypeArg("app_link_user") +EventTypeArg.app_unlink_team = EventTypeArg("app_unlink_team") +EventTypeArg.app_unlink_user = EventTypeArg("app_unlink_user") +EventTypeArg.integration_connected = EventTypeArg("integration_connected") +EventTypeArg.integration_disconnected = EventTypeArg("integration_disconnected") +EventTypeArg.file_add_comment = EventTypeArg("file_add_comment") +EventTypeArg.file_change_comment_subscription = EventTypeArg("file_change_comment_subscription") +EventTypeArg.file_delete_comment = EventTypeArg("file_delete_comment") +EventTypeArg.file_edit_comment = EventTypeArg("file_edit_comment") +EventTypeArg.file_like_comment = EventTypeArg("file_like_comment") +EventTypeArg.file_resolve_comment = EventTypeArg("file_resolve_comment") +EventTypeArg.file_unlike_comment = EventTypeArg("file_unlike_comment") +EventTypeArg.file_unresolve_comment = EventTypeArg("file_unresolve_comment") +EventTypeArg.dash_added_comment_to_stack = EventTypeArg("dash_added_comment_to_stack") +EventTypeArg.dash_added_connector = EventTypeArg("dash_added_connector") +EventTypeArg.dash_added_link_to_stack = EventTypeArg("dash_added_link_to_stack") +EventTypeArg.dash_added_team_email_domain_allowlist = EventTypeArg( + "dash_added_team_email_domain_allowlist" +) +EventTypeArg.dash_admin_added_org_wide_connector = EventTypeArg( + "dash_admin_added_org_wide_connector" +) +EventTypeArg.dash_admin_disabled_connector = EventTypeArg("dash_admin_disabled_connector") +EventTypeArg.dash_admin_enabled_connector = EventTypeArg("dash_admin_enabled_connector") +EventTypeArg.dash_admin_removed_org_wide_connector = EventTypeArg( + "dash_admin_removed_org_wide_connector" +) +EventTypeArg.dash_archived_stack = EventTypeArg("dash_archived_stack") +EventTypeArg.dash_changed_audience_of_shared_link_to_stack = EventTypeArg( + "dash_changed_audience_of_shared_link_to_stack" +) +EventTypeArg.dash_cloned_stack = EventTypeArg("dash_cloned_stack") +EventTypeArg.dash_connector_tools_call = EventTypeArg("dash_connector_tools_call") +EventTypeArg.dash_created_stack = EventTypeArg("dash_created_stack") +EventTypeArg.dash_deleted_comment_from_stack = EventTypeArg("dash_deleted_comment_from_stack") +EventTypeArg.dash_deleted_stack = EventTypeArg("dash_deleted_stack") +EventTypeArg.dash_edited_comment_in_stack = EventTypeArg("dash_edited_comment_in_stack") +EventTypeArg.dash_external_user_opened_stack = EventTypeArg("dash_external_user_opened_stack") +EventTypeArg.dash_first_launched_desktop = EventTypeArg("dash_first_launched_desktop") +EventTypeArg.dash_first_launched_extension = EventTypeArg("dash_first_launched_extension") +EventTypeArg.dash_first_launched_web_start_page = EventTypeArg("dash_first_launched_web_start_page") +EventTypeArg.dash_opened_shared_link_to_stack = EventTypeArg("dash_opened_shared_link_to_stack") +EventTypeArg.dash_opened_stack = EventTypeArg("dash_opened_stack") +EventTypeArg.dash_preview_opt_out_status_changed = EventTypeArg( + "dash_preview_opt_out_status_changed" +) +EventTypeArg.dash_removed_connector = EventTypeArg("dash_removed_connector") +EventTypeArg.dash_removed_link_from_stack = EventTypeArg("dash_removed_link_from_stack") +EventTypeArg.dash_removed_shared_link_to_stack = EventTypeArg("dash_removed_shared_link_to_stack") +EventTypeArg.dash_removed_team_email_domain_allowlist = EventTypeArg( + "dash_removed_team_email_domain_allowlist" +) +EventTypeArg.dash_renamed_stack = EventTypeArg("dash_renamed_stack") +EventTypeArg.dash_shared_link_to_stack = EventTypeArg("dash_shared_link_to_stack") +EventTypeArg.dash_unarchived_stack = EventTypeArg("dash_unarchived_stack") +EventTypeArg.dash_viewed_company_stack = EventTypeArg("dash_viewed_company_stack") +EventTypeArg.dash_viewed_external_ai_activity_report = EventTypeArg( + "dash_viewed_external_ai_activity_report" +) +EventTypeArg.governance_policy_add_folders = EventTypeArg("governance_policy_add_folders") +EventTypeArg.governance_policy_add_folder_failed = EventTypeArg( + "governance_policy_add_folder_failed" +) +EventTypeArg.governance_policy_content_disposed = EventTypeArg("governance_policy_content_disposed") +EventTypeArg.governance_policy_create = EventTypeArg("governance_policy_create") +EventTypeArg.governance_policy_delete = EventTypeArg("governance_policy_delete") +EventTypeArg.governance_policy_edit_details = EventTypeArg("governance_policy_edit_details") +EventTypeArg.governance_policy_edit_duration = EventTypeArg("governance_policy_edit_duration") +EventTypeArg.governance_policy_export_created = EventTypeArg("governance_policy_export_created") +EventTypeArg.governance_policy_export_removed = EventTypeArg("governance_policy_export_removed") +EventTypeArg.governance_policy_remove_folders = EventTypeArg("governance_policy_remove_folders") +EventTypeArg.governance_policy_report_created = EventTypeArg("governance_policy_report_created") +EventTypeArg.governance_policy_zip_part_downloaded = EventTypeArg( + "governance_policy_zip_part_downloaded" +) +EventTypeArg.legal_holds_activate_a_hold = EventTypeArg("legal_holds_activate_a_hold") +EventTypeArg.legal_holds_add_members = EventTypeArg("legal_holds_add_members") +EventTypeArg.legal_holds_change_hold_details = EventTypeArg("legal_holds_change_hold_details") +EventTypeArg.legal_holds_change_hold_name = EventTypeArg("legal_holds_change_hold_name") +EventTypeArg.legal_holds_export_a_hold = EventTypeArg("legal_holds_export_a_hold") +EventTypeArg.legal_holds_export_cancelled = EventTypeArg("legal_holds_export_cancelled") +EventTypeArg.legal_holds_export_downloaded = EventTypeArg("legal_holds_export_downloaded") +EventTypeArg.legal_holds_export_removed = EventTypeArg("legal_holds_export_removed") +EventTypeArg.legal_holds_release_a_hold = EventTypeArg("legal_holds_release_a_hold") +EventTypeArg.legal_holds_remove_members = EventTypeArg("legal_holds_remove_members") +EventTypeArg.legal_holds_report_a_hold = EventTypeArg("legal_holds_report_a_hold") +EventTypeArg.device_change_ip_desktop = EventTypeArg("device_change_ip_desktop") +EventTypeArg.device_change_ip_mobile = EventTypeArg("device_change_ip_mobile") +EventTypeArg.device_change_ip_web = EventTypeArg("device_change_ip_web") +EventTypeArg.device_delete_on_unlink_fail = EventTypeArg("device_delete_on_unlink_fail") +EventTypeArg.device_delete_on_unlink_success = EventTypeArg("device_delete_on_unlink_success") +EventTypeArg.device_link_fail = EventTypeArg("device_link_fail") +EventTypeArg.device_link_success = EventTypeArg("device_link_success") +EventTypeArg.device_management_disabled = EventTypeArg("device_management_disabled") +EventTypeArg.device_management_enabled = EventTypeArg("device_management_enabled") +EventTypeArg.device_sync_backup_status_changed = EventTypeArg("device_sync_backup_status_changed") +EventTypeArg.device_unlink = EventTypeArg("device_unlink") +EventTypeArg.dropbox_passwords_exported = EventTypeArg("dropbox_passwords_exported") +EventTypeArg.dropbox_passwords_new_device_enrolled = EventTypeArg( + "dropbox_passwords_new_device_enrolled" +) +EventTypeArg.emm_refresh_auth_token = EventTypeArg("emm_refresh_auth_token") +EventTypeArg.external_drive_backup_eligibility_status_checked = EventTypeArg( + "external_drive_backup_eligibility_status_checked" +) +EventTypeArg.external_drive_backup_status_changed = EventTypeArg( + "external_drive_backup_status_changed" +) +EventTypeArg.account_capture_change_availability = EventTypeArg( + "account_capture_change_availability" +) +EventTypeArg.account_capture_migrate_account = EventTypeArg("account_capture_migrate_account") +EventTypeArg.account_capture_notification_emails_sent = EventTypeArg( + "account_capture_notification_emails_sent" +) +EventTypeArg.account_capture_relinquish_account = EventTypeArg("account_capture_relinquish_account") +EventTypeArg.disabled_domain_invites = EventTypeArg("disabled_domain_invites") +EventTypeArg.domain_invites_approve_request_to_join_team = EventTypeArg( + "domain_invites_approve_request_to_join_team" +) +EventTypeArg.domain_invites_decline_request_to_join_team = EventTypeArg( + "domain_invites_decline_request_to_join_team" +) +EventTypeArg.domain_invites_email_existing_users = EventTypeArg( + "domain_invites_email_existing_users" +) +EventTypeArg.domain_invites_request_to_join_team = EventTypeArg( + "domain_invites_request_to_join_team" +) +EventTypeArg.domain_invites_set_invite_new_user_pref_to_no = EventTypeArg( + "domain_invites_set_invite_new_user_pref_to_no" +) +EventTypeArg.domain_invites_set_invite_new_user_pref_to_yes = EventTypeArg( + "domain_invites_set_invite_new_user_pref_to_yes" +) +EventTypeArg.domain_verification_add_domain_fail = EventTypeArg( + "domain_verification_add_domain_fail" +) +EventTypeArg.domain_verification_add_domain_success = EventTypeArg( + "domain_verification_add_domain_success" +) +EventTypeArg.domain_verification_remove_domain = EventTypeArg("domain_verification_remove_domain") +EventTypeArg.enabled_domain_invites = EventTypeArg("enabled_domain_invites") +EventTypeArg.encrypted_folder_cancel_team_key_rotation = EventTypeArg( + "encrypted_folder_cancel_team_key_rotation" +) +EventTypeArg.encrypted_folder_enroll_backup_key = EventTypeArg("encrypted_folder_enroll_backup_key") +EventTypeArg.encrypted_folder_enroll_client = EventTypeArg("encrypted_folder_enroll_client") +EventTypeArg.encrypted_folder_enroll_team = EventTypeArg("encrypted_folder_enroll_team") +EventTypeArg.encrypted_folder_finish_team_unenrollment = EventTypeArg( + "encrypted_folder_finish_team_unenrollment" +) +EventTypeArg.encrypted_folder_init_team_key_rotation = EventTypeArg( + "encrypted_folder_init_team_key_rotation" +) +EventTypeArg.encrypted_folder_init_team_unenrollment = EventTypeArg( + "encrypted_folder_init_team_unenrollment" +) +EventTypeArg.encrypted_folder_remove_backup_key = EventTypeArg("encrypted_folder_remove_backup_key") +EventTypeArg.encrypted_folder_rotate_team_key = EventTypeArg("encrypted_folder_rotate_team_key") +EventTypeArg.encrypted_folder_unenroll_client = EventTypeArg("encrypted_folder_unenroll_client") +EventTypeArg.team_encryption_key_activate_key = EventTypeArg("team_encryption_key_activate_key") +EventTypeArg.team_encryption_key_cancel_key_deletion = EventTypeArg( + "team_encryption_key_cancel_key_deletion" +) +EventTypeArg.team_encryption_key_create_key = EventTypeArg("team_encryption_key_create_key") +EventTypeArg.team_encryption_key_deactivate_key = EventTypeArg("team_encryption_key_deactivate_key") +EventTypeArg.team_encryption_key_delete_key = EventTypeArg("team_encryption_key_delete_key") +EventTypeArg.team_encryption_key_disable_key = EventTypeArg("team_encryption_key_disable_key") +EventTypeArg.team_encryption_key_enable_key = EventTypeArg("team_encryption_key_enable_key") +EventTypeArg.team_encryption_key_rotate_key = EventTypeArg("team_encryption_key_rotate_key") +EventTypeArg.team_encryption_key_schedule_key_deletion = EventTypeArg( + "team_encryption_key_schedule_key_deletion" +) +EventTypeArg.apply_naming_convention = EventTypeArg("apply_naming_convention") +EventTypeArg.create_folder = EventTypeArg("create_folder") +EventTypeArg.file_add = EventTypeArg("file_add") +EventTypeArg.file_add_from_automation = EventTypeArg("file_add_from_automation") +EventTypeArg.file_copy = EventTypeArg("file_copy") +EventTypeArg.file_delete = EventTypeArg("file_delete") +EventTypeArg.file_download = EventTypeArg("file_download") +EventTypeArg.file_edit = EventTypeArg("file_edit") +EventTypeArg.file_get_copy_reference = EventTypeArg("file_get_copy_reference") +EventTypeArg.file_locking_lock_status_changed = EventTypeArg("file_locking_lock_status_changed") +EventTypeArg.file_move = EventTypeArg("file_move") +EventTypeArg.file_permanently_delete = EventTypeArg("file_permanently_delete") +EventTypeArg.file_preview = EventTypeArg("file_preview") +EventTypeArg.file_rename = EventTypeArg("file_rename") +EventTypeArg.file_restore = EventTypeArg("file_restore") +EventTypeArg.file_revert = EventTypeArg("file_revert") +EventTypeArg.file_rollback_changes = EventTypeArg("file_rollback_changes") +EventTypeArg.file_save_copy_reference = EventTypeArg("file_save_copy_reference") +EventTypeArg.folder_overview_description_changed = EventTypeArg( + "folder_overview_description_changed" +) +EventTypeArg.folder_overview_item_pinned = EventTypeArg("folder_overview_item_pinned") +EventTypeArg.folder_overview_item_unpinned = EventTypeArg("folder_overview_item_unpinned") +EventTypeArg.media_hub_file_downloaded = EventTypeArg("media_hub_file_downloaded") +EventTypeArg.object_label_added = EventTypeArg("object_label_added") +EventTypeArg.object_label_removed = EventTypeArg("object_label_removed") +EventTypeArg.object_label_updated_value = EventTypeArg("object_label_updated_value") +EventTypeArg.organize_folder_with_tidy = EventTypeArg("organize_folder_with_tidy") +EventTypeArg.replay_file_delete = EventTypeArg("replay_file_delete") +EventTypeArg.replay_file_downloaded = EventTypeArg("replay_file_downloaded") +EventTypeArg.replay_team_project_created = EventTypeArg("replay_team_project_created") +EventTypeArg.rewind_folder = EventTypeArg("rewind_folder") +EventTypeArg.undo_naming_convention = EventTypeArg("undo_naming_convention") +EventTypeArg.undo_organize_folder_with_tidy = EventTypeArg("undo_organize_folder_with_tidy") +EventTypeArg.user_tags_added = EventTypeArg("user_tags_added") +EventTypeArg.user_tags_removed = EventTypeArg("user_tags_removed") +EventTypeArg.email_ingest_receive_file = EventTypeArg("email_ingest_receive_file") +EventTypeArg.file_request_auto_close = EventTypeArg("file_request_auto_close") +EventTypeArg.file_request_change = EventTypeArg("file_request_change") +EventTypeArg.file_request_close = EventTypeArg("file_request_close") +EventTypeArg.file_request_create = EventTypeArg("file_request_create") +EventTypeArg.file_request_delete = EventTypeArg("file_request_delete") +EventTypeArg.file_request_receive_file = EventTypeArg("file_request_receive_file") +EventTypeArg.group_add_external_id = EventTypeArg("group_add_external_id") +EventTypeArg.group_add_member = EventTypeArg("group_add_member") +EventTypeArg.group_change_external_id = EventTypeArg("group_change_external_id") +EventTypeArg.group_change_management_type = EventTypeArg("group_change_management_type") +EventTypeArg.group_change_member_role = EventTypeArg("group_change_member_role") +EventTypeArg.group_create = EventTypeArg("group_create") +EventTypeArg.group_delete = EventTypeArg("group_delete") +EventTypeArg.group_description_updated = EventTypeArg("group_description_updated") +EventTypeArg.group_external_sharing_setting_override_changed = EventTypeArg( + "group_external_sharing_setting_override_changed" +) +EventTypeArg.group_join_policy_updated = EventTypeArg("group_join_policy_updated") +EventTypeArg.group_moved = EventTypeArg("group_moved") +EventTypeArg.group_remove_external_id = EventTypeArg("group_remove_external_id") +EventTypeArg.group_remove_member = EventTypeArg("group_remove_member") +EventTypeArg.group_rename = EventTypeArg("group_rename") +EventTypeArg.account_lock_or_unlocked = EventTypeArg("account_lock_or_unlocked") +EventTypeArg.emm_error = EventTypeArg("emm_error") +EventTypeArg.guest_admin_signed_in_via_trusted_teams = EventTypeArg( + "guest_admin_signed_in_via_trusted_teams" +) +EventTypeArg.guest_admin_signed_out_via_trusted_teams = EventTypeArg( + "guest_admin_signed_out_via_trusted_teams" +) +EventTypeArg.login_fail = EventTypeArg("login_fail") +EventTypeArg.login_success = EventTypeArg("login_success") +EventTypeArg.logout = EventTypeArg("logout") +EventTypeArg.reseller_support_session_end = EventTypeArg("reseller_support_session_end") +EventTypeArg.reseller_support_session_start = EventTypeArg("reseller_support_session_start") +EventTypeArg.sign_in_as_session_end = EventTypeArg("sign_in_as_session_end") +EventTypeArg.sign_in_as_session_start = EventTypeArg("sign_in_as_session_start") +EventTypeArg.sso_error = EventTypeArg("sso_error") +EventTypeArg.addon_assigned = EventTypeArg("addon_assigned") +EventTypeArg.addon_removed = EventTypeArg("addon_removed") +EventTypeArg.backup_admin_invitation_sent = EventTypeArg("backup_admin_invitation_sent") +EventTypeArg.backup_invitation_opened = EventTypeArg("backup_invitation_opened") +EventTypeArg.create_team_invite_link = EventTypeArg("create_team_invite_link") +EventTypeArg.delete_team_invite_link = EventTypeArg("delete_team_invite_link") +EventTypeArg.member_add_external_id = EventTypeArg("member_add_external_id") +EventTypeArg.member_add_name = EventTypeArg("member_add_name") +EventTypeArg.member_change_admin_role = EventTypeArg("member_change_admin_role") +EventTypeArg.member_change_email = EventTypeArg("member_change_email") +EventTypeArg.member_change_external_id = EventTypeArg("member_change_external_id") +EventTypeArg.member_change_membership_type = EventTypeArg("member_change_membership_type") +EventTypeArg.member_change_name = EventTypeArg("member_change_name") +EventTypeArg.member_change_reseller_role = EventTypeArg("member_change_reseller_role") +EventTypeArg.member_change_status = EventTypeArg("member_change_status") +EventTypeArg.member_delete_manual_contacts = EventTypeArg("member_delete_manual_contacts") +EventTypeArg.member_delete_profile_photo = EventTypeArg("member_delete_profile_photo") +EventTypeArg.member_permanently_delete_account_contents = EventTypeArg( + "member_permanently_delete_account_contents" +) +EventTypeArg.member_remove_external_id = EventTypeArg("member_remove_external_id") +EventTypeArg.member_set_profile_photo = EventTypeArg("member_set_profile_photo") +EventTypeArg.member_space_limits_add_custom_quota = EventTypeArg( + "member_space_limits_add_custom_quota" +) +EventTypeArg.member_space_limits_change_custom_quota = EventTypeArg( + "member_space_limits_change_custom_quota" +) +EventTypeArg.member_space_limits_change_status = EventTypeArg("member_space_limits_change_status") +EventTypeArg.member_space_limits_remove_custom_quota = EventTypeArg( + "member_space_limits_remove_custom_quota" +) +EventTypeArg.member_suggest = EventTypeArg("member_suggest") +EventTypeArg.member_transfer_account_contents = EventTypeArg("member_transfer_account_contents") +EventTypeArg.pending_secondary_email_added = EventTypeArg("pending_secondary_email_added") +EventTypeArg.product_assigned_to_member = EventTypeArg("product_assigned_to_member") +EventTypeArg.product_removed_from_member = EventTypeArg("product_removed_from_member") +EventTypeArg.secondary_email_deleted = EventTypeArg("secondary_email_deleted") +EventTypeArg.secondary_email_verified = EventTypeArg("secondary_email_verified") +EventTypeArg.secondary_mails_policy_changed = EventTypeArg("secondary_mails_policy_changed") +EventTypeArg.binder_add_page = EventTypeArg("binder_add_page") +EventTypeArg.binder_add_section = EventTypeArg("binder_add_section") +EventTypeArg.binder_remove_page = EventTypeArg("binder_remove_page") +EventTypeArg.binder_remove_section = EventTypeArg("binder_remove_section") +EventTypeArg.binder_rename_page = EventTypeArg("binder_rename_page") +EventTypeArg.binder_rename_section = EventTypeArg("binder_rename_section") +EventTypeArg.binder_reorder_page = EventTypeArg("binder_reorder_page") +EventTypeArg.binder_reorder_section = EventTypeArg("binder_reorder_section") +EventTypeArg.paper_content_add_member = EventTypeArg("paper_content_add_member") +EventTypeArg.paper_content_add_to_folder = EventTypeArg("paper_content_add_to_folder") +EventTypeArg.paper_content_archive = EventTypeArg("paper_content_archive") +EventTypeArg.paper_content_create = EventTypeArg("paper_content_create") +EventTypeArg.paper_content_permanently_delete = EventTypeArg("paper_content_permanently_delete") +EventTypeArg.paper_content_remove_from_folder = EventTypeArg("paper_content_remove_from_folder") +EventTypeArg.paper_content_remove_member = EventTypeArg("paper_content_remove_member") +EventTypeArg.paper_content_rename = EventTypeArg("paper_content_rename") +EventTypeArg.paper_content_restore = EventTypeArg("paper_content_restore") +EventTypeArg.paper_doc_add_comment = EventTypeArg("paper_doc_add_comment") +EventTypeArg.paper_doc_change_member_role = EventTypeArg("paper_doc_change_member_role") +EventTypeArg.paper_doc_change_sharing_policy = EventTypeArg("paper_doc_change_sharing_policy") +EventTypeArg.paper_doc_change_subscription = EventTypeArg("paper_doc_change_subscription") +EventTypeArg.paper_doc_deleted = EventTypeArg("paper_doc_deleted") +EventTypeArg.paper_doc_delete_comment = EventTypeArg("paper_doc_delete_comment") +EventTypeArg.paper_doc_download = EventTypeArg("paper_doc_download") +EventTypeArg.paper_doc_edit = EventTypeArg("paper_doc_edit") +EventTypeArg.paper_doc_edit_comment = EventTypeArg("paper_doc_edit_comment") +EventTypeArg.paper_doc_followed = EventTypeArg("paper_doc_followed") +EventTypeArg.paper_doc_mention = EventTypeArg("paper_doc_mention") +EventTypeArg.paper_doc_ownership_changed = EventTypeArg("paper_doc_ownership_changed") +EventTypeArg.paper_doc_request_access = EventTypeArg("paper_doc_request_access") +EventTypeArg.paper_doc_resolve_comment = EventTypeArg("paper_doc_resolve_comment") +EventTypeArg.paper_doc_revert = EventTypeArg("paper_doc_revert") +EventTypeArg.paper_doc_slack_share = EventTypeArg("paper_doc_slack_share") +EventTypeArg.paper_doc_team_invite = EventTypeArg("paper_doc_team_invite") +EventTypeArg.paper_doc_trashed = EventTypeArg("paper_doc_trashed") +EventTypeArg.paper_doc_unresolve_comment = EventTypeArg("paper_doc_unresolve_comment") +EventTypeArg.paper_doc_untrashed = EventTypeArg("paper_doc_untrashed") +EventTypeArg.paper_doc_view = EventTypeArg("paper_doc_view") +EventTypeArg.paper_external_view_allow = EventTypeArg("paper_external_view_allow") +EventTypeArg.paper_external_view_default_team = EventTypeArg("paper_external_view_default_team") +EventTypeArg.paper_external_view_forbid = EventTypeArg("paper_external_view_forbid") +EventTypeArg.paper_folder_change_subscription = EventTypeArg("paper_folder_change_subscription") +EventTypeArg.paper_folder_deleted = EventTypeArg("paper_folder_deleted") +EventTypeArg.paper_folder_followed = EventTypeArg("paper_folder_followed") +EventTypeArg.paper_folder_team_invite = EventTypeArg("paper_folder_team_invite") +EventTypeArg.paper_published_link_change_permission = EventTypeArg( + "paper_published_link_change_permission" +) +EventTypeArg.paper_published_link_create = EventTypeArg("paper_published_link_create") +EventTypeArg.paper_published_link_disabled = EventTypeArg("paper_published_link_disabled") +EventTypeArg.paper_published_link_view = EventTypeArg("paper_published_link_view") +EventTypeArg.password_change = EventTypeArg("password_change") +EventTypeArg.password_reset = EventTypeArg("password_reset") +EventTypeArg.password_reset_all = EventTypeArg("password_reset_all") +EventTypeArg.protect_internal_domains_changed = EventTypeArg("protect_internal_domains_changed") +EventTypeArg.classification_create_report = EventTypeArg("classification_create_report") +EventTypeArg.classification_create_report_fail = EventTypeArg("classification_create_report_fail") +EventTypeArg.emm_create_exceptions_report = EventTypeArg("emm_create_exceptions_report") +EventTypeArg.emm_create_usage_report = EventTypeArg("emm_create_usage_report") +EventTypeArg.export_members_report = EventTypeArg("export_members_report") +EventTypeArg.export_members_report_fail = EventTypeArg("export_members_report_fail") +EventTypeArg.external_sharing_create_report = EventTypeArg("external_sharing_create_report") +EventTypeArg.external_sharing_report_failed = EventTypeArg("external_sharing_report_failed") +EventTypeArg.member_access_details_create_report = EventTypeArg( + "member_access_details_create_report" +) +EventTypeArg.member_access_details_create_report_failed = EventTypeArg( + "member_access_details_create_report_failed" +) +EventTypeArg.no_expiration_link_gen_create_report = EventTypeArg( + "no_expiration_link_gen_create_report" +) +EventTypeArg.no_expiration_link_gen_report_failed = EventTypeArg( + "no_expiration_link_gen_report_failed" +) +EventTypeArg.no_password_link_gen_create_report = EventTypeArg("no_password_link_gen_create_report") +EventTypeArg.no_password_link_gen_report_failed = EventTypeArg("no_password_link_gen_report_failed") +EventTypeArg.no_password_link_view_create_report = EventTypeArg( + "no_password_link_view_create_report" +) +EventTypeArg.no_password_link_view_report_failed = EventTypeArg( + "no_password_link_view_report_failed" +) +EventTypeArg.outdated_link_view_create_report = EventTypeArg("outdated_link_view_create_report") +EventTypeArg.outdated_link_view_report_failed = EventTypeArg("outdated_link_view_report_failed") +EventTypeArg.paper_admin_export_start = EventTypeArg("paper_admin_export_start") +EventTypeArg.ransomware_alert_create_report = EventTypeArg("ransomware_alert_create_report") +EventTypeArg.ransomware_alert_create_report_failed = EventTypeArg( + "ransomware_alert_create_report_failed" +) +EventTypeArg.shared_folders_create_report = EventTypeArg("shared_folders_create_report") +EventTypeArg.shared_folders_create_report_failed = EventTypeArg( + "shared_folders_create_report_failed" +) +EventTypeArg.smart_sync_create_admin_privilege_report = EventTypeArg( + "smart_sync_create_admin_privilege_report" +) +EventTypeArg.team_activity_create_report = EventTypeArg("team_activity_create_report") +EventTypeArg.team_activity_create_report_fail = EventTypeArg("team_activity_create_report_fail") +EventTypeArg.team_folders_create_report = EventTypeArg("team_folders_create_report") +EventTypeArg.team_folders_create_report_failed = EventTypeArg("team_folders_create_report_failed") +EventTypeArg.team_storage_create_report = EventTypeArg("team_storage_create_report") +EventTypeArg.team_storage_create_report_failed = EventTypeArg("team_storage_create_report_failed") +EventTypeArg.collection_share = EventTypeArg("collection_share") +EventTypeArg.file_transfers_file_add = EventTypeArg("file_transfers_file_add") +EventTypeArg.file_transfers_transfer_delete = EventTypeArg("file_transfers_transfer_delete") +EventTypeArg.file_transfers_transfer_download = EventTypeArg("file_transfers_transfer_download") +EventTypeArg.file_transfers_transfer_send = EventTypeArg("file_transfers_transfer_send") +EventTypeArg.file_transfers_transfer_view = EventTypeArg("file_transfers_transfer_view") +EventTypeArg.media_hub_project_team_add = EventTypeArg("media_hub_project_team_add") +EventTypeArg.media_hub_project_team_delete = EventTypeArg("media_hub_project_team_delete") +EventTypeArg.media_hub_project_team_role_changed = EventTypeArg( + "media_hub_project_team_role_changed" +) +EventTypeArg.media_hub_shared_link_audience_changed = EventTypeArg( + "media_hub_shared_link_audience_changed" +) +EventTypeArg.media_hub_shared_link_created = EventTypeArg("media_hub_shared_link_created") +EventTypeArg.media_hub_shared_link_download_setting_changed = EventTypeArg( + "media_hub_shared_link_download_setting_changed" +) +EventTypeArg.media_hub_shared_link_revoked = EventTypeArg("media_hub_shared_link_revoked") +EventTypeArg.note_acl_invite_only = EventTypeArg("note_acl_invite_only") +EventTypeArg.note_acl_link = EventTypeArg("note_acl_link") +EventTypeArg.note_acl_team_link = EventTypeArg("note_acl_team_link") +EventTypeArg.note_shared = EventTypeArg("note_shared") +EventTypeArg.note_share_receive = EventTypeArg("note_share_receive") +EventTypeArg.open_note_shared = EventTypeArg("open_note_shared") +EventTypeArg.replay_file_shared_link_created = EventTypeArg("replay_file_shared_link_created") +EventTypeArg.replay_file_shared_link_modified = EventTypeArg("replay_file_shared_link_modified") +EventTypeArg.replay_project_team_add = EventTypeArg("replay_project_team_add") +EventTypeArg.replay_project_team_delete = EventTypeArg("replay_project_team_delete") +EventTypeArg.send_and_track_file_added = EventTypeArg("send_and_track_file_added") +EventTypeArg.send_and_track_file_renamed = EventTypeArg("send_and_track_file_renamed") +EventTypeArg.send_and_track_file_updated = EventTypeArg("send_and_track_file_updated") +EventTypeArg.send_and_track_link_created = EventTypeArg("send_and_track_link_created") +EventTypeArg.send_and_track_link_deleted = EventTypeArg("send_and_track_link_deleted") +EventTypeArg.send_and_track_link_updated = EventTypeArg("send_and_track_link_updated") +EventTypeArg.send_and_track_link_viewed = EventTypeArg("send_and_track_link_viewed") +EventTypeArg.send_and_track_removed_file_and_associated_links = EventTypeArg( + "send_and_track_removed_file_and_associated_links" +) +EventTypeArg.sf_add_group = EventTypeArg("sf_add_group") +EventTypeArg.sf_allow_non_members_to_view_shared_links = EventTypeArg( + "sf_allow_non_members_to_view_shared_links" +) +EventTypeArg.sf_external_invite_warn = EventTypeArg("sf_external_invite_warn") +EventTypeArg.sf_fb_invite = EventTypeArg("sf_fb_invite") +EventTypeArg.sf_fb_invite_change_role = EventTypeArg("sf_fb_invite_change_role") +EventTypeArg.sf_fb_uninvite = EventTypeArg("sf_fb_uninvite") +EventTypeArg.sf_invite_group = EventTypeArg("sf_invite_group") +EventTypeArg.sf_team_grant_access = EventTypeArg("sf_team_grant_access") +EventTypeArg.sf_team_invite = EventTypeArg("sf_team_invite") +EventTypeArg.sf_team_invite_change_role = EventTypeArg("sf_team_invite_change_role") +EventTypeArg.sf_team_join = EventTypeArg("sf_team_join") +EventTypeArg.sf_team_join_from_oob_link = EventTypeArg("sf_team_join_from_oob_link") +EventTypeArg.sf_team_uninvite = EventTypeArg("sf_team_uninvite") +EventTypeArg.shared_content_add_invitees = EventTypeArg("shared_content_add_invitees") +EventTypeArg.shared_content_add_link_expiry = EventTypeArg("shared_content_add_link_expiry") +EventTypeArg.shared_content_add_link_password = EventTypeArg("shared_content_add_link_password") +EventTypeArg.shared_content_add_member = EventTypeArg("shared_content_add_member") +EventTypeArg.shared_content_change_downloads_policy = EventTypeArg( + "shared_content_change_downloads_policy" +) +EventTypeArg.shared_content_change_invitee_role = EventTypeArg("shared_content_change_invitee_role") +EventTypeArg.shared_content_change_link_audience = EventTypeArg( + "shared_content_change_link_audience" +) +EventTypeArg.shared_content_change_link_expiry = EventTypeArg("shared_content_change_link_expiry") +EventTypeArg.shared_content_change_link_password = EventTypeArg( + "shared_content_change_link_password" +) +EventTypeArg.shared_content_change_member_role = EventTypeArg("shared_content_change_member_role") +EventTypeArg.shared_content_change_viewer_info_policy = EventTypeArg( + "shared_content_change_viewer_info_policy" +) +EventTypeArg.shared_content_claim_invitation = EventTypeArg("shared_content_claim_invitation") +EventTypeArg.shared_content_copy = EventTypeArg("shared_content_copy") +EventTypeArg.shared_content_download = EventTypeArg("shared_content_download") +EventTypeArg.shared_content_relinquish_membership = EventTypeArg( + "shared_content_relinquish_membership" +) +EventTypeArg.shared_content_remove_invitees = EventTypeArg("shared_content_remove_invitees") +EventTypeArg.shared_content_remove_link_expiry = EventTypeArg("shared_content_remove_link_expiry") +EventTypeArg.shared_content_remove_link_password = EventTypeArg( + "shared_content_remove_link_password" +) +EventTypeArg.shared_content_remove_member = EventTypeArg("shared_content_remove_member") +EventTypeArg.shared_content_request_access = EventTypeArg("shared_content_request_access") +EventTypeArg.shared_content_restore_invitees = EventTypeArg("shared_content_restore_invitees") +EventTypeArg.shared_content_restore_member = EventTypeArg("shared_content_restore_member") +EventTypeArg.shared_content_unshare = EventTypeArg("shared_content_unshare") +EventTypeArg.shared_content_view = EventTypeArg("shared_content_view") +EventTypeArg.shared_folder_change_link_policy = EventTypeArg("shared_folder_change_link_policy") +EventTypeArg.shared_folder_change_members_inheritance_policy = EventTypeArg( + "shared_folder_change_members_inheritance_policy" +) +EventTypeArg.shared_folder_change_members_management_policy = EventTypeArg( + "shared_folder_change_members_management_policy" +) +EventTypeArg.shared_folder_change_members_policy = EventTypeArg( + "shared_folder_change_members_policy" +) +EventTypeArg.shared_folder_create = EventTypeArg("shared_folder_create") +EventTypeArg.shared_folder_decline_invitation = EventTypeArg("shared_folder_decline_invitation") +EventTypeArg.shared_folder_mount = EventTypeArg("shared_folder_mount") +EventTypeArg.shared_folder_nest = EventTypeArg("shared_folder_nest") +EventTypeArg.shared_folder_transfer_ownership = EventTypeArg("shared_folder_transfer_ownership") +EventTypeArg.shared_folder_unmount = EventTypeArg("shared_folder_unmount") +EventTypeArg.shared_link_add_expiry = EventTypeArg("shared_link_add_expiry") +EventTypeArg.shared_link_change_expiry = EventTypeArg("shared_link_change_expiry") +EventTypeArg.shared_link_change_visibility = EventTypeArg("shared_link_change_visibility") +EventTypeArg.shared_link_copy = EventTypeArg("shared_link_copy") +EventTypeArg.shared_link_create = EventTypeArg("shared_link_create") +EventTypeArg.shared_link_disable = EventTypeArg("shared_link_disable") +EventTypeArg.shared_link_download = EventTypeArg("shared_link_download") +EventTypeArg.shared_link_remove_expiry = EventTypeArg("shared_link_remove_expiry") +EventTypeArg.shared_link_remove_visitor = EventTypeArg("shared_link_remove_visitor") +EventTypeArg.shared_link_settings_add_expiration = EventTypeArg( + "shared_link_settings_add_expiration" +) +EventTypeArg.shared_link_settings_add_password = EventTypeArg("shared_link_settings_add_password") +EventTypeArg.shared_link_settings_allow_download_disabled = EventTypeArg( + "shared_link_settings_allow_download_disabled" +) +EventTypeArg.shared_link_settings_allow_download_enabled = EventTypeArg( + "shared_link_settings_allow_download_enabled" +) +EventTypeArg.shared_link_settings_change_audience = EventTypeArg( + "shared_link_settings_change_audience" +) +EventTypeArg.shared_link_settings_change_expiration = EventTypeArg( + "shared_link_settings_change_expiration" +) +EventTypeArg.shared_link_settings_change_password = EventTypeArg( + "shared_link_settings_change_password" +) +EventTypeArg.shared_link_settings_remove_expiration = EventTypeArg( + "shared_link_settings_remove_expiration" +) +EventTypeArg.shared_link_settings_remove_password = EventTypeArg( + "shared_link_settings_remove_password" +) +EventTypeArg.shared_link_share = EventTypeArg("shared_link_share") +EventTypeArg.shared_link_view = EventTypeArg("shared_link_view") +EventTypeArg.shared_note_opened = EventTypeArg("shared_note_opened") +EventTypeArg.shmodel_disable_downloads = EventTypeArg("shmodel_disable_downloads") +EventTypeArg.shmodel_enable_downloads = EventTypeArg("shmodel_enable_downloads") +EventTypeArg.shmodel_group_share = EventTypeArg("shmodel_group_share") +EventTypeArg.showcase_access_granted = EventTypeArg("showcase_access_granted") +EventTypeArg.showcase_add_member = EventTypeArg("showcase_add_member") +EventTypeArg.showcase_archived = EventTypeArg("showcase_archived") +EventTypeArg.showcase_created = EventTypeArg("showcase_created") +EventTypeArg.showcase_delete_comment = EventTypeArg("showcase_delete_comment") +EventTypeArg.showcase_edited = EventTypeArg("showcase_edited") +EventTypeArg.showcase_edit_comment = EventTypeArg("showcase_edit_comment") +EventTypeArg.showcase_file_added = EventTypeArg("showcase_file_added") +EventTypeArg.showcase_file_download = EventTypeArg("showcase_file_download") +EventTypeArg.showcase_file_removed = EventTypeArg("showcase_file_removed") +EventTypeArg.showcase_file_view = EventTypeArg("showcase_file_view") +EventTypeArg.showcase_permanently_deleted = EventTypeArg("showcase_permanently_deleted") +EventTypeArg.showcase_post_comment = EventTypeArg("showcase_post_comment") +EventTypeArg.showcase_remove_member = EventTypeArg("showcase_remove_member") +EventTypeArg.showcase_renamed = EventTypeArg("showcase_renamed") +EventTypeArg.showcase_request_access = EventTypeArg("showcase_request_access") +EventTypeArg.showcase_resolve_comment = EventTypeArg("showcase_resolve_comment") +EventTypeArg.showcase_restored = EventTypeArg("showcase_restored") +EventTypeArg.showcase_trashed = EventTypeArg("showcase_trashed") +EventTypeArg.showcase_trashed_deprecated = EventTypeArg("showcase_trashed_deprecated") +EventTypeArg.showcase_unresolve_comment = EventTypeArg("showcase_unresolve_comment") +EventTypeArg.showcase_untrashed = EventTypeArg("showcase_untrashed") +EventTypeArg.showcase_untrashed_deprecated = EventTypeArg("showcase_untrashed_deprecated") +EventTypeArg.showcase_view = EventTypeArg("showcase_view") +EventTypeArg.sign_signature_request_canceled = EventTypeArg("sign_signature_request_canceled") +EventTypeArg.sign_signature_request_completed = EventTypeArg("sign_signature_request_completed") +EventTypeArg.sign_signature_request_declined = EventTypeArg("sign_signature_request_declined") +EventTypeArg.sign_signature_request_opened = EventTypeArg("sign_signature_request_opened") +EventTypeArg.sign_signature_request_reminder_sent = EventTypeArg( + "sign_signature_request_reminder_sent" +) +EventTypeArg.sign_signature_request_sent = EventTypeArg("sign_signature_request_sent") +EventTypeArg.sign_template_created = EventTypeArg("sign_template_created") +EventTypeArg.sign_template_shared = EventTypeArg("sign_template_shared") +EventTypeArg.risc_security_event = EventTypeArg("risc_security_event") +EventTypeArg.sso_add_cert = EventTypeArg("sso_add_cert") +EventTypeArg.sso_add_login_url = EventTypeArg("sso_add_login_url") +EventTypeArg.sso_add_logout_url = EventTypeArg("sso_add_logout_url") +EventTypeArg.sso_change_cert = EventTypeArg("sso_change_cert") +EventTypeArg.sso_change_login_url = EventTypeArg("sso_change_login_url") +EventTypeArg.sso_change_logout_url = EventTypeArg("sso_change_logout_url") +EventTypeArg.sso_change_saml_identity_mode = EventTypeArg("sso_change_saml_identity_mode") +EventTypeArg.sso_remove_cert = EventTypeArg("sso_remove_cert") +EventTypeArg.sso_remove_login_url = EventTypeArg("sso_remove_login_url") +EventTypeArg.sso_remove_logout_url = EventTypeArg("sso_remove_logout_url") +EventTypeArg.team_folder_change_status = EventTypeArg("team_folder_change_status") +EventTypeArg.team_folder_create = EventTypeArg("team_folder_create") +EventTypeArg.team_folder_downgrade = EventTypeArg("team_folder_downgrade") +EventTypeArg.team_folder_permanently_delete = EventTypeArg("team_folder_permanently_delete") +EventTypeArg.team_folder_rename = EventTypeArg("team_folder_rename") +EventTypeArg.team_folder_space_limits_change_caps_type = EventTypeArg( + "team_folder_space_limits_change_caps_type" +) +EventTypeArg.team_folder_space_limits_change_limit = EventTypeArg( + "team_folder_space_limits_change_limit" +) +EventTypeArg.team_folder_space_limits_change_notification_target = EventTypeArg( + "team_folder_space_limits_change_notification_target" +) +EventTypeArg.team_selective_sync_settings_changed = EventTypeArg( + "team_selective_sync_settings_changed" +) +EventTypeArg.account_capture_change_policy = EventTypeArg("account_capture_change_policy") +EventTypeArg.admin_email_reminders_changed = EventTypeArg("admin_email_reminders_changed") +EventTypeArg.ai_third_party_sharing_dropbox_base_policy_changed = EventTypeArg( + "ai_third_party_sharing_dropbox_base_policy_changed" +) +EventTypeArg.allow_download_disabled = EventTypeArg("allow_download_disabled") +EventTypeArg.allow_download_enabled = EventTypeArg("allow_download_enabled") +EventTypeArg.apple_login_change_policy = EventTypeArg("apple_login_change_policy") +EventTypeArg.app_permissions_changed = EventTypeArg("app_permissions_changed") +EventTypeArg.camera_uploads_policy_changed = EventTypeArg("camera_uploads_policy_changed") +EventTypeArg.capture_team_space_policy_changed = EventTypeArg("capture_team_space_policy_changed") +EventTypeArg.capture_transcript_policy_changed = EventTypeArg("capture_transcript_policy_changed") +EventTypeArg.classification_change_policy = EventTypeArg("classification_change_policy") +EventTypeArg.computer_backup_policy_changed = EventTypeArg("computer_backup_policy_changed") +EventTypeArg.content_administration_policy_changed = EventTypeArg( + "content_administration_policy_changed" +) +EventTypeArg.content_deletion_protection_change_policy = EventTypeArg( + "content_deletion_protection_change_policy" +) +EventTypeArg.dash_external_sharing_policy_changed = EventTypeArg( + "dash_external_sharing_policy_changed" +) +EventTypeArg.data_placement_restriction_change_policy = EventTypeArg( + "data_placement_restriction_change_policy" +) +EventTypeArg.data_placement_restriction_satisfy_policy = EventTypeArg( + "data_placement_restriction_satisfy_policy" +) +EventTypeArg.device_approvals_add_exception = EventTypeArg("device_approvals_add_exception") +EventTypeArg.device_approvals_change_desktop_policy = EventTypeArg( + "device_approvals_change_desktop_policy" +) +EventTypeArg.device_approvals_change_mobile_policy = EventTypeArg( + "device_approvals_change_mobile_policy" +) +EventTypeArg.device_approvals_change_overage_action = EventTypeArg( + "device_approvals_change_overage_action" +) +EventTypeArg.device_approvals_change_unlink_action = EventTypeArg( + "device_approvals_change_unlink_action" +) +EventTypeArg.device_approvals_remove_exception = EventTypeArg("device_approvals_remove_exception") +EventTypeArg.directory_restrictions_add_members = EventTypeArg("directory_restrictions_add_members") +EventTypeArg.directory_restrictions_remove_members = EventTypeArg( + "directory_restrictions_remove_members" +) +EventTypeArg.dropbox_passwords_policy_changed = EventTypeArg("dropbox_passwords_policy_changed") +EventTypeArg.email_ingest_policy_changed = EventTypeArg("email_ingest_policy_changed") +EventTypeArg.emm_add_exception = EventTypeArg("emm_add_exception") +EventTypeArg.emm_change_policy = EventTypeArg("emm_change_policy") +EventTypeArg.emm_remove_exception = EventTypeArg("emm_remove_exception") +EventTypeArg.extended_version_history_change_policy = EventTypeArg( + "extended_version_history_change_policy" +) +EventTypeArg.external_drive_backup_policy_changed = EventTypeArg( + "external_drive_backup_policy_changed" +) +EventTypeArg.file_comments_change_policy = EventTypeArg("file_comments_change_policy") +EventTypeArg.file_locking_policy_changed = EventTypeArg("file_locking_policy_changed") +EventTypeArg.file_provider_migration_policy_changed = EventTypeArg( + "file_provider_migration_policy_changed" +) +EventTypeArg.file_requests_change_policy = EventTypeArg("file_requests_change_policy") +EventTypeArg.file_requests_emails_enabled = EventTypeArg("file_requests_emails_enabled") +EventTypeArg.file_requests_emails_restricted_to_team_only = EventTypeArg( + "file_requests_emails_restricted_to_team_only" +) +EventTypeArg.file_transfers_policy_changed = EventTypeArg("file_transfers_policy_changed") +EventTypeArg.flexible_file_names_policy_changed = EventTypeArg("flexible_file_names_policy_changed") +EventTypeArg.folder_link_restriction_policy_changed = EventTypeArg( + "folder_link_restriction_policy_changed" +) +EventTypeArg.google_sso_change_policy = EventTypeArg("google_sso_change_policy") +EventTypeArg.group_user_management_change_policy = EventTypeArg( + "group_user_management_change_policy" +) +EventTypeArg.integration_policy_changed = EventTypeArg("integration_policy_changed") +EventTypeArg.invite_acceptance_email_policy_changed = EventTypeArg( + "invite_acceptance_email_policy_changed" +) +EventTypeArg.media_hub_adding_people_policy_changed = EventTypeArg( + "media_hub_adding_people_policy_changed" +) +EventTypeArg.media_hub_download_policy_changed = EventTypeArg("media_hub_download_policy_changed") +EventTypeArg.media_hub_link_sharing_policy_changed = EventTypeArg( + "media_hub_link_sharing_policy_changed" +) +EventTypeArg.member_requests_change_policy = EventTypeArg("member_requests_change_policy") +EventTypeArg.member_send_invite_policy_changed = EventTypeArg("member_send_invite_policy_changed") +EventTypeArg.member_space_limits_add_exception = EventTypeArg("member_space_limits_add_exception") +EventTypeArg.member_space_limits_change_caps_type_policy = EventTypeArg( + "member_space_limits_change_caps_type_policy" +) +EventTypeArg.member_space_limits_change_policy = EventTypeArg("member_space_limits_change_policy") +EventTypeArg.member_space_limits_remove_exception = EventTypeArg( + "member_space_limits_remove_exception" +) +EventTypeArg.member_suggestions_change_policy = EventTypeArg("member_suggestions_change_policy") +EventTypeArg.microsoft_login_change_policy = EventTypeArg("microsoft_login_change_policy") +EventTypeArg.microsoft_office_addin_change_policy = EventTypeArg( + "microsoft_office_addin_change_policy" +) +EventTypeArg.multi_team_identity_policy_changed = EventTypeArg("multi_team_identity_policy_changed") +EventTypeArg.network_control_change_policy = EventTypeArg("network_control_change_policy") +EventTypeArg.paper_change_deployment_policy = EventTypeArg("paper_change_deployment_policy") +EventTypeArg.paper_change_member_link_policy = EventTypeArg("paper_change_member_link_policy") +EventTypeArg.paper_change_member_policy = EventTypeArg("paper_change_member_policy") +EventTypeArg.paper_change_policy = EventTypeArg("paper_change_policy") +EventTypeArg.paper_default_folder_policy_changed = EventTypeArg( + "paper_default_folder_policy_changed" +) +EventTypeArg.paper_desktop_policy_changed = EventTypeArg("paper_desktop_policy_changed") +EventTypeArg.paper_enabled_users_group_addition = EventTypeArg("paper_enabled_users_group_addition") +EventTypeArg.paper_enabled_users_group_removal = EventTypeArg("paper_enabled_users_group_removal") +EventTypeArg.passkey_login_policy_changed = EventTypeArg("passkey_login_policy_changed") +EventTypeArg.password_strength_requirements_change_policy = EventTypeArg( + "password_strength_requirements_change_policy" +) +EventTypeArg.permanent_delete_change_policy = EventTypeArg("permanent_delete_change_policy") +EventTypeArg.previews_ai_policy_changed = EventTypeArg("previews_ai_policy_changed") +EventTypeArg.replay_adding_people_policy_changed = EventTypeArg( + "replay_adding_people_policy_changed" +) +EventTypeArg.replay_sharing_policy_changed = EventTypeArg("replay_sharing_policy_changed") +EventTypeArg.reseller_support_change_policy = EventTypeArg("reseller_support_change_policy") +EventTypeArg.rewind_policy_changed = EventTypeArg("rewind_policy_changed") +EventTypeArg.send_and_track_policy_changed = EventTypeArg("send_and_track_policy_changed") +EventTypeArg.send_external_sharing_policy_changed = EventTypeArg( + "send_external_sharing_policy_changed" +) +EventTypeArg.send_for_signature_policy_changed = EventTypeArg("send_for_signature_policy_changed") +EventTypeArg.shared_link_default_permissions_policy_changed = EventTypeArg( + "shared_link_default_permissions_policy_changed" +) +EventTypeArg.sharing_change_folder_join_policy = EventTypeArg("sharing_change_folder_join_policy") +EventTypeArg.sharing_change_link_allow_change_expiration_policy = EventTypeArg( + "sharing_change_link_allow_change_expiration_policy" +) +EventTypeArg.sharing_change_link_default_expiration_policy = EventTypeArg( + "sharing_change_link_default_expiration_policy" +) +EventTypeArg.sharing_change_link_enforce_password_policy = EventTypeArg( + "sharing_change_link_enforce_password_policy" +) +EventTypeArg.sharing_change_link_policy = EventTypeArg("sharing_change_link_policy") +EventTypeArg.sharing_change_member_policy = EventTypeArg("sharing_change_member_policy") +EventTypeArg.showcase_change_download_policy = EventTypeArg("showcase_change_download_policy") +EventTypeArg.showcase_change_enabled_policy = EventTypeArg("showcase_change_enabled_policy") +EventTypeArg.showcase_change_external_sharing_policy = EventTypeArg( + "showcase_change_external_sharing_policy" +) +EventTypeArg.sign_external_sharing_policy_changed = EventTypeArg( + "sign_external_sharing_policy_changed" +) +EventTypeArg.sign_template_creation_permission_changed = EventTypeArg( + "sign_template_creation_permission_changed" +) +EventTypeArg.smarter_smart_sync_policy_changed = EventTypeArg("smarter_smart_sync_policy_changed") +EventTypeArg.smart_sync_change_policy = EventTypeArg("smart_sync_change_policy") +EventTypeArg.smart_sync_not_opt_out = EventTypeArg("smart_sync_not_opt_out") +EventTypeArg.smart_sync_opt_out = EventTypeArg("smart_sync_opt_out") +EventTypeArg.sso_change_policy = EventTypeArg("sso_change_policy") +EventTypeArg.stack_cross_team_access_policy_changed = EventTypeArg( + "stack_cross_team_access_policy_changed" +) +EventTypeArg.team_branding_policy_changed = EventTypeArg("team_branding_policy_changed") +EventTypeArg.team_extensions_policy_changed = EventTypeArg("team_extensions_policy_changed") +EventTypeArg.team_member_storage_request_policy_changed = EventTypeArg( + "team_member_storage_request_policy_changed" +) +EventTypeArg.team_selective_sync_policy_changed = EventTypeArg("team_selective_sync_policy_changed") +EventTypeArg.team_sharing_whitelist_subjects_changed = EventTypeArg( + "team_sharing_whitelist_subjects_changed" +) +EventTypeArg.tfa_add_exception = EventTypeArg("tfa_add_exception") +EventTypeArg.tfa_change_policy = EventTypeArg("tfa_change_policy") +EventTypeArg.tfa_remove_exception = EventTypeArg("tfa_remove_exception") +EventTypeArg.top_level_content_policy_changed = EventTypeArg("top_level_content_policy_changed") +EventTypeArg.two_account_change_policy = EventTypeArg("two_account_change_policy") +EventTypeArg.viewer_info_policy_changed = EventTypeArg("viewer_info_policy_changed") +EventTypeArg.watermarking_policy_changed = EventTypeArg("watermarking_policy_changed") +EventTypeArg.web_sessions_change_active_session_limit = EventTypeArg( + "web_sessions_change_active_session_limit" +) +EventTypeArg.web_sessions_change_fixed_length_policy = EventTypeArg( + "web_sessions_change_fixed_length_policy" +) +EventTypeArg.web_sessions_change_idle_length_policy = EventTypeArg( + "web_sessions_change_idle_length_policy" +) +EventTypeArg.data_residency_migration_request_successful = EventTypeArg( + "data_residency_migration_request_successful" +) +EventTypeArg.data_residency_migration_request_unsuccessful = EventTypeArg( + "data_residency_migration_request_unsuccessful" +) +EventTypeArg.team_merge_from = EventTypeArg("team_merge_from") +EventTypeArg.team_merge_to = EventTypeArg("team_merge_to") +EventTypeArg.team_profile_add_background = EventTypeArg("team_profile_add_background") +EventTypeArg.team_profile_add_logo = EventTypeArg("team_profile_add_logo") +EventTypeArg.team_profile_change_background = EventTypeArg("team_profile_change_background") +EventTypeArg.team_profile_change_default_language = EventTypeArg( + "team_profile_change_default_language" +) +EventTypeArg.team_profile_change_logo = EventTypeArg("team_profile_change_logo") +EventTypeArg.team_profile_change_name = EventTypeArg("team_profile_change_name") +EventTypeArg.team_profile_remove_background = EventTypeArg("team_profile_remove_background") +EventTypeArg.team_profile_remove_logo = EventTypeArg("team_profile_remove_logo") +EventTypeArg.passkey_add = EventTypeArg("passkey_add") +EventTypeArg.passkey_remove = EventTypeArg("passkey_remove") +EventTypeArg.tfa_add_backup_phone = EventTypeArg("tfa_add_backup_phone") +EventTypeArg.tfa_add_security_key = EventTypeArg("tfa_add_security_key") +EventTypeArg.tfa_change_backup_phone = EventTypeArg("tfa_change_backup_phone") +EventTypeArg.tfa_change_status = EventTypeArg("tfa_change_status") +EventTypeArg.tfa_remove_backup_phone = EventTypeArg("tfa_remove_backup_phone") +EventTypeArg.tfa_remove_security_key = EventTypeArg("tfa_remove_security_key") +EventTypeArg.tfa_reset = EventTypeArg("tfa_reset") +EventTypeArg.changed_enterprise_admin_role = EventTypeArg("changed_enterprise_admin_role") +EventTypeArg.changed_enterprise_connected_team_status = EventTypeArg( + "changed_enterprise_connected_team_status" +) +EventTypeArg.ended_enterprise_admin_session = EventTypeArg("ended_enterprise_admin_session") +EventTypeArg.ended_enterprise_admin_session_deprecated = EventTypeArg( + "ended_enterprise_admin_session_deprecated" +) +EventTypeArg.enterprise_settings_locking = EventTypeArg("enterprise_settings_locking") +EventTypeArg.guest_admin_change_status = EventTypeArg("guest_admin_change_status") +EventTypeArg.started_enterprise_admin_session = EventTypeArg("started_enterprise_admin_session") +EventTypeArg.team_merge_request_accepted = EventTypeArg("team_merge_request_accepted") +EventTypeArg.team_merge_request_accepted_shown_to_primary_team = EventTypeArg( + "team_merge_request_accepted_shown_to_primary_team" +) +EventTypeArg.team_merge_request_accepted_shown_to_secondary_team = EventTypeArg( + "team_merge_request_accepted_shown_to_secondary_team" +) +EventTypeArg.team_merge_request_auto_canceled = EventTypeArg("team_merge_request_auto_canceled") +EventTypeArg.team_merge_request_canceled = EventTypeArg("team_merge_request_canceled") +EventTypeArg.team_merge_request_canceled_shown_to_primary_team = EventTypeArg( + "team_merge_request_canceled_shown_to_primary_team" +) +EventTypeArg.team_merge_request_canceled_shown_to_secondary_team = EventTypeArg( + "team_merge_request_canceled_shown_to_secondary_team" +) +EventTypeArg.team_merge_request_expired = EventTypeArg("team_merge_request_expired") +EventTypeArg.team_merge_request_expired_shown_to_primary_team = EventTypeArg( + "team_merge_request_expired_shown_to_primary_team" +) +EventTypeArg.team_merge_request_expired_shown_to_secondary_team = EventTypeArg( + "team_merge_request_expired_shown_to_secondary_team" +) +EventTypeArg.team_merge_request_rejected_shown_to_primary_team = EventTypeArg( + "team_merge_request_rejected_shown_to_primary_team" +) +EventTypeArg.team_merge_request_rejected_shown_to_secondary_team = EventTypeArg( + "team_merge_request_rejected_shown_to_secondary_team" +) +EventTypeArg.team_merge_request_reminder = EventTypeArg("team_merge_request_reminder") +EventTypeArg.team_merge_request_reminder_shown_to_primary_team = EventTypeArg( + "team_merge_request_reminder_shown_to_primary_team" +) +EventTypeArg.team_merge_request_reminder_shown_to_secondary_team = EventTypeArg( + "team_merge_request_reminder_shown_to_secondary_team" +) +EventTypeArg.team_merge_request_revoked = EventTypeArg("team_merge_request_revoked") +EventTypeArg.team_merge_request_sent_shown_to_primary_team = EventTypeArg( + "team_merge_request_sent_shown_to_primary_team" +) +EventTypeArg.team_merge_request_sent_shown_to_secondary_team = EventTypeArg( + "team_merge_request_sent_shown_to_secondary_team" +) +EventTypeArg.other = EventTypeArg("other") ExportMembersReportDetails._all_field_names_ = set([]) ExportMembersReportDetails._all_fields_ = [] ExportMembersReportFailDetails.failure_reason.validator = team.TeamReportFailureReason_validator -ExportMembersReportFailDetails._all_field_names_ = set(['failure_reason']) -ExportMembersReportFailDetails._all_fields_ = [('failure_reason', ExportMembersReportFailDetails.failure_reason.validator)] +ExportMembersReportFailDetails._all_field_names_ = set(["failure_reason"]) +ExportMembersReportFailDetails._all_fields_ = [ + ("failure_reason", ExportMembersReportFailDetails.failure_reason.validator) +] ExportMembersReportFailType.description.validator = bv.String() -ExportMembersReportFailType._all_field_names_ = set(['description']) -ExportMembersReportFailType._all_fields_ = [('description', ExportMembersReportFailType.description.validator)] +ExportMembersReportFailType._all_field_names_ = set(["description"]) +ExportMembersReportFailType._all_fields_ = [ + ("description", ExportMembersReportFailType.description.validator) +] ExportMembersReportType.description.validator = bv.String() -ExportMembersReportType._all_field_names_ = set(['description']) -ExportMembersReportType._all_fields_ = [('description', ExportMembersReportType.description.validator)] - -ExtendedVersionHistoryChangePolicyDetails.new_value.validator = ExtendedVersionHistoryPolicy_validator -ExtendedVersionHistoryChangePolicyDetails.previous_value.validator = bv.Nullable(ExtendedVersionHistoryPolicy_validator) -ExtendedVersionHistoryChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ExportMembersReportType._all_field_names_ = set(["description"]) +ExportMembersReportType._all_fields_ = [ + ("description", ExportMembersReportType.description.validator) +] + +ExtendedVersionHistoryChangePolicyDetails.new_value.validator = ( + ExtendedVersionHistoryPolicy_validator +) +ExtendedVersionHistoryChangePolicyDetails.previous_value.validator = bv.Nullable( + ExtendedVersionHistoryPolicy_validator +) +ExtendedVersionHistoryChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ExtendedVersionHistoryChangePolicyDetails._all_fields_ = [ - ('new_value', ExtendedVersionHistoryChangePolicyDetails.new_value.validator), - ('previous_value', ExtendedVersionHistoryChangePolicyDetails.previous_value.validator), + ("new_value", ExtendedVersionHistoryChangePolicyDetails.new_value.validator), + ( + "previous_value", + ExtendedVersionHistoryChangePolicyDetails.previous_value.validator, + ), ] ExtendedVersionHistoryChangePolicyType.description.validator = bv.String() -ExtendedVersionHistoryChangePolicyType._all_field_names_ = set(['description']) -ExtendedVersionHistoryChangePolicyType._all_fields_ = [('description', ExtendedVersionHistoryChangePolicyType.description.validator)] +ExtendedVersionHistoryChangePolicyType._all_field_names_ = set(["description"]) +ExtendedVersionHistoryChangePolicyType._all_fields_ = [ + ("description", ExtendedVersionHistoryChangePolicyType.description.validator) +] ExtendedVersionHistoryPolicy._explicitly_limited_validator = bv.Void() ExtendedVersionHistoryPolicy._explicitly_unlimited_validator = bv.Void() @@ -101056,83 +107024,117 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExtendedVersionHistoryPolicy._implicitly_unlimited_validator = bv.Void() ExtendedVersionHistoryPolicy._other_validator = bv.Void() ExtendedVersionHistoryPolicy._tagmap = { - 'explicitly_limited': ExtendedVersionHistoryPolicy._explicitly_limited_validator, - 'explicitly_unlimited': ExtendedVersionHistoryPolicy._explicitly_unlimited_validator, - 'implicitly_limited': ExtendedVersionHistoryPolicy._implicitly_limited_validator, - 'implicitly_unlimited': ExtendedVersionHistoryPolicy._implicitly_unlimited_validator, - 'other': ExtendedVersionHistoryPolicy._other_validator, + "explicitly_limited": ExtendedVersionHistoryPolicy._explicitly_limited_validator, + "explicitly_unlimited": ExtendedVersionHistoryPolicy._explicitly_unlimited_validator, + "implicitly_limited": ExtendedVersionHistoryPolicy._implicitly_limited_validator, + "implicitly_unlimited": ExtendedVersionHistoryPolicy._implicitly_unlimited_validator, + "other": ExtendedVersionHistoryPolicy._other_validator, } -ExtendedVersionHistoryPolicy.explicitly_limited = ExtendedVersionHistoryPolicy('explicitly_limited') -ExtendedVersionHistoryPolicy.explicitly_unlimited = ExtendedVersionHistoryPolicy('explicitly_unlimited') -ExtendedVersionHistoryPolicy.implicitly_limited = ExtendedVersionHistoryPolicy('implicitly_limited') -ExtendedVersionHistoryPolicy.implicitly_unlimited = ExtendedVersionHistoryPolicy('implicitly_unlimited') -ExtendedVersionHistoryPolicy.other = ExtendedVersionHistoryPolicy('other') +ExtendedVersionHistoryPolicy.explicitly_limited = ExtendedVersionHistoryPolicy("explicitly_limited") +ExtendedVersionHistoryPolicy.explicitly_unlimited = ExtendedVersionHistoryPolicy( + "explicitly_unlimited" +) +ExtendedVersionHistoryPolicy.implicitly_limited = ExtendedVersionHistoryPolicy("implicitly_limited") +ExtendedVersionHistoryPolicy.implicitly_unlimited = ExtendedVersionHistoryPolicy( + "implicitly_unlimited" +) +ExtendedVersionHistoryPolicy.other = ExtendedVersionHistoryPolicy("other") ExternalDriveBackupEligibilityStatus._exceed_license_cap_validator = bv.Void() ExternalDriveBackupEligibilityStatus._skip_validator = bv.Void() ExternalDriveBackupEligibilityStatus._success_validator = bv.Void() ExternalDriveBackupEligibilityStatus._other_validator = bv.Void() ExternalDriveBackupEligibilityStatus._tagmap = { - 'exceed_license_cap': ExternalDriveBackupEligibilityStatus._exceed_license_cap_validator, - 'skip': ExternalDriveBackupEligibilityStatus._skip_validator, - 'success': ExternalDriveBackupEligibilityStatus._success_validator, - 'other': ExternalDriveBackupEligibilityStatus._other_validator, + "exceed_license_cap": ExternalDriveBackupEligibilityStatus._exceed_license_cap_validator, + "skip": ExternalDriveBackupEligibilityStatus._skip_validator, + "success": ExternalDriveBackupEligibilityStatus._success_validator, + "other": ExternalDriveBackupEligibilityStatus._other_validator, } -ExternalDriveBackupEligibilityStatus.exceed_license_cap = ExternalDriveBackupEligibilityStatus('exceed_license_cap') -ExternalDriveBackupEligibilityStatus.skip = ExternalDriveBackupEligibilityStatus('skip') -ExternalDriveBackupEligibilityStatus.success = ExternalDriveBackupEligibilityStatus('success') -ExternalDriveBackupEligibilityStatus.other = ExternalDriveBackupEligibilityStatus('other') - -ExternalDriveBackupEligibilityStatusCheckedDetails.desktop_device_session_info.validator = DesktopDeviceSessionLogInfo_validator -ExternalDriveBackupEligibilityStatusCheckedDetails.status.validator = ExternalDriveBackupEligibilityStatus_validator -ExternalDriveBackupEligibilityStatusCheckedDetails.number_of_external_drive_backup.validator = bv.UInt64() -ExternalDriveBackupEligibilityStatusCheckedDetails._all_field_names_ = set([ - 'desktop_device_session_info', - 'status', - 'number_of_external_drive_backup', -]) +ExternalDriveBackupEligibilityStatus.exceed_license_cap = ExternalDriveBackupEligibilityStatus( + "exceed_license_cap" +) +ExternalDriveBackupEligibilityStatus.skip = ExternalDriveBackupEligibilityStatus("skip") +ExternalDriveBackupEligibilityStatus.success = ExternalDriveBackupEligibilityStatus("success") +ExternalDriveBackupEligibilityStatus.other = ExternalDriveBackupEligibilityStatus("other") + +ExternalDriveBackupEligibilityStatusCheckedDetails.desktop_device_session_info.validator = ( + DesktopDeviceSessionLogInfo_validator +) +ExternalDriveBackupEligibilityStatusCheckedDetails.status.validator = ( + ExternalDriveBackupEligibilityStatus_validator +) +ExternalDriveBackupEligibilityStatusCheckedDetails.number_of_external_drive_backup.validator = ( + bv.UInt64() +) +ExternalDriveBackupEligibilityStatusCheckedDetails._all_field_names_ = set( + [ + "desktop_device_session_info", + "status", + "number_of_external_drive_backup", + ] +) ExternalDriveBackupEligibilityStatusCheckedDetails._all_fields_ = [ - ('desktop_device_session_info', ExternalDriveBackupEligibilityStatusCheckedDetails.desktop_device_session_info.validator), - ('status', ExternalDriveBackupEligibilityStatusCheckedDetails.status.validator), - ('number_of_external_drive_backup', ExternalDriveBackupEligibilityStatusCheckedDetails.number_of_external_drive_backup.validator), + ( + "desktop_device_session_info", + ExternalDriveBackupEligibilityStatusCheckedDetails.desktop_device_session_info.validator, + ), + ("status", ExternalDriveBackupEligibilityStatusCheckedDetails.status.validator), + ( + "number_of_external_drive_backup", + ExternalDriveBackupEligibilityStatusCheckedDetails.number_of_external_drive_backup.validator, + ), ] ExternalDriveBackupEligibilityStatusCheckedType.description.validator = bv.String() -ExternalDriveBackupEligibilityStatusCheckedType._all_field_names_ = set(['description']) -ExternalDriveBackupEligibilityStatusCheckedType._all_fields_ = [('description', ExternalDriveBackupEligibilityStatusCheckedType.description.validator)] +ExternalDriveBackupEligibilityStatusCheckedType._all_field_names_ = set(["description"]) +ExternalDriveBackupEligibilityStatusCheckedType._all_fields_ = [ + ( + "description", + ExternalDriveBackupEligibilityStatusCheckedType.description.validator, + ) +] ExternalDriveBackupPolicy._default_validator = bv.Void() ExternalDriveBackupPolicy._disabled_validator = bv.Void() ExternalDriveBackupPolicy._enabled_validator = bv.Void() ExternalDriveBackupPolicy._other_validator = bv.Void() ExternalDriveBackupPolicy._tagmap = { - 'default': ExternalDriveBackupPolicy._default_validator, - 'disabled': ExternalDriveBackupPolicy._disabled_validator, - 'enabled': ExternalDriveBackupPolicy._enabled_validator, - 'other': ExternalDriveBackupPolicy._other_validator, + "default": ExternalDriveBackupPolicy._default_validator, + "disabled": ExternalDriveBackupPolicy._disabled_validator, + "enabled": ExternalDriveBackupPolicy._enabled_validator, + "other": ExternalDriveBackupPolicy._other_validator, } -ExternalDriveBackupPolicy.default = ExternalDriveBackupPolicy('default') -ExternalDriveBackupPolicy.disabled = ExternalDriveBackupPolicy('disabled') -ExternalDriveBackupPolicy.enabled = ExternalDriveBackupPolicy('enabled') -ExternalDriveBackupPolicy.other = ExternalDriveBackupPolicy('other') +ExternalDriveBackupPolicy.default = ExternalDriveBackupPolicy("default") +ExternalDriveBackupPolicy.disabled = ExternalDriveBackupPolicy("disabled") +ExternalDriveBackupPolicy.enabled = ExternalDriveBackupPolicy("enabled") +ExternalDriveBackupPolicy.other = ExternalDriveBackupPolicy("other") ExternalDriveBackupPolicyChangedDetails.new_value.validator = ExternalDriveBackupPolicy_validator -ExternalDriveBackupPolicyChangedDetails.previous_value.validator = ExternalDriveBackupPolicy_validator -ExternalDriveBackupPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ExternalDriveBackupPolicyChangedDetails.previous_value.validator = ( + ExternalDriveBackupPolicy_validator +) +ExternalDriveBackupPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ExternalDriveBackupPolicyChangedDetails._all_fields_ = [ - ('new_value', ExternalDriveBackupPolicyChangedDetails.new_value.validator), - ('previous_value', ExternalDriveBackupPolicyChangedDetails.previous_value.validator), + ("new_value", ExternalDriveBackupPolicyChangedDetails.new_value.validator), + ( + "previous_value", + ExternalDriveBackupPolicyChangedDetails.previous_value.validator, + ), ] ExternalDriveBackupPolicyChangedType.description.validator = bv.String() -ExternalDriveBackupPolicyChangedType._all_field_names_ = set(['description']) -ExternalDriveBackupPolicyChangedType._all_fields_ = [('description', ExternalDriveBackupPolicyChangedType.description.validator)] +ExternalDriveBackupPolicyChangedType._all_field_names_ = set(["description"]) +ExternalDriveBackupPolicyChangedType._all_fields_ = [ + ("description", ExternalDriveBackupPolicyChangedType.description.validator) +] ExternalDriveBackupStatus._broken_validator = bv.Void() ExternalDriveBackupStatus._created_validator = bv.Void() @@ -101142,117 +107144,144 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExternalDriveBackupStatus._unknown_validator = bv.Void() ExternalDriveBackupStatus._other_validator = bv.Void() ExternalDriveBackupStatus._tagmap = { - 'broken': ExternalDriveBackupStatus._broken_validator, - 'created': ExternalDriveBackupStatus._created_validator, - 'created_or_broken': ExternalDriveBackupStatus._created_or_broken_validator, - 'deleted': ExternalDriveBackupStatus._deleted_validator, - 'empty': ExternalDriveBackupStatus._empty_validator, - 'unknown': ExternalDriveBackupStatus._unknown_validator, - 'other': ExternalDriveBackupStatus._other_validator, + "broken": ExternalDriveBackupStatus._broken_validator, + "created": ExternalDriveBackupStatus._created_validator, + "created_or_broken": ExternalDriveBackupStatus._created_or_broken_validator, + "deleted": ExternalDriveBackupStatus._deleted_validator, + "empty": ExternalDriveBackupStatus._empty_validator, + "unknown": ExternalDriveBackupStatus._unknown_validator, + "other": ExternalDriveBackupStatus._other_validator, } -ExternalDriveBackupStatus.broken = ExternalDriveBackupStatus('broken') -ExternalDriveBackupStatus.created = ExternalDriveBackupStatus('created') -ExternalDriveBackupStatus.created_or_broken = ExternalDriveBackupStatus('created_or_broken') -ExternalDriveBackupStatus.deleted = ExternalDriveBackupStatus('deleted') -ExternalDriveBackupStatus.empty = ExternalDriveBackupStatus('empty') -ExternalDriveBackupStatus.unknown = ExternalDriveBackupStatus('unknown') -ExternalDriveBackupStatus.other = ExternalDriveBackupStatus('other') +ExternalDriveBackupStatus.broken = ExternalDriveBackupStatus("broken") +ExternalDriveBackupStatus.created = ExternalDriveBackupStatus("created") +ExternalDriveBackupStatus.created_or_broken = ExternalDriveBackupStatus("created_or_broken") +ExternalDriveBackupStatus.deleted = ExternalDriveBackupStatus("deleted") +ExternalDriveBackupStatus.empty = ExternalDriveBackupStatus("empty") +ExternalDriveBackupStatus.unknown = ExternalDriveBackupStatus("unknown") +ExternalDriveBackupStatus.other = ExternalDriveBackupStatus("other") -ExternalDriveBackupStatusChangedDetails.desktop_device_session_info.validator = DesktopDeviceSessionLogInfo_validator -ExternalDriveBackupStatusChangedDetails.previous_value.validator = ExternalDriveBackupStatus_validator +ExternalDriveBackupStatusChangedDetails.desktop_device_session_info.validator = ( + DesktopDeviceSessionLogInfo_validator +) +ExternalDriveBackupStatusChangedDetails.previous_value.validator = ( + ExternalDriveBackupStatus_validator +) ExternalDriveBackupStatusChangedDetails.new_value.validator = ExternalDriveBackupStatus_validator -ExternalDriveBackupStatusChangedDetails._all_field_names_ = set([ - 'desktop_device_session_info', - 'previous_value', - 'new_value', -]) +ExternalDriveBackupStatusChangedDetails._all_field_names_ = set( + [ + "desktop_device_session_info", + "previous_value", + "new_value", + ] +) ExternalDriveBackupStatusChangedDetails._all_fields_ = [ - ('desktop_device_session_info', ExternalDriveBackupStatusChangedDetails.desktop_device_session_info.validator), - ('previous_value', ExternalDriveBackupStatusChangedDetails.previous_value.validator), - ('new_value', ExternalDriveBackupStatusChangedDetails.new_value.validator), + ( + "desktop_device_session_info", + ExternalDriveBackupStatusChangedDetails.desktop_device_session_info.validator, + ), + ( + "previous_value", + ExternalDriveBackupStatusChangedDetails.previous_value.validator, + ), + ("new_value", ExternalDriveBackupStatusChangedDetails.new_value.validator), ] ExternalDriveBackupStatusChangedType.description.validator = bv.String() -ExternalDriveBackupStatusChangedType._all_field_names_ = set(['description']) -ExternalDriveBackupStatusChangedType._all_fields_ = [('description', ExternalDriveBackupStatusChangedType.description.validator)] +ExternalDriveBackupStatusChangedType._all_field_names_ = set(["description"]) +ExternalDriveBackupStatusChangedType._all_fields_ = [ + ("description", ExternalDriveBackupStatusChangedType.description.validator) +] ExternalSharingCreateReportDetails._all_field_names_ = set([]) ExternalSharingCreateReportDetails._all_fields_ = [] ExternalSharingCreateReportType.description.validator = bv.String() -ExternalSharingCreateReportType._all_field_names_ = set(['description']) -ExternalSharingCreateReportType._all_fields_ = [('description', ExternalSharingCreateReportType.description.validator)] +ExternalSharingCreateReportType._all_field_names_ = set(["description"]) +ExternalSharingCreateReportType._all_fields_ = [ + ("description", ExternalSharingCreateReportType.description.validator) +] ExternalSharingReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -ExternalSharingReportFailedDetails._all_field_names_ = set(['failure_reason']) -ExternalSharingReportFailedDetails._all_fields_ = [('failure_reason', ExternalSharingReportFailedDetails.failure_reason.validator)] +ExternalSharingReportFailedDetails._all_field_names_ = set(["failure_reason"]) +ExternalSharingReportFailedDetails._all_fields_ = [ + ("failure_reason", ExternalSharingReportFailedDetails.failure_reason.validator) +] ExternalSharingReportFailedType.description.validator = bv.String() -ExternalSharingReportFailedType._all_field_names_ = set(['description']) -ExternalSharingReportFailedType._all_fields_ = [('description', ExternalSharingReportFailedType.description.validator)] +ExternalSharingReportFailedType._all_field_names_ = set(["description"]) +ExternalSharingReportFailedType._all_fields_ = [ + ("description", ExternalSharingReportFailedType.description.validator) +] ExternalSharingSetting._allow_validator = bv.Void() ExternalSharingSetting._forbid_validator = bv.Void() ExternalSharingSetting._unset_validator = bv.Void() ExternalSharingSetting._other_validator = bv.Void() ExternalSharingSetting._tagmap = { - 'allow': ExternalSharingSetting._allow_validator, - 'forbid': ExternalSharingSetting._forbid_validator, - 'unset': ExternalSharingSetting._unset_validator, - 'other': ExternalSharingSetting._other_validator, + "allow": ExternalSharingSetting._allow_validator, + "forbid": ExternalSharingSetting._forbid_validator, + "unset": ExternalSharingSetting._unset_validator, + "other": ExternalSharingSetting._other_validator, } -ExternalSharingSetting.allow = ExternalSharingSetting('allow') -ExternalSharingSetting.forbid = ExternalSharingSetting('forbid') -ExternalSharingSetting.unset = ExternalSharingSetting('unset') -ExternalSharingSetting.other = ExternalSharingSetting('other') +ExternalSharingSetting.allow = ExternalSharingSetting("allow") +ExternalSharingSetting.forbid = ExternalSharingSetting("forbid") +ExternalSharingSetting.unset = ExternalSharingSetting("unset") +ExternalSharingSetting.other = ExternalSharingSetting("other") ExternalUserLogInfo.user_identifier.validator = bv.String() ExternalUserLogInfo.identifier_type.validator = IdentifierType_validator -ExternalUserLogInfo._all_field_names_ = set([ - 'user_identifier', - 'identifier_type', -]) +ExternalUserLogInfo._all_field_names_ = set( + [ + "user_identifier", + "identifier_type", + ] +) ExternalUserLogInfo._all_fields_ = [ - ('user_identifier', ExternalUserLogInfo.user_identifier.validator), - ('identifier_type', ExternalUserLogInfo.identifier_type.validator), + ("user_identifier", ExternalUserLogInfo.user_identifier.validator), + ("identifier_type", ExternalUserLogInfo.identifier_type.validator), ] FailureDetailsLogInfo.user_friendly_message.validator = bv.Nullable(bv.String()) FailureDetailsLogInfo.technical_error_message.validator = bv.Nullable(bv.String()) -FailureDetailsLogInfo._all_field_names_ = set([ - 'user_friendly_message', - 'technical_error_message', -]) +FailureDetailsLogInfo._all_field_names_ = set( + [ + "user_friendly_message", + "technical_error_message", + ] +) FailureDetailsLogInfo._all_fields_ = [ - ('user_friendly_message', FailureDetailsLogInfo.user_friendly_message.validator), - ('technical_error_message', FailureDetailsLogInfo.technical_error_message.validator), + ("user_friendly_message", FailureDetailsLogInfo.user_friendly_message.validator), + ( + "technical_error_message", + FailureDetailsLogInfo.technical_error_message.validator, + ), ] FedAdminRole._enterprise_admin_validator = bv.Void() FedAdminRole._not_enterprise_admin_validator = bv.Void() FedAdminRole._other_validator = bv.Void() FedAdminRole._tagmap = { - 'enterprise_admin': FedAdminRole._enterprise_admin_validator, - 'not_enterprise_admin': FedAdminRole._not_enterprise_admin_validator, - 'other': FedAdminRole._other_validator, + "enterprise_admin": FedAdminRole._enterprise_admin_validator, + "not_enterprise_admin": FedAdminRole._not_enterprise_admin_validator, + "other": FedAdminRole._other_validator, } -FedAdminRole.enterprise_admin = FedAdminRole('enterprise_admin') -FedAdminRole.not_enterprise_admin = FedAdminRole('not_enterprise_admin') -FedAdminRole.other = FedAdminRole('other') +FedAdminRole.enterprise_admin = FedAdminRole("enterprise_admin") +FedAdminRole.not_enterprise_admin = FedAdminRole("not_enterprise_admin") +FedAdminRole.other = FedAdminRole("other") FedExtraDetails._organization_validator = OrganizationDetails_validator FedExtraDetails._team_validator = TeamDetails_validator FedExtraDetails._other_validator = bv.Void() FedExtraDetails._tagmap = { - 'organization': FedExtraDetails._organization_validator, - 'team': FedExtraDetails._team_validator, - 'other': FedExtraDetails._other_validator, + "organization": FedExtraDetails._organization_validator, + "team": FedExtraDetails._team_validator, + "other": FedExtraDetails._other_validator, } -FedExtraDetails.other = FedExtraDetails('other') +FedExtraDetails.other = FedExtraDetails("other") FedHandshakeAction._accepted_invite_validator = bv.Void() FedHandshakeAction._canceled_invite_validator = bv.Void() @@ -101262,43 +107291,47 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FedHandshakeAction._removed_team_validator = bv.Void() FedHandshakeAction._other_validator = bv.Void() FedHandshakeAction._tagmap = { - 'accepted_invite': FedHandshakeAction._accepted_invite_validator, - 'canceled_invite': FedHandshakeAction._canceled_invite_validator, - 'invite_expired': FedHandshakeAction._invite_expired_validator, - 'invited': FedHandshakeAction._invited_validator, - 'rejected_invite': FedHandshakeAction._rejected_invite_validator, - 'removed_team': FedHandshakeAction._removed_team_validator, - 'other': FedHandshakeAction._other_validator, + "accepted_invite": FedHandshakeAction._accepted_invite_validator, + "canceled_invite": FedHandshakeAction._canceled_invite_validator, + "invite_expired": FedHandshakeAction._invite_expired_validator, + "invited": FedHandshakeAction._invited_validator, + "rejected_invite": FedHandshakeAction._rejected_invite_validator, + "removed_team": FedHandshakeAction._removed_team_validator, + "other": FedHandshakeAction._other_validator, } -FedHandshakeAction.accepted_invite = FedHandshakeAction('accepted_invite') -FedHandshakeAction.canceled_invite = FedHandshakeAction('canceled_invite') -FedHandshakeAction.invite_expired = FedHandshakeAction('invite_expired') -FedHandshakeAction.invited = FedHandshakeAction('invited') -FedHandshakeAction.rejected_invite = FedHandshakeAction('rejected_invite') -FedHandshakeAction.removed_team = FedHandshakeAction('removed_team') -FedHandshakeAction.other = FedHandshakeAction('other') +FedHandshakeAction.accepted_invite = FedHandshakeAction("accepted_invite") +FedHandshakeAction.canceled_invite = FedHandshakeAction("canceled_invite") +FedHandshakeAction.invite_expired = FedHandshakeAction("invite_expired") +FedHandshakeAction.invited = FedHandshakeAction("invited") +FedHandshakeAction.rejected_invite = FedHandshakeAction("rejected_invite") +FedHandshakeAction.removed_team = FedHandshakeAction("removed_team") +FedHandshakeAction.other = FedHandshakeAction("other") FederationStatusChangeAdditionalInfo._connected_team_name_validator = ConnectedTeamName_validator -FederationStatusChangeAdditionalInfo._non_trusted_team_details_validator = NonTrustedTeamDetails_validator +FederationStatusChangeAdditionalInfo._non_trusted_team_details_validator = ( + NonTrustedTeamDetails_validator +) FederationStatusChangeAdditionalInfo._organization_name_validator = OrganizationName_validator FederationStatusChangeAdditionalInfo._other_validator = bv.Void() FederationStatusChangeAdditionalInfo._tagmap = { - 'connected_team_name': FederationStatusChangeAdditionalInfo._connected_team_name_validator, - 'non_trusted_team_details': FederationStatusChangeAdditionalInfo._non_trusted_team_details_validator, - 'organization_name': FederationStatusChangeAdditionalInfo._organization_name_validator, - 'other': FederationStatusChangeAdditionalInfo._other_validator, + "connected_team_name": FederationStatusChangeAdditionalInfo._connected_team_name_validator, + "non_trusted_team_details": FederationStatusChangeAdditionalInfo._non_trusted_team_details_validator, + "organization_name": FederationStatusChangeAdditionalInfo._organization_name_validator, + "other": FederationStatusChangeAdditionalInfo._other_validator, } -FederationStatusChangeAdditionalInfo.other = FederationStatusChangeAdditionalInfo('other') +FederationStatusChangeAdditionalInfo.other = FederationStatusChangeAdditionalInfo("other") FileAddCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileAddCommentDetails._all_field_names_ = set(['comment_text']) -FileAddCommentDetails._all_fields_ = [('comment_text', FileAddCommentDetails.comment_text.validator)] +FileAddCommentDetails._all_field_names_ = set(["comment_text"]) +FileAddCommentDetails._all_fields_ = [ + ("comment_text", FileAddCommentDetails.comment_text.validator) +] FileAddCommentType.description.validator = bv.String() -FileAddCommentType._all_field_names_ = set(['description']) -FileAddCommentType._all_fields_ = [('description', FileAddCommentType.description.validator)] +FileAddCommentType._all_field_names_ = set(["description"]) +FileAddCommentType._all_fields_ = [("description", FileAddCommentType.description.validator)] FileAddDetails._all_field_names_ = set([]) FileAddDetails._all_fields_ = [] @@ -101307,523 +107340,678 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileAddFromAutomationDetails._all_fields_ = [] FileAddFromAutomationType.description.validator = bv.String() -FileAddFromAutomationType._all_field_names_ = set(['description']) -FileAddFromAutomationType._all_fields_ = [('description', FileAddFromAutomationType.description.validator)] +FileAddFromAutomationType._all_field_names_ = set(["description"]) +FileAddFromAutomationType._all_fields_ = [ + ("description", FileAddFromAutomationType.description.validator) +] FileAddType.description.validator = bv.String() -FileAddType._all_field_names_ = set(['description']) -FileAddType._all_fields_ = [('description', FileAddType.description.validator)] +FileAddType._all_field_names_ = set(["description"]) +FileAddType._all_fields_ = [("description", FileAddType.description.validator)] FileChangeCommentSubscriptionDetails.new_value.validator = FileCommentNotificationPolicy_validator -FileChangeCommentSubscriptionDetails.previous_value.validator = bv.Nullable(FileCommentNotificationPolicy_validator) -FileChangeCommentSubscriptionDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +FileChangeCommentSubscriptionDetails.previous_value.validator = bv.Nullable( + FileCommentNotificationPolicy_validator +) +FileChangeCommentSubscriptionDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) FileChangeCommentSubscriptionDetails._all_fields_ = [ - ('new_value', FileChangeCommentSubscriptionDetails.new_value.validator), - ('previous_value', FileChangeCommentSubscriptionDetails.previous_value.validator), + ("new_value", FileChangeCommentSubscriptionDetails.new_value.validator), + ("previous_value", FileChangeCommentSubscriptionDetails.previous_value.validator), ] FileChangeCommentSubscriptionType.description.validator = bv.String() -FileChangeCommentSubscriptionType._all_field_names_ = set(['description']) -FileChangeCommentSubscriptionType._all_fields_ = [('description', FileChangeCommentSubscriptionType.description.validator)] +FileChangeCommentSubscriptionType._all_field_names_ = set(["description"]) +FileChangeCommentSubscriptionType._all_fields_ = [ + ("description", FileChangeCommentSubscriptionType.description.validator) +] FileCommentNotificationPolicy._disabled_validator = bv.Void() FileCommentNotificationPolicy._enabled_validator = bv.Void() FileCommentNotificationPolicy._other_validator = bv.Void() FileCommentNotificationPolicy._tagmap = { - 'disabled': FileCommentNotificationPolicy._disabled_validator, - 'enabled': FileCommentNotificationPolicy._enabled_validator, - 'other': FileCommentNotificationPolicy._other_validator, + "disabled": FileCommentNotificationPolicy._disabled_validator, + "enabled": FileCommentNotificationPolicy._enabled_validator, + "other": FileCommentNotificationPolicy._other_validator, } -FileCommentNotificationPolicy.disabled = FileCommentNotificationPolicy('disabled') -FileCommentNotificationPolicy.enabled = FileCommentNotificationPolicy('enabled') -FileCommentNotificationPolicy.other = FileCommentNotificationPolicy('other') +FileCommentNotificationPolicy.disabled = FileCommentNotificationPolicy("disabled") +FileCommentNotificationPolicy.enabled = FileCommentNotificationPolicy("enabled") +FileCommentNotificationPolicy.other = FileCommentNotificationPolicy("other") FileCommentsChangePolicyDetails.new_value.validator = FileCommentsPolicy_validator FileCommentsChangePolicyDetails.previous_value.validator = bv.Nullable(FileCommentsPolicy_validator) -FileCommentsChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +FileCommentsChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) FileCommentsChangePolicyDetails._all_fields_ = [ - ('new_value', FileCommentsChangePolicyDetails.new_value.validator), - ('previous_value', FileCommentsChangePolicyDetails.previous_value.validator), + ("new_value", FileCommentsChangePolicyDetails.new_value.validator), + ("previous_value", FileCommentsChangePolicyDetails.previous_value.validator), ] FileCommentsChangePolicyType.description.validator = bv.String() -FileCommentsChangePolicyType._all_field_names_ = set(['description']) -FileCommentsChangePolicyType._all_fields_ = [('description', FileCommentsChangePolicyType.description.validator)] +FileCommentsChangePolicyType._all_field_names_ = set(["description"]) +FileCommentsChangePolicyType._all_fields_ = [ + ("description", FileCommentsChangePolicyType.description.validator) +] FileCommentsPolicy._disabled_validator = bv.Void() FileCommentsPolicy._enabled_validator = bv.Void() FileCommentsPolicy._other_validator = bv.Void() FileCommentsPolicy._tagmap = { - 'disabled': FileCommentsPolicy._disabled_validator, - 'enabled': FileCommentsPolicy._enabled_validator, - 'other': FileCommentsPolicy._other_validator, + "disabled": FileCommentsPolicy._disabled_validator, + "enabled": FileCommentsPolicy._enabled_validator, + "other": FileCommentsPolicy._other_validator, } -FileCommentsPolicy.disabled = FileCommentsPolicy('disabled') -FileCommentsPolicy.enabled = FileCommentsPolicy('enabled') -FileCommentsPolicy.other = FileCommentsPolicy('other') +FileCommentsPolicy.disabled = FileCommentsPolicy("disabled") +FileCommentsPolicy.enabled = FileCommentsPolicy("enabled") +FileCommentsPolicy.other = FileCommentsPolicy("other") -FileCopyDetails.relocate_action_details.validator = bv.List(RelocateAssetReferencesLogInfo_validator) -FileCopyDetails._all_field_names_ = set(['relocate_action_details']) -FileCopyDetails._all_fields_ = [('relocate_action_details', FileCopyDetails.relocate_action_details.validator)] +FileCopyDetails.relocate_action_details.validator = bv.List( + RelocateAssetReferencesLogInfo_validator +) +FileCopyDetails._all_field_names_ = set(["relocate_action_details"]) +FileCopyDetails._all_fields_ = [ + ("relocate_action_details", FileCopyDetails.relocate_action_details.validator) +] FileCopyType.description.validator = bv.String() -FileCopyType._all_field_names_ = set(['description']) -FileCopyType._all_fields_ = [('description', FileCopyType.description.validator)] +FileCopyType._all_field_names_ = set(["description"]) +FileCopyType._all_fields_ = [("description", FileCopyType.description.validator)] FileDeleteCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileDeleteCommentDetails._all_field_names_ = set(['comment_text']) -FileDeleteCommentDetails._all_fields_ = [('comment_text', FileDeleteCommentDetails.comment_text.validator)] +FileDeleteCommentDetails._all_field_names_ = set(["comment_text"]) +FileDeleteCommentDetails._all_fields_ = [ + ("comment_text", FileDeleteCommentDetails.comment_text.validator) +] FileDeleteCommentType.description.validator = bv.String() -FileDeleteCommentType._all_field_names_ = set(['description']) -FileDeleteCommentType._all_fields_ = [('description', FileDeleteCommentType.description.validator)] +FileDeleteCommentType._all_field_names_ = set(["description"]) +FileDeleteCommentType._all_fields_ = [("description", FileDeleteCommentType.description.validator)] FileDeleteDetails._all_field_names_ = set([]) FileDeleteDetails._all_fields_ = [] FileDeleteType.description.validator = bv.String() -FileDeleteType._all_field_names_ = set(['description']) -FileDeleteType._all_fields_ = [('description', FileDeleteType.description.validator)] +FileDeleteType._all_field_names_ = set(["description"]) +FileDeleteType._all_fields_ = [("description", FileDeleteType.description.validator)] FileDownloadDetails._all_field_names_ = set([]) FileDownloadDetails._all_fields_ = [] FileDownloadType.description.validator = bv.String() -FileDownloadType._all_field_names_ = set(['description']) -FileDownloadType._all_fields_ = [('description', FileDownloadType.description.validator)] +FileDownloadType._all_field_names_ = set(["description"]) +FileDownloadType._all_fields_ = [("description", FileDownloadType.description.validator)] FileEditCommentDetails.comment_text.validator = bv.Nullable(bv.String()) FileEditCommentDetails.previous_comment_text.validator = bv.String() -FileEditCommentDetails._all_field_names_ = set([ - 'comment_text', - 'previous_comment_text', -]) +FileEditCommentDetails._all_field_names_ = set( + [ + "comment_text", + "previous_comment_text", + ] +) FileEditCommentDetails._all_fields_ = [ - ('comment_text', FileEditCommentDetails.comment_text.validator), - ('previous_comment_text', FileEditCommentDetails.previous_comment_text.validator), + ("comment_text", FileEditCommentDetails.comment_text.validator), + ("previous_comment_text", FileEditCommentDetails.previous_comment_text.validator), ] FileEditCommentType.description.validator = bv.String() -FileEditCommentType._all_field_names_ = set(['description']) -FileEditCommentType._all_fields_ = [('description', FileEditCommentType.description.validator)] +FileEditCommentType._all_field_names_ = set(["description"]) +FileEditCommentType._all_fields_ = [("description", FileEditCommentType.description.validator)] FileEditDetails._all_field_names_ = set([]) FileEditDetails._all_fields_ = [] FileEditType.description.validator = bv.String() -FileEditType._all_field_names_ = set(['description']) -FileEditType._all_fields_ = [('description', FileEditType.description.validator)] +FileEditType._all_field_names_ = set(["description"]) +FileEditType._all_fields_ = [("description", FileEditType.description.validator)] FileGetCopyReferenceDetails._all_field_names_ = set([]) FileGetCopyReferenceDetails._all_fields_ = [] FileGetCopyReferenceType.description.validator = bv.String() -FileGetCopyReferenceType._all_field_names_ = set(['description']) -FileGetCopyReferenceType._all_fields_ = [('description', FileGetCopyReferenceType.description.validator)] +FileGetCopyReferenceType._all_field_names_ = set(["description"]) +FileGetCopyReferenceType._all_fields_ = [ + ("description", FileGetCopyReferenceType.description.validator) +] FileLikeCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileLikeCommentDetails._all_field_names_ = set(['comment_text']) -FileLikeCommentDetails._all_fields_ = [('comment_text', FileLikeCommentDetails.comment_text.validator)] +FileLikeCommentDetails._all_field_names_ = set(["comment_text"]) +FileLikeCommentDetails._all_fields_ = [ + ("comment_text", FileLikeCommentDetails.comment_text.validator) +] FileLikeCommentType.description.validator = bv.String() -FileLikeCommentType._all_field_names_ = set(['description']) -FileLikeCommentType._all_fields_ = [('description', FileLikeCommentType.description.validator)] +FileLikeCommentType._all_field_names_ = set(["description"]) +FileLikeCommentType._all_fields_ = [("description", FileLikeCommentType.description.validator)] FileLockingLockStatusChangedDetails.previous_value.validator = LockStatus_validator FileLockingLockStatusChangedDetails.new_value.validator = LockStatus_validator -FileLockingLockStatusChangedDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +FileLockingLockStatusChangedDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) FileLockingLockStatusChangedDetails._all_fields_ = [ - ('previous_value', FileLockingLockStatusChangedDetails.previous_value.validator), - ('new_value', FileLockingLockStatusChangedDetails.new_value.validator), + ("previous_value", FileLockingLockStatusChangedDetails.previous_value.validator), + ("new_value", FileLockingLockStatusChangedDetails.new_value.validator), ] FileLockingLockStatusChangedType.description.validator = bv.String() -FileLockingLockStatusChangedType._all_field_names_ = set(['description']) -FileLockingLockStatusChangedType._all_fields_ = [('description', FileLockingLockStatusChangedType.description.validator)] +FileLockingLockStatusChangedType._all_field_names_ = set(["description"]) +FileLockingLockStatusChangedType._all_fields_ = [ + ("description", FileLockingLockStatusChangedType.description.validator) +] FileLockingPolicyChangedDetails.new_value.validator = team_policies.FileLockingPolicyState_validator -FileLockingPolicyChangedDetails.previous_value.validator = team_policies.FileLockingPolicyState_validator -FileLockingPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +FileLockingPolicyChangedDetails.previous_value.validator = ( + team_policies.FileLockingPolicyState_validator +) +FileLockingPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) FileLockingPolicyChangedDetails._all_fields_ = [ - ('new_value', FileLockingPolicyChangedDetails.new_value.validator), - ('previous_value', FileLockingPolicyChangedDetails.previous_value.validator), + ("new_value", FileLockingPolicyChangedDetails.new_value.validator), + ("previous_value", FileLockingPolicyChangedDetails.previous_value.validator), ] FileLockingPolicyChangedType.description.validator = bv.String() -FileLockingPolicyChangedType._all_field_names_ = set(['description']) -FileLockingPolicyChangedType._all_fields_ = [('description', FileLockingPolicyChangedType.description.validator)] +FileLockingPolicyChangedType._all_field_names_ = set(["description"]) +FileLockingPolicyChangedType._all_fields_ = [ + ("description", FileLockingPolicyChangedType.description.validator) +] FileOrFolderLogInfo.path.validator = PathLogInfo_validator FileOrFolderLogInfo.display_name.validator = bv.Nullable(bv.String()) FileOrFolderLogInfo.file_id.validator = bv.Nullable(bv.String()) FileOrFolderLogInfo.file_size.validator = bv.Nullable(bv.UInt64()) -FileOrFolderLogInfo._all_field_names_ = set([ - 'path', - 'display_name', - 'file_id', - 'file_size', -]) +FileOrFolderLogInfo._all_field_names_ = set( + [ + "path", + "display_name", + "file_id", + "file_size", + ] +) FileOrFolderLogInfo._all_fields_ = [ - ('path', FileOrFolderLogInfo.path.validator), - ('display_name', FileOrFolderLogInfo.display_name.validator), - ('file_id', FileOrFolderLogInfo.file_id.validator), - ('file_size', FileOrFolderLogInfo.file_size.validator), + ("path", FileOrFolderLogInfo.path.validator), + ("display_name", FileOrFolderLogInfo.display_name.validator), + ("file_id", FileOrFolderLogInfo.file_id.validator), + ("file_size", FileOrFolderLogInfo.file_size.validator), ] FileLogInfo._all_field_names_ = FileOrFolderLogInfo._all_field_names_.union(set([])) FileLogInfo._all_fields_ = FileOrFolderLogInfo._all_fields_ + [] -FileMoveDetails.relocate_action_details.validator = bv.List(RelocateAssetReferencesLogInfo_validator) -FileMoveDetails._all_field_names_ = set(['relocate_action_details']) -FileMoveDetails._all_fields_ = [('relocate_action_details', FileMoveDetails.relocate_action_details.validator)] +FileMoveDetails.relocate_action_details.validator = bv.List( + RelocateAssetReferencesLogInfo_validator +) +FileMoveDetails._all_field_names_ = set(["relocate_action_details"]) +FileMoveDetails._all_fields_ = [ + ("relocate_action_details", FileMoveDetails.relocate_action_details.validator) +] FileMoveType.description.validator = bv.String() -FileMoveType._all_field_names_ = set(['description']) -FileMoveType._all_fields_ = [('description', FileMoveType.description.validator)] +FileMoveType._all_field_names_ = set(["description"]) +FileMoveType._all_fields_ = [("description", FileMoveType.description.validator)] FilePermanentlyDeleteDetails._all_field_names_ = set([]) FilePermanentlyDeleteDetails._all_fields_ = [] FilePermanentlyDeleteType.description.validator = bv.String() -FilePermanentlyDeleteType._all_field_names_ = set(['description']) -FilePermanentlyDeleteType._all_fields_ = [('description', FilePermanentlyDeleteType.description.validator)] +FilePermanentlyDeleteType._all_field_names_ = set(["description"]) +FilePermanentlyDeleteType._all_fields_ = [ + ("description", FilePermanentlyDeleteType.description.validator) +] FilePreviewDetails._all_field_names_ = set([]) FilePreviewDetails._all_fields_ = [] FilePreviewType.description.validator = bv.String() -FilePreviewType._all_field_names_ = set(['description']) -FilePreviewType._all_fields_ = [('description', FilePreviewType.description.validator)] - -FileProviderMigrationPolicyChangedDetails.new_value.validator = team_policies.FileProviderMigrationPolicyState_validator -FileProviderMigrationPolicyChangedDetails.previous_value.validator = team_policies.FileProviderMigrationPolicyState_validator -FileProviderMigrationPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +FilePreviewType._all_field_names_ = set(["description"]) +FilePreviewType._all_fields_ = [("description", FilePreviewType.description.validator)] + +FileProviderMigrationPolicyChangedDetails.new_value.validator = ( + team_policies.FileProviderMigrationPolicyState_validator +) +FileProviderMigrationPolicyChangedDetails.previous_value.validator = ( + team_policies.FileProviderMigrationPolicyState_validator +) +FileProviderMigrationPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) FileProviderMigrationPolicyChangedDetails._all_fields_ = [ - ('new_value', FileProviderMigrationPolicyChangedDetails.new_value.validator), - ('previous_value', FileProviderMigrationPolicyChangedDetails.previous_value.validator), + ("new_value", FileProviderMigrationPolicyChangedDetails.new_value.validator), + ( + "previous_value", + FileProviderMigrationPolicyChangedDetails.previous_value.validator, + ), ] FileProviderMigrationPolicyChangedType.description.validator = bv.String() -FileProviderMigrationPolicyChangedType._all_field_names_ = set(['description']) -FileProviderMigrationPolicyChangedType._all_fields_ = [('description', FileProviderMigrationPolicyChangedType.description.validator)] +FileProviderMigrationPolicyChangedType._all_field_names_ = set(["description"]) +FileProviderMigrationPolicyChangedType._all_fields_ = [ + ("description", FileProviderMigrationPolicyChangedType.description.validator) +] -FileRenameDetails.relocate_action_details.validator = bv.List(RelocateAssetReferencesLogInfo_validator) -FileRenameDetails._all_field_names_ = set(['relocate_action_details']) -FileRenameDetails._all_fields_ = [('relocate_action_details', FileRenameDetails.relocate_action_details.validator)] +FileRenameDetails.relocate_action_details.validator = bv.List( + RelocateAssetReferencesLogInfo_validator +) +FileRenameDetails._all_field_names_ = set(["relocate_action_details"]) +FileRenameDetails._all_fields_ = [ + ("relocate_action_details", FileRenameDetails.relocate_action_details.validator) +] FileRenameType.description.validator = bv.String() -FileRenameType._all_field_names_ = set(['description']) -FileRenameType._all_fields_ = [('description', FileRenameType.description.validator)] +FileRenameType._all_field_names_ = set(["description"]) +FileRenameType._all_fields_ = [("description", FileRenameType.description.validator)] -FileRequestAutoCloseDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) +FileRequestAutoCloseDetails.file_request_id.validator = bv.Nullable( + file_requests.FileRequestId_validator +) FileRequestAutoCloseDetails.reason.validator = bv.Nullable(bv.String()) FileRequestAutoCloseDetails.previous_details.validator = bv.Nullable(FileRequestDetails_validator) -FileRequestAutoCloseDetails._all_field_names_ = set([ - 'file_request_id', - 'reason', - 'previous_details', -]) +FileRequestAutoCloseDetails._all_field_names_ = set( + [ + "file_request_id", + "reason", + "previous_details", + ] +) FileRequestAutoCloseDetails._all_fields_ = [ - ('file_request_id', FileRequestAutoCloseDetails.file_request_id.validator), - ('reason', FileRequestAutoCloseDetails.reason.validator), - ('previous_details', FileRequestAutoCloseDetails.previous_details.validator), + ("file_request_id", FileRequestAutoCloseDetails.file_request_id.validator), + ("reason", FileRequestAutoCloseDetails.reason.validator), + ("previous_details", FileRequestAutoCloseDetails.previous_details.validator), ] FileRequestAutoCloseType.description.validator = bv.String() -FileRequestAutoCloseType._all_field_names_ = set(['description']) -FileRequestAutoCloseType._all_fields_ = [('description', FileRequestAutoCloseType.description.validator)] +FileRequestAutoCloseType._all_field_names_ = set(["description"]) +FileRequestAutoCloseType._all_fields_ = [ + ("description", FileRequestAutoCloseType.description.validator) +] -FileRequestChangeDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) +FileRequestChangeDetails.file_request_id.validator = bv.Nullable( + file_requests.FileRequestId_validator +) FileRequestChangeDetails.previous_details.validator = bv.Nullable(FileRequestDetails_validator) FileRequestChangeDetails.new_details.validator = FileRequestDetails_validator -FileRequestChangeDetails._all_field_names_ = set([ - 'file_request_id', - 'previous_details', - 'new_details', -]) +FileRequestChangeDetails._all_field_names_ = set( + [ + "file_request_id", + "previous_details", + "new_details", + ] +) FileRequestChangeDetails._all_fields_ = [ - ('file_request_id', FileRequestChangeDetails.file_request_id.validator), - ('previous_details', FileRequestChangeDetails.previous_details.validator), - ('new_details', FileRequestChangeDetails.new_details.validator), + ("file_request_id", FileRequestChangeDetails.file_request_id.validator), + ("previous_details", FileRequestChangeDetails.previous_details.validator), + ("new_details", FileRequestChangeDetails.new_details.validator), ] FileRequestChangeType.description.validator = bv.String() -FileRequestChangeType._all_field_names_ = set(['description']) -FileRequestChangeType._all_fields_ = [('description', FileRequestChangeType.description.validator)] +FileRequestChangeType._all_field_names_ = set(["description"]) +FileRequestChangeType._all_fields_ = [("description", FileRequestChangeType.description.validator)] -FileRequestCloseDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) +FileRequestCloseDetails.file_request_id.validator = bv.Nullable( + file_requests.FileRequestId_validator +) FileRequestCloseDetails.previous_details.validator = bv.Nullable(FileRequestDetails_validator) -FileRequestCloseDetails._all_field_names_ = set([ - 'file_request_id', - 'previous_details', -]) +FileRequestCloseDetails._all_field_names_ = set( + [ + "file_request_id", + "previous_details", + ] +) FileRequestCloseDetails._all_fields_ = [ - ('file_request_id', FileRequestCloseDetails.file_request_id.validator), - ('previous_details', FileRequestCloseDetails.previous_details.validator), + ("file_request_id", FileRequestCloseDetails.file_request_id.validator), + ("previous_details", FileRequestCloseDetails.previous_details.validator), ] FileRequestCloseType.description.validator = bv.String() -FileRequestCloseType._all_field_names_ = set(['description']) -FileRequestCloseType._all_fields_ = [('description', FileRequestCloseType.description.validator)] +FileRequestCloseType._all_field_names_ = set(["description"]) +FileRequestCloseType._all_fields_ = [("description", FileRequestCloseType.description.validator)] -FileRequestCreateDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) +FileRequestCreateDetails.file_request_id.validator = bv.Nullable( + file_requests.FileRequestId_validator +) FileRequestCreateDetails.request_details.validator = bv.Nullable(FileRequestDetails_validator) -FileRequestCreateDetails._all_field_names_ = set([ - 'file_request_id', - 'request_details', -]) +FileRequestCreateDetails._all_field_names_ = set( + [ + "file_request_id", + "request_details", + ] +) FileRequestCreateDetails._all_fields_ = [ - ('file_request_id', FileRequestCreateDetails.file_request_id.validator), - ('request_details', FileRequestCreateDetails.request_details.validator), + ("file_request_id", FileRequestCreateDetails.file_request_id.validator), + ("request_details", FileRequestCreateDetails.request_details.validator), ] FileRequestCreateType.description.validator = bv.String() -FileRequestCreateType._all_field_names_ = set(['description']) -FileRequestCreateType._all_fields_ = [('description', FileRequestCreateType.description.validator)] +FileRequestCreateType._all_field_names_ = set(["description"]) +FileRequestCreateType._all_fields_ = [("description", FileRequestCreateType.description.validator)] FileRequestDeadline.deadline.validator = bv.Nullable(common.DropboxTimestamp_validator) FileRequestDeadline.allow_late_uploads.validator = bv.Nullable(bv.String()) -FileRequestDeadline._all_field_names_ = set([ - 'deadline', - 'allow_late_uploads', -]) +FileRequestDeadline._all_field_names_ = set( + [ + "deadline", + "allow_late_uploads", + ] +) FileRequestDeadline._all_fields_ = [ - ('deadline', FileRequestDeadline.deadline.validator), - ('allow_late_uploads', FileRequestDeadline.allow_late_uploads.validator), + ("deadline", FileRequestDeadline.deadline.validator), + ("allow_late_uploads", FileRequestDeadline.allow_late_uploads.validator), ] -FileRequestDeleteDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) +FileRequestDeleteDetails.file_request_id.validator = bv.Nullable( + file_requests.FileRequestId_validator +) FileRequestDeleteDetails.previous_details.validator = bv.Nullable(FileRequestDetails_validator) -FileRequestDeleteDetails._all_field_names_ = set([ - 'file_request_id', - 'previous_details', -]) +FileRequestDeleteDetails._all_field_names_ = set( + [ + "file_request_id", + "previous_details", + ] +) FileRequestDeleteDetails._all_fields_ = [ - ('file_request_id', FileRequestDeleteDetails.file_request_id.validator), - ('previous_details', FileRequestDeleteDetails.previous_details.validator), + ("file_request_id", FileRequestDeleteDetails.file_request_id.validator), + ("previous_details", FileRequestDeleteDetails.previous_details.validator), ] FileRequestDeleteType.description.validator = bv.String() -FileRequestDeleteType._all_field_names_ = set(['description']) -FileRequestDeleteType._all_fields_ = [('description', FileRequestDeleteType.description.validator)] +FileRequestDeleteType._all_field_names_ = set(["description"]) +FileRequestDeleteType._all_fields_ = [("description", FileRequestDeleteType.description.validator)] FileRequestDetails.asset_index.validator = bv.UInt64() FileRequestDetails.deadline.validator = bv.Nullable(FileRequestDeadline_validator) FileRequestDetails.has_password.validator = bv.Nullable(bv.Boolean()) -FileRequestDetails._all_field_names_ = set([ - 'asset_index', - 'deadline', - 'has_password', -]) +FileRequestDetails._all_field_names_ = set( + [ + "asset_index", + "deadline", + "has_password", + ] +) FileRequestDetails._all_fields_ = [ - ('asset_index', FileRequestDetails.asset_index.validator), - ('deadline', FileRequestDetails.deadline.validator), - ('has_password', FileRequestDetails.has_password.validator), + ("asset_index", FileRequestDetails.asset_index.validator), + ("deadline", FileRequestDetails.deadline.validator), + ("has_password", FileRequestDetails.has_password.validator), ] -FileRequestReceiveFileDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) -FileRequestReceiveFileDetails.file_request_details.validator = bv.Nullable(FileRequestDetails_validator) +FileRequestReceiveFileDetails.file_request_id.validator = bv.Nullable( + file_requests.FileRequestId_validator +) +FileRequestReceiveFileDetails.file_request_details.validator = bv.Nullable( + FileRequestDetails_validator +) FileRequestReceiveFileDetails.submitted_file_names.validator = bv.List(bv.String()) -FileRequestReceiveFileDetails.submitter_name.validator = bv.Nullable(common.DisplayNameLegacy_validator) +FileRequestReceiveFileDetails.submitter_name.validator = bv.Nullable( + common.DisplayNameLegacy_validator +) FileRequestReceiveFileDetails.submitter_email.validator = bv.Nullable(EmailAddress_validator) -FileRequestReceiveFileDetails._all_field_names_ = set([ - 'file_request_id', - 'file_request_details', - 'submitted_file_names', - 'submitter_name', - 'submitter_email', -]) +FileRequestReceiveFileDetails._all_field_names_ = set( + [ + "file_request_id", + "file_request_details", + "submitted_file_names", + "submitter_name", + "submitter_email", + ] +) FileRequestReceiveFileDetails._all_fields_ = [ - ('file_request_id', FileRequestReceiveFileDetails.file_request_id.validator), - ('file_request_details', FileRequestReceiveFileDetails.file_request_details.validator), - ('submitted_file_names', FileRequestReceiveFileDetails.submitted_file_names.validator), - ('submitter_name', FileRequestReceiveFileDetails.submitter_name.validator), - ('submitter_email', FileRequestReceiveFileDetails.submitter_email.validator), + ("file_request_id", FileRequestReceiveFileDetails.file_request_id.validator), + ( + "file_request_details", + FileRequestReceiveFileDetails.file_request_details.validator, + ), + ( + "submitted_file_names", + FileRequestReceiveFileDetails.submitted_file_names.validator, + ), + ("submitter_name", FileRequestReceiveFileDetails.submitter_name.validator), + ("submitter_email", FileRequestReceiveFileDetails.submitter_email.validator), ] FileRequestReceiveFileType.description.validator = bv.String() -FileRequestReceiveFileType._all_field_names_ = set(['description']) -FileRequestReceiveFileType._all_fields_ = [('description', FileRequestReceiveFileType.description.validator)] +FileRequestReceiveFileType._all_field_names_ = set(["description"]) +FileRequestReceiveFileType._all_fields_ = [ + ("description", FileRequestReceiveFileType.description.validator) +] FileRequestsChangePolicyDetails.new_value.validator = FileRequestsPolicy_validator FileRequestsChangePolicyDetails.previous_value.validator = bv.Nullable(FileRequestsPolicy_validator) -FileRequestsChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +FileRequestsChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) FileRequestsChangePolicyDetails._all_fields_ = [ - ('new_value', FileRequestsChangePolicyDetails.new_value.validator), - ('previous_value', FileRequestsChangePolicyDetails.previous_value.validator), + ("new_value", FileRequestsChangePolicyDetails.new_value.validator), + ("previous_value", FileRequestsChangePolicyDetails.previous_value.validator), ] FileRequestsChangePolicyType.description.validator = bv.String() -FileRequestsChangePolicyType._all_field_names_ = set(['description']) -FileRequestsChangePolicyType._all_fields_ = [('description', FileRequestsChangePolicyType.description.validator)] +FileRequestsChangePolicyType._all_field_names_ = set(["description"]) +FileRequestsChangePolicyType._all_fields_ = [ + ("description", FileRequestsChangePolicyType.description.validator) +] FileRequestsEmailsEnabledDetails._all_field_names_ = set([]) FileRequestsEmailsEnabledDetails._all_fields_ = [] FileRequestsEmailsEnabledType.description.validator = bv.String() -FileRequestsEmailsEnabledType._all_field_names_ = set(['description']) -FileRequestsEmailsEnabledType._all_fields_ = [('description', FileRequestsEmailsEnabledType.description.validator)] +FileRequestsEmailsEnabledType._all_field_names_ = set(["description"]) +FileRequestsEmailsEnabledType._all_fields_ = [ + ("description", FileRequestsEmailsEnabledType.description.validator) +] FileRequestsEmailsRestrictedToTeamOnlyDetails._all_field_names_ = set([]) FileRequestsEmailsRestrictedToTeamOnlyDetails._all_fields_ = [] FileRequestsEmailsRestrictedToTeamOnlyType.description.validator = bv.String() -FileRequestsEmailsRestrictedToTeamOnlyType._all_field_names_ = set(['description']) -FileRequestsEmailsRestrictedToTeamOnlyType._all_fields_ = [('description', FileRequestsEmailsRestrictedToTeamOnlyType.description.validator)] +FileRequestsEmailsRestrictedToTeamOnlyType._all_field_names_ = set(["description"]) +FileRequestsEmailsRestrictedToTeamOnlyType._all_fields_ = [ + ("description", FileRequestsEmailsRestrictedToTeamOnlyType.description.validator) +] FileRequestsPolicy._disabled_validator = bv.Void() FileRequestsPolicy._enabled_validator = bv.Void() FileRequestsPolicy._other_validator = bv.Void() FileRequestsPolicy._tagmap = { - 'disabled': FileRequestsPolicy._disabled_validator, - 'enabled': FileRequestsPolicy._enabled_validator, - 'other': FileRequestsPolicy._other_validator, + "disabled": FileRequestsPolicy._disabled_validator, + "enabled": FileRequestsPolicy._enabled_validator, + "other": FileRequestsPolicy._other_validator, } -FileRequestsPolicy.disabled = FileRequestsPolicy('disabled') -FileRequestsPolicy.enabled = FileRequestsPolicy('enabled') -FileRequestsPolicy.other = FileRequestsPolicy('other') +FileRequestsPolicy.disabled = FileRequestsPolicy("disabled") +FileRequestsPolicy.enabled = FileRequestsPolicy("enabled") +FileRequestsPolicy.other = FileRequestsPolicy("other") FileResolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileResolveCommentDetails._all_field_names_ = set(['comment_text']) -FileResolveCommentDetails._all_fields_ = [('comment_text', FileResolveCommentDetails.comment_text.validator)] +FileResolveCommentDetails._all_field_names_ = set(["comment_text"]) +FileResolveCommentDetails._all_fields_ = [ + ("comment_text", FileResolveCommentDetails.comment_text.validator) +] FileResolveCommentType.description.validator = bv.String() -FileResolveCommentType._all_field_names_ = set(['description']) -FileResolveCommentType._all_fields_ = [('description', FileResolveCommentType.description.validator)] +FileResolveCommentType._all_field_names_ = set(["description"]) +FileResolveCommentType._all_fields_ = [ + ("description", FileResolveCommentType.description.validator) +] FileRestoreDetails._all_field_names_ = set([]) FileRestoreDetails._all_fields_ = [] FileRestoreType.description.validator = bv.String() -FileRestoreType._all_field_names_ = set(['description']) -FileRestoreType._all_fields_ = [('description', FileRestoreType.description.validator)] +FileRestoreType._all_field_names_ = set(["description"]) +FileRestoreType._all_fields_ = [("description", FileRestoreType.description.validator)] FileRevertDetails._all_field_names_ = set([]) FileRevertDetails._all_fields_ = [] FileRevertType.description.validator = bv.String() -FileRevertType._all_field_names_ = set(['description']) -FileRevertType._all_fields_ = [('description', FileRevertType.description.validator)] +FileRevertType._all_field_names_ = set(["description"]) +FileRevertType._all_fields_ = [("description", FileRevertType.description.validator)] FileRollbackChangesDetails._all_field_names_ = set([]) FileRollbackChangesDetails._all_fields_ = [] FileRollbackChangesType.description.validator = bv.String() -FileRollbackChangesType._all_field_names_ = set(['description']) -FileRollbackChangesType._all_fields_ = [('description', FileRollbackChangesType.description.validator)] +FileRollbackChangesType._all_field_names_ = set(["description"]) +FileRollbackChangesType._all_fields_ = [ + ("description", FileRollbackChangesType.description.validator) +] -FileSaveCopyReferenceDetails.relocate_action_details.validator = bv.List(RelocateAssetReferencesLogInfo_validator) -FileSaveCopyReferenceDetails._all_field_names_ = set(['relocate_action_details']) -FileSaveCopyReferenceDetails._all_fields_ = [('relocate_action_details', FileSaveCopyReferenceDetails.relocate_action_details.validator)] +FileSaveCopyReferenceDetails.relocate_action_details.validator = bv.List( + RelocateAssetReferencesLogInfo_validator +) +FileSaveCopyReferenceDetails._all_field_names_ = set(["relocate_action_details"]) +FileSaveCopyReferenceDetails._all_fields_ = [ + ( + "relocate_action_details", + FileSaveCopyReferenceDetails.relocate_action_details.validator, + ) +] FileSaveCopyReferenceType.description.validator = bv.String() -FileSaveCopyReferenceType._all_field_names_ = set(['description']) -FileSaveCopyReferenceType._all_fields_ = [('description', FileSaveCopyReferenceType.description.validator)] +FileSaveCopyReferenceType._all_field_names_ = set(["description"]) +FileSaveCopyReferenceType._all_fields_ = [ + ("description", FileSaveCopyReferenceType.description.validator) +] FileTransfersFileAddDetails.file_transfer_id.validator = bv.String() -FileTransfersFileAddDetails._all_field_names_ = set(['file_transfer_id']) -FileTransfersFileAddDetails._all_fields_ = [('file_transfer_id', FileTransfersFileAddDetails.file_transfer_id.validator)] +FileTransfersFileAddDetails._all_field_names_ = set(["file_transfer_id"]) +FileTransfersFileAddDetails._all_fields_ = [ + ("file_transfer_id", FileTransfersFileAddDetails.file_transfer_id.validator) +] FileTransfersFileAddType.description.validator = bv.String() -FileTransfersFileAddType._all_field_names_ = set(['description']) -FileTransfersFileAddType._all_fields_ = [('description', FileTransfersFileAddType.description.validator)] +FileTransfersFileAddType._all_field_names_ = set(["description"]) +FileTransfersFileAddType._all_fields_ = [ + ("description", FileTransfersFileAddType.description.validator) +] FileTransfersPolicy._disabled_validator = bv.Void() FileTransfersPolicy._enabled_validator = bv.Void() FileTransfersPolicy._other_validator = bv.Void() FileTransfersPolicy._tagmap = { - 'disabled': FileTransfersPolicy._disabled_validator, - 'enabled': FileTransfersPolicy._enabled_validator, - 'other': FileTransfersPolicy._other_validator, + "disabled": FileTransfersPolicy._disabled_validator, + "enabled": FileTransfersPolicy._enabled_validator, + "other": FileTransfersPolicy._other_validator, } -FileTransfersPolicy.disabled = FileTransfersPolicy('disabled') -FileTransfersPolicy.enabled = FileTransfersPolicy('enabled') -FileTransfersPolicy.other = FileTransfersPolicy('other') +FileTransfersPolicy.disabled = FileTransfersPolicy("disabled") +FileTransfersPolicy.enabled = FileTransfersPolicy("enabled") +FileTransfersPolicy.other = FileTransfersPolicy("other") FileTransfersPolicyChangedDetails.new_value.validator = FileTransfersPolicy_validator FileTransfersPolicyChangedDetails.previous_value.validator = FileTransfersPolicy_validator -FileTransfersPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +FileTransfersPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) FileTransfersPolicyChangedDetails._all_fields_ = [ - ('new_value', FileTransfersPolicyChangedDetails.new_value.validator), - ('previous_value', FileTransfersPolicyChangedDetails.previous_value.validator), + ("new_value", FileTransfersPolicyChangedDetails.new_value.validator), + ("previous_value", FileTransfersPolicyChangedDetails.previous_value.validator), ] FileTransfersPolicyChangedType.description.validator = bv.String() -FileTransfersPolicyChangedType._all_field_names_ = set(['description']) -FileTransfersPolicyChangedType._all_fields_ = [('description', FileTransfersPolicyChangedType.description.validator)] +FileTransfersPolicyChangedType._all_field_names_ = set(["description"]) +FileTransfersPolicyChangedType._all_fields_ = [ + ("description", FileTransfersPolicyChangedType.description.validator) +] FileTransfersTransferDeleteDetails.file_transfer_id.validator = bv.String() -FileTransfersTransferDeleteDetails._all_field_names_ = set(['file_transfer_id']) -FileTransfersTransferDeleteDetails._all_fields_ = [('file_transfer_id', FileTransfersTransferDeleteDetails.file_transfer_id.validator)] +FileTransfersTransferDeleteDetails._all_field_names_ = set(["file_transfer_id"]) +FileTransfersTransferDeleteDetails._all_fields_ = [ + ("file_transfer_id", FileTransfersTransferDeleteDetails.file_transfer_id.validator) +] FileTransfersTransferDeleteType.description.validator = bv.String() -FileTransfersTransferDeleteType._all_field_names_ = set(['description']) -FileTransfersTransferDeleteType._all_fields_ = [('description', FileTransfersTransferDeleteType.description.validator)] +FileTransfersTransferDeleteType._all_field_names_ = set(["description"]) +FileTransfersTransferDeleteType._all_fields_ = [ + ("description", FileTransfersTransferDeleteType.description.validator) +] FileTransfersTransferDownloadDetails.file_transfer_id.validator = bv.String() -FileTransfersTransferDownloadDetails._all_field_names_ = set(['file_transfer_id']) -FileTransfersTransferDownloadDetails._all_fields_ = [('file_transfer_id', FileTransfersTransferDownloadDetails.file_transfer_id.validator)] +FileTransfersTransferDownloadDetails._all_field_names_ = set(["file_transfer_id"]) +FileTransfersTransferDownloadDetails._all_fields_ = [ + ( + "file_transfer_id", + FileTransfersTransferDownloadDetails.file_transfer_id.validator, + ) +] FileTransfersTransferDownloadType.description.validator = bv.String() -FileTransfersTransferDownloadType._all_field_names_ = set(['description']) -FileTransfersTransferDownloadType._all_fields_ = [('description', FileTransfersTransferDownloadType.description.validator)] +FileTransfersTransferDownloadType._all_field_names_ = set(["description"]) +FileTransfersTransferDownloadType._all_fields_ = [ + ("description", FileTransfersTransferDownloadType.description.validator) +] FileTransfersTransferSendDetails.file_transfer_id.validator = bv.String() -FileTransfersTransferSendDetails._all_field_names_ = set(['file_transfer_id']) -FileTransfersTransferSendDetails._all_fields_ = [('file_transfer_id', FileTransfersTransferSendDetails.file_transfer_id.validator)] +FileTransfersTransferSendDetails._all_field_names_ = set(["file_transfer_id"]) +FileTransfersTransferSendDetails._all_fields_ = [ + ("file_transfer_id", FileTransfersTransferSendDetails.file_transfer_id.validator) +] FileTransfersTransferSendType.description.validator = bv.String() -FileTransfersTransferSendType._all_field_names_ = set(['description']) -FileTransfersTransferSendType._all_fields_ = [('description', FileTransfersTransferSendType.description.validator)] +FileTransfersTransferSendType._all_field_names_ = set(["description"]) +FileTransfersTransferSendType._all_fields_ = [ + ("description", FileTransfersTransferSendType.description.validator) +] FileTransfersTransferViewDetails.file_transfer_id.validator = bv.String() -FileTransfersTransferViewDetails._all_field_names_ = set(['file_transfer_id']) -FileTransfersTransferViewDetails._all_fields_ = [('file_transfer_id', FileTransfersTransferViewDetails.file_transfer_id.validator)] +FileTransfersTransferViewDetails._all_field_names_ = set(["file_transfer_id"]) +FileTransfersTransferViewDetails._all_fields_ = [ + ("file_transfer_id", FileTransfersTransferViewDetails.file_transfer_id.validator) +] FileTransfersTransferViewType.description.validator = bv.String() -FileTransfersTransferViewType._all_field_names_ = set(['description']) -FileTransfersTransferViewType._all_fields_ = [('description', FileTransfersTransferViewType.description.validator)] +FileTransfersTransferViewType._all_field_names_ = set(["description"]) +FileTransfersTransferViewType._all_fields_ = [ + ("description", FileTransfersTransferViewType.description.validator) +] FileUnlikeCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileUnlikeCommentDetails._all_field_names_ = set(['comment_text']) -FileUnlikeCommentDetails._all_fields_ = [('comment_text', FileUnlikeCommentDetails.comment_text.validator)] +FileUnlikeCommentDetails._all_field_names_ = set(["comment_text"]) +FileUnlikeCommentDetails._all_fields_ = [ + ("comment_text", FileUnlikeCommentDetails.comment_text.validator) +] FileUnlikeCommentType.description.validator = bv.String() -FileUnlikeCommentType._all_field_names_ = set(['description']) -FileUnlikeCommentType._all_fields_ = [('description', FileUnlikeCommentType.description.validator)] +FileUnlikeCommentType._all_field_names_ = set(["description"]) +FileUnlikeCommentType._all_fields_ = [("description", FileUnlikeCommentType.description.validator)] FileUnresolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileUnresolveCommentDetails._all_field_names_ = set(['comment_text']) -FileUnresolveCommentDetails._all_fields_ = [('comment_text', FileUnresolveCommentDetails.comment_text.validator)] +FileUnresolveCommentDetails._all_field_names_ = set(["comment_text"]) +FileUnresolveCommentDetails._all_fields_ = [ + ("comment_text", FileUnresolveCommentDetails.comment_text.validator) +] FileUnresolveCommentType.description.validator = bv.String() -FileUnresolveCommentType._all_field_names_ = set(['description']) -FileUnresolveCommentType._all_fields_ = [('description', FileUnresolveCommentType.description.validator)] +FileUnresolveCommentType._all_field_names_ = set(["description"]) +FileUnresolveCommentType._all_fields_ = [ + ("description", FileUnresolveCommentType.description.validator) +] FlexibleFileNamesPolicy._off_validator = bv.Void() FlexibleFileNamesPolicy._off_default_validator = bv.Void() @@ -101833,123 +108021,171 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FlexibleFileNamesPolicy._required_default_validator = bv.Void() FlexibleFileNamesPolicy._other_validator = bv.Void() FlexibleFileNamesPolicy._tagmap = { - 'off': FlexibleFileNamesPolicy._off_validator, - 'off_default': FlexibleFileNamesPolicy._off_default_validator, - 'optional': FlexibleFileNamesPolicy._optional_validator, - 'optional_default': FlexibleFileNamesPolicy._optional_default_validator, - 'required': FlexibleFileNamesPolicy._required_validator, - 'required_default': FlexibleFileNamesPolicy._required_default_validator, - 'other': FlexibleFileNamesPolicy._other_validator, + "off": FlexibleFileNamesPolicy._off_validator, + "off_default": FlexibleFileNamesPolicy._off_default_validator, + "optional": FlexibleFileNamesPolicy._optional_validator, + "optional_default": FlexibleFileNamesPolicy._optional_default_validator, + "required": FlexibleFileNamesPolicy._required_validator, + "required_default": FlexibleFileNamesPolicy._required_default_validator, + "other": FlexibleFileNamesPolicy._other_validator, } -FlexibleFileNamesPolicy.off = FlexibleFileNamesPolicy('off') -FlexibleFileNamesPolicy.off_default = FlexibleFileNamesPolicy('off_default') -FlexibleFileNamesPolicy.optional = FlexibleFileNamesPolicy('optional') -FlexibleFileNamesPolicy.optional_default = FlexibleFileNamesPolicy('optional_default') -FlexibleFileNamesPolicy.required = FlexibleFileNamesPolicy('required') -FlexibleFileNamesPolicy.required_default = FlexibleFileNamesPolicy('required_default') -FlexibleFileNamesPolicy.other = FlexibleFileNamesPolicy('other') +FlexibleFileNamesPolicy.off = FlexibleFileNamesPolicy("off") +FlexibleFileNamesPolicy.off_default = FlexibleFileNamesPolicy("off_default") +FlexibleFileNamesPolicy.optional = FlexibleFileNamesPolicy("optional") +FlexibleFileNamesPolicy.optional_default = FlexibleFileNamesPolicy("optional_default") +FlexibleFileNamesPolicy.required = FlexibleFileNamesPolicy("required") +FlexibleFileNamesPolicy.required_default = FlexibleFileNamesPolicy("required_default") +FlexibleFileNamesPolicy.other = FlexibleFileNamesPolicy("other") FlexibleFileNamesPolicyChangedDetails.new_value.validator = FlexibleFileNamesPolicy_validator -FlexibleFileNamesPolicyChangedDetails.previous_value.validator = bv.Nullable(FlexibleFileNamesPolicy_validator) -FlexibleFileNamesPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +FlexibleFileNamesPolicyChangedDetails.previous_value.validator = bv.Nullable( + FlexibleFileNamesPolicy_validator +) +FlexibleFileNamesPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) FlexibleFileNamesPolicyChangedDetails._all_fields_ = [ - ('new_value', FlexibleFileNamesPolicyChangedDetails.new_value.validator), - ('previous_value', FlexibleFileNamesPolicyChangedDetails.previous_value.validator), + ("new_value", FlexibleFileNamesPolicyChangedDetails.new_value.validator), + ("previous_value", FlexibleFileNamesPolicyChangedDetails.previous_value.validator), ] FlexibleFileNamesPolicyChangedType.description.validator = bv.String() -FlexibleFileNamesPolicyChangedType._all_field_names_ = set(['description']) -FlexibleFileNamesPolicyChangedType._all_fields_ = [('description', FlexibleFileNamesPolicyChangedType.description.validator)] +FlexibleFileNamesPolicyChangedType._all_field_names_ = set(["description"]) +FlexibleFileNamesPolicyChangedType._all_fields_ = [ + ("description", FlexibleFileNamesPolicyChangedType.description.validator) +] FolderLinkRestrictionPolicy._disabled_validator = bv.Void() FolderLinkRestrictionPolicy._enabled_validator = bv.Void() FolderLinkRestrictionPolicy._other_validator = bv.Void() FolderLinkRestrictionPolicy._tagmap = { - 'disabled': FolderLinkRestrictionPolicy._disabled_validator, - 'enabled': FolderLinkRestrictionPolicy._enabled_validator, - 'other': FolderLinkRestrictionPolicy._other_validator, + "disabled": FolderLinkRestrictionPolicy._disabled_validator, + "enabled": FolderLinkRestrictionPolicy._enabled_validator, + "other": FolderLinkRestrictionPolicy._other_validator, } -FolderLinkRestrictionPolicy.disabled = FolderLinkRestrictionPolicy('disabled') -FolderLinkRestrictionPolicy.enabled = FolderLinkRestrictionPolicy('enabled') -FolderLinkRestrictionPolicy.other = FolderLinkRestrictionPolicy('other') +FolderLinkRestrictionPolicy.disabled = FolderLinkRestrictionPolicy("disabled") +FolderLinkRestrictionPolicy.enabled = FolderLinkRestrictionPolicy("enabled") +FolderLinkRestrictionPolicy.other = FolderLinkRestrictionPolicy("other") -FolderLinkRestrictionPolicyChangedDetails.new_value.validator = FolderLinkRestrictionPolicy_validator -FolderLinkRestrictionPolicyChangedDetails.previous_value.validator = FolderLinkRestrictionPolicy_validator -FolderLinkRestrictionPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +FolderLinkRestrictionPolicyChangedDetails.new_value.validator = ( + FolderLinkRestrictionPolicy_validator +) +FolderLinkRestrictionPolicyChangedDetails.previous_value.validator = ( + FolderLinkRestrictionPolicy_validator +) +FolderLinkRestrictionPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) FolderLinkRestrictionPolicyChangedDetails._all_fields_ = [ - ('new_value', FolderLinkRestrictionPolicyChangedDetails.new_value.validator), - ('previous_value', FolderLinkRestrictionPolicyChangedDetails.previous_value.validator), + ("new_value", FolderLinkRestrictionPolicyChangedDetails.new_value.validator), + ( + "previous_value", + FolderLinkRestrictionPolicyChangedDetails.previous_value.validator, + ), ] FolderLinkRestrictionPolicyChangedType.description.validator = bv.String() -FolderLinkRestrictionPolicyChangedType._all_field_names_ = set(['description']) -FolderLinkRestrictionPolicyChangedType._all_fields_ = [('description', FolderLinkRestrictionPolicyChangedType.description.validator)] +FolderLinkRestrictionPolicyChangedType._all_field_names_ = set(["description"]) +FolderLinkRestrictionPolicyChangedType._all_fields_ = [ + ("description", FolderLinkRestrictionPolicyChangedType.description.validator) +] FolderLogInfo.file_count.validator = bv.Nullable(bv.UInt64()) -FolderLogInfo._all_field_names_ = FileOrFolderLogInfo._all_field_names_.union(set(['file_count'])) -FolderLogInfo._all_fields_ = FileOrFolderLogInfo._all_fields_ + [('file_count', FolderLogInfo.file_count.validator)] +FolderLogInfo._all_field_names_ = FileOrFolderLogInfo._all_field_names_.union(set(["file_count"])) +FolderLogInfo._all_fields_ = FileOrFolderLogInfo._all_fields_ + [ + ("file_count", FolderLogInfo.file_count.validator) +] FolderOverviewDescriptionChangedDetails.folder_overview_location_asset.validator = bv.UInt64() -FolderOverviewDescriptionChangedDetails._all_field_names_ = set(['folder_overview_location_asset']) -FolderOverviewDescriptionChangedDetails._all_fields_ = [('folder_overview_location_asset', FolderOverviewDescriptionChangedDetails.folder_overview_location_asset.validator)] +FolderOverviewDescriptionChangedDetails._all_field_names_ = set(["folder_overview_location_asset"]) +FolderOverviewDescriptionChangedDetails._all_fields_ = [ + ( + "folder_overview_location_asset", + FolderOverviewDescriptionChangedDetails.folder_overview_location_asset.validator, + ) +] FolderOverviewDescriptionChangedType.description.validator = bv.String() -FolderOverviewDescriptionChangedType._all_field_names_ = set(['description']) -FolderOverviewDescriptionChangedType._all_fields_ = [('description', FolderOverviewDescriptionChangedType.description.validator)] +FolderOverviewDescriptionChangedType._all_field_names_ = set(["description"]) +FolderOverviewDescriptionChangedType._all_fields_ = [ + ("description", FolderOverviewDescriptionChangedType.description.validator) +] FolderOverviewItemPinnedDetails.folder_overview_location_asset.validator = bv.UInt64() FolderOverviewItemPinnedDetails.pinned_items_asset_indices.validator = bv.List(bv.UInt64()) -FolderOverviewItemPinnedDetails._all_field_names_ = set([ - 'folder_overview_location_asset', - 'pinned_items_asset_indices', -]) +FolderOverviewItemPinnedDetails._all_field_names_ = set( + [ + "folder_overview_location_asset", + "pinned_items_asset_indices", + ] +) FolderOverviewItemPinnedDetails._all_fields_ = [ - ('folder_overview_location_asset', FolderOverviewItemPinnedDetails.folder_overview_location_asset.validator), - ('pinned_items_asset_indices', FolderOverviewItemPinnedDetails.pinned_items_asset_indices.validator), + ( + "folder_overview_location_asset", + FolderOverviewItemPinnedDetails.folder_overview_location_asset.validator, + ), + ( + "pinned_items_asset_indices", + FolderOverviewItemPinnedDetails.pinned_items_asset_indices.validator, + ), ] FolderOverviewItemPinnedType.description.validator = bv.String() -FolderOverviewItemPinnedType._all_field_names_ = set(['description']) -FolderOverviewItemPinnedType._all_fields_ = [('description', FolderOverviewItemPinnedType.description.validator)] +FolderOverviewItemPinnedType._all_field_names_ = set(["description"]) +FolderOverviewItemPinnedType._all_fields_ = [ + ("description", FolderOverviewItemPinnedType.description.validator) +] FolderOverviewItemUnpinnedDetails.folder_overview_location_asset.validator = bv.UInt64() FolderOverviewItemUnpinnedDetails.pinned_items_asset_indices.validator = bv.List(bv.UInt64()) -FolderOverviewItemUnpinnedDetails._all_field_names_ = set([ - 'folder_overview_location_asset', - 'pinned_items_asset_indices', -]) +FolderOverviewItemUnpinnedDetails._all_field_names_ = set( + [ + "folder_overview_location_asset", + "pinned_items_asset_indices", + ] +) FolderOverviewItemUnpinnedDetails._all_fields_ = [ - ('folder_overview_location_asset', FolderOverviewItemUnpinnedDetails.folder_overview_location_asset.validator), - ('pinned_items_asset_indices', FolderOverviewItemUnpinnedDetails.pinned_items_asset_indices.validator), + ( + "folder_overview_location_asset", + FolderOverviewItemUnpinnedDetails.folder_overview_location_asset.validator, + ), + ( + "pinned_items_asset_indices", + FolderOverviewItemUnpinnedDetails.pinned_items_asset_indices.validator, + ), ] FolderOverviewItemUnpinnedType.description.validator = bv.String() -FolderOverviewItemUnpinnedType._all_field_names_ = set(['description']) -FolderOverviewItemUnpinnedType._all_fields_ = [('description', FolderOverviewItemUnpinnedType.description.validator)] +FolderOverviewItemUnpinnedType._all_field_names_ = set(["description"]) +FolderOverviewItemUnpinnedType._all_fields_ = [ + ("description", FolderOverviewItemUnpinnedType.description.validator) +] GeoLocationLogInfo.city.validator = bv.Nullable(bv.String()) GeoLocationLogInfo.region.validator = bv.Nullable(bv.String()) GeoLocationLogInfo.country.validator = bv.Nullable(bv.String()) GeoLocationLogInfo.ip_address.validator = IpAddress_validator -GeoLocationLogInfo._all_field_names_ = set([ - 'city', - 'region', - 'country', - 'ip_address', -]) +GeoLocationLogInfo._all_field_names_ = set( + [ + "city", + "region", + "country", + "ip_address", + ] +) GeoLocationLogInfo._all_fields_ = [ - ('city', GeoLocationLogInfo.city.validator), - ('region', GeoLocationLogInfo.region.validator), - ('country', GeoLocationLogInfo.country.validator), - ('ip_address', GeoLocationLogInfo.ip_address.validator), + ("city", GeoLocationLogInfo.city.validator), + ("region", GeoLocationLogInfo.region.validator), + ("country", GeoLocationLogInfo.country.validator), + ("ip_address", GeoLocationLogInfo.ip_address.validator), ] GetTeamEventsArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) @@ -101957,202 +108193,248 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetTeamEventsArg.time.validator = bv.Nullable(team_common.TimeRange_validator) GetTeamEventsArg.category.validator = bv.Nullable(EventCategory_validator) GetTeamEventsArg.event_type.validator = bv.Nullable(EventTypeArg_validator) -GetTeamEventsArg._all_field_names_ = set([ - 'limit', - 'account_id', - 'time', - 'category', - 'event_type', -]) +GetTeamEventsArg._all_field_names_ = set( + [ + "limit", + "account_id", + "time", + "category", + "event_type", + ] +) GetTeamEventsArg._all_fields_ = [ - ('limit', GetTeamEventsArg.limit.validator), - ('account_id', GetTeamEventsArg.account_id.validator), - ('time', GetTeamEventsArg.time.validator), - ('category', GetTeamEventsArg.category.validator), - ('event_type', GetTeamEventsArg.event_type.validator), + ("limit", GetTeamEventsArg.limit.validator), + ("account_id", GetTeamEventsArg.account_id.validator), + ("time", GetTeamEventsArg.time.validator), + ("category", GetTeamEventsArg.category.validator), + ("event_type", GetTeamEventsArg.event_type.validator), ] GetTeamEventsContinueArg.cursor.validator = bv.String() -GetTeamEventsContinueArg._all_field_names_ = set(['cursor']) -GetTeamEventsContinueArg._all_fields_ = [('cursor', GetTeamEventsContinueArg.cursor.validator)] +GetTeamEventsContinueArg._all_field_names_ = set(["cursor"]) +GetTeamEventsContinueArg._all_fields_ = [("cursor", GetTeamEventsContinueArg.cursor.validator)] GetTeamEventsContinueError._bad_cursor_validator = bv.Void() GetTeamEventsContinueError._reset_validator = common.DropboxTimestamp_validator GetTeamEventsContinueError._other_validator = bv.Void() GetTeamEventsContinueError._tagmap = { - 'bad_cursor': GetTeamEventsContinueError._bad_cursor_validator, - 'reset': GetTeamEventsContinueError._reset_validator, - 'other': GetTeamEventsContinueError._other_validator, + "bad_cursor": GetTeamEventsContinueError._bad_cursor_validator, + "reset": GetTeamEventsContinueError._reset_validator, + "other": GetTeamEventsContinueError._other_validator, } -GetTeamEventsContinueError.bad_cursor = GetTeamEventsContinueError('bad_cursor') -GetTeamEventsContinueError.other = GetTeamEventsContinueError('other') +GetTeamEventsContinueError.bad_cursor = GetTeamEventsContinueError("bad_cursor") +GetTeamEventsContinueError.other = GetTeamEventsContinueError("other") GetTeamEventsError._account_id_not_found_validator = bv.Void() GetTeamEventsError._invalid_time_range_validator = bv.Void() GetTeamEventsError._invalid_filters_validator = bv.Void() GetTeamEventsError._other_validator = bv.Void() GetTeamEventsError._tagmap = { - 'account_id_not_found': GetTeamEventsError._account_id_not_found_validator, - 'invalid_time_range': GetTeamEventsError._invalid_time_range_validator, - 'invalid_filters': GetTeamEventsError._invalid_filters_validator, - 'other': GetTeamEventsError._other_validator, + "account_id_not_found": GetTeamEventsError._account_id_not_found_validator, + "invalid_time_range": GetTeamEventsError._invalid_time_range_validator, + "invalid_filters": GetTeamEventsError._invalid_filters_validator, + "other": GetTeamEventsError._other_validator, } -GetTeamEventsError.account_id_not_found = GetTeamEventsError('account_id_not_found') -GetTeamEventsError.invalid_time_range = GetTeamEventsError('invalid_time_range') -GetTeamEventsError.invalid_filters = GetTeamEventsError('invalid_filters') -GetTeamEventsError.other = GetTeamEventsError('other') +GetTeamEventsError.account_id_not_found = GetTeamEventsError("account_id_not_found") +GetTeamEventsError.invalid_time_range = GetTeamEventsError("invalid_time_range") +GetTeamEventsError.invalid_filters = GetTeamEventsError("invalid_filters") +GetTeamEventsError.other = GetTeamEventsError("other") GetTeamEventsResult.events.validator = bv.List(TeamEvent_validator) GetTeamEventsResult.cursor.validator = bv.String() GetTeamEventsResult.has_more.validator = bv.Boolean() -GetTeamEventsResult._all_field_names_ = set([ - 'events', - 'cursor', - 'has_more', -]) +GetTeamEventsResult._all_field_names_ = set( + [ + "events", + "cursor", + "has_more", + ] +) GetTeamEventsResult._all_fields_ = [ - ('events', GetTeamEventsResult.events.validator), - ('cursor', GetTeamEventsResult.cursor.validator), - ('has_more', GetTeamEventsResult.has_more.validator), + ("events", GetTeamEventsResult.events.validator), + ("cursor", GetTeamEventsResult.cursor.validator), + ("has_more", GetTeamEventsResult.has_more.validator), ] GoogleSsoChangePolicyDetails.new_value.validator = GoogleSsoPolicy_validator GoogleSsoChangePolicyDetails.previous_value.validator = bv.Nullable(GoogleSsoPolicy_validator) -GoogleSsoChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +GoogleSsoChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) GoogleSsoChangePolicyDetails._all_fields_ = [ - ('new_value', GoogleSsoChangePolicyDetails.new_value.validator), - ('previous_value', GoogleSsoChangePolicyDetails.previous_value.validator), + ("new_value", GoogleSsoChangePolicyDetails.new_value.validator), + ("previous_value", GoogleSsoChangePolicyDetails.previous_value.validator), ] GoogleSsoChangePolicyType.description.validator = bv.String() -GoogleSsoChangePolicyType._all_field_names_ = set(['description']) -GoogleSsoChangePolicyType._all_fields_ = [('description', GoogleSsoChangePolicyType.description.validator)] +GoogleSsoChangePolicyType._all_field_names_ = set(["description"]) +GoogleSsoChangePolicyType._all_fields_ = [ + ("description", GoogleSsoChangePolicyType.description.validator) +] GoogleSsoPolicy._disabled_validator = bv.Void() GoogleSsoPolicy._enabled_validator = bv.Void() GoogleSsoPolicy._other_validator = bv.Void() GoogleSsoPolicy._tagmap = { - 'disabled': GoogleSsoPolicy._disabled_validator, - 'enabled': GoogleSsoPolicy._enabled_validator, - 'other': GoogleSsoPolicy._other_validator, + "disabled": GoogleSsoPolicy._disabled_validator, + "enabled": GoogleSsoPolicy._enabled_validator, + "other": GoogleSsoPolicy._other_validator, } -GoogleSsoPolicy.disabled = GoogleSsoPolicy('disabled') -GoogleSsoPolicy.enabled = GoogleSsoPolicy('enabled') -GoogleSsoPolicy.other = GoogleSsoPolicy('other') +GoogleSsoPolicy.disabled = GoogleSsoPolicy("disabled") +GoogleSsoPolicy.enabled = GoogleSsoPolicy("enabled") +GoogleSsoPolicy.other = GoogleSsoPolicy("other") GovernancePolicyAddFolderFailedDetails.governance_policy_id.validator = bv.String() GovernancePolicyAddFolderFailedDetails.name.validator = bv.String() GovernancePolicyAddFolderFailedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyAddFolderFailedDetails.folder.validator = bv.String() GovernancePolicyAddFolderFailedDetails.reason.validator = bv.Nullable(bv.String()) -GovernancePolicyAddFolderFailedDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'folder', - 'reason', -]) +GovernancePolicyAddFolderFailedDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "folder", + "reason", + ] +) GovernancePolicyAddFolderFailedDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyAddFolderFailedDetails.governance_policy_id.validator), - ('name', GovernancePolicyAddFolderFailedDetails.name.validator), - ('policy_type', GovernancePolicyAddFolderFailedDetails.policy_type.validator), - ('folder', GovernancePolicyAddFolderFailedDetails.folder.validator), - ('reason', GovernancePolicyAddFolderFailedDetails.reason.validator), + ( + "governance_policy_id", + GovernancePolicyAddFolderFailedDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyAddFolderFailedDetails.name.validator), + ("policy_type", GovernancePolicyAddFolderFailedDetails.policy_type.validator), + ("folder", GovernancePolicyAddFolderFailedDetails.folder.validator), + ("reason", GovernancePolicyAddFolderFailedDetails.reason.validator), ] GovernancePolicyAddFolderFailedType.description.validator = bv.String() -GovernancePolicyAddFolderFailedType._all_field_names_ = set(['description']) -GovernancePolicyAddFolderFailedType._all_fields_ = [('description', GovernancePolicyAddFolderFailedType.description.validator)] +GovernancePolicyAddFolderFailedType._all_field_names_ = set(["description"]) +GovernancePolicyAddFolderFailedType._all_fields_ = [ + ("description", GovernancePolicyAddFolderFailedType.description.validator) +] GovernancePolicyAddFoldersDetails.governance_policy_id.validator = bv.String() GovernancePolicyAddFoldersDetails.name.validator = bv.String() GovernancePolicyAddFoldersDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyAddFoldersDetails.folders.validator = bv.Nullable(bv.List(bv.String())) -GovernancePolicyAddFoldersDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'folders', -]) +GovernancePolicyAddFoldersDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "folders", + ] +) GovernancePolicyAddFoldersDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyAddFoldersDetails.governance_policy_id.validator), - ('name', GovernancePolicyAddFoldersDetails.name.validator), - ('policy_type', GovernancePolicyAddFoldersDetails.policy_type.validator), - ('folders', GovernancePolicyAddFoldersDetails.folders.validator), + ( + "governance_policy_id", + GovernancePolicyAddFoldersDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyAddFoldersDetails.name.validator), + ("policy_type", GovernancePolicyAddFoldersDetails.policy_type.validator), + ("folders", GovernancePolicyAddFoldersDetails.folders.validator), ] GovernancePolicyAddFoldersType.description.validator = bv.String() -GovernancePolicyAddFoldersType._all_field_names_ = set(['description']) -GovernancePolicyAddFoldersType._all_fields_ = [('description', GovernancePolicyAddFoldersType.description.validator)] +GovernancePolicyAddFoldersType._all_field_names_ = set(["description"]) +GovernancePolicyAddFoldersType._all_fields_ = [ + ("description", GovernancePolicyAddFoldersType.description.validator) +] GovernancePolicyContentDisposedDetails.governance_policy_id.validator = bv.String() GovernancePolicyContentDisposedDetails.name.validator = bv.String() GovernancePolicyContentDisposedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyContentDisposedDetails.disposition_type.validator = DispositionActionType_validator -GovernancePolicyContentDisposedDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'disposition_type', -]) +GovernancePolicyContentDisposedDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "disposition_type", + ] +) GovernancePolicyContentDisposedDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyContentDisposedDetails.governance_policy_id.validator), - ('name', GovernancePolicyContentDisposedDetails.name.validator), - ('policy_type', GovernancePolicyContentDisposedDetails.policy_type.validator), - ('disposition_type', GovernancePolicyContentDisposedDetails.disposition_type.validator), + ( + "governance_policy_id", + GovernancePolicyContentDisposedDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyContentDisposedDetails.name.validator), + ("policy_type", GovernancePolicyContentDisposedDetails.policy_type.validator), + ( + "disposition_type", + GovernancePolicyContentDisposedDetails.disposition_type.validator, + ), ] GovernancePolicyContentDisposedType.description.validator = bv.String() -GovernancePolicyContentDisposedType._all_field_names_ = set(['description']) -GovernancePolicyContentDisposedType._all_fields_ = [('description', GovernancePolicyContentDisposedType.description.validator)] +GovernancePolicyContentDisposedType._all_field_names_ = set(["description"]) +GovernancePolicyContentDisposedType._all_fields_ = [ + ("description", GovernancePolicyContentDisposedType.description.validator) +] GovernancePolicyCreateDetails.governance_policy_id.validator = bv.String() GovernancePolicyCreateDetails.name.validator = bv.String() GovernancePolicyCreateDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyCreateDetails.duration.validator = DurationLogInfo_validator GovernancePolicyCreateDetails.folders.validator = bv.Nullable(bv.List(bv.String())) -GovernancePolicyCreateDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'duration', - 'folders', -]) +GovernancePolicyCreateDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "duration", + "folders", + ] +) GovernancePolicyCreateDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyCreateDetails.governance_policy_id.validator), - ('name', GovernancePolicyCreateDetails.name.validator), - ('policy_type', GovernancePolicyCreateDetails.policy_type.validator), - ('duration', GovernancePolicyCreateDetails.duration.validator), - ('folders', GovernancePolicyCreateDetails.folders.validator), + ( + "governance_policy_id", + GovernancePolicyCreateDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyCreateDetails.name.validator), + ("policy_type", GovernancePolicyCreateDetails.policy_type.validator), + ("duration", GovernancePolicyCreateDetails.duration.validator), + ("folders", GovernancePolicyCreateDetails.folders.validator), ] GovernancePolicyCreateType.description.validator = bv.String() -GovernancePolicyCreateType._all_field_names_ = set(['description']) -GovernancePolicyCreateType._all_fields_ = [('description', GovernancePolicyCreateType.description.validator)] +GovernancePolicyCreateType._all_field_names_ = set(["description"]) +GovernancePolicyCreateType._all_fields_ = [ + ("description", GovernancePolicyCreateType.description.validator) +] GovernancePolicyDeleteDetails.governance_policy_id.validator = bv.String() GovernancePolicyDeleteDetails.name.validator = bv.String() GovernancePolicyDeleteDetails.policy_type.validator = bv.Nullable(PolicyType_validator) -GovernancePolicyDeleteDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', -]) +GovernancePolicyDeleteDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + ] +) GovernancePolicyDeleteDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyDeleteDetails.governance_policy_id.validator), - ('name', GovernancePolicyDeleteDetails.name.validator), - ('policy_type', GovernancePolicyDeleteDetails.policy_type.validator), + ( + "governance_policy_id", + GovernancePolicyDeleteDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyDeleteDetails.name.validator), + ("policy_type", GovernancePolicyDeleteDetails.policy_type.validator), ] GovernancePolicyDeleteType.description.validator = bv.String() -GovernancePolicyDeleteType._all_field_names_ = set(['description']) -GovernancePolicyDeleteType._all_fields_ = [('description', GovernancePolicyDeleteType.description.validator)] +GovernancePolicyDeleteType._all_field_names_ = set(["description"]) +GovernancePolicyDeleteType._all_fields_ = [ + ("description", GovernancePolicyDeleteType.description.validator) +] GovernancePolicyEditDetailsDetails.governance_policy_id.validator = bv.String() GovernancePolicyEditDetailsDetails.name.validator = bv.String() @@ -102160,351 +108442,461 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GovernancePolicyEditDetailsDetails.attribute.validator = bv.String() GovernancePolicyEditDetailsDetails.previous_value.validator = bv.String() GovernancePolicyEditDetailsDetails.new_value.validator = bv.String() -GovernancePolicyEditDetailsDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'attribute', - 'previous_value', - 'new_value', -]) +GovernancePolicyEditDetailsDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "attribute", + "previous_value", + "new_value", + ] +) GovernancePolicyEditDetailsDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyEditDetailsDetails.governance_policy_id.validator), - ('name', GovernancePolicyEditDetailsDetails.name.validator), - ('policy_type', GovernancePolicyEditDetailsDetails.policy_type.validator), - ('attribute', GovernancePolicyEditDetailsDetails.attribute.validator), - ('previous_value', GovernancePolicyEditDetailsDetails.previous_value.validator), - ('new_value', GovernancePolicyEditDetailsDetails.new_value.validator), + ( + "governance_policy_id", + GovernancePolicyEditDetailsDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyEditDetailsDetails.name.validator), + ("policy_type", GovernancePolicyEditDetailsDetails.policy_type.validator), + ("attribute", GovernancePolicyEditDetailsDetails.attribute.validator), + ("previous_value", GovernancePolicyEditDetailsDetails.previous_value.validator), + ("new_value", GovernancePolicyEditDetailsDetails.new_value.validator), ] GovernancePolicyEditDetailsType.description.validator = bv.String() -GovernancePolicyEditDetailsType._all_field_names_ = set(['description']) -GovernancePolicyEditDetailsType._all_fields_ = [('description', GovernancePolicyEditDetailsType.description.validator)] +GovernancePolicyEditDetailsType._all_field_names_ = set(["description"]) +GovernancePolicyEditDetailsType._all_fields_ = [ + ("description", GovernancePolicyEditDetailsType.description.validator) +] GovernancePolicyEditDurationDetails.governance_policy_id.validator = bv.String() GovernancePolicyEditDurationDetails.name.validator = bv.String() GovernancePolicyEditDurationDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyEditDurationDetails.previous_value.validator = DurationLogInfo_validator GovernancePolicyEditDurationDetails.new_value.validator = DurationLogInfo_validator -GovernancePolicyEditDurationDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'previous_value', - 'new_value', -]) +GovernancePolicyEditDurationDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "previous_value", + "new_value", + ] +) GovernancePolicyEditDurationDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyEditDurationDetails.governance_policy_id.validator), - ('name', GovernancePolicyEditDurationDetails.name.validator), - ('policy_type', GovernancePolicyEditDurationDetails.policy_type.validator), - ('previous_value', GovernancePolicyEditDurationDetails.previous_value.validator), - ('new_value', GovernancePolicyEditDurationDetails.new_value.validator), + ( + "governance_policy_id", + GovernancePolicyEditDurationDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyEditDurationDetails.name.validator), + ("policy_type", GovernancePolicyEditDurationDetails.policy_type.validator), + ("previous_value", GovernancePolicyEditDurationDetails.previous_value.validator), + ("new_value", GovernancePolicyEditDurationDetails.new_value.validator), ] GovernancePolicyEditDurationType.description.validator = bv.String() -GovernancePolicyEditDurationType._all_field_names_ = set(['description']) -GovernancePolicyEditDurationType._all_fields_ = [('description', GovernancePolicyEditDurationType.description.validator)] +GovernancePolicyEditDurationType._all_field_names_ = set(["description"]) +GovernancePolicyEditDurationType._all_fields_ = [ + ("description", GovernancePolicyEditDurationType.description.validator) +] GovernancePolicyExportCreatedDetails.governance_policy_id.validator = bv.String() GovernancePolicyExportCreatedDetails.name.validator = bv.String() GovernancePolicyExportCreatedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyExportCreatedDetails.export_name.validator = bv.String() -GovernancePolicyExportCreatedDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'export_name', -]) +GovernancePolicyExportCreatedDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "export_name", + ] +) GovernancePolicyExportCreatedDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyExportCreatedDetails.governance_policy_id.validator), - ('name', GovernancePolicyExportCreatedDetails.name.validator), - ('policy_type', GovernancePolicyExportCreatedDetails.policy_type.validator), - ('export_name', GovernancePolicyExportCreatedDetails.export_name.validator), + ( + "governance_policy_id", + GovernancePolicyExportCreatedDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyExportCreatedDetails.name.validator), + ("policy_type", GovernancePolicyExportCreatedDetails.policy_type.validator), + ("export_name", GovernancePolicyExportCreatedDetails.export_name.validator), ] GovernancePolicyExportCreatedType.description.validator = bv.String() -GovernancePolicyExportCreatedType._all_field_names_ = set(['description']) -GovernancePolicyExportCreatedType._all_fields_ = [('description', GovernancePolicyExportCreatedType.description.validator)] +GovernancePolicyExportCreatedType._all_field_names_ = set(["description"]) +GovernancePolicyExportCreatedType._all_fields_ = [ + ("description", GovernancePolicyExportCreatedType.description.validator) +] GovernancePolicyExportRemovedDetails.governance_policy_id.validator = bv.String() GovernancePolicyExportRemovedDetails.name.validator = bv.String() GovernancePolicyExportRemovedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyExportRemovedDetails.export_name.validator = bv.String() -GovernancePolicyExportRemovedDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'export_name', -]) +GovernancePolicyExportRemovedDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "export_name", + ] +) GovernancePolicyExportRemovedDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyExportRemovedDetails.governance_policy_id.validator), - ('name', GovernancePolicyExportRemovedDetails.name.validator), - ('policy_type', GovernancePolicyExportRemovedDetails.policy_type.validator), - ('export_name', GovernancePolicyExportRemovedDetails.export_name.validator), + ( + "governance_policy_id", + GovernancePolicyExportRemovedDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyExportRemovedDetails.name.validator), + ("policy_type", GovernancePolicyExportRemovedDetails.policy_type.validator), + ("export_name", GovernancePolicyExportRemovedDetails.export_name.validator), ] GovernancePolicyExportRemovedType.description.validator = bv.String() -GovernancePolicyExportRemovedType._all_field_names_ = set(['description']) -GovernancePolicyExportRemovedType._all_fields_ = [('description', GovernancePolicyExportRemovedType.description.validator)] +GovernancePolicyExportRemovedType._all_field_names_ = set(["description"]) +GovernancePolicyExportRemovedType._all_fields_ = [ + ("description", GovernancePolicyExportRemovedType.description.validator) +] GovernancePolicyRemoveFoldersDetails.governance_policy_id.validator = bv.String() GovernancePolicyRemoveFoldersDetails.name.validator = bv.String() GovernancePolicyRemoveFoldersDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyRemoveFoldersDetails.folders.validator = bv.Nullable(bv.List(bv.String())) GovernancePolicyRemoveFoldersDetails.reason.validator = bv.Nullable(bv.String()) -GovernancePolicyRemoveFoldersDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'folders', - 'reason', -]) +GovernancePolicyRemoveFoldersDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "folders", + "reason", + ] +) GovernancePolicyRemoveFoldersDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyRemoveFoldersDetails.governance_policy_id.validator), - ('name', GovernancePolicyRemoveFoldersDetails.name.validator), - ('policy_type', GovernancePolicyRemoveFoldersDetails.policy_type.validator), - ('folders', GovernancePolicyRemoveFoldersDetails.folders.validator), - ('reason', GovernancePolicyRemoveFoldersDetails.reason.validator), + ( + "governance_policy_id", + GovernancePolicyRemoveFoldersDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyRemoveFoldersDetails.name.validator), + ("policy_type", GovernancePolicyRemoveFoldersDetails.policy_type.validator), + ("folders", GovernancePolicyRemoveFoldersDetails.folders.validator), + ("reason", GovernancePolicyRemoveFoldersDetails.reason.validator), ] GovernancePolicyRemoveFoldersType.description.validator = bv.String() -GovernancePolicyRemoveFoldersType._all_field_names_ = set(['description']) -GovernancePolicyRemoveFoldersType._all_fields_ = [('description', GovernancePolicyRemoveFoldersType.description.validator)] +GovernancePolicyRemoveFoldersType._all_field_names_ = set(["description"]) +GovernancePolicyRemoveFoldersType._all_fields_ = [ + ("description", GovernancePolicyRemoveFoldersType.description.validator) +] GovernancePolicyReportCreatedDetails.governance_policy_id.validator = bv.String() GovernancePolicyReportCreatedDetails.name.validator = bv.String() GovernancePolicyReportCreatedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) -GovernancePolicyReportCreatedDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', -]) +GovernancePolicyReportCreatedDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + ] +) GovernancePolicyReportCreatedDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyReportCreatedDetails.governance_policy_id.validator), - ('name', GovernancePolicyReportCreatedDetails.name.validator), - ('policy_type', GovernancePolicyReportCreatedDetails.policy_type.validator), + ( + "governance_policy_id", + GovernancePolicyReportCreatedDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyReportCreatedDetails.name.validator), + ("policy_type", GovernancePolicyReportCreatedDetails.policy_type.validator), ] GovernancePolicyReportCreatedType.description.validator = bv.String() -GovernancePolicyReportCreatedType._all_field_names_ = set(['description']) -GovernancePolicyReportCreatedType._all_fields_ = [('description', GovernancePolicyReportCreatedType.description.validator)] +GovernancePolicyReportCreatedType._all_field_names_ = set(["description"]) +GovernancePolicyReportCreatedType._all_fields_ = [ + ("description", GovernancePolicyReportCreatedType.description.validator) +] GovernancePolicyZipPartDownloadedDetails.governance_policy_id.validator = bv.String() GovernancePolicyZipPartDownloadedDetails.name.validator = bv.String() GovernancePolicyZipPartDownloadedDetails.policy_type.validator = bv.Nullable(PolicyType_validator) GovernancePolicyZipPartDownloadedDetails.export_name.validator = bv.String() GovernancePolicyZipPartDownloadedDetails.part.validator = bv.Nullable(bv.String()) -GovernancePolicyZipPartDownloadedDetails._all_field_names_ = set([ - 'governance_policy_id', - 'name', - 'policy_type', - 'export_name', - 'part', -]) +GovernancePolicyZipPartDownloadedDetails._all_field_names_ = set( + [ + "governance_policy_id", + "name", + "policy_type", + "export_name", + "part", + ] +) GovernancePolicyZipPartDownloadedDetails._all_fields_ = [ - ('governance_policy_id', GovernancePolicyZipPartDownloadedDetails.governance_policy_id.validator), - ('name', GovernancePolicyZipPartDownloadedDetails.name.validator), - ('policy_type', GovernancePolicyZipPartDownloadedDetails.policy_type.validator), - ('export_name', GovernancePolicyZipPartDownloadedDetails.export_name.validator), - ('part', GovernancePolicyZipPartDownloadedDetails.part.validator), + ( + "governance_policy_id", + GovernancePolicyZipPartDownloadedDetails.governance_policy_id.validator, + ), + ("name", GovernancePolicyZipPartDownloadedDetails.name.validator), + ("policy_type", GovernancePolicyZipPartDownloadedDetails.policy_type.validator), + ("export_name", GovernancePolicyZipPartDownloadedDetails.export_name.validator), + ("part", GovernancePolicyZipPartDownloadedDetails.part.validator), ] GovernancePolicyZipPartDownloadedType.description.validator = bv.String() -GovernancePolicyZipPartDownloadedType._all_field_names_ = set(['description']) -GovernancePolicyZipPartDownloadedType._all_fields_ = [('description', GovernancePolicyZipPartDownloadedType.description.validator)] +GovernancePolicyZipPartDownloadedType._all_field_names_ = set(["description"]) +GovernancePolicyZipPartDownloadedType._all_fields_ = [ + ("description", GovernancePolicyZipPartDownloadedType.description.validator) +] GroupAddExternalIdDetails.new_value.validator = team_common.GroupExternalId_validator -GroupAddExternalIdDetails._all_field_names_ = set(['new_value']) -GroupAddExternalIdDetails._all_fields_ = [('new_value', GroupAddExternalIdDetails.new_value.validator)] +GroupAddExternalIdDetails._all_field_names_ = set(["new_value"]) +GroupAddExternalIdDetails._all_fields_ = [ + ("new_value", GroupAddExternalIdDetails.new_value.validator) +] GroupAddExternalIdType.description.validator = bv.String() -GroupAddExternalIdType._all_field_names_ = set(['description']) -GroupAddExternalIdType._all_fields_ = [('description', GroupAddExternalIdType.description.validator)] +GroupAddExternalIdType._all_field_names_ = set(["description"]) +GroupAddExternalIdType._all_fields_ = [ + ("description", GroupAddExternalIdType.description.validator) +] GroupAddMemberDetails.is_group_owner.validator = bv.Boolean() -GroupAddMemberDetails._all_field_names_ = set(['is_group_owner']) -GroupAddMemberDetails._all_fields_ = [('is_group_owner', GroupAddMemberDetails.is_group_owner.validator)] +GroupAddMemberDetails._all_field_names_ = set(["is_group_owner"]) +GroupAddMemberDetails._all_fields_ = [ + ("is_group_owner", GroupAddMemberDetails.is_group_owner.validator) +] GroupAddMemberType.description.validator = bv.String() -GroupAddMemberType._all_field_names_ = set(['description']) -GroupAddMemberType._all_fields_ = [('description', GroupAddMemberType.description.validator)] +GroupAddMemberType._all_field_names_ = set(["description"]) +GroupAddMemberType._all_fields_ = [("description", GroupAddMemberType.description.validator)] GroupChangeExternalIdDetails.new_value.validator = team_common.GroupExternalId_validator GroupChangeExternalIdDetails.previous_value.validator = team_common.GroupExternalId_validator -GroupChangeExternalIdDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +GroupChangeExternalIdDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) GroupChangeExternalIdDetails._all_fields_ = [ - ('new_value', GroupChangeExternalIdDetails.new_value.validator), - ('previous_value', GroupChangeExternalIdDetails.previous_value.validator), + ("new_value", GroupChangeExternalIdDetails.new_value.validator), + ("previous_value", GroupChangeExternalIdDetails.previous_value.validator), ] GroupChangeExternalIdType.description.validator = bv.String() -GroupChangeExternalIdType._all_field_names_ = set(['description']) -GroupChangeExternalIdType._all_fields_ = [('description', GroupChangeExternalIdType.description.validator)] +GroupChangeExternalIdType._all_field_names_ = set(["description"]) +GroupChangeExternalIdType._all_fields_ = [ + ("description", GroupChangeExternalIdType.description.validator) +] GroupChangeManagementTypeDetails.new_value.validator = team_common.GroupManagementType_validator -GroupChangeManagementTypeDetails.previous_value.validator = bv.Nullable(team_common.GroupManagementType_validator) -GroupChangeManagementTypeDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +GroupChangeManagementTypeDetails.previous_value.validator = bv.Nullable( + team_common.GroupManagementType_validator +) +GroupChangeManagementTypeDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) GroupChangeManagementTypeDetails._all_fields_ = [ - ('new_value', GroupChangeManagementTypeDetails.new_value.validator), - ('previous_value', GroupChangeManagementTypeDetails.previous_value.validator), + ("new_value", GroupChangeManagementTypeDetails.new_value.validator), + ("previous_value", GroupChangeManagementTypeDetails.previous_value.validator), ] GroupChangeManagementTypeType.description.validator = bv.String() -GroupChangeManagementTypeType._all_field_names_ = set(['description']) -GroupChangeManagementTypeType._all_fields_ = [('description', GroupChangeManagementTypeType.description.validator)] +GroupChangeManagementTypeType._all_field_names_ = set(["description"]) +GroupChangeManagementTypeType._all_fields_ = [ + ("description", GroupChangeManagementTypeType.description.validator) +] GroupChangeMemberRoleDetails.is_group_owner.validator = bv.Boolean() -GroupChangeMemberRoleDetails._all_field_names_ = set(['is_group_owner']) -GroupChangeMemberRoleDetails._all_fields_ = [('is_group_owner', GroupChangeMemberRoleDetails.is_group_owner.validator)] +GroupChangeMemberRoleDetails._all_field_names_ = set(["is_group_owner"]) +GroupChangeMemberRoleDetails._all_fields_ = [ + ("is_group_owner", GroupChangeMemberRoleDetails.is_group_owner.validator) +] GroupChangeMemberRoleType.description.validator = bv.String() -GroupChangeMemberRoleType._all_field_names_ = set(['description']) -GroupChangeMemberRoleType._all_fields_ = [('description', GroupChangeMemberRoleType.description.validator)] +GroupChangeMemberRoleType._all_field_names_ = set(["description"]) +GroupChangeMemberRoleType._all_fields_ = [ + ("description", GroupChangeMemberRoleType.description.validator) +] GroupCreateDetails.is_company_managed.validator = bv.Nullable(bv.Boolean()) GroupCreateDetails.join_policy.validator = bv.Nullable(GroupJoinPolicy_validator) -GroupCreateDetails._all_field_names_ = set([ - 'is_company_managed', - 'join_policy', -]) +GroupCreateDetails._all_field_names_ = set( + [ + "is_company_managed", + "join_policy", + ] +) GroupCreateDetails._all_fields_ = [ - ('is_company_managed', GroupCreateDetails.is_company_managed.validator), - ('join_policy', GroupCreateDetails.join_policy.validator), + ("is_company_managed", GroupCreateDetails.is_company_managed.validator), + ("join_policy", GroupCreateDetails.join_policy.validator), ] GroupCreateType.description.validator = bv.String() -GroupCreateType._all_field_names_ = set(['description']) -GroupCreateType._all_fields_ = [('description', GroupCreateType.description.validator)] +GroupCreateType._all_field_names_ = set(["description"]) +GroupCreateType._all_fields_ = [("description", GroupCreateType.description.validator)] GroupDeleteDetails.is_company_managed.validator = bv.Nullable(bv.Boolean()) -GroupDeleteDetails._all_field_names_ = set(['is_company_managed']) -GroupDeleteDetails._all_fields_ = [('is_company_managed', GroupDeleteDetails.is_company_managed.validator)] +GroupDeleteDetails._all_field_names_ = set(["is_company_managed"]) +GroupDeleteDetails._all_fields_ = [ + ("is_company_managed", GroupDeleteDetails.is_company_managed.validator) +] GroupDeleteType.description.validator = bv.String() -GroupDeleteType._all_field_names_ = set(['description']) -GroupDeleteType._all_fields_ = [('description', GroupDeleteType.description.validator)] +GroupDeleteType._all_field_names_ = set(["description"]) +GroupDeleteType._all_fields_ = [("description", GroupDeleteType.description.validator)] GroupDescriptionUpdatedDetails._all_field_names_ = set([]) GroupDescriptionUpdatedDetails._all_fields_ = [] GroupDescriptionUpdatedType.description.validator = bv.String() -GroupDescriptionUpdatedType._all_field_names_ = set(['description']) -GroupDescriptionUpdatedType._all_fields_ = [('description', GroupDescriptionUpdatedType.description.validator)] - -GroupExternalSharingSettingOverrideChangedDetails.new_value.validator = ExternalSharingSetting_validator -GroupExternalSharingSettingOverrideChangedDetails.previous_value.validator = ExternalSharingSetting_validator -GroupExternalSharingSettingOverrideChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +GroupDescriptionUpdatedType._all_field_names_ = set(["description"]) +GroupDescriptionUpdatedType._all_fields_ = [ + ("description", GroupDescriptionUpdatedType.description.validator) +] + +GroupExternalSharingSettingOverrideChangedDetails.new_value.validator = ( + ExternalSharingSetting_validator +) +GroupExternalSharingSettingOverrideChangedDetails.previous_value.validator = ( + ExternalSharingSetting_validator +) +GroupExternalSharingSettingOverrideChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) GroupExternalSharingSettingOverrideChangedDetails._all_fields_ = [ - ('new_value', GroupExternalSharingSettingOverrideChangedDetails.new_value.validator), - ('previous_value', GroupExternalSharingSettingOverrideChangedDetails.previous_value.validator), + ( + "new_value", + GroupExternalSharingSettingOverrideChangedDetails.new_value.validator, + ), + ( + "previous_value", + GroupExternalSharingSettingOverrideChangedDetails.previous_value.validator, + ), ] GroupExternalSharingSettingOverrideChangedType.description.validator = bv.String() -GroupExternalSharingSettingOverrideChangedType._all_field_names_ = set(['description']) -GroupExternalSharingSettingOverrideChangedType._all_fields_ = [('description', GroupExternalSharingSettingOverrideChangedType.description.validator)] +GroupExternalSharingSettingOverrideChangedType._all_field_names_ = set(["description"]) +GroupExternalSharingSettingOverrideChangedType._all_fields_ = [ + ( + "description", + GroupExternalSharingSettingOverrideChangedType.description.validator, + ) +] GroupJoinPolicy._open_validator = bv.Void() GroupJoinPolicy._request_to_join_validator = bv.Void() GroupJoinPolicy._other_validator = bv.Void() GroupJoinPolicy._tagmap = { - 'open': GroupJoinPolicy._open_validator, - 'request_to_join': GroupJoinPolicy._request_to_join_validator, - 'other': GroupJoinPolicy._other_validator, + "open": GroupJoinPolicy._open_validator, + "request_to_join": GroupJoinPolicy._request_to_join_validator, + "other": GroupJoinPolicy._other_validator, } -GroupJoinPolicy.open = GroupJoinPolicy('open') -GroupJoinPolicy.request_to_join = GroupJoinPolicy('request_to_join') -GroupJoinPolicy.other = GroupJoinPolicy('other') +GroupJoinPolicy.open = GroupJoinPolicy("open") +GroupJoinPolicy.request_to_join = GroupJoinPolicy("request_to_join") +GroupJoinPolicy.other = GroupJoinPolicy("other") GroupJoinPolicyUpdatedDetails.is_company_managed.validator = bv.Nullable(bv.Boolean()) GroupJoinPolicyUpdatedDetails.join_policy.validator = bv.Nullable(GroupJoinPolicy_validator) -GroupJoinPolicyUpdatedDetails._all_field_names_ = set([ - 'is_company_managed', - 'join_policy', -]) +GroupJoinPolicyUpdatedDetails._all_field_names_ = set( + [ + "is_company_managed", + "join_policy", + ] +) GroupJoinPolicyUpdatedDetails._all_fields_ = [ - ('is_company_managed', GroupJoinPolicyUpdatedDetails.is_company_managed.validator), - ('join_policy', GroupJoinPolicyUpdatedDetails.join_policy.validator), + ("is_company_managed", GroupJoinPolicyUpdatedDetails.is_company_managed.validator), + ("join_policy", GroupJoinPolicyUpdatedDetails.join_policy.validator), ] GroupJoinPolicyUpdatedType.description.validator = bv.String() -GroupJoinPolicyUpdatedType._all_field_names_ = set(['description']) -GroupJoinPolicyUpdatedType._all_fields_ = [('description', GroupJoinPolicyUpdatedType.description.validator)] +GroupJoinPolicyUpdatedType._all_field_names_ = set(["description"]) +GroupJoinPolicyUpdatedType._all_fields_ = [ + ("description", GroupJoinPolicyUpdatedType.description.validator) +] GroupLogInfo.group_id.validator = bv.Nullable(team_common.GroupId_validator) GroupLogInfo.display_name.validator = bv.String() GroupLogInfo.external_id.validator = bv.Nullable(team_common.GroupExternalId_validator) -GroupLogInfo._all_field_names_ = set([ - 'group_id', - 'display_name', - 'external_id', -]) +GroupLogInfo._all_field_names_ = set( + [ + "group_id", + "display_name", + "external_id", + ] +) GroupLogInfo._all_fields_ = [ - ('group_id', GroupLogInfo.group_id.validator), - ('display_name', GroupLogInfo.display_name.validator), - ('external_id', GroupLogInfo.external_id.validator), + ("group_id", GroupLogInfo.group_id.validator), + ("display_name", GroupLogInfo.display_name.validator), + ("external_id", GroupLogInfo.external_id.validator), ] GroupMovedDetails._all_field_names_ = set([]) GroupMovedDetails._all_fields_ = [] GroupMovedType.description.validator = bv.String() -GroupMovedType._all_field_names_ = set(['description']) -GroupMovedType._all_fields_ = [('description', GroupMovedType.description.validator)] +GroupMovedType._all_field_names_ = set(["description"]) +GroupMovedType._all_fields_ = [("description", GroupMovedType.description.validator)] GroupRemoveExternalIdDetails.previous_value.validator = team_common.GroupExternalId_validator -GroupRemoveExternalIdDetails._all_field_names_ = set(['previous_value']) -GroupRemoveExternalIdDetails._all_fields_ = [('previous_value', GroupRemoveExternalIdDetails.previous_value.validator)] +GroupRemoveExternalIdDetails._all_field_names_ = set(["previous_value"]) +GroupRemoveExternalIdDetails._all_fields_ = [ + ("previous_value", GroupRemoveExternalIdDetails.previous_value.validator) +] GroupRemoveExternalIdType.description.validator = bv.String() -GroupRemoveExternalIdType._all_field_names_ = set(['description']) -GroupRemoveExternalIdType._all_fields_ = [('description', GroupRemoveExternalIdType.description.validator)] +GroupRemoveExternalIdType._all_field_names_ = set(["description"]) +GroupRemoveExternalIdType._all_fields_ = [ + ("description", GroupRemoveExternalIdType.description.validator) +] GroupRemoveMemberDetails._all_field_names_ = set([]) GroupRemoveMemberDetails._all_fields_ = [] GroupRemoveMemberType.description.validator = bv.String() -GroupRemoveMemberType._all_field_names_ = set(['description']) -GroupRemoveMemberType._all_fields_ = [('description', GroupRemoveMemberType.description.validator)] +GroupRemoveMemberType._all_field_names_ = set(["description"]) +GroupRemoveMemberType._all_fields_ = [("description", GroupRemoveMemberType.description.validator)] GroupRenameDetails.previous_value.validator = bv.String() GroupRenameDetails.new_value.validator = bv.String() -GroupRenameDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +GroupRenameDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) GroupRenameDetails._all_fields_ = [ - ('previous_value', GroupRenameDetails.previous_value.validator), - ('new_value', GroupRenameDetails.new_value.validator), + ("previous_value", GroupRenameDetails.previous_value.validator), + ("new_value", GroupRenameDetails.new_value.validator), ] GroupRenameType.description.validator = bv.String() -GroupRenameType._all_field_names_ = set(['description']) -GroupRenameType._all_fields_ = [('description', GroupRenameType.description.validator)] +GroupRenameType._all_field_names_ = set(["description"]) +GroupRenameType._all_fields_ = [("description", GroupRenameType.description.validator)] GroupUserManagementChangePolicyDetails.new_value.validator = team_policies.GroupCreation_validator -GroupUserManagementChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.GroupCreation_validator) -GroupUserManagementChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +GroupUserManagementChangePolicyDetails.previous_value.validator = bv.Nullable( + team_policies.GroupCreation_validator +) +GroupUserManagementChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) GroupUserManagementChangePolicyDetails._all_fields_ = [ - ('new_value', GroupUserManagementChangePolicyDetails.new_value.validator), - ('previous_value', GroupUserManagementChangePolicyDetails.previous_value.validator), + ("new_value", GroupUserManagementChangePolicyDetails.new_value.validator), + ("previous_value", GroupUserManagementChangePolicyDetails.previous_value.validator), ] GroupUserManagementChangePolicyType.description.validator = bv.String() -GroupUserManagementChangePolicyType._all_field_names_ = set(['description']) -GroupUserManagementChangePolicyType._all_fields_ = [('description', GroupUserManagementChangePolicyType.description.validator)] +GroupUserManagementChangePolicyType._all_field_names_ = set(["description"]) +GroupUserManagementChangePolicyType._all_fields_ = [ + ("description", GroupUserManagementChangePolicyType.description.validator) +] GuestAdminChangeStatusDetails.is_guest.validator = bv.Boolean() GuestAdminChangeStatusDetails.guest_team_name.validator = bv.Nullable(bv.String()) @@ -102512,144 +108904,185 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GuestAdminChangeStatusDetails.previous_value.validator = TrustedTeamsRequestState_validator GuestAdminChangeStatusDetails.new_value.validator = TrustedTeamsRequestState_validator GuestAdminChangeStatusDetails.action_details.validator = TrustedTeamsRequestAction_validator -GuestAdminChangeStatusDetails._all_field_names_ = set([ - 'is_guest', - 'guest_team_name', - 'host_team_name', - 'previous_value', - 'new_value', - 'action_details', -]) +GuestAdminChangeStatusDetails._all_field_names_ = set( + [ + "is_guest", + "guest_team_name", + "host_team_name", + "previous_value", + "new_value", + "action_details", + ] +) GuestAdminChangeStatusDetails._all_fields_ = [ - ('is_guest', GuestAdminChangeStatusDetails.is_guest.validator), - ('guest_team_name', GuestAdminChangeStatusDetails.guest_team_name.validator), - ('host_team_name', GuestAdminChangeStatusDetails.host_team_name.validator), - ('previous_value', GuestAdminChangeStatusDetails.previous_value.validator), - ('new_value', GuestAdminChangeStatusDetails.new_value.validator), - ('action_details', GuestAdminChangeStatusDetails.action_details.validator), + ("is_guest", GuestAdminChangeStatusDetails.is_guest.validator), + ("guest_team_name", GuestAdminChangeStatusDetails.guest_team_name.validator), + ("host_team_name", GuestAdminChangeStatusDetails.host_team_name.validator), + ("previous_value", GuestAdminChangeStatusDetails.previous_value.validator), + ("new_value", GuestAdminChangeStatusDetails.new_value.validator), + ("action_details", GuestAdminChangeStatusDetails.action_details.validator), ] GuestAdminChangeStatusType.description.validator = bv.String() -GuestAdminChangeStatusType._all_field_names_ = set(['description']) -GuestAdminChangeStatusType._all_fields_ = [('description', GuestAdminChangeStatusType.description.validator)] +GuestAdminChangeStatusType._all_field_names_ = set(["description"]) +GuestAdminChangeStatusType._all_fields_ = [ + ("description", GuestAdminChangeStatusType.description.validator) +] GuestAdminSignedInViaTrustedTeamsDetails.team_name.validator = bv.Nullable(bv.String()) GuestAdminSignedInViaTrustedTeamsDetails.trusted_team_name.validator = bv.Nullable(bv.String()) -GuestAdminSignedInViaTrustedTeamsDetails._all_field_names_ = set([ - 'team_name', - 'trusted_team_name', -]) +GuestAdminSignedInViaTrustedTeamsDetails._all_field_names_ = set( + [ + "team_name", + "trusted_team_name", + ] +) GuestAdminSignedInViaTrustedTeamsDetails._all_fields_ = [ - ('team_name', GuestAdminSignedInViaTrustedTeamsDetails.team_name.validator), - ('trusted_team_name', GuestAdminSignedInViaTrustedTeamsDetails.trusted_team_name.validator), + ("team_name", GuestAdminSignedInViaTrustedTeamsDetails.team_name.validator), + ( + "trusted_team_name", + GuestAdminSignedInViaTrustedTeamsDetails.trusted_team_name.validator, + ), ] GuestAdminSignedInViaTrustedTeamsType.description.validator = bv.String() -GuestAdminSignedInViaTrustedTeamsType._all_field_names_ = set(['description']) -GuestAdminSignedInViaTrustedTeamsType._all_fields_ = [('description', GuestAdminSignedInViaTrustedTeamsType.description.validator)] +GuestAdminSignedInViaTrustedTeamsType._all_field_names_ = set(["description"]) +GuestAdminSignedInViaTrustedTeamsType._all_fields_ = [ + ("description", GuestAdminSignedInViaTrustedTeamsType.description.validator) +] GuestAdminSignedOutViaTrustedTeamsDetails.team_name.validator = bv.Nullable(bv.String()) GuestAdminSignedOutViaTrustedTeamsDetails.trusted_team_name.validator = bv.Nullable(bv.String()) -GuestAdminSignedOutViaTrustedTeamsDetails._all_field_names_ = set([ - 'team_name', - 'trusted_team_name', -]) +GuestAdminSignedOutViaTrustedTeamsDetails._all_field_names_ = set( + [ + "team_name", + "trusted_team_name", + ] +) GuestAdminSignedOutViaTrustedTeamsDetails._all_fields_ = [ - ('team_name', GuestAdminSignedOutViaTrustedTeamsDetails.team_name.validator), - ('trusted_team_name', GuestAdminSignedOutViaTrustedTeamsDetails.trusted_team_name.validator), + ("team_name", GuestAdminSignedOutViaTrustedTeamsDetails.team_name.validator), + ( + "trusted_team_name", + GuestAdminSignedOutViaTrustedTeamsDetails.trusted_team_name.validator, + ), ] GuestAdminSignedOutViaTrustedTeamsType.description.validator = bv.String() -GuestAdminSignedOutViaTrustedTeamsType._all_field_names_ = set(['description']) -GuestAdminSignedOutViaTrustedTeamsType._all_fields_ = [('description', GuestAdminSignedOutViaTrustedTeamsType.description.validator)] +GuestAdminSignedOutViaTrustedTeamsType._all_field_names_ = set(["description"]) +GuestAdminSignedOutViaTrustedTeamsType._all_fields_ = [ + ("description", GuestAdminSignedOutViaTrustedTeamsType.description.validator) +] IdentifierType._email_validator = bv.Void() IdentifierType._facebook_profile_name_validator = bv.Void() IdentifierType._other_validator = bv.Void() IdentifierType._tagmap = { - 'email': IdentifierType._email_validator, - 'facebook_profile_name': IdentifierType._facebook_profile_name_validator, - 'other': IdentifierType._other_validator, + "email": IdentifierType._email_validator, + "facebook_profile_name": IdentifierType._facebook_profile_name_validator, + "other": IdentifierType._other_validator, } -IdentifierType.email = IdentifierType('email') -IdentifierType.facebook_profile_name = IdentifierType('facebook_profile_name') -IdentifierType.other = IdentifierType('other') +IdentifierType.email = IdentifierType("email") +IdentifierType.facebook_profile_name = IdentifierType("facebook_profile_name") +IdentifierType.other = IdentifierType("other") IntegrationConnectedDetails.integration_name.validator = bv.String() -IntegrationConnectedDetails._all_field_names_ = set(['integration_name']) -IntegrationConnectedDetails._all_fields_ = [('integration_name', IntegrationConnectedDetails.integration_name.validator)] +IntegrationConnectedDetails._all_field_names_ = set(["integration_name"]) +IntegrationConnectedDetails._all_fields_ = [ + ("integration_name", IntegrationConnectedDetails.integration_name.validator) +] IntegrationConnectedType.description.validator = bv.String() -IntegrationConnectedType._all_field_names_ = set(['description']) -IntegrationConnectedType._all_fields_ = [('description', IntegrationConnectedType.description.validator)] +IntegrationConnectedType._all_field_names_ = set(["description"]) +IntegrationConnectedType._all_fields_ = [ + ("description", IntegrationConnectedType.description.validator) +] IntegrationDisconnectedDetails.integration_name.validator = bv.String() -IntegrationDisconnectedDetails._all_field_names_ = set(['integration_name']) -IntegrationDisconnectedDetails._all_fields_ = [('integration_name', IntegrationDisconnectedDetails.integration_name.validator)] +IntegrationDisconnectedDetails._all_field_names_ = set(["integration_name"]) +IntegrationDisconnectedDetails._all_fields_ = [ + ("integration_name", IntegrationDisconnectedDetails.integration_name.validator) +] IntegrationDisconnectedType.description.validator = bv.String() -IntegrationDisconnectedType._all_field_names_ = set(['description']) -IntegrationDisconnectedType._all_fields_ = [('description', IntegrationDisconnectedType.description.validator)] +IntegrationDisconnectedType._all_field_names_ = set(["description"]) +IntegrationDisconnectedType._all_fields_ = [ + ("description", IntegrationDisconnectedType.description.validator) +] IntegrationPolicy._disabled_validator = bv.Void() IntegrationPolicy._enabled_validator = bv.Void() IntegrationPolicy._other_validator = bv.Void() IntegrationPolicy._tagmap = { - 'disabled': IntegrationPolicy._disabled_validator, - 'enabled': IntegrationPolicy._enabled_validator, - 'other': IntegrationPolicy._other_validator, + "disabled": IntegrationPolicy._disabled_validator, + "enabled": IntegrationPolicy._enabled_validator, + "other": IntegrationPolicy._other_validator, } -IntegrationPolicy.disabled = IntegrationPolicy('disabled') -IntegrationPolicy.enabled = IntegrationPolicy('enabled') -IntegrationPolicy.other = IntegrationPolicy('other') +IntegrationPolicy.disabled = IntegrationPolicy("disabled") +IntegrationPolicy.enabled = IntegrationPolicy("enabled") +IntegrationPolicy.other = IntegrationPolicy("other") IntegrationPolicyChangedDetails.integration_name.validator = bv.String() IntegrationPolicyChangedDetails.new_value.validator = IntegrationPolicy_validator IntegrationPolicyChangedDetails.previous_value.validator = IntegrationPolicy_validator -IntegrationPolicyChangedDetails._all_field_names_ = set([ - 'integration_name', - 'new_value', - 'previous_value', -]) +IntegrationPolicyChangedDetails._all_field_names_ = set( + [ + "integration_name", + "new_value", + "previous_value", + ] +) IntegrationPolicyChangedDetails._all_fields_ = [ - ('integration_name', IntegrationPolicyChangedDetails.integration_name.validator), - ('new_value', IntegrationPolicyChangedDetails.new_value.validator), - ('previous_value', IntegrationPolicyChangedDetails.previous_value.validator), + ("integration_name", IntegrationPolicyChangedDetails.integration_name.validator), + ("new_value", IntegrationPolicyChangedDetails.new_value.validator), + ("previous_value", IntegrationPolicyChangedDetails.previous_value.validator), ] IntegrationPolicyChangedType.description.validator = bv.String() -IntegrationPolicyChangedType._all_field_names_ = set(['description']) -IntegrationPolicyChangedType._all_fields_ = [('description', IntegrationPolicyChangedType.description.validator)] +IntegrationPolicyChangedType._all_field_names_ = set(["description"]) +IntegrationPolicyChangedType._all_fields_ = [ + ("description", IntegrationPolicyChangedType.description.validator) +] InviteAcceptanceEmailPolicy._disabled_validator = bv.Void() InviteAcceptanceEmailPolicy._enabled_validator = bv.Void() InviteAcceptanceEmailPolicy._other_validator = bv.Void() InviteAcceptanceEmailPolicy._tagmap = { - 'disabled': InviteAcceptanceEmailPolicy._disabled_validator, - 'enabled': InviteAcceptanceEmailPolicy._enabled_validator, - 'other': InviteAcceptanceEmailPolicy._other_validator, + "disabled": InviteAcceptanceEmailPolicy._disabled_validator, + "enabled": InviteAcceptanceEmailPolicy._enabled_validator, + "other": InviteAcceptanceEmailPolicy._other_validator, } -InviteAcceptanceEmailPolicy.disabled = InviteAcceptanceEmailPolicy('disabled') -InviteAcceptanceEmailPolicy.enabled = InviteAcceptanceEmailPolicy('enabled') -InviteAcceptanceEmailPolicy.other = InviteAcceptanceEmailPolicy('other') +InviteAcceptanceEmailPolicy.disabled = InviteAcceptanceEmailPolicy("disabled") +InviteAcceptanceEmailPolicy.enabled = InviteAcceptanceEmailPolicy("enabled") +InviteAcceptanceEmailPolicy.other = InviteAcceptanceEmailPolicy("other") -InviteAcceptanceEmailPolicyChangedDetails.new_value.validator = InviteAcceptanceEmailPolicy_validator -InviteAcceptanceEmailPolicyChangedDetails.previous_value.validator = InviteAcceptanceEmailPolicy_validator -InviteAcceptanceEmailPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +InviteAcceptanceEmailPolicyChangedDetails.new_value.validator = ( + InviteAcceptanceEmailPolicy_validator +) +InviteAcceptanceEmailPolicyChangedDetails.previous_value.validator = ( + InviteAcceptanceEmailPolicy_validator +) +InviteAcceptanceEmailPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) InviteAcceptanceEmailPolicyChangedDetails._all_fields_ = [ - ('new_value', InviteAcceptanceEmailPolicyChangedDetails.new_value.validator), - ('previous_value', InviteAcceptanceEmailPolicyChangedDetails.previous_value.validator), + ("new_value", InviteAcceptanceEmailPolicyChangedDetails.new_value.validator), + ( + "previous_value", + InviteAcceptanceEmailPolicyChangedDetails.previous_value.validator, + ), ] InviteAcceptanceEmailPolicyChangedType.description.validator = bv.String() -InviteAcceptanceEmailPolicyChangedType._all_field_names_ = set(['description']) -InviteAcceptanceEmailPolicyChangedType._all_fields_ = [('description', InviteAcceptanceEmailPolicyChangedType.description.validator)] +InviteAcceptanceEmailPolicyChangedType._all_field_names_ = set(["description"]) +InviteAcceptanceEmailPolicyChangedType._all_fields_ = [ + ("description", InviteAcceptanceEmailPolicyChangedType.description.validator) +] InviteMethod._auto_approve_validator = bv.Void() InviteMethod._invite_link_validator = bv.Void() @@ -102657,18 +109090,18 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): InviteMethod._moved_from_another_team_validator = bv.Void() InviteMethod._other_validator = bv.Void() InviteMethod._tagmap = { - 'auto_approve': InviteMethod._auto_approve_validator, - 'invite_link': InviteMethod._invite_link_validator, - 'member_invite': InviteMethod._member_invite_validator, - 'moved_from_another_team': InviteMethod._moved_from_another_team_validator, - 'other': InviteMethod._other_validator, + "auto_approve": InviteMethod._auto_approve_validator, + "invite_link": InviteMethod._invite_link_validator, + "member_invite": InviteMethod._member_invite_validator, + "moved_from_another_team": InviteMethod._moved_from_another_team_validator, + "other": InviteMethod._other_validator, } -InviteMethod.auto_approve = InviteMethod('auto_approve') -InviteMethod.invite_link = InviteMethod('invite_link') -InviteMethod.member_invite = InviteMethod('member_invite') -InviteMethod.moved_from_another_team = InviteMethod('moved_from_another_team') -InviteMethod.other = InviteMethod('other') +InviteMethod.auto_approve = InviteMethod("auto_approve") +InviteMethod.invite_link = InviteMethod("invite_link") +InviteMethod.member_invite = InviteMethod("member_invite") +InviteMethod.moved_from_another_team = InviteMethod("moved_from_another_team") +InviteMethod.other = InviteMethod("other") JoinTeamDetails.linked_apps.validator = bv.List(UserLinkedAppLogInfo_validator) JoinTeamDetails.linked_devices.validator = bv.List(LinkedDeviceLogInfo_validator) @@ -102679,27 +109112,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): JoinTeamDetails.has_linked_apps.validator = bv.Nullable(bv.Boolean()) JoinTeamDetails.has_linked_devices.validator = bv.Nullable(bv.Boolean()) JoinTeamDetails.has_linked_shared_folders.validator = bv.Nullable(bv.Boolean()) -JoinTeamDetails._all_field_names_ = set([ - 'linked_apps', - 'linked_devices', - 'linked_shared_folders', - 'was_linked_apps_truncated', - 'was_linked_devices_truncated', - 'was_linked_shared_folders_truncated', - 'has_linked_apps', - 'has_linked_devices', - 'has_linked_shared_folders', -]) +JoinTeamDetails._all_field_names_ = set( + [ + "linked_apps", + "linked_devices", + "linked_shared_folders", + "was_linked_apps_truncated", + "was_linked_devices_truncated", + "was_linked_shared_folders_truncated", + "has_linked_apps", + "has_linked_devices", + "has_linked_shared_folders", + ] +) JoinTeamDetails._all_fields_ = [ - ('linked_apps', JoinTeamDetails.linked_apps.validator), - ('linked_devices', JoinTeamDetails.linked_devices.validator), - ('linked_shared_folders', JoinTeamDetails.linked_shared_folders.validator), - ('was_linked_apps_truncated', JoinTeamDetails.was_linked_apps_truncated.validator), - ('was_linked_devices_truncated', JoinTeamDetails.was_linked_devices_truncated.validator), - ('was_linked_shared_folders_truncated', JoinTeamDetails.was_linked_shared_folders_truncated.validator), - ('has_linked_apps', JoinTeamDetails.has_linked_apps.validator), - ('has_linked_devices', JoinTeamDetails.has_linked_devices.validator), - ('has_linked_shared_folders', JoinTeamDetails.has_linked_shared_folders.validator), + ("linked_apps", JoinTeamDetails.linked_apps.validator), + ("linked_devices", JoinTeamDetails.linked_devices.validator), + ("linked_shared_folders", JoinTeamDetails.linked_shared_folders.validator), + ("was_linked_apps_truncated", JoinTeamDetails.was_linked_apps_truncated.validator), + ( + "was_linked_devices_truncated", + JoinTeamDetails.was_linked_devices_truncated.validator, + ), + ( + "was_linked_shared_folders_truncated", + JoinTeamDetails.was_linked_shared_folders_truncated.validator, + ), + ("has_linked_apps", JoinTeamDetails.has_linked_apps.validator), + ("has_linked_devices", JoinTeamDetails.has_linked_devices.validator), + ("has_linked_shared_folders", JoinTeamDetails.has_linked_shared_folders.validator), ] LabelType._personal_information_validator = bv.Void() @@ -102707,16 +109148,16 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LabelType._user_defined_tag_validator = bv.Void() LabelType._other_validator = bv.Void() LabelType._tagmap = { - 'personal_information': LabelType._personal_information_validator, - 'test_only': LabelType._test_only_validator, - 'user_defined_tag': LabelType._user_defined_tag_validator, - 'other': LabelType._other_validator, + "personal_information": LabelType._personal_information_validator, + "test_only": LabelType._test_only_validator, + "user_defined_tag": LabelType._user_defined_tag_validator, + "other": LabelType._other_validator, } -LabelType.personal_information = LabelType('personal_information') -LabelType.test_only = LabelType('test_only') -LabelType.user_defined_tag = LabelType('user_defined_tag') -LabelType.other = LabelType('other') +LabelType.personal_information = LabelType("personal_information") +LabelType.test_only = LabelType("test_only") +LabelType.user_defined_tag = LabelType("user_defined_tag") +LabelType.other = LabelType("other") LegacyDeviceSessionLogInfo.session_info.validator = bv.Nullable(SessionLogInfo_validator) LegacyDeviceSessionLogInfo.display_name.validator = bv.Nullable(bv.String()) @@ -102727,228 +109168,278 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegacyDeviceSessionLogInfo.device_type.validator = bv.Nullable(bv.String()) LegacyDeviceSessionLogInfo.client_version.validator = bv.Nullable(bv.String()) LegacyDeviceSessionLogInfo.legacy_uniq_id.validator = bv.Nullable(bv.String()) -LegacyDeviceSessionLogInfo._field_names_ = set([ - 'session_info', - 'display_name', - 'is_emm_managed', - 'platform', - 'mac_address', - 'os_version', - 'device_type', - 'client_version', - 'legacy_uniq_id', -]) -LegacyDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union(LegacyDeviceSessionLogInfo._field_names_) +LegacyDeviceSessionLogInfo._field_names_ = set( + [ + "session_info", + "display_name", + "is_emm_managed", + "platform", + "mac_address", + "os_version", + "device_type", + "client_version", + "legacy_uniq_id", + ] +) +LegacyDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union( + LegacyDeviceSessionLogInfo._field_names_ +) LegacyDeviceSessionLogInfo._fields_ = [ - ('session_info', LegacyDeviceSessionLogInfo.session_info.validator), - ('display_name', LegacyDeviceSessionLogInfo.display_name.validator), - ('is_emm_managed', LegacyDeviceSessionLogInfo.is_emm_managed.validator), - ('platform', LegacyDeviceSessionLogInfo.platform.validator), - ('mac_address', LegacyDeviceSessionLogInfo.mac_address.validator), - ('os_version', LegacyDeviceSessionLogInfo.os_version.validator), - ('device_type', LegacyDeviceSessionLogInfo.device_type.validator), - ('client_version', LegacyDeviceSessionLogInfo.client_version.validator), - ('legacy_uniq_id', LegacyDeviceSessionLogInfo.legacy_uniq_id.validator), -] -LegacyDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + LegacyDeviceSessionLogInfo._fields_ + ("session_info", LegacyDeviceSessionLogInfo.session_info.validator), + ("display_name", LegacyDeviceSessionLogInfo.display_name.validator), + ("is_emm_managed", LegacyDeviceSessionLogInfo.is_emm_managed.validator), + ("platform", LegacyDeviceSessionLogInfo.platform.validator), + ("mac_address", LegacyDeviceSessionLogInfo.mac_address.validator), + ("os_version", LegacyDeviceSessionLogInfo.os_version.validator), + ("device_type", LegacyDeviceSessionLogInfo.device_type.validator), + ("client_version", LegacyDeviceSessionLogInfo.client_version.validator), + ("legacy_uniq_id", LegacyDeviceSessionLogInfo.legacy_uniq_id.validator), +] +LegacyDeviceSessionLogInfo._all_fields_ = ( + DeviceSessionLogInfo._all_fields_ + LegacyDeviceSessionLogInfo._fields_ +) LegalHoldsActivateAHoldDetails.legal_hold_id.validator = bv.String() LegalHoldsActivateAHoldDetails.name.validator = bv.String() LegalHoldsActivateAHoldDetails.start_date.validator = common.DropboxTimestamp_validator LegalHoldsActivateAHoldDetails.end_date.validator = bv.Nullable(common.DropboxTimestamp_validator) -LegalHoldsActivateAHoldDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', - 'start_date', - 'end_date', -]) +LegalHoldsActivateAHoldDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + "start_date", + "end_date", + ] +) LegalHoldsActivateAHoldDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsActivateAHoldDetails.legal_hold_id.validator), - ('name', LegalHoldsActivateAHoldDetails.name.validator), - ('start_date', LegalHoldsActivateAHoldDetails.start_date.validator), - ('end_date', LegalHoldsActivateAHoldDetails.end_date.validator), + ("legal_hold_id", LegalHoldsActivateAHoldDetails.legal_hold_id.validator), + ("name", LegalHoldsActivateAHoldDetails.name.validator), + ("start_date", LegalHoldsActivateAHoldDetails.start_date.validator), + ("end_date", LegalHoldsActivateAHoldDetails.end_date.validator), ] LegalHoldsActivateAHoldType.description.validator = bv.String() -LegalHoldsActivateAHoldType._all_field_names_ = set(['description']) -LegalHoldsActivateAHoldType._all_fields_ = [('description', LegalHoldsActivateAHoldType.description.validator)] +LegalHoldsActivateAHoldType._all_field_names_ = set(["description"]) +LegalHoldsActivateAHoldType._all_fields_ = [ + ("description", LegalHoldsActivateAHoldType.description.validator) +] LegalHoldsAddMembersDetails.legal_hold_id.validator = bv.String() LegalHoldsAddMembersDetails.name.validator = bv.String() -LegalHoldsAddMembersDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', -]) +LegalHoldsAddMembersDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + ] +) LegalHoldsAddMembersDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsAddMembersDetails.legal_hold_id.validator), - ('name', LegalHoldsAddMembersDetails.name.validator), + ("legal_hold_id", LegalHoldsAddMembersDetails.legal_hold_id.validator), + ("name", LegalHoldsAddMembersDetails.name.validator), ] LegalHoldsAddMembersType.description.validator = bv.String() -LegalHoldsAddMembersType._all_field_names_ = set(['description']) -LegalHoldsAddMembersType._all_fields_ = [('description', LegalHoldsAddMembersType.description.validator)] +LegalHoldsAddMembersType._all_field_names_ = set(["description"]) +LegalHoldsAddMembersType._all_fields_ = [ + ("description", LegalHoldsAddMembersType.description.validator) +] LegalHoldsChangeHoldDetailsDetails.legal_hold_id.validator = bv.String() LegalHoldsChangeHoldDetailsDetails.name.validator = bv.String() LegalHoldsChangeHoldDetailsDetails.previous_value.validator = bv.String() LegalHoldsChangeHoldDetailsDetails.new_value.validator = bv.String() -LegalHoldsChangeHoldDetailsDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', - 'previous_value', - 'new_value', -]) +LegalHoldsChangeHoldDetailsDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + "previous_value", + "new_value", + ] +) LegalHoldsChangeHoldDetailsDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsChangeHoldDetailsDetails.legal_hold_id.validator), - ('name', LegalHoldsChangeHoldDetailsDetails.name.validator), - ('previous_value', LegalHoldsChangeHoldDetailsDetails.previous_value.validator), - ('new_value', LegalHoldsChangeHoldDetailsDetails.new_value.validator), + ("legal_hold_id", LegalHoldsChangeHoldDetailsDetails.legal_hold_id.validator), + ("name", LegalHoldsChangeHoldDetailsDetails.name.validator), + ("previous_value", LegalHoldsChangeHoldDetailsDetails.previous_value.validator), + ("new_value", LegalHoldsChangeHoldDetailsDetails.new_value.validator), ] LegalHoldsChangeHoldDetailsType.description.validator = bv.String() -LegalHoldsChangeHoldDetailsType._all_field_names_ = set(['description']) -LegalHoldsChangeHoldDetailsType._all_fields_ = [('description', LegalHoldsChangeHoldDetailsType.description.validator)] +LegalHoldsChangeHoldDetailsType._all_field_names_ = set(["description"]) +LegalHoldsChangeHoldDetailsType._all_fields_ = [ + ("description", LegalHoldsChangeHoldDetailsType.description.validator) +] LegalHoldsChangeHoldNameDetails.legal_hold_id.validator = bv.String() LegalHoldsChangeHoldNameDetails.previous_value.validator = bv.String() LegalHoldsChangeHoldNameDetails.new_value.validator = bv.String() -LegalHoldsChangeHoldNameDetails._all_field_names_ = set([ - 'legal_hold_id', - 'previous_value', - 'new_value', -]) +LegalHoldsChangeHoldNameDetails._all_field_names_ = set( + [ + "legal_hold_id", + "previous_value", + "new_value", + ] +) LegalHoldsChangeHoldNameDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsChangeHoldNameDetails.legal_hold_id.validator), - ('previous_value', LegalHoldsChangeHoldNameDetails.previous_value.validator), - ('new_value', LegalHoldsChangeHoldNameDetails.new_value.validator), + ("legal_hold_id", LegalHoldsChangeHoldNameDetails.legal_hold_id.validator), + ("previous_value", LegalHoldsChangeHoldNameDetails.previous_value.validator), + ("new_value", LegalHoldsChangeHoldNameDetails.new_value.validator), ] LegalHoldsChangeHoldNameType.description.validator = bv.String() -LegalHoldsChangeHoldNameType._all_field_names_ = set(['description']) -LegalHoldsChangeHoldNameType._all_fields_ = [('description', LegalHoldsChangeHoldNameType.description.validator)] +LegalHoldsChangeHoldNameType._all_field_names_ = set(["description"]) +LegalHoldsChangeHoldNameType._all_fields_ = [ + ("description", LegalHoldsChangeHoldNameType.description.validator) +] LegalHoldsExportAHoldDetails.legal_hold_id.validator = bv.String() LegalHoldsExportAHoldDetails.name.validator = bv.String() LegalHoldsExportAHoldDetails.export_name.validator = bv.Nullable(bv.String()) -LegalHoldsExportAHoldDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', - 'export_name', -]) +LegalHoldsExportAHoldDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + "export_name", + ] +) LegalHoldsExportAHoldDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsExportAHoldDetails.legal_hold_id.validator), - ('name', LegalHoldsExportAHoldDetails.name.validator), - ('export_name', LegalHoldsExportAHoldDetails.export_name.validator), + ("legal_hold_id", LegalHoldsExportAHoldDetails.legal_hold_id.validator), + ("name", LegalHoldsExportAHoldDetails.name.validator), + ("export_name", LegalHoldsExportAHoldDetails.export_name.validator), ] LegalHoldsExportAHoldType.description.validator = bv.String() -LegalHoldsExportAHoldType._all_field_names_ = set(['description']) -LegalHoldsExportAHoldType._all_fields_ = [('description', LegalHoldsExportAHoldType.description.validator)] +LegalHoldsExportAHoldType._all_field_names_ = set(["description"]) +LegalHoldsExportAHoldType._all_fields_ = [ + ("description", LegalHoldsExportAHoldType.description.validator) +] LegalHoldsExportCancelledDetails.legal_hold_id.validator = bv.String() LegalHoldsExportCancelledDetails.name.validator = bv.String() LegalHoldsExportCancelledDetails.export_name.validator = bv.String() -LegalHoldsExportCancelledDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', - 'export_name', -]) +LegalHoldsExportCancelledDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + "export_name", + ] +) LegalHoldsExportCancelledDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsExportCancelledDetails.legal_hold_id.validator), - ('name', LegalHoldsExportCancelledDetails.name.validator), - ('export_name', LegalHoldsExportCancelledDetails.export_name.validator), + ("legal_hold_id", LegalHoldsExportCancelledDetails.legal_hold_id.validator), + ("name", LegalHoldsExportCancelledDetails.name.validator), + ("export_name", LegalHoldsExportCancelledDetails.export_name.validator), ] LegalHoldsExportCancelledType.description.validator = bv.String() -LegalHoldsExportCancelledType._all_field_names_ = set(['description']) -LegalHoldsExportCancelledType._all_fields_ = [('description', LegalHoldsExportCancelledType.description.validator)] +LegalHoldsExportCancelledType._all_field_names_ = set(["description"]) +LegalHoldsExportCancelledType._all_fields_ = [ + ("description", LegalHoldsExportCancelledType.description.validator) +] LegalHoldsExportDownloadedDetails.legal_hold_id.validator = bv.String() LegalHoldsExportDownloadedDetails.name.validator = bv.String() LegalHoldsExportDownloadedDetails.export_name.validator = bv.String() LegalHoldsExportDownloadedDetails.part.validator = bv.Nullable(bv.String()) LegalHoldsExportDownloadedDetails.file_name.validator = bv.Nullable(bv.String()) -LegalHoldsExportDownloadedDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', - 'export_name', - 'part', - 'file_name', -]) +LegalHoldsExportDownloadedDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + "export_name", + "part", + "file_name", + ] +) LegalHoldsExportDownloadedDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsExportDownloadedDetails.legal_hold_id.validator), - ('name', LegalHoldsExportDownloadedDetails.name.validator), - ('export_name', LegalHoldsExportDownloadedDetails.export_name.validator), - ('part', LegalHoldsExportDownloadedDetails.part.validator), - ('file_name', LegalHoldsExportDownloadedDetails.file_name.validator), + ("legal_hold_id", LegalHoldsExportDownloadedDetails.legal_hold_id.validator), + ("name", LegalHoldsExportDownloadedDetails.name.validator), + ("export_name", LegalHoldsExportDownloadedDetails.export_name.validator), + ("part", LegalHoldsExportDownloadedDetails.part.validator), + ("file_name", LegalHoldsExportDownloadedDetails.file_name.validator), ] LegalHoldsExportDownloadedType.description.validator = bv.String() -LegalHoldsExportDownloadedType._all_field_names_ = set(['description']) -LegalHoldsExportDownloadedType._all_fields_ = [('description', LegalHoldsExportDownloadedType.description.validator)] +LegalHoldsExportDownloadedType._all_field_names_ = set(["description"]) +LegalHoldsExportDownloadedType._all_fields_ = [ + ("description", LegalHoldsExportDownloadedType.description.validator) +] LegalHoldsExportRemovedDetails.legal_hold_id.validator = bv.String() LegalHoldsExportRemovedDetails.name.validator = bv.String() LegalHoldsExportRemovedDetails.export_name.validator = bv.String() -LegalHoldsExportRemovedDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', - 'export_name', -]) +LegalHoldsExportRemovedDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + "export_name", + ] +) LegalHoldsExportRemovedDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsExportRemovedDetails.legal_hold_id.validator), - ('name', LegalHoldsExportRemovedDetails.name.validator), - ('export_name', LegalHoldsExportRemovedDetails.export_name.validator), + ("legal_hold_id", LegalHoldsExportRemovedDetails.legal_hold_id.validator), + ("name", LegalHoldsExportRemovedDetails.name.validator), + ("export_name", LegalHoldsExportRemovedDetails.export_name.validator), ] LegalHoldsExportRemovedType.description.validator = bv.String() -LegalHoldsExportRemovedType._all_field_names_ = set(['description']) -LegalHoldsExportRemovedType._all_fields_ = [('description', LegalHoldsExportRemovedType.description.validator)] +LegalHoldsExportRemovedType._all_field_names_ = set(["description"]) +LegalHoldsExportRemovedType._all_fields_ = [ + ("description", LegalHoldsExportRemovedType.description.validator) +] LegalHoldsReleaseAHoldDetails.legal_hold_id.validator = bv.String() LegalHoldsReleaseAHoldDetails.name.validator = bv.String() -LegalHoldsReleaseAHoldDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', -]) +LegalHoldsReleaseAHoldDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + ] +) LegalHoldsReleaseAHoldDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsReleaseAHoldDetails.legal_hold_id.validator), - ('name', LegalHoldsReleaseAHoldDetails.name.validator), + ("legal_hold_id", LegalHoldsReleaseAHoldDetails.legal_hold_id.validator), + ("name", LegalHoldsReleaseAHoldDetails.name.validator), ] LegalHoldsReleaseAHoldType.description.validator = bv.String() -LegalHoldsReleaseAHoldType._all_field_names_ = set(['description']) -LegalHoldsReleaseAHoldType._all_fields_ = [('description', LegalHoldsReleaseAHoldType.description.validator)] +LegalHoldsReleaseAHoldType._all_field_names_ = set(["description"]) +LegalHoldsReleaseAHoldType._all_fields_ = [ + ("description", LegalHoldsReleaseAHoldType.description.validator) +] LegalHoldsRemoveMembersDetails.legal_hold_id.validator = bv.String() LegalHoldsRemoveMembersDetails.name.validator = bv.String() -LegalHoldsRemoveMembersDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', -]) +LegalHoldsRemoveMembersDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + ] +) LegalHoldsRemoveMembersDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsRemoveMembersDetails.legal_hold_id.validator), - ('name', LegalHoldsRemoveMembersDetails.name.validator), + ("legal_hold_id", LegalHoldsRemoveMembersDetails.legal_hold_id.validator), + ("name", LegalHoldsRemoveMembersDetails.name.validator), ] LegalHoldsRemoveMembersType.description.validator = bv.String() -LegalHoldsRemoveMembersType._all_field_names_ = set(['description']) -LegalHoldsRemoveMembersType._all_fields_ = [('description', LegalHoldsRemoveMembersType.description.validator)] +LegalHoldsRemoveMembersType._all_field_names_ = set(["description"]) +LegalHoldsRemoveMembersType._all_fields_ = [ + ("description", LegalHoldsRemoveMembersType.description.validator) +] LegalHoldsReportAHoldDetails.legal_hold_id.validator = bv.String() LegalHoldsReportAHoldDetails.name.validator = bv.String() -LegalHoldsReportAHoldDetails._all_field_names_ = set([ - 'legal_hold_id', - 'name', -]) +LegalHoldsReportAHoldDetails._all_field_names_ = set( + [ + "legal_hold_id", + "name", + ] +) LegalHoldsReportAHoldDetails._all_fields_ = [ - ('legal_hold_id', LegalHoldsReportAHoldDetails.legal_hold_id.validator), - ('name', LegalHoldsReportAHoldDetails.name.validator), + ("legal_hold_id", LegalHoldsReportAHoldDetails.legal_hold_id.validator), + ("name", LegalHoldsReportAHoldDetails.name.validator), ] LegalHoldsReportAHoldType.description.validator = bv.String() -LegalHoldsReportAHoldType._all_field_names_ = set(['description']) -LegalHoldsReportAHoldType._all_fields_ = [('description', LegalHoldsReportAHoldType.description.validator)] +LegalHoldsReportAHoldType._all_field_names_ = set(["description"]) +LegalHoldsReportAHoldType._all_fields_ = [ + ("description", LegalHoldsReportAHoldType.description.validator) +] LinkSettingsLogInfo.name.validator = bv.String() LinkSettingsLogInfo.require_email.validator = bv.Boolean() @@ -102956,21 +109447,23 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkSettingsLogInfo.expire_at.validator = bv.Nullable(common.DropboxTimestamp_validator) LinkSettingsLogInfo.password_required.validator = bv.Boolean() LinkSettingsLogInfo.url.validator = bv.String() -LinkSettingsLogInfo._all_field_names_ = set([ - 'name', - 'require_email', - 'downloadable', - 'expire_at', - 'password_required', - 'url', -]) +LinkSettingsLogInfo._all_field_names_ = set( + [ + "name", + "require_email", + "downloadable", + "expire_at", + "password_required", + "url", + ] +) LinkSettingsLogInfo._all_fields_ = [ - ('name', LinkSettingsLogInfo.name.validator), - ('require_email', LinkSettingsLogInfo.require_email.validator), - ('downloadable', LinkSettingsLogInfo.downloadable.validator), - ('expire_at', LinkSettingsLogInfo.expire_at.validator), - ('password_required', LinkSettingsLogInfo.password_required.validator), - ('url', LinkSettingsLogInfo.url.validator), + ("name", LinkSettingsLogInfo.name.validator), + ("require_email", LinkSettingsLogInfo.require_email.validator), + ("downloadable", LinkSettingsLogInfo.downloadable.validator), + ("expire_at", LinkSettingsLogInfo.expire_at.validator), + ("password_required", LinkSettingsLogInfo.password_required.validator), + ("url", LinkSettingsLogInfo.url.validator), ] LinkedDeviceLogInfo._desktop_device_session_validator = DesktopDeviceSessionLogInfo_validator @@ -102979,45 +109472,47 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkedDeviceLogInfo._web_device_session_validator = WebDeviceSessionLogInfo_validator LinkedDeviceLogInfo._other_validator = bv.Void() LinkedDeviceLogInfo._tagmap = { - 'desktop_device_session': LinkedDeviceLogInfo._desktop_device_session_validator, - 'legacy_device_session': LinkedDeviceLogInfo._legacy_device_session_validator, - 'mobile_device_session': LinkedDeviceLogInfo._mobile_device_session_validator, - 'web_device_session': LinkedDeviceLogInfo._web_device_session_validator, - 'other': LinkedDeviceLogInfo._other_validator, + "desktop_device_session": LinkedDeviceLogInfo._desktop_device_session_validator, + "legacy_device_session": LinkedDeviceLogInfo._legacy_device_session_validator, + "mobile_device_session": LinkedDeviceLogInfo._mobile_device_session_validator, + "web_device_session": LinkedDeviceLogInfo._web_device_session_validator, + "other": LinkedDeviceLogInfo._other_validator, } -LinkedDeviceLogInfo.other = LinkedDeviceLogInfo('other') +LinkedDeviceLogInfo.other = LinkedDeviceLogInfo("other") LockStatus._locked_validator = bv.Void() LockStatus._unlocked_validator = bv.Void() LockStatus._other_validator = bv.Void() LockStatus._tagmap = { - 'locked': LockStatus._locked_validator, - 'unlocked': LockStatus._unlocked_validator, - 'other': LockStatus._other_validator, + "locked": LockStatus._locked_validator, + "unlocked": LockStatus._unlocked_validator, + "other": LockStatus._other_validator, } -LockStatus.locked = LockStatus('locked') -LockStatus.unlocked = LockStatus('unlocked') -LockStatus.other = LockStatus('other') +LockStatus.locked = LockStatus("locked") +LockStatus.unlocked = LockStatus("unlocked") +LockStatus.other = LockStatus("other") LoginFailDetails.is_emm_managed.validator = bv.Nullable(bv.Boolean()) LoginFailDetails.login_method.validator = LoginMethod_validator LoginFailDetails.error_details.validator = FailureDetailsLogInfo_validator -LoginFailDetails._all_field_names_ = set([ - 'is_emm_managed', - 'login_method', - 'error_details', -]) +LoginFailDetails._all_field_names_ = set( + [ + "is_emm_managed", + "login_method", + "error_details", + ] +) LoginFailDetails._all_fields_ = [ - ('is_emm_managed', LoginFailDetails.is_emm_managed.validator), - ('login_method', LoginFailDetails.login_method.validator), - ('error_details', LoginFailDetails.error_details.validator), + ("is_emm_managed", LoginFailDetails.is_emm_managed.validator), + ("login_method", LoginFailDetails.login_method.validator), + ("error_details", LoginFailDetails.error_details.validator), ] LoginFailType.description.validator = bv.String() -LoginFailType._all_field_names_ = set(['description']) -LoginFailType._all_fields_ = [('description', LoginFailType.description.validator)] +LoginFailType._all_field_names_ = set(["description"]) +LoginFailType._all_fields_ = [("description", LoginFailType.description.validator)] LoginMethod._apple_oauth_validator = bv.Void() LoginMethod._first_party_token_exchange_validator = bv.Void() @@ -103033,477 +109528,602 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LoginMethod._microsoft_oauth_validator = bv.Void() LoginMethod._other_validator = bv.Void() LoginMethod._tagmap = { - 'apple_oauth': LoginMethod._apple_oauth_validator, - 'first_party_token_exchange': LoginMethod._first_party_token_exchange_validator, - 'google_oauth': LoginMethod._google_oauth_validator, - 'kakao_oauth': LoginMethod._kakao_oauth_validator, - 'lenovo_oauth': LoginMethod._lenovo_oauth_validator, - 'passkey': LoginMethod._passkey_validator, - 'password': LoginMethod._password_validator, - 'qr_code': LoginMethod._qr_code_validator, - 'saml': LoginMethod._saml_validator, - 'two_factor_authentication': LoginMethod._two_factor_authentication_validator, - 'web_session': LoginMethod._web_session_validator, - 'microsoft_oauth': LoginMethod._microsoft_oauth_validator, - 'other': LoginMethod._other_validator, + "apple_oauth": LoginMethod._apple_oauth_validator, + "first_party_token_exchange": LoginMethod._first_party_token_exchange_validator, + "google_oauth": LoginMethod._google_oauth_validator, + "kakao_oauth": LoginMethod._kakao_oauth_validator, + "lenovo_oauth": LoginMethod._lenovo_oauth_validator, + "passkey": LoginMethod._passkey_validator, + "password": LoginMethod._password_validator, + "qr_code": LoginMethod._qr_code_validator, + "saml": LoginMethod._saml_validator, + "two_factor_authentication": LoginMethod._two_factor_authentication_validator, + "web_session": LoginMethod._web_session_validator, + "microsoft_oauth": LoginMethod._microsoft_oauth_validator, + "other": LoginMethod._other_validator, } -LoginMethod.apple_oauth = LoginMethod('apple_oauth') -LoginMethod.first_party_token_exchange = LoginMethod('first_party_token_exchange') -LoginMethod.google_oauth = LoginMethod('google_oauth') -LoginMethod.kakao_oauth = LoginMethod('kakao_oauth') -LoginMethod.lenovo_oauth = LoginMethod('lenovo_oauth') -LoginMethod.passkey = LoginMethod('passkey') -LoginMethod.password = LoginMethod('password') -LoginMethod.qr_code = LoginMethod('qr_code') -LoginMethod.saml = LoginMethod('saml') -LoginMethod.two_factor_authentication = LoginMethod('two_factor_authentication') -LoginMethod.web_session = LoginMethod('web_session') -LoginMethod.microsoft_oauth = LoginMethod('microsoft_oauth') -LoginMethod.other = LoginMethod('other') +LoginMethod.apple_oauth = LoginMethod("apple_oauth") +LoginMethod.first_party_token_exchange = LoginMethod("first_party_token_exchange") +LoginMethod.google_oauth = LoginMethod("google_oauth") +LoginMethod.kakao_oauth = LoginMethod("kakao_oauth") +LoginMethod.lenovo_oauth = LoginMethod("lenovo_oauth") +LoginMethod.passkey = LoginMethod("passkey") +LoginMethod.password = LoginMethod("password") +LoginMethod.qr_code = LoginMethod("qr_code") +LoginMethod.saml = LoginMethod("saml") +LoginMethod.two_factor_authentication = LoginMethod("two_factor_authentication") +LoginMethod.web_session = LoginMethod("web_session") +LoginMethod.microsoft_oauth = LoginMethod("microsoft_oauth") +LoginMethod.other = LoginMethod("other") LoginSuccessDetails.is_emm_managed.validator = bv.Nullable(bv.Boolean()) LoginSuccessDetails.login_method.validator = LoginMethod_validator -LoginSuccessDetails._all_field_names_ = set([ - 'is_emm_managed', - 'login_method', -]) +LoginSuccessDetails._all_field_names_ = set( + [ + "is_emm_managed", + "login_method", + ] +) LoginSuccessDetails._all_fields_ = [ - ('is_emm_managed', LoginSuccessDetails.is_emm_managed.validator), - ('login_method', LoginSuccessDetails.login_method.validator), + ("is_emm_managed", LoginSuccessDetails.is_emm_managed.validator), + ("login_method", LoginSuccessDetails.login_method.validator), ] LoginSuccessType.description.validator = bv.String() -LoginSuccessType._all_field_names_ = set(['description']) -LoginSuccessType._all_fields_ = [('description', LoginSuccessType.description.validator)] +LoginSuccessType._all_field_names_ = set(["description"]) +LoginSuccessType._all_fields_ = [("description", LoginSuccessType.description.validator)] LogoutDetails.login_id.validator = bv.Nullable(bv.String()) -LogoutDetails._all_field_names_ = set(['login_id']) -LogoutDetails._all_fields_ = [('login_id', LogoutDetails.login_id.validator)] +LogoutDetails._all_field_names_ = set(["login_id"]) +LogoutDetails._all_fields_ = [("login_id", LogoutDetails.login_id.validator)] LogoutType.description.validator = bv.String() -LogoutType._all_field_names_ = set(['description']) -LogoutType._all_fields_ = [('description', LogoutType.description.validator)] +LogoutType._all_field_names_ = set(["description"]) +LogoutType._all_fields_ = [("description", LogoutType.description.validator)] MalwareExclusionState.excluded_file_hashes_count.validator = bv.Int64() MalwareExclusionState.file_path_from_last_exclusion.validator = bv.Nullable(bv.String()) MalwareExclusionState.file_path_from_last_inclusion.validator = bv.Nullable(bv.String()) -MalwareExclusionState._all_field_names_ = set([ - 'excluded_file_hashes_count', - 'file_path_from_last_exclusion', - 'file_path_from_last_inclusion', -]) +MalwareExclusionState._all_field_names_ = set( + [ + "excluded_file_hashes_count", + "file_path_from_last_exclusion", + "file_path_from_last_inclusion", + ] +) MalwareExclusionState._all_fields_ = [ - ('excluded_file_hashes_count', MalwareExclusionState.excluded_file_hashes_count.validator), - ('file_path_from_last_exclusion', MalwareExclusionState.file_path_from_last_exclusion.validator), - ('file_path_from_last_inclusion', MalwareExclusionState.file_path_from_last_inclusion.validator), + ( + "excluded_file_hashes_count", + MalwareExclusionState.excluded_file_hashes_count.validator, + ), + ( + "file_path_from_last_exclusion", + MalwareExclusionState.file_path_from_last_exclusion.validator, + ), + ( + "file_path_from_last_inclusion", + MalwareExclusionState.file_path_from_last_inclusion.validator, + ), ] MediaHubAddingPeoplePolicy._anyone_validator = bv.Void() MediaHubAddingPeoplePolicy._team_only_validator = bv.Void() MediaHubAddingPeoplePolicy._other_validator = bv.Void() MediaHubAddingPeoplePolicy._tagmap = { - 'anyone': MediaHubAddingPeoplePolicy._anyone_validator, - 'team_only': MediaHubAddingPeoplePolicy._team_only_validator, - 'other': MediaHubAddingPeoplePolicy._other_validator, + "anyone": MediaHubAddingPeoplePolicy._anyone_validator, + "team_only": MediaHubAddingPeoplePolicy._team_only_validator, + "other": MediaHubAddingPeoplePolicy._other_validator, } -MediaHubAddingPeoplePolicy.anyone = MediaHubAddingPeoplePolicy('anyone') -MediaHubAddingPeoplePolicy.team_only = MediaHubAddingPeoplePolicy('team_only') -MediaHubAddingPeoplePolicy.other = MediaHubAddingPeoplePolicy('other') +MediaHubAddingPeoplePolicy.anyone = MediaHubAddingPeoplePolicy("anyone") +MediaHubAddingPeoplePolicy.team_only = MediaHubAddingPeoplePolicy("team_only") +MediaHubAddingPeoplePolicy.other = MediaHubAddingPeoplePolicy("other") MediaHubAddingPeoplePolicyChangedDetails.new_value.validator = MediaHubAddingPeoplePolicy_validator -MediaHubAddingPeoplePolicyChangedDetails.previous_value.validator = MediaHubAddingPeoplePolicy_validator -MediaHubAddingPeoplePolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MediaHubAddingPeoplePolicyChangedDetails.previous_value.validator = ( + MediaHubAddingPeoplePolicy_validator +) +MediaHubAddingPeoplePolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MediaHubAddingPeoplePolicyChangedDetails._all_fields_ = [ - ('new_value', MediaHubAddingPeoplePolicyChangedDetails.new_value.validator), - ('previous_value', MediaHubAddingPeoplePolicyChangedDetails.previous_value.validator), + ("new_value", MediaHubAddingPeoplePolicyChangedDetails.new_value.validator), + ( + "previous_value", + MediaHubAddingPeoplePolicyChangedDetails.previous_value.validator, + ), ] MediaHubAddingPeoplePolicyChangedType.description.validator = bv.String() -MediaHubAddingPeoplePolicyChangedType._all_field_names_ = set(['description']) -MediaHubAddingPeoplePolicyChangedType._all_fields_ = [('description', MediaHubAddingPeoplePolicyChangedType.description.validator)] +MediaHubAddingPeoplePolicyChangedType._all_field_names_ = set(["description"]) +MediaHubAddingPeoplePolicyChangedType._all_fields_ = [ + ("description", MediaHubAddingPeoplePolicyChangedType.description.validator) +] MediaHubDownloadPolicy._disabled_validator = bv.Void() MediaHubDownloadPolicy._enabled_validator = bv.Void() MediaHubDownloadPolicy._other_validator = bv.Void() MediaHubDownloadPolicy._tagmap = { - 'disabled': MediaHubDownloadPolicy._disabled_validator, - 'enabled': MediaHubDownloadPolicy._enabled_validator, - 'other': MediaHubDownloadPolicy._other_validator, + "disabled": MediaHubDownloadPolicy._disabled_validator, + "enabled": MediaHubDownloadPolicy._enabled_validator, + "other": MediaHubDownloadPolicy._other_validator, } -MediaHubDownloadPolicy.disabled = MediaHubDownloadPolicy('disabled') -MediaHubDownloadPolicy.enabled = MediaHubDownloadPolicy('enabled') -MediaHubDownloadPolicy.other = MediaHubDownloadPolicy('other') +MediaHubDownloadPolicy.disabled = MediaHubDownloadPolicy("disabled") +MediaHubDownloadPolicy.enabled = MediaHubDownloadPolicy("enabled") +MediaHubDownloadPolicy.other = MediaHubDownloadPolicy("other") MediaHubDownloadPolicyChangedDetails.new_value.validator = MediaHubDownloadPolicy_validator MediaHubDownloadPolicyChangedDetails.previous_value.validator = MediaHubDownloadPolicy_validator -MediaHubDownloadPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MediaHubDownloadPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MediaHubDownloadPolicyChangedDetails._all_fields_ = [ - ('new_value', MediaHubDownloadPolicyChangedDetails.new_value.validator), - ('previous_value', MediaHubDownloadPolicyChangedDetails.previous_value.validator), + ("new_value", MediaHubDownloadPolicyChangedDetails.new_value.validator), + ("previous_value", MediaHubDownloadPolicyChangedDetails.previous_value.validator), ] MediaHubDownloadPolicyChangedType.description.validator = bv.String() -MediaHubDownloadPolicyChangedType._all_field_names_ = set(['description']) -MediaHubDownloadPolicyChangedType._all_fields_ = [('description', MediaHubDownloadPolicyChangedType.description.validator)] +MediaHubDownloadPolicyChangedType._all_field_names_ = set(["description"]) +MediaHubDownloadPolicyChangedType._all_fields_ = [ + ("description", MediaHubDownloadPolicyChangedType.description.validator) +] MediaHubFileDownloadedDetails._all_field_names_ = set([]) MediaHubFileDownloadedDetails._all_fields_ = [] MediaHubFileDownloadedType.description.validator = bv.String() -MediaHubFileDownloadedType._all_field_names_ = set(['description']) -MediaHubFileDownloadedType._all_fields_ = [('description', MediaHubFileDownloadedType.description.validator)] +MediaHubFileDownloadedType._all_field_names_ = set(["description"]) +MediaHubFileDownloadedType._all_fields_ = [ + ("description", MediaHubFileDownloadedType.description.validator) +] MediaHubLinkSharingPolicy._no_one_validator = bv.Void() MediaHubLinkSharingPolicy._public_validator = bv.Void() MediaHubLinkSharingPolicy._team_only_validator = bv.Void() MediaHubLinkSharingPolicy._other_validator = bv.Void() MediaHubLinkSharingPolicy._tagmap = { - 'no_one': MediaHubLinkSharingPolicy._no_one_validator, - 'public': MediaHubLinkSharingPolicy._public_validator, - 'team_only': MediaHubLinkSharingPolicy._team_only_validator, - 'other': MediaHubLinkSharingPolicy._other_validator, + "no_one": MediaHubLinkSharingPolicy._no_one_validator, + "public": MediaHubLinkSharingPolicy._public_validator, + "team_only": MediaHubLinkSharingPolicy._team_only_validator, + "other": MediaHubLinkSharingPolicy._other_validator, } -MediaHubLinkSharingPolicy.no_one = MediaHubLinkSharingPolicy('no_one') -MediaHubLinkSharingPolicy.public = MediaHubLinkSharingPolicy('public') -MediaHubLinkSharingPolicy.team_only = MediaHubLinkSharingPolicy('team_only') -MediaHubLinkSharingPolicy.other = MediaHubLinkSharingPolicy('other') +MediaHubLinkSharingPolicy.no_one = MediaHubLinkSharingPolicy("no_one") +MediaHubLinkSharingPolicy.public = MediaHubLinkSharingPolicy("public") +MediaHubLinkSharingPolicy.team_only = MediaHubLinkSharingPolicy("team_only") +MediaHubLinkSharingPolicy.other = MediaHubLinkSharingPolicy("other") MediaHubLinkSharingPolicyChangedDetails.new_value.validator = MediaHubLinkSharingPolicy_validator -MediaHubLinkSharingPolicyChangedDetails.previous_value.validator = MediaHubLinkSharingPolicy_validator -MediaHubLinkSharingPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MediaHubLinkSharingPolicyChangedDetails.previous_value.validator = ( + MediaHubLinkSharingPolicy_validator +) +MediaHubLinkSharingPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MediaHubLinkSharingPolicyChangedDetails._all_fields_ = [ - ('new_value', MediaHubLinkSharingPolicyChangedDetails.new_value.validator), - ('previous_value', MediaHubLinkSharingPolicyChangedDetails.previous_value.validator), + ("new_value", MediaHubLinkSharingPolicyChangedDetails.new_value.validator), + ( + "previous_value", + MediaHubLinkSharingPolicyChangedDetails.previous_value.validator, + ), ] MediaHubLinkSharingPolicyChangedType.description.validator = bv.String() -MediaHubLinkSharingPolicyChangedType._all_field_names_ = set(['description']) -MediaHubLinkSharingPolicyChangedType._all_fields_ = [('description', MediaHubLinkSharingPolicyChangedType.description.validator)] +MediaHubLinkSharingPolicyChangedType._all_field_names_ = set(["description"]) +MediaHubLinkSharingPolicyChangedType._all_fields_ = [ + ("description", MediaHubLinkSharingPolicyChangedType.description.validator) +] MediaHubProjectRole._editor_validator = bv.Void() MediaHubProjectRole._owner_validator = bv.Void() MediaHubProjectRole._reviewer_validator = bv.Void() MediaHubProjectRole._other_validator = bv.Void() MediaHubProjectRole._tagmap = { - 'editor': MediaHubProjectRole._editor_validator, - 'owner': MediaHubProjectRole._owner_validator, - 'reviewer': MediaHubProjectRole._reviewer_validator, - 'other': MediaHubProjectRole._other_validator, + "editor": MediaHubProjectRole._editor_validator, + "owner": MediaHubProjectRole._owner_validator, + "reviewer": MediaHubProjectRole._reviewer_validator, + "other": MediaHubProjectRole._other_validator, } -MediaHubProjectRole.editor = MediaHubProjectRole('editor') -MediaHubProjectRole.owner = MediaHubProjectRole('owner') -MediaHubProjectRole.reviewer = MediaHubProjectRole('reviewer') -MediaHubProjectRole.other = MediaHubProjectRole('other') +MediaHubProjectRole.editor = MediaHubProjectRole("editor") +MediaHubProjectRole.owner = MediaHubProjectRole("owner") +MediaHubProjectRole.reviewer = MediaHubProjectRole("reviewer") +MediaHubProjectRole.other = MediaHubProjectRole("other") MediaHubProjectTeamAddDetails._all_field_names_ = set([]) MediaHubProjectTeamAddDetails._all_fields_ = [] MediaHubProjectTeamAddType.description.validator = bv.String() -MediaHubProjectTeamAddType._all_field_names_ = set(['description']) -MediaHubProjectTeamAddType._all_fields_ = [('description', MediaHubProjectTeamAddType.description.validator)] +MediaHubProjectTeamAddType._all_field_names_ = set(["description"]) +MediaHubProjectTeamAddType._all_fields_ = [ + ("description", MediaHubProjectTeamAddType.description.validator) +] MediaHubProjectTeamDeleteDetails._all_field_names_ = set([]) MediaHubProjectTeamDeleteDetails._all_fields_ = [] MediaHubProjectTeamDeleteType.description.validator = bv.String() -MediaHubProjectTeamDeleteType._all_field_names_ = set(['description']) -MediaHubProjectTeamDeleteType._all_fields_ = [('description', MediaHubProjectTeamDeleteType.description.validator)] +MediaHubProjectTeamDeleteType._all_field_names_ = set(["description"]) +MediaHubProjectTeamDeleteType._all_fields_ = [ + ("description", MediaHubProjectTeamDeleteType.description.validator) +] MediaHubProjectTeamRoleChangedDetails.previous_role.validator = MediaHubProjectRole_validator MediaHubProjectTeamRoleChangedDetails.new_role.validator = MediaHubProjectRole_validator -MediaHubProjectTeamRoleChangedDetails._all_field_names_ = set([ - 'previous_role', - 'new_role', -]) +MediaHubProjectTeamRoleChangedDetails._all_field_names_ = set( + [ + "previous_role", + "new_role", + ] +) MediaHubProjectTeamRoleChangedDetails._all_fields_ = [ - ('previous_role', MediaHubProjectTeamRoleChangedDetails.previous_role.validator), - ('new_role', MediaHubProjectTeamRoleChangedDetails.new_role.validator), + ("previous_role", MediaHubProjectTeamRoleChangedDetails.previous_role.validator), + ("new_role", MediaHubProjectTeamRoleChangedDetails.new_role.validator), ] MediaHubProjectTeamRoleChangedType.description.validator = bv.String() -MediaHubProjectTeamRoleChangedType._all_field_names_ = set(['description']) -MediaHubProjectTeamRoleChangedType._all_fields_ = [('description', MediaHubProjectTeamRoleChangedType.description.validator)] +MediaHubProjectTeamRoleChangedType._all_field_names_ = set(["description"]) +MediaHubProjectTeamRoleChangedType._all_fields_ = [ + ("description", MediaHubProjectTeamRoleChangedType.description.validator) +] MediaHubSharedLinkAudience._no_one_validator = bv.Void() MediaHubSharedLinkAudience._public_validator = bv.Void() MediaHubSharedLinkAudience._team_only_validator = bv.Void() MediaHubSharedLinkAudience._other_validator = bv.Void() MediaHubSharedLinkAudience._tagmap = { - 'no_one': MediaHubSharedLinkAudience._no_one_validator, - 'public': MediaHubSharedLinkAudience._public_validator, - 'team_only': MediaHubSharedLinkAudience._team_only_validator, - 'other': MediaHubSharedLinkAudience._other_validator, + "no_one": MediaHubSharedLinkAudience._no_one_validator, + "public": MediaHubSharedLinkAudience._public_validator, + "team_only": MediaHubSharedLinkAudience._team_only_validator, + "other": MediaHubSharedLinkAudience._other_validator, } -MediaHubSharedLinkAudience.no_one = MediaHubSharedLinkAudience('no_one') -MediaHubSharedLinkAudience.public = MediaHubSharedLinkAudience('public') -MediaHubSharedLinkAudience.team_only = MediaHubSharedLinkAudience('team_only') -MediaHubSharedLinkAudience.other = MediaHubSharedLinkAudience('other') +MediaHubSharedLinkAudience.no_one = MediaHubSharedLinkAudience("no_one") +MediaHubSharedLinkAudience.public = MediaHubSharedLinkAudience("public") +MediaHubSharedLinkAudience.team_only = MediaHubSharedLinkAudience("team_only") +MediaHubSharedLinkAudience.other = MediaHubSharedLinkAudience("other") -MediaHubSharedLinkAudienceChangedDetails.target_type.validator = MediaHubSharedLinkTargetType_validator -MediaHubSharedLinkAudienceChangedDetails.previous_value.validator = MediaHubSharedLinkAudience_validator +MediaHubSharedLinkAudienceChangedDetails.target_type.validator = ( + MediaHubSharedLinkTargetType_validator +) +MediaHubSharedLinkAudienceChangedDetails.previous_value.validator = ( + MediaHubSharedLinkAudience_validator +) MediaHubSharedLinkAudienceChangedDetails.new_value.validator = MediaHubSharedLinkAudience_validator -MediaHubSharedLinkAudienceChangedDetails._all_field_names_ = set([ - 'target_type', - 'previous_value', - 'new_value', -]) +MediaHubSharedLinkAudienceChangedDetails._all_field_names_ = set( + [ + "target_type", + "previous_value", + "new_value", + ] +) MediaHubSharedLinkAudienceChangedDetails._all_fields_ = [ - ('target_type', MediaHubSharedLinkAudienceChangedDetails.target_type.validator), - ('previous_value', MediaHubSharedLinkAudienceChangedDetails.previous_value.validator), - ('new_value', MediaHubSharedLinkAudienceChangedDetails.new_value.validator), + ("target_type", MediaHubSharedLinkAudienceChangedDetails.target_type.validator), + ( + "previous_value", + MediaHubSharedLinkAudienceChangedDetails.previous_value.validator, + ), + ("new_value", MediaHubSharedLinkAudienceChangedDetails.new_value.validator), ] MediaHubSharedLinkAudienceChangedType.description.validator = bv.String() -MediaHubSharedLinkAudienceChangedType._all_field_names_ = set(['description']) -MediaHubSharedLinkAudienceChangedType._all_fields_ = [('description', MediaHubSharedLinkAudienceChangedType.description.validator)] +MediaHubSharedLinkAudienceChangedType._all_field_names_ = set(["description"]) +MediaHubSharedLinkAudienceChangedType._all_fields_ = [ + ("description", MediaHubSharedLinkAudienceChangedType.description.validator) +] MediaHubSharedLinkCreatedDetails.target_type.validator = MediaHubSharedLinkTargetType_validator MediaHubSharedLinkCreatedDetails.audience.validator = MediaHubSharedLinkAudience_validator -MediaHubSharedLinkCreatedDetails._all_field_names_ = set([ - 'target_type', - 'audience', -]) +MediaHubSharedLinkCreatedDetails._all_field_names_ = set( + [ + "target_type", + "audience", + ] +) MediaHubSharedLinkCreatedDetails._all_fields_ = [ - ('target_type', MediaHubSharedLinkCreatedDetails.target_type.validator), - ('audience', MediaHubSharedLinkCreatedDetails.audience.validator), + ("target_type", MediaHubSharedLinkCreatedDetails.target_type.validator), + ("audience", MediaHubSharedLinkCreatedDetails.audience.validator), ] MediaHubSharedLinkCreatedType.description.validator = bv.String() -MediaHubSharedLinkCreatedType._all_field_names_ = set(['description']) -MediaHubSharedLinkCreatedType._all_fields_ = [('description', MediaHubSharedLinkCreatedType.description.validator)] +MediaHubSharedLinkCreatedType._all_field_names_ = set(["description"]) +MediaHubSharedLinkCreatedType._all_fields_ = [ + ("description", MediaHubSharedLinkCreatedType.description.validator) +] MediaHubSharedLinkDownloadSetting._disabled_validator = bv.Void() MediaHubSharedLinkDownloadSetting._enabled_validator = bv.Void() MediaHubSharedLinkDownloadSetting._other_validator = bv.Void() MediaHubSharedLinkDownloadSetting._tagmap = { - 'disabled': MediaHubSharedLinkDownloadSetting._disabled_validator, - 'enabled': MediaHubSharedLinkDownloadSetting._enabled_validator, - 'other': MediaHubSharedLinkDownloadSetting._other_validator, + "disabled": MediaHubSharedLinkDownloadSetting._disabled_validator, + "enabled": MediaHubSharedLinkDownloadSetting._enabled_validator, + "other": MediaHubSharedLinkDownloadSetting._other_validator, } -MediaHubSharedLinkDownloadSetting.disabled = MediaHubSharedLinkDownloadSetting('disabled') -MediaHubSharedLinkDownloadSetting.enabled = MediaHubSharedLinkDownloadSetting('enabled') -MediaHubSharedLinkDownloadSetting.other = MediaHubSharedLinkDownloadSetting('other') - -MediaHubSharedLinkDownloadSettingChangedDetails.target_type.validator = MediaHubSharedLinkTargetType_validator -MediaHubSharedLinkDownloadSettingChangedDetails.previous_value.validator = MediaHubSharedLinkDownloadSetting_validator -MediaHubSharedLinkDownloadSettingChangedDetails.new_value.validator = MediaHubSharedLinkDownloadSetting_validator -MediaHubSharedLinkDownloadSettingChangedDetails._all_field_names_ = set([ - 'target_type', - 'previous_value', - 'new_value', -]) +MediaHubSharedLinkDownloadSetting.disabled = MediaHubSharedLinkDownloadSetting("disabled") +MediaHubSharedLinkDownloadSetting.enabled = MediaHubSharedLinkDownloadSetting("enabled") +MediaHubSharedLinkDownloadSetting.other = MediaHubSharedLinkDownloadSetting("other") + +MediaHubSharedLinkDownloadSettingChangedDetails.target_type.validator = ( + MediaHubSharedLinkTargetType_validator +) +MediaHubSharedLinkDownloadSettingChangedDetails.previous_value.validator = ( + MediaHubSharedLinkDownloadSetting_validator +) +MediaHubSharedLinkDownloadSettingChangedDetails.new_value.validator = ( + MediaHubSharedLinkDownloadSetting_validator +) +MediaHubSharedLinkDownloadSettingChangedDetails._all_field_names_ = set( + [ + "target_type", + "previous_value", + "new_value", + ] +) MediaHubSharedLinkDownloadSettingChangedDetails._all_fields_ = [ - ('target_type', MediaHubSharedLinkDownloadSettingChangedDetails.target_type.validator), - ('previous_value', MediaHubSharedLinkDownloadSettingChangedDetails.previous_value.validator), - ('new_value', MediaHubSharedLinkDownloadSettingChangedDetails.new_value.validator), + ( + "target_type", + MediaHubSharedLinkDownloadSettingChangedDetails.target_type.validator, + ), + ( + "previous_value", + MediaHubSharedLinkDownloadSettingChangedDetails.previous_value.validator, + ), + ("new_value", MediaHubSharedLinkDownloadSettingChangedDetails.new_value.validator), ] MediaHubSharedLinkDownloadSettingChangedType.description.validator = bv.String() -MediaHubSharedLinkDownloadSettingChangedType._all_field_names_ = set(['description']) -MediaHubSharedLinkDownloadSettingChangedType._all_fields_ = [('description', MediaHubSharedLinkDownloadSettingChangedType.description.validator)] +MediaHubSharedLinkDownloadSettingChangedType._all_field_names_ = set(["description"]) +MediaHubSharedLinkDownloadSettingChangedType._all_fields_ = [ + ("description", MediaHubSharedLinkDownloadSettingChangedType.description.validator) +] MediaHubSharedLinkRevokedDetails.target_type.validator = MediaHubSharedLinkTargetType_validator -MediaHubSharedLinkRevokedDetails._all_field_names_ = set(['target_type']) -MediaHubSharedLinkRevokedDetails._all_fields_ = [('target_type', MediaHubSharedLinkRevokedDetails.target_type.validator)] +MediaHubSharedLinkRevokedDetails._all_field_names_ = set(["target_type"]) +MediaHubSharedLinkRevokedDetails._all_fields_ = [ + ("target_type", MediaHubSharedLinkRevokedDetails.target_type.validator) +] MediaHubSharedLinkRevokedType.description.validator = bv.String() -MediaHubSharedLinkRevokedType._all_field_names_ = set(['description']) -MediaHubSharedLinkRevokedType._all_fields_ = [('description', MediaHubSharedLinkRevokedType.description.validator)] +MediaHubSharedLinkRevokedType._all_field_names_ = set(["description"]) +MediaHubSharedLinkRevokedType._all_fields_ = [ + ("description", MediaHubSharedLinkRevokedType.description.validator) +] MediaHubSharedLinkTargetType._bundle_validator = bv.Void() MediaHubSharedLinkTargetType._project_validator = bv.Void() MediaHubSharedLinkTargetType._other_validator = bv.Void() MediaHubSharedLinkTargetType._tagmap = { - 'bundle': MediaHubSharedLinkTargetType._bundle_validator, - 'project': MediaHubSharedLinkTargetType._project_validator, - 'other': MediaHubSharedLinkTargetType._other_validator, + "bundle": MediaHubSharedLinkTargetType._bundle_validator, + "project": MediaHubSharedLinkTargetType._project_validator, + "other": MediaHubSharedLinkTargetType._other_validator, } -MediaHubSharedLinkTargetType.bundle = MediaHubSharedLinkTargetType('bundle') -MediaHubSharedLinkTargetType.project = MediaHubSharedLinkTargetType('project') -MediaHubSharedLinkTargetType.other = MediaHubSharedLinkTargetType('other') +MediaHubSharedLinkTargetType.bundle = MediaHubSharedLinkTargetType("bundle") +MediaHubSharedLinkTargetType.project = MediaHubSharedLinkTargetType("project") +MediaHubSharedLinkTargetType.other = MediaHubSharedLinkTargetType("other") MemberAccessDetailsCreateReportDetails._all_field_names_ = set([]) MemberAccessDetailsCreateReportDetails._all_fields_ = [] -MemberAccessDetailsCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -MemberAccessDetailsCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) -MemberAccessDetailsCreateReportFailedDetails._all_fields_ = [('failure_reason', MemberAccessDetailsCreateReportFailedDetails.failure_reason.validator)] +MemberAccessDetailsCreateReportFailedDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +MemberAccessDetailsCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) +MemberAccessDetailsCreateReportFailedDetails._all_fields_ = [ + ( + "failure_reason", + MemberAccessDetailsCreateReportFailedDetails.failure_reason.validator, + ) +] MemberAccessDetailsCreateReportFailedType.description.validator = bv.String() -MemberAccessDetailsCreateReportFailedType._all_field_names_ = set(['description']) -MemberAccessDetailsCreateReportFailedType._all_fields_ = [('description', MemberAccessDetailsCreateReportFailedType.description.validator)] +MemberAccessDetailsCreateReportFailedType._all_field_names_ = set(["description"]) +MemberAccessDetailsCreateReportFailedType._all_fields_ = [ + ("description", MemberAccessDetailsCreateReportFailedType.description.validator) +] MemberAccessDetailsCreateReportType.description.validator = bv.String() -MemberAccessDetailsCreateReportType._all_field_names_ = set(['description']) -MemberAccessDetailsCreateReportType._all_fields_ = [('description', MemberAccessDetailsCreateReportType.description.validator)] +MemberAccessDetailsCreateReportType._all_field_names_ = set(["description"]) +MemberAccessDetailsCreateReportType._all_fields_ = [ + ("description", MemberAccessDetailsCreateReportType.description.validator) +] MemberAddExternalIdDetails.new_value.validator = team_common.MemberExternalId_validator -MemberAddExternalIdDetails._all_field_names_ = set(['new_value']) -MemberAddExternalIdDetails._all_fields_ = [('new_value', MemberAddExternalIdDetails.new_value.validator)] +MemberAddExternalIdDetails._all_field_names_ = set(["new_value"]) +MemberAddExternalIdDetails._all_fields_ = [ + ("new_value", MemberAddExternalIdDetails.new_value.validator) +] MemberAddExternalIdType.description.validator = bv.String() -MemberAddExternalIdType._all_field_names_ = set(['description']) -MemberAddExternalIdType._all_fields_ = [('description', MemberAddExternalIdType.description.validator)] +MemberAddExternalIdType._all_field_names_ = set(["description"]) +MemberAddExternalIdType._all_fields_ = [ + ("description", MemberAddExternalIdType.description.validator) +] MemberAddNameDetails.new_value.validator = UserNameLogInfo_validator -MemberAddNameDetails._all_field_names_ = set(['new_value']) -MemberAddNameDetails._all_fields_ = [('new_value', MemberAddNameDetails.new_value.validator)] +MemberAddNameDetails._all_field_names_ = set(["new_value"]) +MemberAddNameDetails._all_fields_ = [("new_value", MemberAddNameDetails.new_value.validator)] MemberAddNameType.description.validator = bv.String() -MemberAddNameType._all_field_names_ = set(['description']) -MemberAddNameType._all_fields_ = [('description', MemberAddNameType.description.validator)] +MemberAddNameType._all_field_names_ = set(["description"]) +MemberAddNameType._all_fields_ = [("description", MemberAddNameType.description.validator)] MemberChangeAdminRoleDetails.new_value.validator = bv.Nullable(AdminRole_validator) MemberChangeAdminRoleDetails.previous_value.validator = bv.Nullable(AdminRole_validator) -MemberChangeAdminRoleDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MemberChangeAdminRoleDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MemberChangeAdminRoleDetails._all_fields_ = [ - ('new_value', MemberChangeAdminRoleDetails.new_value.validator), - ('previous_value', MemberChangeAdminRoleDetails.previous_value.validator), + ("new_value", MemberChangeAdminRoleDetails.new_value.validator), + ("previous_value", MemberChangeAdminRoleDetails.previous_value.validator), ] MemberChangeAdminRoleType.description.validator = bv.String() -MemberChangeAdminRoleType._all_field_names_ = set(['description']) -MemberChangeAdminRoleType._all_fields_ = [('description', MemberChangeAdminRoleType.description.validator)] +MemberChangeAdminRoleType._all_field_names_ = set(["description"]) +MemberChangeAdminRoleType._all_fields_ = [ + ("description", MemberChangeAdminRoleType.description.validator) +] MemberChangeEmailDetails.new_value.validator = EmailAddress_validator MemberChangeEmailDetails.previous_value.validator = bv.Nullable(EmailAddress_validator) -MemberChangeEmailDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MemberChangeEmailDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MemberChangeEmailDetails._all_fields_ = [ - ('new_value', MemberChangeEmailDetails.new_value.validator), - ('previous_value', MemberChangeEmailDetails.previous_value.validator), + ("new_value", MemberChangeEmailDetails.new_value.validator), + ("previous_value", MemberChangeEmailDetails.previous_value.validator), ] MemberChangeEmailType.description.validator = bv.String() -MemberChangeEmailType._all_field_names_ = set(['description']) -MemberChangeEmailType._all_fields_ = [('description', MemberChangeEmailType.description.validator)] +MemberChangeEmailType._all_field_names_ = set(["description"]) +MemberChangeEmailType._all_fields_ = [("description", MemberChangeEmailType.description.validator)] MemberChangeExternalIdDetails.new_value.validator = team_common.MemberExternalId_validator MemberChangeExternalIdDetails.previous_value.validator = team_common.MemberExternalId_validator -MemberChangeExternalIdDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MemberChangeExternalIdDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MemberChangeExternalIdDetails._all_fields_ = [ - ('new_value', MemberChangeExternalIdDetails.new_value.validator), - ('previous_value', MemberChangeExternalIdDetails.previous_value.validator), + ("new_value", MemberChangeExternalIdDetails.new_value.validator), + ("previous_value", MemberChangeExternalIdDetails.previous_value.validator), ] MemberChangeExternalIdType.description.validator = bv.String() -MemberChangeExternalIdType._all_field_names_ = set(['description']) -MemberChangeExternalIdType._all_fields_ = [('description', MemberChangeExternalIdType.description.validator)] +MemberChangeExternalIdType._all_field_names_ = set(["description"]) +MemberChangeExternalIdType._all_fields_ = [ + ("description", MemberChangeExternalIdType.description.validator) +] MemberChangeMembershipTypeDetails.prev_value.validator = TeamMembershipType_validator MemberChangeMembershipTypeDetails.new_value.validator = TeamMembershipType_validator -MemberChangeMembershipTypeDetails._all_field_names_ = set([ - 'prev_value', - 'new_value', -]) +MemberChangeMembershipTypeDetails._all_field_names_ = set( + [ + "prev_value", + "new_value", + ] +) MemberChangeMembershipTypeDetails._all_fields_ = [ - ('prev_value', MemberChangeMembershipTypeDetails.prev_value.validator), - ('new_value', MemberChangeMembershipTypeDetails.new_value.validator), + ("prev_value", MemberChangeMembershipTypeDetails.prev_value.validator), + ("new_value", MemberChangeMembershipTypeDetails.new_value.validator), ] MemberChangeMembershipTypeType.description.validator = bv.String() -MemberChangeMembershipTypeType._all_field_names_ = set(['description']) -MemberChangeMembershipTypeType._all_fields_ = [('description', MemberChangeMembershipTypeType.description.validator)] +MemberChangeMembershipTypeType._all_field_names_ = set(["description"]) +MemberChangeMembershipTypeType._all_fields_ = [ + ("description", MemberChangeMembershipTypeType.description.validator) +] MemberChangeNameDetails.new_value.validator = UserNameLogInfo_validator MemberChangeNameDetails.previous_value.validator = bv.Nullable(UserNameLogInfo_validator) -MemberChangeNameDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MemberChangeNameDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MemberChangeNameDetails._all_fields_ = [ - ('new_value', MemberChangeNameDetails.new_value.validator), - ('previous_value', MemberChangeNameDetails.previous_value.validator), + ("new_value", MemberChangeNameDetails.new_value.validator), + ("previous_value", MemberChangeNameDetails.previous_value.validator), ] MemberChangeNameType.description.validator = bv.String() -MemberChangeNameType._all_field_names_ = set(['description']) -MemberChangeNameType._all_fields_ = [('description', MemberChangeNameType.description.validator)] +MemberChangeNameType._all_field_names_ = set(["description"]) +MemberChangeNameType._all_fields_ = [("description", MemberChangeNameType.description.validator)] MemberChangeResellerRoleDetails.new_value.validator = ResellerRole_validator MemberChangeResellerRoleDetails.previous_value.validator = ResellerRole_validator -MemberChangeResellerRoleDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MemberChangeResellerRoleDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MemberChangeResellerRoleDetails._all_fields_ = [ - ('new_value', MemberChangeResellerRoleDetails.new_value.validator), - ('previous_value', MemberChangeResellerRoleDetails.previous_value.validator), + ("new_value", MemberChangeResellerRoleDetails.new_value.validator), + ("previous_value", MemberChangeResellerRoleDetails.previous_value.validator), ] MemberChangeResellerRoleType.description.validator = bv.String() -MemberChangeResellerRoleType._all_field_names_ = set(['description']) -MemberChangeResellerRoleType._all_fields_ = [('description', MemberChangeResellerRoleType.description.validator)] +MemberChangeResellerRoleType._all_field_names_ = set(["description"]) +MemberChangeResellerRoleType._all_fields_ = [ + ("description", MemberChangeResellerRoleType.description.validator) +] MemberChangeStatusDetails.previous_value.validator = bv.Nullable(MemberStatus_validator) MemberChangeStatusDetails.new_value.validator = MemberStatus_validator MemberChangeStatusDetails.action.validator = bv.Nullable(ActionDetails_validator) MemberChangeStatusDetails.new_team.validator = bv.Nullable(bv.String()) MemberChangeStatusDetails.previous_team.validator = bv.Nullable(bv.String()) -MemberChangeStatusDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', - 'action', - 'new_team', - 'previous_team', -]) +MemberChangeStatusDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + "action", + "new_team", + "previous_team", + ] +) MemberChangeStatusDetails._all_fields_ = [ - ('previous_value', MemberChangeStatusDetails.previous_value.validator), - ('new_value', MemberChangeStatusDetails.new_value.validator), - ('action', MemberChangeStatusDetails.action.validator), - ('new_team', MemberChangeStatusDetails.new_team.validator), - ('previous_team', MemberChangeStatusDetails.previous_team.validator), + ("previous_value", MemberChangeStatusDetails.previous_value.validator), + ("new_value", MemberChangeStatusDetails.new_value.validator), + ("action", MemberChangeStatusDetails.action.validator), + ("new_team", MemberChangeStatusDetails.new_team.validator), + ("previous_team", MemberChangeStatusDetails.previous_team.validator), ] MemberChangeStatusType.description.validator = bv.String() -MemberChangeStatusType._all_field_names_ = set(['description']) -MemberChangeStatusType._all_fields_ = [('description', MemberChangeStatusType.description.validator)] +MemberChangeStatusType._all_field_names_ = set(["description"]) +MemberChangeStatusType._all_fields_ = [ + ("description", MemberChangeStatusType.description.validator) +] MemberDeleteManualContactsDetails._all_field_names_ = set([]) MemberDeleteManualContactsDetails._all_fields_ = [] MemberDeleteManualContactsType.description.validator = bv.String() -MemberDeleteManualContactsType._all_field_names_ = set(['description']) -MemberDeleteManualContactsType._all_fields_ = [('description', MemberDeleteManualContactsType.description.validator)] +MemberDeleteManualContactsType._all_field_names_ = set(["description"]) +MemberDeleteManualContactsType._all_fields_ = [ + ("description", MemberDeleteManualContactsType.description.validator) +] MemberDeleteProfilePhotoDetails._all_field_names_ = set([]) MemberDeleteProfilePhotoDetails._all_fields_ = [] MemberDeleteProfilePhotoType.description.validator = bv.String() -MemberDeleteProfilePhotoType._all_field_names_ = set(['description']) -MemberDeleteProfilePhotoType._all_fields_ = [('description', MemberDeleteProfilePhotoType.description.validator)] +MemberDeleteProfilePhotoType._all_field_names_ = set(["description"]) +MemberDeleteProfilePhotoType._all_fields_ = [ + ("description", MemberDeleteProfilePhotoType.description.validator) +] MemberPermanentlyDeleteAccountContentsDetails._all_field_names_ = set([]) MemberPermanentlyDeleteAccountContentsDetails._all_fields_ = [] MemberPermanentlyDeleteAccountContentsType.description.validator = bv.String() -MemberPermanentlyDeleteAccountContentsType._all_field_names_ = set(['description']) -MemberPermanentlyDeleteAccountContentsType._all_fields_ = [('description', MemberPermanentlyDeleteAccountContentsType.description.validator)] +MemberPermanentlyDeleteAccountContentsType._all_field_names_ = set(["description"]) +MemberPermanentlyDeleteAccountContentsType._all_fields_ = [ + ("description", MemberPermanentlyDeleteAccountContentsType.description.validator) +] MemberRemoveActionType._delete_validator = bv.Void() MemberRemoveActionType._leave_validator = bv.Void() @@ -103511,184 +110131,234 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberRemoveActionType._offboard_and_retain_team_folders_validator = bv.Void() MemberRemoveActionType._other_validator = bv.Void() MemberRemoveActionType._tagmap = { - 'delete': MemberRemoveActionType._delete_validator, - 'leave': MemberRemoveActionType._leave_validator, - 'offboard': MemberRemoveActionType._offboard_validator, - 'offboard_and_retain_team_folders': MemberRemoveActionType._offboard_and_retain_team_folders_validator, - 'other': MemberRemoveActionType._other_validator, + "delete": MemberRemoveActionType._delete_validator, + "leave": MemberRemoveActionType._leave_validator, + "offboard": MemberRemoveActionType._offboard_validator, + "offboard_and_retain_team_folders": MemberRemoveActionType._offboard_and_retain_team_folders_validator, + "other": MemberRemoveActionType._other_validator, } -MemberRemoveActionType.delete = MemberRemoveActionType('delete') -MemberRemoveActionType.leave = MemberRemoveActionType('leave') -MemberRemoveActionType.offboard = MemberRemoveActionType('offboard') -MemberRemoveActionType.offboard_and_retain_team_folders = MemberRemoveActionType('offboard_and_retain_team_folders') -MemberRemoveActionType.other = MemberRemoveActionType('other') +MemberRemoveActionType.delete = MemberRemoveActionType("delete") +MemberRemoveActionType.leave = MemberRemoveActionType("leave") +MemberRemoveActionType.offboard = MemberRemoveActionType("offboard") +MemberRemoveActionType.offboard_and_retain_team_folders = MemberRemoveActionType( + "offboard_and_retain_team_folders" +) +MemberRemoveActionType.other = MemberRemoveActionType("other") MemberRemoveExternalIdDetails.previous_value.validator = team_common.MemberExternalId_validator -MemberRemoveExternalIdDetails._all_field_names_ = set(['previous_value']) -MemberRemoveExternalIdDetails._all_fields_ = [('previous_value', MemberRemoveExternalIdDetails.previous_value.validator)] +MemberRemoveExternalIdDetails._all_field_names_ = set(["previous_value"]) +MemberRemoveExternalIdDetails._all_fields_ = [ + ("previous_value", MemberRemoveExternalIdDetails.previous_value.validator) +] MemberRemoveExternalIdType.description.validator = bv.String() -MemberRemoveExternalIdType._all_field_names_ = set(['description']) -MemberRemoveExternalIdType._all_fields_ = [('description', MemberRemoveExternalIdType.description.validator)] +MemberRemoveExternalIdType._all_field_names_ = set(["description"]) +MemberRemoveExternalIdType._all_fields_ = [ + ("description", MemberRemoveExternalIdType.description.validator) +] MemberRequestsChangePolicyDetails.new_value.validator = MemberRequestsPolicy_validator -MemberRequestsChangePolicyDetails.previous_value.validator = bv.Nullable(MemberRequestsPolicy_validator) -MemberRequestsChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MemberRequestsChangePolicyDetails.previous_value.validator = bv.Nullable( + MemberRequestsPolicy_validator +) +MemberRequestsChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MemberRequestsChangePolicyDetails._all_fields_ = [ - ('new_value', MemberRequestsChangePolicyDetails.new_value.validator), - ('previous_value', MemberRequestsChangePolicyDetails.previous_value.validator), + ("new_value", MemberRequestsChangePolicyDetails.new_value.validator), + ("previous_value", MemberRequestsChangePolicyDetails.previous_value.validator), ] MemberRequestsChangePolicyType.description.validator = bv.String() -MemberRequestsChangePolicyType._all_field_names_ = set(['description']) -MemberRequestsChangePolicyType._all_fields_ = [('description', MemberRequestsChangePolicyType.description.validator)] +MemberRequestsChangePolicyType._all_field_names_ = set(["description"]) +MemberRequestsChangePolicyType._all_fields_ = [ + ("description", MemberRequestsChangePolicyType.description.validator) +] MemberRequestsPolicy._auto_accept_validator = bv.Void() MemberRequestsPolicy._disabled_validator = bv.Void() MemberRequestsPolicy._require_approval_validator = bv.Void() MemberRequestsPolicy._other_validator = bv.Void() MemberRequestsPolicy._tagmap = { - 'auto_accept': MemberRequestsPolicy._auto_accept_validator, - 'disabled': MemberRequestsPolicy._disabled_validator, - 'require_approval': MemberRequestsPolicy._require_approval_validator, - 'other': MemberRequestsPolicy._other_validator, + "auto_accept": MemberRequestsPolicy._auto_accept_validator, + "disabled": MemberRequestsPolicy._disabled_validator, + "require_approval": MemberRequestsPolicy._require_approval_validator, + "other": MemberRequestsPolicy._other_validator, } -MemberRequestsPolicy.auto_accept = MemberRequestsPolicy('auto_accept') -MemberRequestsPolicy.disabled = MemberRequestsPolicy('disabled') -MemberRequestsPolicy.require_approval = MemberRequestsPolicy('require_approval') -MemberRequestsPolicy.other = MemberRequestsPolicy('other') +MemberRequestsPolicy.auto_accept = MemberRequestsPolicy("auto_accept") +MemberRequestsPolicy.disabled = MemberRequestsPolicy("disabled") +MemberRequestsPolicy.require_approval = MemberRequestsPolicy("require_approval") +MemberRequestsPolicy.other = MemberRequestsPolicy("other") MemberSendInvitePolicy._disabled_validator = bv.Void() MemberSendInvitePolicy._everyone_validator = bv.Void() MemberSendInvitePolicy._specific_members_validator = bv.Void() MemberSendInvitePolicy._other_validator = bv.Void() MemberSendInvitePolicy._tagmap = { - 'disabled': MemberSendInvitePolicy._disabled_validator, - 'everyone': MemberSendInvitePolicy._everyone_validator, - 'specific_members': MemberSendInvitePolicy._specific_members_validator, - 'other': MemberSendInvitePolicy._other_validator, + "disabled": MemberSendInvitePolicy._disabled_validator, + "everyone": MemberSendInvitePolicy._everyone_validator, + "specific_members": MemberSendInvitePolicy._specific_members_validator, + "other": MemberSendInvitePolicy._other_validator, } -MemberSendInvitePolicy.disabled = MemberSendInvitePolicy('disabled') -MemberSendInvitePolicy.everyone = MemberSendInvitePolicy('everyone') -MemberSendInvitePolicy.specific_members = MemberSendInvitePolicy('specific_members') -MemberSendInvitePolicy.other = MemberSendInvitePolicy('other') +MemberSendInvitePolicy.disabled = MemberSendInvitePolicy("disabled") +MemberSendInvitePolicy.everyone = MemberSendInvitePolicy("everyone") +MemberSendInvitePolicy.specific_members = MemberSendInvitePolicy("specific_members") +MemberSendInvitePolicy.other = MemberSendInvitePolicy("other") MemberSendInvitePolicyChangedDetails.new_value.validator = MemberSendInvitePolicy_validator MemberSendInvitePolicyChangedDetails.previous_value.validator = MemberSendInvitePolicy_validator -MemberSendInvitePolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MemberSendInvitePolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MemberSendInvitePolicyChangedDetails._all_fields_ = [ - ('new_value', MemberSendInvitePolicyChangedDetails.new_value.validator), - ('previous_value', MemberSendInvitePolicyChangedDetails.previous_value.validator), + ("new_value", MemberSendInvitePolicyChangedDetails.new_value.validator), + ("previous_value", MemberSendInvitePolicyChangedDetails.previous_value.validator), ] MemberSendInvitePolicyChangedType.description.validator = bv.String() -MemberSendInvitePolicyChangedType._all_field_names_ = set(['description']) -MemberSendInvitePolicyChangedType._all_fields_ = [('description', MemberSendInvitePolicyChangedType.description.validator)] +MemberSendInvitePolicyChangedType._all_field_names_ = set(["description"]) +MemberSendInvitePolicyChangedType._all_fields_ = [ + ("description", MemberSendInvitePolicyChangedType.description.validator) +] MemberSetProfilePhotoDetails._all_field_names_ = set([]) MemberSetProfilePhotoDetails._all_fields_ = [] MemberSetProfilePhotoType.description.validator = bv.String() -MemberSetProfilePhotoType._all_field_names_ = set(['description']) -MemberSetProfilePhotoType._all_fields_ = [('description', MemberSetProfilePhotoType.description.validator)] +MemberSetProfilePhotoType._all_field_names_ = set(["description"]) +MemberSetProfilePhotoType._all_fields_ = [ + ("description", MemberSetProfilePhotoType.description.validator) +] MemberSpaceLimitsAddCustomQuotaDetails.new_value.validator = bv.UInt64() -MemberSpaceLimitsAddCustomQuotaDetails._all_field_names_ = set(['new_value']) -MemberSpaceLimitsAddCustomQuotaDetails._all_fields_ = [('new_value', MemberSpaceLimitsAddCustomQuotaDetails.new_value.validator)] +MemberSpaceLimitsAddCustomQuotaDetails._all_field_names_ = set(["new_value"]) +MemberSpaceLimitsAddCustomQuotaDetails._all_fields_ = [ + ("new_value", MemberSpaceLimitsAddCustomQuotaDetails.new_value.validator) +] MemberSpaceLimitsAddCustomQuotaType.description.validator = bv.String() -MemberSpaceLimitsAddCustomQuotaType._all_field_names_ = set(['description']) -MemberSpaceLimitsAddCustomQuotaType._all_fields_ = [('description', MemberSpaceLimitsAddCustomQuotaType.description.validator)] +MemberSpaceLimitsAddCustomQuotaType._all_field_names_ = set(["description"]) +MemberSpaceLimitsAddCustomQuotaType._all_fields_ = [ + ("description", MemberSpaceLimitsAddCustomQuotaType.description.validator) +] MemberSpaceLimitsAddExceptionDetails._all_field_names_ = set([]) MemberSpaceLimitsAddExceptionDetails._all_fields_ = [] MemberSpaceLimitsAddExceptionType.description.validator = bv.String() -MemberSpaceLimitsAddExceptionType._all_field_names_ = set(['description']) -MemberSpaceLimitsAddExceptionType._all_fields_ = [('description', MemberSpaceLimitsAddExceptionType.description.validator)] +MemberSpaceLimitsAddExceptionType._all_field_names_ = set(["description"]) +MemberSpaceLimitsAddExceptionType._all_fields_ = [ + ("description", MemberSpaceLimitsAddExceptionType.description.validator) +] MemberSpaceLimitsChangeCapsTypePolicyDetails.previous_value.validator = SpaceCapsType_validator MemberSpaceLimitsChangeCapsTypePolicyDetails.new_value.validator = SpaceCapsType_validator -MemberSpaceLimitsChangeCapsTypePolicyDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +MemberSpaceLimitsChangeCapsTypePolicyDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) MemberSpaceLimitsChangeCapsTypePolicyDetails._all_fields_ = [ - ('previous_value', MemberSpaceLimitsChangeCapsTypePolicyDetails.previous_value.validator), - ('new_value', MemberSpaceLimitsChangeCapsTypePolicyDetails.new_value.validator), + ( + "previous_value", + MemberSpaceLimitsChangeCapsTypePolicyDetails.previous_value.validator, + ), + ("new_value", MemberSpaceLimitsChangeCapsTypePolicyDetails.new_value.validator), ] MemberSpaceLimitsChangeCapsTypePolicyType.description.validator = bv.String() -MemberSpaceLimitsChangeCapsTypePolicyType._all_field_names_ = set(['description']) -MemberSpaceLimitsChangeCapsTypePolicyType._all_fields_ = [('description', MemberSpaceLimitsChangeCapsTypePolicyType.description.validator)] +MemberSpaceLimitsChangeCapsTypePolicyType._all_field_names_ = set(["description"]) +MemberSpaceLimitsChangeCapsTypePolicyType._all_fields_ = [ + ("description", MemberSpaceLimitsChangeCapsTypePolicyType.description.validator) +] MemberSpaceLimitsChangeCustomQuotaDetails.previous_value.validator = bv.UInt64() MemberSpaceLimitsChangeCustomQuotaDetails.new_value.validator = bv.UInt64() -MemberSpaceLimitsChangeCustomQuotaDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +MemberSpaceLimitsChangeCustomQuotaDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) MemberSpaceLimitsChangeCustomQuotaDetails._all_fields_ = [ - ('previous_value', MemberSpaceLimitsChangeCustomQuotaDetails.previous_value.validator), - ('new_value', MemberSpaceLimitsChangeCustomQuotaDetails.new_value.validator), + ( + "previous_value", + MemberSpaceLimitsChangeCustomQuotaDetails.previous_value.validator, + ), + ("new_value", MemberSpaceLimitsChangeCustomQuotaDetails.new_value.validator), ] MemberSpaceLimitsChangeCustomQuotaType.description.validator = bv.String() -MemberSpaceLimitsChangeCustomQuotaType._all_field_names_ = set(['description']) -MemberSpaceLimitsChangeCustomQuotaType._all_fields_ = [('description', MemberSpaceLimitsChangeCustomQuotaType.description.validator)] +MemberSpaceLimitsChangeCustomQuotaType._all_field_names_ = set(["description"]) +MemberSpaceLimitsChangeCustomQuotaType._all_fields_ = [ + ("description", MemberSpaceLimitsChangeCustomQuotaType.description.validator) +] MemberSpaceLimitsChangePolicyDetails.previous_value.validator = bv.Nullable(bv.UInt64()) MemberSpaceLimitsChangePolicyDetails.new_value.validator = bv.Nullable(bv.UInt64()) -MemberSpaceLimitsChangePolicyDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +MemberSpaceLimitsChangePolicyDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) MemberSpaceLimitsChangePolicyDetails._all_fields_ = [ - ('previous_value', MemberSpaceLimitsChangePolicyDetails.previous_value.validator), - ('new_value', MemberSpaceLimitsChangePolicyDetails.new_value.validator), + ("previous_value", MemberSpaceLimitsChangePolicyDetails.previous_value.validator), + ("new_value", MemberSpaceLimitsChangePolicyDetails.new_value.validator), ] MemberSpaceLimitsChangePolicyType.description.validator = bv.String() -MemberSpaceLimitsChangePolicyType._all_field_names_ = set(['description']) -MemberSpaceLimitsChangePolicyType._all_fields_ = [('description', MemberSpaceLimitsChangePolicyType.description.validator)] +MemberSpaceLimitsChangePolicyType._all_field_names_ = set(["description"]) +MemberSpaceLimitsChangePolicyType._all_fields_ = [ + ("description", MemberSpaceLimitsChangePolicyType.description.validator) +] MemberSpaceLimitsChangeStatusDetails.previous_value.validator = SpaceLimitsStatus_validator MemberSpaceLimitsChangeStatusDetails.new_value.validator = SpaceLimitsStatus_validator -MemberSpaceLimitsChangeStatusDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +MemberSpaceLimitsChangeStatusDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) MemberSpaceLimitsChangeStatusDetails._all_fields_ = [ - ('previous_value', MemberSpaceLimitsChangeStatusDetails.previous_value.validator), - ('new_value', MemberSpaceLimitsChangeStatusDetails.new_value.validator), + ("previous_value", MemberSpaceLimitsChangeStatusDetails.previous_value.validator), + ("new_value", MemberSpaceLimitsChangeStatusDetails.new_value.validator), ] MemberSpaceLimitsChangeStatusType.description.validator = bv.String() -MemberSpaceLimitsChangeStatusType._all_field_names_ = set(['description']) -MemberSpaceLimitsChangeStatusType._all_fields_ = [('description', MemberSpaceLimitsChangeStatusType.description.validator)] +MemberSpaceLimitsChangeStatusType._all_field_names_ = set(["description"]) +MemberSpaceLimitsChangeStatusType._all_fields_ = [ + ("description", MemberSpaceLimitsChangeStatusType.description.validator) +] MemberSpaceLimitsRemoveCustomQuotaDetails._all_field_names_ = set([]) MemberSpaceLimitsRemoveCustomQuotaDetails._all_fields_ = [] MemberSpaceLimitsRemoveCustomQuotaType.description.validator = bv.String() -MemberSpaceLimitsRemoveCustomQuotaType._all_field_names_ = set(['description']) -MemberSpaceLimitsRemoveCustomQuotaType._all_fields_ = [('description', MemberSpaceLimitsRemoveCustomQuotaType.description.validator)] +MemberSpaceLimitsRemoveCustomQuotaType._all_field_names_ = set(["description"]) +MemberSpaceLimitsRemoveCustomQuotaType._all_fields_ = [ + ("description", MemberSpaceLimitsRemoveCustomQuotaType.description.validator) +] MemberSpaceLimitsRemoveExceptionDetails._all_field_names_ = set([]) MemberSpaceLimitsRemoveExceptionDetails._all_fields_ = [] MemberSpaceLimitsRemoveExceptionType.description.validator = bv.String() -MemberSpaceLimitsRemoveExceptionType._all_field_names_ = set(['description']) -MemberSpaceLimitsRemoveExceptionType._all_fields_ = [('description', MemberSpaceLimitsRemoveExceptionType.description.validator)] +MemberSpaceLimitsRemoveExceptionType._all_field_names_ = set(["description"]) +MemberSpaceLimitsRemoveExceptionType._all_fields_ = [ + ("description", MemberSpaceLimitsRemoveExceptionType.description.validator) +] MemberStatus._active_validator = bv.Void() MemberStatus._invited_validator = bv.Void() @@ -103698,139 +110368,168 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberStatus._suspended_validator = bv.Void() MemberStatus._other_validator = bv.Void() MemberStatus._tagmap = { - 'active': MemberStatus._active_validator, - 'invited': MemberStatus._invited_validator, - 'moved_to_another_team': MemberStatus._moved_to_another_team_validator, - 'not_joined': MemberStatus._not_joined_validator, - 'removed': MemberStatus._removed_validator, - 'suspended': MemberStatus._suspended_validator, - 'other': MemberStatus._other_validator, + "active": MemberStatus._active_validator, + "invited": MemberStatus._invited_validator, + "moved_to_another_team": MemberStatus._moved_to_another_team_validator, + "not_joined": MemberStatus._not_joined_validator, + "removed": MemberStatus._removed_validator, + "suspended": MemberStatus._suspended_validator, + "other": MemberStatus._other_validator, } -MemberStatus.active = MemberStatus('active') -MemberStatus.invited = MemberStatus('invited') -MemberStatus.moved_to_another_team = MemberStatus('moved_to_another_team') -MemberStatus.not_joined = MemberStatus('not_joined') -MemberStatus.removed = MemberStatus('removed') -MemberStatus.suspended = MemberStatus('suspended') -MemberStatus.other = MemberStatus('other') +MemberStatus.active = MemberStatus("active") +MemberStatus.invited = MemberStatus("invited") +MemberStatus.moved_to_another_team = MemberStatus("moved_to_another_team") +MemberStatus.not_joined = MemberStatus("not_joined") +MemberStatus.removed = MemberStatus("removed") +MemberStatus.suspended = MemberStatus("suspended") +MemberStatus.other = MemberStatus("other") MemberSuggestDetails.suggested_members.validator = bv.List(EmailAddress_validator) -MemberSuggestDetails._all_field_names_ = set(['suggested_members']) -MemberSuggestDetails._all_fields_ = [('suggested_members', MemberSuggestDetails.suggested_members.validator)] +MemberSuggestDetails._all_field_names_ = set(["suggested_members"]) +MemberSuggestDetails._all_fields_ = [ + ("suggested_members", MemberSuggestDetails.suggested_members.validator) +] MemberSuggestType.description.validator = bv.String() -MemberSuggestType._all_field_names_ = set(['description']) -MemberSuggestType._all_fields_ = [('description', MemberSuggestType.description.validator)] +MemberSuggestType._all_field_names_ = set(["description"]) +MemberSuggestType._all_fields_ = [("description", MemberSuggestType.description.validator)] MemberSuggestionsChangePolicyDetails.new_value.validator = MemberSuggestionsPolicy_validator -MemberSuggestionsChangePolicyDetails.previous_value.validator = bv.Nullable(MemberSuggestionsPolicy_validator) -MemberSuggestionsChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MemberSuggestionsChangePolicyDetails.previous_value.validator = bv.Nullable( + MemberSuggestionsPolicy_validator +) +MemberSuggestionsChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MemberSuggestionsChangePolicyDetails._all_fields_ = [ - ('new_value', MemberSuggestionsChangePolicyDetails.new_value.validator), - ('previous_value', MemberSuggestionsChangePolicyDetails.previous_value.validator), + ("new_value", MemberSuggestionsChangePolicyDetails.new_value.validator), + ("previous_value", MemberSuggestionsChangePolicyDetails.previous_value.validator), ] MemberSuggestionsChangePolicyType.description.validator = bv.String() -MemberSuggestionsChangePolicyType._all_field_names_ = set(['description']) -MemberSuggestionsChangePolicyType._all_fields_ = [('description', MemberSuggestionsChangePolicyType.description.validator)] +MemberSuggestionsChangePolicyType._all_field_names_ = set(["description"]) +MemberSuggestionsChangePolicyType._all_fields_ = [ + ("description", MemberSuggestionsChangePolicyType.description.validator) +] MemberSuggestionsPolicy._disabled_validator = bv.Void() MemberSuggestionsPolicy._enabled_validator = bv.Void() MemberSuggestionsPolicy._other_validator = bv.Void() MemberSuggestionsPolicy._tagmap = { - 'disabled': MemberSuggestionsPolicy._disabled_validator, - 'enabled': MemberSuggestionsPolicy._enabled_validator, - 'other': MemberSuggestionsPolicy._other_validator, + "disabled": MemberSuggestionsPolicy._disabled_validator, + "enabled": MemberSuggestionsPolicy._enabled_validator, + "other": MemberSuggestionsPolicy._other_validator, } -MemberSuggestionsPolicy.disabled = MemberSuggestionsPolicy('disabled') -MemberSuggestionsPolicy.enabled = MemberSuggestionsPolicy('enabled') -MemberSuggestionsPolicy.other = MemberSuggestionsPolicy('other') +MemberSuggestionsPolicy.disabled = MemberSuggestionsPolicy("disabled") +MemberSuggestionsPolicy.enabled = MemberSuggestionsPolicy("enabled") +MemberSuggestionsPolicy.other = MemberSuggestionsPolicy("other") MemberTransferAccountContentsDetails._all_field_names_ = set([]) MemberTransferAccountContentsDetails._all_fields_ = [] MemberTransferAccountContentsType.description.validator = bv.String() -MemberTransferAccountContentsType._all_field_names_ = set(['description']) -MemberTransferAccountContentsType._all_fields_ = [('description', MemberTransferAccountContentsType.description.validator)] +MemberTransferAccountContentsType._all_field_names_ = set(["description"]) +MemberTransferAccountContentsType._all_fields_ = [ + ("description", MemberTransferAccountContentsType.description.validator) +] MemberTransferredInternalFields.source_team_id.validator = team_common.TeamId_validator MemberTransferredInternalFields.target_team_id.validator = team_common.TeamId_validator -MemberTransferredInternalFields._all_field_names_ = set([ - 'source_team_id', - 'target_team_id', -]) +MemberTransferredInternalFields._all_field_names_ = set( + [ + "source_team_id", + "target_team_id", + ] +) MemberTransferredInternalFields._all_fields_ = [ - ('source_team_id', MemberTransferredInternalFields.source_team_id.validator), - ('target_team_id', MemberTransferredInternalFields.target_team_id.validator), + ("source_team_id", MemberTransferredInternalFields.source_team_id.validator), + ("target_team_id", MemberTransferredInternalFields.target_team_id.validator), ] MicrosoftLoginChangePolicyDetails.new_value.validator = MicrosoftLoginPolicy_validator -MicrosoftLoginChangePolicyDetails.previous_value.validator = bv.Nullable(MicrosoftLoginPolicy_validator) -MicrosoftLoginChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MicrosoftLoginChangePolicyDetails.previous_value.validator = bv.Nullable( + MicrosoftLoginPolicy_validator +) +MicrosoftLoginChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MicrosoftLoginChangePolicyDetails._all_fields_ = [ - ('new_value', MicrosoftLoginChangePolicyDetails.new_value.validator), - ('previous_value', MicrosoftLoginChangePolicyDetails.previous_value.validator), + ("new_value", MicrosoftLoginChangePolicyDetails.new_value.validator), + ("previous_value", MicrosoftLoginChangePolicyDetails.previous_value.validator), ] MicrosoftLoginChangePolicyType.description.validator = bv.String() -MicrosoftLoginChangePolicyType._all_field_names_ = set(['description']) -MicrosoftLoginChangePolicyType._all_fields_ = [('description', MicrosoftLoginChangePolicyType.description.validator)] +MicrosoftLoginChangePolicyType._all_field_names_ = set(["description"]) +MicrosoftLoginChangePolicyType._all_fields_ = [ + ("description", MicrosoftLoginChangePolicyType.description.validator) +] MicrosoftLoginPolicy._default_validator = bv.Void() MicrosoftLoginPolicy._disabled_validator = bv.Void() MicrosoftLoginPolicy._enabled_validator = bv.Void() MicrosoftLoginPolicy._other_validator = bv.Void() MicrosoftLoginPolicy._tagmap = { - 'default': MicrosoftLoginPolicy._default_validator, - 'disabled': MicrosoftLoginPolicy._disabled_validator, - 'enabled': MicrosoftLoginPolicy._enabled_validator, - 'other': MicrosoftLoginPolicy._other_validator, + "default": MicrosoftLoginPolicy._default_validator, + "disabled": MicrosoftLoginPolicy._disabled_validator, + "enabled": MicrosoftLoginPolicy._enabled_validator, + "other": MicrosoftLoginPolicy._other_validator, } -MicrosoftLoginPolicy.default = MicrosoftLoginPolicy('default') -MicrosoftLoginPolicy.disabled = MicrosoftLoginPolicy('disabled') -MicrosoftLoginPolicy.enabled = MicrosoftLoginPolicy('enabled') -MicrosoftLoginPolicy.other = MicrosoftLoginPolicy('other') +MicrosoftLoginPolicy.default = MicrosoftLoginPolicy("default") +MicrosoftLoginPolicy.disabled = MicrosoftLoginPolicy("disabled") +MicrosoftLoginPolicy.enabled = MicrosoftLoginPolicy("enabled") +MicrosoftLoginPolicy.other = MicrosoftLoginPolicy("other") MicrosoftOfficeAddinChangePolicyDetails.new_value.validator = MicrosoftOfficeAddinPolicy_validator -MicrosoftOfficeAddinChangePolicyDetails.previous_value.validator = bv.Nullable(MicrosoftOfficeAddinPolicy_validator) -MicrosoftOfficeAddinChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MicrosoftOfficeAddinChangePolicyDetails.previous_value.validator = bv.Nullable( + MicrosoftOfficeAddinPolicy_validator +) +MicrosoftOfficeAddinChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MicrosoftOfficeAddinChangePolicyDetails._all_fields_ = [ - ('new_value', MicrosoftOfficeAddinChangePolicyDetails.new_value.validator), - ('previous_value', MicrosoftOfficeAddinChangePolicyDetails.previous_value.validator), + ("new_value", MicrosoftOfficeAddinChangePolicyDetails.new_value.validator), + ( + "previous_value", + MicrosoftOfficeAddinChangePolicyDetails.previous_value.validator, + ), ] MicrosoftOfficeAddinChangePolicyType.description.validator = bv.String() -MicrosoftOfficeAddinChangePolicyType._all_field_names_ = set(['description']) -MicrosoftOfficeAddinChangePolicyType._all_fields_ = [('description', MicrosoftOfficeAddinChangePolicyType.description.validator)] +MicrosoftOfficeAddinChangePolicyType._all_field_names_ = set(["description"]) +MicrosoftOfficeAddinChangePolicyType._all_fields_ = [ + ("description", MicrosoftOfficeAddinChangePolicyType.description.validator) +] MicrosoftOfficeAddinPolicy._disabled_validator = bv.Void() MicrosoftOfficeAddinPolicy._enabled_validator = bv.Void() MicrosoftOfficeAddinPolicy._other_validator = bv.Void() MicrosoftOfficeAddinPolicy._tagmap = { - 'disabled': MicrosoftOfficeAddinPolicy._disabled_validator, - 'enabled': MicrosoftOfficeAddinPolicy._enabled_validator, - 'other': MicrosoftOfficeAddinPolicy._other_validator, + "disabled": MicrosoftOfficeAddinPolicy._disabled_validator, + "enabled": MicrosoftOfficeAddinPolicy._enabled_validator, + "other": MicrosoftOfficeAddinPolicy._other_validator, } -MicrosoftOfficeAddinPolicy.disabled = MicrosoftOfficeAddinPolicy('disabled') -MicrosoftOfficeAddinPolicy.enabled = MicrosoftOfficeAddinPolicy('enabled') -MicrosoftOfficeAddinPolicy.other = MicrosoftOfficeAddinPolicy('other') +MicrosoftOfficeAddinPolicy.disabled = MicrosoftOfficeAddinPolicy("disabled") +MicrosoftOfficeAddinPolicy.enabled = MicrosoftOfficeAddinPolicy("enabled") +MicrosoftOfficeAddinPolicy.other = MicrosoftOfficeAddinPolicy("other") MissingDetails.source_event_fields.validator = bv.Nullable(bv.String()) -MissingDetails._all_field_names_ = set(['source_event_fields']) -MissingDetails._all_fields_ = [('source_event_fields', MissingDetails.source_event_fields.validator)] +MissingDetails._all_field_names_ = set(["source_event_fields"]) +MissingDetails._all_fields_ = [ + ("source_event_fields", MissingDetails.source_event_fields.validator) +] MobileDeviceSessionLogInfo.session_info.validator = bv.Nullable(MobileSessionLogInfo_validator) MobileDeviceSessionLogInfo.device_name.validator = bv.String() @@ -103838,27 +110537,35 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MobileDeviceSessionLogInfo.client_version.validator = bv.Nullable(bv.String()) MobileDeviceSessionLogInfo.os_version.validator = bv.Nullable(bv.String()) MobileDeviceSessionLogInfo.last_carrier.validator = bv.Nullable(bv.String()) -MobileDeviceSessionLogInfo._field_names_ = set([ - 'session_info', - 'device_name', - 'client_type', - 'client_version', - 'os_version', - 'last_carrier', -]) -MobileDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union(MobileDeviceSessionLogInfo._field_names_) +MobileDeviceSessionLogInfo._field_names_ = set( + [ + "session_info", + "device_name", + "client_type", + "client_version", + "os_version", + "last_carrier", + ] +) +MobileDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union( + MobileDeviceSessionLogInfo._field_names_ +) MobileDeviceSessionLogInfo._fields_ = [ - ('session_info', MobileDeviceSessionLogInfo.session_info.validator), - ('device_name', MobileDeviceSessionLogInfo.device_name.validator), - ('client_type', MobileDeviceSessionLogInfo.client_type.validator), - ('client_version', MobileDeviceSessionLogInfo.client_version.validator), - ('os_version', MobileDeviceSessionLogInfo.os_version.validator), - ('last_carrier', MobileDeviceSessionLogInfo.last_carrier.validator), + ("session_info", MobileDeviceSessionLogInfo.session_info.validator), + ("device_name", MobileDeviceSessionLogInfo.device_name.validator), + ("client_type", MobileDeviceSessionLogInfo.client_type.validator), + ("client_version", MobileDeviceSessionLogInfo.client_version.validator), + ("os_version", MobileDeviceSessionLogInfo.os_version.validator), + ("last_carrier", MobileDeviceSessionLogInfo.last_carrier.validator), ] -MobileDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + MobileDeviceSessionLogInfo._fields_ +MobileDeviceSessionLogInfo._all_fields_ = ( + DeviceSessionLogInfo._all_fields_ + MobileDeviceSessionLogInfo._fields_ +) MobileSessionLogInfo._field_names_ = set([]) -MobileSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union(MobileSessionLogInfo._field_names_) +MobileSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union( + MobileSessionLogInfo._field_names_ +) MobileSessionLogInfo._fields_ = [] MobileSessionLogInfo._all_fields_ = SessionLogInfo._all_fields_ + MobileSessionLogInfo._fields_ @@ -103867,775 +110574,992 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MultiTeamIdentityPolicy._enabled_validator = bv.Void() MultiTeamIdentityPolicy._other_validator = bv.Void() MultiTeamIdentityPolicy._tagmap = { - 'default': MultiTeamIdentityPolicy._default_validator, - 'disabled': MultiTeamIdentityPolicy._disabled_validator, - 'enabled': MultiTeamIdentityPolicy._enabled_validator, - 'other': MultiTeamIdentityPolicy._other_validator, + "default": MultiTeamIdentityPolicy._default_validator, + "disabled": MultiTeamIdentityPolicy._disabled_validator, + "enabled": MultiTeamIdentityPolicy._enabled_validator, + "other": MultiTeamIdentityPolicy._other_validator, } -MultiTeamIdentityPolicy.default = MultiTeamIdentityPolicy('default') -MultiTeamIdentityPolicy.disabled = MultiTeamIdentityPolicy('disabled') -MultiTeamIdentityPolicy.enabled = MultiTeamIdentityPolicy('enabled') -MultiTeamIdentityPolicy.other = MultiTeamIdentityPolicy('other') +MultiTeamIdentityPolicy.default = MultiTeamIdentityPolicy("default") +MultiTeamIdentityPolicy.disabled = MultiTeamIdentityPolicy("disabled") +MultiTeamIdentityPolicy.enabled = MultiTeamIdentityPolicy("enabled") +MultiTeamIdentityPolicy.other = MultiTeamIdentityPolicy("other") MultiTeamIdentityPolicyChangedDetails.new_value.validator = MultiTeamIdentityPolicy_validator -MultiTeamIdentityPolicyChangedDetails.previous_value.validator = bv.Nullable(MultiTeamIdentityPolicy_validator) -MultiTeamIdentityPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +MultiTeamIdentityPolicyChangedDetails.previous_value.validator = bv.Nullable( + MultiTeamIdentityPolicy_validator +) +MultiTeamIdentityPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) MultiTeamIdentityPolicyChangedDetails._all_fields_ = [ - ('new_value', MultiTeamIdentityPolicyChangedDetails.new_value.validator), - ('previous_value', MultiTeamIdentityPolicyChangedDetails.previous_value.validator), + ("new_value", MultiTeamIdentityPolicyChangedDetails.new_value.validator), + ("previous_value", MultiTeamIdentityPolicyChangedDetails.previous_value.validator), ] MultiTeamIdentityPolicyChangedType.description.validator = bv.String() -MultiTeamIdentityPolicyChangedType._all_field_names_ = set(['description']) -MultiTeamIdentityPolicyChangedType._all_fields_ = [('description', MultiTeamIdentityPolicyChangedType.description.validator)] +MultiTeamIdentityPolicyChangedType._all_field_names_ = set(["description"]) +MultiTeamIdentityPolicyChangedType._all_fields_ = [ + ("description", MultiTeamIdentityPolicyChangedType.description.validator) +] NamespaceRelativePathLogInfo.ns_id.validator = bv.Nullable(NamespaceId_validator) NamespaceRelativePathLogInfo.relative_path.validator = bv.Nullable(FilePath_validator) NamespaceRelativePathLogInfo.is_shared_namespace.validator = bv.Nullable(bv.Boolean()) -NamespaceRelativePathLogInfo._all_field_names_ = set([ - 'ns_id', - 'relative_path', - 'is_shared_namespace', -]) +NamespaceRelativePathLogInfo._all_field_names_ = set( + [ + "ns_id", + "relative_path", + "is_shared_namespace", + ] +) NamespaceRelativePathLogInfo._all_fields_ = [ - ('ns_id', NamespaceRelativePathLogInfo.ns_id.validator), - ('relative_path', NamespaceRelativePathLogInfo.relative_path.validator), - ('is_shared_namespace', NamespaceRelativePathLogInfo.is_shared_namespace.validator), + ("ns_id", NamespaceRelativePathLogInfo.ns_id.validator), + ("relative_path", NamespaceRelativePathLogInfo.relative_path.validator), + ("is_shared_namespace", NamespaceRelativePathLogInfo.is_shared_namespace.validator), ] NetworkControlChangePolicyDetails.new_value.validator = NetworkControlPolicy_validator -NetworkControlChangePolicyDetails.previous_value.validator = bv.Nullable(NetworkControlPolicy_validator) -NetworkControlChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +NetworkControlChangePolicyDetails.previous_value.validator = bv.Nullable( + NetworkControlPolicy_validator +) +NetworkControlChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) NetworkControlChangePolicyDetails._all_fields_ = [ - ('new_value', NetworkControlChangePolicyDetails.new_value.validator), - ('previous_value', NetworkControlChangePolicyDetails.previous_value.validator), + ("new_value", NetworkControlChangePolicyDetails.new_value.validator), + ("previous_value", NetworkControlChangePolicyDetails.previous_value.validator), ] NetworkControlChangePolicyType.description.validator = bv.String() -NetworkControlChangePolicyType._all_field_names_ = set(['description']) -NetworkControlChangePolicyType._all_fields_ = [('description', NetworkControlChangePolicyType.description.validator)] +NetworkControlChangePolicyType._all_field_names_ = set(["description"]) +NetworkControlChangePolicyType._all_fields_ = [ + ("description", NetworkControlChangePolicyType.description.validator) +] NetworkControlPolicy._disabled_validator = bv.Void() NetworkControlPolicy._enabled_validator = bv.Void() NetworkControlPolicy._other_validator = bv.Void() NetworkControlPolicy._tagmap = { - 'disabled': NetworkControlPolicy._disabled_validator, - 'enabled': NetworkControlPolicy._enabled_validator, - 'other': NetworkControlPolicy._other_validator, + "disabled": NetworkControlPolicy._disabled_validator, + "enabled": NetworkControlPolicy._enabled_validator, + "other": NetworkControlPolicy._other_validator, } -NetworkControlPolicy.disabled = NetworkControlPolicy('disabled') -NetworkControlPolicy.enabled = NetworkControlPolicy('enabled') -NetworkControlPolicy.other = NetworkControlPolicy('other') +NetworkControlPolicy.disabled = NetworkControlPolicy("disabled") +NetworkControlPolicy.enabled = NetworkControlPolicy("enabled") +NetworkControlPolicy.other = NetworkControlPolicy("other") NoExpirationLinkGenCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator NoExpirationLinkGenCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -NoExpirationLinkGenCreateReportDetails._all_field_names_ = set([ - 'start_date', - 'end_date', -]) +NoExpirationLinkGenCreateReportDetails._all_field_names_ = set( + [ + "start_date", + "end_date", + ] +) NoExpirationLinkGenCreateReportDetails._all_fields_ = [ - ('start_date', NoExpirationLinkGenCreateReportDetails.start_date.validator), - ('end_date', NoExpirationLinkGenCreateReportDetails.end_date.validator), + ("start_date", NoExpirationLinkGenCreateReportDetails.start_date.validator), + ("end_date", NoExpirationLinkGenCreateReportDetails.end_date.validator), ] NoExpirationLinkGenCreateReportType.description.validator = bv.String() -NoExpirationLinkGenCreateReportType._all_field_names_ = set(['description']) -NoExpirationLinkGenCreateReportType._all_fields_ = [('description', NoExpirationLinkGenCreateReportType.description.validator)] +NoExpirationLinkGenCreateReportType._all_field_names_ = set(["description"]) +NoExpirationLinkGenCreateReportType._all_fields_ = [ + ("description", NoExpirationLinkGenCreateReportType.description.validator) +] -NoExpirationLinkGenReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -NoExpirationLinkGenReportFailedDetails._all_field_names_ = set(['failure_reason']) -NoExpirationLinkGenReportFailedDetails._all_fields_ = [('failure_reason', NoExpirationLinkGenReportFailedDetails.failure_reason.validator)] +NoExpirationLinkGenReportFailedDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +NoExpirationLinkGenReportFailedDetails._all_field_names_ = set(["failure_reason"]) +NoExpirationLinkGenReportFailedDetails._all_fields_ = [ + ("failure_reason", NoExpirationLinkGenReportFailedDetails.failure_reason.validator) +] NoExpirationLinkGenReportFailedType.description.validator = bv.String() -NoExpirationLinkGenReportFailedType._all_field_names_ = set(['description']) -NoExpirationLinkGenReportFailedType._all_fields_ = [('description', NoExpirationLinkGenReportFailedType.description.validator)] +NoExpirationLinkGenReportFailedType._all_field_names_ = set(["description"]) +NoExpirationLinkGenReportFailedType._all_fields_ = [ + ("description", NoExpirationLinkGenReportFailedType.description.validator) +] NoPasswordLinkGenCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator NoPasswordLinkGenCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -NoPasswordLinkGenCreateReportDetails._all_field_names_ = set([ - 'start_date', - 'end_date', -]) +NoPasswordLinkGenCreateReportDetails._all_field_names_ = set( + [ + "start_date", + "end_date", + ] +) NoPasswordLinkGenCreateReportDetails._all_fields_ = [ - ('start_date', NoPasswordLinkGenCreateReportDetails.start_date.validator), - ('end_date', NoPasswordLinkGenCreateReportDetails.end_date.validator), + ("start_date", NoPasswordLinkGenCreateReportDetails.start_date.validator), + ("end_date", NoPasswordLinkGenCreateReportDetails.end_date.validator), ] NoPasswordLinkGenCreateReportType.description.validator = bv.String() -NoPasswordLinkGenCreateReportType._all_field_names_ = set(['description']) -NoPasswordLinkGenCreateReportType._all_fields_ = [('description', NoPasswordLinkGenCreateReportType.description.validator)] +NoPasswordLinkGenCreateReportType._all_field_names_ = set(["description"]) +NoPasswordLinkGenCreateReportType._all_fields_ = [ + ("description", NoPasswordLinkGenCreateReportType.description.validator) +] -NoPasswordLinkGenReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -NoPasswordLinkGenReportFailedDetails._all_field_names_ = set(['failure_reason']) -NoPasswordLinkGenReportFailedDetails._all_fields_ = [('failure_reason', NoPasswordLinkGenReportFailedDetails.failure_reason.validator)] +NoPasswordLinkGenReportFailedDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +NoPasswordLinkGenReportFailedDetails._all_field_names_ = set(["failure_reason"]) +NoPasswordLinkGenReportFailedDetails._all_fields_ = [ + ("failure_reason", NoPasswordLinkGenReportFailedDetails.failure_reason.validator) +] NoPasswordLinkGenReportFailedType.description.validator = bv.String() -NoPasswordLinkGenReportFailedType._all_field_names_ = set(['description']) -NoPasswordLinkGenReportFailedType._all_fields_ = [('description', NoPasswordLinkGenReportFailedType.description.validator)] +NoPasswordLinkGenReportFailedType._all_field_names_ = set(["description"]) +NoPasswordLinkGenReportFailedType._all_fields_ = [ + ("description", NoPasswordLinkGenReportFailedType.description.validator) +] NoPasswordLinkViewCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator NoPasswordLinkViewCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -NoPasswordLinkViewCreateReportDetails._all_field_names_ = set([ - 'start_date', - 'end_date', -]) +NoPasswordLinkViewCreateReportDetails._all_field_names_ = set( + [ + "start_date", + "end_date", + ] +) NoPasswordLinkViewCreateReportDetails._all_fields_ = [ - ('start_date', NoPasswordLinkViewCreateReportDetails.start_date.validator), - ('end_date', NoPasswordLinkViewCreateReportDetails.end_date.validator), + ("start_date", NoPasswordLinkViewCreateReportDetails.start_date.validator), + ("end_date", NoPasswordLinkViewCreateReportDetails.end_date.validator), ] NoPasswordLinkViewCreateReportType.description.validator = bv.String() -NoPasswordLinkViewCreateReportType._all_field_names_ = set(['description']) -NoPasswordLinkViewCreateReportType._all_fields_ = [('description', NoPasswordLinkViewCreateReportType.description.validator)] +NoPasswordLinkViewCreateReportType._all_field_names_ = set(["description"]) +NoPasswordLinkViewCreateReportType._all_fields_ = [ + ("description", NoPasswordLinkViewCreateReportType.description.validator) +] -NoPasswordLinkViewReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -NoPasswordLinkViewReportFailedDetails._all_field_names_ = set(['failure_reason']) -NoPasswordLinkViewReportFailedDetails._all_fields_ = [('failure_reason', NoPasswordLinkViewReportFailedDetails.failure_reason.validator)] +NoPasswordLinkViewReportFailedDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +NoPasswordLinkViewReportFailedDetails._all_field_names_ = set(["failure_reason"]) +NoPasswordLinkViewReportFailedDetails._all_fields_ = [ + ("failure_reason", NoPasswordLinkViewReportFailedDetails.failure_reason.validator) +] NoPasswordLinkViewReportFailedType.description.validator = bv.String() -NoPasswordLinkViewReportFailedType._all_field_names_ = set(['description']) -NoPasswordLinkViewReportFailedType._all_fields_ = [('description', NoPasswordLinkViewReportFailedType.description.validator)] +NoPasswordLinkViewReportFailedType._all_field_names_ = set(["description"]) +NoPasswordLinkViewReportFailedType._all_fields_ = [ + ("description", NoPasswordLinkViewReportFailedType.description.validator) +] UserLogInfo.account_id.validator = bv.Nullable(users_common.AccountId_validator) UserLogInfo.display_name.validator = bv.Nullable(common.DisplayNameLegacy_validator) UserLogInfo.email.validator = bv.Nullable(EmailAddress_validator) -UserLogInfo._field_names_ = set([ - 'account_id', - 'display_name', - 'email', -]) +UserLogInfo._field_names_ = set( + [ + "account_id", + "display_name", + "email", + ] +) UserLogInfo._all_field_names_ = UserLogInfo._field_names_ UserLogInfo._fields_ = [ - ('account_id', UserLogInfo.account_id.validator), - ('display_name', UserLogInfo.display_name.validator), - ('email', UserLogInfo.email.validator), + ("account_id", UserLogInfo.account_id.validator), + ("display_name", UserLogInfo.display_name.validator), + ("email", UserLogInfo.email.validator), ] UserLogInfo._all_fields_ = UserLogInfo._fields_ UserLogInfo._tag_to_subtype_ = { - ('non_team_member',): NonTeamMemberLogInfo_validator, - ('team_member',): TeamMemberLogInfo_validator, - ('trusted_non_team_member',): TrustedNonTeamMemberLogInfo_validator, + ("non_team_member",): NonTeamMemberLogInfo_validator, + ("team_member",): TeamMemberLogInfo_validator, + ("trusted_non_team_member",): TrustedNonTeamMemberLogInfo_validator, } UserLogInfo._pytype_to_tag_and_subtype_ = { - NonTeamMemberLogInfo: (('non_team_member',), NonTeamMemberLogInfo_validator), - TeamMemberLogInfo: (('team_member',), TeamMemberLogInfo_validator), - TrustedNonTeamMemberLogInfo: (('trusted_non_team_member',), TrustedNonTeamMemberLogInfo_validator), + NonTeamMemberLogInfo: (("non_team_member",), NonTeamMemberLogInfo_validator), + TeamMemberLogInfo: (("team_member",), TeamMemberLogInfo_validator), + TrustedNonTeamMemberLogInfo: ( + ("trusted_non_team_member",), + TrustedNonTeamMemberLogInfo_validator, + ), } UserLogInfo._is_catch_all_ = True NonTeamMemberLogInfo._field_names_ = set([]) -NonTeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union(NonTeamMemberLogInfo._field_names_) +NonTeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union( + NonTeamMemberLogInfo._field_names_ +) NonTeamMemberLogInfo._fields_ = [] NonTeamMemberLogInfo._all_fields_ = UserLogInfo._all_fields_ + NonTeamMemberLogInfo._fields_ NonTrustedTeamDetails.team.validator = bv.String() -NonTrustedTeamDetails._all_field_names_ = set(['team']) -NonTrustedTeamDetails._all_fields_ = [('team', NonTrustedTeamDetails.team.validator)] +NonTrustedTeamDetails._all_field_names_ = set(["team"]) +NonTrustedTeamDetails._all_fields_ = [("team", NonTrustedTeamDetails.team.validator)] NoteAclInviteOnlyDetails._all_field_names_ = set([]) NoteAclInviteOnlyDetails._all_fields_ = [] NoteAclInviteOnlyType.description.validator = bv.String() -NoteAclInviteOnlyType._all_field_names_ = set(['description']) -NoteAclInviteOnlyType._all_fields_ = [('description', NoteAclInviteOnlyType.description.validator)] +NoteAclInviteOnlyType._all_field_names_ = set(["description"]) +NoteAclInviteOnlyType._all_fields_ = [("description", NoteAclInviteOnlyType.description.validator)] NoteAclLinkDetails._all_field_names_ = set([]) NoteAclLinkDetails._all_fields_ = [] NoteAclLinkType.description.validator = bv.String() -NoteAclLinkType._all_field_names_ = set(['description']) -NoteAclLinkType._all_fields_ = [('description', NoteAclLinkType.description.validator)] +NoteAclLinkType._all_field_names_ = set(["description"]) +NoteAclLinkType._all_fields_ = [("description", NoteAclLinkType.description.validator)] NoteAclTeamLinkDetails._all_field_names_ = set([]) NoteAclTeamLinkDetails._all_fields_ = [] NoteAclTeamLinkType.description.validator = bv.String() -NoteAclTeamLinkType._all_field_names_ = set(['description']) -NoteAclTeamLinkType._all_fields_ = [('description', NoteAclTeamLinkType.description.validator)] +NoteAclTeamLinkType._all_field_names_ = set(["description"]) +NoteAclTeamLinkType._all_fields_ = [("description", NoteAclTeamLinkType.description.validator)] NoteShareReceiveDetails._all_field_names_ = set([]) NoteShareReceiveDetails._all_fields_ = [] NoteShareReceiveType.description.validator = bv.String() -NoteShareReceiveType._all_field_names_ = set(['description']) -NoteShareReceiveType._all_fields_ = [('description', NoteShareReceiveType.description.validator)] +NoteShareReceiveType._all_field_names_ = set(["description"]) +NoteShareReceiveType._all_fields_ = [("description", NoteShareReceiveType.description.validator)] NoteSharedDetails._all_field_names_ = set([]) NoteSharedDetails._all_fields_ = [] NoteSharedType.description.validator = bv.String() -NoteSharedType._all_field_names_ = set(['description']) -NoteSharedType._all_fields_ = [('description', NoteSharedType.description.validator)] +NoteSharedType._all_field_names_ = set(["description"]) +NoteSharedType._all_fields_ = [("description", NoteSharedType.description.validator)] ObjectLabelAddedDetails.label_type.validator = LabelType_validator -ObjectLabelAddedDetails._all_field_names_ = set(['label_type']) -ObjectLabelAddedDetails._all_fields_ = [('label_type', ObjectLabelAddedDetails.label_type.validator)] +ObjectLabelAddedDetails._all_field_names_ = set(["label_type"]) +ObjectLabelAddedDetails._all_fields_ = [ + ("label_type", ObjectLabelAddedDetails.label_type.validator) +] ObjectLabelAddedType.description.validator = bv.String() -ObjectLabelAddedType._all_field_names_ = set(['description']) -ObjectLabelAddedType._all_fields_ = [('description', ObjectLabelAddedType.description.validator)] +ObjectLabelAddedType._all_field_names_ = set(["description"]) +ObjectLabelAddedType._all_fields_ = [("description", ObjectLabelAddedType.description.validator)] ObjectLabelRemovedDetails.label_type.validator = LabelType_validator -ObjectLabelRemovedDetails._all_field_names_ = set(['label_type']) -ObjectLabelRemovedDetails._all_fields_ = [('label_type', ObjectLabelRemovedDetails.label_type.validator)] +ObjectLabelRemovedDetails._all_field_names_ = set(["label_type"]) +ObjectLabelRemovedDetails._all_fields_ = [ + ("label_type", ObjectLabelRemovedDetails.label_type.validator) +] ObjectLabelRemovedType.description.validator = bv.String() -ObjectLabelRemovedType._all_field_names_ = set(['description']) -ObjectLabelRemovedType._all_fields_ = [('description', ObjectLabelRemovedType.description.validator)] +ObjectLabelRemovedType._all_field_names_ = set(["description"]) +ObjectLabelRemovedType._all_fields_ = [ + ("description", ObjectLabelRemovedType.description.validator) +] ObjectLabelUpdatedValueDetails.label_type.validator = LabelType_validator -ObjectLabelUpdatedValueDetails._all_field_names_ = set(['label_type']) -ObjectLabelUpdatedValueDetails._all_fields_ = [('label_type', ObjectLabelUpdatedValueDetails.label_type.validator)] +ObjectLabelUpdatedValueDetails._all_field_names_ = set(["label_type"]) +ObjectLabelUpdatedValueDetails._all_fields_ = [ + ("label_type", ObjectLabelUpdatedValueDetails.label_type.validator) +] ObjectLabelUpdatedValueType.description.validator = bv.String() -ObjectLabelUpdatedValueType._all_field_names_ = set(['description']) -ObjectLabelUpdatedValueType._all_fields_ = [('description', ObjectLabelUpdatedValueType.description.validator)] +ObjectLabelUpdatedValueType._all_field_names_ = set(["description"]) +ObjectLabelUpdatedValueType._all_fields_ = [ + ("description", ObjectLabelUpdatedValueType.description.validator) +] OpenNoteSharedDetails._all_field_names_ = set([]) OpenNoteSharedDetails._all_fields_ = [] OpenNoteSharedType.description.validator = bv.String() -OpenNoteSharedType._all_field_names_ = set(['description']) -OpenNoteSharedType._all_fields_ = [('description', OpenNoteSharedType.description.validator)] +OpenNoteSharedType._all_field_names_ = set(["description"]) +OpenNoteSharedType._all_fields_ = [("description", OpenNoteSharedType.description.validator)] OrganizationDetails.organization.validator = bv.String() -OrganizationDetails._all_field_names_ = set(['organization']) -OrganizationDetails._all_fields_ = [('organization', OrganizationDetails.organization.validator)] +OrganizationDetails._all_field_names_ = set(["organization"]) +OrganizationDetails._all_fields_ = [("organization", OrganizationDetails.organization.validator)] OrganizationName.organization.validator = bv.String() -OrganizationName._all_field_names_ = set(['organization']) -OrganizationName._all_fields_ = [('organization', OrganizationName.organization.validator)] +OrganizationName._all_field_names_ = set(["organization"]) +OrganizationName._all_fields_ = [("organization", OrganizationName.organization.validator)] OrganizeFolderWithTidyDetails._all_field_names_ = set([]) OrganizeFolderWithTidyDetails._all_fields_ = [] OrganizeFolderWithTidyType.description.validator = bv.String() -OrganizeFolderWithTidyType._all_field_names_ = set(['description']) -OrganizeFolderWithTidyType._all_fields_ = [('description', OrganizeFolderWithTidyType.description.validator)] +OrganizeFolderWithTidyType._all_field_names_ = set(["description"]) +OrganizeFolderWithTidyType._all_fields_ = [ + ("description", OrganizeFolderWithTidyType.description.validator) +] OriginLogInfo.geo_location.validator = bv.Nullable(GeoLocationLogInfo_validator) OriginLogInfo.access_method.validator = AccessMethodLogInfo_validator -OriginLogInfo._all_field_names_ = set([ - 'geo_location', - 'access_method', -]) +OriginLogInfo._all_field_names_ = set( + [ + "geo_location", + "access_method", + ] +) OriginLogInfo._all_fields_ = [ - ('geo_location', OriginLogInfo.geo_location.validator), - ('access_method', OriginLogInfo.access_method.validator), + ("geo_location", OriginLogInfo.geo_location.validator), + ("access_method", OriginLogInfo.access_method.validator), ] OutdatedLinkViewCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator OutdatedLinkViewCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -OutdatedLinkViewCreateReportDetails._all_field_names_ = set([ - 'start_date', - 'end_date', -]) +OutdatedLinkViewCreateReportDetails._all_field_names_ = set( + [ + "start_date", + "end_date", + ] +) OutdatedLinkViewCreateReportDetails._all_fields_ = [ - ('start_date', OutdatedLinkViewCreateReportDetails.start_date.validator), - ('end_date', OutdatedLinkViewCreateReportDetails.end_date.validator), + ("start_date", OutdatedLinkViewCreateReportDetails.start_date.validator), + ("end_date", OutdatedLinkViewCreateReportDetails.end_date.validator), ] OutdatedLinkViewCreateReportType.description.validator = bv.String() -OutdatedLinkViewCreateReportType._all_field_names_ = set(['description']) -OutdatedLinkViewCreateReportType._all_fields_ = [('description', OutdatedLinkViewCreateReportType.description.validator)] +OutdatedLinkViewCreateReportType._all_field_names_ = set(["description"]) +OutdatedLinkViewCreateReportType._all_fields_ = [ + ("description", OutdatedLinkViewCreateReportType.description.validator) +] -OutdatedLinkViewReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -OutdatedLinkViewReportFailedDetails._all_field_names_ = set(['failure_reason']) -OutdatedLinkViewReportFailedDetails._all_fields_ = [('failure_reason', OutdatedLinkViewReportFailedDetails.failure_reason.validator)] +OutdatedLinkViewReportFailedDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +OutdatedLinkViewReportFailedDetails._all_field_names_ = set(["failure_reason"]) +OutdatedLinkViewReportFailedDetails._all_fields_ = [ + ("failure_reason", OutdatedLinkViewReportFailedDetails.failure_reason.validator) +] OutdatedLinkViewReportFailedType.description.validator = bv.String() -OutdatedLinkViewReportFailedType._all_field_names_ = set(['description']) -OutdatedLinkViewReportFailedType._all_fields_ = [('description', OutdatedLinkViewReportFailedType.description.validator)] +OutdatedLinkViewReportFailedType._all_field_names_ = set(["description"]) +OutdatedLinkViewReportFailedType._all_fields_ = [ + ("description", OutdatedLinkViewReportFailedType.description.validator) +] PaperAccessType._commenter_validator = bv.Void() PaperAccessType._editor_validator = bv.Void() PaperAccessType._viewer_validator = bv.Void() PaperAccessType._other_validator = bv.Void() PaperAccessType._tagmap = { - 'commenter': PaperAccessType._commenter_validator, - 'editor': PaperAccessType._editor_validator, - 'viewer': PaperAccessType._viewer_validator, - 'other': PaperAccessType._other_validator, + "commenter": PaperAccessType._commenter_validator, + "editor": PaperAccessType._editor_validator, + "viewer": PaperAccessType._viewer_validator, + "other": PaperAccessType._other_validator, } -PaperAccessType.commenter = PaperAccessType('commenter') -PaperAccessType.editor = PaperAccessType('editor') -PaperAccessType.viewer = PaperAccessType('viewer') -PaperAccessType.other = PaperAccessType('other') +PaperAccessType.commenter = PaperAccessType("commenter") +PaperAccessType.editor = PaperAccessType("editor") +PaperAccessType.viewer = PaperAccessType("viewer") +PaperAccessType.other = PaperAccessType("other") PaperAdminExportStartDetails._all_field_names_ = set([]) PaperAdminExportStartDetails._all_fields_ = [] PaperAdminExportStartType.description.validator = bv.String() -PaperAdminExportStartType._all_field_names_ = set(['description']) -PaperAdminExportStartType._all_fields_ = [('description', PaperAdminExportStartType.description.validator)] - -PaperChangeDeploymentPolicyDetails.new_value.validator = team_policies.PaperDeploymentPolicy_validator -PaperChangeDeploymentPolicyDetails.previous_value.validator = bv.Nullable(team_policies.PaperDeploymentPolicy_validator) -PaperChangeDeploymentPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +PaperAdminExportStartType._all_field_names_ = set(["description"]) +PaperAdminExportStartType._all_fields_ = [ + ("description", PaperAdminExportStartType.description.validator) +] + +PaperChangeDeploymentPolicyDetails.new_value.validator = ( + team_policies.PaperDeploymentPolicy_validator +) +PaperChangeDeploymentPolicyDetails.previous_value.validator = bv.Nullable( + team_policies.PaperDeploymentPolicy_validator +) +PaperChangeDeploymentPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) PaperChangeDeploymentPolicyDetails._all_fields_ = [ - ('new_value', PaperChangeDeploymentPolicyDetails.new_value.validator), - ('previous_value', PaperChangeDeploymentPolicyDetails.previous_value.validator), + ("new_value", PaperChangeDeploymentPolicyDetails.new_value.validator), + ("previous_value", PaperChangeDeploymentPolicyDetails.previous_value.validator), ] PaperChangeDeploymentPolicyType.description.validator = bv.String() -PaperChangeDeploymentPolicyType._all_field_names_ = set(['description']) -PaperChangeDeploymentPolicyType._all_fields_ = [('description', PaperChangeDeploymentPolicyType.description.validator)] +PaperChangeDeploymentPolicyType._all_field_names_ = set(["description"]) +PaperChangeDeploymentPolicyType._all_fields_ = [ + ("description", PaperChangeDeploymentPolicyType.description.validator) +] PaperChangeMemberLinkPolicyDetails.new_value.validator = PaperMemberPolicy_validator -PaperChangeMemberLinkPolicyDetails._all_field_names_ = set(['new_value']) -PaperChangeMemberLinkPolicyDetails._all_fields_ = [('new_value', PaperChangeMemberLinkPolicyDetails.new_value.validator)] +PaperChangeMemberLinkPolicyDetails._all_field_names_ = set(["new_value"]) +PaperChangeMemberLinkPolicyDetails._all_fields_ = [ + ("new_value", PaperChangeMemberLinkPolicyDetails.new_value.validator) +] PaperChangeMemberLinkPolicyType.description.validator = bv.String() -PaperChangeMemberLinkPolicyType._all_field_names_ = set(['description']) -PaperChangeMemberLinkPolicyType._all_fields_ = [('description', PaperChangeMemberLinkPolicyType.description.validator)] +PaperChangeMemberLinkPolicyType._all_field_names_ = set(["description"]) +PaperChangeMemberLinkPolicyType._all_fields_ = [ + ("description", PaperChangeMemberLinkPolicyType.description.validator) +] PaperChangeMemberPolicyDetails.new_value.validator = PaperMemberPolicy_validator PaperChangeMemberPolicyDetails.previous_value.validator = bv.Nullable(PaperMemberPolicy_validator) -PaperChangeMemberPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +PaperChangeMemberPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) PaperChangeMemberPolicyDetails._all_fields_ = [ - ('new_value', PaperChangeMemberPolicyDetails.new_value.validator), - ('previous_value', PaperChangeMemberPolicyDetails.previous_value.validator), + ("new_value", PaperChangeMemberPolicyDetails.new_value.validator), + ("previous_value", PaperChangeMemberPolicyDetails.previous_value.validator), ] PaperChangeMemberPolicyType.description.validator = bv.String() -PaperChangeMemberPolicyType._all_field_names_ = set(['description']) -PaperChangeMemberPolicyType._all_fields_ = [('description', PaperChangeMemberPolicyType.description.validator)] +PaperChangeMemberPolicyType._all_field_names_ = set(["description"]) +PaperChangeMemberPolicyType._all_fields_ = [ + ("description", PaperChangeMemberPolicyType.description.validator) +] PaperChangePolicyDetails.new_value.validator = team_policies.PaperEnabledPolicy_validator -PaperChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.PaperEnabledPolicy_validator) -PaperChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +PaperChangePolicyDetails.previous_value.validator = bv.Nullable( + team_policies.PaperEnabledPolicy_validator +) +PaperChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) PaperChangePolicyDetails._all_fields_ = [ - ('new_value', PaperChangePolicyDetails.new_value.validator), - ('previous_value', PaperChangePolicyDetails.previous_value.validator), + ("new_value", PaperChangePolicyDetails.new_value.validator), + ("previous_value", PaperChangePolicyDetails.previous_value.validator), ] PaperChangePolicyType.description.validator = bv.String() -PaperChangePolicyType._all_field_names_ = set(['description']) -PaperChangePolicyType._all_fields_ = [('description', PaperChangePolicyType.description.validator)] +PaperChangePolicyType._all_field_names_ = set(["description"]) +PaperChangePolicyType._all_fields_ = [("description", PaperChangePolicyType.description.validator)] PaperContentAddMemberDetails.event_uuid.validator = bv.String() -PaperContentAddMemberDetails._all_field_names_ = set(['event_uuid']) -PaperContentAddMemberDetails._all_fields_ = [('event_uuid', PaperContentAddMemberDetails.event_uuid.validator)] +PaperContentAddMemberDetails._all_field_names_ = set(["event_uuid"]) +PaperContentAddMemberDetails._all_fields_ = [ + ("event_uuid", PaperContentAddMemberDetails.event_uuid.validator) +] PaperContentAddMemberType.description.validator = bv.String() -PaperContentAddMemberType._all_field_names_ = set(['description']) -PaperContentAddMemberType._all_fields_ = [('description', PaperContentAddMemberType.description.validator)] +PaperContentAddMemberType._all_field_names_ = set(["description"]) +PaperContentAddMemberType._all_fields_ = [ + ("description", PaperContentAddMemberType.description.validator) +] PaperContentAddToFolderDetails.event_uuid.validator = bv.String() PaperContentAddToFolderDetails.target_asset_index.validator = bv.UInt64() PaperContentAddToFolderDetails.parent_asset_index.validator = bv.UInt64() -PaperContentAddToFolderDetails._all_field_names_ = set([ - 'event_uuid', - 'target_asset_index', - 'parent_asset_index', -]) +PaperContentAddToFolderDetails._all_field_names_ = set( + [ + "event_uuid", + "target_asset_index", + "parent_asset_index", + ] +) PaperContentAddToFolderDetails._all_fields_ = [ - ('event_uuid', PaperContentAddToFolderDetails.event_uuid.validator), - ('target_asset_index', PaperContentAddToFolderDetails.target_asset_index.validator), - ('parent_asset_index', PaperContentAddToFolderDetails.parent_asset_index.validator), + ("event_uuid", PaperContentAddToFolderDetails.event_uuid.validator), + ("target_asset_index", PaperContentAddToFolderDetails.target_asset_index.validator), + ("parent_asset_index", PaperContentAddToFolderDetails.parent_asset_index.validator), ] PaperContentAddToFolderType.description.validator = bv.String() -PaperContentAddToFolderType._all_field_names_ = set(['description']) -PaperContentAddToFolderType._all_fields_ = [('description', PaperContentAddToFolderType.description.validator)] +PaperContentAddToFolderType._all_field_names_ = set(["description"]) +PaperContentAddToFolderType._all_fields_ = [ + ("description", PaperContentAddToFolderType.description.validator) +] PaperContentArchiveDetails.event_uuid.validator = bv.String() -PaperContentArchiveDetails._all_field_names_ = set(['event_uuid']) -PaperContentArchiveDetails._all_fields_ = [('event_uuid', PaperContentArchiveDetails.event_uuid.validator)] +PaperContentArchiveDetails._all_field_names_ = set(["event_uuid"]) +PaperContentArchiveDetails._all_fields_ = [ + ("event_uuid", PaperContentArchiveDetails.event_uuid.validator) +] PaperContentArchiveType.description.validator = bv.String() -PaperContentArchiveType._all_field_names_ = set(['description']) -PaperContentArchiveType._all_fields_ = [('description', PaperContentArchiveType.description.validator)] +PaperContentArchiveType._all_field_names_ = set(["description"]) +PaperContentArchiveType._all_fields_ = [ + ("description", PaperContentArchiveType.description.validator) +] PaperContentCreateDetails.event_uuid.validator = bv.String() -PaperContentCreateDetails._all_field_names_ = set(['event_uuid']) -PaperContentCreateDetails._all_fields_ = [('event_uuid', PaperContentCreateDetails.event_uuid.validator)] +PaperContentCreateDetails._all_field_names_ = set(["event_uuid"]) +PaperContentCreateDetails._all_fields_ = [ + ("event_uuid", PaperContentCreateDetails.event_uuid.validator) +] PaperContentCreateType.description.validator = bv.String() -PaperContentCreateType._all_field_names_ = set(['description']) -PaperContentCreateType._all_fields_ = [('description', PaperContentCreateType.description.validator)] +PaperContentCreateType._all_field_names_ = set(["description"]) +PaperContentCreateType._all_fields_ = [ + ("description", PaperContentCreateType.description.validator) +] PaperContentPermanentlyDeleteDetails.event_uuid.validator = bv.String() -PaperContentPermanentlyDeleteDetails._all_field_names_ = set(['event_uuid']) -PaperContentPermanentlyDeleteDetails._all_fields_ = [('event_uuid', PaperContentPermanentlyDeleteDetails.event_uuid.validator)] +PaperContentPermanentlyDeleteDetails._all_field_names_ = set(["event_uuid"]) +PaperContentPermanentlyDeleteDetails._all_fields_ = [ + ("event_uuid", PaperContentPermanentlyDeleteDetails.event_uuid.validator) +] PaperContentPermanentlyDeleteType.description.validator = bv.String() -PaperContentPermanentlyDeleteType._all_field_names_ = set(['description']) -PaperContentPermanentlyDeleteType._all_fields_ = [('description', PaperContentPermanentlyDeleteType.description.validator)] +PaperContentPermanentlyDeleteType._all_field_names_ = set(["description"]) +PaperContentPermanentlyDeleteType._all_fields_ = [ + ("description", PaperContentPermanentlyDeleteType.description.validator) +] PaperContentRemoveFromFolderDetails.event_uuid.validator = bv.String() PaperContentRemoveFromFolderDetails.target_asset_index.validator = bv.Nullable(bv.UInt64()) PaperContentRemoveFromFolderDetails.parent_asset_index.validator = bv.Nullable(bv.UInt64()) -PaperContentRemoveFromFolderDetails._all_field_names_ = set([ - 'event_uuid', - 'target_asset_index', - 'parent_asset_index', -]) +PaperContentRemoveFromFolderDetails._all_field_names_ = set( + [ + "event_uuid", + "target_asset_index", + "parent_asset_index", + ] +) PaperContentRemoveFromFolderDetails._all_fields_ = [ - ('event_uuid', PaperContentRemoveFromFolderDetails.event_uuid.validator), - ('target_asset_index', PaperContentRemoveFromFolderDetails.target_asset_index.validator), - ('parent_asset_index', PaperContentRemoveFromFolderDetails.parent_asset_index.validator), + ("event_uuid", PaperContentRemoveFromFolderDetails.event_uuid.validator), + ( + "target_asset_index", + PaperContentRemoveFromFolderDetails.target_asset_index.validator, + ), + ( + "parent_asset_index", + PaperContentRemoveFromFolderDetails.parent_asset_index.validator, + ), ] PaperContentRemoveFromFolderType.description.validator = bv.String() -PaperContentRemoveFromFolderType._all_field_names_ = set(['description']) -PaperContentRemoveFromFolderType._all_fields_ = [('description', PaperContentRemoveFromFolderType.description.validator)] +PaperContentRemoveFromFolderType._all_field_names_ = set(["description"]) +PaperContentRemoveFromFolderType._all_fields_ = [ + ("description", PaperContentRemoveFromFolderType.description.validator) +] PaperContentRemoveMemberDetails.event_uuid.validator = bv.String() -PaperContentRemoveMemberDetails._all_field_names_ = set(['event_uuid']) -PaperContentRemoveMemberDetails._all_fields_ = [('event_uuid', PaperContentRemoveMemberDetails.event_uuid.validator)] +PaperContentRemoveMemberDetails._all_field_names_ = set(["event_uuid"]) +PaperContentRemoveMemberDetails._all_fields_ = [ + ("event_uuid", PaperContentRemoveMemberDetails.event_uuid.validator) +] PaperContentRemoveMemberType.description.validator = bv.String() -PaperContentRemoveMemberType._all_field_names_ = set(['description']) -PaperContentRemoveMemberType._all_fields_ = [('description', PaperContentRemoveMemberType.description.validator)] +PaperContentRemoveMemberType._all_field_names_ = set(["description"]) +PaperContentRemoveMemberType._all_fields_ = [ + ("description", PaperContentRemoveMemberType.description.validator) +] PaperContentRenameDetails.event_uuid.validator = bv.String() -PaperContentRenameDetails._all_field_names_ = set(['event_uuid']) -PaperContentRenameDetails._all_fields_ = [('event_uuid', PaperContentRenameDetails.event_uuid.validator)] +PaperContentRenameDetails._all_field_names_ = set(["event_uuid"]) +PaperContentRenameDetails._all_fields_ = [ + ("event_uuid", PaperContentRenameDetails.event_uuid.validator) +] PaperContentRenameType.description.validator = bv.String() -PaperContentRenameType._all_field_names_ = set(['description']) -PaperContentRenameType._all_fields_ = [('description', PaperContentRenameType.description.validator)] +PaperContentRenameType._all_field_names_ = set(["description"]) +PaperContentRenameType._all_fields_ = [ + ("description", PaperContentRenameType.description.validator) +] PaperContentRestoreDetails.event_uuid.validator = bv.String() -PaperContentRestoreDetails._all_field_names_ = set(['event_uuid']) -PaperContentRestoreDetails._all_fields_ = [('event_uuid', PaperContentRestoreDetails.event_uuid.validator)] +PaperContentRestoreDetails._all_field_names_ = set(["event_uuid"]) +PaperContentRestoreDetails._all_fields_ = [ + ("event_uuid", PaperContentRestoreDetails.event_uuid.validator) +] PaperContentRestoreType.description.validator = bv.String() -PaperContentRestoreType._all_field_names_ = set(['description']) -PaperContentRestoreType._all_fields_ = [('description', PaperContentRestoreType.description.validator)] +PaperContentRestoreType._all_field_names_ = set(["description"]) +PaperContentRestoreType._all_fields_ = [ + ("description", PaperContentRestoreType.description.validator) +] PaperDefaultFolderPolicy._everyone_in_team_validator = bv.Void() PaperDefaultFolderPolicy._invite_only_validator = bv.Void() PaperDefaultFolderPolicy._other_validator = bv.Void() PaperDefaultFolderPolicy._tagmap = { - 'everyone_in_team': PaperDefaultFolderPolicy._everyone_in_team_validator, - 'invite_only': PaperDefaultFolderPolicy._invite_only_validator, - 'other': PaperDefaultFolderPolicy._other_validator, + "everyone_in_team": PaperDefaultFolderPolicy._everyone_in_team_validator, + "invite_only": PaperDefaultFolderPolicy._invite_only_validator, + "other": PaperDefaultFolderPolicy._other_validator, } -PaperDefaultFolderPolicy.everyone_in_team = PaperDefaultFolderPolicy('everyone_in_team') -PaperDefaultFolderPolicy.invite_only = PaperDefaultFolderPolicy('invite_only') -PaperDefaultFolderPolicy.other = PaperDefaultFolderPolicy('other') +PaperDefaultFolderPolicy.everyone_in_team = PaperDefaultFolderPolicy("everyone_in_team") +PaperDefaultFolderPolicy.invite_only = PaperDefaultFolderPolicy("invite_only") +PaperDefaultFolderPolicy.other = PaperDefaultFolderPolicy("other") PaperDefaultFolderPolicyChangedDetails.new_value.validator = PaperDefaultFolderPolicy_validator PaperDefaultFolderPolicyChangedDetails.previous_value.validator = PaperDefaultFolderPolicy_validator -PaperDefaultFolderPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +PaperDefaultFolderPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) PaperDefaultFolderPolicyChangedDetails._all_fields_ = [ - ('new_value', PaperDefaultFolderPolicyChangedDetails.new_value.validator), - ('previous_value', PaperDefaultFolderPolicyChangedDetails.previous_value.validator), + ("new_value", PaperDefaultFolderPolicyChangedDetails.new_value.validator), + ("previous_value", PaperDefaultFolderPolicyChangedDetails.previous_value.validator), ] PaperDefaultFolderPolicyChangedType.description.validator = bv.String() -PaperDefaultFolderPolicyChangedType._all_field_names_ = set(['description']) -PaperDefaultFolderPolicyChangedType._all_fields_ = [('description', PaperDefaultFolderPolicyChangedType.description.validator)] +PaperDefaultFolderPolicyChangedType._all_field_names_ = set(["description"]) +PaperDefaultFolderPolicyChangedType._all_fields_ = [ + ("description", PaperDefaultFolderPolicyChangedType.description.validator) +] PaperDesktopPolicy._disabled_validator = bv.Void() PaperDesktopPolicy._enabled_validator = bv.Void() PaperDesktopPolicy._other_validator = bv.Void() PaperDesktopPolicy._tagmap = { - 'disabled': PaperDesktopPolicy._disabled_validator, - 'enabled': PaperDesktopPolicy._enabled_validator, - 'other': PaperDesktopPolicy._other_validator, + "disabled": PaperDesktopPolicy._disabled_validator, + "enabled": PaperDesktopPolicy._enabled_validator, + "other": PaperDesktopPolicy._other_validator, } -PaperDesktopPolicy.disabled = PaperDesktopPolicy('disabled') -PaperDesktopPolicy.enabled = PaperDesktopPolicy('enabled') -PaperDesktopPolicy.other = PaperDesktopPolicy('other') +PaperDesktopPolicy.disabled = PaperDesktopPolicy("disabled") +PaperDesktopPolicy.enabled = PaperDesktopPolicy("enabled") +PaperDesktopPolicy.other = PaperDesktopPolicy("other") PaperDesktopPolicyChangedDetails.new_value.validator = PaperDesktopPolicy_validator PaperDesktopPolicyChangedDetails.previous_value.validator = PaperDesktopPolicy_validator -PaperDesktopPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +PaperDesktopPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) PaperDesktopPolicyChangedDetails._all_fields_ = [ - ('new_value', PaperDesktopPolicyChangedDetails.new_value.validator), - ('previous_value', PaperDesktopPolicyChangedDetails.previous_value.validator), + ("new_value", PaperDesktopPolicyChangedDetails.new_value.validator), + ("previous_value", PaperDesktopPolicyChangedDetails.previous_value.validator), ] PaperDesktopPolicyChangedType.description.validator = bv.String() -PaperDesktopPolicyChangedType._all_field_names_ = set(['description']) -PaperDesktopPolicyChangedType._all_fields_ = [('description', PaperDesktopPolicyChangedType.description.validator)] +PaperDesktopPolicyChangedType._all_field_names_ = set(["description"]) +PaperDesktopPolicyChangedType._all_fields_ = [ + ("description", PaperDesktopPolicyChangedType.description.validator) +] PaperDocAddCommentDetails.event_uuid.validator = bv.String() PaperDocAddCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocAddCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +PaperDocAddCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) PaperDocAddCommentDetails._all_fields_ = [ - ('event_uuid', PaperDocAddCommentDetails.event_uuid.validator), - ('comment_text', PaperDocAddCommentDetails.comment_text.validator), + ("event_uuid", PaperDocAddCommentDetails.event_uuid.validator), + ("comment_text", PaperDocAddCommentDetails.comment_text.validator), ] PaperDocAddCommentType.description.validator = bv.String() -PaperDocAddCommentType._all_field_names_ = set(['description']) -PaperDocAddCommentType._all_fields_ = [('description', PaperDocAddCommentType.description.validator)] +PaperDocAddCommentType._all_field_names_ = set(["description"]) +PaperDocAddCommentType._all_fields_ = [ + ("description", PaperDocAddCommentType.description.validator) +] PaperDocChangeMemberRoleDetails.event_uuid.validator = bv.String() PaperDocChangeMemberRoleDetails.access_type.validator = PaperAccessType_validator -PaperDocChangeMemberRoleDetails._all_field_names_ = set([ - 'event_uuid', - 'access_type', -]) +PaperDocChangeMemberRoleDetails._all_field_names_ = set( + [ + "event_uuid", + "access_type", + ] +) PaperDocChangeMemberRoleDetails._all_fields_ = [ - ('event_uuid', PaperDocChangeMemberRoleDetails.event_uuid.validator), - ('access_type', PaperDocChangeMemberRoleDetails.access_type.validator), + ("event_uuid", PaperDocChangeMemberRoleDetails.event_uuid.validator), + ("access_type", PaperDocChangeMemberRoleDetails.access_type.validator), ] PaperDocChangeMemberRoleType.description.validator = bv.String() -PaperDocChangeMemberRoleType._all_field_names_ = set(['description']) -PaperDocChangeMemberRoleType._all_fields_ = [('description', PaperDocChangeMemberRoleType.description.validator)] +PaperDocChangeMemberRoleType._all_field_names_ = set(["description"]) +PaperDocChangeMemberRoleType._all_fields_ = [ + ("description", PaperDocChangeMemberRoleType.description.validator) +] PaperDocChangeSharingPolicyDetails.event_uuid.validator = bv.String() PaperDocChangeSharingPolicyDetails.public_sharing_policy.validator = bv.Nullable(bv.String()) PaperDocChangeSharingPolicyDetails.team_sharing_policy.validator = bv.Nullable(bv.String()) -PaperDocChangeSharingPolicyDetails._all_field_names_ = set([ - 'event_uuid', - 'public_sharing_policy', - 'team_sharing_policy', -]) +PaperDocChangeSharingPolicyDetails._all_field_names_ = set( + [ + "event_uuid", + "public_sharing_policy", + "team_sharing_policy", + ] +) PaperDocChangeSharingPolicyDetails._all_fields_ = [ - ('event_uuid', PaperDocChangeSharingPolicyDetails.event_uuid.validator), - ('public_sharing_policy', PaperDocChangeSharingPolicyDetails.public_sharing_policy.validator), - ('team_sharing_policy', PaperDocChangeSharingPolicyDetails.team_sharing_policy.validator), + ("event_uuid", PaperDocChangeSharingPolicyDetails.event_uuid.validator), + ( + "public_sharing_policy", + PaperDocChangeSharingPolicyDetails.public_sharing_policy.validator, + ), + ( + "team_sharing_policy", + PaperDocChangeSharingPolicyDetails.team_sharing_policy.validator, + ), ] PaperDocChangeSharingPolicyType.description.validator = bv.String() -PaperDocChangeSharingPolicyType._all_field_names_ = set(['description']) -PaperDocChangeSharingPolicyType._all_fields_ = [('description', PaperDocChangeSharingPolicyType.description.validator)] +PaperDocChangeSharingPolicyType._all_field_names_ = set(["description"]) +PaperDocChangeSharingPolicyType._all_fields_ = [ + ("description", PaperDocChangeSharingPolicyType.description.validator) +] PaperDocChangeSubscriptionDetails.event_uuid.validator = bv.String() PaperDocChangeSubscriptionDetails.new_subscription_level.validator = bv.String() PaperDocChangeSubscriptionDetails.previous_subscription_level.validator = bv.Nullable(bv.String()) -PaperDocChangeSubscriptionDetails._all_field_names_ = set([ - 'event_uuid', - 'new_subscription_level', - 'previous_subscription_level', -]) +PaperDocChangeSubscriptionDetails._all_field_names_ = set( + [ + "event_uuid", + "new_subscription_level", + "previous_subscription_level", + ] +) PaperDocChangeSubscriptionDetails._all_fields_ = [ - ('event_uuid', PaperDocChangeSubscriptionDetails.event_uuid.validator), - ('new_subscription_level', PaperDocChangeSubscriptionDetails.new_subscription_level.validator), - ('previous_subscription_level', PaperDocChangeSubscriptionDetails.previous_subscription_level.validator), + ("event_uuid", PaperDocChangeSubscriptionDetails.event_uuid.validator), + ( + "new_subscription_level", + PaperDocChangeSubscriptionDetails.new_subscription_level.validator, + ), + ( + "previous_subscription_level", + PaperDocChangeSubscriptionDetails.previous_subscription_level.validator, + ), ] PaperDocChangeSubscriptionType.description.validator = bv.String() -PaperDocChangeSubscriptionType._all_field_names_ = set(['description']) -PaperDocChangeSubscriptionType._all_fields_ = [('description', PaperDocChangeSubscriptionType.description.validator)] +PaperDocChangeSubscriptionType._all_field_names_ = set(["description"]) +PaperDocChangeSubscriptionType._all_fields_ = [ + ("description", PaperDocChangeSubscriptionType.description.validator) +] PaperDocDeleteCommentDetails.event_uuid.validator = bv.String() PaperDocDeleteCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocDeleteCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +PaperDocDeleteCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) PaperDocDeleteCommentDetails._all_fields_ = [ - ('event_uuid', PaperDocDeleteCommentDetails.event_uuid.validator), - ('comment_text', PaperDocDeleteCommentDetails.comment_text.validator), + ("event_uuid", PaperDocDeleteCommentDetails.event_uuid.validator), + ("comment_text", PaperDocDeleteCommentDetails.comment_text.validator), ] PaperDocDeleteCommentType.description.validator = bv.String() -PaperDocDeleteCommentType._all_field_names_ = set(['description']) -PaperDocDeleteCommentType._all_fields_ = [('description', PaperDocDeleteCommentType.description.validator)] +PaperDocDeleteCommentType._all_field_names_ = set(["description"]) +PaperDocDeleteCommentType._all_fields_ = [ + ("description", PaperDocDeleteCommentType.description.validator) +] PaperDocDeletedDetails.event_uuid.validator = bv.String() -PaperDocDeletedDetails._all_field_names_ = set(['event_uuid']) -PaperDocDeletedDetails._all_fields_ = [('event_uuid', PaperDocDeletedDetails.event_uuid.validator)] +PaperDocDeletedDetails._all_field_names_ = set(["event_uuid"]) +PaperDocDeletedDetails._all_fields_ = [("event_uuid", PaperDocDeletedDetails.event_uuid.validator)] PaperDocDeletedType.description.validator = bv.String() -PaperDocDeletedType._all_field_names_ = set(['description']) -PaperDocDeletedType._all_fields_ = [('description', PaperDocDeletedType.description.validator)] +PaperDocDeletedType._all_field_names_ = set(["description"]) +PaperDocDeletedType._all_fields_ = [("description", PaperDocDeletedType.description.validator)] PaperDocDownloadDetails.event_uuid.validator = bv.String() PaperDocDownloadDetails.export_file_format.validator = PaperDownloadFormat_validator -PaperDocDownloadDetails._all_field_names_ = set([ - 'event_uuid', - 'export_file_format', -]) +PaperDocDownloadDetails._all_field_names_ = set( + [ + "event_uuid", + "export_file_format", + ] +) PaperDocDownloadDetails._all_fields_ = [ - ('event_uuid', PaperDocDownloadDetails.event_uuid.validator), - ('export_file_format', PaperDocDownloadDetails.export_file_format.validator), + ("event_uuid", PaperDocDownloadDetails.event_uuid.validator), + ("export_file_format", PaperDocDownloadDetails.export_file_format.validator), ] PaperDocDownloadType.description.validator = bv.String() -PaperDocDownloadType._all_field_names_ = set(['description']) -PaperDocDownloadType._all_fields_ = [('description', PaperDocDownloadType.description.validator)] +PaperDocDownloadType._all_field_names_ = set(["description"]) +PaperDocDownloadType._all_fields_ = [("description", PaperDocDownloadType.description.validator)] PaperDocEditCommentDetails.event_uuid.validator = bv.String() PaperDocEditCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocEditCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +PaperDocEditCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) PaperDocEditCommentDetails._all_fields_ = [ - ('event_uuid', PaperDocEditCommentDetails.event_uuid.validator), - ('comment_text', PaperDocEditCommentDetails.comment_text.validator), + ("event_uuid", PaperDocEditCommentDetails.event_uuid.validator), + ("comment_text", PaperDocEditCommentDetails.comment_text.validator), ] PaperDocEditCommentType.description.validator = bv.String() -PaperDocEditCommentType._all_field_names_ = set(['description']) -PaperDocEditCommentType._all_fields_ = [('description', PaperDocEditCommentType.description.validator)] +PaperDocEditCommentType._all_field_names_ = set(["description"]) +PaperDocEditCommentType._all_fields_ = [ + ("description", PaperDocEditCommentType.description.validator) +] PaperDocEditDetails.event_uuid.validator = bv.String() -PaperDocEditDetails._all_field_names_ = set(['event_uuid']) -PaperDocEditDetails._all_fields_ = [('event_uuid', PaperDocEditDetails.event_uuid.validator)] +PaperDocEditDetails._all_field_names_ = set(["event_uuid"]) +PaperDocEditDetails._all_fields_ = [("event_uuid", PaperDocEditDetails.event_uuid.validator)] PaperDocEditType.description.validator = bv.String() -PaperDocEditType._all_field_names_ = set(['description']) -PaperDocEditType._all_fields_ = [('description', PaperDocEditType.description.validator)] +PaperDocEditType._all_field_names_ = set(["description"]) +PaperDocEditType._all_fields_ = [("description", PaperDocEditType.description.validator)] PaperDocFollowedDetails.event_uuid.validator = bv.String() -PaperDocFollowedDetails._all_field_names_ = set(['event_uuid']) -PaperDocFollowedDetails._all_fields_ = [('event_uuid', PaperDocFollowedDetails.event_uuid.validator)] +PaperDocFollowedDetails._all_field_names_ = set(["event_uuid"]) +PaperDocFollowedDetails._all_fields_ = [ + ("event_uuid", PaperDocFollowedDetails.event_uuid.validator) +] PaperDocFollowedType.description.validator = bv.String() -PaperDocFollowedType._all_field_names_ = set(['description']) -PaperDocFollowedType._all_fields_ = [('description', PaperDocFollowedType.description.validator)] +PaperDocFollowedType._all_field_names_ = set(["description"]) +PaperDocFollowedType._all_fields_ = [("description", PaperDocFollowedType.description.validator)] PaperDocMentionDetails.event_uuid.validator = bv.String() -PaperDocMentionDetails._all_field_names_ = set(['event_uuid']) -PaperDocMentionDetails._all_fields_ = [('event_uuid', PaperDocMentionDetails.event_uuid.validator)] +PaperDocMentionDetails._all_field_names_ = set(["event_uuid"]) +PaperDocMentionDetails._all_fields_ = [("event_uuid", PaperDocMentionDetails.event_uuid.validator)] PaperDocMentionType.description.validator = bv.String() -PaperDocMentionType._all_field_names_ = set(['description']) -PaperDocMentionType._all_fields_ = [('description', PaperDocMentionType.description.validator)] +PaperDocMentionType._all_field_names_ = set(["description"]) +PaperDocMentionType._all_fields_ = [("description", PaperDocMentionType.description.validator)] PaperDocOwnershipChangedDetails.event_uuid.validator = bv.String() -PaperDocOwnershipChangedDetails.old_owner_user_id.validator = bv.Nullable(users_common.AccountId_validator) +PaperDocOwnershipChangedDetails.old_owner_user_id.validator = bv.Nullable( + users_common.AccountId_validator +) PaperDocOwnershipChangedDetails.new_owner_user_id.validator = users_common.AccountId_validator -PaperDocOwnershipChangedDetails._all_field_names_ = set([ - 'event_uuid', - 'old_owner_user_id', - 'new_owner_user_id', -]) +PaperDocOwnershipChangedDetails._all_field_names_ = set( + [ + "event_uuid", + "old_owner_user_id", + "new_owner_user_id", + ] +) PaperDocOwnershipChangedDetails._all_fields_ = [ - ('event_uuid', PaperDocOwnershipChangedDetails.event_uuid.validator), - ('old_owner_user_id', PaperDocOwnershipChangedDetails.old_owner_user_id.validator), - ('new_owner_user_id', PaperDocOwnershipChangedDetails.new_owner_user_id.validator), + ("event_uuid", PaperDocOwnershipChangedDetails.event_uuid.validator), + ("old_owner_user_id", PaperDocOwnershipChangedDetails.old_owner_user_id.validator), + ("new_owner_user_id", PaperDocOwnershipChangedDetails.new_owner_user_id.validator), ] PaperDocOwnershipChangedType.description.validator = bv.String() -PaperDocOwnershipChangedType._all_field_names_ = set(['description']) -PaperDocOwnershipChangedType._all_fields_ = [('description', PaperDocOwnershipChangedType.description.validator)] +PaperDocOwnershipChangedType._all_field_names_ = set(["description"]) +PaperDocOwnershipChangedType._all_fields_ = [ + ("description", PaperDocOwnershipChangedType.description.validator) +] PaperDocRequestAccessDetails.event_uuid.validator = bv.String() -PaperDocRequestAccessDetails._all_field_names_ = set(['event_uuid']) -PaperDocRequestAccessDetails._all_fields_ = [('event_uuid', PaperDocRequestAccessDetails.event_uuid.validator)] +PaperDocRequestAccessDetails._all_field_names_ = set(["event_uuid"]) +PaperDocRequestAccessDetails._all_fields_ = [ + ("event_uuid", PaperDocRequestAccessDetails.event_uuid.validator) +] PaperDocRequestAccessType.description.validator = bv.String() -PaperDocRequestAccessType._all_field_names_ = set(['description']) -PaperDocRequestAccessType._all_fields_ = [('description', PaperDocRequestAccessType.description.validator)] +PaperDocRequestAccessType._all_field_names_ = set(["description"]) +PaperDocRequestAccessType._all_fields_ = [ + ("description", PaperDocRequestAccessType.description.validator) +] PaperDocResolveCommentDetails.event_uuid.validator = bv.String() PaperDocResolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocResolveCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +PaperDocResolveCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) PaperDocResolveCommentDetails._all_fields_ = [ - ('event_uuid', PaperDocResolveCommentDetails.event_uuid.validator), - ('comment_text', PaperDocResolveCommentDetails.comment_text.validator), + ("event_uuid", PaperDocResolveCommentDetails.event_uuid.validator), + ("comment_text", PaperDocResolveCommentDetails.comment_text.validator), ] PaperDocResolveCommentType.description.validator = bv.String() -PaperDocResolveCommentType._all_field_names_ = set(['description']) -PaperDocResolveCommentType._all_fields_ = [('description', PaperDocResolveCommentType.description.validator)] +PaperDocResolveCommentType._all_field_names_ = set(["description"]) +PaperDocResolveCommentType._all_fields_ = [ + ("description", PaperDocResolveCommentType.description.validator) +] PaperDocRevertDetails.event_uuid.validator = bv.String() -PaperDocRevertDetails._all_field_names_ = set(['event_uuid']) -PaperDocRevertDetails._all_fields_ = [('event_uuid', PaperDocRevertDetails.event_uuid.validator)] +PaperDocRevertDetails._all_field_names_ = set(["event_uuid"]) +PaperDocRevertDetails._all_fields_ = [("event_uuid", PaperDocRevertDetails.event_uuid.validator)] PaperDocRevertType.description.validator = bv.String() -PaperDocRevertType._all_field_names_ = set(['description']) -PaperDocRevertType._all_fields_ = [('description', PaperDocRevertType.description.validator)] +PaperDocRevertType._all_field_names_ = set(["description"]) +PaperDocRevertType._all_fields_ = [("description", PaperDocRevertType.description.validator)] PaperDocSlackShareDetails.event_uuid.validator = bv.String() -PaperDocSlackShareDetails._all_field_names_ = set(['event_uuid']) -PaperDocSlackShareDetails._all_fields_ = [('event_uuid', PaperDocSlackShareDetails.event_uuid.validator)] +PaperDocSlackShareDetails._all_field_names_ = set(["event_uuid"]) +PaperDocSlackShareDetails._all_fields_ = [ + ("event_uuid", PaperDocSlackShareDetails.event_uuid.validator) +] PaperDocSlackShareType.description.validator = bv.String() -PaperDocSlackShareType._all_field_names_ = set(['description']) -PaperDocSlackShareType._all_fields_ = [('description', PaperDocSlackShareType.description.validator)] +PaperDocSlackShareType._all_field_names_ = set(["description"]) +PaperDocSlackShareType._all_fields_ = [ + ("description", PaperDocSlackShareType.description.validator) +] PaperDocTeamInviteDetails.event_uuid.validator = bv.String() -PaperDocTeamInviteDetails._all_field_names_ = set(['event_uuid']) -PaperDocTeamInviteDetails._all_fields_ = [('event_uuid', PaperDocTeamInviteDetails.event_uuid.validator)] +PaperDocTeamInviteDetails._all_field_names_ = set(["event_uuid"]) +PaperDocTeamInviteDetails._all_fields_ = [ + ("event_uuid", PaperDocTeamInviteDetails.event_uuid.validator) +] PaperDocTeamInviteType.description.validator = bv.String() -PaperDocTeamInviteType._all_field_names_ = set(['description']) -PaperDocTeamInviteType._all_fields_ = [('description', PaperDocTeamInviteType.description.validator)] +PaperDocTeamInviteType._all_field_names_ = set(["description"]) +PaperDocTeamInviteType._all_fields_ = [ + ("description", PaperDocTeamInviteType.description.validator) +] PaperDocTrashedDetails.event_uuid.validator = bv.String() -PaperDocTrashedDetails._all_field_names_ = set(['event_uuid']) -PaperDocTrashedDetails._all_fields_ = [('event_uuid', PaperDocTrashedDetails.event_uuid.validator)] +PaperDocTrashedDetails._all_field_names_ = set(["event_uuid"]) +PaperDocTrashedDetails._all_fields_ = [("event_uuid", PaperDocTrashedDetails.event_uuid.validator)] PaperDocTrashedType.description.validator = bv.String() -PaperDocTrashedType._all_field_names_ = set(['description']) -PaperDocTrashedType._all_fields_ = [('description', PaperDocTrashedType.description.validator)] +PaperDocTrashedType._all_field_names_ = set(["description"]) +PaperDocTrashedType._all_fields_ = [("description", PaperDocTrashedType.description.validator)] PaperDocUnresolveCommentDetails.event_uuid.validator = bv.String() PaperDocUnresolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -PaperDocUnresolveCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +PaperDocUnresolveCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) PaperDocUnresolveCommentDetails._all_fields_ = [ - ('event_uuid', PaperDocUnresolveCommentDetails.event_uuid.validator), - ('comment_text', PaperDocUnresolveCommentDetails.comment_text.validator), + ("event_uuid", PaperDocUnresolveCommentDetails.event_uuid.validator), + ("comment_text", PaperDocUnresolveCommentDetails.comment_text.validator), ] PaperDocUnresolveCommentType.description.validator = bv.String() -PaperDocUnresolveCommentType._all_field_names_ = set(['description']) -PaperDocUnresolveCommentType._all_fields_ = [('description', PaperDocUnresolveCommentType.description.validator)] +PaperDocUnresolveCommentType._all_field_names_ = set(["description"]) +PaperDocUnresolveCommentType._all_fields_ = [ + ("description", PaperDocUnresolveCommentType.description.validator) +] PaperDocUntrashedDetails.event_uuid.validator = bv.String() -PaperDocUntrashedDetails._all_field_names_ = set(['event_uuid']) -PaperDocUntrashedDetails._all_fields_ = [('event_uuid', PaperDocUntrashedDetails.event_uuid.validator)] +PaperDocUntrashedDetails._all_field_names_ = set(["event_uuid"]) +PaperDocUntrashedDetails._all_fields_ = [ + ("event_uuid", PaperDocUntrashedDetails.event_uuid.validator) +] PaperDocUntrashedType.description.validator = bv.String() -PaperDocUntrashedType._all_field_names_ = set(['description']) -PaperDocUntrashedType._all_fields_ = [('description', PaperDocUntrashedType.description.validator)] +PaperDocUntrashedType._all_field_names_ = set(["description"]) +PaperDocUntrashedType._all_fields_ = [("description", PaperDocUntrashedType.description.validator)] PaperDocViewDetails.event_uuid.validator = bv.String() -PaperDocViewDetails._all_field_names_ = set(['event_uuid']) -PaperDocViewDetails._all_fields_ = [('event_uuid', PaperDocViewDetails.event_uuid.validator)] +PaperDocViewDetails._all_field_names_ = set(["event_uuid"]) +PaperDocViewDetails._all_fields_ = [("event_uuid", PaperDocViewDetails.event_uuid.validator)] PaperDocViewType.description.validator = bv.String() -PaperDocViewType._all_field_names_ = set(['description']) -PaperDocViewType._all_fields_ = [('description', PaperDocViewType.description.validator)] +PaperDocViewType._all_field_names_ = set(["description"]) +PaperDocViewType._all_fields_ = [("description", PaperDocViewType.description.validator)] PaperDocumentLogInfo.doc_id.validator = bv.String() PaperDocumentLogInfo.doc_title.validator = bv.String() -PaperDocumentLogInfo._all_field_names_ = set([ - 'doc_id', - 'doc_title', -]) +PaperDocumentLogInfo._all_field_names_ = set( + [ + "doc_id", + "doc_title", + ] +) PaperDocumentLogInfo._all_fields_ = [ - ('doc_id', PaperDocumentLogInfo.doc_id.validator), - ('doc_title', PaperDocumentLogInfo.doc_title.validator), + ("doc_id", PaperDocumentLogInfo.doc_id.validator), + ("doc_title", PaperDocumentLogInfo.doc_title.validator), ] PaperDownloadFormat._docx_validator = bv.Void() @@ -104644,309 +111568,402 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDownloadFormat._pdf_validator = bv.Void() PaperDownloadFormat._other_validator = bv.Void() PaperDownloadFormat._tagmap = { - 'docx': PaperDownloadFormat._docx_validator, - 'html': PaperDownloadFormat._html_validator, - 'markdown': PaperDownloadFormat._markdown_validator, - 'pdf': PaperDownloadFormat._pdf_validator, - 'other': PaperDownloadFormat._other_validator, + "docx": PaperDownloadFormat._docx_validator, + "html": PaperDownloadFormat._html_validator, + "markdown": PaperDownloadFormat._markdown_validator, + "pdf": PaperDownloadFormat._pdf_validator, + "other": PaperDownloadFormat._other_validator, } -PaperDownloadFormat.docx = PaperDownloadFormat('docx') -PaperDownloadFormat.html = PaperDownloadFormat('html') -PaperDownloadFormat.markdown = PaperDownloadFormat('markdown') -PaperDownloadFormat.pdf = PaperDownloadFormat('pdf') -PaperDownloadFormat.other = PaperDownloadFormat('other') +PaperDownloadFormat.docx = PaperDownloadFormat("docx") +PaperDownloadFormat.html = PaperDownloadFormat("html") +PaperDownloadFormat.markdown = PaperDownloadFormat("markdown") +PaperDownloadFormat.pdf = PaperDownloadFormat("pdf") +PaperDownloadFormat.other = PaperDownloadFormat("other") PaperEnabledUsersGroupAdditionDetails._all_field_names_ = set([]) PaperEnabledUsersGroupAdditionDetails._all_fields_ = [] PaperEnabledUsersGroupAdditionType.description.validator = bv.String() -PaperEnabledUsersGroupAdditionType._all_field_names_ = set(['description']) -PaperEnabledUsersGroupAdditionType._all_fields_ = [('description', PaperEnabledUsersGroupAdditionType.description.validator)] +PaperEnabledUsersGroupAdditionType._all_field_names_ = set(["description"]) +PaperEnabledUsersGroupAdditionType._all_fields_ = [ + ("description", PaperEnabledUsersGroupAdditionType.description.validator) +] PaperEnabledUsersGroupRemovalDetails._all_field_names_ = set([]) PaperEnabledUsersGroupRemovalDetails._all_fields_ = [] PaperEnabledUsersGroupRemovalType.description.validator = bv.String() -PaperEnabledUsersGroupRemovalType._all_field_names_ = set(['description']) -PaperEnabledUsersGroupRemovalType._all_fields_ = [('description', PaperEnabledUsersGroupRemovalType.description.validator)] +PaperEnabledUsersGroupRemovalType._all_field_names_ = set(["description"]) +PaperEnabledUsersGroupRemovalType._all_fields_ = [ + ("description", PaperEnabledUsersGroupRemovalType.description.validator) +] PaperExternalViewAllowDetails.event_uuid.validator = bv.String() -PaperExternalViewAllowDetails._all_field_names_ = set(['event_uuid']) -PaperExternalViewAllowDetails._all_fields_ = [('event_uuid', PaperExternalViewAllowDetails.event_uuid.validator)] +PaperExternalViewAllowDetails._all_field_names_ = set(["event_uuid"]) +PaperExternalViewAllowDetails._all_fields_ = [ + ("event_uuid", PaperExternalViewAllowDetails.event_uuid.validator) +] PaperExternalViewAllowType.description.validator = bv.String() -PaperExternalViewAllowType._all_field_names_ = set(['description']) -PaperExternalViewAllowType._all_fields_ = [('description', PaperExternalViewAllowType.description.validator)] +PaperExternalViewAllowType._all_field_names_ = set(["description"]) +PaperExternalViewAllowType._all_fields_ = [ + ("description", PaperExternalViewAllowType.description.validator) +] PaperExternalViewDefaultTeamDetails.event_uuid.validator = bv.String() -PaperExternalViewDefaultTeamDetails._all_field_names_ = set(['event_uuid']) -PaperExternalViewDefaultTeamDetails._all_fields_ = [('event_uuid', PaperExternalViewDefaultTeamDetails.event_uuid.validator)] +PaperExternalViewDefaultTeamDetails._all_field_names_ = set(["event_uuid"]) +PaperExternalViewDefaultTeamDetails._all_fields_ = [ + ("event_uuid", PaperExternalViewDefaultTeamDetails.event_uuid.validator) +] PaperExternalViewDefaultTeamType.description.validator = bv.String() -PaperExternalViewDefaultTeamType._all_field_names_ = set(['description']) -PaperExternalViewDefaultTeamType._all_fields_ = [('description', PaperExternalViewDefaultTeamType.description.validator)] +PaperExternalViewDefaultTeamType._all_field_names_ = set(["description"]) +PaperExternalViewDefaultTeamType._all_fields_ = [ + ("description", PaperExternalViewDefaultTeamType.description.validator) +] PaperExternalViewForbidDetails.event_uuid.validator = bv.String() -PaperExternalViewForbidDetails._all_field_names_ = set(['event_uuid']) -PaperExternalViewForbidDetails._all_fields_ = [('event_uuid', PaperExternalViewForbidDetails.event_uuid.validator)] +PaperExternalViewForbidDetails._all_field_names_ = set(["event_uuid"]) +PaperExternalViewForbidDetails._all_fields_ = [ + ("event_uuid", PaperExternalViewForbidDetails.event_uuid.validator) +] PaperExternalViewForbidType.description.validator = bv.String() -PaperExternalViewForbidType._all_field_names_ = set(['description']) -PaperExternalViewForbidType._all_fields_ = [('description', PaperExternalViewForbidType.description.validator)] +PaperExternalViewForbidType._all_field_names_ = set(["description"]) +PaperExternalViewForbidType._all_fields_ = [ + ("description", PaperExternalViewForbidType.description.validator) +] PaperFolderChangeSubscriptionDetails.event_uuid.validator = bv.String() PaperFolderChangeSubscriptionDetails.new_subscription_level.validator = bv.String() -PaperFolderChangeSubscriptionDetails.previous_subscription_level.validator = bv.Nullable(bv.String()) -PaperFolderChangeSubscriptionDetails._all_field_names_ = set([ - 'event_uuid', - 'new_subscription_level', - 'previous_subscription_level', -]) +PaperFolderChangeSubscriptionDetails.previous_subscription_level.validator = bv.Nullable( + bv.String() +) +PaperFolderChangeSubscriptionDetails._all_field_names_ = set( + [ + "event_uuid", + "new_subscription_level", + "previous_subscription_level", + ] +) PaperFolderChangeSubscriptionDetails._all_fields_ = [ - ('event_uuid', PaperFolderChangeSubscriptionDetails.event_uuid.validator), - ('new_subscription_level', PaperFolderChangeSubscriptionDetails.new_subscription_level.validator), - ('previous_subscription_level', PaperFolderChangeSubscriptionDetails.previous_subscription_level.validator), + ("event_uuid", PaperFolderChangeSubscriptionDetails.event_uuid.validator), + ( + "new_subscription_level", + PaperFolderChangeSubscriptionDetails.new_subscription_level.validator, + ), + ( + "previous_subscription_level", + PaperFolderChangeSubscriptionDetails.previous_subscription_level.validator, + ), ] PaperFolderChangeSubscriptionType.description.validator = bv.String() -PaperFolderChangeSubscriptionType._all_field_names_ = set(['description']) -PaperFolderChangeSubscriptionType._all_fields_ = [('description', PaperFolderChangeSubscriptionType.description.validator)] +PaperFolderChangeSubscriptionType._all_field_names_ = set(["description"]) +PaperFolderChangeSubscriptionType._all_fields_ = [ + ("description", PaperFolderChangeSubscriptionType.description.validator) +] PaperFolderDeletedDetails.event_uuid.validator = bv.String() -PaperFolderDeletedDetails._all_field_names_ = set(['event_uuid']) -PaperFolderDeletedDetails._all_fields_ = [('event_uuid', PaperFolderDeletedDetails.event_uuid.validator)] +PaperFolderDeletedDetails._all_field_names_ = set(["event_uuid"]) +PaperFolderDeletedDetails._all_fields_ = [ + ("event_uuid", PaperFolderDeletedDetails.event_uuid.validator) +] PaperFolderDeletedType.description.validator = bv.String() -PaperFolderDeletedType._all_field_names_ = set(['description']) -PaperFolderDeletedType._all_fields_ = [('description', PaperFolderDeletedType.description.validator)] +PaperFolderDeletedType._all_field_names_ = set(["description"]) +PaperFolderDeletedType._all_fields_ = [ + ("description", PaperFolderDeletedType.description.validator) +] PaperFolderFollowedDetails.event_uuid.validator = bv.String() -PaperFolderFollowedDetails._all_field_names_ = set(['event_uuid']) -PaperFolderFollowedDetails._all_fields_ = [('event_uuid', PaperFolderFollowedDetails.event_uuid.validator)] +PaperFolderFollowedDetails._all_field_names_ = set(["event_uuid"]) +PaperFolderFollowedDetails._all_fields_ = [ + ("event_uuid", PaperFolderFollowedDetails.event_uuid.validator) +] PaperFolderFollowedType.description.validator = bv.String() -PaperFolderFollowedType._all_field_names_ = set(['description']) -PaperFolderFollowedType._all_fields_ = [('description', PaperFolderFollowedType.description.validator)] +PaperFolderFollowedType._all_field_names_ = set(["description"]) +PaperFolderFollowedType._all_fields_ = [ + ("description", PaperFolderFollowedType.description.validator) +] PaperFolderLogInfo.folder_id.validator = bv.String() PaperFolderLogInfo.folder_name.validator = bv.String() -PaperFolderLogInfo._all_field_names_ = set([ - 'folder_id', - 'folder_name', -]) +PaperFolderLogInfo._all_field_names_ = set( + [ + "folder_id", + "folder_name", + ] +) PaperFolderLogInfo._all_fields_ = [ - ('folder_id', PaperFolderLogInfo.folder_id.validator), - ('folder_name', PaperFolderLogInfo.folder_name.validator), + ("folder_id", PaperFolderLogInfo.folder_id.validator), + ("folder_name", PaperFolderLogInfo.folder_name.validator), ] PaperFolderTeamInviteDetails.event_uuid.validator = bv.String() -PaperFolderTeamInviteDetails._all_field_names_ = set(['event_uuid']) -PaperFolderTeamInviteDetails._all_fields_ = [('event_uuid', PaperFolderTeamInviteDetails.event_uuid.validator)] +PaperFolderTeamInviteDetails._all_field_names_ = set(["event_uuid"]) +PaperFolderTeamInviteDetails._all_fields_ = [ + ("event_uuid", PaperFolderTeamInviteDetails.event_uuid.validator) +] PaperFolderTeamInviteType.description.validator = bv.String() -PaperFolderTeamInviteType._all_field_names_ = set(['description']) -PaperFolderTeamInviteType._all_fields_ = [('description', PaperFolderTeamInviteType.description.validator)] +PaperFolderTeamInviteType._all_field_names_ = set(["description"]) +PaperFolderTeamInviteType._all_fields_ = [ + ("description", PaperFolderTeamInviteType.description.validator) +] PaperMemberPolicy._anyone_with_link_validator = bv.Void() PaperMemberPolicy._only_team_validator = bv.Void() PaperMemberPolicy._team_and_explicitly_shared_validator = bv.Void() PaperMemberPolicy._other_validator = bv.Void() PaperMemberPolicy._tagmap = { - 'anyone_with_link': PaperMemberPolicy._anyone_with_link_validator, - 'only_team': PaperMemberPolicy._only_team_validator, - 'team_and_explicitly_shared': PaperMemberPolicy._team_and_explicitly_shared_validator, - 'other': PaperMemberPolicy._other_validator, + "anyone_with_link": PaperMemberPolicy._anyone_with_link_validator, + "only_team": PaperMemberPolicy._only_team_validator, + "team_and_explicitly_shared": PaperMemberPolicy._team_and_explicitly_shared_validator, + "other": PaperMemberPolicy._other_validator, } -PaperMemberPolicy.anyone_with_link = PaperMemberPolicy('anyone_with_link') -PaperMemberPolicy.only_team = PaperMemberPolicy('only_team') -PaperMemberPolicy.team_and_explicitly_shared = PaperMemberPolicy('team_and_explicitly_shared') -PaperMemberPolicy.other = PaperMemberPolicy('other') +PaperMemberPolicy.anyone_with_link = PaperMemberPolicy("anyone_with_link") +PaperMemberPolicy.only_team = PaperMemberPolicy("only_team") +PaperMemberPolicy.team_and_explicitly_shared = PaperMemberPolicy("team_and_explicitly_shared") +PaperMemberPolicy.other = PaperMemberPolicy("other") PaperPublishedLinkChangePermissionDetails.event_uuid.validator = bv.String() PaperPublishedLinkChangePermissionDetails.new_permission_level.validator = bv.String() PaperPublishedLinkChangePermissionDetails.previous_permission_level.validator = bv.String() -PaperPublishedLinkChangePermissionDetails._all_field_names_ = set([ - 'event_uuid', - 'new_permission_level', - 'previous_permission_level', -]) +PaperPublishedLinkChangePermissionDetails._all_field_names_ = set( + [ + "event_uuid", + "new_permission_level", + "previous_permission_level", + ] +) PaperPublishedLinkChangePermissionDetails._all_fields_ = [ - ('event_uuid', PaperPublishedLinkChangePermissionDetails.event_uuid.validator), - ('new_permission_level', PaperPublishedLinkChangePermissionDetails.new_permission_level.validator), - ('previous_permission_level', PaperPublishedLinkChangePermissionDetails.previous_permission_level.validator), + ("event_uuid", PaperPublishedLinkChangePermissionDetails.event_uuid.validator), + ( + "new_permission_level", + PaperPublishedLinkChangePermissionDetails.new_permission_level.validator, + ), + ( + "previous_permission_level", + PaperPublishedLinkChangePermissionDetails.previous_permission_level.validator, + ), ] PaperPublishedLinkChangePermissionType.description.validator = bv.String() -PaperPublishedLinkChangePermissionType._all_field_names_ = set(['description']) -PaperPublishedLinkChangePermissionType._all_fields_ = [('description', PaperPublishedLinkChangePermissionType.description.validator)] +PaperPublishedLinkChangePermissionType._all_field_names_ = set(["description"]) +PaperPublishedLinkChangePermissionType._all_fields_ = [ + ("description", PaperPublishedLinkChangePermissionType.description.validator) +] PaperPublishedLinkCreateDetails.event_uuid.validator = bv.String() -PaperPublishedLinkCreateDetails._all_field_names_ = set(['event_uuid']) -PaperPublishedLinkCreateDetails._all_fields_ = [('event_uuid', PaperPublishedLinkCreateDetails.event_uuid.validator)] +PaperPublishedLinkCreateDetails._all_field_names_ = set(["event_uuid"]) +PaperPublishedLinkCreateDetails._all_fields_ = [ + ("event_uuid", PaperPublishedLinkCreateDetails.event_uuid.validator) +] PaperPublishedLinkCreateType.description.validator = bv.String() -PaperPublishedLinkCreateType._all_field_names_ = set(['description']) -PaperPublishedLinkCreateType._all_fields_ = [('description', PaperPublishedLinkCreateType.description.validator)] +PaperPublishedLinkCreateType._all_field_names_ = set(["description"]) +PaperPublishedLinkCreateType._all_fields_ = [ + ("description", PaperPublishedLinkCreateType.description.validator) +] PaperPublishedLinkDisabledDetails.event_uuid.validator = bv.String() -PaperPublishedLinkDisabledDetails._all_field_names_ = set(['event_uuid']) -PaperPublishedLinkDisabledDetails._all_fields_ = [('event_uuid', PaperPublishedLinkDisabledDetails.event_uuid.validator)] +PaperPublishedLinkDisabledDetails._all_field_names_ = set(["event_uuid"]) +PaperPublishedLinkDisabledDetails._all_fields_ = [ + ("event_uuid", PaperPublishedLinkDisabledDetails.event_uuid.validator) +] PaperPublishedLinkDisabledType.description.validator = bv.String() -PaperPublishedLinkDisabledType._all_field_names_ = set(['description']) -PaperPublishedLinkDisabledType._all_fields_ = [('description', PaperPublishedLinkDisabledType.description.validator)] +PaperPublishedLinkDisabledType._all_field_names_ = set(["description"]) +PaperPublishedLinkDisabledType._all_fields_ = [ + ("description", PaperPublishedLinkDisabledType.description.validator) +] PaperPublishedLinkViewDetails.event_uuid.validator = bv.String() -PaperPublishedLinkViewDetails._all_field_names_ = set(['event_uuid']) -PaperPublishedLinkViewDetails._all_fields_ = [('event_uuid', PaperPublishedLinkViewDetails.event_uuid.validator)] +PaperPublishedLinkViewDetails._all_field_names_ = set(["event_uuid"]) +PaperPublishedLinkViewDetails._all_fields_ = [ + ("event_uuid", PaperPublishedLinkViewDetails.event_uuid.validator) +] PaperPublishedLinkViewType.description.validator = bv.String() -PaperPublishedLinkViewType._all_field_names_ = set(['description']) -PaperPublishedLinkViewType._all_fields_ = [('description', PaperPublishedLinkViewType.description.validator)] +PaperPublishedLinkViewType._all_field_names_ = set(["description"]) +PaperPublishedLinkViewType._all_fields_ = [ + ("description", PaperPublishedLinkViewType.description.validator) +] ParticipantLogInfo._group_validator = GroupLogInfo_validator ParticipantLogInfo._user_validator = UserLogInfo_validator ParticipantLogInfo._other_validator = bv.Void() ParticipantLogInfo._tagmap = { - 'group': ParticipantLogInfo._group_validator, - 'user': ParticipantLogInfo._user_validator, - 'other': ParticipantLogInfo._other_validator, + "group": ParticipantLogInfo._group_validator, + "user": ParticipantLogInfo._user_validator, + "other": ParticipantLogInfo._other_validator, } -ParticipantLogInfo.other = ParticipantLogInfo('other') +ParticipantLogInfo.other = ParticipantLogInfo("other") PassPolicy._allow_validator = bv.Void() PassPolicy._disabled_validator = bv.Void() PassPolicy._enabled_validator = bv.Void() PassPolicy._other_validator = bv.Void() PassPolicy._tagmap = { - 'allow': PassPolicy._allow_validator, - 'disabled': PassPolicy._disabled_validator, - 'enabled': PassPolicy._enabled_validator, - 'other': PassPolicy._other_validator, + "allow": PassPolicy._allow_validator, + "disabled": PassPolicy._disabled_validator, + "enabled": PassPolicy._enabled_validator, + "other": PassPolicy._other_validator, } -PassPolicy.allow = PassPolicy('allow') -PassPolicy.disabled = PassPolicy('disabled') -PassPolicy.enabled = PassPolicy('enabled') -PassPolicy.other = PassPolicy('other') +PassPolicy.allow = PassPolicy("allow") +PassPolicy.disabled = PassPolicy("disabled") +PassPolicy.enabled = PassPolicy("enabled") +PassPolicy.other = PassPolicy("other") PasskeyAddDetails._all_field_names_ = set([]) PasskeyAddDetails._all_fields_ = [] PasskeyAddType.description.validator = bv.String() -PasskeyAddType._all_field_names_ = set(['description']) -PasskeyAddType._all_fields_ = [('description', PasskeyAddType.description.validator)] +PasskeyAddType._all_field_names_ = set(["description"]) +PasskeyAddType._all_fields_ = [("description", PasskeyAddType.description.validator)] PasskeyLoginPolicy._default_validator = bv.Void() PasskeyLoginPolicy._disabled_validator = bv.Void() PasskeyLoginPolicy._enabled_validator = bv.Void() PasskeyLoginPolicy._other_validator = bv.Void() PasskeyLoginPolicy._tagmap = { - 'default': PasskeyLoginPolicy._default_validator, - 'disabled': PasskeyLoginPolicy._disabled_validator, - 'enabled': PasskeyLoginPolicy._enabled_validator, - 'other': PasskeyLoginPolicy._other_validator, + "default": PasskeyLoginPolicy._default_validator, + "disabled": PasskeyLoginPolicy._disabled_validator, + "enabled": PasskeyLoginPolicy._enabled_validator, + "other": PasskeyLoginPolicy._other_validator, } -PasskeyLoginPolicy.default = PasskeyLoginPolicy('default') -PasskeyLoginPolicy.disabled = PasskeyLoginPolicy('disabled') -PasskeyLoginPolicy.enabled = PasskeyLoginPolicy('enabled') -PasskeyLoginPolicy.other = PasskeyLoginPolicy('other') +PasskeyLoginPolicy.default = PasskeyLoginPolicy("default") +PasskeyLoginPolicy.disabled = PasskeyLoginPolicy("disabled") +PasskeyLoginPolicy.enabled = PasskeyLoginPolicy("enabled") +PasskeyLoginPolicy.other = PasskeyLoginPolicy("other") PasskeyLoginPolicyChangedDetails.new_value.validator = PasskeyLoginPolicy_validator -PasskeyLoginPolicyChangedDetails.previous_value.validator = bv.Nullable(PasskeyLoginPolicy_validator) -PasskeyLoginPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +PasskeyLoginPolicyChangedDetails.previous_value.validator = bv.Nullable( + PasskeyLoginPolicy_validator +) +PasskeyLoginPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) PasskeyLoginPolicyChangedDetails._all_fields_ = [ - ('new_value', PasskeyLoginPolicyChangedDetails.new_value.validator), - ('previous_value', PasskeyLoginPolicyChangedDetails.previous_value.validator), + ("new_value", PasskeyLoginPolicyChangedDetails.new_value.validator), + ("previous_value", PasskeyLoginPolicyChangedDetails.previous_value.validator), ] PasskeyLoginPolicyChangedType.description.validator = bv.String() -PasskeyLoginPolicyChangedType._all_field_names_ = set(['description']) -PasskeyLoginPolicyChangedType._all_fields_ = [('description', PasskeyLoginPolicyChangedType.description.validator)] +PasskeyLoginPolicyChangedType._all_field_names_ = set(["description"]) +PasskeyLoginPolicyChangedType._all_fields_ = [ + ("description", PasskeyLoginPolicyChangedType.description.validator) +] PasskeyRemoveDetails._all_field_names_ = set([]) PasskeyRemoveDetails._all_fields_ = [] PasskeyRemoveType.description.validator = bv.String() -PasskeyRemoveType._all_field_names_ = set(['description']) -PasskeyRemoveType._all_fields_ = [('description', PasskeyRemoveType.description.validator)] +PasskeyRemoveType._all_field_names_ = set(["description"]) +PasskeyRemoveType._all_fields_ = [("description", PasskeyRemoveType.description.validator)] PasswordChangeDetails._all_field_names_ = set([]) PasswordChangeDetails._all_fields_ = [] PasswordChangeType.description.validator = bv.String() -PasswordChangeType._all_field_names_ = set(['description']) -PasswordChangeType._all_fields_ = [('description', PasswordChangeType.description.validator)] +PasswordChangeType._all_field_names_ = set(["description"]) +PasswordChangeType._all_fields_ = [("description", PasswordChangeType.description.validator)] PasswordResetAllDetails._all_field_names_ = set([]) PasswordResetAllDetails._all_fields_ = [] PasswordResetAllType.description.validator = bv.String() -PasswordResetAllType._all_field_names_ = set(['description']) -PasswordResetAllType._all_fields_ = [('description', PasswordResetAllType.description.validator)] +PasswordResetAllType._all_field_names_ = set(["description"]) +PasswordResetAllType._all_fields_ = [("description", PasswordResetAllType.description.validator)] PasswordResetDetails._all_field_names_ = set([]) PasswordResetDetails._all_fields_ = [] PasswordResetType.description.validator = bv.String() -PasswordResetType._all_field_names_ = set(['description']) -PasswordResetType._all_fields_ = [('description', PasswordResetType.description.validator)] - -PasswordStrengthRequirementsChangePolicyDetails.previous_value.validator = team_policies.PasswordStrengthPolicy_validator -PasswordStrengthRequirementsChangePolicyDetails.new_value.validator = team_policies.PasswordStrengthPolicy_validator -PasswordStrengthRequirementsChangePolicyDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +PasswordResetType._all_field_names_ = set(["description"]) +PasswordResetType._all_fields_ = [("description", PasswordResetType.description.validator)] + +PasswordStrengthRequirementsChangePolicyDetails.previous_value.validator = ( + team_policies.PasswordStrengthPolicy_validator +) +PasswordStrengthRequirementsChangePolicyDetails.new_value.validator = ( + team_policies.PasswordStrengthPolicy_validator +) +PasswordStrengthRequirementsChangePolicyDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) PasswordStrengthRequirementsChangePolicyDetails._all_fields_ = [ - ('previous_value', PasswordStrengthRequirementsChangePolicyDetails.previous_value.validator), - ('new_value', PasswordStrengthRequirementsChangePolicyDetails.new_value.validator), + ( + "previous_value", + PasswordStrengthRequirementsChangePolicyDetails.previous_value.validator, + ), + ("new_value", PasswordStrengthRequirementsChangePolicyDetails.new_value.validator), ] PasswordStrengthRequirementsChangePolicyType.description.validator = bv.String() -PasswordStrengthRequirementsChangePolicyType._all_field_names_ = set(['description']) -PasswordStrengthRequirementsChangePolicyType._all_fields_ = [('description', PasswordStrengthRequirementsChangePolicyType.description.validator)] +PasswordStrengthRequirementsChangePolicyType._all_field_names_ = set(["description"]) +PasswordStrengthRequirementsChangePolicyType._all_fields_ = [ + ("description", PasswordStrengthRequirementsChangePolicyType.description.validator) +] PathLogInfo.contextual.validator = bv.Nullable(FilePath_validator) PathLogInfo.namespace_relative.validator = NamespaceRelativePathLogInfo_validator -PathLogInfo._all_field_names_ = set([ - 'contextual', - 'namespace_relative', -]) +PathLogInfo._all_field_names_ = set( + [ + "contextual", + "namespace_relative", + ] +) PathLogInfo._all_fields_ = [ - ('contextual', PathLogInfo.contextual.validator), - ('namespace_relative', PathLogInfo.namespace_relative.validator), + ("contextual", PathLogInfo.contextual.validator), + ("namespace_relative", PathLogInfo.namespace_relative.validator), ] PendingSecondaryEmailAddedDetails.secondary_email.validator = EmailAddress_validator -PendingSecondaryEmailAddedDetails._all_field_names_ = set(['secondary_email']) -PendingSecondaryEmailAddedDetails._all_fields_ = [('secondary_email', PendingSecondaryEmailAddedDetails.secondary_email.validator)] +PendingSecondaryEmailAddedDetails._all_field_names_ = set(["secondary_email"]) +PendingSecondaryEmailAddedDetails._all_fields_ = [ + ("secondary_email", PendingSecondaryEmailAddedDetails.secondary_email.validator) +] PendingSecondaryEmailAddedType.description.validator = bv.String() -PendingSecondaryEmailAddedType._all_field_names_ = set(['description']) -PendingSecondaryEmailAddedType._all_fields_ = [('description', PendingSecondaryEmailAddedType.description.validator)] +PendingSecondaryEmailAddedType._all_field_names_ = set(["description"]) +PendingSecondaryEmailAddedType._all_fields_ = [ + ("description", PendingSecondaryEmailAddedType.description.validator) +] PermanentDeleteChangePolicyDetails.new_value.validator = ContentPermanentDeletePolicy_validator -PermanentDeleteChangePolicyDetails.previous_value.validator = bv.Nullable(ContentPermanentDeletePolicy_validator) -PermanentDeleteChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +PermanentDeleteChangePolicyDetails.previous_value.validator = bv.Nullable( + ContentPermanentDeletePolicy_validator +) +PermanentDeleteChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) PermanentDeleteChangePolicyDetails._all_fields_ = [ - ('new_value', PermanentDeleteChangePolicyDetails.new_value.validator), - ('previous_value', PermanentDeleteChangePolicyDetails.previous_value.validator), + ("new_value", PermanentDeleteChangePolicyDetails.new_value.validator), + ("previous_value", PermanentDeleteChangePolicyDetails.previous_value.validator), ] PermanentDeleteChangePolicyType.description.validator = bv.String() -PermanentDeleteChangePolicyType._all_field_names_ = set(['description']) -PermanentDeleteChangePolicyType._all_fields_ = [('description', PermanentDeleteChangePolicyType.description.validator)] +PermanentDeleteChangePolicyType._all_field_names_ = set(["description"]) +PermanentDeleteChangePolicyType._all_fields_ = [ + ("description", PermanentDeleteChangePolicyType.description.validator) +] PlacementRestriction._australia_only_validator = bv.Void() PlacementRestriction._canada_only_validator = bv.Void() @@ -104957,161 +111974,185 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PlacementRestriction._us_s3_only_validator = bv.Void() PlacementRestriction._other_validator = bv.Void() PlacementRestriction._tagmap = { - 'australia_only': PlacementRestriction._australia_only_validator, - 'canada_only': PlacementRestriction._canada_only_validator, - 'europe_only': PlacementRestriction._europe_only_validator, - 'japan_only': PlacementRestriction._japan_only_validator, - 'none': PlacementRestriction._none_validator, - 'uk_only': PlacementRestriction._uk_only_validator, - 'us_s3_only': PlacementRestriction._us_s3_only_validator, - 'other': PlacementRestriction._other_validator, + "australia_only": PlacementRestriction._australia_only_validator, + "canada_only": PlacementRestriction._canada_only_validator, + "europe_only": PlacementRestriction._europe_only_validator, + "japan_only": PlacementRestriction._japan_only_validator, + "none": PlacementRestriction._none_validator, + "uk_only": PlacementRestriction._uk_only_validator, + "us_s3_only": PlacementRestriction._us_s3_only_validator, + "other": PlacementRestriction._other_validator, } -PlacementRestriction.australia_only = PlacementRestriction('australia_only') -PlacementRestriction.canada_only = PlacementRestriction('canada_only') -PlacementRestriction.europe_only = PlacementRestriction('europe_only') -PlacementRestriction.japan_only = PlacementRestriction('japan_only') -PlacementRestriction.none = PlacementRestriction('none') -PlacementRestriction.uk_only = PlacementRestriction('uk_only') -PlacementRestriction.us_s3_only = PlacementRestriction('us_s3_only') -PlacementRestriction.other = PlacementRestriction('other') +PlacementRestriction.australia_only = PlacementRestriction("australia_only") +PlacementRestriction.canada_only = PlacementRestriction("canada_only") +PlacementRestriction.europe_only = PlacementRestriction("europe_only") +PlacementRestriction.japan_only = PlacementRestriction("japan_only") +PlacementRestriction.none = PlacementRestriction("none") +PlacementRestriction.uk_only = PlacementRestriction("uk_only") +PlacementRestriction.us_s3_only = PlacementRestriction("us_s3_only") +PlacementRestriction.other = PlacementRestriction("other") PolicyType._disposition_validator = bv.Void() PolicyType._retention_validator = bv.Void() PolicyType._other_validator = bv.Void() PolicyType._tagmap = { - 'disposition': PolicyType._disposition_validator, - 'retention': PolicyType._retention_validator, - 'other': PolicyType._other_validator, + "disposition": PolicyType._disposition_validator, + "retention": PolicyType._retention_validator, + "other": PolicyType._other_validator, } -PolicyType.disposition = PolicyType('disposition') -PolicyType.retention = PolicyType('retention') -PolicyType.other = PolicyType('other') +PolicyType.disposition = PolicyType("disposition") +PolicyType.retention = PolicyType("retention") +PolicyType.other = PolicyType("other") PreviewsAiPolicy._default_validator = bv.Void() PreviewsAiPolicy._disabled_validator = bv.Void() PreviewsAiPolicy._enabled_validator = bv.Void() PreviewsAiPolicy._other_validator = bv.Void() PreviewsAiPolicy._tagmap = { - 'default': PreviewsAiPolicy._default_validator, - 'disabled': PreviewsAiPolicy._disabled_validator, - 'enabled': PreviewsAiPolicy._enabled_validator, - 'other': PreviewsAiPolicy._other_validator, + "default": PreviewsAiPolicy._default_validator, + "disabled": PreviewsAiPolicy._disabled_validator, + "enabled": PreviewsAiPolicy._enabled_validator, + "other": PreviewsAiPolicy._other_validator, } -PreviewsAiPolicy.default = PreviewsAiPolicy('default') -PreviewsAiPolicy.disabled = PreviewsAiPolicy('disabled') -PreviewsAiPolicy.enabled = PreviewsAiPolicy('enabled') -PreviewsAiPolicy.other = PreviewsAiPolicy('other') +PreviewsAiPolicy.default = PreviewsAiPolicy("default") +PreviewsAiPolicy.disabled = PreviewsAiPolicy("disabled") +PreviewsAiPolicy.enabled = PreviewsAiPolicy("enabled") +PreviewsAiPolicy.other = PreviewsAiPolicy("other") PreviewsAiPolicyChangedDetails.new_value.validator = PreviewsAiPolicy_validator PreviewsAiPolicyChangedDetails.previous_value.validator = PreviewsAiPolicy_validator -PreviewsAiPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +PreviewsAiPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) PreviewsAiPolicyChangedDetails._all_fields_ = [ - ('new_value', PreviewsAiPolicyChangedDetails.new_value.validator), - ('previous_value', PreviewsAiPolicyChangedDetails.previous_value.validator), + ("new_value", PreviewsAiPolicyChangedDetails.new_value.validator), + ("previous_value", PreviewsAiPolicyChangedDetails.previous_value.validator), ] PreviewsAiPolicyChangedType.description.validator = bv.String() -PreviewsAiPolicyChangedType._all_field_names_ = set(['description']) -PreviewsAiPolicyChangedType._all_fields_ = [('description', PreviewsAiPolicyChangedType.description.validator)] +PreviewsAiPolicyChangedType._all_field_names_ = set(["description"]) +PreviewsAiPolicyChangedType._all_fields_ = [ + ("description", PreviewsAiPolicyChangedType.description.validator) +] PrimaryTeamRequestAcceptedDetails.secondary_team.validator = bv.String() PrimaryTeamRequestAcceptedDetails.sent_by.validator = bv.String() -PrimaryTeamRequestAcceptedDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_by', -]) +PrimaryTeamRequestAcceptedDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_by", + ] +) PrimaryTeamRequestAcceptedDetails._all_fields_ = [ - ('secondary_team', PrimaryTeamRequestAcceptedDetails.secondary_team.validator), - ('sent_by', PrimaryTeamRequestAcceptedDetails.sent_by.validator), + ("secondary_team", PrimaryTeamRequestAcceptedDetails.secondary_team.validator), + ("sent_by", PrimaryTeamRequestAcceptedDetails.sent_by.validator), ] PrimaryTeamRequestCanceledDetails.secondary_team.validator = bv.String() PrimaryTeamRequestCanceledDetails.sent_by.validator = bv.String() -PrimaryTeamRequestCanceledDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_by', -]) +PrimaryTeamRequestCanceledDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_by", + ] +) PrimaryTeamRequestCanceledDetails._all_fields_ = [ - ('secondary_team', PrimaryTeamRequestCanceledDetails.secondary_team.validator), - ('sent_by', PrimaryTeamRequestCanceledDetails.sent_by.validator), + ("secondary_team", PrimaryTeamRequestCanceledDetails.secondary_team.validator), + ("sent_by", PrimaryTeamRequestCanceledDetails.sent_by.validator), ] PrimaryTeamRequestExpiredDetails.secondary_team.validator = bv.String() PrimaryTeamRequestExpiredDetails.sent_by.validator = bv.String() -PrimaryTeamRequestExpiredDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_by', -]) +PrimaryTeamRequestExpiredDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_by", + ] +) PrimaryTeamRequestExpiredDetails._all_fields_ = [ - ('secondary_team', PrimaryTeamRequestExpiredDetails.secondary_team.validator), - ('sent_by', PrimaryTeamRequestExpiredDetails.sent_by.validator), + ("secondary_team", PrimaryTeamRequestExpiredDetails.secondary_team.validator), + ("sent_by", PrimaryTeamRequestExpiredDetails.sent_by.validator), ] PrimaryTeamRequestReminderDetails.secondary_team.validator = bv.String() PrimaryTeamRequestReminderDetails.sent_to.validator = bv.String() -PrimaryTeamRequestReminderDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_to', -]) +PrimaryTeamRequestReminderDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_to", + ] +) PrimaryTeamRequestReminderDetails._all_fields_ = [ - ('secondary_team', PrimaryTeamRequestReminderDetails.secondary_team.validator), - ('sent_to', PrimaryTeamRequestReminderDetails.sent_to.validator), + ("secondary_team", PrimaryTeamRequestReminderDetails.secondary_team.validator), + ("sent_to", PrimaryTeamRequestReminderDetails.sent_to.validator), ] ProductAssignedToMemberDetails.user_name.validator = UserNameLogInfo_validator ProductAssignedToMemberDetails.product_name.validator = ProductLogInfo_validator -ProductAssignedToMemberDetails._all_field_names_ = set([ - 'user_name', - 'product_name', -]) +ProductAssignedToMemberDetails._all_field_names_ = set( + [ + "user_name", + "product_name", + ] +) ProductAssignedToMemberDetails._all_fields_ = [ - ('user_name', ProductAssignedToMemberDetails.user_name.validator), - ('product_name', ProductAssignedToMemberDetails.product_name.validator), + ("user_name", ProductAssignedToMemberDetails.user_name.validator), + ("product_name", ProductAssignedToMemberDetails.product_name.validator), ] ProductAssignedToMemberType.description.validator = bv.String() -ProductAssignedToMemberType._all_field_names_ = set(['description']) -ProductAssignedToMemberType._all_fields_ = [('description', ProductAssignedToMemberType.description.validator)] +ProductAssignedToMemberType._all_field_names_ = set(["description"]) +ProductAssignedToMemberType._all_fields_ = [ + ("description", ProductAssignedToMemberType.description.validator) +] ProductLogInfo.product_name.validator = bv.String() -ProductLogInfo._all_field_names_ = set(['product_name']) -ProductLogInfo._all_fields_ = [('product_name', ProductLogInfo.product_name.validator)] +ProductLogInfo._all_field_names_ = set(["product_name"]) +ProductLogInfo._all_fields_ = [("product_name", ProductLogInfo.product_name.validator)] ProductRemovedFromMemberDetails.user_name.validator = UserNameLogInfo_validator ProductRemovedFromMemberDetails.product_name.validator = ProductLogInfo_validator -ProductRemovedFromMemberDetails._all_field_names_ = set([ - 'user_name', - 'product_name', -]) +ProductRemovedFromMemberDetails._all_field_names_ = set( + [ + "user_name", + "product_name", + ] +) ProductRemovedFromMemberDetails._all_fields_ = [ - ('user_name', ProductRemovedFromMemberDetails.user_name.validator), - ('product_name', ProductRemovedFromMemberDetails.product_name.validator), + ("user_name", ProductRemovedFromMemberDetails.user_name.validator), + ("product_name", ProductRemovedFromMemberDetails.product_name.validator), ] ProductRemovedFromMemberType.description.validator = bv.String() -ProductRemovedFromMemberType._all_field_names_ = set(['description']) -ProductRemovedFromMemberType._all_fields_ = [('description', ProductRemovedFromMemberType.description.validator)] +ProductRemovedFromMemberType._all_field_names_ = set(["description"]) +ProductRemovedFromMemberType._all_fields_ = [ + ("description", ProductRemovedFromMemberType.description.validator) +] ProtectInternalDomainsChangedDetails.domains_added.validator = bv.Nullable(bv.List(bv.String())) ProtectInternalDomainsChangedDetails.domains_removed.validator = bv.Nullable(bv.List(bv.String())) -ProtectInternalDomainsChangedDetails._all_field_names_ = set([ - 'domains_added', - 'domains_removed', -]) +ProtectInternalDomainsChangedDetails._all_field_names_ = set( + [ + "domains_added", + "domains_removed", + ] +) ProtectInternalDomainsChangedDetails._all_fields_ = [ - ('domains_added', ProtectInternalDomainsChangedDetails.domains_added.validator), - ('domains_removed', ProtectInternalDomainsChangedDetails.domains_removed.validator), + ("domains_added", ProtectInternalDomainsChangedDetails.domains_added.validator), + ("domains_removed", ProtectInternalDomainsChangedDetails.domains_removed.validator), ] ProtectInternalDomainsChangedType.description.validator = bv.String() -ProtectInternalDomainsChangedType._all_field_names_ = set(['description']) -ProtectInternalDomainsChangedType._all_fields_ = [('description', ProtectInternalDomainsChangedType.description.validator)] +ProtectInternalDomainsChangedType._all_field_names_ = set(["description"]) +ProtectInternalDomainsChangedType._all_fields_ = [ + ("description", ProtectInternalDomainsChangedType.description.validator) +] QuickActionType._delete_shared_link_validator = bv.Void() QuickActionType._reset_password_validator = bv.Void() @@ -105121,87 +112162,121 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): QuickActionType._unlink_session_validator = bv.Void() QuickActionType._other_validator = bv.Void() QuickActionType._tagmap = { - 'delete_shared_link': QuickActionType._delete_shared_link_validator, - 'reset_password': QuickActionType._reset_password_validator, - 'restore_file_or_folder': QuickActionType._restore_file_or_folder_validator, - 'unlink_app': QuickActionType._unlink_app_validator, - 'unlink_device': QuickActionType._unlink_device_validator, - 'unlink_session': QuickActionType._unlink_session_validator, - 'other': QuickActionType._other_validator, + "delete_shared_link": QuickActionType._delete_shared_link_validator, + "reset_password": QuickActionType._reset_password_validator, + "restore_file_or_folder": QuickActionType._restore_file_or_folder_validator, + "unlink_app": QuickActionType._unlink_app_validator, + "unlink_device": QuickActionType._unlink_device_validator, + "unlink_session": QuickActionType._unlink_session_validator, + "other": QuickActionType._other_validator, } -QuickActionType.delete_shared_link = QuickActionType('delete_shared_link') -QuickActionType.reset_password = QuickActionType('reset_password') -QuickActionType.restore_file_or_folder = QuickActionType('restore_file_or_folder') -QuickActionType.unlink_app = QuickActionType('unlink_app') -QuickActionType.unlink_device = QuickActionType('unlink_device') -QuickActionType.unlink_session = QuickActionType('unlink_session') -QuickActionType.other = QuickActionType('other') +QuickActionType.delete_shared_link = QuickActionType("delete_shared_link") +QuickActionType.reset_password = QuickActionType("reset_password") +QuickActionType.restore_file_or_folder = QuickActionType("restore_file_or_folder") +QuickActionType.unlink_app = QuickActionType("unlink_app") +QuickActionType.unlink_device = QuickActionType("unlink_device") +QuickActionType.unlink_session = QuickActionType("unlink_session") +QuickActionType.other = QuickActionType("other") RansomwareAlertCreateReportDetails._all_field_names_ = set([]) RansomwareAlertCreateReportDetails._all_fields_ = [] -RansomwareAlertCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -RansomwareAlertCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) -RansomwareAlertCreateReportFailedDetails._all_fields_ = [('failure_reason', RansomwareAlertCreateReportFailedDetails.failure_reason.validator)] +RansomwareAlertCreateReportFailedDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +RansomwareAlertCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) +RansomwareAlertCreateReportFailedDetails._all_fields_ = [ + ( + "failure_reason", + RansomwareAlertCreateReportFailedDetails.failure_reason.validator, + ) +] RansomwareAlertCreateReportFailedType.description.validator = bv.String() -RansomwareAlertCreateReportFailedType._all_field_names_ = set(['description']) -RansomwareAlertCreateReportFailedType._all_fields_ = [('description', RansomwareAlertCreateReportFailedType.description.validator)] +RansomwareAlertCreateReportFailedType._all_field_names_ = set(["description"]) +RansomwareAlertCreateReportFailedType._all_fields_ = [ + ("description", RansomwareAlertCreateReportFailedType.description.validator) +] RansomwareAlertCreateReportType.description.validator = bv.String() -RansomwareAlertCreateReportType._all_field_names_ = set(['description']) -RansomwareAlertCreateReportType._all_fields_ = [('description', RansomwareAlertCreateReportType.description.validator)] +RansomwareAlertCreateReportType._all_field_names_ = set(["description"]) +RansomwareAlertCreateReportType._all_fields_ = [ + ("description", RansomwareAlertCreateReportType.description.validator) +] RansomwareRestoreProcessCompletedDetails.status.validator = bv.String() RansomwareRestoreProcessCompletedDetails.restored_files_count.validator = bv.Int64() RansomwareRestoreProcessCompletedDetails.restored_files_failed_count.validator = bv.Int64() -RansomwareRestoreProcessCompletedDetails._all_field_names_ = set([ - 'status', - 'restored_files_count', - 'restored_files_failed_count', -]) +RansomwareRestoreProcessCompletedDetails._all_field_names_ = set( + [ + "status", + "restored_files_count", + "restored_files_failed_count", + ] +) RansomwareRestoreProcessCompletedDetails._all_fields_ = [ - ('status', RansomwareRestoreProcessCompletedDetails.status.validator), - ('restored_files_count', RansomwareRestoreProcessCompletedDetails.restored_files_count.validator), - ('restored_files_failed_count', RansomwareRestoreProcessCompletedDetails.restored_files_failed_count.validator), + ("status", RansomwareRestoreProcessCompletedDetails.status.validator), + ( + "restored_files_count", + RansomwareRestoreProcessCompletedDetails.restored_files_count.validator, + ), + ( + "restored_files_failed_count", + RansomwareRestoreProcessCompletedDetails.restored_files_failed_count.validator, + ), ] RansomwareRestoreProcessCompletedType.description.validator = bv.String() -RansomwareRestoreProcessCompletedType._all_field_names_ = set(['description']) -RansomwareRestoreProcessCompletedType._all_fields_ = [('description', RansomwareRestoreProcessCompletedType.description.validator)] +RansomwareRestoreProcessCompletedType._all_field_names_ = set(["description"]) +RansomwareRestoreProcessCompletedType._all_fields_ = [ + ("description", RansomwareRestoreProcessCompletedType.description.validator) +] RansomwareRestoreProcessStartedDetails.extension.validator = bv.String() -RansomwareRestoreProcessStartedDetails._all_field_names_ = set(['extension']) -RansomwareRestoreProcessStartedDetails._all_fields_ = [('extension', RansomwareRestoreProcessStartedDetails.extension.validator)] +RansomwareRestoreProcessStartedDetails._all_field_names_ = set(["extension"]) +RansomwareRestoreProcessStartedDetails._all_fields_ = [ + ("extension", RansomwareRestoreProcessStartedDetails.extension.validator) +] RansomwareRestoreProcessStartedType.description.validator = bv.String() -RansomwareRestoreProcessStartedType._all_field_names_ = set(['description']) -RansomwareRestoreProcessStartedType._all_fields_ = [('description', RansomwareRestoreProcessStartedType.description.validator)] +RansomwareRestoreProcessStartedType._all_field_names_ = set(["description"]) +RansomwareRestoreProcessStartedType._all_fields_ = [ + ("description", RansomwareRestoreProcessStartedType.description.validator) +] -RecipientsConfiguration.recipient_setting_type.validator = bv.Nullable(AlertRecipientsSettingType_validator) +RecipientsConfiguration.recipient_setting_type.validator = bv.Nullable( + AlertRecipientsSettingType_validator +) RecipientsConfiguration.emails.validator = bv.Nullable(bv.List(EmailAddress_validator)) RecipientsConfiguration.groups.validator = bv.Nullable(bv.List(bv.String())) -RecipientsConfiguration._all_field_names_ = set([ - 'recipient_setting_type', - 'emails', - 'groups', -]) +RecipientsConfiguration._all_field_names_ = set( + [ + "recipient_setting_type", + "emails", + "groups", + ] +) RecipientsConfiguration._all_fields_ = [ - ('recipient_setting_type', RecipientsConfiguration.recipient_setting_type.validator), - ('emails', RecipientsConfiguration.emails.validator), - ('groups', RecipientsConfiguration.groups.validator), + ( + "recipient_setting_type", + RecipientsConfiguration.recipient_setting_type.validator, + ), + ("emails", RecipientsConfiguration.emails.validator), + ("groups", RecipientsConfiguration.groups.validator), ] RelocateAssetReferencesLogInfo.src_asset_index.validator = bv.UInt64() RelocateAssetReferencesLogInfo.dest_asset_index.validator = bv.UInt64() -RelocateAssetReferencesLogInfo._all_field_names_ = set([ - 'src_asset_index', - 'dest_asset_index', -]) +RelocateAssetReferencesLogInfo._all_field_names_ = set( + [ + "src_asset_index", + "dest_asset_index", + ] +) RelocateAssetReferencesLogInfo._all_fields_ = [ - ('src_asset_index', RelocateAssetReferencesLogInfo.src_asset_index.validator), - ('dest_asset_index', RelocateAssetReferencesLogInfo.dest_asset_index.validator), + ("src_asset_index", RelocateAssetReferencesLogInfo.src_asset_index.validator), + ("dest_asset_index", RelocateAssetReferencesLogInfo.dest_asset_index.validator), ] ReplayAddingPeoplePolicy._anyone_validator = bv.Void() @@ -105209,75 +112284,89 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ReplayAddingPeoplePolicy._team_only_validator = bv.Void() ReplayAddingPeoplePolicy._other_validator = bv.Void() ReplayAddingPeoplePolicy._tagmap = { - 'anyone': ReplayAddingPeoplePolicy._anyone_validator, - 'team_and_allowlist': ReplayAddingPeoplePolicy._team_and_allowlist_validator, - 'team_only': ReplayAddingPeoplePolicy._team_only_validator, - 'other': ReplayAddingPeoplePolicy._other_validator, + "anyone": ReplayAddingPeoplePolicy._anyone_validator, + "team_and_allowlist": ReplayAddingPeoplePolicy._team_and_allowlist_validator, + "team_only": ReplayAddingPeoplePolicy._team_only_validator, + "other": ReplayAddingPeoplePolicy._other_validator, } -ReplayAddingPeoplePolicy.anyone = ReplayAddingPeoplePolicy('anyone') -ReplayAddingPeoplePolicy.team_and_allowlist = ReplayAddingPeoplePolicy('team_and_allowlist') -ReplayAddingPeoplePolicy.team_only = ReplayAddingPeoplePolicy('team_only') -ReplayAddingPeoplePolicy.other = ReplayAddingPeoplePolicy('other') +ReplayAddingPeoplePolicy.anyone = ReplayAddingPeoplePolicy("anyone") +ReplayAddingPeoplePolicy.team_and_allowlist = ReplayAddingPeoplePolicy("team_and_allowlist") +ReplayAddingPeoplePolicy.team_only = ReplayAddingPeoplePolicy("team_only") +ReplayAddingPeoplePolicy.other = ReplayAddingPeoplePolicy("other") ReplayAddingPeoplePolicyChangedDetails.new_value.validator = ReplayAddingPeoplePolicy_validator ReplayAddingPeoplePolicyChangedDetails.previous_value.validator = ReplayAddingPeoplePolicy_validator -ReplayAddingPeoplePolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ReplayAddingPeoplePolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ReplayAddingPeoplePolicyChangedDetails._all_fields_ = [ - ('new_value', ReplayAddingPeoplePolicyChangedDetails.new_value.validator), - ('previous_value', ReplayAddingPeoplePolicyChangedDetails.previous_value.validator), + ("new_value", ReplayAddingPeoplePolicyChangedDetails.new_value.validator), + ("previous_value", ReplayAddingPeoplePolicyChangedDetails.previous_value.validator), ] ReplayAddingPeoplePolicyChangedType.description.validator = bv.String() -ReplayAddingPeoplePolicyChangedType._all_field_names_ = set(['description']) -ReplayAddingPeoplePolicyChangedType._all_fields_ = [('description', ReplayAddingPeoplePolicyChangedType.description.validator)] +ReplayAddingPeoplePolicyChangedType._all_field_names_ = set(["description"]) +ReplayAddingPeoplePolicyChangedType._all_fields_ = [ + ("description", ReplayAddingPeoplePolicyChangedType.description.validator) +] ReplayFileDeleteDetails._all_field_names_ = set([]) ReplayFileDeleteDetails._all_fields_ = [] ReplayFileDeleteType.description.validator = bv.String() -ReplayFileDeleteType._all_field_names_ = set(['description']) -ReplayFileDeleteType._all_fields_ = [('description', ReplayFileDeleteType.description.validator)] +ReplayFileDeleteType._all_field_names_ = set(["description"]) +ReplayFileDeleteType._all_fields_ = [("description", ReplayFileDeleteType.description.validator)] ReplayFileDownloadedDetails._all_field_names_ = set([]) ReplayFileDownloadedDetails._all_fields_ = [] ReplayFileDownloadedType.description.validator = bv.String() -ReplayFileDownloadedType._all_field_names_ = set(['description']) -ReplayFileDownloadedType._all_fields_ = [('description', ReplayFileDownloadedType.description.validator)] +ReplayFileDownloadedType._all_field_names_ = set(["description"]) +ReplayFileDownloadedType._all_fields_ = [ + ("description", ReplayFileDownloadedType.description.validator) +] ReplayFileSharedLinkCreatedDetails.is_watermarked.validator = bv.Nullable(bv.Boolean()) ReplayFileSharedLinkCreatedDetails.access.validator = bv.Nullable(ReplayLinkAccess_validator) -ReplayFileSharedLinkCreatedDetails._all_field_names_ = set([ - 'is_watermarked', - 'access', -]) +ReplayFileSharedLinkCreatedDetails._all_field_names_ = set( + [ + "is_watermarked", + "access", + ] +) ReplayFileSharedLinkCreatedDetails._all_fields_ = [ - ('is_watermarked', ReplayFileSharedLinkCreatedDetails.is_watermarked.validator), - ('access', ReplayFileSharedLinkCreatedDetails.access.validator), + ("is_watermarked", ReplayFileSharedLinkCreatedDetails.is_watermarked.validator), + ("access", ReplayFileSharedLinkCreatedDetails.access.validator), ] ReplayFileSharedLinkCreatedType.description.validator = bv.String() -ReplayFileSharedLinkCreatedType._all_field_names_ = set(['description']) -ReplayFileSharedLinkCreatedType._all_fields_ = [('description', ReplayFileSharedLinkCreatedType.description.validator)] +ReplayFileSharedLinkCreatedType._all_field_names_ = set(["description"]) +ReplayFileSharedLinkCreatedType._all_fields_ = [ + ("description", ReplayFileSharedLinkCreatedType.description.validator) +] ReplayFileSharedLinkModifiedDetails.is_watermarked.validator = bv.Nullable(bv.Boolean()) ReplayFileSharedLinkModifiedDetails.access.validator = bv.Nullable(ReplayLinkAccess_validator) -ReplayFileSharedLinkModifiedDetails._all_field_names_ = set([ - 'is_watermarked', - 'access', -]) +ReplayFileSharedLinkModifiedDetails._all_field_names_ = set( + [ + "is_watermarked", + "access", + ] +) ReplayFileSharedLinkModifiedDetails._all_fields_ = [ - ('is_watermarked', ReplayFileSharedLinkModifiedDetails.is_watermarked.validator), - ('access', ReplayFileSharedLinkModifiedDetails.access.validator), + ("is_watermarked", ReplayFileSharedLinkModifiedDetails.is_watermarked.validator), + ("access", ReplayFileSharedLinkModifiedDetails.access.validator), ] ReplayFileSharedLinkModifiedType.description.validator = bv.String() -ReplayFileSharedLinkModifiedType._all_field_names_ = set(['description']) -ReplayFileSharedLinkModifiedType._all_fields_ = [('description', ReplayFileSharedLinkModifiedType.description.validator)] +ReplayFileSharedLinkModifiedType._all_field_names_ = set(["description"]) +ReplayFileSharedLinkModifiedType._all_fields_ = [ + ("description", ReplayFileSharedLinkModifiedType.description.validator) +] ReplayLinkAccess._anyone_logged_in_validator = bv.Void() ReplayLinkAccess._no_login_required_validator = bv.Void() @@ -105285,1413 +112374,2013 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ReplayLinkAccess._team_only_validator = bv.Void() ReplayLinkAccess._other_validator = bv.Void() ReplayLinkAccess._tagmap = { - 'anyone_logged_in': ReplayLinkAccess._anyone_logged_in_validator, - 'no_login_required': ReplayLinkAccess._no_login_required_validator, - 'team_and_approved': ReplayLinkAccess._team_and_approved_validator, - 'team_only': ReplayLinkAccess._team_only_validator, - 'other': ReplayLinkAccess._other_validator, + "anyone_logged_in": ReplayLinkAccess._anyone_logged_in_validator, + "no_login_required": ReplayLinkAccess._no_login_required_validator, + "team_and_approved": ReplayLinkAccess._team_and_approved_validator, + "team_only": ReplayLinkAccess._team_only_validator, + "other": ReplayLinkAccess._other_validator, } -ReplayLinkAccess.anyone_logged_in = ReplayLinkAccess('anyone_logged_in') -ReplayLinkAccess.no_login_required = ReplayLinkAccess('no_login_required') -ReplayLinkAccess.team_and_approved = ReplayLinkAccess('team_and_approved') -ReplayLinkAccess.team_only = ReplayLinkAccess('team_only') -ReplayLinkAccess.other = ReplayLinkAccess('other') +ReplayLinkAccess.anyone_logged_in = ReplayLinkAccess("anyone_logged_in") +ReplayLinkAccess.no_login_required = ReplayLinkAccess("no_login_required") +ReplayLinkAccess.team_and_approved = ReplayLinkAccess("team_and_approved") +ReplayLinkAccess.team_only = ReplayLinkAccess("team_only") +ReplayLinkAccess.other = ReplayLinkAccess("other") ReplayProjectTeamAddDetails._all_field_names_ = set([]) ReplayProjectTeamAddDetails._all_fields_ = [] ReplayProjectTeamAddType.description.validator = bv.String() -ReplayProjectTeamAddType._all_field_names_ = set(['description']) -ReplayProjectTeamAddType._all_fields_ = [('description', ReplayProjectTeamAddType.description.validator)] +ReplayProjectTeamAddType._all_field_names_ = set(["description"]) +ReplayProjectTeamAddType._all_fields_ = [ + ("description", ReplayProjectTeamAddType.description.validator) +] ReplayProjectTeamDeleteDetails._all_field_names_ = set([]) ReplayProjectTeamDeleteDetails._all_fields_ = [] ReplayProjectTeamDeleteType.description.validator = bv.String() -ReplayProjectTeamDeleteType._all_field_names_ = set(['description']) -ReplayProjectTeamDeleteType._all_fields_ = [('description', ReplayProjectTeamDeleteType.description.validator)] +ReplayProjectTeamDeleteType._all_field_names_ = set(["description"]) +ReplayProjectTeamDeleteType._all_fields_ = [ + ("description", ReplayProjectTeamDeleteType.description.validator) +] ReplaySharingPolicy._anyone_validator = bv.Void() ReplaySharingPolicy._team_and_allowlist_validator = bv.Void() ReplaySharingPolicy._team_only_validator = bv.Void() ReplaySharingPolicy._other_validator = bv.Void() ReplaySharingPolicy._tagmap = { - 'anyone': ReplaySharingPolicy._anyone_validator, - 'team_and_allowlist': ReplaySharingPolicy._team_and_allowlist_validator, - 'team_only': ReplaySharingPolicy._team_only_validator, - 'other': ReplaySharingPolicy._other_validator, + "anyone": ReplaySharingPolicy._anyone_validator, + "team_and_allowlist": ReplaySharingPolicy._team_and_allowlist_validator, + "team_only": ReplaySharingPolicy._team_only_validator, + "other": ReplaySharingPolicy._other_validator, } -ReplaySharingPolicy.anyone = ReplaySharingPolicy('anyone') -ReplaySharingPolicy.team_and_allowlist = ReplaySharingPolicy('team_and_allowlist') -ReplaySharingPolicy.team_only = ReplaySharingPolicy('team_only') -ReplaySharingPolicy.other = ReplaySharingPolicy('other') +ReplaySharingPolicy.anyone = ReplaySharingPolicy("anyone") +ReplaySharingPolicy.team_and_allowlist = ReplaySharingPolicy("team_and_allowlist") +ReplaySharingPolicy.team_only = ReplaySharingPolicy("team_only") +ReplaySharingPolicy.other = ReplaySharingPolicy("other") ReplaySharingPolicyChangedDetails.new_value.validator = ReplaySharingPolicy_validator ReplaySharingPolicyChangedDetails.previous_value.validator = ReplaySharingPolicy_validator -ReplaySharingPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ReplaySharingPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ReplaySharingPolicyChangedDetails._all_fields_ = [ - ('new_value', ReplaySharingPolicyChangedDetails.new_value.validator), - ('previous_value', ReplaySharingPolicyChangedDetails.previous_value.validator), + ("new_value", ReplaySharingPolicyChangedDetails.new_value.validator), + ("previous_value", ReplaySharingPolicyChangedDetails.previous_value.validator), ] ReplaySharingPolicyChangedType.description.validator = bv.String() -ReplaySharingPolicyChangedType._all_field_names_ = set(['description']) -ReplaySharingPolicyChangedType._all_fields_ = [('description', ReplaySharingPolicyChangedType.description.validator)] +ReplaySharingPolicyChangedType._all_field_names_ = set(["description"]) +ReplaySharingPolicyChangedType._all_fields_ = [ + ("description", ReplaySharingPolicyChangedType.description.validator) +] ReplayTeamProjectCreatedDetails.name.validator = bv.String() -ReplayTeamProjectCreatedDetails._all_field_names_ = set(['name']) -ReplayTeamProjectCreatedDetails._all_fields_ = [('name', ReplayTeamProjectCreatedDetails.name.validator)] +ReplayTeamProjectCreatedDetails._all_field_names_ = set(["name"]) +ReplayTeamProjectCreatedDetails._all_fields_ = [ + ("name", ReplayTeamProjectCreatedDetails.name.validator) +] ReplayTeamProjectCreatedType.description.validator = bv.String() -ReplayTeamProjectCreatedType._all_field_names_ = set(['description']) -ReplayTeamProjectCreatedType._all_fields_ = [('description', ReplayTeamProjectCreatedType.description.validator)] +ReplayTeamProjectCreatedType._all_field_names_ = set(["description"]) +ReplayTeamProjectCreatedType._all_fields_ = [ + ("description", ReplayTeamProjectCreatedType.description.validator) +] ResellerLogInfo.reseller_name.validator = bv.String() ResellerLogInfo.reseller_email.validator = EmailAddress_validator -ResellerLogInfo._all_field_names_ = set([ - 'reseller_name', - 'reseller_email', -]) +ResellerLogInfo._all_field_names_ = set( + [ + "reseller_name", + "reseller_email", + ] +) ResellerLogInfo._all_fields_ = [ - ('reseller_name', ResellerLogInfo.reseller_name.validator), - ('reseller_email', ResellerLogInfo.reseller_email.validator), + ("reseller_name", ResellerLogInfo.reseller_name.validator), + ("reseller_email", ResellerLogInfo.reseller_email.validator), ] ResellerRole._not_reseller_validator = bv.Void() ResellerRole._reseller_admin_validator = bv.Void() ResellerRole._other_validator = bv.Void() ResellerRole._tagmap = { - 'not_reseller': ResellerRole._not_reseller_validator, - 'reseller_admin': ResellerRole._reseller_admin_validator, - 'other': ResellerRole._other_validator, + "not_reseller": ResellerRole._not_reseller_validator, + "reseller_admin": ResellerRole._reseller_admin_validator, + "other": ResellerRole._other_validator, } -ResellerRole.not_reseller = ResellerRole('not_reseller') -ResellerRole.reseller_admin = ResellerRole('reseller_admin') -ResellerRole.other = ResellerRole('other') +ResellerRole.not_reseller = ResellerRole("not_reseller") +ResellerRole.reseller_admin = ResellerRole("reseller_admin") +ResellerRole.other = ResellerRole("other") ResellerSupportChangePolicyDetails.new_value.validator = ResellerSupportPolicy_validator ResellerSupportChangePolicyDetails.previous_value.validator = ResellerSupportPolicy_validator -ResellerSupportChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ResellerSupportChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ResellerSupportChangePolicyDetails._all_fields_ = [ - ('new_value', ResellerSupportChangePolicyDetails.new_value.validator), - ('previous_value', ResellerSupportChangePolicyDetails.previous_value.validator), + ("new_value", ResellerSupportChangePolicyDetails.new_value.validator), + ("previous_value", ResellerSupportChangePolicyDetails.previous_value.validator), ] ResellerSupportChangePolicyType.description.validator = bv.String() -ResellerSupportChangePolicyType._all_field_names_ = set(['description']) -ResellerSupportChangePolicyType._all_fields_ = [('description', ResellerSupportChangePolicyType.description.validator)] +ResellerSupportChangePolicyType._all_field_names_ = set(["description"]) +ResellerSupportChangePolicyType._all_fields_ = [ + ("description", ResellerSupportChangePolicyType.description.validator) +] ResellerSupportPolicy._disabled_validator = bv.Void() ResellerSupportPolicy._enabled_validator = bv.Void() ResellerSupportPolicy._other_validator = bv.Void() ResellerSupportPolicy._tagmap = { - 'disabled': ResellerSupportPolicy._disabled_validator, - 'enabled': ResellerSupportPolicy._enabled_validator, - 'other': ResellerSupportPolicy._other_validator, + "disabled": ResellerSupportPolicy._disabled_validator, + "enabled": ResellerSupportPolicy._enabled_validator, + "other": ResellerSupportPolicy._other_validator, } -ResellerSupportPolicy.disabled = ResellerSupportPolicy('disabled') -ResellerSupportPolicy.enabled = ResellerSupportPolicy('enabled') -ResellerSupportPolicy.other = ResellerSupportPolicy('other') +ResellerSupportPolicy.disabled = ResellerSupportPolicy("disabled") +ResellerSupportPolicy.enabled = ResellerSupportPolicy("enabled") +ResellerSupportPolicy.other = ResellerSupportPolicy("other") ResellerSupportSessionEndDetails._all_field_names_ = set([]) ResellerSupportSessionEndDetails._all_fields_ = [] ResellerSupportSessionEndType.description.validator = bv.String() -ResellerSupportSessionEndType._all_field_names_ = set(['description']) -ResellerSupportSessionEndType._all_fields_ = [('description', ResellerSupportSessionEndType.description.validator)] +ResellerSupportSessionEndType._all_field_names_ = set(["description"]) +ResellerSupportSessionEndType._all_fields_ = [ + ("description", ResellerSupportSessionEndType.description.validator) +] ResellerSupportSessionStartDetails._all_field_names_ = set([]) ResellerSupportSessionStartDetails._all_fields_ = [] ResellerSupportSessionStartType.description.validator = bv.String() -ResellerSupportSessionStartType._all_field_names_ = set(['description']) -ResellerSupportSessionStartType._all_fields_ = [('description', ResellerSupportSessionStartType.description.validator)] +ResellerSupportSessionStartType._all_field_names_ = set(["description"]) +ResellerSupportSessionStartType._all_fields_ = [ + ("description", ResellerSupportSessionStartType.description.validator) +] RewindFolderDetails.rewind_folder_target_ts_ms.validator = common.DropboxTimestamp_validator -RewindFolderDetails._all_field_names_ = set(['rewind_folder_target_ts_ms']) -RewindFolderDetails._all_fields_ = [('rewind_folder_target_ts_ms', RewindFolderDetails.rewind_folder_target_ts_ms.validator)] +RewindFolderDetails._all_field_names_ = set(["rewind_folder_target_ts_ms"]) +RewindFolderDetails._all_fields_ = [ + ( + "rewind_folder_target_ts_ms", + RewindFolderDetails.rewind_folder_target_ts_ms.validator, + ) +] RewindFolderType.description.validator = bv.String() -RewindFolderType._all_field_names_ = set(['description']) -RewindFolderType._all_fields_ = [('description', RewindFolderType.description.validator)] +RewindFolderType._all_field_names_ = set(["description"]) +RewindFolderType._all_fields_ = [("description", RewindFolderType.description.validator)] RewindPolicy._admins_only_validator = bv.Void() RewindPolicy._everyone_validator = bv.Void() RewindPolicy._other_validator = bv.Void() RewindPolicy._tagmap = { - 'admins_only': RewindPolicy._admins_only_validator, - 'everyone': RewindPolicy._everyone_validator, - 'other': RewindPolicy._other_validator, + "admins_only": RewindPolicy._admins_only_validator, + "everyone": RewindPolicy._everyone_validator, + "other": RewindPolicy._other_validator, } -RewindPolicy.admins_only = RewindPolicy('admins_only') -RewindPolicy.everyone = RewindPolicy('everyone') -RewindPolicy.other = RewindPolicy('other') +RewindPolicy.admins_only = RewindPolicy("admins_only") +RewindPolicy.everyone = RewindPolicy("everyone") +RewindPolicy.other = RewindPolicy("other") RewindPolicyChangedDetails.new_value.validator = RewindPolicy_validator RewindPolicyChangedDetails.previous_value.validator = RewindPolicy_validator -RewindPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +RewindPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) RewindPolicyChangedDetails._all_fields_ = [ - ('new_value', RewindPolicyChangedDetails.new_value.validator), - ('previous_value', RewindPolicyChangedDetails.previous_value.validator), + ("new_value", RewindPolicyChangedDetails.new_value.validator), + ("previous_value", RewindPolicyChangedDetails.previous_value.validator), ] RewindPolicyChangedType.description.validator = bv.String() -RewindPolicyChangedType._all_field_names_ = set(['description']) -RewindPolicyChangedType._all_fields_ = [('description', RewindPolicyChangedType.description.validator)] +RewindPolicyChangedType._all_field_names_ = set(["description"]) +RewindPolicyChangedType._all_fields_ = [ + ("description", RewindPolicyChangedType.description.validator) +] RiscSecurityEventDetails.event_type.validator = bv.String() RiscSecurityEventDetails.reason.validator = bv.String() RiscSecurityEventDetails.issuer.validator = bv.String() -RiscSecurityEventDetails._all_field_names_ = set([ - 'event_type', - 'reason', - 'issuer', -]) +RiscSecurityEventDetails._all_field_names_ = set( + [ + "event_type", + "reason", + "issuer", + ] +) RiscSecurityEventDetails._all_fields_ = [ - ('event_type', RiscSecurityEventDetails.event_type.validator), - ('reason', RiscSecurityEventDetails.reason.validator), - ('issuer', RiscSecurityEventDetails.issuer.validator), + ("event_type", RiscSecurityEventDetails.event_type.validator), + ("reason", RiscSecurityEventDetails.reason.validator), + ("issuer", RiscSecurityEventDetails.issuer.validator), ] RiscSecurityEventType.description.validator = bv.String() -RiscSecurityEventType._all_field_names_ = set(['description']) -RiscSecurityEventType._all_fields_ = [('description', RiscSecurityEventType.description.validator)] +RiscSecurityEventType._all_field_names_ = set(["description"]) +RiscSecurityEventType._all_fields_ = [("description", RiscSecurityEventType.description.validator)] SecondaryEmailDeletedDetails.secondary_email.validator = EmailAddress_validator -SecondaryEmailDeletedDetails._all_field_names_ = set(['secondary_email']) -SecondaryEmailDeletedDetails._all_fields_ = [('secondary_email', SecondaryEmailDeletedDetails.secondary_email.validator)] +SecondaryEmailDeletedDetails._all_field_names_ = set(["secondary_email"]) +SecondaryEmailDeletedDetails._all_fields_ = [ + ("secondary_email", SecondaryEmailDeletedDetails.secondary_email.validator) +] SecondaryEmailDeletedType.description.validator = bv.String() -SecondaryEmailDeletedType._all_field_names_ = set(['description']) -SecondaryEmailDeletedType._all_fields_ = [('description', SecondaryEmailDeletedType.description.validator)] +SecondaryEmailDeletedType._all_field_names_ = set(["description"]) +SecondaryEmailDeletedType._all_fields_ = [ + ("description", SecondaryEmailDeletedType.description.validator) +] SecondaryEmailVerifiedDetails.secondary_email.validator = EmailAddress_validator -SecondaryEmailVerifiedDetails._all_field_names_ = set(['secondary_email']) -SecondaryEmailVerifiedDetails._all_fields_ = [('secondary_email', SecondaryEmailVerifiedDetails.secondary_email.validator)] +SecondaryEmailVerifiedDetails._all_field_names_ = set(["secondary_email"]) +SecondaryEmailVerifiedDetails._all_fields_ = [ + ("secondary_email", SecondaryEmailVerifiedDetails.secondary_email.validator) +] SecondaryEmailVerifiedType.description.validator = bv.String() -SecondaryEmailVerifiedType._all_field_names_ = set(['description']) -SecondaryEmailVerifiedType._all_fields_ = [('description', SecondaryEmailVerifiedType.description.validator)] +SecondaryEmailVerifiedType._all_field_names_ = set(["description"]) +SecondaryEmailVerifiedType._all_fields_ = [ + ("description", SecondaryEmailVerifiedType.description.validator) +] SecondaryMailsPolicy._disabled_validator = bv.Void() SecondaryMailsPolicy._enabled_validator = bv.Void() SecondaryMailsPolicy._other_validator = bv.Void() SecondaryMailsPolicy._tagmap = { - 'disabled': SecondaryMailsPolicy._disabled_validator, - 'enabled': SecondaryMailsPolicy._enabled_validator, - 'other': SecondaryMailsPolicy._other_validator, + "disabled": SecondaryMailsPolicy._disabled_validator, + "enabled": SecondaryMailsPolicy._enabled_validator, + "other": SecondaryMailsPolicy._other_validator, } -SecondaryMailsPolicy.disabled = SecondaryMailsPolicy('disabled') -SecondaryMailsPolicy.enabled = SecondaryMailsPolicy('enabled') -SecondaryMailsPolicy.other = SecondaryMailsPolicy('other') +SecondaryMailsPolicy.disabled = SecondaryMailsPolicy("disabled") +SecondaryMailsPolicy.enabled = SecondaryMailsPolicy("enabled") +SecondaryMailsPolicy.other = SecondaryMailsPolicy("other") SecondaryMailsPolicyChangedDetails.previous_value.validator = SecondaryMailsPolicy_validator SecondaryMailsPolicyChangedDetails.new_value.validator = SecondaryMailsPolicy_validator -SecondaryMailsPolicyChangedDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +SecondaryMailsPolicyChangedDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) SecondaryMailsPolicyChangedDetails._all_fields_ = [ - ('previous_value', SecondaryMailsPolicyChangedDetails.previous_value.validator), - ('new_value', SecondaryMailsPolicyChangedDetails.new_value.validator), + ("previous_value", SecondaryMailsPolicyChangedDetails.previous_value.validator), + ("new_value", SecondaryMailsPolicyChangedDetails.new_value.validator), ] SecondaryMailsPolicyChangedType.description.validator = bv.String() -SecondaryMailsPolicyChangedType._all_field_names_ = set(['description']) -SecondaryMailsPolicyChangedType._all_fields_ = [('description', SecondaryMailsPolicyChangedType.description.validator)] +SecondaryMailsPolicyChangedType._all_field_names_ = set(["description"]) +SecondaryMailsPolicyChangedType._all_fields_ = [ + ("description", SecondaryMailsPolicyChangedType.description.validator) +] SecondaryTeamRequestAcceptedDetails.primary_team.validator = bv.String() SecondaryTeamRequestAcceptedDetails.sent_by.validator = bv.String() -SecondaryTeamRequestAcceptedDetails._all_field_names_ = set([ - 'primary_team', - 'sent_by', -]) +SecondaryTeamRequestAcceptedDetails._all_field_names_ = set( + [ + "primary_team", + "sent_by", + ] +) SecondaryTeamRequestAcceptedDetails._all_fields_ = [ - ('primary_team', SecondaryTeamRequestAcceptedDetails.primary_team.validator), - ('sent_by', SecondaryTeamRequestAcceptedDetails.sent_by.validator), + ("primary_team", SecondaryTeamRequestAcceptedDetails.primary_team.validator), + ("sent_by", SecondaryTeamRequestAcceptedDetails.sent_by.validator), ] SecondaryTeamRequestCanceledDetails.sent_to.validator = bv.String() SecondaryTeamRequestCanceledDetails.sent_by.validator = bv.String() -SecondaryTeamRequestCanceledDetails._all_field_names_ = set([ - 'sent_to', - 'sent_by', -]) +SecondaryTeamRequestCanceledDetails._all_field_names_ = set( + [ + "sent_to", + "sent_by", + ] +) SecondaryTeamRequestCanceledDetails._all_fields_ = [ - ('sent_to', SecondaryTeamRequestCanceledDetails.sent_to.validator), - ('sent_by', SecondaryTeamRequestCanceledDetails.sent_by.validator), + ("sent_to", SecondaryTeamRequestCanceledDetails.sent_to.validator), + ("sent_by", SecondaryTeamRequestCanceledDetails.sent_by.validator), ] SecondaryTeamRequestExpiredDetails.sent_to.validator = bv.String() -SecondaryTeamRequestExpiredDetails._all_field_names_ = set(['sent_to']) -SecondaryTeamRequestExpiredDetails._all_fields_ = [('sent_to', SecondaryTeamRequestExpiredDetails.sent_to.validator)] +SecondaryTeamRequestExpiredDetails._all_field_names_ = set(["sent_to"]) +SecondaryTeamRequestExpiredDetails._all_fields_ = [ + ("sent_to", SecondaryTeamRequestExpiredDetails.sent_to.validator) +] SecondaryTeamRequestReminderDetails.sent_to.validator = bv.String() -SecondaryTeamRequestReminderDetails._all_field_names_ = set(['sent_to']) -SecondaryTeamRequestReminderDetails._all_fields_ = [('sent_to', SecondaryTeamRequestReminderDetails.sent_to.validator)] +SecondaryTeamRequestReminderDetails._all_field_names_ = set(["sent_to"]) +SecondaryTeamRequestReminderDetails._all_fields_ = [ + ("sent_to", SecondaryTeamRequestReminderDetails.sent_to.validator) +] SendAndTrackFileAddedDetails._all_field_names_ = set([]) SendAndTrackFileAddedDetails._all_fields_ = [] SendAndTrackFileAddedType.description.validator = bv.String() -SendAndTrackFileAddedType._all_field_names_ = set(['description']) -SendAndTrackFileAddedType._all_fields_ = [('description', SendAndTrackFileAddedType.description.validator)] +SendAndTrackFileAddedType._all_field_names_ = set(["description"]) +SendAndTrackFileAddedType._all_fields_ = [ + ("description", SendAndTrackFileAddedType.description.validator) +] SendAndTrackFileRenamedDetails.previous_value.validator = bv.Nullable(bv.String()) -SendAndTrackFileRenamedDetails._all_field_names_ = set(['previous_value']) -SendAndTrackFileRenamedDetails._all_fields_ = [('previous_value', SendAndTrackFileRenamedDetails.previous_value.validator)] +SendAndTrackFileRenamedDetails._all_field_names_ = set(["previous_value"]) +SendAndTrackFileRenamedDetails._all_fields_ = [ + ("previous_value", SendAndTrackFileRenamedDetails.previous_value.validator) +] SendAndTrackFileRenamedType.description.validator = bv.String() -SendAndTrackFileRenamedType._all_field_names_ = set(['description']) -SendAndTrackFileRenamedType._all_fields_ = [('description', SendAndTrackFileRenamedType.description.validator)] +SendAndTrackFileRenamedType._all_field_names_ = set(["description"]) +SendAndTrackFileRenamedType._all_fields_ = [ + ("description", SendAndTrackFileRenamedType.description.validator) +] SendAndTrackFileUpdatedDetails._all_field_names_ = set([]) SendAndTrackFileUpdatedDetails._all_fields_ = [] SendAndTrackFileUpdatedType.description.validator = bv.String() -SendAndTrackFileUpdatedType._all_field_names_ = set(['description']) -SendAndTrackFileUpdatedType._all_fields_ = [('description', SendAndTrackFileUpdatedType.description.validator)] +SendAndTrackFileUpdatedType._all_field_names_ = set(["description"]) +SendAndTrackFileUpdatedType._all_fields_ = [ + ("description", SendAndTrackFileUpdatedType.description.validator) +] SendAndTrackLinkCreatedDetails.link_settings.validator = LinkSettingsLogInfo_validator -SendAndTrackLinkCreatedDetails._all_field_names_ = set(['link_settings']) -SendAndTrackLinkCreatedDetails._all_fields_ = [('link_settings', SendAndTrackLinkCreatedDetails.link_settings.validator)] +SendAndTrackLinkCreatedDetails._all_field_names_ = set(["link_settings"]) +SendAndTrackLinkCreatedDetails._all_fields_ = [ + ("link_settings", SendAndTrackLinkCreatedDetails.link_settings.validator) +] SendAndTrackLinkCreatedType.description.validator = bv.String() -SendAndTrackLinkCreatedType._all_field_names_ = set(['description']) -SendAndTrackLinkCreatedType._all_fields_ = [('description', SendAndTrackLinkCreatedType.description.validator)] +SendAndTrackLinkCreatedType._all_field_names_ = set(["description"]) +SendAndTrackLinkCreatedType._all_fields_ = [ + ("description", SendAndTrackLinkCreatedType.description.validator) +] SendAndTrackLinkDeletedDetails.shared_content_link.validator = bv.String() -SendAndTrackLinkDeletedDetails._all_field_names_ = set(['shared_content_link']) -SendAndTrackLinkDeletedDetails._all_fields_ = [('shared_content_link', SendAndTrackLinkDeletedDetails.shared_content_link.validator)] +SendAndTrackLinkDeletedDetails._all_field_names_ = set(["shared_content_link"]) +SendAndTrackLinkDeletedDetails._all_fields_ = [ + ( + "shared_content_link", + SendAndTrackLinkDeletedDetails.shared_content_link.validator, + ) +] SendAndTrackLinkDeletedType.description.validator = bv.String() -SendAndTrackLinkDeletedType._all_field_names_ = set(['description']) -SendAndTrackLinkDeletedType._all_fields_ = [('description', SendAndTrackLinkDeletedType.description.validator)] +SendAndTrackLinkDeletedType._all_field_names_ = set(["description"]) +SendAndTrackLinkDeletedType._all_fields_ = [ + ("description", SendAndTrackLinkDeletedType.description.validator) +] SendAndTrackLinkUpdatedDetails.link_settings.validator = LinkSettingsLogInfo_validator SendAndTrackLinkUpdatedDetails.previous_link_name.validator = bv.Nullable(bv.String()) -SendAndTrackLinkUpdatedDetails._all_field_names_ = set([ - 'link_settings', - 'previous_link_name', -]) +SendAndTrackLinkUpdatedDetails._all_field_names_ = set( + [ + "link_settings", + "previous_link_name", + ] +) SendAndTrackLinkUpdatedDetails._all_fields_ = [ - ('link_settings', SendAndTrackLinkUpdatedDetails.link_settings.validator), - ('previous_link_name', SendAndTrackLinkUpdatedDetails.previous_link_name.validator), + ("link_settings", SendAndTrackLinkUpdatedDetails.link_settings.validator), + ("previous_link_name", SendAndTrackLinkUpdatedDetails.previous_link_name.validator), ] SendAndTrackLinkUpdatedType.description.validator = bv.String() -SendAndTrackLinkUpdatedType._all_field_names_ = set(['description']) -SendAndTrackLinkUpdatedType._all_fields_ = [('description', SendAndTrackLinkUpdatedType.description.validator)] +SendAndTrackLinkUpdatedType._all_field_names_ = set(["description"]) +SendAndTrackLinkUpdatedType._all_fields_ = [ + ("description", SendAndTrackLinkUpdatedType.description.validator) +] SendAndTrackLinkViewedDetails.link_settings.validator = LinkSettingsLogInfo_validator SendAndTrackLinkViewedDetails.email_address.validator = bv.Nullable(bv.String()) SendAndTrackLinkViewedDetails.link_owner.validator = bv.Nullable(bv.String()) -SendAndTrackLinkViewedDetails._all_field_names_ = set([ - 'link_settings', - 'email_address', - 'link_owner', -]) +SendAndTrackLinkViewedDetails._all_field_names_ = set( + [ + "link_settings", + "email_address", + "link_owner", + ] +) SendAndTrackLinkViewedDetails._all_fields_ = [ - ('link_settings', SendAndTrackLinkViewedDetails.link_settings.validator), - ('email_address', SendAndTrackLinkViewedDetails.email_address.validator), - ('link_owner', SendAndTrackLinkViewedDetails.link_owner.validator), + ("link_settings", SendAndTrackLinkViewedDetails.link_settings.validator), + ("email_address", SendAndTrackLinkViewedDetails.email_address.validator), + ("link_owner", SendAndTrackLinkViewedDetails.link_owner.validator), ] SendAndTrackLinkViewedType.description.validator = bv.String() -SendAndTrackLinkViewedType._all_field_names_ = set(['description']) -SendAndTrackLinkViewedType._all_fields_ = [('description', SendAndTrackLinkViewedType.description.validator)] +SendAndTrackLinkViewedType._all_field_names_ = set(["description"]) +SendAndTrackLinkViewedType._all_fields_ = [ + ("description", SendAndTrackLinkViewedType.description.validator) +] SendAndTrackPolicy._default_validator = bv.Void() SendAndTrackPolicy._disabled_validator = bv.Void() SendAndTrackPolicy._enabled_validator = bv.Void() SendAndTrackPolicy._other_validator = bv.Void() SendAndTrackPolicy._tagmap = { - 'default': SendAndTrackPolicy._default_validator, - 'disabled': SendAndTrackPolicy._disabled_validator, - 'enabled': SendAndTrackPolicy._enabled_validator, - 'other': SendAndTrackPolicy._other_validator, + "default": SendAndTrackPolicy._default_validator, + "disabled": SendAndTrackPolicy._disabled_validator, + "enabled": SendAndTrackPolicy._enabled_validator, + "other": SendAndTrackPolicy._other_validator, } -SendAndTrackPolicy.default = SendAndTrackPolicy('default') -SendAndTrackPolicy.disabled = SendAndTrackPolicy('disabled') -SendAndTrackPolicy.enabled = SendAndTrackPolicy('enabled') -SendAndTrackPolicy.other = SendAndTrackPolicy('other') +SendAndTrackPolicy.default = SendAndTrackPolicy("default") +SendAndTrackPolicy.disabled = SendAndTrackPolicy("disabled") +SendAndTrackPolicy.enabled = SendAndTrackPolicy("enabled") +SendAndTrackPolicy.other = SendAndTrackPolicy("other") SendAndTrackPolicyChangedDetails.new_value.validator = SendAndTrackPolicy_validator SendAndTrackPolicyChangedDetails.previous_value.validator = SendAndTrackPolicy_validator -SendAndTrackPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SendAndTrackPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SendAndTrackPolicyChangedDetails._all_fields_ = [ - ('new_value', SendAndTrackPolicyChangedDetails.new_value.validator), - ('previous_value', SendAndTrackPolicyChangedDetails.previous_value.validator), + ("new_value", SendAndTrackPolicyChangedDetails.new_value.validator), + ("previous_value", SendAndTrackPolicyChangedDetails.previous_value.validator), ] SendAndTrackPolicyChangedType.description.validator = bv.String() -SendAndTrackPolicyChangedType._all_field_names_ = set(['description']) -SendAndTrackPolicyChangedType._all_fields_ = [('description', SendAndTrackPolicyChangedType.description.validator)] +SendAndTrackPolicyChangedType._all_field_names_ = set(["description"]) +SendAndTrackPolicyChangedType._all_fields_ = [ + ("description", SendAndTrackPolicyChangedType.description.validator) +] SendAndTrackRemovedFileAndAssociatedLinksDetails._all_field_names_ = set([]) SendAndTrackRemovedFileAndAssociatedLinksDetails._all_fields_ = [] SendAndTrackRemovedFileAndAssociatedLinksType.description.validator = bv.String() -SendAndTrackRemovedFileAndAssociatedLinksType._all_field_names_ = set(['description']) -SendAndTrackRemovedFileAndAssociatedLinksType._all_fields_ = [('description', SendAndTrackRemovedFileAndAssociatedLinksType.description.validator)] +SendAndTrackRemovedFileAndAssociatedLinksType._all_field_names_ = set(["description"]) +SendAndTrackRemovedFileAndAssociatedLinksType._all_fields_ = [ + ("description", SendAndTrackRemovedFileAndAssociatedLinksType.description.validator) +] SendExternalSharingPolicy._default_validator = bv.Void() SendExternalSharingPolicy._disabled_validator = bv.Void() SendExternalSharingPolicy._enabled_validator = bv.Void() SendExternalSharingPolicy._other_validator = bv.Void() SendExternalSharingPolicy._tagmap = { - 'default': SendExternalSharingPolicy._default_validator, - 'disabled': SendExternalSharingPolicy._disabled_validator, - 'enabled': SendExternalSharingPolicy._enabled_validator, - 'other': SendExternalSharingPolicy._other_validator, + "default": SendExternalSharingPolicy._default_validator, + "disabled": SendExternalSharingPolicy._disabled_validator, + "enabled": SendExternalSharingPolicy._enabled_validator, + "other": SendExternalSharingPolicy._other_validator, } -SendExternalSharingPolicy.default = SendExternalSharingPolicy('default') -SendExternalSharingPolicy.disabled = SendExternalSharingPolicy('disabled') -SendExternalSharingPolicy.enabled = SendExternalSharingPolicy('enabled') -SendExternalSharingPolicy.other = SendExternalSharingPolicy('other') +SendExternalSharingPolicy.default = SendExternalSharingPolicy("default") +SendExternalSharingPolicy.disabled = SendExternalSharingPolicy("disabled") +SendExternalSharingPolicy.enabled = SendExternalSharingPolicy("enabled") +SendExternalSharingPolicy.other = SendExternalSharingPolicy("other") SendExternalSharingPolicyChangedDetails.new_value.validator = SendExternalSharingPolicy_validator -SendExternalSharingPolicyChangedDetails.previous_value.validator = SendExternalSharingPolicy_validator -SendExternalSharingPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SendExternalSharingPolicyChangedDetails.previous_value.validator = ( + SendExternalSharingPolicy_validator +) +SendExternalSharingPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SendExternalSharingPolicyChangedDetails._all_fields_ = [ - ('new_value', SendExternalSharingPolicyChangedDetails.new_value.validator), - ('previous_value', SendExternalSharingPolicyChangedDetails.previous_value.validator), + ("new_value", SendExternalSharingPolicyChangedDetails.new_value.validator), + ( + "previous_value", + SendExternalSharingPolicyChangedDetails.previous_value.validator, + ), ] SendExternalSharingPolicyChangedType.description.validator = bv.String() -SendExternalSharingPolicyChangedType._all_field_names_ = set(['description']) -SendExternalSharingPolicyChangedType._all_fields_ = [('description', SendExternalSharingPolicyChangedType.description.validator)] +SendExternalSharingPolicyChangedType._all_field_names_ = set(["description"]) +SendExternalSharingPolicyChangedType._all_fields_ = [ + ("description", SendExternalSharingPolicyChangedType.description.validator) +] SendForSignaturePolicy._disabled_validator = bv.Void() SendForSignaturePolicy._enabled_validator = bv.Void() SendForSignaturePolicy._other_validator = bv.Void() SendForSignaturePolicy._tagmap = { - 'disabled': SendForSignaturePolicy._disabled_validator, - 'enabled': SendForSignaturePolicy._enabled_validator, - 'other': SendForSignaturePolicy._other_validator, + "disabled": SendForSignaturePolicy._disabled_validator, + "enabled": SendForSignaturePolicy._enabled_validator, + "other": SendForSignaturePolicy._other_validator, } -SendForSignaturePolicy.disabled = SendForSignaturePolicy('disabled') -SendForSignaturePolicy.enabled = SendForSignaturePolicy('enabled') -SendForSignaturePolicy.other = SendForSignaturePolicy('other') +SendForSignaturePolicy.disabled = SendForSignaturePolicy("disabled") +SendForSignaturePolicy.enabled = SendForSignaturePolicy("enabled") +SendForSignaturePolicy.other = SendForSignaturePolicy("other") SendForSignaturePolicyChangedDetails.new_value.validator = SendForSignaturePolicy_validator SendForSignaturePolicyChangedDetails.previous_value.validator = SendForSignaturePolicy_validator -SendForSignaturePolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SendForSignaturePolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SendForSignaturePolicyChangedDetails._all_fields_ = [ - ('new_value', SendForSignaturePolicyChangedDetails.new_value.validator), - ('previous_value', SendForSignaturePolicyChangedDetails.previous_value.validator), + ("new_value", SendForSignaturePolicyChangedDetails.new_value.validator), + ("previous_value", SendForSignaturePolicyChangedDetails.previous_value.validator), ] SendForSignaturePolicyChangedType.description.validator = bv.String() -SendForSignaturePolicyChangedType._all_field_names_ = set(['description']) -SendForSignaturePolicyChangedType._all_fields_ = [('description', SendForSignaturePolicyChangedType.description.validator)] +SendForSignaturePolicyChangedType._all_field_names_ = set(["description"]) +SendForSignaturePolicyChangedType._all_fields_ = [ + ("description", SendForSignaturePolicyChangedType.description.validator) +] SfAddGroupDetails.target_asset_index.validator = bv.UInt64() SfAddGroupDetails.original_folder_name.validator = bv.String() SfAddGroupDetails.sharing_permission.validator = bv.Nullable(bv.String()) SfAddGroupDetails.team_name.validator = bv.String() -SfAddGroupDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', - 'sharing_permission', - 'team_name', -]) +SfAddGroupDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + "sharing_permission", + "team_name", + ] +) SfAddGroupDetails._all_fields_ = [ - ('target_asset_index', SfAddGroupDetails.target_asset_index.validator), - ('original_folder_name', SfAddGroupDetails.original_folder_name.validator), - ('sharing_permission', SfAddGroupDetails.sharing_permission.validator), - ('team_name', SfAddGroupDetails.team_name.validator), + ("target_asset_index", SfAddGroupDetails.target_asset_index.validator), + ("original_folder_name", SfAddGroupDetails.original_folder_name.validator), + ("sharing_permission", SfAddGroupDetails.sharing_permission.validator), + ("team_name", SfAddGroupDetails.team_name.validator), ] SfAddGroupType.description.validator = bv.String() -SfAddGroupType._all_field_names_ = set(['description']) -SfAddGroupType._all_fields_ = [('description', SfAddGroupType.description.validator)] +SfAddGroupType._all_field_names_ = set(["description"]) +SfAddGroupType._all_fields_ = [("description", SfAddGroupType.description.validator)] SfAllowNonMembersToViewSharedLinksDetails.target_asset_index.validator = bv.UInt64() SfAllowNonMembersToViewSharedLinksDetails.original_folder_name.validator = bv.String() SfAllowNonMembersToViewSharedLinksDetails.shared_folder_type.validator = bv.Nullable(bv.String()) -SfAllowNonMembersToViewSharedLinksDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', - 'shared_folder_type', -]) +SfAllowNonMembersToViewSharedLinksDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + "shared_folder_type", + ] +) SfAllowNonMembersToViewSharedLinksDetails._all_fields_ = [ - ('target_asset_index', SfAllowNonMembersToViewSharedLinksDetails.target_asset_index.validator), - ('original_folder_name', SfAllowNonMembersToViewSharedLinksDetails.original_folder_name.validator), - ('shared_folder_type', SfAllowNonMembersToViewSharedLinksDetails.shared_folder_type.validator), + ( + "target_asset_index", + SfAllowNonMembersToViewSharedLinksDetails.target_asset_index.validator, + ), + ( + "original_folder_name", + SfAllowNonMembersToViewSharedLinksDetails.original_folder_name.validator, + ), + ( + "shared_folder_type", + SfAllowNonMembersToViewSharedLinksDetails.shared_folder_type.validator, + ), ] SfAllowNonMembersToViewSharedLinksType.description.validator = bv.String() -SfAllowNonMembersToViewSharedLinksType._all_field_names_ = set(['description']) -SfAllowNonMembersToViewSharedLinksType._all_fields_ = [('description', SfAllowNonMembersToViewSharedLinksType.description.validator)] +SfAllowNonMembersToViewSharedLinksType._all_field_names_ = set(["description"]) +SfAllowNonMembersToViewSharedLinksType._all_fields_ = [ + ("description", SfAllowNonMembersToViewSharedLinksType.description.validator) +] SfExternalInviteWarnDetails.target_asset_index.validator = bv.UInt64() SfExternalInviteWarnDetails.original_folder_name.validator = bv.String() SfExternalInviteWarnDetails.new_sharing_permission.validator = bv.Nullable(bv.String()) SfExternalInviteWarnDetails.previous_sharing_permission.validator = bv.Nullable(bv.String()) -SfExternalInviteWarnDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', - 'new_sharing_permission', - 'previous_sharing_permission', -]) +SfExternalInviteWarnDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + "new_sharing_permission", + "previous_sharing_permission", + ] +) SfExternalInviteWarnDetails._all_fields_ = [ - ('target_asset_index', SfExternalInviteWarnDetails.target_asset_index.validator), - ('original_folder_name', SfExternalInviteWarnDetails.original_folder_name.validator), - ('new_sharing_permission', SfExternalInviteWarnDetails.new_sharing_permission.validator), - ('previous_sharing_permission', SfExternalInviteWarnDetails.previous_sharing_permission.validator), + ("target_asset_index", SfExternalInviteWarnDetails.target_asset_index.validator), + ( + "original_folder_name", + SfExternalInviteWarnDetails.original_folder_name.validator, + ), + ( + "new_sharing_permission", + SfExternalInviteWarnDetails.new_sharing_permission.validator, + ), + ( + "previous_sharing_permission", + SfExternalInviteWarnDetails.previous_sharing_permission.validator, + ), ] SfExternalInviteWarnType.description.validator = bv.String() -SfExternalInviteWarnType._all_field_names_ = set(['description']) -SfExternalInviteWarnType._all_fields_ = [('description', SfExternalInviteWarnType.description.validator)] +SfExternalInviteWarnType._all_field_names_ = set(["description"]) +SfExternalInviteWarnType._all_fields_ = [ + ("description", SfExternalInviteWarnType.description.validator) +] SfFbInviteChangeRoleDetails.target_asset_index.validator = bv.UInt64() SfFbInviteChangeRoleDetails.original_folder_name.validator = bv.String() SfFbInviteChangeRoleDetails.previous_sharing_permission.validator = bv.Nullable(bv.String()) SfFbInviteChangeRoleDetails.new_sharing_permission.validator = bv.Nullable(bv.String()) -SfFbInviteChangeRoleDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', - 'previous_sharing_permission', - 'new_sharing_permission', -]) +SfFbInviteChangeRoleDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + "previous_sharing_permission", + "new_sharing_permission", + ] +) SfFbInviteChangeRoleDetails._all_fields_ = [ - ('target_asset_index', SfFbInviteChangeRoleDetails.target_asset_index.validator), - ('original_folder_name', SfFbInviteChangeRoleDetails.original_folder_name.validator), - ('previous_sharing_permission', SfFbInviteChangeRoleDetails.previous_sharing_permission.validator), - ('new_sharing_permission', SfFbInviteChangeRoleDetails.new_sharing_permission.validator), + ("target_asset_index", SfFbInviteChangeRoleDetails.target_asset_index.validator), + ( + "original_folder_name", + SfFbInviteChangeRoleDetails.original_folder_name.validator, + ), + ( + "previous_sharing_permission", + SfFbInviteChangeRoleDetails.previous_sharing_permission.validator, + ), + ( + "new_sharing_permission", + SfFbInviteChangeRoleDetails.new_sharing_permission.validator, + ), ] SfFbInviteChangeRoleType.description.validator = bv.String() -SfFbInviteChangeRoleType._all_field_names_ = set(['description']) -SfFbInviteChangeRoleType._all_fields_ = [('description', SfFbInviteChangeRoleType.description.validator)] +SfFbInviteChangeRoleType._all_field_names_ = set(["description"]) +SfFbInviteChangeRoleType._all_fields_ = [ + ("description", SfFbInviteChangeRoleType.description.validator) +] SfFbInviteDetails.target_asset_index.validator = bv.UInt64() SfFbInviteDetails.original_folder_name.validator = bv.String() SfFbInviteDetails.sharing_permission.validator = bv.Nullable(bv.String()) -SfFbInviteDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', - 'sharing_permission', -]) +SfFbInviteDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + "sharing_permission", + ] +) SfFbInviteDetails._all_fields_ = [ - ('target_asset_index', SfFbInviteDetails.target_asset_index.validator), - ('original_folder_name', SfFbInviteDetails.original_folder_name.validator), - ('sharing_permission', SfFbInviteDetails.sharing_permission.validator), + ("target_asset_index", SfFbInviteDetails.target_asset_index.validator), + ("original_folder_name", SfFbInviteDetails.original_folder_name.validator), + ("sharing_permission", SfFbInviteDetails.sharing_permission.validator), ] SfFbInviteType.description.validator = bv.String() -SfFbInviteType._all_field_names_ = set(['description']) -SfFbInviteType._all_fields_ = [('description', SfFbInviteType.description.validator)] +SfFbInviteType._all_field_names_ = set(["description"]) +SfFbInviteType._all_fields_ = [("description", SfFbInviteType.description.validator)] SfFbUninviteDetails.target_asset_index.validator = bv.UInt64() SfFbUninviteDetails.original_folder_name.validator = bv.String() -SfFbUninviteDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', -]) +SfFbUninviteDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + ] +) SfFbUninviteDetails._all_fields_ = [ - ('target_asset_index', SfFbUninviteDetails.target_asset_index.validator), - ('original_folder_name', SfFbUninviteDetails.original_folder_name.validator), + ("target_asset_index", SfFbUninviteDetails.target_asset_index.validator), + ("original_folder_name", SfFbUninviteDetails.original_folder_name.validator), ] SfFbUninviteType.description.validator = bv.String() -SfFbUninviteType._all_field_names_ = set(['description']) -SfFbUninviteType._all_fields_ = [('description', SfFbUninviteType.description.validator)] +SfFbUninviteType._all_field_names_ = set(["description"]) +SfFbUninviteType._all_fields_ = [("description", SfFbUninviteType.description.validator)] SfInviteGroupDetails.target_asset_index.validator = bv.UInt64() -SfInviteGroupDetails._all_field_names_ = set(['target_asset_index']) -SfInviteGroupDetails._all_fields_ = [('target_asset_index', SfInviteGroupDetails.target_asset_index.validator)] +SfInviteGroupDetails._all_field_names_ = set(["target_asset_index"]) +SfInviteGroupDetails._all_fields_ = [ + ("target_asset_index", SfInviteGroupDetails.target_asset_index.validator) +] SfInviteGroupType.description.validator = bv.String() -SfInviteGroupType._all_field_names_ = set(['description']) -SfInviteGroupType._all_fields_ = [('description', SfInviteGroupType.description.validator)] +SfInviteGroupType._all_field_names_ = set(["description"]) +SfInviteGroupType._all_fields_ = [("description", SfInviteGroupType.description.validator)] SfTeamGrantAccessDetails.target_asset_index.validator = bv.UInt64() SfTeamGrantAccessDetails.original_folder_name.validator = bv.String() -SfTeamGrantAccessDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', -]) +SfTeamGrantAccessDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + ] +) SfTeamGrantAccessDetails._all_fields_ = [ - ('target_asset_index', SfTeamGrantAccessDetails.target_asset_index.validator), - ('original_folder_name', SfTeamGrantAccessDetails.original_folder_name.validator), + ("target_asset_index", SfTeamGrantAccessDetails.target_asset_index.validator), + ("original_folder_name", SfTeamGrantAccessDetails.original_folder_name.validator), ] SfTeamGrantAccessType.description.validator = bv.String() -SfTeamGrantAccessType._all_field_names_ = set(['description']) -SfTeamGrantAccessType._all_fields_ = [('description', SfTeamGrantAccessType.description.validator)] +SfTeamGrantAccessType._all_field_names_ = set(["description"]) +SfTeamGrantAccessType._all_fields_ = [("description", SfTeamGrantAccessType.description.validator)] SfTeamInviteChangeRoleDetails.target_asset_index.validator = bv.UInt64() SfTeamInviteChangeRoleDetails.original_folder_name.validator = bv.String() SfTeamInviteChangeRoleDetails.new_sharing_permission.validator = bv.Nullable(bv.String()) SfTeamInviteChangeRoleDetails.previous_sharing_permission.validator = bv.Nullable(bv.String()) -SfTeamInviteChangeRoleDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', - 'new_sharing_permission', - 'previous_sharing_permission', -]) +SfTeamInviteChangeRoleDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + "new_sharing_permission", + "previous_sharing_permission", + ] +) SfTeamInviteChangeRoleDetails._all_fields_ = [ - ('target_asset_index', SfTeamInviteChangeRoleDetails.target_asset_index.validator), - ('original_folder_name', SfTeamInviteChangeRoleDetails.original_folder_name.validator), - ('new_sharing_permission', SfTeamInviteChangeRoleDetails.new_sharing_permission.validator), - ('previous_sharing_permission', SfTeamInviteChangeRoleDetails.previous_sharing_permission.validator), + ("target_asset_index", SfTeamInviteChangeRoleDetails.target_asset_index.validator), + ( + "original_folder_name", + SfTeamInviteChangeRoleDetails.original_folder_name.validator, + ), + ( + "new_sharing_permission", + SfTeamInviteChangeRoleDetails.new_sharing_permission.validator, + ), + ( + "previous_sharing_permission", + SfTeamInviteChangeRoleDetails.previous_sharing_permission.validator, + ), ] SfTeamInviteChangeRoleType.description.validator = bv.String() -SfTeamInviteChangeRoleType._all_field_names_ = set(['description']) -SfTeamInviteChangeRoleType._all_fields_ = [('description', SfTeamInviteChangeRoleType.description.validator)] +SfTeamInviteChangeRoleType._all_field_names_ = set(["description"]) +SfTeamInviteChangeRoleType._all_fields_ = [ + ("description", SfTeamInviteChangeRoleType.description.validator) +] SfTeamInviteDetails.target_asset_index.validator = bv.UInt64() SfTeamInviteDetails.original_folder_name.validator = bv.String() SfTeamInviteDetails.sharing_permission.validator = bv.Nullable(bv.String()) -SfTeamInviteDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', - 'sharing_permission', -]) +SfTeamInviteDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + "sharing_permission", + ] +) SfTeamInviteDetails._all_fields_ = [ - ('target_asset_index', SfTeamInviteDetails.target_asset_index.validator), - ('original_folder_name', SfTeamInviteDetails.original_folder_name.validator), - ('sharing_permission', SfTeamInviteDetails.sharing_permission.validator), + ("target_asset_index", SfTeamInviteDetails.target_asset_index.validator), + ("original_folder_name", SfTeamInviteDetails.original_folder_name.validator), + ("sharing_permission", SfTeamInviteDetails.sharing_permission.validator), ] SfTeamInviteType.description.validator = bv.String() -SfTeamInviteType._all_field_names_ = set(['description']) -SfTeamInviteType._all_fields_ = [('description', SfTeamInviteType.description.validator)] +SfTeamInviteType._all_field_names_ = set(["description"]) +SfTeamInviteType._all_fields_ = [("description", SfTeamInviteType.description.validator)] SfTeamJoinDetails.target_asset_index.validator = bv.UInt64() SfTeamJoinDetails.original_folder_name.validator = bv.String() -SfTeamJoinDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', -]) +SfTeamJoinDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + ] +) SfTeamJoinDetails._all_fields_ = [ - ('target_asset_index', SfTeamJoinDetails.target_asset_index.validator), - ('original_folder_name', SfTeamJoinDetails.original_folder_name.validator), + ("target_asset_index", SfTeamJoinDetails.target_asset_index.validator), + ("original_folder_name", SfTeamJoinDetails.original_folder_name.validator), ] SfTeamJoinFromOobLinkDetails.target_asset_index.validator = bv.UInt64() SfTeamJoinFromOobLinkDetails.original_folder_name.validator = bv.String() SfTeamJoinFromOobLinkDetails.token_key.validator = bv.Nullable(bv.String()) SfTeamJoinFromOobLinkDetails.sharing_permission.validator = bv.Nullable(bv.String()) -SfTeamJoinFromOobLinkDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', - 'token_key', - 'sharing_permission', -]) +SfTeamJoinFromOobLinkDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + "token_key", + "sharing_permission", + ] +) SfTeamJoinFromOobLinkDetails._all_fields_ = [ - ('target_asset_index', SfTeamJoinFromOobLinkDetails.target_asset_index.validator), - ('original_folder_name', SfTeamJoinFromOobLinkDetails.original_folder_name.validator), - ('token_key', SfTeamJoinFromOobLinkDetails.token_key.validator), - ('sharing_permission', SfTeamJoinFromOobLinkDetails.sharing_permission.validator), + ("target_asset_index", SfTeamJoinFromOobLinkDetails.target_asset_index.validator), + ( + "original_folder_name", + SfTeamJoinFromOobLinkDetails.original_folder_name.validator, + ), + ("token_key", SfTeamJoinFromOobLinkDetails.token_key.validator), + ("sharing_permission", SfTeamJoinFromOobLinkDetails.sharing_permission.validator), ] SfTeamJoinFromOobLinkType.description.validator = bv.String() -SfTeamJoinFromOobLinkType._all_field_names_ = set(['description']) -SfTeamJoinFromOobLinkType._all_fields_ = [('description', SfTeamJoinFromOobLinkType.description.validator)] +SfTeamJoinFromOobLinkType._all_field_names_ = set(["description"]) +SfTeamJoinFromOobLinkType._all_fields_ = [ + ("description", SfTeamJoinFromOobLinkType.description.validator) +] SfTeamJoinType.description.validator = bv.String() -SfTeamJoinType._all_field_names_ = set(['description']) -SfTeamJoinType._all_fields_ = [('description', SfTeamJoinType.description.validator)] +SfTeamJoinType._all_field_names_ = set(["description"]) +SfTeamJoinType._all_fields_ = [("description", SfTeamJoinType.description.validator)] SfTeamUninviteDetails.target_asset_index.validator = bv.UInt64() SfTeamUninviteDetails.original_folder_name.validator = bv.String() -SfTeamUninviteDetails._all_field_names_ = set([ - 'target_asset_index', - 'original_folder_name', -]) +SfTeamUninviteDetails._all_field_names_ = set( + [ + "target_asset_index", + "original_folder_name", + ] +) SfTeamUninviteDetails._all_fields_ = [ - ('target_asset_index', SfTeamUninviteDetails.target_asset_index.validator), - ('original_folder_name', SfTeamUninviteDetails.original_folder_name.validator), + ("target_asset_index", SfTeamUninviteDetails.target_asset_index.validator), + ("original_folder_name", SfTeamUninviteDetails.original_folder_name.validator), ] SfTeamUninviteType.description.validator = bv.String() -SfTeamUninviteType._all_field_names_ = set(['description']) -SfTeamUninviteType._all_fields_ = [('description', SfTeamUninviteType.description.validator)] +SfTeamUninviteType._all_field_names_ = set(["description"]) +SfTeamUninviteType._all_fields_ = [("description", SfTeamUninviteType.description.validator)] -SharedContentAddInviteesDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedContentAddInviteesDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) SharedContentAddInviteesDetails.invitees.validator = bv.List(EmailAddress_validator) -SharedContentAddInviteesDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'invitees', -]) +SharedContentAddInviteesDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "invitees", + ] +) SharedContentAddInviteesDetails._all_fields_ = [ - ('shared_content_access_level', SharedContentAddInviteesDetails.shared_content_access_level.validator), - ('invitees', SharedContentAddInviteesDetails.invitees.validator), + ( + "shared_content_access_level", + SharedContentAddInviteesDetails.shared_content_access_level.validator, + ), + ("invitees", SharedContentAddInviteesDetails.invitees.validator), ] SharedContentAddInviteesType.description.validator = bv.String() -SharedContentAddInviteesType._all_field_names_ = set(['description']) -SharedContentAddInviteesType._all_fields_ = [('description', SharedContentAddInviteesType.description.validator)] +SharedContentAddInviteesType._all_field_names_ = set(["description"]) +SharedContentAddInviteesType._all_fields_ = [ + ("description", SharedContentAddInviteesType.description.validator) +] -SharedContentAddLinkExpiryDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedContentAddLinkExpiryDetails._all_field_names_ = set(['new_value']) -SharedContentAddLinkExpiryDetails._all_fields_ = [('new_value', SharedContentAddLinkExpiryDetails.new_value.validator)] +SharedContentAddLinkExpiryDetails.new_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) +SharedContentAddLinkExpiryDetails._all_field_names_ = set(["new_value"]) +SharedContentAddLinkExpiryDetails._all_fields_ = [ + ("new_value", SharedContentAddLinkExpiryDetails.new_value.validator) +] SharedContentAddLinkExpiryType.description.validator = bv.String() -SharedContentAddLinkExpiryType._all_field_names_ = set(['description']) -SharedContentAddLinkExpiryType._all_fields_ = [('description', SharedContentAddLinkExpiryType.description.validator)] +SharedContentAddLinkExpiryType._all_field_names_ = set(["description"]) +SharedContentAddLinkExpiryType._all_fields_ = [ + ("description", SharedContentAddLinkExpiryType.description.validator) +] SharedContentAddLinkPasswordDetails._all_field_names_ = set([]) SharedContentAddLinkPasswordDetails._all_fields_ = [] SharedContentAddLinkPasswordType.description.validator = bv.String() -SharedContentAddLinkPasswordType._all_field_names_ = set(['description']) -SharedContentAddLinkPasswordType._all_fields_ = [('description', SharedContentAddLinkPasswordType.description.validator)] +SharedContentAddLinkPasswordType._all_field_names_ = set(["description"]) +SharedContentAddLinkPasswordType._all_fields_ = [ + ("description", SharedContentAddLinkPasswordType.description.validator) +] SharedContentAddMemberDetails.shared_content_access_level.validator = sharing.AccessLevel_validator -SharedContentAddMemberDetails._all_field_names_ = set(['shared_content_access_level']) -SharedContentAddMemberDetails._all_fields_ = [('shared_content_access_level', SharedContentAddMemberDetails.shared_content_access_level.validator)] +SharedContentAddMemberDetails._all_field_names_ = set(["shared_content_access_level"]) +SharedContentAddMemberDetails._all_fields_ = [ + ( + "shared_content_access_level", + SharedContentAddMemberDetails.shared_content_access_level.validator, + ) +] SharedContentAddMemberType.description.validator = bv.String() -SharedContentAddMemberType._all_field_names_ = set(['description']) -SharedContentAddMemberType._all_fields_ = [('description', SharedContentAddMemberType.description.validator)] +SharedContentAddMemberType._all_field_names_ = set(["description"]) +SharedContentAddMemberType._all_fields_ = [ + ("description", SharedContentAddMemberType.description.validator) +] SharedContentChangeDownloadsPolicyDetails.new_value.validator = DownloadPolicyType_validator -SharedContentChangeDownloadsPolicyDetails.previous_value.validator = bv.Nullable(DownloadPolicyType_validator) -SharedContentChangeDownloadsPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharedContentChangeDownloadsPolicyDetails.previous_value.validator = bv.Nullable( + DownloadPolicyType_validator +) +SharedContentChangeDownloadsPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharedContentChangeDownloadsPolicyDetails._all_fields_ = [ - ('new_value', SharedContentChangeDownloadsPolicyDetails.new_value.validator), - ('previous_value', SharedContentChangeDownloadsPolicyDetails.previous_value.validator), + ("new_value", SharedContentChangeDownloadsPolicyDetails.new_value.validator), + ( + "previous_value", + SharedContentChangeDownloadsPolicyDetails.previous_value.validator, + ), ] SharedContentChangeDownloadsPolicyType.description.validator = bv.String() -SharedContentChangeDownloadsPolicyType._all_field_names_ = set(['description']) -SharedContentChangeDownloadsPolicyType._all_fields_ = [('description', SharedContentChangeDownloadsPolicyType.description.validator)] +SharedContentChangeDownloadsPolicyType._all_field_names_ = set(["description"]) +SharedContentChangeDownloadsPolicyType._all_fields_ = [ + ("description", SharedContentChangeDownloadsPolicyType.description.validator) +] -SharedContentChangeInviteeRoleDetails.previous_access_level.validator = bv.Nullable(sharing.AccessLevel_validator) +SharedContentChangeInviteeRoleDetails.previous_access_level.validator = bv.Nullable( + sharing.AccessLevel_validator +) SharedContentChangeInviteeRoleDetails.new_access_level.validator = sharing.AccessLevel_validator SharedContentChangeInviteeRoleDetails.invitee.validator = EmailAddress_validator -SharedContentChangeInviteeRoleDetails._all_field_names_ = set([ - 'previous_access_level', - 'new_access_level', - 'invitee', -]) +SharedContentChangeInviteeRoleDetails._all_field_names_ = set( + [ + "previous_access_level", + "new_access_level", + "invitee", + ] +) SharedContentChangeInviteeRoleDetails._all_fields_ = [ - ('previous_access_level', SharedContentChangeInviteeRoleDetails.previous_access_level.validator), - ('new_access_level', SharedContentChangeInviteeRoleDetails.new_access_level.validator), - ('invitee', SharedContentChangeInviteeRoleDetails.invitee.validator), + ( + "previous_access_level", + SharedContentChangeInviteeRoleDetails.previous_access_level.validator, + ), + ( + "new_access_level", + SharedContentChangeInviteeRoleDetails.new_access_level.validator, + ), + ("invitee", SharedContentChangeInviteeRoleDetails.invitee.validator), ] SharedContentChangeInviteeRoleType.description.validator = bv.String() -SharedContentChangeInviteeRoleType._all_field_names_ = set(['description']) -SharedContentChangeInviteeRoleType._all_fields_ = [('description', SharedContentChangeInviteeRoleType.description.validator)] +SharedContentChangeInviteeRoleType._all_field_names_ = set(["description"]) +SharedContentChangeInviteeRoleType._all_fields_ = [ + ("description", SharedContentChangeInviteeRoleType.description.validator) +] SharedContentChangeLinkAudienceDetails.new_value.validator = sharing.LinkAudience_validator -SharedContentChangeLinkAudienceDetails.previous_value.validator = bv.Nullable(sharing.LinkAudience_validator) -SharedContentChangeLinkAudienceDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharedContentChangeLinkAudienceDetails.previous_value.validator = bv.Nullable( + sharing.LinkAudience_validator +) +SharedContentChangeLinkAudienceDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharedContentChangeLinkAudienceDetails._all_fields_ = [ - ('new_value', SharedContentChangeLinkAudienceDetails.new_value.validator), - ('previous_value', SharedContentChangeLinkAudienceDetails.previous_value.validator), + ("new_value", SharedContentChangeLinkAudienceDetails.new_value.validator), + ("previous_value", SharedContentChangeLinkAudienceDetails.previous_value.validator), ] SharedContentChangeLinkAudienceType.description.validator = bv.String() -SharedContentChangeLinkAudienceType._all_field_names_ = set(['description']) -SharedContentChangeLinkAudienceType._all_fields_ = [('description', SharedContentChangeLinkAudienceType.description.validator)] - -SharedContentChangeLinkExpiryDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedContentChangeLinkExpiryDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedContentChangeLinkExpiryDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharedContentChangeLinkAudienceType._all_field_names_ = set(["description"]) +SharedContentChangeLinkAudienceType._all_fields_ = [ + ("description", SharedContentChangeLinkAudienceType.description.validator) +] + +SharedContentChangeLinkExpiryDetails.new_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) +SharedContentChangeLinkExpiryDetails.previous_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) +SharedContentChangeLinkExpiryDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharedContentChangeLinkExpiryDetails._all_fields_ = [ - ('new_value', SharedContentChangeLinkExpiryDetails.new_value.validator), - ('previous_value', SharedContentChangeLinkExpiryDetails.previous_value.validator), + ("new_value", SharedContentChangeLinkExpiryDetails.new_value.validator), + ("previous_value", SharedContentChangeLinkExpiryDetails.previous_value.validator), ] SharedContentChangeLinkExpiryType.description.validator = bv.String() -SharedContentChangeLinkExpiryType._all_field_names_ = set(['description']) -SharedContentChangeLinkExpiryType._all_fields_ = [('description', SharedContentChangeLinkExpiryType.description.validator)] +SharedContentChangeLinkExpiryType._all_field_names_ = set(["description"]) +SharedContentChangeLinkExpiryType._all_fields_ = [ + ("description", SharedContentChangeLinkExpiryType.description.validator) +] SharedContentChangeLinkPasswordDetails._all_field_names_ = set([]) SharedContentChangeLinkPasswordDetails._all_fields_ = [] SharedContentChangeLinkPasswordType.description.validator = bv.String() -SharedContentChangeLinkPasswordType._all_field_names_ = set(['description']) -SharedContentChangeLinkPasswordType._all_fields_ = [('description', SharedContentChangeLinkPasswordType.description.validator)] +SharedContentChangeLinkPasswordType._all_field_names_ = set(["description"]) +SharedContentChangeLinkPasswordType._all_fields_ = [ + ("description", SharedContentChangeLinkPasswordType.description.validator) +] -SharedContentChangeMemberRoleDetails.previous_access_level.validator = bv.Nullable(sharing.AccessLevel_validator) +SharedContentChangeMemberRoleDetails.previous_access_level.validator = bv.Nullable( + sharing.AccessLevel_validator +) SharedContentChangeMemberRoleDetails.new_access_level.validator = sharing.AccessLevel_validator -SharedContentChangeMemberRoleDetails._all_field_names_ = set([ - 'previous_access_level', - 'new_access_level', -]) +SharedContentChangeMemberRoleDetails._all_field_names_ = set( + [ + "previous_access_level", + "new_access_level", + ] +) SharedContentChangeMemberRoleDetails._all_fields_ = [ - ('previous_access_level', SharedContentChangeMemberRoleDetails.previous_access_level.validator), - ('new_access_level', SharedContentChangeMemberRoleDetails.new_access_level.validator), + ( + "previous_access_level", + SharedContentChangeMemberRoleDetails.previous_access_level.validator, + ), + ( + "new_access_level", + SharedContentChangeMemberRoleDetails.new_access_level.validator, + ), ] SharedContentChangeMemberRoleType.description.validator = bv.String() -SharedContentChangeMemberRoleType._all_field_names_ = set(['description']) -SharedContentChangeMemberRoleType._all_fields_ = [('description', SharedContentChangeMemberRoleType.description.validator)] +SharedContentChangeMemberRoleType._all_field_names_ = set(["description"]) +SharedContentChangeMemberRoleType._all_fields_ = [ + ("description", SharedContentChangeMemberRoleType.description.validator) +] SharedContentChangeViewerInfoPolicyDetails.new_value.validator = sharing.ViewerInfoPolicy_validator -SharedContentChangeViewerInfoPolicyDetails.previous_value.validator = bv.Nullable(sharing.ViewerInfoPolicy_validator) -SharedContentChangeViewerInfoPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharedContentChangeViewerInfoPolicyDetails.previous_value.validator = bv.Nullable( + sharing.ViewerInfoPolicy_validator +) +SharedContentChangeViewerInfoPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharedContentChangeViewerInfoPolicyDetails._all_fields_ = [ - ('new_value', SharedContentChangeViewerInfoPolicyDetails.new_value.validator), - ('previous_value', SharedContentChangeViewerInfoPolicyDetails.previous_value.validator), + ("new_value", SharedContentChangeViewerInfoPolicyDetails.new_value.validator), + ( + "previous_value", + SharedContentChangeViewerInfoPolicyDetails.previous_value.validator, + ), ] SharedContentChangeViewerInfoPolicyType.description.validator = bv.String() -SharedContentChangeViewerInfoPolicyType._all_field_names_ = set(['description']) -SharedContentChangeViewerInfoPolicyType._all_fields_ = [('description', SharedContentChangeViewerInfoPolicyType.description.validator)] +SharedContentChangeViewerInfoPolicyType._all_field_names_ = set(["description"]) +SharedContentChangeViewerInfoPolicyType._all_fields_ = [ + ("description", SharedContentChangeViewerInfoPolicyType.description.validator) +] SharedContentClaimInvitationDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedContentClaimInvitationDetails._all_field_names_ = set(['shared_content_link']) -SharedContentClaimInvitationDetails._all_fields_ = [('shared_content_link', SharedContentClaimInvitationDetails.shared_content_link.validator)] +SharedContentClaimInvitationDetails._all_field_names_ = set(["shared_content_link"]) +SharedContentClaimInvitationDetails._all_fields_ = [ + ( + "shared_content_link", + SharedContentClaimInvitationDetails.shared_content_link.validator, + ) +] SharedContentClaimInvitationType.description.validator = bv.String() -SharedContentClaimInvitationType._all_field_names_ = set(['description']) -SharedContentClaimInvitationType._all_fields_ = [('description', SharedContentClaimInvitationType.description.validator)] +SharedContentClaimInvitationType._all_field_names_ = set(["description"]) +SharedContentClaimInvitationType._all_fields_ = [ + ("description", SharedContentClaimInvitationType.description.validator) +] SharedContentCopyDetails.shared_content_link.validator = bv.String() SharedContentCopyDetails.shared_content_owner.validator = bv.Nullable(UserLogInfo_validator) SharedContentCopyDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedContentCopyDetails.destination_path.validator = FilePath_validator -SharedContentCopyDetails._all_field_names_ = set([ - 'shared_content_link', - 'shared_content_owner', - 'shared_content_access_level', - 'destination_path', -]) +SharedContentCopyDetails._all_field_names_ = set( + [ + "shared_content_link", + "shared_content_owner", + "shared_content_access_level", + "destination_path", + ] +) SharedContentCopyDetails._all_fields_ = [ - ('shared_content_link', SharedContentCopyDetails.shared_content_link.validator), - ('shared_content_owner', SharedContentCopyDetails.shared_content_owner.validator), - ('shared_content_access_level', SharedContentCopyDetails.shared_content_access_level.validator), - ('destination_path', SharedContentCopyDetails.destination_path.validator), + ("shared_content_link", SharedContentCopyDetails.shared_content_link.validator), + ("shared_content_owner", SharedContentCopyDetails.shared_content_owner.validator), + ( + "shared_content_access_level", + SharedContentCopyDetails.shared_content_access_level.validator, + ), + ("destination_path", SharedContentCopyDetails.destination_path.validator), ] SharedContentCopyType.description.validator = bv.String() -SharedContentCopyType._all_field_names_ = set(['description']) -SharedContentCopyType._all_fields_ = [('description', SharedContentCopyType.description.validator)] +SharedContentCopyType._all_field_names_ = set(["description"]) +SharedContentCopyType._all_fields_ = [("description", SharedContentCopyType.description.validator)] SharedContentDownloadDetails.shared_content_link.validator = bv.String() SharedContentDownloadDetails.shared_content_owner.validator = bv.Nullable(UserLogInfo_validator) SharedContentDownloadDetails.shared_content_access_level.validator = sharing.AccessLevel_validator -SharedContentDownloadDetails._all_field_names_ = set([ - 'shared_content_link', - 'shared_content_owner', - 'shared_content_access_level', -]) +SharedContentDownloadDetails._all_field_names_ = set( + [ + "shared_content_link", + "shared_content_owner", + "shared_content_access_level", + ] +) SharedContentDownloadDetails._all_fields_ = [ - ('shared_content_link', SharedContentDownloadDetails.shared_content_link.validator), - ('shared_content_owner', SharedContentDownloadDetails.shared_content_owner.validator), - ('shared_content_access_level', SharedContentDownloadDetails.shared_content_access_level.validator), + ("shared_content_link", SharedContentDownloadDetails.shared_content_link.validator), + ( + "shared_content_owner", + SharedContentDownloadDetails.shared_content_owner.validator, + ), + ( + "shared_content_access_level", + SharedContentDownloadDetails.shared_content_access_level.validator, + ), ] SharedContentDownloadType.description.validator = bv.String() -SharedContentDownloadType._all_field_names_ = set(['description']) -SharedContentDownloadType._all_fields_ = [('description', SharedContentDownloadType.description.validator)] +SharedContentDownloadType._all_field_names_ = set(["description"]) +SharedContentDownloadType._all_fields_ = [ + ("description", SharedContentDownloadType.description.validator) +] SharedContentRelinquishMembershipDetails._all_field_names_ = set([]) SharedContentRelinquishMembershipDetails._all_fields_ = [] SharedContentRelinquishMembershipType.description.validator = bv.String() -SharedContentRelinquishMembershipType._all_field_names_ = set(['description']) -SharedContentRelinquishMembershipType._all_fields_ = [('description', SharedContentRelinquishMembershipType.description.validator)] +SharedContentRelinquishMembershipType._all_field_names_ = set(["description"]) +SharedContentRelinquishMembershipType._all_fields_ = [ + ("description", SharedContentRelinquishMembershipType.description.validator) +] SharedContentRemoveInviteesDetails.invitees.validator = bv.List(EmailAddress_validator) -SharedContentRemoveInviteesDetails._all_field_names_ = set(['invitees']) -SharedContentRemoveInviteesDetails._all_fields_ = [('invitees', SharedContentRemoveInviteesDetails.invitees.validator)] +SharedContentRemoveInviteesDetails._all_field_names_ = set(["invitees"]) +SharedContentRemoveInviteesDetails._all_fields_ = [ + ("invitees", SharedContentRemoveInviteesDetails.invitees.validator) +] SharedContentRemoveInviteesType.description.validator = bv.String() -SharedContentRemoveInviteesType._all_field_names_ = set(['description']) -SharedContentRemoveInviteesType._all_fields_ = [('description', SharedContentRemoveInviteesType.description.validator)] +SharedContentRemoveInviteesType._all_field_names_ = set(["description"]) +SharedContentRemoveInviteesType._all_fields_ = [ + ("description", SharedContentRemoveInviteesType.description.validator) +] -SharedContentRemoveLinkExpiryDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedContentRemoveLinkExpiryDetails._all_field_names_ = set(['previous_value']) -SharedContentRemoveLinkExpiryDetails._all_fields_ = [('previous_value', SharedContentRemoveLinkExpiryDetails.previous_value.validator)] +SharedContentRemoveLinkExpiryDetails.previous_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) +SharedContentRemoveLinkExpiryDetails._all_field_names_ = set(["previous_value"]) +SharedContentRemoveLinkExpiryDetails._all_fields_ = [ + ("previous_value", SharedContentRemoveLinkExpiryDetails.previous_value.validator) +] SharedContentRemoveLinkExpiryType.description.validator = bv.String() -SharedContentRemoveLinkExpiryType._all_field_names_ = set(['description']) -SharedContentRemoveLinkExpiryType._all_fields_ = [('description', SharedContentRemoveLinkExpiryType.description.validator)] +SharedContentRemoveLinkExpiryType._all_field_names_ = set(["description"]) +SharedContentRemoveLinkExpiryType._all_fields_ = [ + ("description", SharedContentRemoveLinkExpiryType.description.validator) +] SharedContentRemoveLinkPasswordDetails._all_field_names_ = set([]) SharedContentRemoveLinkPasswordDetails._all_fields_ = [] SharedContentRemoveLinkPasswordType.description.validator = bv.String() -SharedContentRemoveLinkPasswordType._all_field_names_ = set(['description']) -SharedContentRemoveLinkPasswordType._all_fields_ = [('description', SharedContentRemoveLinkPasswordType.description.validator)] +SharedContentRemoveLinkPasswordType._all_field_names_ = set(["description"]) +SharedContentRemoveLinkPasswordType._all_fields_ = [ + ("description", SharedContentRemoveLinkPasswordType.description.validator) +] -SharedContentRemoveMemberDetails.shared_content_access_level.validator = bv.Nullable(sharing.AccessLevel_validator) -SharedContentRemoveMemberDetails._all_field_names_ = set(['shared_content_access_level']) -SharedContentRemoveMemberDetails._all_fields_ = [('shared_content_access_level', SharedContentRemoveMemberDetails.shared_content_access_level.validator)] +SharedContentRemoveMemberDetails.shared_content_access_level.validator = bv.Nullable( + sharing.AccessLevel_validator +) +SharedContentRemoveMemberDetails._all_field_names_ = set(["shared_content_access_level"]) +SharedContentRemoveMemberDetails._all_fields_ = [ + ( + "shared_content_access_level", + SharedContentRemoveMemberDetails.shared_content_access_level.validator, + ) +] SharedContentRemoveMemberType.description.validator = bv.String() -SharedContentRemoveMemberType._all_field_names_ = set(['description']) -SharedContentRemoveMemberType._all_fields_ = [('description', SharedContentRemoveMemberType.description.validator)] +SharedContentRemoveMemberType._all_field_names_ = set(["description"]) +SharedContentRemoveMemberType._all_fields_ = [ + ("description", SharedContentRemoveMemberType.description.validator) +] SharedContentRequestAccessDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedContentRequestAccessDetails._all_field_names_ = set(['shared_content_link']) -SharedContentRequestAccessDetails._all_fields_ = [('shared_content_link', SharedContentRequestAccessDetails.shared_content_link.validator)] +SharedContentRequestAccessDetails._all_field_names_ = set(["shared_content_link"]) +SharedContentRequestAccessDetails._all_fields_ = [ + ( + "shared_content_link", + SharedContentRequestAccessDetails.shared_content_link.validator, + ) +] SharedContentRequestAccessType.description.validator = bv.String() -SharedContentRequestAccessType._all_field_names_ = set(['description']) -SharedContentRequestAccessType._all_fields_ = [('description', SharedContentRequestAccessType.description.validator)] +SharedContentRequestAccessType._all_field_names_ = set(["description"]) +SharedContentRequestAccessType._all_fields_ = [ + ("description", SharedContentRequestAccessType.description.validator) +] -SharedContentRestoreInviteesDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedContentRestoreInviteesDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) SharedContentRestoreInviteesDetails.invitees.validator = bv.List(EmailAddress_validator) -SharedContentRestoreInviteesDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'invitees', -]) +SharedContentRestoreInviteesDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "invitees", + ] +) SharedContentRestoreInviteesDetails._all_fields_ = [ - ('shared_content_access_level', SharedContentRestoreInviteesDetails.shared_content_access_level.validator), - ('invitees', SharedContentRestoreInviteesDetails.invitees.validator), + ( + "shared_content_access_level", + SharedContentRestoreInviteesDetails.shared_content_access_level.validator, + ), + ("invitees", SharedContentRestoreInviteesDetails.invitees.validator), ] SharedContentRestoreInviteesType.description.validator = bv.String() -SharedContentRestoreInviteesType._all_field_names_ = set(['description']) -SharedContentRestoreInviteesType._all_fields_ = [('description', SharedContentRestoreInviteesType.description.validator)] +SharedContentRestoreInviteesType._all_field_names_ = set(["description"]) +SharedContentRestoreInviteesType._all_fields_ = [ + ("description", SharedContentRestoreInviteesType.description.validator) +] -SharedContentRestoreMemberDetails.shared_content_access_level.validator = sharing.AccessLevel_validator -SharedContentRestoreMemberDetails._all_field_names_ = set(['shared_content_access_level']) -SharedContentRestoreMemberDetails._all_fields_ = [('shared_content_access_level', SharedContentRestoreMemberDetails.shared_content_access_level.validator)] +SharedContentRestoreMemberDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) +SharedContentRestoreMemberDetails._all_field_names_ = set(["shared_content_access_level"]) +SharedContentRestoreMemberDetails._all_fields_ = [ + ( + "shared_content_access_level", + SharedContentRestoreMemberDetails.shared_content_access_level.validator, + ) +] SharedContentRestoreMemberType.description.validator = bv.String() -SharedContentRestoreMemberType._all_field_names_ = set(['description']) -SharedContentRestoreMemberType._all_fields_ = [('description', SharedContentRestoreMemberType.description.validator)] +SharedContentRestoreMemberType._all_field_names_ = set(["description"]) +SharedContentRestoreMemberType._all_fields_ = [ + ("description", SharedContentRestoreMemberType.description.validator) +] SharedContentUnshareDetails._all_field_names_ = set([]) SharedContentUnshareDetails._all_fields_ = [] SharedContentUnshareType.description.validator = bv.String() -SharedContentUnshareType._all_field_names_ = set(['description']) -SharedContentUnshareType._all_fields_ = [('description', SharedContentUnshareType.description.validator)] +SharedContentUnshareType._all_field_names_ = set(["description"]) +SharedContentUnshareType._all_fields_ = [ + ("description", SharedContentUnshareType.description.validator) +] SharedContentViewDetails.shared_content_link.validator = bv.String() SharedContentViewDetails.shared_content_owner.validator = bv.Nullable(UserLogInfo_validator) SharedContentViewDetails.shared_content_access_level.validator = sharing.AccessLevel_validator -SharedContentViewDetails._all_field_names_ = set([ - 'shared_content_link', - 'shared_content_owner', - 'shared_content_access_level', -]) +SharedContentViewDetails._all_field_names_ = set( + [ + "shared_content_link", + "shared_content_owner", + "shared_content_access_level", + ] +) SharedContentViewDetails._all_fields_ = [ - ('shared_content_link', SharedContentViewDetails.shared_content_link.validator), - ('shared_content_owner', SharedContentViewDetails.shared_content_owner.validator), - ('shared_content_access_level', SharedContentViewDetails.shared_content_access_level.validator), + ("shared_content_link", SharedContentViewDetails.shared_content_link.validator), + ("shared_content_owner", SharedContentViewDetails.shared_content_owner.validator), + ( + "shared_content_access_level", + SharedContentViewDetails.shared_content_access_level.validator, + ), ] SharedContentViewType.description.validator = bv.String() -SharedContentViewType._all_field_names_ = set(['description']) -SharedContentViewType._all_fields_ = [('description', SharedContentViewType.description.validator)] +SharedContentViewType._all_field_names_ = set(["description"]) +SharedContentViewType._all_fields_ = [("description", SharedContentViewType.description.validator)] SharedFolderChangeLinkPolicyDetails.new_value.validator = sharing.SharedLinkPolicy_validator -SharedFolderChangeLinkPolicyDetails.previous_value.validator = bv.Nullable(sharing.SharedLinkPolicy_validator) -SharedFolderChangeLinkPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharedFolderChangeLinkPolicyDetails.previous_value.validator = bv.Nullable( + sharing.SharedLinkPolicy_validator +) +SharedFolderChangeLinkPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharedFolderChangeLinkPolicyDetails._all_fields_ = [ - ('new_value', SharedFolderChangeLinkPolicyDetails.new_value.validator), - ('previous_value', SharedFolderChangeLinkPolicyDetails.previous_value.validator), + ("new_value", SharedFolderChangeLinkPolicyDetails.new_value.validator), + ("previous_value", SharedFolderChangeLinkPolicyDetails.previous_value.validator), ] SharedFolderChangeLinkPolicyType.description.validator = bv.String() -SharedFolderChangeLinkPolicyType._all_field_names_ = set(['description']) -SharedFolderChangeLinkPolicyType._all_fields_ = [('description', SharedFolderChangeLinkPolicyType.description.validator)] - -SharedFolderChangeMembersInheritancePolicyDetails.new_value.validator = SharedFolderMembersInheritancePolicy_validator -SharedFolderChangeMembersInheritancePolicyDetails.previous_value.validator = bv.Nullable(SharedFolderMembersInheritancePolicy_validator) -SharedFolderChangeMembersInheritancePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharedFolderChangeLinkPolicyType._all_field_names_ = set(["description"]) +SharedFolderChangeLinkPolicyType._all_fields_ = [ + ("description", SharedFolderChangeLinkPolicyType.description.validator) +] + +SharedFolderChangeMembersInheritancePolicyDetails.new_value.validator = ( + SharedFolderMembersInheritancePolicy_validator +) +SharedFolderChangeMembersInheritancePolicyDetails.previous_value.validator = bv.Nullable( + SharedFolderMembersInheritancePolicy_validator +) +SharedFolderChangeMembersInheritancePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharedFolderChangeMembersInheritancePolicyDetails._all_fields_ = [ - ('new_value', SharedFolderChangeMembersInheritancePolicyDetails.new_value.validator), - ('previous_value', SharedFolderChangeMembersInheritancePolicyDetails.previous_value.validator), + ( + "new_value", + SharedFolderChangeMembersInheritancePolicyDetails.new_value.validator, + ), + ( + "previous_value", + SharedFolderChangeMembersInheritancePolicyDetails.previous_value.validator, + ), ] SharedFolderChangeMembersInheritancePolicyType.description.validator = bv.String() -SharedFolderChangeMembersInheritancePolicyType._all_field_names_ = set(['description']) -SharedFolderChangeMembersInheritancePolicyType._all_fields_ = [('description', SharedFolderChangeMembersInheritancePolicyType.description.validator)] - -SharedFolderChangeMembersManagementPolicyDetails.new_value.validator = sharing.AclUpdatePolicy_validator -SharedFolderChangeMembersManagementPolicyDetails.previous_value.validator = bv.Nullable(sharing.AclUpdatePolicy_validator) -SharedFolderChangeMembersManagementPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharedFolderChangeMembersInheritancePolicyType._all_field_names_ = set(["description"]) +SharedFolderChangeMembersInheritancePolicyType._all_fields_ = [ + ( + "description", + SharedFolderChangeMembersInheritancePolicyType.description.validator, + ) +] + +SharedFolderChangeMembersManagementPolicyDetails.new_value.validator = ( + sharing.AclUpdatePolicy_validator +) +SharedFolderChangeMembersManagementPolicyDetails.previous_value.validator = bv.Nullable( + sharing.AclUpdatePolicy_validator +) +SharedFolderChangeMembersManagementPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharedFolderChangeMembersManagementPolicyDetails._all_fields_ = [ - ('new_value', SharedFolderChangeMembersManagementPolicyDetails.new_value.validator), - ('previous_value', SharedFolderChangeMembersManagementPolicyDetails.previous_value.validator), + ("new_value", SharedFolderChangeMembersManagementPolicyDetails.new_value.validator), + ( + "previous_value", + SharedFolderChangeMembersManagementPolicyDetails.previous_value.validator, + ), ] SharedFolderChangeMembersManagementPolicyType.description.validator = bv.String() -SharedFolderChangeMembersManagementPolicyType._all_field_names_ = set(['description']) -SharedFolderChangeMembersManagementPolicyType._all_fields_ = [('description', SharedFolderChangeMembersManagementPolicyType.description.validator)] +SharedFolderChangeMembersManagementPolicyType._all_field_names_ = set(["description"]) +SharedFolderChangeMembersManagementPolicyType._all_fields_ = [ + ("description", SharedFolderChangeMembersManagementPolicyType.description.validator) +] SharedFolderChangeMembersPolicyDetails.new_value.validator = sharing.MemberPolicy_validator -SharedFolderChangeMembersPolicyDetails.previous_value.validator = bv.Nullable(sharing.MemberPolicy_validator) -SharedFolderChangeMembersPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharedFolderChangeMembersPolicyDetails.previous_value.validator = bv.Nullable( + sharing.MemberPolicy_validator +) +SharedFolderChangeMembersPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharedFolderChangeMembersPolicyDetails._all_fields_ = [ - ('new_value', SharedFolderChangeMembersPolicyDetails.new_value.validator), - ('previous_value', SharedFolderChangeMembersPolicyDetails.previous_value.validator), + ("new_value", SharedFolderChangeMembersPolicyDetails.new_value.validator), + ("previous_value", SharedFolderChangeMembersPolicyDetails.previous_value.validator), ] SharedFolderChangeMembersPolicyType.description.validator = bv.String() -SharedFolderChangeMembersPolicyType._all_field_names_ = set(['description']) -SharedFolderChangeMembersPolicyType._all_fields_ = [('description', SharedFolderChangeMembersPolicyType.description.validator)] +SharedFolderChangeMembersPolicyType._all_field_names_ = set(["description"]) +SharedFolderChangeMembersPolicyType._all_fields_ = [ + ("description", SharedFolderChangeMembersPolicyType.description.validator) +] SharedFolderCreateDetails.target_ns_id.validator = bv.Nullable(NamespaceId_validator) -SharedFolderCreateDetails._all_field_names_ = set(['target_ns_id']) -SharedFolderCreateDetails._all_fields_ = [('target_ns_id', SharedFolderCreateDetails.target_ns_id.validator)] +SharedFolderCreateDetails._all_field_names_ = set(["target_ns_id"]) +SharedFolderCreateDetails._all_fields_ = [ + ("target_ns_id", SharedFolderCreateDetails.target_ns_id.validator) +] SharedFolderCreateType.description.validator = bv.String() -SharedFolderCreateType._all_field_names_ = set(['description']) -SharedFolderCreateType._all_fields_ = [('description', SharedFolderCreateType.description.validator)] +SharedFolderCreateType._all_field_names_ = set(["description"]) +SharedFolderCreateType._all_fields_ = [ + ("description", SharedFolderCreateType.description.validator) +] SharedFolderDeclineInvitationDetails._all_field_names_ = set([]) SharedFolderDeclineInvitationDetails._all_fields_ = [] SharedFolderDeclineInvitationType.description.validator = bv.String() -SharedFolderDeclineInvitationType._all_field_names_ = set(['description']) -SharedFolderDeclineInvitationType._all_fields_ = [('description', SharedFolderDeclineInvitationType.description.validator)] +SharedFolderDeclineInvitationType._all_field_names_ = set(["description"]) +SharedFolderDeclineInvitationType._all_fields_ = [ + ("description", SharedFolderDeclineInvitationType.description.validator) +] SharedFolderMembersInheritancePolicy._dont_inherit_members_validator = bv.Void() SharedFolderMembersInheritancePolicy._inherit_members_validator = bv.Void() SharedFolderMembersInheritancePolicy._other_validator = bv.Void() SharedFolderMembersInheritancePolicy._tagmap = { - 'dont_inherit_members': SharedFolderMembersInheritancePolicy._dont_inherit_members_validator, - 'inherit_members': SharedFolderMembersInheritancePolicy._inherit_members_validator, - 'other': SharedFolderMembersInheritancePolicy._other_validator, + "dont_inherit_members": SharedFolderMembersInheritancePolicy._dont_inherit_members_validator, + "inherit_members": SharedFolderMembersInheritancePolicy._inherit_members_validator, + "other": SharedFolderMembersInheritancePolicy._other_validator, } -SharedFolderMembersInheritancePolicy.dont_inherit_members = SharedFolderMembersInheritancePolicy('dont_inherit_members') -SharedFolderMembersInheritancePolicy.inherit_members = SharedFolderMembersInheritancePolicy('inherit_members') -SharedFolderMembersInheritancePolicy.other = SharedFolderMembersInheritancePolicy('other') +SharedFolderMembersInheritancePolicy.dont_inherit_members = SharedFolderMembersInheritancePolicy( + "dont_inherit_members" +) +SharedFolderMembersInheritancePolicy.inherit_members = SharedFolderMembersInheritancePolicy( + "inherit_members" +) +SharedFolderMembersInheritancePolicy.other = SharedFolderMembersInheritancePolicy("other") SharedFolderMountDetails._all_field_names_ = set([]) SharedFolderMountDetails._all_fields_ = [] SharedFolderMountType.description.validator = bv.String() -SharedFolderMountType._all_field_names_ = set(['description']) -SharedFolderMountType._all_fields_ = [('description', SharedFolderMountType.description.validator)] +SharedFolderMountType._all_field_names_ = set(["description"]) +SharedFolderMountType._all_fields_ = [("description", SharedFolderMountType.description.validator)] SharedFolderNestDetails.previous_parent_ns_id.validator = bv.Nullable(NamespaceId_validator) SharedFolderNestDetails.new_parent_ns_id.validator = bv.Nullable(NamespaceId_validator) SharedFolderNestDetails.previous_ns_path.validator = bv.Nullable(FilePath_validator) SharedFolderNestDetails.new_ns_path.validator = bv.Nullable(FilePath_validator) -SharedFolderNestDetails._all_field_names_ = set([ - 'previous_parent_ns_id', - 'new_parent_ns_id', - 'previous_ns_path', - 'new_ns_path', -]) +SharedFolderNestDetails._all_field_names_ = set( + [ + "previous_parent_ns_id", + "new_parent_ns_id", + "previous_ns_path", + "new_ns_path", + ] +) SharedFolderNestDetails._all_fields_ = [ - ('previous_parent_ns_id', SharedFolderNestDetails.previous_parent_ns_id.validator), - ('new_parent_ns_id', SharedFolderNestDetails.new_parent_ns_id.validator), - ('previous_ns_path', SharedFolderNestDetails.previous_ns_path.validator), - ('new_ns_path', SharedFolderNestDetails.new_ns_path.validator), + ("previous_parent_ns_id", SharedFolderNestDetails.previous_parent_ns_id.validator), + ("new_parent_ns_id", SharedFolderNestDetails.new_parent_ns_id.validator), + ("previous_ns_path", SharedFolderNestDetails.previous_ns_path.validator), + ("new_ns_path", SharedFolderNestDetails.new_ns_path.validator), ] SharedFolderNestType.description.validator = bv.String() -SharedFolderNestType._all_field_names_ = set(['description']) -SharedFolderNestType._all_fields_ = [('description', SharedFolderNestType.description.validator)] +SharedFolderNestType._all_field_names_ = set(["description"]) +SharedFolderNestType._all_fields_ = [("description", SharedFolderNestType.description.validator)] -SharedFolderTransferOwnershipDetails.previous_owner_email.validator = bv.Nullable(EmailAddress_validator) +SharedFolderTransferOwnershipDetails.previous_owner_email.validator = bv.Nullable( + EmailAddress_validator +) SharedFolderTransferOwnershipDetails.new_owner_email.validator = EmailAddress_validator -SharedFolderTransferOwnershipDetails._all_field_names_ = set([ - 'previous_owner_email', - 'new_owner_email', -]) +SharedFolderTransferOwnershipDetails._all_field_names_ = set( + [ + "previous_owner_email", + "new_owner_email", + ] +) SharedFolderTransferOwnershipDetails._all_fields_ = [ - ('previous_owner_email', SharedFolderTransferOwnershipDetails.previous_owner_email.validator), - ('new_owner_email', SharedFolderTransferOwnershipDetails.new_owner_email.validator), + ( + "previous_owner_email", + SharedFolderTransferOwnershipDetails.previous_owner_email.validator, + ), + ("new_owner_email", SharedFolderTransferOwnershipDetails.new_owner_email.validator), ] SharedFolderTransferOwnershipType.description.validator = bv.String() -SharedFolderTransferOwnershipType._all_field_names_ = set(['description']) -SharedFolderTransferOwnershipType._all_fields_ = [('description', SharedFolderTransferOwnershipType.description.validator)] +SharedFolderTransferOwnershipType._all_field_names_ = set(["description"]) +SharedFolderTransferOwnershipType._all_fields_ = [ + ("description", SharedFolderTransferOwnershipType.description.validator) +] SharedFolderUnmountDetails._all_field_names_ = set([]) SharedFolderUnmountDetails._all_fields_ = [] SharedFolderUnmountType.description.validator = bv.String() -SharedFolderUnmountType._all_field_names_ = set(['description']) -SharedFolderUnmountType._all_fields_ = [('description', SharedFolderUnmountType.description.validator)] +SharedFolderUnmountType._all_field_names_ = set(["description"]) +SharedFolderUnmountType._all_fields_ = [ + ("description", SharedFolderUnmountType.description.validator) +] SharedFoldersCreateReportDetails._all_field_names_ = set([]) SharedFoldersCreateReportDetails._all_fields_ = [] -SharedFoldersCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -SharedFoldersCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) -SharedFoldersCreateReportFailedDetails._all_fields_ = [('failure_reason', SharedFoldersCreateReportFailedDetails.failure_reason.validator)] +SharedFoldersCreateReportFailedDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +SharedFoldersCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) +SharedFoldersCreateReportFailedDetails._all_fields_ = [ + ("failure_reason", SharedFoldersCreateReportFailedDetails.failure_reason.validator) +] SharedFoldersCreateReportFailedType.description.validator = bv.String() -SharedFoldersCreateReportFailedType._all_field_names_ = set(['description']) -SharedFoldersCreateReportFailedType._all_fields_ = [('description', SharedFoldersCreateReportFailedType.description.validator)] +SharedFoldersCreateReportFailedType._all_field_names_ = set(["description"]) +SharedFoldersCreateReportFailedType._all_fields_ = [ + ("description", SharedFoldersCreateReportFailedType.description.validator) +] SharedFoldersCreateReportType.description.validator = bv.String() -SharedFoldersCreateReportType._all_field_names_ = set(['description']) -SharedFoldersCreateReportType._all_fields_ = [('description', SharedFoldersCreateReportType.description.validator)] +SharedFoldersCreateReportType._all_field_names_ = set(["description"]) +SharedFoldersCreateReportType._all_fields_ = [ + ("description", SharedFoldersCreateReportType.description.validator) +] SharedLinkAccessLevel._none_validator = bv.Void() SharedLinkAccessLevel._reader_validator = bv.Void() SharedLinkAccessLevel._writer_validator = bv.Void() SharedLinkAccessLevel._other_validator = bv.Void() SharedLinkAccessLevel._tagmap = { - 'none': SharedLinkAccessLevel._none_validator, - 'reader': SharedLinkAccessLevel._reader_validator, - 'writer': SharedLinkAccessLevel._writer_validator, - 'other': SharedLinkAccessLevel._other_validator, + "none": SharedLinkAccessLevel._none_validator, + "reader": SharedLinkAccessLevel._reader_validator, + "writer": SharedLinkAccessLevel._writer_validator, + "other": SharedLinkAccessLevel._other_validator, } -SharedLinkAccessLevel.none = SharedLinkAccessLevel('none') -SharedLinkAccessLevel.reader = SharedLinkAccessLevel('reader') -SharedLinkAccessLevel.writer = SharedLinkAccessLevel('writer') -SharedLinkAccessLevel.other = SharedLinkAccessLevel('other') +SharedLinkAccessLevel.none = SharedLinkAccessLevel("none") +SharedLinkAccessLevel.reader = SharedLinkAccessLevel("reader") +SharedLinkAccessLevel.writer = SharedLinkAccessLevel("writer") +SharedLinkAccessLevel.other = SharedLinkAccessLevel("other") SharedLinkAddExpiryDetails.new_value.validator = common.DropboxTimestamp_validator SharedLinkAddExpiryDetails.is_consolidation_action.validator = bv.Nullable(bv.Boolean()) -SharedLinkAddExpiryDetails._all_field_names_ = set([ - 'new_value', - 'is_consolidation_action', -]) +SharedLinkAddExpiryDetails._all_field_names_ = set( + [ + "new_value", + "is_consolidation_action", + ] +) SharedLinkAddExpiryDetails._all_fields_ = [ - ('new_value', SharedLinkAddExpiryDetails.new_value.validator), - ('is_consolidation_action', SharedLinkAddExpiryDetails.is_consolidation_action.validator), + ("new_value", SharedLinkAddExpiryDetails.new_value.validator), + ( + "is_consolidation_action", + SharedLinkAddExpiryDetails.is_consolidation_action.validator, + ), ] SharedLinkAddExpiryType.description.validator = bv.String() -SharedLinkAddExpiryType._all_field_names_ = set(['description']) -SharedLinkAddExpiryType._all_fields_ = [('description', SharedLinkAddExpiryType.description.validator)] +SharedLinkAddExpiryType._all_field_names_ = set(["description"]) +SharedLinkAddExpiryType._all_fields_ = [ + ("description", SharedLinkAddExpiryType.description.validator) +] SharedLinkChangeExpiryDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedLinkChangeExpiryDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) +SharedLinkChangeExpiryDetails.previous_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) SharedLinkChangeExpiryDetails.is_consolidation_action.validator = bv.Nullable(bv.Boolean()) -SharedLinkChangeExpiryDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', - 'is_consolidation_action', -]) +SharedLinkChangeExpiryDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + "is_consolidation_action", + ] +) SharedLinkChangeExpiryDetails._all_fields_ = [ - ('new_value', SharedLinkChangeExpiryDetails.new_value.validator), - ('previous_value', SharedLinkChangeExpiryDetails.previous_value.validator), - ('is_consolidation_action', SharedLinkChangeExpiryDetails.is_consolidation_action.validator), + ("new_value", SharedLinkChangeExpiryDetails.new_value.validator), + ("previous_value", SharedLinkChangeExpiryDetails.previous_value.validator), + ( + "is_consolidation_action", + SharedLinkChangeExpiryDetails.is_consolidation_action.validator, + ), ] SharedLinkChangeExpiryType.description.validator = bv.String() -SharedLinkChangeExpiryType._all_field_names_ = set(['description']) -SharedLinkChangeExpiryType._all_fields_ = [('description', SharedLinkChangeExpiryType.description.validator)] +SharedLinkChangeExpiryType._all_field_names_ = set(["description"]) +SharedLinkChangeExpiryType._all_fields_ = [ + ("description", SharedLinkChangeExpiryType.description.validator) +] SharedLinkChangeVisibilityDetails.new_value.validator = SharedLinkVisibility_validator -SharedLinkChangeVisibilityDetails.previous_value.validator = bv.Nullable(SharedLinkVisibility_validator) +SharedLinkChangeVisibilityDetails.previous_value.validator = bv.Nullable( + SharedLinkVisibility_validator +) SharedLinkChangeVisibilityDetails.is_consolidation_action.validator = bv.Nullable(bv.Boolean()) -SharedLinkChangeVisibilityDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', - 'is_consolidation_action', -]) +SharedLinkChangeVisibilityDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + "is_consolidation_action", + ] +) SharedLinkChangeVisibilityDetails._all_fields_ = [ - ('new_value', SharedLinkChangeVisibilityDetails.new_value.validator), - ('previous_value', SharedLinkChangeVisibilityDetails.previous_value.validator), - ('is_consolidation_action', SharedLinkChangeVisibilityDetails.is_consolidation_action.validator), + ("new_value", SharedLinkChangeVisibilityDetails.new_value.validator), + ("previous_value", SharedLinkChangeVisibilityDetails.previous_value.validator), + ( + "is_consolidation_action", + SharedLinkChangeVisibilityDetails.is_consolidation_action.validator, + ), ] SharedLinkChangeVisibilityType.description.validator = bv.String() -SharedLinkChangeVisibilityType._all_field_names_ = set(['description']) -SharedLinkChangeVisibilityType._all_fields_ = [('description', SharedLinkChangeVisibilityType.description.validator)] +SharedLinkChangeVisibilityType._all_field_names_ = set(["description"]) +SharedLinkChangeVisibilityType._all_fields_ = [ + ("description", SharedLinkChangeVisibilityType.description.validator) +] SharedLinkCopyDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkCopyDetails._all_field_names_ = set(['shared_link_owner']) -SharedLinkCopyDetails._all_fields_ = [('shared_link_owner', SharedLinkCopyDetails.shared_link_owner.validator)] +SharedLinkCopyDetails._all_field_names_ = set(["shared_link_owner"]) +SharedLinkCopyDetails._all_fields_ = [ + ("shared_link_owner", SharedLinkCopyDetails.shared_link_owner.validator) +] SharedLinkCopyType.description.validator = bv.String() -SharedLinkCopyType._all_field_names_ = set(['description']) -SharedLinkCopyType._all_fields_ = [('description', SharedLinkCopyType.description.validator)] +SharedLinkCopyType._all_field_names_ = set(["description"]) +SharedLinkCopyType._all_fields_ = [("description", SharedLinkCopyType.description.validator)] -SharedLinkCreateDetails.shared_link_access_level.validator = bv.Nullable(SharedLinkAccessLevel_validator) -SharedLinkCreateDetails._all_field_names_ = set(['shared_link_access_level']) -SharedLinkCreateDetails._all_fields_ = [('shared_link_access_level', SharedLinkCreateDetails.shared_link_access_level.validator)] +SharedLinkCreateDetails.shared_link_access_level.validator = bv.Nullable( + SharedLinkAccessLevel_validator +) +SharedLinkCreateDetails._all_field_names_ = set(["shared_link_access_level"]) +SharedLinkCreateDetails._all_fields_ = [ + ( + "shared_link_access_level", + SharedLinkCreateDetails.shared_link_access_level.validator, + ) +] SharedLinkCreateType.description.validator = bv.String() -SharedLinkCreateType._all_field_names_ = set(['description']) -SharedLinkCreateType._all_fields_ = [('description', SharedLinkCreateType.description.validator)] +SharedLinkCreateType._all_field_names_ = set(["description"]) +SharedLinkCreateType._all_fields_ = [("description", SharedLinkCreateType.description.validator)] SharedLinkDefaultPermissionsPolicy._default_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._edit_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._view_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._other_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._tagmap = { - 'default': SharedLinkDefaultPermissionsPolicy._default_validator, - 'edit': SharedLinkDefaultPermissionsPolicy._edit_validator, - 'view': SharedLinkDefaultPermissionsPolicy._view_validator, - 'other': SharedLinkDefaultPermissionsPolicy._other_validator, + "default": SharedLinkDefaultPermissionsPolicy._default_validator, + "edit": SharedLinkDefaultPermissionsPolicy._edit_validator, + "view": SharedLinkDefaultPermissionsPolicy._view_validator, + "other": SharedLinkDefaultPermissionsPolicy._other_validator, } -SharedLinkDefaultPermissionsPolicy.default = SharedLinkDefaultPermissionsPolicy('default') -SharedLinkDefaultPermissionsPolicy.edit = SharedLinkDefaultPermissionsPolicy('edit') -SharedLinkDefaultPermissionsPolicy.view = SharedLinkDefaultPermissionsPolicy('view') -SharedLinkDefaultPermissionsPolicy.other = SharedLinkDefaultPermissionsPolicy('other') - -SharedLinkDefaultPermissionsPolicyChangedDetails.new_value.validator = SharedLinkDefaultPermissionsPolicy_validator -SharedLinkDefaultPermissionsPolicyChangedDetails.previous_value.validator = SharedLinkDefaultPermissionsPolicy_validator -SharedLinkDefaultPermissionsPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharedLinkDefaultPermissionsPolicy.default = SharedLinkDefaultPermissionsPolicy("default") +SharedLinkDefaultPermissionsPolicy.edit = SharedLinkDefaultPermissionsPolicy("edit") +SharedLinkDefaultPermissionsPolicy.view = SharedLinkDefaultPermissionsPolicy("view") +SharedLinkDefaultPermissionsPolicy.other = SharedLinkDefaultPermissionsPolicy("other") + +SharedLinkDefaultPermissionsPolicyChangedDetails.new_value.validator = ( + SharedLinkDefaultPermissionsPolicy_validator +) +SharedLinkDefaultPermissionsPolicyChangedDetails.previous_value.validator = ( + SharedLinkDefaultPermissionsPolicy_validator +) +SharedLinkDefaultPermissionsPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharedLinkDefaultPermissionsPolicyChangedDetails._all_fields_ = [ - ('new_value', SharedLinkDefaultPermissionsPolicyChangedDetails.new_value.validator), - ('previous_value', SharedLinkDefaultPermissionsPolicyChangedDetails.previous_value.validator), + ("new_value", SharedLinkDefaultPermissionsPolicyChangedDetails.new_value.validator), + ( + "previous_value", + SharedLinkDefaultPermissionsPolicyChangedDetails.previous_value.validator, + ), ] SharedLinkDefaultPermissionsPolicyChangedType.description.validator = bv.String() -SharedLinkDefaultPermissionsPolicyChangedType._all_field_names_ = set(['description']) -SharedLinkDefaultPermissionsPolicyChangedType._all_fields_ = [('description', SharedLinkDefaultPermissionsPolicyChangedType.description.validator)] +SharedLinkDefaultPermissionsPolicyChangedType._all_field_names_ = set(["description"]) +SharedLinkDefaultPermissionsPolicyChangedType._all_fields_ = [ + ("description", SharedLinkDefaultPermissionsPolicyChangedType.description.validator) +] SharedLinkDisableDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkDisableDetails._all_field_names_ = set(['shared_link_owner']) -SharedLinkDisableDetails._all_fields_ = [('shared_link_owner', SharedLinkDisableDetails.shared_link_owner.validator)] +SharedLinkDisableDetails._all_field_names_ = set(["shared_link_owner"]) +SharedLinkDisableDetails._all_fields_ = [ + ("shared_link_owner", SharedLinkDisableDetails.shared_link_owner.validator) +] SharedLinkDisableType.description.validator = bv.String() -SharedLinkDisableType._all_field_names_ = set(['description']) -SharedLinkDisableType._all_fields_ = [('description', SharedLinkDisableType.description.validator)] +SharedLinkDisableType._all_field_names_ = set(["description"]) +SharedLinkDisableType._all_fields_ = [("description", SharedLinkDisableType.description.validator)] SharedLinkDownloadDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkDownloadDetails._all_field_names_ = set(['shared_link_owner']) -SharedLinkDownloadDetails._all_fields_ = [('shared_link_owner', SharedLinkDownloadDetails.shared_link_owner.validator)] +SharedLinkDownloadDetails._all_field_names_ = set(["shared_link_owner"]) +SharedLinkDownloadDetails._all_fields_ = [ + ("shared_link_owner", SharedLinkDownloadDetails.shared_link_owner.validator) +] SharedLinkDownloadType.description.validator = bv.String() -SharedLinkDownloadType._all_field_names_ = set(['description']) -SharedLinkDownloadType._all_fields_ = [('description', SharedLinkDownloadType.description.validator)] +SharedLinkDownloadType._all_field_names_ = set(["description"]) +SharedLinkDownloadType._all_fields_ = [ + ("description", SharedLinkDownloadType.description.validator) +] -SharedLinkRemoveExpiryDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedLinkRemoveExpiryDetails._all_field_names_ = set(['previous_value']) -SharedLinkRemoveExpiryDetails._all_fields_ = [('previous_value', SharedLinkRemoveExpiryDetails.previous_value.validator)] +SharedLinkRemoveExpiryDetails.previous_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) +SharedLinkRemoveExpiryDetails._all_field_names_ = set(["previous_value"]) +SharedLinkRemoveExpiryDetails._all_fields_ = [ + ("previous_value", SharedLinkRemoveExpiryDetails.previous_value.validator) +] SharedLinkRemoveExpiryType.description.validator = bv.String() -SharedLinkRemoveExpiryType._all_field_names_ = set(['description']) -SharedLinkRemoveExpiryType._all_fields_ = [('description', SharedLinkRemoveExpiryType.description.validator)] +SharedLinkRemoveExpiryType._all_field_names_ = set(["description"]) +SharedLinkRemoveExpiryType._all_fields_ = [ + ("description", SharedLinkRemoveExpiryType.description.validator) +] SharedLinkRemoveVisitorDetails._all_field_names_ = set([]) SharedLinkRemoveVisitorDetails._all_fields_ = [] SharedLinkRemoveVisitorType.description.validator = bv.String() -SharedLinkRemoveVisitorType._all_field_names_ = set(['description']) -SharedLinkRemoveVisitorType._all_fields_ = [('description', SharedLinkRemoveVisitorType.description.validator)] +SharedLinkRemoveVisitorType._all_field_names_ = set(["description"]) +SharedLinkRemoveVisitorType._all_fields_ = [ + ("description", SharedLinkRemoveVisitorType.description.validator) +] -SharedLinkSettingsAddExpirationDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedLinkSettingsAddExpirationDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) SharedLinkSettingsAddExpirationDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsAddExpirationDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedLinkSettingsAddExpirationDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'shared_content_link', - 'new_value', -]) +SharedLinkSettingsAddExpirationDetails.new_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) +SharedLinkSettingsAddExpirationDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "shared_content_link", + "new_value", + ] +) SharedLinkSettingsAddExpirationDetails._all_fields_ = [ - ('shared_content_access_level', SharedLinkSettingsAddExpirationDetails.shared_content_access_level.validator), - ('shared_content_link', SharedLinkSettingsAddExpirationDetails.shared_content_link.validator), - ('new_value', SharedLinkSettingsAddExpirationDetails.new_value.validator), + ( + "shared_content_access_level", + SharedLinkSettingsAddExpirationDetails.shared_content_access_level.validator, + ), + ( + "shared_content_link", + SharedLinkSettingsAddExpirationDetails.shared_content_link.validator, + ), + ("new_value", SharedLinkSettingsAddExpirationDetails.new_value.validator), ] SharedLinkSettingsAddExpirationType.description.validator = bv.String() -SharedLinkSettingsAddExpirationType._all_field_names_ = set(['description']) -SharedLinkSettingsAddExpirationType._all_fields_ = [('description', SharedLinkSettingsAddExpirationType.description.validator)] +SharedLinkSettingsAddExpirationType._all_field_names_ = set(["description"]) +SharedLinkSettingsAddExpirationType._all_fields_ = [ + ("description", SharedLinkSettingsAddExpirationType.description.validator) +] -SharedLinkSettingsAddPasswordDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedLinkSettingsAddPasswordDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) SharedLinkSettingsAddPasswordDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsAddPasswordDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'shared_content_link', -]) +SharedLinkSettingsAddPasswordDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "shared_content_link", + ] +) SharedLinkSettingsAddPasswordDetails._all_fields_ = [ - ('shared_content_access_level', SharedLinkSettingsAddPasswordDetails.shared_content_access_level.validator), - ('shared_content_link', SharedLinkSettingsAddPasswordDetails.shared_content_link.validator), + ( + "shared_content_access_level", + SharedLinkSettingsAddPasswordDetails.shared_content_access_level.validator, + ), + ( + "shared_content_link", + SharedLinkSettingsAddPasswordDetails.shared_content_link.validator, + ), ] SharedLinkSettingsAddPasswordType.description.validator = bv.String() -SharedLinkSettingsAddPasswordType._all_field_names_ = set(['description']) -SharedLinkSettingsAddPasswordType._all_fields_ = [('description', SharedLinkSettingsAddPasswordType.description.validator)] - -SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_access_level.validator = sharing.AccessLevel_validator -SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsAllowDownloadDisabledDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'shared_content_link', -]) +SharedLinkSettingsAddPasswordType._all_field_names_ = set(["description"]) +SharedLinkSettingsAddPasswordType._all_fields_ = [ + ("description", SharedLinkSettingsAddPasswordType.description.validator) +] + +SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) +SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_link.validator = bv.Nullable( + bv.String() +) +SharedLinkSettingsAllowDownloadDisabledDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "shared_content_link", + ] +) SharedLinkSettingsAllowDownloadDisabledDetails._all_fields_ = [ - ('shared_content_access_level', SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_access_level.validator), - ('shared_content_link', SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_link.validator), + ( + "shared_content_access_level", + SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_access_level.validator, + ), + ( + "shared_content_link", + SharedLinkSettingsAllowDownloadDisabledDetails.shared_content_link.validator, + ), ] SharedLinkSettingsAllowDownloadDisabledType.description.validator = bv.String() -SharedLinkSettingsAllowDownloadDisabledType._all_field_names_ = set(['description']) -SharedLinkSettingsAllowDownloadDisabledType._all_fields_ = [('description', SharedLinkSettingsAllowDownloadDisabledType.description.validator)] - -SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_access_level.validator = sharing.AccessLevel_validator -SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsAllowDownloadEnabledDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'shared_content_link', -]) +SharedLinkSettingsAllowDownloadDisabledType._all_field_names_ = set(["description"]) +SharedLinkSettingsAllowDownloadDisabledType._all_fields_ = [ + ("description", SharedLinkSettingsAllowDownloadDisabledType.description.validator) +] + +SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) +SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_link.validator = bv.Nullable( + bv.String() +) +SharedLinkSettingsAllowDownloadEnabledDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "shared_content_link", + ] +) SharedLinkSettingsAllowDownloadEnabledDetails._all_fields_ = [ - ('shared_content_access_level', SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_access_level.validator), - ('shared_content_link', SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_link.validator), + ( + "shared_content_access_level", + SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_access_level.validator, + ), + ( + "shared_content_link", + SharedLinkSettingsAllowDownloadEnabledDetails.shared_content_link.validator, + ), ] SharedLinkSettingsAllowDownloadEnabledType.description.validator = bv.String() -SharedLinkSettingsAllowDownloadEnabledType._all_field_names_ = set(['description']) -SharedLinkSettingsAllowDownloadEnabledType._all_fields_ = [('description', SharedLinkSettingsAllowDownloadEnabledType.description.validator)] +SharedLinkSettingsAllowDownloadEnabledType._all_field_names_ = set(["description"]) +SharedLinkSettingsAllowDownloadEnabledType._all_fields_ = [ + ("description", SharedLinkSettingsAllowDownloadEnabledType.description.validator) +] -SharedLinkSettingsChangeAudienceDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedLinkSettingsChangeAudienceDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) SharedLinkSettingsChangeAudienceDetails.shared_content_link.validator = bv.Nullable(bv.String()) SharedLinkSettingsChangeAudienceDetails.new_value.validator = sharing.LinkAudience_validator -SharedLinkSettingsChangeAudienceDetails.previous_value.validator = bv.Nullable(sharing.LinkAudience_validator) -SharedLinkSettingsChangeAudienceDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'shared_content_link', - 'new_value', - 'previous_value', -]) +SharedLinkSettingsChangeAudienceDetails.previous_value.validator = bv.Nullable( + sharing.LinkAudience_validator +) +SharedLinkSettingsChangeAudienceDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "shared_content_link", + "new_value", + "previous_value", + ] +) SharedLinkSettingsChangeAudienceDetails._all_fields_ = [ - ('shared_content_access_level', SharedLinkSettingsChangeAudienceDetails.shared_content_access_level.validator), - ('shared_content_link', SharedLinkSettingsChangeAudienceDetails.shared_content_link.validator), - ('new_value', SharedLinkSettingsChangeAudienceDetails.new_value.validator), - ('previous_value', SharedLinkSettingsChangeAudienceDetails.previous_value.validator), + ( + "shared_content_access_level", + SharedLinkSettingsChangeAudienceDetails.shared_content_access_level.validator, + ), + ( + "shared_content_link", + SharedLinkSettingsChangeAudienceDetails.shared_content_link.validator, + ), + ("new_value", SharedLinkSettingsChangeAudienceDetails.new_value.validator), + ( + "previous_value", + SharedLinkSettingsChangeAudienceDetails.previous_value.validator, + ), ] SharedLinkSettingsChangeAudienceType.description.validator = bv.String() -SharedLinkSettingsChangeAudienceType._all_field_names_ = set(['description']) -SharedLinkSettingsChangeAudienceType._all_fields_ = [('description', SharedLinkSettingsChangeAudienceType.description.validator)] +SharedLinkSettingsChangeAudienceType._all_field_names_ = set(["description"]) +SharedLinkSettingsChangeAudienceType._all_fields_ = [ + ("description", SharedLinkSettingsChangeAudienceType.description.validator) +] -SharedLinkSettingsChangeExpirationDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedLinkSettingsChangeExpirationDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) SharedLinkSettingsChangeExpirationDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsChangeExpirationDetails.new_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedLinkSettingsChangeExpirationDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedLinkSettingsChangeExpirationDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'shared_content_link', - 'new_value', - 'previous_value', -]) +SharedLinkSettingsChangeExpirationDetails.new_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) +SharedLinkSettingsChangeExpirationDetails.previous_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) +SharedLinkSettingsChangeExpirationDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "shared_content_link", + "new_value", + "previous_value", + ] +) SharedLinkSettingsChangeExpirationDetails._all_fields_ = [ - ('shared_content_access_level', SharedLinkSettingsChangeExpirationDetails.shared_content_access_level.validator), - ('shared_content_link', SharedLinkSettingsChangeExpirationDetails.shared_content_link.validator), - ('new_value', SharedLinkSettingsChangeExpirationDetails.new_value.validator), - ('previous_value', SharedLinkSettingsChangeExpirationDetails.previous_value.validator), + ( + "shared_content_access_level", + SharedLinkSettingsChangeExpirationDetails.shared_content_access_level.validator, + ), + ( + "shared_content_link", + SharedLinkSettingsChangeExpirationDetails.shared_content_link.validator, + ), + ("new_value", SharedLinkSettingsChangeExpirationDetails.new_value.validator), + ( + "previous_value", + SharedLinkSettingsChangeExpirationDetails.previous_value.validator, + ), ] SharedLinkSettingsChangeExpirationType.description.validator = bv.String() -SharedLinkSettingsChangeExpirationType._all_field_names_ = set(['description']) -SharedLinkSettingsChangeExpirationType._all_fields_ = [('description', SharedLinkSettingsChangeExpirationType.description.validator)] +SharedLinkSettingsChangeExpirationType._all_field_names_ = set(["description"]) +SharedLinkSettingsChangeExpirationType._all_fields_ = [ + ("description", SharedLinkSettingsChangeExpirationType.description.validator) +] -SharedLinkSettingsChangePasswordDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedLinkSettingsChangePasswordDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) SharedLinkSettingsChangePasswordDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsChangePasswordDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'shared_content_link', -]) +SharedLinkSettingsChangePasswordDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "shared_content_link", + ] +) SharedLinkSettingsChangePasswordDetails._all_fields_ = [ - ('shared_content_access_level', SharedLinkSettingsChangePasswordDetails.shared_content_access_level.validator), - ('shared_content_link', SharedLinkSettingsChangePasswordDetails.shared_content_link.validator), + ( + "shared_content_access_level", + SharedLinkSettingsChangePasswordDetails.shared_content_access_level.validator, + ), + ( + "shared_content_link", + SharedLinkSettingsChangePasswordDetails.shared_content_link.validator, + ), ] SharedLinkSettingsChangePasswordType.description.validator = bv.String() -SharedLinkSettingsChangePasswordType._all_field_names_ = set(['description']) -SharedLinkSettingsChangePasswordType._all_fields_ = [('description', SharedLinkSettingsChangePasswordType.description.validator)] +SharedLinkSettingsChangePasswordType._all_field_names_ = set(["description"]) +SharedLinkSettingsChangePasswordType._all_fields_ = [ + ("description", SharedLinkSettingsChangePasswordType.description.validator) +] -SharedLinkSettingsRemoveExpirationDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedLinkSettingsRemoveExpirationDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) SharedLinkSettingsRemoveExpirationDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsRemoveExpirationDetails.previous_value.validator = bv.Nullable(common.DropboxTimestamp_validator) -SharedLinkSettingsRemoveExpirationDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'shared_content_link', - 'previous_value', -]) +SharedLinkSettingsRemoveExpirationDetails.previous_value.validator = bv.Nullable( + common.DropboxTimestamp_validator +) +SharedLinkSettingsRemoveExpirationDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "shared_content_link", + "previous_value", + ] +) SharedLinkSettingsRemoveExpirationDetails._all_fields_ = [ - ('shared_content_access_level', SharedLinkSettingsRemoveExpirationDetails.shared_content_access_level.validator), - ('shared_content_link', SharedLinkSettingsRemoveExpirationDetails.shared_content_link.validator), - ('previous_value', SharedLinkSettingsRemoveExpirationDetails.previous_value.validator), + ( + "shared_content_access_level", + SharedLinkSettingsRemoveExpirationDetails.shared_content_access_level.validator, + ), + ( + "shared_content_link", + SharedLinkSettingsRemoveExpirationDetails.shared_content_link.validator, + ), + ( + "previous_value", + SharedLinkSettingsRemoveExpirationDetails.previous_value.validator, + ), ] SharedLinkSettingsRemoveExpirationType.description.validator = bv.String() -SharedLinkSettingsRemoveExpirationType._all_field_names_ = set(['description']) -SharedLinkSettingsRemoveExpirationType._all_fields_ = [('description', SharedLinkSettingsRemoveExpirationType.description.validator)] +SharedLinkSettingsRemoveExpirationType._all_field_names_ = set(["description"]) +SharedLinkSettingsRemoveExpirationType._all_fields_ = [ + ("description", SharedLinkSettingsRemoveExpirationType.description.validator) +] -SharedLinkSettingsRemovePasswordDetails.shared_content_access_level.validator = sharing.AccessLevel_validator +SharedLinkSettingsRemovePasswordDetails.shared_content_access_level.validator = ( + sharing.AccessLevel_validator +) SharedLinkSettingsRemovePasswordDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsRemovePasswordDetails._all_field_names_ = set([ - 'shared_content_access_level', - 'shared_content_link', -]) +SharedLinkSettingsRemovePasswordDetails._all_field_names_ = set( + [ + "shared_content_access_level", + "shared_content_link", + ] +) SharedLinkSettingsRemovePasswordDetails._all_fields_ = [ - ('shared_content_access_level', SharedLinkSettingsRemovePasswordDetails.shared_content_access_level.validator), - ('shared_content_link', SharedLinkSettingsRemovePasswordDetails.shared_content_link.validator), + ( + "shared_content_access_level", + SharedLinkSettingsRemovePasswordDetails.shared_content_access_level.validator, + ), + ( + "shared_content_link", + SharedLinkSettingsRemovePasswordDetails.shared_content_link.validator, + ), ] SharedLinkSettingsRemovePasswordType.description.validator = bv.String() -SharedLinkSettingsRemovePasswordType._all_field_names_ = set(['description']) -SharedLinkSettingsRemovePasswordType._all_fields_ = [('description', SharedLinkSettingsRemovePasswordType.description.validator)] +SharedLinkSettingsRemovePasswordType._all_field_names_ = set(["description"]) +SharedLinkSettingsRemovePasswordType._all_fields_ = [ + ("description", SharedLinkSettingsRemovePasswordType.description.validator) +] SharedLinkShareDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkShareDetails.external_users.validator = bv.Nullable(bv.List(ExternalUserLogInfo_validator)) -SharedLinkShareDetails._all_field_names_ = set([ - 'shared_link_owner', - 'external_users', -]) +SharedLinkShareDetails.external_users.validator = bv.Nullable( + bv.List(ExternalUserLogInfo_validator) +) +SharedLinkShareDetails._all_field_names_ = set( + [ + "shared_link_owner", + "external_users", + ] +) SharedLinkShareDetails._all_fields_ = [ - ('shared_link_owner', SharedLinkShareDetails.shared_link_owner.validator), - ('external_users', SharedLinkShareDetails.external_users.validator), + ("shared_link_owner", SharedLinkShareDetails.shared_link_owner.validator), + ("external_users", SharedLinkShareDetails.external_users.validator), ] SharedLinkShareType.description.validator = bv.String() -SharedLinkShareType._all_field_names_ = set(['description']) -SharedLinkShareType._all_fields_ = [('description', SharedLinkShareType.description.validator)] +SharedLinkShareType._all_field_names_ = set(["description"]) +SharedLinkShareType._all_fields_ = [("description", SharedLinkShareType.description.validator)] SharedLinkViewDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkViewDetails._all_field_names_ = set(['shared_link_owner']) -SharedLinkViewDetails._all_fields_ = [('shared_link_owner', SharedLinkViewDetails.shared_link_owner.validator)] +SharedLinkViewDetails._all_field_names_ = set(["shared_link_owner"]) +SharedLinkViewDetails._all_fields_ = [ + ("shared_link_owner", SharedLinkViewDetails.shared_link_owner.validator) +] SharedLinkViewType.description.validator = bv.String() -SharedLinkViewType._all_field_names_ = set(['description']) -SharedLinkViewType._all_fields_ = [('description', SharedLinkViewType.description.validator)] +SharedLinkViewType._all_field_names_ = set(["description"]) +SharedLinkViewType._all_fields_ = [("description", SharedLinkViewType.description.validator)] SharedLinkVisibility._no_one_validator = bv.Void() SharedLinkVisibility._password_validator = bv.Void() @@ -106699,128 +114388,183 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkVisibility._team_only_validator = bv.Void() SharedLinkVisibility._other_validator = bv.Void() SharedLinkVisibility._tagmap = { - 'no_one': SharedLinkVisibility._no_one_validator, - 'password': SharedLinkVisibility._password_validator, - 'public': SharedLinkVisibility._public_validator, - 'team_only': SharedLinkVisibility._team_only_validator, - 'other': SharedLinkVisibility._other_validator, + "no_one": SharedLinkVisibility._no_one_validator, + "password": SharedLinkVisibility._password_validator, + "public": SharedLinkVisibility._public_validator, + "team_only": SharedLinkVisibility._team_only_validator, + "other": SharedLinkVisibility._other_validator, } -SharedLinkVisibility.no_one = SharedLinkVisibility('no_one') -SharedLinkVisibility.password = SharedLinkVisibility('password') -SharedLinkVisibility.public = SharedLinkVisibility('public') -SharedLinkVisibility.team_only = SharedLinkVisibility('team_only') -SharedLinkVisibility.other = SharedLinkVisibility('other') +SharedLinkVisibility.no_one = SharedLinkVisibility("no_one") +SharedLinkVisibility.password = SharedLinkVisibility("password") +SharedLinkVisibility.public = SharedLinkVisibility("public") +SharedLinkVisibility.team_only = SharedLinkVisibility("team_only") +SharedLinkVisibility.other = SharedLinkVisibility("other") SharedNoteOpenedDetails._all_field_names_ = set([]) SharedNoteOpenedDetails._all_fields_ = [] SharedNoteOpenedType.description.validator = bv.String() -SharedNoteOpenedType._all_field_names_ = set(['description']) -SharedNoteOpenedType._all_fields_ = [('description', SharedNoteOpenedType.description.validator)] +SharedNoteOpenedType._all_field_names_ = set(["description"]) +SharedNoteOpenedType._all_fields_ = [("description", SharedNoteOpenedType.description.validator)] SharingChangeFolderJoinPolicyDetails.new_value.validator = SharingFolderJoinPolicy_validator -SharingChangeFolderJoinPolicyDetails.previous_value.validator = bv.Nullable(SharingFolderJoinPolicy_validator) -SharingChangeFolderJoinPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharingChangeFolderJoinPolicyDetails.previous_value.validator = bv.Nullable( + SharingFolderJoinPolicy_validator +) +SharingChangeFolderJoinPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharingChangeFolderJoinPolicyDetails._all_fields_ = [ - ('new_value', SharingChangeFolderJoinPolicyDetails.new_value.validator), - ('previous_value', SharingChangeFolderJoinPolicyDetails.previous_value.validator), + ("new_value", SharingChangeFolderJoinPolicyDetails.new_value.validator), + ("previous_value", SharingChangeFolderJoinPolicyDetails.previous_value.validator), ] SharingChangeFolderJoinPolicyType.description.validator = bv.String() -SharingChangeFolderJoinPolicyType._all_field_names_ = set(['description']) -SharingChangeFolderJoinPolicyType._all_fields_ = [('description', SharingChangeFolderJoinPolicyType.description.validator)] - -SharingChangeLinkAllowChangeExpirationPolicyDetails.new_value.validator = EnforceLinkPasswordPolicy_validator -SharingChangeLinkAllowChangeExpirationPolicyDetails.previous_value.validator = bv.Nullable(EnforceLinkPasswordPolicy_validator) -SharingChangeLinkAllowChangeExpirationPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharingChangeFolderJoinPolicyType._all_field_names_ = set(["description"]) +SharingChangeFolderJoinPolicyType._all_fields_ = [ + ("description", SharingChangeFolderJoinPolicyType.description.validator) +] + +SharingChangeLinkAllowChangeExpirationPolicyDetails.new_value.validator = ( + EnforceLinkPasswordPolicy_validator +) +SharingChangeLinkAllowChangeExpirationPolicyDetails.previous_value.validator = bv.Nullable( + EnforceLinkPasswordPolicy_validator +) +SharingChangeLinkAllowChangeExpirationPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharingChangeLinkAllowChangeExpirationPolicyDetails._all_fields_ = [ - ('new_value', SharingChangeLinkAllowChangeExpirationPolicyDetails.new_value.validator), - ('previous_value', SharingChangeLinkAllowChangeExpirationPolicyDetails.previous_value.validator), + ( + "new_value", + SharingChangeLinkAllowChangeExpirationPolicyDetails.new_value.validator, + ), + ( + "previous_value", + SharingChangeLinkAllowChangeExpirationPolicyDetails.previous_value.validator, + ), ] SharingChangeLinkAllowChangeExpirationPolicyType.description.validator = bv.String() -SharingChangeLinkAllowChangeExpirationPolicyType._all_field_names_ = set(['description']) -SharingChangeLinkAllowChangeExpirationPolicyType._all_fields_ = [('description', SharingChangeLinkAllowChangeExpirationPolicyType.description.validator)] - -SharingChangeLinkDefaultExpirationPolicyDetails.new_value.validator = DefaultLinkExpirationDaysPolicy_validator -SharingChangeLinkDefaultExpirationPolicyDetails.previous_value.validator = bv.Nullable(DefaultLinkExpirationDaysPolicy_validator) -SharingChangeLinkDefaultExpirationPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharingChangeLinkAllowChangeExpirationPolicyType._all_field_names_ = set(["description"]) +SharingChangeLinkAllowChangeExpirationPolicyType._all_fields_ = [ + ( + "description", + SharingChangeLinkAllowChangeExpirationPolicyType.description.validator, + ) +] + +SharingChangeLinkDefaultExpirationPolicyDetails.new_value.validator = ( + DefaultLinkExpirationDaysPolicy_validator +) +SharingChangeLinkDefaultExpirationPolicyDetails.previous_value.validator = bv.Nullable( + DefaultLinkExpirationDaysPolicy_validator +) +SharingChangeLinkDefaultExpirationPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharingChangeLinkDefaultExpirationPolicyDetails._all_fields_ = [ - ('new_value', SharingChangeLinkDefaultExpirationPolicyDetails.new_value.validator), - ('previous_value', SharingChangeLinkDefaultExpirationPolicyDetails.previous_value.validator), + ("new_value", SharingChangeLinkDefaultExpirationPolicyDetails.new_value.validator), + ( + "previous_value", + SharingChangeLinkDefaultExpirationPolicyDetails.previous_value.validator, + ), ] SharingChangeLinkDefaultExpirationPolicyType.description.validator = bv.String() -SharingChangeLinkDefaultExpirationPolicyType._all_field_names_ = set(['description']) -SharingChangeLinkDefaultExpirationPolicyType._all_fields_ = [('description', SharingChangeLinkDefaultExpirationPolicyType.description.validator)] - -SharingChangeLinkEnforcePasswordPolicyDetails.new_value.validator = ChangeLinkExpirationPolicy_validator -SharingChangeLinkEnforcePasswordPolicyDetails.previous_value.validator = bv.Nullable(ChangeLinkExpirationPolicy_validator) -SharingChangeLinkEnforcePasswordPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharingChangeLinkDefaultExpirationPolicyType._all_field_names_ = set(["description"]) +SharingChangeLinkDefaultExpirationPolicyType._all_fields_ = [ + ("description", SharingChangeLinkDefaultExpirationPolicyType.description.validator) +] + +SharingChangeLinkEnforcePasswordPolicyDetails.new_value.validator = ( + ChangeLinkExpirationPolicy_validator +) +SharingChangeLinkEnforcePasswordPolicyDetails.previous_value.validator = bv.Nullable( + ChangeLinkExpirationPolicy_validator +) +SharingChangeLinkEnforcePasswordPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharingChangeLinkEnforcePasswordPolicyDetails._all_fields_ = [ - ('new_value', SharingChangeLinkEnforcePasswordPolicyDetails.new_value.validator), - ('previous_value', SharingChangeLinkEnforcePasswordPolicyDetails.previous_value.validator), + ("new_value", SharingChangeLinkEnforcePasswordPolicyDetails.new_value.validator), + ( + "previous_value", + SharingChangeLinkEnforcePasswordPolicyDetails.previous_value.validator, + ), ] SharingChangeLinkEnforcePasswordPolicyType.description.validator = bv.String() -SharingChangeLinkEnforcePasswordPolicyType._all_field_names_ = set(['description']) -SharingChangeLinkEnforcePasswordPolicyType._all_fields_ = [('description', SharingChangeLinkEnforcePasswordPolicyType.description.validator)] +SharingChangeLinkEnforcePasswordPolicyType._all_field_names_ = set(["description"]) +SharingChangeLinkEnforcePasswordPolicyType._all_fields_ = [ + ("description", SharingChangeLinkEnforcePasswordPolicyType.description.validator) +] SharingChangeLinkPolicyDetails.new_value.validator = SharingLinkPolicy_validator SharingChangeLinkPolicyDetails.previous_value.validator = bv.Nullable(SharingLinkPolicy_validator) -SharingChangeLinkPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharingChangeLinkPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharingChangeLinkPolicyDetails._all_fields_ = [ - ('new_value', SharingChangeLinkPolicyDetails.new_value.validator), - ('previous_value', SharingChangeLinkPolicyDetails.previous_value.validator), + ("new_value", SharingChangeLinkPolicyDetails.new_value.validator), + ("previous_value", SharingChangeLinkPolicyDetails.previous_value.validator), ] SharingChangeLinkPolicyType.description.validator = bv.String() -SharingChangeLinkPolicyType._all_field_names_ = set(['description']) -SharingChangeLinkPolicyType._all_fields_ = [('description', SharingChangeLinkPolicyType.description.validator)] +SharingChangeLinkPolicyType._all_field_names_ = set(["description"]) +SharingChangeLinkPolicyType._all_fields_ = [ + ("description", SharingChangeLinkPolicyType.description.validator) +] SharingChangeMemberPolicyDetails.new_value.validator = SharingMemberPolicy_validator -SharingChangeMemberPolicyDetails.previous_value.validator = bv.Nullable(SharingMemberPolicy_validator) -SharingChangeMemberPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SharingChangeMemberPolicyDetails.previous_value.validator = bv.Nullable( + SharingMemberPolicy_validator +) +SharingChangeMemberPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SharingChangeMemberPolicyDetails._all_fields_ = [ - ('new_value', SharingChangeMemberPolicyDetails.new_value.validator), - ('previous_value', SharingChangeMemberPolicyDetails.previous_value.validator), + ("new_value", SharingChangeMemberPolicyDetails.new_value.validator), + ("previous_value", SharingChangeMemberPolicyDetails.previous_value.validator), ] SharingChangeMemberPolicyType.description.validator = bv.String() -SharingChangeMemberPolicyType._all_field_names_ = set(['description']) -SharingChangeMemberPolicyType._all_fields_ = [('description', SharingChangeMemberPolicyType.description.validator)] +SharingChangeMemberPolicyType._all_field_names_ = set(["description"]) +SharingChangeMemberPolicyType._all_fields_ = [ + ("description", SharingChangeMemberPolicyType.description.validator) +] SharingFolderJoinPolicy._from_anyone_validator = bv.Void() SharingFolderJoinPolicy._from_team_only_validator = bv.Void() SharingFolderJoinPolicy._other_validator = bv.Void() SharingFolderJoinPolicy._tagmap = { - 'from_anyone': SharingFolderJoinPolicy._from_anyone_validator, - 'from_team_only': SharingFolderJoinPolicy._from_team_only_validator, - 'other': SharingFolderJoinPolicy._other_validator, + "from_anyone": SharingFolderJoinPolicy._from_anyone_validator, + "from_team_only": SharingFolderJoinPolicy._from_team_only_validator, + "other": SharingFolderJoinPolicy._other_validator, } -SharingFolderJoinPolicy.from_anyone = SharingFolderJoinPolicy('from_anyone') -SharingFolderJoinPolicy.from_team_only = SharingFolderJoinPolicy('from_team_only') -SharingFolderJoinPolicy.other = SharingFolderJoinPolicy('other') +SharingFolderJoinPolicy.from_anyone = SharingFolderJoinPolicy("from_anyone") +SharingFolderJoinPolicy.from_team_only = SharingFolderJoinPolicy("from_team_only") +SharingFolderJoinPolicy.other = SharingFolderJoinPolicy("other") SharingLinkPolicy._default_no_one_validator = bv.Void() SharingLinkPolicy._default_private_validator = bv.Void() @@ -106828,979 +114572,1230 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingLinkPolicy._only_private_validator = bv.Void() SharingLinkPolicy._other_validator = bv.Void() SharingLinkPolicy._tagmap = { - 'default_no_one': SharingLinkPolicy._default_no_one_validator, - 'default_private': SharingLinkPolicy._default_private_validator, - 'default_public': SharingLinkPolicy._default_public_validator, - 'only_private': SharingLinkPolicy._only_private_validator, - 'other': SharingLinkPolicy._other_validator, + "default_no_one": SharingLinkPolicy._default_no_one_validator, + "default_private": SharingLinkPolicy._default_private_validator, + "default_public": SharingLinkPolicy._default_public_validator, + "only_private": SharingLinkPolicy._only_private_validator, + "other": SharingLinkPolicy._other_validator, } -SharingLinkPolicy.default_no_one = SharingLinkPolicy('default_no_one') -SharingLinkPolicy.default_private = SharingLinkPolicy('default_private') -SharingLinkPolicy.default_public = SharingLinkPolicy('default_public') -SharingLinkPolicy.only_private = SharingLinkPolicy('only_private') -SharingLinkPolicy.other = SharingLinkPolicy('other') +SharingLinkPolicy.default_no_one = SharingLinkPolicy("default_no_one") +SharingLinkPolicy.default_private = SharingLinkPolicy("default_private") +SharingLinkPolicy.default_public = SharingLinkPolicy("default_public") +SharingLinkPolicy.only_private = SharingLinkPolicy("only_private") +SharingLinkPolicy.other = SharingLinkPolicy("other") SharingMemberPolicy._allow_validator = bv.Void() SharingMemberPolicy._forbid_validator = bv.Void() SharingMemberPolicy._forbid_with_exclusions_validator = bv.Void() SharingMemberPolicy._other_validator = bv.Void() SharingMemberPolicy._tagmap = { - 'allow': SharingMemberPolicy._allow_validator, - 'forbid': SharingMemberPolicy._forbid_validator, - 'forbid_with_exclusions': SharingMemberPolicy._forbid_with_exclusions_validator, - 'other': SharingMemberPolicy._other_validator, + "allow": SharingMemberPolicy._allow_validator, + "forbid": SharingMemberPolicy._forbid_validator, + "forbid_with_exclusions": SharingMemberPolicy._forbid_with_exclusions_validator, + "other": SharingMemberPolicy._other_validator, } -SharingMemberPolicy.allow = SharingMemberPolicy('allow') -SharingMemberPolicy.forbid = SharingMemberPolicy('forbid') -SharingMemberPolicy.forbid_with_exclusions = SharingMemberPolicy('forbid_with_exclusions') -SharingMemberPolicy.other = SharingMemberPolicy('other') +SharingMemberPolicy.allow = SharingMemberPolicy("allow") +SharingMemberPolicy.forbid = SharingMemberPolicy("forbid") +SharingMemberPolicy.forbid_with_exclusions = SharingMemberPolicy("forbid_with_exclusions") +SharingMemberPolicy.other = SharingMemberPolicy("other") ShmodelDisableDownloadsDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -ShmodelDisableDownloadsDetails._all_field_names_ = set(['shared_link_owner']) -ShmodelDisableDownloadsDetails._all_fields_ = [('shared_link_owner', ShmodelDisableDownloadsDetails.shared_link_owner.validator)] +ShmodelDisableDownloadsDetails._all_field_names_ = set(["shared_link_owner"]) +ShmodelDisableDownloadsDetails._all_fields_ = [ + ("shared_link_owner", ShmodelDisableDownloadsDetails.shared_link_owner.validator) +] ShmodelDisableDownloadsType.description.validator = bv.String() -ShmodelDisableDownloadsType._all_field_names_ = set(['description']) -ShmodelDisableDownloadsType._all_fields_ = [('description', ShmodelDisableDownloadsType.description.validator)] +ShmodelDisableDownloadsType._all_field_names_ = set(["description"]) +ShmodelDisableDownloadsType._all_fields_ = [ + ("description", ShmodelDisableDownloadsType.description.validator) +] ShmodelEnableDownloadsDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -ShmodelEnableDownloadsDetails._all_field_names_ = set(['shared_link_owner']) -ShmodelEnableDownloadsDetails._all_fields_ = [('shared_link_owner', ShmodelEnableDownloadsDetails.shared_link_owner.validator)] +ShmodelEnableDownloadsDetails._all_field_names_ = set(["shared_link_owner"]) +ShmodelEnableDownloadsDetails._all_fields_ = [ + ("shared_link_owner", ShmodelEnableDownloadsDetails.shared_link_owner.validator) +] ShmodelEnableDownloadsType.description.validator = bv.String() -ShmodelEnableDownloadsType._all_field_names_ = set(['description']) -ShmodelEnableDownloadsType._all_fields_ = [('description', ShmodelEnableDownloadsType.description.validator)] +ShmodelEnableDownloadsType._all_field_names_ = set(["description"]) +ShmodelEnableDownloadsType._all_fields_ = [ + ("description", ShmodelEnableDownloadsType.description.validator) +] ShmodelGroupShareDetails._all_field_names_ = set([]) ShmodelGroupShareDetails._all_fields_ = [] ShmodelGroupShareType.description.validator = bv.String() -ShmodelGroupShareType._all_field_names_ = set(['description']) -ShmodelGroupShareType._all_fields_ = [('description', ShmodelGroupShareType.description.validator)] +ShmodelGroupShareType._all_field_names_ = set(["description"]) +ShmodelGroupShareType._all_fields_ = [("description", ShmodelGroupShareType.description.validator)] ShowcaseAccessGrantedDetails.event_uuid.validator = bv.String() -ShowcaseAccessGrantedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseAccessGrantedDetails._all_fields_ = [('event_uuid', ShowcaseAccessGrantedDetails.event_uuid.validator)] +ShowcaseAccessGrantedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseAccessGrantedDetails._all_fields_ = [ + ("event_uuid", ShowcaseAccessGrantedDetails.event_uuid.validator) +] ShowcaseAccessGrantedType.description.validator = bv.String() -ShowcaseAccessGrantedType._all_field_names_ = set(['description']) -ShowcaseAccessGrantedType._all_fields_ = [('description', ShowcaseAccessGrantedType.description.validator)] +ShowcaseAccessGrantedType._all_field_names_ = set(["description"]) +ShowcaseAccessGrantedType._all_fields_ = [ + ("description", ShowcaseAccessGrantedType.description.validator) +] ShowcaseAddMemberDetails.event_uuid.validator = bv.String() -ShowcaseAddMemberDetails._all_field_names_ = set(['event_uuid']) -ShowcaseAddMemberDetails._all_fields_ = [('event_uuid', ShowcaseAddMemberDetails.event_uuid.validator)] +ShowcaseAddMemberDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseAddMemberDetails._all_fields_ = [ + ("event_uuid", ShowcaseAddMemberDetails.event_uuid.validator) +] ShowcaseAddMemberType.description.validator = bv.String() -ShowcaseAddMemberType._all_field_names_ = set(['description']) -ShowcaseAddMemberType._all_fields_ = [('description', ShowcaseAddMemberType.description.validator)] +ShowcaseAddMemberType._all_field_names_ = set(["description"]) +ShowcaseAddMemberType._all_fields_ = [("description", ShowcaseAddMemberType.description.validator)] ShowcaseArchivedDetails.event_uuid.validator = bv.String() -ShowcaseArchivedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseArchivedDetails._all_fields_ = [('event_uuid', ShowcaseArchivedDetails.event_uuid.validator)] +ShowcaseArchivedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseArchivedDetails._all_fields_ = [ + ("event_uuid", ShowcaseArchivedDetails.event_uuid.validator) +] ShowcaseArchivedType.description.validator = bv.String() -ShowcaseArchivedType._all_field_names_ = set(['description']) -ShowcaseArchivedType._all_fields_ = [('description', ShowcaseArchivedType.description.validator)] +ShowcaseArchivedType._all_field_names_ = set(["description"]) +ShowcaseArchivedType._all_fields_ = [("description", ShowcaseArchivedType.description.validator)] ShowcaseChangeDownloadPolicyDetails.new_value.validator = ShowcaseDownloadPolicy_validator ShowcaseChangeDownloadPolicyDetails.previous_value.validator = ShowcaseDownloadPolicy_validator -ShowcaseChangeDownloadPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ShowcaseChangeDownloadPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ShowcaseChangeDownloadPolicyDetails._all_fields_ = [ - ('new_value', ShowcaseChangeDownloadPolicyDetails.new_value.validator), - ('previous_value', ShowcaseChangeDownloadPolicyDetails.previous_value.validator), + ("new_value", ShowcaseChangeDownloadPolicyDetails.new_value.validator), + ("previous_value", ShowcaseChangeDownloadPolicyDetails.previous_value.validator), ] ShowcaseChangeDownloadPolicyType.description.validator = bv.String() -ShowcaseChangeDownloadPolicyType._all_field_names_ = set(['description']) -ShowcaseChangeDownloadPolicyType._all_fields_ = [('description', ShowcaseChangeDownloadPolicyType.description.validator)] +ShowcaseChangeDownloadPolicyType._all_field_names_ = set(["description"]) +ShowcaseChangeDownloadPolicyType._all_fields_ = [ + ("description", ShowcaseChangeDownloadPolicyType.description.validator) +] ShowcaseChangeEnabledPolicyDetails.new_value.validator = ShowcaseEnabledPolicy_validator ShowcaseChangeEnabledPolicyDetails.previous_value.validator = ShowcaseEnabledPolicy_validator -ShowcaseChangeEnabledPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ShowcaseChangeEnabledPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ShowcaseChangeEnabledPolicyDetails._all_fields_ = [ - ('new_value', ShowcaseChangeEnabledPolicyDetails.new_value.validator), - ('previous_value', ShowcaseChangeEnabledPolicyDetails.previous_value.validator), + ("new_value", ShowcaseChangeEnabledPolicyDetails.new_value.validator), + ("previous_value", ShowcaseChangeEnabledPolicyDetails.previous_value.validator), ] ShowcaseChangeEnabledPolicyType.description.validator = bv.String() -ShowcaseChangeEnabledPolicyType._all_field_names_ = set(['description']) -ShowcaseChangeEnabledPolicyType._all_fields_ = [('description', ShowcaseChangeEnabledPolicyType.description.validator)] - -ShowcaseChangeExternalSharingPolicyDetails.new_value.validator = ShowcaseExternalSharingPolicy_validator -ShowcaseChangeExternalSharingPolicyDetails.previous_value.validator = ShowcaseExternalSharingPolicy_validator -ShowcaseChangeExternalSharingPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +ShowcaseChangeEnabledPolicyType._all_field_names_ = set(["description"]) +ShowcaseChangeEnabledPolicyType._all_fields_ = [ + ("description", ShowcaseChangeEnabledPolicyType.description.validator) +] + +ShowcaseChangeExternalSharingPolicyDetails.new_value.validator = ( + ShowcaseExternalSharingPolicy_validator +) +ShowcaseChangeExternalSharingPolicyDetails.previous_value.validator = ( + ShowcaseExternalSharingPolicy_validator +) +ShowcaseChangeExternalSharingPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) ShowcaseChangeExternalSharingPolicyDetails._all_fields_ = [ - ('new_value', ShowcaseChangeExternalSharingPolicyDetails.new_value.validator), - ('previous_value', ShowcaseChangeExternalSharingPolicyDetails.previous_value.validator), + ("new_value", ShowcaseChangeExternalSharingPolicyDetails.new_value.validator), + ( + "previous_value", + ShowcaseChangeExternalSharingPolicyDetails.previous_value.validator, + ), ] ShowcaseChangeExternalSharingPolicyType.description.validator = bv.String() -ShowcaseChangeExternalSharingPolicyType._all_field_names_ = set(['description']) -ShowcaseChangeExternalSharingPolicyType._all_fields_ = [('description', ShowcaseChangeExternalSharingPolicyType.description.validator)] +ShowcaseChangeExternalSharingPolicyType._all_field_names_ = set(["description"]) +ShowcaseChangeExternalSharingPolicyType._all_fields_ = [ + ("description", ShowcaseChangeExternalSharingPolicyType.description.validator) +] ShowcaseCreatedDetails.event_uuid.validator = bv.String() -ShowcaseCreatedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseCreatedDetails._all_fields_ = [('event_uuid', ShowcaseCreatedDetails.event_uuid.validator)] +ShowcaseCreatedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseCreatedDetails._all_fields_ = [("event_uuid", ShowcaseCreatedDetails.event_uuid.validator)] ShowcaseCreatedType.description.validator = bv.String() -ShowcaseCreatedType._all_field_names_ = set(['description']) -ShowcaseCreatedType._all_fields_ = [('description', ShowcaseCreatedType.description.validator)] +ShowcaseCreatedType._all_field_names_ = set(["description"]) +ShowcaseCreatedType._all_fields_ = [("description", ShowcaseCreatedType.description.validator)] ShowcaseDeleteCommentDetails.event_uuid.validator = bv.String() ShowcaseDeleteCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcaseDeleteCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +ShowcaseDeleteCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) ShowcaseDeleteCommentDetails._all_fields_ = [ - ('event_uuid', ShowcaseDeleteCommentDetails.event_uuid.validator), - ('comment_text', ShowcaseDeleteCommentDetails.comment_text.validator), + ("event_uuid", ShowcaseDeleteCommentDetails.event_uuid.validator), + ("comment_text", ShowcaseDeleteCommentDetails.comment_text.validator), ] ShowcaseDeleteCommentType.description.validator = bv.String() -ShowcaseDeleteCommentType._all_field_names_ = set(['description']) -ShowcaseDeleteCommentType._all_fields_ = [('description', ShowcaseDeleteCommentType.description.validator)] +ShowcaseDeleteCommentType._all_field_names_ = set(["description"]) +ShowcaseDeleteCommentType._all_fields_ = [ + ("description", ShowcaseDeleteCommentType.description.validator) +] ShowcaseDocumentLogInfo.showcase_id.validator = bv.String() ShowcaseDocumentLogInfo.showcase_title.validator = bv.String() -ShowcaseDocumentLogInfo._all_field_names_ = set([ - 'showcase_id', - 'showcase_title', -]) +ShowcaseDocumentLogInfo._all_field_names_ = set( + [ + "showcase_id", + "showcase_title", + ] +) ShowcaseDocumentLogInfo._all_fields_ = [ - ('showcase_id', ShowcaseDocumentLogInfo.showcase_id.validator), - ('showcase_title', ShowcaseDocumentLogInfo.showcase_title.validator), + ("showcase_id", ShowcaseDocumentLogInfo.showcase_id.validator), + ("showcase_title", ShowcaseDocumentLogInfo.showcase_title.validator), ] ShowcaseDownloadPolicy._disabled_validator = bv.Void() ShowcaseDownloadPolicy._enabled_validator = bv.Void() ShowcaseDownloadPolicy._other_validator = bv.Void() ShowcaseDownloadPolicy._tagmap = { - 'disabled': ShowcaseDownloadPolicy._disabled_validator, - 'enabled': ShowcaseDownloadPolicy._enabled_validator, - 'other': ShowcaseDownloadPolicy._other_validator, + "disabled": ShowcaseDownloadPolicy._disabled_validator, + "enabled": ShowcaseDownloadPolicy._enabled_validator, + "other": ShowcaseDownloadPolicy._other_validator, } -ShowcaseDownloadPolicy.disabled = ShowcaseDownloadPolicy('disabled') -ShowcaseDownloadPolicy.enabled = ShowcaseDownloadPolicy('enabled') -ShowcaseDownloadPolicy.other = ShowcaseDownloadPolicy('other') +ShowcaseDownloadPolicy.disabled = ShowcaseDownloadPolicy("disabled") +ShowcaseDownloadPolicy.enabled = ShowcaseDownloadPolicy("enabled") +ShowcaseDownloadPolicy.other = ShowcaseDownloadPolicy("other") ShowcaseEditCommentDetails.event_uuid.validator = bv.String() ShowcaseEditCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcaseEditCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +ShowcaseEditCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) ShowcaseEditCommentDetails._all_fields_ = [ - ('event_uuid', ShowcaseEditCommentDetails.event_uuid.validator), - ('comment_text', ShowcaseEditCommentDetails.comment_text.validator), + ("event_uuid", ShowcaseEditCommentDetails.event_uuid.validator), + ("comment_text", ShowcaseEditCommentDetails.comment_text.validator), ] ShowcaseEditCommentType.description.validator = bv.String() -ShowcaseEditCommentType._all_field_names_ = set(['description']) -ShowcaseEditCommentType._all_fields_ = [('description', ShowcaseEditCommentType.description.validator)] +ShowcaseEditCommentType._all_field_names_ = set(["description"]) +ShowcaseEditCommentType._all_fields_ = [ + ("description", ShowcaseEditCommentType.description.validator) +] ShowcaseEditedDetails.event_uuid.validator = bv.String() -ShowcaseEditedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseEditedDetails._all_fields_ = [('event_uuid', ShowcaseEditedDetails.event_uuid.validator)] +ShowcaseEditedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseEditedDetails._all_fields_ = [("event_uuid", ShowcaseEditedDetails.event_uuid.validator)] ShowcaseEditedType.description.validator = bv.String() -ShowcaseEditedType._all_field_names_ = set(['description']) -ShowcaseEditedType._all_fields_ = [('description', ShowcaseEditedType.description.validator)] +ShowcaseEditedType._all_field_names_ = set(["description"]) +ShowcaseEditedType._all_fields_ = [("description", ShowcaseEditedType.description.validator)] ShowcaseEnabledPolicy._disabled_validator = bv.Void() ShowcaseEnabledPolicy._enabled_validator = bv.Void() ShowcaseEnabledPolicy._other_validator = bv.Void() ShowcaseEnabledPolicy._tagmap = { - 'disabled': ShowcaseEnabledPolicy._disabled_validator, - 'enabled': ShowcaseEnabledPolicy._enabled_validator, - 'other': ShowcaseEnabledPolicy._other_validator, + "disabled": ShowcaseEnabledPolicy._disabled_validator, + "enabled": ShowcaseEnabledPolicy._enabled_validator, + "other": ShowcaseEnabledPolicy._other_validator, } -ShowcaseEnabledPolicy.disabled = ShowcaseEnabledPolicy('disabled') -ShowcaseEnabledPolicy.enabled = ShowcaseEnabledPolicy('enabled') -ShowcaseEnabledPolicy.other = ShowcaseEnabledPolicy('other') +ShowcaseEnabledPolicy.disabled = ShowcaseEnabledPolicy("disabled") +ShowcaseEnabledPolicy.enabled = ShowcaseEnabledPolicy("enabled") +ShowcaseEnabledPolicy.other = ShowcaseEnabledPolicy("other") ShowcaseExternalSharingPolicy._disabled_validator = bv.Void() ShowcaseExternalSharingPolicy._enabled_validator = bv.Void() ShowcaseExternalSharingPolicy._other_validator = bv.Void() ShowcaseExternalSharingPolicy._tagmap = { - 'disabled': ShowcaseExternalSharingPolicy._disabled_validator, - 'enabled': ShowcaseExternalSharingPolicy._enabled_validator, - 'other': ShowcaseExternalSharingPolicy._other_validator, + "disabled": ShowcaseExternalSharingPolicy._disabled_validator, + "enabled": ShowcaseExternalSharingPolicy._enabled_validator, + "other": ShowcaseExternalSharingPolicy._other_validator, } -ShowcaseExternalSharingPolicy.disabled = ShowcaseExternalSharingPolicy('disabled') -ShowcaseExternalSharingPolicy.enabled = ShowcaseExternalSharingPolicy('enabled') -ShowcaseExternalSharingPolicy.other = ShowcaseExternalSharingPolicy('other') +ShowcaseExternalSharingPolicy.disabled = ShowcaseExternalSharingPolicy("disabled") +ShowcaseExternalSharingPolicy.enabled = ShowcaseExternalSharingPolicy("enabled") +ShowcaseExternalSharingPolicy.other = ShowcaseExternalSharingPolicy("other") ShowcaseFileAddedDetails.event_uuid.validator = bv.String() -ShowcaseFileAddedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseFileAddedDetails._all_fields_ = [('event_uuid', ShowcaseFileAddedDetails.event_uuid.validator)] +ShowcaseFileAddedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseFileAddedDetails._all_fields_ = [ + ("event_uuid", ShowcaseFileAddedDetails.event_uuid.validator) +] ShowcaseFileAddedType.description.validator = bv.String() -ShowcaseFileAddedType._all_field_names_ = set(['description']) -ShowcaseFileAddedType._all_fields_ = [('description', ShowcaseFileAddedType.description.validator)] +ShowcaseFileAddedType._all_field_names_ = set(["description"]) +ShowcaseFileAddedType._all_fields_ = [("description", ShowcaseFileAddedType.description.validator)] ShowcaseFileDownloadDetails.event_uuid.validator = bv.String() ShowcaseFileDownloadDetails.download_type.validator = bv.String() -ShowcaseFileDownloadDetails._all_field_names_ = set([ - 'event_uuid', - 'download_type', -]) +ShowcaseFileDownloadDetails._all_field_names_ = set( + [ + "event_uuid", + "download_type", + ] +) ShowcaseFileDownloadDetails._all_fields_ = [ - ('event_uuid', ShowcaseFileDownloadDetails.event_uuid.validator), - ('download_type', ShowcaseFileDownloadDetails.download_type.validator), + ("event_uuid", ShowcaseFileDownloadDetails.event_uuid.validator), + ("download_type", ShowcaseFileDownloadDetails.download_type.validator), ] ShowcaseFileDownloadType.description.validator = bv.String() -ShowcaseFileDownloadType._all_field_names_ = set(['description']) -ShowcaseFileDownloadType._all_fields_ = [('description', ShowcaseFileDownloadType.description.validator)] +ShowcaseFileDownloadType._all_field_names_ = set(["description"]) +ShowcaseFileDownloadType._all_fields_ = [ + ("description", ShowcaseFileDownloadType.description.validator) +] ShowcaseFileRemovedDetails.event_uuid.validator = bv.String() -ShowcaseFileRemovedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseFileRemovedDetails._all_fields_ = [('event_uuid', ShowcaseFileRemovedDetails.event_uuid.validator)] +ShowcaseFileRemovedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseFileRemovedDetails._all_fields_ = [ + ("event_uuid", ShowcaseFileRemovedDetails.event_uuid.validator) +] ShowcaseFileRemovedType.description.validator = bv.String() -ShowcaseFileRemovedType._all_field_names_ = set(['description']) -ShowcaseFileRemovedType._all_fields_ = [('description', ShowcaseFileRemovedType.description.validator)] +ShowcaseFileRemovedType._all_field_names_ = set(["description"]) +ShowcaseFileRemovedType._all_fields_ = [ + ("description", ShowcaseFileRemovedType.description.validator) +] ShowcaseFileViewDetails.event_uuid.validator = bv.String() -ShowcaseFileViewDetails._all_field_names_ = set(['event_uuid']) -ShowcaseFileViewDetails._all_fields_ = [('event_uuid', ShowcaseFileViewDetails.event_uuid.validator)] +ShowcaseFileViewDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseFileViewDetails._all_fields_ = [ + ("event_uuid", ShowcaseFileViewDetails.event_uuid.validator) +] ShowcaseFileViewType.description.validator = bv.String() -ShowcaseFileViewType._all_field_names_ = set(['description']) -ShowcaseFileViewType._all_fields_ = [('description', ShowcaseFileViewType.description.validator)] +ShowcaseFileViewType._all_field_names_ = set(["description"]) +ShowcaseFileViewType._all_fields_ = [("description", ShowcaseFileViewType.description.validator)] ShowcasePermanentlyDeletedDetails.event_uuid.validator = bv.String() -ShowcasePermanentlyDeletedDetails._all_field_names_ = set(['event_uuid']) -ShowcasePermanentlyDeletedDetails._all_fields_ = [('event_uuid', ShowcasePermanentlyDeletedDetails.event_uuid.validator)] +ShowcasePermanentlyDeletedDetails._all_field_names_ = set(["event_uuid"]) +ShowcasePermanentlyDeletedDetails._all_fields_ = [ + ("event_uuid", ShowcasePermanentlyDeletedDetails.event_uuid.validator) +] ShowcasePermanentlyDeletedType.description.validator = bv.String() -ShowcasePermanentlyDeletedType._all_field_names_ = set(['description']) -ShowcasePermanentlyDeletedType._all_fields_ = [('description', ShowcasePermanentlyDeletedType.description.validator)] +ShowcasePermanentlyDeletedType._all_field_names_ = set(["description"]) +ShowcasePermanentlyDeletedType._all_fields_ = [ + ("description", ShowcasePermanentlyDeletedType.description.validator) +] ShowcasePostCommentDetails.event_uuid.validator = bv.String() ShowcasePostCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcasePostCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +ShowcasePostCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) ShowcasePostCommentDetails._all_fields_ = [ - ('event_uuid', ShowcasePostCommentDetails.event_uuid.validator), - ('comment_text', ShowcasePostCommentDetails.comment_text.validator), + ("event_uuid", ShowcasePostCommentDetails.event_uuid.validator), + ("comment_text", ShowcasePostCommentDetails.comment_text.validator), ] ShowcasePostCommentType.description.validator = bv.String() -ShowcasePostCommentType._all_field_names_ = set(['description']) -ShowcasePostCommentType._all_fields_ = [('description', ShowcasePostCommentType.description.validator)] +ShowcasePostCommentType._all_field_names_ = set(["description"]) +ShowcasePostCommentType._all_fields_ = [ + ("description", ShowcasePostCommentType.description.validator) +] ShowcaseRemoveMemberDetails.event_uuid.validator = bv.String() -ShowcaseRemoveMemberDetails._all_field_names_ = set(['event_uuid']) -ShowcaseRemoveMemberDetails._all_fields_ = [('event_uuid', ShowcaseRemoveMemberDetails.event_uuid.validator)] +ShowcaseRemoveMemberDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseRemoveMemberDetails._all_fields_ = [ + ("event_uuid", ShowcaseRemoveMemberDetails.event_uuid.validator) +] ShowcaseRemoveMemberType.description.validator = bv.String() -ShowcaseRemoveMemberType._all_field_names_ = set(['description']) -ShowcaseRemoveMemberType._all_fields_ = [('description', ShowcaseRemoveMemberType.description.validator)] +ShowcaseRemoveMemberType._all_field_names_ = set(["description"]) +ShowcaseRemoveMemberType._all_fields_ = [ + ("description", ShowcaseRemoveMemberType.description.validator) +] ShowcaseRenamedDetails.event_uuid.validator = bv.String() -ShowcaseRenamedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseRenamedDetails._all_fields_ = [('event_uuid', ShowcaseRenamedDetails.event_uuid.validator)] +ShowcaseRenamedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseRenamedDetails._all_fields_ = [("event_uuid", ShowcaseRenamedDetails.event_uuid.validator)] ShowcaseRenamedType.description.validator = bv.String() -ShowcaseRenamedType._all_field_names_ = set(['description']) -ShowcaseRenamedType._all_fields_ = [('description', ShowcaseRenamedType.description.validator)] +ShowcaseRenamedType._all_field_names_ = set(["description"]) +ShowcaseRenamedType._all_fields_ = [("description", ShowcaseRenamedType.description.validator)] ShowcaseRequestAccessDetails.event_uuid.validator = bv.String() -ShowcaseRequestAccessDetails._all_field_names_ = set(['event_uuid']) -ShowcaseRequestAccessDetails._all_fields_ = [('event_uuid', ShowcaseRequestAccessDetails.event_uuid.validator)] +ShowcaseRequestAccessDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseRequestAccessDetails._all_fields_ = [ + ("event_uuid", ShowcaseRequestAccessDetails.event_uuid.validator) +] ShowcaseRequestAccessType.description.validator = bv.String() -ShowcaseRequestAccessType._all_field_names_ = set(['description']) -ShowcaseRequestAccessType._all_fields_ = [('description', ShowcaseRequestAccessType.description.validator)] +ShowcaseRequestAccessType._all_field_names_ = set(["description"]) +ShowcaseRequestAccessType._all_fields_ = [ + ("description", ShowcaseRequestAccessType.description.validator) +] ShowcaseResolveCommentDetails.event_uuid.validator = bv.String() ShowcaseResolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcaseResolveCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +ShowcaseResolveCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) ShowcaseResolveCommentDetails._all_fields_ = [ - ('event_uuid', ShowcaseResolveCommentDetails.event_uuid.validator), - ('comment_text', ShowcaseResolveCommentDetails.comment_text.validator), + ("event_uuid", ShowcaseResolveCommentDetails.event_uuid.validator), + ("comment_text", ShowcaseResolveCommentDetails.comment_text.validator), ] ShowcaseResolveCommentType.description.validator = bv.String() -ShowcaseResolveCommentType._all_field_names_ = set(['description']) -ShowcaseResolveCommentType._all_fields_ = [('description', ShowcaseResolveCommentType.description.validator)] +ShowcaseResolveCommentType._all_field_names_ = set(["description"]) +ShowcaseResolveCommentType._all_fields_ = [ + ("description", ShowcaseResolveCommentType.description.validator) +] ShowcaseRestoredDetails.event_uuid.validator = bv.String() -ShowcaseRestoredDetails._all_field_names_ = set(['event_uuid']) -ShowcaseRestoredDetails._all_fields_ = [('event_uuid', ShowcaseRestoredDetails.event_uuid.validator)] +ShowcaseRestoredDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseRestoredDetails._all_fields_ = [ + ("event_uuid", ShowcaseRestoredDetails.event_uuid.validator) +] ShowcaseRestoredType.description.validator = bv.String() -ShowcaseRestoredType._all_field_names_ = set(['description']) -ShowcaseRestoredType._all_fields_ = [('description', ShowcaseRestoredType.description.validator)] +ShowcaseRestoredType._all_field_names_ = set(["description"]) +ShowcaseRestoredType._all_fields_ = [("description", ShowcaseRestoredType.description.validator)] ShowcaseTrashedDeprecatedDetails.event_uuid.validator = bv.String() -ShowcaseTrashedDeprecatedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseTrashedDeprecatedDetails._all_fields_ = [('event_uuid', ShowcaseTrashedDeprecatedDetails.event_uuid.validator)] +ShowcaseTrashedDeprecatedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseTrashedDeprecatedDetails._all_fields_ = [ + ("event_uuid", ShowcaseTrashedDeprecatedDetails.event_uuid.validator) +] ShowcaseTrashedDeprecatedType.description.validator = bv.String() -ShowcaseTrashedDeprecatedType._all_field_names_ = set(['description']) -ShowcaseTrashedDeprecatedType._all_fields_ = [('description', ShowcaseTrashedDeprecatedType.description.validator)] +ShowcaseTrashedDeprecatedType._all_field_names_ = set(["description"]) +ShowcaseTrashedDeprecatedType._all_fields_ = [ + ("description", ShowcaseTrashedDeprecatedType.description.validator) +] ShowcaseTrashedDetails.event_uuid.validator = bv.String() -ShowcaseTrashedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseTrashedDetails._all_fields_ = [('event_uuid', ShowcaseTrashedDetails.event_uuid.validator)] +ShowcaseTrashedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseTrashedDetails._all_fields_ = [("event_uuid", ShowcaseTrashedDetails.event_uuid.validator)] ShowcaseTrashedType.description.validator = bv.String() -ShowcaseTrashedType._all_field_names_ = set(['description']) -ShowcaseTrashedType._all_fields_ = [('description', ShowcaseTrashedType.description.validator)] +ShowcaseTrashedType._all_field_names_ = set(["description"]) +ShowcaseTrashedType._all_fields_ = [("description", ShowcaseTrashedType.description.validator)] ShowcaseUnresolveCommentDetails.event_uuid.validator = bv.String() ShowcaseUnresolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcaseUnresolveCommentDetails._all_field_names_ = set([ - 'event_uuid', - 'comment_text', -]) +ShowcaseUnresolveCommentDetails._all_field_names_ = set( + [ + "event_uuid", + "comment_text", + ] +) ShowcaseUnresolveCommentDetails._all_fields_ = [ - ('event_uuid', ShowcaseUnresolveCommentDetails.event_uuid.validator), - ('comment_text', ShowcaseUnresolveCommentDetails.comment_text.validator), + ("event_uuid", ShowcaseUnresolveCommentDetails.event_uuid.validator), + ("comment_text", ShowcaseUnresolveCommentDetails.comment_text.validator), ] ShowcaseUnresolveCommentType.description.validator = bv.String() -ShowcaseUnresolveCommentType._all_field_names_ = set(['description']) -ShowcaseUnresolveCommentType._all_fields_ = [('description', ShowcaseUnresolveCommentType.description.validator)] +ShowcaseUnresolveCommentType._all_field_names_ = set(["description"]) +ShowcaseUnresolveCommentType._all_fields_ = [ + ("description", ShowcaseUnresolveCommentType.description.validator) +] ShowcaseUntrashedDeprecatedDetails.event_uuid.validator = bv.String() -ShowcaseUntrashedDeprecatedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseUntrashedDeprecatedDetails._all_fields_ = [('event_uuid', ShowcaseUntrashedDeprecatedDetails.event_uuid.validator)] +ShowcaseUntrashedDeprecatedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseUntrashedDeprecatedDetails._all_fields_ = [ + ("event_uuid", ShowcaseUntrashedDeprecatedDetails.event_uuid.validator) +] ShowcaseUntrashedDeprecatedType.description.validator = bv.String() -ShowcaseUntrashedDeprecatedType._all_field_names_ = set(['description']) -ShowcaseUntrashedDeprecatedType._all_fields_ = [('description', ShowcaseUntrashedDeprecatedType.description.validator)] +ShowcaseUntrashedDeprecatedType._all_field_names_ = set(["description"]) +ShowcaseUntrashedDeprecatedType._all_fields_ = [ + ("description", ShowcaseUntrashedDeprecatedType.description.validator) +] ShowcaseUntrashedDetails.event_uuid.validator = bv.String() -ShowcaseUntrashedDetails._all_field_names_ = set(['event_uuid']) -ShowcaseUntrashedDetails._all_fields_ = [('event_uuid', ShowcaseUntrashedDetails.event_uuid.validator)] +ShowcaseUntrashedDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseUntrashedDetails._all_fields_ = [ + ("event_uuid", ShowcaseUntrashedDetails.event_uuid.validator) +] ShowcaseUntrashedType.description.validator = bv.String() -ShowcaseUntrashedType._all_field_names_ = set(['description']) -ShowcaseUntrashedType._all_fields_ = [('description', ShowcaseUntrashedType.description.validator)] +ShowcaseUntrashedType._all_field_names_ = set(["description"]) +ShowcaseUntrashedType._all_fields_ = [("description", ShowcaseUntrashedType.description.validator)] ShowcaseViewDetails.event_uuid.validator = bv.String() -ShowcaseViewDetails._all_field_names_ = set(['event_uuid']) -ShowcaseViewDetails._all_fields_ = [('event_uuid', ShowcaseViewDetails.event_uuid.validator)] +ShowcaseViewDetails._all_field_names_ = set(["event_uuid"]) +ShowcaseViewDetails._all_fields_ = [("event_uuid", ShowcaseViewDetails.event_uuid.validator)] ShowcaseViewType.description.validator = bv.String() -ShowcaseViewType._all_field_names_ = set(['description']) -ShowcaseViewType._all_fields_ = [('description', ShowcaseViewType.description.validator)] +ShowcaseViewType._all_field_names_ = set(["description"]) +ShowcaseViewType._all_fields_ = [("description", ShowcaseViewType.description.validator)] SignExternalSharingPolicy._default_validator = bv.Void() SignExternalSharingPolicy._disabled_validator = bv.Void() SignExternalSharingPolicy._enabled_validator = bv.Void() SignExternalSharingPolicy._other_validator = bv.Void() SignExternalSharingPolicy._tagmap = { - 'default': SignExternalSharingPolicy._default_validator, - 'disabled': SignExternalSharingPolicy._disabled_validator, - 'enabled': SignExternalSharingPolicy._enabled_validator, - 'other': SignExternalSharingPolicy._other_validator, + "default": SignExternalSharingPolicy._default_validator, + "disabled": SignExternalSharingPolicy._disabled_validator, + "enabled": SignExternalSharingPolicy._enabled_validator, + "other": SignExternalSharingPolicy._other_validator, } -SignExternalSharingPolicy.default = SignExternalSharingPolicy('default') -SignExternalSharingPolicy.disabled = SignExternalSharingPolicy('disabled') -SignExternalSharingPolicy.enabled = SignExternalSharingPolicy('enabled') -SignExternalSharingPolicy.other = SignExternalSharingPolicy('other') +SignExternalSharingPolicy.default = SignExternalSharingPolicy("default") +SignExternalSharingPolicy.disabled = SignExternalSharingPolicy("disabled") +SignExternalSharingPolicy.enabled = SignExternalSharingPolicy("enabled") +SignExternalSharingPolicy.other = SignExternalSharingPolicy("other") SignExternalSharingPolicyChangedDetails.new_value.validator = SignExternalSharingPolicy_validator -SignExternalSharingPolicyChangedDetails.previous_value.validator = SignExternalSharingPolicy_validator -SignExternalSharingPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SignExternalSharingPolicyChangedDetails.previous_value.validator = ( + SignExternalSharingPolicy_validator +) +SignExternalSharingPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SignExternalSharingPolicyChangedDetails._all_fields_ = [ - ('new_value', SignExternalSharingPolicyChangedDetails.new_value.validator), - ('previous_value', SignExternalSharingPolicyChangedDetails.previous_value.validator), + ("new_value", SignExternalSharingPolicyChangedDetails.new_value.validator), + ( + "previous_value", + SignExternalSharingPolicyChangedDetails.previous_value.validator, + ), ] SignExternalSharingPolicyChangedType.description.validator = bv.String() -SignExternalSharingPolicyChangedType._all_field_names_ = set(['description']) -SignExternalSharingPolicyChangedType._all_fields_ = [('description', SignExternalSharingPolicyChangedType.description.validator)] +SignExternalSharingPolicyChangedType._all_field_names_ = set(["description"]) +SignExternalSharingPolicyChangedType._all_fields_ = [ + ("description", SignExternalSharingPolicyChangedType.description.validator) +] SignInAsSessionEndDetails._all_field_names_ = set([]) SignInAsSessionEndDetails._all_fields_ = [] SignInAsSessionEndType.description.validator = bv.String() -SignInAsSessionEndType._all_field_names_ = set(['description']) -SignInAsSessionEndType._all_fields_ = [('description', SignInAsSessionEndType.description.validator)] +SignInAsSessionEndType._all_field_names_ = set(["description"]) +SignInAsSessionEndType._all_fields_ = [ + ("description", SignInAsSessionEndType.description.validator) +] SignInAsSessionStartDetails._all_field_names_ = set([]) SignInAsSessionStartDetails._all_fields_ = [] SignInAsSessionStartType.description.validator = bv.String() -SignInAsSessionStartType._all_field_names_ = set(['description']) -SignInAsSessionStartType._all_fields_ = [('description', SignInAsSessionStartType.description.validator)] +SignInAsSessionStartType._all_field_names_ = set(["description"]) +SignInAsSessionStartType._all_fields_ = [ + ("description", SignInAsSessionStartType.description.validator) +] SignSignatureRequestCanceledDetails.recipient.validator = bv.String() SignSignatureRequestCanceledDetails.file_name.validator = bv.String() -SignSignatureRequestCanceledDetails._all_field_names_ = set([ - 'recipient', - 'file_name', -]) +SignSignatureRequestCanceledDetails._all_field_names_ = set( + [ + "recipient", + "file_name", + ] +) SignSignatureRequestCanceledDetails._all_fields_ = [ - ('recipient', SignSignatureRequestCanceledDetails.recipient.validator), - ('file_name', SignSignatureRequestCanceledDetails.file_name.validator), + ("recipient", SignSignatureRequestCanceledDetails.recipient.validator), + ("file_name", SignSignatureRequestCanceledDetails.file_name.validator), ] SignSignatureRequestCanceledType.description.validator = bv.String() -SignSignatureRequestCanceledType._all_field_names_ = set(['description']) -SignSignatureRequestCanceledType._all_fields_ = [('description', SignSignatureRequestCanceledType.description.validator)] +SignSignatureRequestCanceledType._all_field_names_ = set(["description"]) +SignSignatureRequestCanceledType._all_fields_ = [ + ("description", SignSignatureRequestCanceledType.description.validator) +] SignSignatureRequestCompletedDetails.recipient.validator = bv.String() SignSignatureRequestCompletedDetails.file_name.validator = bv.String() -SignSignatureRequestCompletedDetails._all_field_names_ = set([ - 'recipient', - 'file_name', -]) +SignSignatureRequestCompletedDetails._all_field_names_ = set( + [ + "recipient", + "file_name", + ] +) SignSignatureRequestCompletedDetails._all_fields_ = [ - ('recipient', SignSignatureRequestCompletedDetails.recipient.validator), - ('file_name', SignSignatureRequestCompletedDetails.file_name.validator), + ("recipient", SignSignatureRequestCompletedDetails.recipient.validator), + ("file_name", SignSignatureRequestCompletedDetails.file_name.validator), ] SignSignatureRequestCompletedType.description.validator = bv.String() -SignSignatureRequestCompletedType._all_field_names_ = set(['description']) -SignSignatureRequestCompletedType._all_fields_ = [('description', SignSignatureRequestCompletedType.description.validator)] +SignSignatureRequestCompletedType._all_field_names_ = set(["description"]) +SignSignatureRequestCompletedType._all_fields_ = [ + ("description", SignSignatureRequestCompletedType.description.validator) +] SignSignatureRequestDeclinedDetails.recipient.validator = bv.String() SignSignatureRequestDeclinedDetails.file_name.validator = bv.String() -SignSignatureRequestDeclinedDetails._all_field_names_ = set([ - 'recipient', - 'file_name', -]) +SignSignatureRequestDeclinedDetails._all_field_names_ = set( + [ + "recipient", + "file_name", + ] +) SignSignatureRequestDeclinedDetails._all_fields_ = [ - ('recipient', SignSignatureRequestDeclinedDetails.recipient.validator), - ('file_name', SignSignatureRequestDeclinedDetails.file_name.validator), + ("recipient", SignSignatureRequestDeclinedDetails.recipient.validator), + ("file_name", SignSignatureRequestDeclinedDetails.file_name.validator), ] SignSignatureRequestDeclinedType.description.validator = bv.String() -SignSignatureRequestDeclinedType._all_field_names_ = set(['description']) -SignSignatureRequestDeclinedType._all_fields_ = [('description', SignSignatureRequestDeclinedType.description.validator)] +SignSignatureRequestDeclinedType._all_field_names_ = set(["description"]) +SignSignatureRequestDeclinedType._all_fields_ = [ + ("description", SignSignatureRequestDeclinedType.description.validator) +] SignSignatureRequestOpenedDetails.recipient.validator = bv.String() SignSignatureRequestOpenedDetails.file_name.validator = bv.String() -SignSignatureRequestOpenedDetails._all_field_names_ = set([ - 'recipient', - 'file_name', -]) +SignSignatureRequestOpenedDetails._all_field_names_ = set( + [ + "recipient", + "file_name", + ] +) SignSignatureRequestOpenedDetails._all_fields_ = [ - ('recipient', SignSignatureRequestOpenedDetails.recipient.validator), - ('file_name', SignSignatureRequestOpenedDetails.file_name.validator), + ("recipient", SignSignatureRequestOpenedDetails.recipient.validator), + ("file_name", SignSignatureRequestOpenedDetails.file_name.validator), ] SignSignatureRequestOpenedType.description.validator = bv.String() -SignSignatureRequestOpenedType._all_field_names_ = set(['description']) -SignSignatureRequestOpenedType._all_fields_ = [('description', SignSignatureRequestOpenedType.description.validator)] +SignSignatureRequestOpenedType._all_field_names_ = set(["description"]) +SignSignatureRequestOpenedType._all_fields_ = [ + ("description", SignSignatureRequestOpenedType.description.validator) +] SignSignatureRequestReminderSentDetails.recipient.validator = bv.String() SignSignatureRequestReminderSentDetails.file_name.validator = bv.String() -SignSignatureRequestReminderSentDetails._all_field_names_ = set([ - 'recipient', - 'file_name', -]) +SignSignatureRequestReminderSentDetails._all_field_names_ = set( + [ + "recipient", + "file_name", + ] +) SignSignatureRequestReminderSentDetails._all_fields_ = [ - ('recipient', SignSignatureRequestReminderSentDetails.recipient.validator), - ('file_name', SignSignatureRequestReminderSentDetails.file_name.validator), + ("recipient", SignSignatureRequestReminderSentDetails.recipient.validator), + ("file_name", SignSignatureRequestReminderSentDetails.file_name.validator), ] SignSignatureRequestReminderSentType.description.validator = bv.String() -SignSignatureRequestReminderSentType._all_field_names_ = set(['description']) -SignSignatureRequestReminderSentType._all_fields_ = [('description', SignSignatureRequestReminderSentType.description.validator)] +SignSignatureRequestReminderSentType._all_field_names_ = set(["description"]) +SignSignatureRequestReminderSentType._all_fields_ = [ + ("description", SignSignatureRequestReminderSentType.description.validator) +] SignSignatureRequestSentDetails.recipient.validator = bv.String() SignSignatureRequestSentDetails.file_name.validator = bv.String() -SignSignatureRequestSentDetails._all_field_names_ = set([ - 'recipient', - 'file_name', -]) +SignSignatureRequestSentDetails._all_field_names_ = set( + [ + "recipient", + "file_name", + ] +) SignSignatureRequestSentDetails._all_fields_ = [ - ('recipient', SignSignatureRequestSentDetails.recipient.validator), - ('file_name', SignSignatureRequestSentDetails.file_name.validator), + ("recipient", SignSignatureRequestSentDetails.recipient.validator), + ("file_name", SignSignatureRequestSentDetails.file_name.validator), ] SignSignatureRequestSentType.description.validator = bv.String() -SignSignatureRequestSentType._all_field_names_ = set(['description']) -SignSignatureRequestSentType._all_fields_ = [('description', SignSignatureRequestSentType.description.validator)] +SignSignatureRequestSentType._all_field_names_ = set(["description"]) +SignSignatureRequestSentType._all_fields_ = [ + ("description", SignSignatureRequestSentType.description.validator) +] SignTemplateCreatedDetails.access_level.validator = bv.String() SignTemplateCreatedDetails.file_name.validator = bv.String() -SignTemplateCreatedDetails._all_field_names_ = set([ - 'access_level', - 'file_name', -]) +SignTemplateCreatedDetails._all_field_names_ = set( + [ + "access_level", + "file_name", + ] +) SignTemplateCreatedDetails._all_fields_ = [ - ('access_level', SignTemplateCreatedDetails.access_level.validator), - ('file_name', SignTemplateCreatedDetails.file_name.validator), + ("access_level", SignTemplateCreatedDetails.access_level.validator), + ("file_name", SignTemplateCreatedDetails.file_name.validator), ] SignTemplateCreatedType.description.validator = bv.String() -SignTemplateCreatedType._all_field_names_ = set(['description']) -SignTemplateCreatedType._all_fields_ = [('description', SignTemplateCreatedType.description.validator)] - -SignTemplateCreationPermissionChangedDetails.new_value.validator = SignTemplateCreationPermissionPolicy_validator -SignTemplateCreationPermissionChangedDetails.previous_value.validator = SignTemplateCreationPermissionPolicy_validator -SignTemplateCreationPermissionChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SignTemplateCreatedType._all_field_names_ = set(["description"]) +SignTemplateCreatedType._all_fields_ = [ + ("description", SignTemplateCreatedType.description.validator) +] + +SignTemplateCreationPermissionChangedDetails.new_value.validator = ( + SignTemplateCreationPermissionPolicy_validator +) +SignTemplateCreationPermissionChangedDetails.previous_value.validator = ( + SignTemplateCreationPermissionPolicy_validator +) +SignTemplateCreationPermissionChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SignTemplateCreationPermissionChangedDetails._all_fields_ = [ - ('new_value', SignTemplateCreationPermissionChangedDetails.new_value.validator), - ('previous_value', SignTemplateCreationPermissionChangedDetails.previous_value.validator), + ("new_value", SignTemplateCreationPermissionChangedDetails.new_value.validator), + ( + "previous_value", + SignTemplateCreationPermissionChangedDetails.previous_value.validator, + ), ] SignTemplateCreationPermissionChangedType.description.validator = bv.String() -SignTemplateCreationPermissionChangedType._all_field_names_ = set(['description']) -SignTemplateCreationPermissionChangedType._all_fields_ = [('description', SignTemplateCreationPermissionChangedType.description.validator)] +SignTemplateCreationPermissionChangedType._all_field_names_ = set(["description"]) +SignTemplateCreationPermissionChangedType._all_fields_ = [ + ("description", SignTemplateCreationPermissionChangedType.description.validator) +] SignTemplateCreationPermissionPolicy._disabled_validator = bv.Void() SignTemplateCreationPermissionPolicy._enabled_validator = bv.Void() SignTemplateCreationPermissionPolicy._other_validator = bv.Void() SignTemplateCreationPermissionPolicy._tagmap = { - 'disabled': SignTemplateCreationPermissionPolicy._disabled_validator, - 'enabled': SignTemplateCreationPermissionPolicy._enabled_validator, - 'other': SignTemplateCreationPermissionPolicy._other_validator, + "disabled": SignTemplateCreationPermissionPolicy._disabled_validator, + "enabled": SignTemplateCreationPermissionPolicy._enabled_validator, + "other": SignTemplateCreationPermissionPolicy._other_validator, } -SignTemplateCreationPermissionPolicy.disabled = SignTemplateCreationPermissionPolicy('disabled') -SignTemplateCreationPermissionPolicy.enabled = SignTemplateCreationPermissionPolicy('enabled') -SignTemplateCreationPermissionPolicy.other = SignTemplateCreationPermissionPolicy('other') +SignTemplateCreationPermissionPolicy.disabled = SignTemplateCreationPermissionPolicy("disabled") +SignTemplateCreationPermissionPolicy.enabled = SignTemplateCreationPermissionPolicy("enabled") +SignTemplateCreationPermissionPolicy.other = SignTemplateCreationPermissionPolicy("other") SignTemplateSharedDetails.access_level.validator = bv.String() SignTemplateSharedDetails.file_name.validator = bv.String() -SignTemplateSharedDetails._all_field_names_ = set([ - 'access_level', - 'file_name', -]) +SignTemplateSharedDetails._all_field_names_ = set( + [ + "access_level", + "file_name", + ] +) SignTemplateSharedDetails._all_fields_ = [ - ('access_level', SignTemplateSharedDetails.access_level.validator), - ('file_name', SignTemplateSharedDetails.file_name.validator), + ("access_level", SignTemplateSharedDetails.access_level.validator), + ("file_name", SignTemplateSharedDetails.file_name.validator), ] SignTemplateSharedType.description.validator = bv.String() -SignTemplateSharedType._all_field_names_ = set(['description']) -SignTemplateSharedType._all_fields_ = [('description', SignTemplateSharedType.description.validator)] - -SmartSyncChangePolicyDetails.new_value.validator = bv.Nullable(team_policies.SmartSyncPolicy_validator) -SmartSyncChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.SmartSyncPolicy_validator) -SmartSyncChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SignTemplateSharedType._all_field_names_ = set(["description"]) +SignTemplateSharedType._all_fields_ = [ + ("description", SignTemplateSharedType.description.validator) +] + +SmartSyncChangePolicyDetails.new_value.validator = bv.Nullable( + team_policies.SmartSyncPolicy_validator +) +SmartSyncChangePolicyDetails.previous_value.validator = bv.Nullable( + team_policies.SmartSyncPolicy_validator +) +SmartSyncChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SmartSyncChangePolicyDetails._all_fields_ = [ - ('new_value', SmartSyncChangePolicyDetails.new_value.validator), - ('previous_value', SmartSyncChangePolicyDetails.previous_value.validator), + ("new_value", SmartSyncChangePolicyDetails.new_value.validator), + ("previous_value", SmartSyncChangePolicyDetails.previous_value.validator), ] SmartSyncChangePolicyType.description.validator = bv.String() -SmartSyncChangePolicyType._all_field_names_ = set(['description']) -SmartSyncChangePolicyType._all_fields_ = [('description', SmartSyncChangePolicyType.description.validator)] +SmartSyncChangePolicyType._all_field_names_ = set(["description"]) +SmartSyncChangePolicyType._all_fields_ = [ + ("description", SmartSyncChangePolicyType.description.validator) +] SmartSyncCreateAdminPrivilegeReportDetails._all_field_names_ = set([]) SmartSyncCreateAdminPrivilegeReportDetails._all_fields_ = [] SmartSyncCreateAdminPrivilegeReportType.description.validator = bv.String() -SmartSyncCreateAdminPrivilegeReportType._all_field_names_ = set(['description']) -SmartSyncCreateAdminPrivilegeReportType._all_fields_ = [('description', SmartSyncCreateAdminPrivilegeReportType.description.validator)] +SmartSyncCreateAdminPrivilegeReportType._all_field_names_ = set(["description"]) +SmartSyncCreateAdminPrivilegeReportType._all_fields_ = [ + ("description", SmartSyncCreateAdminPrivilegeReportType.description.validator) +] SmartSyncNotOptOutDetails.previous_value.validator = SmartSyncOptOutPolicy_validator SmartSyncNotOptOutDetails.new_value.validator = SmartSyncOptOutPolicy_validator -SmartSyncNotOptOutDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +SmartSyncNotOptOutDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) SmartSyncNotOptOutDetails._all_fields_ = [ - ('previous_value', SmartSyncNotOptOutDetails.previous_value.validator), - ('new_value', SmartSyncNotOptOutDetails.new_value.validator), + ("previous_value", SmartSyncNotOptOutDetails.previous_value.validator), + ("new_value", SmartSyncNotOptOutDetails.new_value.validator), ] SmartSyncNotOptOutType.description.validator = bv.String() -SmartSyncNotOptOutType._all_field_names_ = set(['description']) -SmartSyncNotOptOutType._all_fields_ = [('description', SmartSyncNotOptOutType.description.validator)] +SmartSyncNotOptOutType._all_field_names_ = set(["description"]) +SmartSyncNotOptOutType._all_fields_ = [ + ("description", SmartSyncNotOptOutType.description.validator) +] SmartSyncOptOutDetails.previous_value.validator = SmartSyncOptOutPolicy_validator SmartSyncOptOutDetails.new_value.validator = SmartSyncOptOutPolicy_validator -SmartSyncOptOutDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +SmartSyncOptOutDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) SmartSyncOptOutDetails._all_fields_ = [ - ('previous_value', SmartSyncOptOutDetails.previous_value.validator), - ('new_value', SmartSyncOptOutDetails.new_value.validator), + ("previous_value", SmartSyncOptOutDetails.previous_value.validator), + ("new_value", SmartSyncOptOutDetails.new_value.validator), ] SmartSyncOptOutPolicy._default_validator = bv.Void() SmartSyncOptOutPolicy._opted_out_validator = bv.Void() SmartSyncOptOutPolicy._other_validator = bv.Void() SmartSyncOptOutPolicy._tagmap = { - 'default': SmartSyncOptOutPolicy._default_validator, - 'opted_out': SmartSyncOptOutPolicy._opted_out_validator, - 'other': SmartSyncOptOutPolicy._other_validator, + "default": SmartSyncOptOutPolicy._default_validator, + "opted_out": SmartSyncOptOutPolicy._opted_out_validator, + "other": SmartSyncOptOutPolicy._other_validator, } -SmartSyncOptOutPolicy.default = SmartSyncOptOutPolicy('default') -SmartSyncOptOutPolicy.opted_out = SmartSyncOptOutPolicy('opted_out') -SmartSyncOptOutPolicy.other = SmartSyncOptOutPolicy('other') +SmartSyncOptOutPolicy.default = SmartSyncOptOutPolicy("default") +SmartSyncOptOutPolicy.opted_out = SmartSyncOptOutPolicy("opted_out") +SmartSyncOptOutPolicy.other = SmartSyncOptOutPolicy("other") SmartSyncOptOutType.description.validator = bv.String() -SmartSyncOptOutType._all_field_names_ = set(['description']) -SmartSyncOptOutType._all_fields_ = [('description', SmartSyncOptOutType.description.validator)] - -SmarterSmartSyncPolicyChangedDetails.previous_value.validator = team_policies.SmarterSmartSyncPolicyState_validator -SmarterSmartSyncPolicyChangedDetails.new_value.validator = team_policies.SmarterSmartSyncPolicyState_validator -SmarterSmartSyncPolicyChangedDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +SmartSyncOptOutType._all_field_names_ = set(["description"]) +SmartSyncOptOutType._all_fields_ = [("description", SmartSyncOptOutType.description.validator)] + +SmarterSmartSyncPolicyChangedDetails.previous_value.validator = ( + team_policies.SmarterSmartSyncPolicyState_validator +) +SmarterSmartSyncPolicyChangedDetails.new_value.validator = ( + team_policies.SmarterSmartSyncPolicyState_validator +) +SmarterSmartSyncPolicyChangedDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) SmarterSmartSyncPolicyChangedDetails._all_fields_ = [ - ('previous_value', SmarterSmartSyncPolicyChangedDetails.previous_value.validator), - ('new_value', SmarterSmartSyncPolicyChangedDetails.new_value.validator), + ("previous_value", SmarterSmartSyncPolicyChangedDetails.previous_value.validator), + ("new_value", SmarterSmartSyncPolicyChangedDetails.new_value.validator), ] SmarterSmartSyncPolicyChangedType.description.validator = bv.String() -SmarterSmartSyncPolicyChangedType._all_field_names_ = set(['description']) -SmarterSmartSyncPolicyChangedType._all_fields_ = [('description', SmarterSmartSyncPolicyChangedType.description.validator)] +SmarterSmartSyncPolicyChangedType._all_field_names_ = set(["description"]) +SmarterSmartSyncPolicyChangedType._all_fields_ = [ + ("description", SmarterSmartSyncPolicyChangedType.description.validator) +] SpaceCapsType._hard_validator = bv.Void() SpaceCapsType._off_validator = bv.Void() SpaceCapsType._soft_validator = bv.Void() SpaceCapsType._other_validator = bv.Void() SpaceCapsType._tagmap = { - 'hard': SpaceCapsType._hard_validator, - 'off': SpaceCapsType._off_validator, - 'soft': SpaceCapsType._soft_validator, - 'other': SpaceCapsType._other_validator, + "hard": SpaceCapsType._hard_validator, + "off": SpaceCapsType._off_validator, + "soft": SpaceCapsType._soft_validator, + "other": SpaceCapsType._other_validator, } -SpaceCapsType.hard = SpaceCapsType('hard') -SpaceCapsType.off = SpaceCapsType('off') -SpaceCapsType.soft = SpaceCapsType('soft') -SpaceCapsType.other = SpaceCapsType('other') +SpaceCapsType.hard = SpaceCapsType("hard") +SpaceCapsType.off = SpaceCapsType("off") +SpaceCapsType.soft = SpaceCapsType("soft") +SpaceCapsType.other = SpaceCapsType("other") SpaceLimitsStatus._near_quota_validator = bv.Void() SpaceLimitsStatus._over_quota_validator = bv.Void() SpaceLimitsStatus._within_quota_validator = bv.Void() SpaceLimitsStatus._other_validator = bv.Void() SpaceLimitsStatus._tagmap = { - 'near_quota': SpaceLimitsStatus._near_quota_validator, - 'over_quota': SpaceLimitsStatus._over_quota_validator, - 'within_quota': SpaceLimitsStatus._within_quota_validator, - 'other': SpaceLimitsStatus._other_validator, + "near_quota": SpaceLimitsStatus._near_quota_validator, + "over_quota": SpaceLimitsStatus._over_quota_validator, + "within_quota": SpaceLimitsStatus._within_quota_validator, + "other": SpaceLimitsStatus._other_validator, } -SpaceLimitsStatus.near_quota = SpaceLimitsStatus('near_quota') -SpaceLimitsStatus.over_quota = SpaceLimitsStatus('over_quota') -SpaceLimitsStatus.within_quota = SpaceLimitsStatus('within_quota') -SpaceLimitsStatus.other = SpaceLimitsStatus('other') +SpaceLimitsStatus.near_quota = SpaceLimitsStatus("near_quota") +SpaceLimitsStatus.over_quota = SpaceLimitsStatus("over_quota") +SpaceLimitsStatus.within_quota = SpaceLimitsStatus("within_quota") +SpaceLimitsStatus.other = SpaceLimitsStatus("other") SsoAddCertDetails.certificate_details.validator = Certificate_validator -SsoAddCertDetails._all_field_names_ = set(['certificate_details']) -SsoAddCertDetails._all_fields_ = [('certificate_details', SsoAddCertDetails.certificate_details.validator)] +SsoAddCertDetails._all_field_names_ = set(["certificate_details"]) +SsoAddCertDetails._all_fields_ = [ + ("certificate_details", SsoAddCertDetails.certificate_details.validator) +] SsoAddCertType.description.validator = bv.String() -SsoAddCertType._all_field_names_ = set(['description']) -SsoAddCertType._all_fields_ = [('description', SsoAddCertType.description.validator)] +SsoAddCertType._all_field_names_ = set(["description"]) +SsoAddCertType._all_fields_ = [("description", SsoAddCertType.description.validator)] SsoAddLoginUrlDetails.new_value.validator = bv.String() -SsoAddLoginUrlDetails._all_field_names_ = set(['new_value']) -SsoAddLoginUrlDetails._all_fields_ = [('new_value', SsoAddLoginUrlDetails.new_value.validator)] +SsoAddLoginUrlDetails._all_field_names_ = set(["new_value"]) +SsoAddLoginUrlDetails._all_fields_ = [("new_value", SsoAddLoginUrlDetails.new_value.validator)] SsoAddLoginUrlType.description.validator = bv.String() -SsoAddLoginUrlType._all_field_names_ = set(['description']) -SsoAddLoginUrlType._all_fields_ = [('description', SsoAddLoginUrlType.description.validator)] +SsoAddLoginUrlType._all_field_names_ = set(["description"]) +SsoAddLoginUrlType._all_fields_ = [("description", SsoAddLoginUrlType.description.validator)] SsoAddLogoutUrlDetails.new_value.validator = bv.Nullable(bv.String()) -SsoAddLogoutUrlDetails._all_field_names_ = set(['new_value']) -SsoAddLogoutUrlDetails._all_fields_ = [('new_value', SsoAddLogoutUrlDetails.new_value.validator)] +SsoAddLogoutUrlDetails._all_field_names_ = set(["new_value"]) +SsoAddLogoutUrlDetails._all_fields_ = [("new_value", SsoAddLogoutUrlDetails.new_value.validator)] SsoAddLogoutUrlType.description.validator = bv.String() -SsoAddLogoutUrlType._all_field_names_ = set(['description']) -SsoAddLogoutUrlType._all_fields_ = [('description', SsoAddLogoutUrlType.description.validator)] +SsoAddLogoutUrlType._all_field_names_ = set(["description"]) +SsoAddLogoutUrlType._all_fields_ = [("description", SsoAddLogoutUrlType.description.validator)] SsoChangeCertDetails.previous_certificate_details.validator = bv.Nullable(Certificate_validator) SsoChangeCertDetails.new_certificate_details.validator = Certificate_validator -SsoChangeCertDetails._all_field_names_ = set([ - 'previous_certificate_details', - 'new_certificate_details', -]) +SsoChangeCertDetails._all_field_names_ = set( + [ + "previous_certificate_details", + "new_certificate_details", + ] +) SsoChangeCertDetails._all_fields_ = [ - ('previous_certificate_details', SsoChangeCertDetails.previous_certificate_details.validator), - ('new_certificate_details', SsoChangeCertDetails.new_certificate_details.validator), + ( + "previous_certificate_details", + SsoChangeCertDetails.previous_certificate_details.validator, + ), + ("new_certificate_details", SsoChangeCertDetails.new_certificate_details.validator), ] SsoChangeCertType.description.validator = bv.String() -SsoChangeCertType._all_field_names_ = set(['description']) -SsoChangeCertType._all_fields_ = [('description', SsoChangeCertType.description.validator)] +SsoChangeCertType._all_field_names_ = set(["description"]) +SsoChangeCertType._all_fields_ = [("description", SsoChangeCertType.description.validator)] SsoChangeLoginUrlDetails.previous_value.validator = bv.String() SsoChangeLoginUrlDetails.new_value.validator = bv.String() -SsoChangeLoginUrlDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +SsoChangeLoginUrlDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) SsoChangeLoginUrlDetails._all_fields_ = [ - ('previous_value', SsoChangeLoginUrlDetails.previous_value.validator), - ('new_value', SsoChangeLoginUrlDetails.new_value.validator), + ("previous_value", SsoChangeLoginUrlDetails.previous_value.validator), + ("new_value", SsoChangeLoginUrlDetails.new_value.validator), ] SsoChangeLoginUrlType.description.validator = bv.String() -SsoChangeLoginUrlType._all_field_names_ = set(['description']) -SsoChangeLoginUrlType._all_fields_ = [('description', SsoChangeLoginUrlType.description.validator)] +SsoChangeLoginUrlType._all_field_names_ = set(["description"]) +SsoChangeLoginUrlType._all_fields_ = [("description", SsoChangeLoginUrlType.description.validator)] SsoChangeLogoutUrlDetails.previous_value.validator = bv.Nullable(bv.String()) SsoChangeLogoutUrlDetails.new_value.validator = bv.Nullable(bv.String()) -SsoChangeLogoutUrlDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +SsoChangeLogoutUrlDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) SsoChangeLogoutUrlDetails._all_fields_ = [ - ('previous_value', SsoChangeLogoutUrlDetails.previous_value.validator), - ('new_value', SsoChangeLogoutUrlDetails.new_value.validator), + ("previous_value", SsoChangeLogoutUrlDetails.previous_value.validator), + ("new_value", SsoChangeLogoutUrlDetails.new_value.validator), ] SsoChangeLogoutUrlType.description.validator = bv.String() -SsoChangeLogoutUrlType._all_field_names_ = set(['description']) -SsoChangeLogoutUrlType._all_fields_ = [('description', SsoChangeLogoutUrlType.description.validator)] +SsoChangeLogoutUrlType._all_field_names_ = set(["description"]) +SsoChangeLogoutUrlType._all_fields_ = [ + ("description", SsoChangeLogoutUrlType.description.validator) +] SsoChangePolicyDetails.new_value.validator = team_policies.SsoPolicy_validator SsoChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.SsoPolicy_validator) -SsoChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +SsoChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) SsoChangePolicyDetails._all_fields_ = [ - ('new_value', SsoChangePolicyDetails.new_value.validator), - ('previous_value', SsoChangePolicyDetails.previous_value.validator), + ("new_value", SsoChangePolicyDetails.new_value.validator), + ("previous_value", SsoChangePolicyDetails.previous_value.validator), ] SsoChangePolicyType.description.validator = bv.String() -SsoChangePolicyType._all_field_names_ = set(['description']) -SsoChangePolicyType._all_fields_ = [('description', SsoChangePolicyType.description.validator)] +SsoChangePolicyType._all_field_names_ = set(["description"]) +SsoChangePolicyType._all_fields_ = [("description", SsoChangePolicyType.description.validator)] SsoChangeSamlIdentityModeDetails.previous_value.validator = bv.Int64() SsoChangeSamlIdentityModeDetails.new_value.validator = bv.Int64() -SsoChangeSamlIdentityModeDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +SsoChangeSamlIdentityModeDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) SsoChangeSamlIdentityModeDetails._all_fields_ = [ - ('previous_value', SsoChangeSamlIdentityModeDetails.previous_value.validator), - ('new_value', SsoChangeSamlIdentityModeDetails.new_value.validator), + ("previous_value", SsoChangeSamlIdentityModeDetails.previous_value.validator), + ("new_value", SsoChangeSamlIdentityModeDetails.new_value.validator), ] SsoChangeSamlIdentityModeType.description.validator = bv.String() -SsoChangeSamlIdentityModeType._all_field_names_ = set(['description']) -SsoChangeSamlIdentityModeType._all_fields_ = [('description', SsoChangeSamlIdentityModeType.description.validator)] +SsoChangeSamlIdentityModeType._all_field_names_ = set(["description"]) +SsoChangeSamlIdentityModeType._all_fields_ = [ + ("description", SsoChangeSamlIdentityModeType.description.validator) +] SsoErrorDetails.error_details.validator = FailureDetailsLogInfo_validator -SsoErrorDetails._all_field_names_ = set(['error_details']) -SsoErrorDetails._all_fields_ = [('error_details', SsoErrorDetails.error_details.validator)] +SsoErrorDetails._all_field_names_ = set(["error_details"]) +SsoErrorDetails._all_fields_ = [("error_details", SsoErrorDetails.error_details.validator)] SsoErrorType.description.validator = bv.String() -SsoErrorType._all_field_names_ = set(['description']) -SsoErrorType._all_fields_ = [('description', SsoErrorType.description.validator)] +SsoErrorType._all_field_names_ = set(["description"]) +SsoErrorType._all_fields_ = [("description", SsoErrorType.description.validator)] SsoRemoveCertDetails._all_field_names_ = set([]) SsoRemoveCertDetails._all_fields_ = [] SsoRemoveCertType.description.validator = bv.String() -SsoRemoveCertType._all_field_names_ = set(['description']) -SsoRemoveCertType._all_fields_ = [('description', SsoRemoveCertType.description.validator)] +SsoRemoveCertType._all_field_names_ = set(["description"]) +SsoRemoveCertType._all_fields_ = [("description", SsoRemoveCertType.description.validator)] SsoRemoveLoginUrlDetails.previous_value.validator = bv.String() -SsoRemoveLoginUrlDetails._all_field_names_ = set(['previous_value']) -SsoRemoveLoginUrlDetails._all_fields_ = [('previous_value', SsoRemoveLoginUrlDetails.previous_value.validator)] +SsoRemoveLoginUrlDetails._all_field_names_ = set(["previous_value"]) +SsoRemoveLoginUrlDetails._all_fields_ = [ + ("previous_value", SsoRemoveLoginUrlDetails.previous_value.validator) +] SsoRemoveLoginUrlType.description.validator = bv.String() -SsoRemoveLoginUrlType._all_field_names_ = set(['description']) -SsoRemoveLoginUrlType._all_fields_ = [('description', SsoRemoveLoginUrlType.description.validator)] +SsoRemoveLoginUrlType._all_field_names_ = set(["description"]) +SsoRemoveLoginUrlType._all_fields_ = [("description", SsoRemoveLoginUrlType.description.validator)] SsoRemoveLogoutUrlDetails.previous_value.validator = bv.String() -SsoRemoveLogoutUrlDetails._all_field_names_ = set(['previous_value']) -SsoRemoveLogoutUrlDetails._all_fields_ = [('previous_value', SsoRemoveLogoutUrlDetails.previous_value.validator)] +SsoRemoveLogoutUrlDetails._all_field_names_ = set(["previous_value"]) +SsoRemoveLogoutUrlDetails._all_fields_ = [ + ("previous_value", SsoRemoveLogoutUrlDetails.previous_value.validator) +] SsoRemoveLogoutUrlType.description.validator = bv.String() -SsoRemoveLogoutUrlType._all_field_names_ = set(['description']) -SsoRemoveLogoutUrlType._all_fields_ = [('description', SsoRemoveLogoutUrlType.description.validator)] +SsoRemoveLogoutUrlType._all_field_names_ = set(["description"]) +SsoRemoveLogoutUrlType._all_fields_ = [ + ("description", SsoRemoveLogoutUrlType.description.validator) +] StackCrossTeamAccessPolicy._allowed_validator = bv.Void() StackCrossTeamAccessPolicy._default_validator = bv.Void() StackCrossTeamAccessPolicy._disallowed_validator = bv.Void() StackCrossTeamAccessPolicy._other_validator = bv.Void() StackCrossTeamAccessPolicy._tagmap = { - 'allowed': StackCrossTeamAccessPolicy._allowed_validator, - 'default': StackCrossTeamAccessPolicy._default_validator, - 'disallowed': StackCrossTeamAccessPolicy._disallowed_validator, - 'other': StackCrossTeamAccessPolicy._other_validator, + "allowed": StackCrossTeamAccessPolicy._allowed_validator, + "default": StackCrossTeamAccessPolicy._default_validator, + "disallowed": StackCrossTeamAccessPolicy._disallowed_validator, + "other": StackCrossTeamAccessPolicy._other_validator, } -StackCrossTeamAccessPolicy.allowed = StackCrossTeamAccessPolicy('allowed') -StackCrossTeamAccessPolicy.default = StackCrossTeamAccessPolicy('default') -StackCrossTeamAccessPolicy.disallowed = StackCrossTeamAccessPolicy('disallowed') -StackCrossTeamAccessPolicy.other = StackCrossTeamAccessPolicy('other') +StackCrossTeamAccessPolicy.allowed = StackCrossTeamAccessPolicy("allowed") +StackCrossTeamAccessPolicy.default = StackCrossTeamAccessPolicy("default") +StackCrossTeamAccessPolicy.disallowed = StackCrossTeamAccessPolicy("disallowed") +StackCrossTeamAccessPolicy.other = StackCrossTeamAccessPolicy("other") StackCrossTeamAccessPolicyChangedDetails.new_value.validator = StackCrossTeamAccessPolicy_validator -StackCrossTeamAccessPolicyChangedDetails.previous_value.validator = bv.Nullable(StackCrossTeamAccessPolicy_validator) -StackCrossTeamAccessPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +StackCrossTeamAccessPolicyChangedDetails.previous_value.validator = bv.Nullable( + StackCrossTeamAccessPolicy_validator +) +StackCrossTeamAccessPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) StackCrossTeamAccessPolicyChangedDetails._all_fields_ = [ - ('new_value', StackCrossTeamAccessPolicyChangedDetails.new_value.validator), - ('previous_value', StackCrossTeamAccessPolicyChangedDetails.previous_value.validator), + ("new_value", StackCrossTeamAccessPolicyChangedDetails.new_value.validator), + ( + "previous_value", + StackCrossTeamAccessPolicyChangedDetails.previous_value.validator, + ), ] StackCrossTeamAccessPolicyChangedType.description.validator = bv.String() -StackCrossTeamAccessPolicyChangedType._all_field_names_ = set(['description']) -StackCrossTeamAccessPolicyChangedType._all_fields_ = [('description', StackCrossTeamAccessPolicyChangedType.description.validator)] +StackCrossTeamAccessPolicyChangedType._all_field_names_ = set(["description"]) +StackCrossTeamAccessPolicyChangedType._all_fields_ = [ + ("description", StackCrossTeamAccessPolicyChangedType.description.validator) +] StartedEnterpriseAdminSessionDetails.federation_extra_details.validator = FedExtraDetails_validator -StartedEnterpriseAdminSessionDetails._all_field_names_ = set(['federation_extra_details']) -StartedEnterpriseAdminSessionDetails._all_fields_ = [('federation_extra_details', StartedEnterpriseAdminSessionDetails.federation_extra_details.validator)] +StartedEnterpriseAdminSessionDetails._all_field_names_ = set(["federation_extra_details"]) +StartedEnterpriseAdminSessionDetails._all_fields_ = [ + ( + "federation_extra_details", + StartedEnterpriseAdminSessionDetails.federation_extra_details.validator, + ) +] StartedEnterpriseAdminSessionType.description.validator = bv.String() -StartedEnterpriseAdminSessionType._all_field_names_ = set(['description']) -StartedEnterpriseAdminSessionType._all_fields_ = [('description', StartedEnterpriseAdminSessionType.description.validator)] +StartedEnterpriseAdminSessionType._all_field_names_ = set(["description"]) +StartedEnterpriseAdminSessionType._all_fields_ = [ + ("description", StartedEnterpriseAdminSessionType.description.validator) +] TeamActivityCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator TeamActivityCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -TeamActivityCreateReportDetails._all_field_names_ = set([ - 'start_date', - 'end_date', -]) +TeamActivityCreateReportDetails._all_field_names_ = set( + [ + "start_date", + "end_date", + ] +) TeamActivityCreateReportDetails._all_fields_ = [ - ('start_date', TeamActivityCreateReportDetails.start_date.validator), - ('end_date', TeamActivityCreateReportDetails.end_date.validator), + ("start_date", TeamActivityCreateReportDetails.start_date.validator), + ("end_date", TeamActivityCreateReportDetails.end_date.validator), ] -TeamActivityCreateReportFailDetails.failure_reason.validator = team.TeamReportFailureReason_validator -TeamActivityCreateReportFailDetails._all_field_names_ = set(['failure_reason']) -TeamActivityCreateReportFailDetails._all_fields_ = [('failure_reason', TeamActivityCreateReportFailDetails.failure_reason.validator)] +TeamActivityCreateReportFailDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +TeamActivityCreateReportFailDetails._all_field_names_ = set(["failure_reason"]) +TeamActivityCreateReportFailDetails._all_fields_ = [ + ("failure_reason", TeamActivityCreateReportFailDetails.failure_reason.validator) +] TeamActivityCreateReportFailType.description.validator = bv.String() -TeamActivityCreateReportFailType._all_field_names_ = set(['description']) -TeamActivityCreateReportFailType._all_fields_ = [('description', TeamActivityCreateReportFailType.description.validator)] +TeamActivityCreateReportFailType._all_field_names_ = set(["description"]) +TeamActivityCreateReportFailType._all_fields_ = [ + ("description", TeamActivityCreateReportFailType.description.validator) +] TeamActivityCreateReportType.description.validator = bv.String() -TeamActivityCreateReportType._all_field_names_ = set(['description']) -TeamActivityCreateReportType._all_fields_ = [('description', TeamActivityCreateReportType.description.validator)] +TeamActivityCreateReportType._all_field_names_ = set(["description"]) +TeamActivityCreateReportType._all_fields_ = [ + ("description", TeamActivityCreateReportType.description.validator) +] TeamBrandingPolicy._disabled_validator = bv.Void() TeamBrandingPolicy._enabled_validator = bv.Void() TeamBrandingPolicy._other_validator = bv.Void() TeamBrandingPolicy._tagmap = { - 'disabled': TeamBrandingPolicy._disabled_validator, - 'enabled': TeamBrandingPolicy._enabled_validator, - 'other': TeamBrandingPolicy._other_validator, + "disabled": TeamBrandingPolicy._disabled_validator, + "enabled": TeamBrandingPolicy._enabled_validator, + "other": TeamBrandingPolicy._other_validator, } -TeamBrandingPolicy.disabled = TeamBrandingPolicy('disabled') -TeamBrandingPolicy.enabled = TeamBrandingPolicy('enabled') -TeamBrandingPolicy.other = TeamBrandingPolicy('other') +TeamBrandingPolicy.disabled = TeamBrandingPolicy("disabled") +TeamBrandingPolicy.enabled = TeamBrandingPolicy("enabled") +TeamBrandingPolicy.other = TeamBrandingPolicy("other") TeamBrandingPolicyChangedDetails.new_value.validator = TeamBrandingPolicy_validator TeamBrandingPolicyChangedDetails.previous_value.validator = TeamBrandingPolicy_validator -TeamBrandingPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +TeamBrandingPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) TeamBrandingPolicyChangedDetails._all_fields_ = [ - ('new_value', TeamBrandingPolicyChangedDetails.new_value.validator), - ('previous_value', TeamBrandingPolicyChangedDetails.previous_value.validator), + ("new_value", TeamBrandingPolicyChangedDetails.new_value.validator), + ("previous_value", TeamBrandingPolicyChangedDetails.previous_value.validator), ] TeamBrandingPolicyChangedType.description.validator = bv.String() -TeamBrandingPolicyChangedType._all_field_names_ = set(['description']) -TeamBrandingPolicyChangedType._all_fields_ = [('description', TeamBrandingPolicyChangedType.description.validator)] +TeamBrandingPolicyChangedType._all_field_names_ = set(["description"]) +TeamBrandingPolicyChangedType._all_fields_ = [ + ("description", TeamBrandingPolicyChangedType.description.validator) +] TeamDetails.team.validator = bv.String() -TeamDetails._all_field_names_ = set(['team']) -TeamDetails._all_fields_ = [('team', TeamDetails.team.validator)] +TeamDetails._all_field_names_ = set(["team"]) +TeamDetails._all_fields_ = [("team", TeamDetails.team.validator)] TeamEncryptionKeyActivateKeyDetails.key_management_type.validator = bv.String() -TeamEncryptionKeyActivateKeyDetails._all_field_names_ = set(['key_management_type']) -TeamEncryptionKeyActivateKeyDetails._all_fields_ = [('key_management_type', TeamEncryptionKeyActivateKeyDetails.key_management_type.validator)] +TeamEncryptionKeyActivateKeyDetails._all_field_names_ = set(["key_management_type"]) +TeamEncryptionKeyActivateKeyDetails._all_fields_ = [ + ( + "key_management_type", + TeamEncryptionKeyActivateKeyDetails.key_management_type.validator, + ) +] TeamEncryptionKeyActivateKeyType.description.validator = bv.String() -TeamEncryptionKeyActivateKeyType._all_field_names_ = set(['description']) -TeamEncryptionKeyActivateKeyType._all_fields_ = [('description', TeamEncryptionKeyActivateKeyType.description.validator)] +TeamEncryptionKeyActivateKeyType._all_field_names_ = set(["description"]) +TeamEncryptionKeyActivateKeyType._all_fields_ = [ + ("description", TeamEncryptionKeyActivateKeyType.description.validator) +] TeamEncryptionKeyCancelKeyDeletionDetails._all_field_names_ = set([]) TeamEncryptionKeyCancelKeyDeletionDetails._all_fields_ = [] TeamEncryptionKeyCancelKeyDeletionType.description.validator = bv.String() -TeamEncryptionKeyCancelKeyDeletionType._all_field_names_ = set(['description']) -TeamEncryptionKeyCancelKeyDeletionType._all_fields_ = [('description', TeamEncryptionKeyCancelKeyDeletionType.description.validator)] +TeamEncryptionKeyCancelKeyDeletionType._all_field_names_ = set(["description"]) +TeamEncryptionKeyCancelKeyDeletionType._all_fields_ = [ + ("description", TeamEncryptionKeyCancelKeyDeletionType.description.validator) +] TeamEncryptionKeyCreateKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyCreateKeyDetails._all_fields_ = [] TeamEncryptionKeyCreateKeyType.description.validator = bv.String() -TeamEncryptionKeyCreateKeyType._all_field_names_ = set(['description']) -TeamEncryptionKeyCreateKeyType._all_fields_ = [('description', TeamEncryptionKeyCreateKeyType.description.validator)] +TeamEncryptionKeyCreateKeyType._all_field_names_ = set(["description"]) +TeamEncryptionKeyCreateKeyType._all_fields_ = [ + ("description", TeamEncryptionKeyCreateKeyType.description.validator) +] TeamEncryptionKeyDeactivateKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyDeactivateKeyDetails._all_fields_ = [] TeamEncryptionKeyDeactivateKeyType.description.validator = bv.String() -TeamEncryptionKeyDeactivateKeyType._all_field_names_ = set(['description']) -TeamEncryptionKeyDeactivateKeyType._all_fields_ = [('description', TeamEncryptionKeyDeactivateKeyType.description.validator)] +TeamEncryptionKeyDeactivateKeyType._all_field_names_ = set(["description"]) +TeamEncryptionKeyDeactivateKeyType._all_fields_ = [ + ("description", TeamEncryptionKeyDeactivateKeyType.description.validator) +] TeamEncryptionKeyDeleteKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyDeleteKeyDetails._all_fields_ = [] TeamEncryptionKeyDeleteKeyType.description.validator = bv.String() -TeamEncryptionKeyDeleteKeyType._all_field_names_ = set(['description']) -TeamEncryptionKeyDeleteKeyType._all_fields_ = [('description', TeamEncryptionKeyDeleteKeyType.description.validator)] +TeamEncryptionKeyDeleteKeyType._all_field_names_ = set(["description"]) +TeamEncryptionKeyDeleteKeyType._all_fields_ = [ + ("description", TeamEncryptionKeyDeleteKeyType.description.validator) +] TeamEncryptionKeyDisableKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyDisableKeyDetails._all_fields_ = [] TeamEncryptionKeyDisableKeyType.description.validator = bv.String() -TeamEncryptionKeyDisableKeyType._all_field_names_ = set(['description']) -TeamEncryptionKeyDisableKeyType._all_fields_ = [('description', TeamEncryptionKeyDisableKeyType.description.validator)] +TeamEncryptionKeyDisableKeyType._all_field_names_ = set(["description"]) +TeamEncryptionKeyDisableKeyType._all_fields_ = [ + ("description", TeamEncryptionKeyDisableKeyType.description.validator) +] TeamEncryptionKeyEnableKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyEnableKeyDetails._all_fields_ = [] TeamEncryptionKeyEnableKeyType.description.validator = bv.String() -TeamEncryptionKeyEnableKeyType._all_field_names_ = set(['description']) -TeamEncryptionKeyEnableKeyType._all_fields_ = [('description', TeamEncryptionKeyEnableKeyType.description.validator)] +TeamEncryptionKeyEnableKeyType._all_field_names_ = set(["description"]) +TeamEncryptionKeyEnableKeyType._all_fields_ = [ + ("description", TeamEncryptionKeyEnableKeyType.description.validator) +] TeamEncryptionKeyRotateKeyDetails._all_field_names_ = set([]) TeamEncryptionKeyRotateKeyDetails._all_fields_ = [] TeamEncryptionKeyRotateKeyType.description.validator = bv.String() -TeamEncryptionKeyRotateKeyType._all_field_names_ = set(['description']) -TeamEncryptionKeyRotateKeyType._all_fields_ = [('description', TeamEncryptionKeyRotateKeyType.description.validator)] +TeamEncryptionKeyRotateKeyType._all_field_names_ = set(["description"]) +TeamEncryptionKeyRotateKeyType._all_fields_ = [ + ("description", TeamEncryptionKeyRotateKeyType.description.validator) +] TeamEncryptionKeyScheduleKeyDeletionDetails._all_field_names_ = set([]) TeamEncryptionKeyScheduleKeyDeletionDetails._all_fields_ = [] TeamEncryptionKeyScheduleKeyDeletionType.description.validator = bv.String() -TeamEncryptionKeyScheduleKeyDeletionType._all_field_names_ = set(['description']) -TeamEncryptionKeyScheduleKeyDeletionType._all_fields_ = [('description', TeamEncryptionKeyScheduleKeyDeletionType.description.validator)] +TeamEncryptionKeyScheduleKeyDeletionType._all_field_names_ = set(["description"]) +TeamEncryptionKeyScheduleKeyDeletionType._all_fields_ = [ + ("description", TeamEncryptionKeyScheduleKeyDeletionType.description.validator) +] TeamEvent.timestamp.validator = common.DropboxTimestamp_validator TeamEvent.event_category.validator = EventCategory_validator @@ -107812,88 +115807,104 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamEvent.assets.validator = bv.Nullable(bv.List(AssetLogInfo_validator)) TeamEvent.event_type.validator = EventType_validator TeamEvent.details.validator = EventDetails_validator -TeamEvent._all_field_names_ = set([ - 'timestamp', - 'event_category', - 'actor', - 'origin', - 'involve_non_team_member', - 'context', - 'participants', - 'assets', - 'event_type', - 'details', -]) +TeamEvent._all_field_names_ = set( + [ + "timestamp", + "event_category", + "actor", + "origin", + "involve_non_team_member", + "context", + "participants", + "assets", + "event_type", + "details", + ] +) TeamEvent._all_fields_ = [ - ('timestamp', TeamEvent.timestamp.validator), - ('event_category', TeamEvent.event_category.validator), - ('actor', TeamEvent.actor.validator), - ('origin', TeamEvent.origin.validator), - ('involve_non_team_member', TeamEvent.involve_non_team_member.validator), - ('context', TeamEvent.context.validator), - ('participants', TeamEvent.participants.validator), - ('assets', TeamEvent.assets.validator), - ('event_type', TeamEvent.event_type.validator), - ('details', TeamEvent.details.validator), + ("timestamp", TeamEvent.timestamp.validator), + ("event_category", TeamEvent.event_category.validator), + ("actor", TeamEvent.actor.validator), + ("origin", TeamEvent.origin.validator), + ("involve_non_team_member", TeamEvent.involve_non_team_member.validator), + ("context", TeamEvent.context.validator), + ("participants", TeamEvent.participants.validator), + ("assets", TeamEvent.assets.validator), + ("event_type", TeamEvent.event_type.validator), + ("details", TeamEvent.details.validator), ] TeamExtensionsPolicy._disabled_validator = bv.Void() TeamExtensionsPolicy._enabled_validator = bv.Void() TeamExtensionsPolicy._other_validator = bv.Void() TeamExtensionsPolicy._tagmap = { - 'disabled': TeamExtensionsPolicy._disabled_validator, - 'enabled': TeamExtensionsPolicy._enabled_validator, - 'other': TeamExtensionsPolicy._other_validator, + "disabled": TeamExtensionsPolicy._disabled_validator, + "enabled": TeamExtensionsPolicy._enabled_validator, + "other": TeamExtensionsPolicy._other_validator, } -TeamExtensionsPolicy.disabled = TeamExtensionsPolicy('disabled') -TeamExtensionsPolicy.enabled = TeamExtensionsPolicy('enabled') -TeamExtensionsPolicy.other = TeamExtensionsPolicy('other') +TeamExtensionsPolicy.disabled = TeamExtensionsPolicy("disabled") +TeamExtensionsPolicy.enabled = TeamExtensionsPolicy("enabled") +TeamExtensionsPolicy.other = TeamExtensionsPolicy("other") TeamExtensionsPolicyChangedDetails.new_value.validator = TeamExtensionsPolicy_validator TeamExtensionsPolicyChangedDetails.previous_value.validator = TeamExtensionsPolicy_validator -TeamExtensionsPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +TeamExtensionsPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) TeamExtensionsPolicyChangedDetails._all_fields_ = [ - ('new_value', TeamExtensionsPolicyChangedDetails.new_value.validator), - ('previous_value', TeamExtensionsPolicyChangedDetails.previous_value.validator), + ("new_value", TeamExtensionsPolicyChangedDetails.new_value.validator), + ("previous_value", TeamExtensionsPolicyChangedDetails.previous_value.validator), ] TeamExtensionsPolicyChangedType.description.validator = bv.String() -TeamExtensionsPolicyChangedType._all_field_names_ = set(['description']) -TeamExtensionsPolicyChangedType._all_fields_ = [('description', TeamExtensionsPolicyChangedType.description.validator)] +TeamExtensionsPolicyChangedType._all_field_names_ = set(["description"]) +TeamExtensionsPolicyChangedType._all_fields_ = [ + ("description", TeamExtensionsPolicyChangedType.description.validator) +] TeamFolderChangeStatusDetails.new_value.validator = team.TeamFolderStatus_validator -TeamFolderChangeStatusDetails.previous_value.validator = bv.Nullable(team.TeamFolderStatus_validator) -TeamFolderChangeStatusDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +TeamFolderChangeStatusDetails.previous_value.validator = bv.Nullable( + team.TeamFolderStatus_validator +) +TeamFolderChangeStatusDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) TeamFolderChangeStatusDetails._all_fields_ = [ - ('new_value', TeamFolderChangeStatusDetails.new_value.validator), - ('previous_value', TeamFolderChangeStatusDetails.previous_value.validator), + ("new_value", TeamFolderChangeStatusDetails.new_value.validator), + ("previous_value", TeamFolderChangeStatusDetails.previous_value.validator), ] TeamFolderChangeStatusType.description.validator = bv.String() -TeamFolderChangeStatusType._all_field_names_ = set(['description']) -TeamFolderChangeStatusType._all_fields_ = [('description', TeamFolderChangeStatusType.description.validator)] +TeamFolderChangeStatusType._all_field_names_ = set(["description"]) +TeamFolderChangeStatusType._all_fields_ = [ + ("description", TeamFolderChangeStatusType.description.validator) +] TeamFolderCreateDetails._all_field_names_ = set([]) TeamFolderCreateDetails._all_fields_ = [] TeamFolderCreateType.description.validator = bv.String() -TeamFolderCreateType._all_field_names_ = set(['description']) -TeamFolderCreateType._all_fields_ = [('description', TeamFolderCreateType.description.validator)] +TeamFolderCreateType._all_field_names_ = set(["description"]) +TeamFolderCreateType._all_fields_ = [("description", TeamFolderCreateType.description.validator)] TeamFolderDowngradeDetails.target_asset_index.validator = bv.UInt64() -TeamFolderDowngradeDetails._all_field_names_ = set(['target_asset_index']) -TeamFolderDowngradeDetails._all_fields_ = [('target_asset_index', TeamFolderDowngradeDetails.target_asset_index.validator)] +TeamFolderDowngradeDetails._all_field_names_ = set(["target_asset_index"]) +TeamFolderDowngradeDetails._all_fields_ = [ + ("target_asset_index", TeamFolderDowngradeDetails.target_asset_index.validator) +] TeamFolderDowngradeType.description.validator = bv.String() -TeamFolderDowngradeType._all_field_names_ = set(['description']) -TeamFolderDowngradeType._all_fields_ = [('description', TeamFolderDowngradeType.description.validator)] +TeamFolderDowngradeType._all_field_names_ = set(["description"]) +TeamFolderDowngradeType._all_fields_ = [ + ("description", TeamFolderDowngradeType.description.validator) +] TeamFolderNotificationTarget._admins_validator = bv.Void() TeamFolderNotificationTarget._both_validator = bv.Void() @@ -107901,150 +115912,214 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderNotificationTarget._silent_validator = bv.Void() TeamFolderNotificationTarget._other_validator = bv.Void() TeamFolderNotificationTarget._tagmap = { - 'admins': TeamFolderNotificationTarget._admins_validator, - 'both': TeamFolderNotificationTarget._both_validator, - 'editors': TeamFolderNotificationTarget._editors_validator, - 'silent': TeamFolderNotificationTarget._silent_validator, - 'other': TeamFolderNotificationTarget._other_validator, + "admins": TeamFolderNotificationTarget._admins_validator, + "both": TeamFolderNotificationTarget._both_validator, + "editors": TeamFolderNotificationTarget._editors_validator, + "silent": TeamFolderNotificationTarget._silent_validator, + "other": TeamFolderNotificationTarget._other_validator, } -TeamFolderNotificationTarget.admins = TeamFolderNotificationTarget('admins') -TeamFolderNotificationTarget.both = TeamFolderNotificationTarget('both') -TeamFolderNotificationTarget.editors = TeamFolderNotificationTarget('editors') -TeamFolderNotificationTarget.silent = TeamFolderNotificationTarget('silent') -TeamFolderNotificationTarget.other = TeamFolderNotificationTarget('other') +TeamFolderNotificationTarget.admins = TeamFolderNotificationTarget("admins") +TeamFolderNotificationTarget.both = TeamFolderNotificationTarget("both") +TeamFolderNotificationTarget.editors = TeamFolderNotificationTarget("editors") +TeamFolderNotificationTarget.silent = TeamFolderNotificationTarget("silent") +TeamFolderNotificationTarget.other = TeamFolderNotificationTarget("other") TeamFolderPermanentlyDeleteDetails._all_field_names_ = set([]) TeamFolderPermanentlyDeleteDetails._all_fields_ = [] TeamFolderPermanentlyDeleteType.description.validator = bv.String() -TeamFolderPermanentlyDeleteType._all_field_names_ = set(['description']) -TeamFolderPermanentlyDeleteType._all_fields_ = [('description', TeamFolderPermanentlyDeleteType.description.validator)] +TeamFolderPermanentlyDeleteType._all_field_names_ = set(["description"]) +TeamFolderPermanentlyDeleteType._all_fields_ = [ + ("description", TeamFolderPermanentlyDeleteType.description.validator) +] TeamFolderRenameDetails.previous_folder_name.validator = bv.String() TeamFolderRenameDetails.new_folder_name.validator = bv.String() -TeamFolderRenameDetails._all_field_names_ = set([ - 'previous_folder_name', - 'new_folder_name', -]) +TeamFolderRenameDetails._all_field_names_ = set( + [ + "previous_folder_name", + "new_folder_name", + ] +) TeamFolderRenameDetails._all_fields_ = [ - ('previous_folder_name', TeamFolderRenameDetails.previous_folder_name.validator), - ('new_folder_name', TeamFolderRenameDetails.new_folder_name.validator), + ("previous_folder_name", TeamFolderRenameDetails.previous_folder_name.validator), + ("new_folder_name", TeamFolderRenameDetails.new_folder_name.validator), ] TeamFolderRenameType.description.validator = bv.String() -TeamFolderRenameType._all_field_names_ = set(['description']) -TeamFolderRenameType._all_fields_ = [('description', TeamFolderRenameType.description.validator)] +TeamFolderRenameType._all_field_names_ = set(["description"]) +TeamFolderRenameType._all_fields_ = [("description", TeamFolderRenameType.description.validator)] TeamFolderSpaceCapsType._hard_validator = bv.Void() TeamFolderSpaceCapsType._off_validator = bv.Void() TeamFolderSpaceCapsType._soft_validator = bv.Void() TeamFolderSpaceCapsType._other_validator = bv.Void() TeamFolderSpaceCapsType._tagmap = { - 'hard': TeamFolderSpaceCapsType._hard_validator, - 'off': TeamFolderSpaceCapsType._off_validator, - 'soft': TeamFolderSpaceCapsType._soft_validator, - 'other': TeamFolderSpaceCapsType._other_validator, + "hard": TeamFolderSpaceCapsType._hard_validator, + "off": TeamFolderSpaceCapsType._off_validator, + "soft": TeamFolderSpaceCapsType._soft_validator, + "other": TeamFolderSpaceCapsType._other_validator, } -TeamFolderSpaceCapsType.hard = TeamFolderSpaceCapsType('hard') -TeamFolderSpaceCapsType.off = TeamFolderSpaceCapsType('off') -TeamFolderSpaceCapsType.soft = TeamFolderSpaceCapsType('soft') -TeamFolderSpaceCapsType.other = TeamFolderSpaceCapsType('other') - -TeamFolderSpaceLimitsChangeCapsTypeDetails.previous_caps_type.validator = bv.Nullable(TeamFolderSpaceCapsType_validator) -TeamFolderSpaceLimitsChangeCapsTypeDetails.new_caps_type.validator = TeamFolderSpaceCapsType_validator -TeamFolderSpaceLimitsChangeCapsTypeDetails._all_field_names_ = set([ - 'previous_caps_type', - 'new_caps_type', -]) +TeamFolderSpaceCapsType.hard = TeamFolderSpaceCapsType("hard") +TeamFolderSpaceCapsType.off = TeamFolderSpaceCapsType("off") +TeamFolderSpaceCapsType.soft = TeamFolderSpaceCapsType("soft") +TeamFolderSpaceCapsType.other = TeamFolderSpaceCapsType("other") + +TeamFolderSpaceLimitsChangeCapsTypeDetails.previous_caps_type.validator = bv.Nullable( + TeamFolderSpaceCapsType_validator +) +TeamFolderSpaceLimitsChangeCapsTypeDetails.new_caps_type.validator = ( + TeamFolderSpaceCapsType_validator +) +TeamFolderSpaceLimitsChangeCapsTypeDetails._all_field_names_ = set( + [ + "previous_caps_type", + "new_caps_type", + ] +) TeamFolderSpaceLimitsChangeCapsTypeDetails._all_fields_ = [ - ('previous_caps_type', TeamFolderSpaceLimitsChangeCapsTypeDetails.previous_caps_type.validator), - ('new_caps_type', TeamFolderSpaceLimitsChangeCapsTypeDetails.new_caps_type.validator), + ( + "previous_caps_type", + TeamFolderSpaceLimitsChangeCapsTypeDetails.previous_caps_type.validator, + ), + ( + "new_caps_type", + TeamFolderSpaceLimitsChangeCapsTypeDetails.new_caps_type.validator, + ), ] TeamFolderSpaceLimitsChangeCapsTypeType.description.validator = bv.String() -TeamFolderSpaceLimitsChangeCapsTypeType._all_field_names_ = set(['description']) -TeamFolderSpaceLimitsChangeCapsTypeType._all_fields_ = [('description', TeamFolderSpaceLimitsChangeCapsTypeType.description.validator)] +TeamFolderSpaceLimitsChangeCapsTypeType._all_field_names_ = set(["description"]) +TeamFolderSpaceLimitsChangeCapsTypeType._all_fields_ = [ + ("description", TeamFolderSpaceLimitsChangeCapsTypeType.description.validator) +] TeamFolderSpaceLimitsChangeLimitDetails.previous_limit_bytes.validator = bv.Nullable(bv.Int64()) TeamFolderSpaceLimitsChangeLimitDetails.new_limit_bytes.validator = bv.Int64() -TeamFolderSpaceLimitsChangeLimitDetails._all_field_names_ = set([ - 'previous_limit_bytes', - 'new_limit_bytes', -]) +TeamFolderSpaceLimitsChangeLimitDetails._all_field_names_ = set( + [ + "previous_limit_bytes", + "new_limit_bytes", + ] +) TeamFolderSpaceLimitsChangeLimitDetails._all_fields_ = [ - ('previous_limit_bytes', TeamFolderSpaceLimitsChangeLimitDetails.previous_limit_bytes.validator), - ('new_limit_bytes', TeamFolderSpaceLimitsChangeLimitDetails.new_limit_bytes.validator), + ( + "previous_limit_bytes", + TeamFolderSpaceLimitsChangeLimitDetails.previous_limit_bytes.validator, + ), + ( + "new_limit_bytes", + TeamFolderSpaceLimitsChangeLimitDetails.new_limit_bytes.validator, + ), ] TeamFolderSpaceLimitsChangeLimitType.description.validator = bv.String() -TeamFolderSpaceLimitsChangeLimitType._all_field_names_ = set(['description']) -TeamFolderSpaceLimitsChangeLimitType._all_fields_ = [('description', TeamFolderSpaceLimitsChangeLimitType.description.validator)] - -TeamFolderSpaceLimitsChangeNotificationTargetDetails.previous_target.validator = bv.Nullable(TeamFolderNotificationTarget_validator) -TeamFolderSpaceLimitsChangeNotificationTargetDetails.new_target.validator = TeamFolderNotificationTarget_validator -TeamFolderSpaceLimitsChangeNotificationTargetDetails._all_field_names_ = set([ - 'previous_target', - 'new_target', -]) +TeamFolderSpaceLimitsChangeLimitType._all_field_names_ = set(["description"]) +TeamFolderSpaceLimitsChangeLimitType._all_fields_ = [ + ("description", TeamFolderSpaceLimitsChangeLimitType.description.validator) +] + +TeamFolderSpaceLimitsChangeNotificationTargetDetails.previous_target.validator = bv.Nullable( + TeamFolderNotificationTarget_validator +) +TeamFolderSpaceLimitsChangeNotificationTargetDetails.new_target.validator = ( + TeamFolderNotificationTarget_validator +) +TeamFolderSpaceLimitsChangeNotificationTargetDetails._all_field_names_ = set( + [ + "previous_target", + "new_target", + ] +) TeamFolderSpaceLimitsChangeNotificationTargetDetails._all_fields_ = [ - ('previous_target', TeamFolderSpaceLimitsChangeNotificationTargetDetails.previous_target.validator), - ('new_target', TeamFolderSpaceLimitsChangeNotificationTargetDetails.new_target.validator), + ( + "previous_target", + TeamFolderSpaceLimitsChangeNotificationTargetDetails.previous_target.validator, + ), + ( + "new_target", + TeamFolderSpaceLimitsChangeNotificationTargetDetails.new_target.validator, + ), ] TeamFolderSpaceLimitsChangeNotificationTargetType.description.validator = bv.String() -TeamFolderSpaceLimitsChangeNotificationTargetType._all_field_names_ = set(['description']) -TeamFolderSpaceLimitsChangeNotificationTargetType._all_fields_ = [('description', TeamFolderSpaceLimitsChangeNotificationTargetType.description.validator)] +TeamFolderSpaceLimitsChangeNotificationTargetType._all_field_names_ = set(["description"]) +TeamFolderSpaceLimitsChangeNotificationTargetType._all_fields_ = [ + ( + "description", + TeamFolderSpaceLimitsChangeNotificationTargetType.description.validator, + ) +] TeamFoldersCreateReportDetails._all_field_names_ = set([]) TeamFoldersCreateReportDetails._all_fields_ = [] -TeamFoldersCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -TeamFoldersCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) -TeamFoldersCreateReportFailedDetails._all_fields_ = [('failure_reason', TeamFoldersCreateReportFailedDetails.failure_reason.validator)] +TeamFoldersCreateReportFailedDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +TeamFoldersCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) +TeamFoldersCreateReportFailedDetails._all_fields_ = [ + ("failure_reason", TeamFoldersCreateReportFailedDetails.failure_reason.validator) +] TeamFoldersCreateReportFailedType.description.validator = bv.String() -TeamFoldersCreateReportFailedType._all_field_names_ = set(['description']) -TeamFoldersCreateReportFailedType._all_fields_ = [('description', TeamFoldersCreateReportFailedType.description.validator)] +TeamFoldersCreateReportFailedType._all_field_names_ = set(["description"]) +TeamFoldersCreateReportFailedType._all_fields_ = [ + ("description", TeamFoldersCreateReportFailedType.description.validator) +] TeamFoldersCreateReportType.description.validator = bv.String() -TeamFoldersCreateReportType._all_field_names_ = set(['description']) -TeamFoldersCreateReportType._all_fields_ = [('description', TeamFoldersCreateReportType.description.validator)] +TeamFoldersCreateReportType._all_field_names_ = set(["description"]) +TeamFoldersCreateReportType._all_fields_ = [ + ("description", TeamFoldersCreateReportType.description.validator) +] TeamInviteDetails.invite_method.validator = InviteMethod_validator TeamInviteDetails.additional_license_purchase.validator = bv.Nullable(bv.Boolean()) -TeamInviteDetails._all_field_names_ = set([ - 'invite_method', - 'additional_license_purchase', -]) +TeamInviteDetails._all_field_names_ = set( + [ + "invite_method", + "additional_license_purchase", + ] +) TeamInviteDetails._all_fields_ = [ - ('invite_method', TeamInviteDetails.invite_method.validator), - ('additional_license_purchase', TeamInviteDetails.additional_license_purchase.validator), + ("invite_method", TeamInviteDetails.invite_method.validator), + ( + "additional_license_purchase", + TeamInviteDetails.additional_license_purchase.validator, + ), ] TeamLinkedAppLogInfo._field_names_ = set([]) -TeamLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union(TeamLinkedAppLogInfo._field_names_) +TeamLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union( + TeamLinkedAppLogInfo._field_names_ +) TeamLinkedAppLogInfo._fields_ = [] TeamLinkedAppLogInfo._all_fields_ = AppLogInfo._all_fields_ + TeamLinkedAppLogInfo._fields_ TeamLogInfo.display_name.validator = bv.String() -TeamLogInfo._all_field_names_ = set(['display_name']) -TeamLogInfo._all_fields_ = [('display_name', TeamLogInfo.display_name.validator)] +TeamLogInfo._all_field_names_ = set(["display_name"]) +TeamLogInfo._all_fields_ = [("display_name", TeamLogInfo.display_name.validator)] TeamMemberLogInfo.team_member_id.validator = bv.Nullable(team_common.TeamMemberId_validator) TeamMemberLogInfo.member_external_id.validator = bv.Nullable(team_common.MemberExternalId_validator) TeamMemberLogInfo.team.validator = bv.Nullable(TeamLogInfo_validator) -TeamMemberLogInfo._field_names_ = set([ - 'team_member_id', - 'member_external_id', - 'team', -]) -TeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union(TeamMemberLogInfo._field_names_) +TeamMemberLogInfo._field_names_ = set( + [ + "team_member_id", + "member_external_id", + "team", + ] +) +TeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union( + TeamMemberLogInfo._field_names_ +) TeamMemberLogInfo._fields_ = [ - ('team_member_id', TeamMemberLogInfo.team_member_id.validator), - ('member_external_id', TeamMemberLogInfo.member_external_id.validator), - ('team', TeamMemberLogInfo.team.validator), + ("team_member_id", TeamMemberLogInfo.team_member_id.validator), + ("member_external_id", TeamMemberLogInfo.member_external_id.validator), + ("team", TeamMemberLogInfo.team.validator), ] TeamMemberLogInfo._all_fields_ = UserLogInfo._all_fields_ + TeamMemberLogInfo._fields_ @@ -108053,524 +116128,755 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMemberStorageRequestPolicy._enabled_validator = bv.Void() TeamMemberStorageRequestPolicy._other_validator = bv.Void() TeamMemberStorageRequestPolicy._tagmap = { - 'default': TeamMemberStorageRequestPolicy._default_validator, - 'disabled': TeamMemberStorageRequestPolicy._disabled_validator, - 'enabled': TeamMemberStorageRequestPolicy._enabled_validator, - 'other': TeamMemberStorageRequestPolicy._other_validator, + "default": TeamMemberStorageRequestPolicy._default_validator, + "disabled": TeamMemberStorageRequestPolicy._disabled_validator, + "enabled": TeamMemberStorageRequestPolicy._enabled_validator, + "other": TeamMemberStorageRequestPolicy._other_validator, } -TeamMemberStorageRequestPolicy.default = TeamMemberStorageRequestPolicy('default') -TeamMemberStorageRequestPolicy.disabled = TeamMemberStorageRequestPolicy('disabled') -TeamMemberStorageRequestPolicy.enabled = TeamMemberStorageRequestPolicy('enabled') -TeamMemberStorageRequestPolicy.other = TeamMemberStorageRequestPolicy('other') - -TeamMemberStorageRequestPolicyChangedDetails.new_value.validator = TeamMemberStorageRequestPolicy_validator -TeamMemberStorageRequestPolicyChangedDetails.previous_value.validator = bv.Nullable(TeamMemberStorageRequestPolicy_validator) -TeamMemberStorageRequestPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +TeamMemberStorageRequestPolicy.default = TeamMemberStorageRequestPolicy("default") +TeamMemberStorageRequestPolicy.disabled = TeamMemberStorageRequestPolicy("disabled") +TeamMemberStorageRequestPolicy.enabled = TeamMemberStorageRequestPolicy("enabled") +TeamMemberStorageRequestPolicy.other = TeamMemberStorageRequestPolicy("other") + +TeamMemberStorageRequestPolicyChangedDetails.new_value.validator = ( + TeamMemberStorageRequestPolicy_validator +) +TeamMemberStorageRequestPolicyChangedDetails.previous_value.validator = bv.Nullable( + TeamMemberStorageRequestPolicy_validator +) +TeamMemberStorageRequestPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) TeamMemberStorageRequestPolicyChangedDetails._all_fields_ = [ - ('new_value', TeamMemberStorageRequestPolicyChangedDetails.new_value.validator), - ('previous_value', TeamMemberStorageRequestPolicyChangedDetails.previous_value.validator), + ("new_value", TeamMemberStorageRequestPolicyChangedDetails.new_value.validator), + ( + "previous_value", + TeamMemberStorageRequestPolicyChangedDetails.previous_value.validator, + ), ] TeamMemberStorageRequestPolicyChangedType.description.validator = bv.String() -TeamMemberStorageRequestPolicyChangedType._all_field_names_ = set(['description']) -TeamMemberStorageRequestPolicyChangedType._all_fields_ = [('description', TeamMemberStorageRequestPolicyChangedType.description.validator)] +TeamMemberStorageRequestPolicyChangedType._all_field_names_ = set(["description"]) +TeamMemberStorageRequestPolicyChangedType._all_fields_ = [ + ("description", TeamMemberStorageRequestPolicyChangedType.description.validator) +] TeamMembershipType._free_validator = bv.Void() TeamMembershipType._full_validator = bv.Void() TeamMembershipType._guest_validator = bv.Void() TeamMembershipType._other_validator = bv.Void() TeamMembershipType._tagmap = { - 'free': TeamMembershipType._free_validator, - 'full': TeamMembershipType._full_validator, - 'guest': TeamMembershipType._guest_validator, - 'other': TeamMembershipType._other_validator, + "free": TeamMembershipType._free_validator, + "full": TeamMembershipType._full_validator, + "guest": TeamMembershipType._guest_validator, + "other": TeamMembershipType._other_validator, } -TeamMembershipType.free = TeamMembershipType('free') -TeamMembershipType.full = TeamMembershipType('full') -TeamMembershipType.guest = TeamMembershipType('guest') -TeamMembershipType.other = TeamMembershipType('other') +TeamMembershipType.free = TeamMembershipType("free") +TeamMembershipType.full = TeamMembershipType("full") +TeamMembershipType.guest = TeamMembershipType("guest") +TeamMembershipType.other = TeamMembershipType("other") TeamMergeFromDetails.team_name.validator = bv.String() -TeamMergeFromDetails._all_field_names_ = set(['team_name']) -TeamMergeFromDetails._all_fields_ = [('team_name', TeamMergeFromDetails.team_name.validator)] +TeamMergeFromDetails._all_field_names_ = set(["team_name"]) +TeamMergeFromDetails._all_fields_ = [("team_name", TeamMergeFromDetails.team_name.validator)] TeamMergeFromType.description.validator = bv.String() -TeamMergeFromType._all_field_names_ = set(['description']) -TeamMergeFromType._all_fields_ = [('description', TeamMergeFromType.description.validator)] +TeamMergeFromType._all_field_names_ = set(["description"]) +TeamMergeFromType._all_fields_ = [("description", TeamMergeFromType.description.validator)] -TeamMergeRequestAcceptedDetails.request_accepted_details.validator = TeamMergeRequestAcceptedExtraDetails_validator -TeamMergeRequestAcceptedDetails._all_field_names_ = set(['request_accepted_details']) -TeamMergeRequestAcceptedDetails._all_fields_ = [('request_accepted_details', TeamMergeRequestAcceptedDetails.request_accepted_details.validator)] +TeamMergeRequestAcceptedDetails.request_accepted_details.validator = ( + TeamMergeRequestAcceptedExtraDetails_validator +) +TeamMergeRequestAcceptedDetails._all_field_names_ = set(["request_accepted_details"]) +TeamMergeRequestAcceptedDetails._all_fields_ = [ + ( + "request_accepted_details", + TeamMergeRequestAcceptedDetails.request_accepted_details.validator, + ) +] -TeamMergeRequestAcceptedExtraDetails._primary_team_validator = PrimaryTeamRequestAcceptedDetails_validator -TeamMergeRequestAcceptedExtraDetails._secondary_team_validator = SecondaryTeamRequestAcceptedDetails_validator +TeamMergeRequestAcceptedExtraDetails._primary_team_validator = ( + PrimaryTeamRequestAcceptedDetails_validator +) +TeamMergeRequestAcceptedExtraDetails._secondary_team_validator = ( + SecondaryTeamRequestAcceptedDetails_validator +) TeamMergeRequestAcceptedExtraDetails._other_validator = bv.Void() TeamMergeRequestAcceptedExtraDetails._tagmap = { - 'primary_team': TeamMergeRequestAcceptedExtraDetails._primary_team_validator, - 'secondary_team': TeamMergeRequestAcceptedExtraDetails._secondary_team_validator, - 'other': TeamMergeRequestAcceptedExtraDetails._other_validator, + "primary_team": TeamMergeRequestAcceptedExtraDetails._primary_team_validator, + "secondary_team": TeamMergeRequestAcceptedExtraDetails._secondary_team_validator, + "other": TeamMergeRequestAcceptedExtraDetails._other_validator, } -TeamMergeRequestAcceptedExtraDetails.other = TeamMergeRequestAcceptedExtraDetails('other') +TeamMergeRequestAcceptedExtraDetails.other = TeamMergeRequestAcceptedExtraDetails("other") TeamMergeRequestAcceptedShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestAcceptedShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestAcceptedShownToPrimaryTeamDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_by', -]) +TeamMergeRequestAcceptedShownToPrimaryTeamDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_by", + ] +) TeamMergeRequestAcceptedShownToPrimaryTeamDetails._all_fields_ = [ - ('secondary_team', TeamMergeRequestAcceptedShownToPrimaryTeamDetails.secondary_team.validator), - ('sent_by', TeamMergeRequestAcceptedShownToPrimaryTeamDetails.sent_by.validator), + ( + "secondary_team", + TeamMergeRequestAcceptedShownToPrimaryTeamDetails.secondary_team.validator, + ), + ("sent_by", TeamMergeRequestAcceptedShownToPrimaryTeamDetails.sent_by.validator), ] TeamMergeRequestAcceptedShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestAcceptedShownToPrimaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestAcceptedShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestAcceptedShownToPrimaryTeamType.description.validator)] +TeamMergeRequestAcceptedShownToPrimaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestAcceptedShownToPrimaryTeamType._all_fields_ = [ + ( + "description", + TeamMergeRequestAcceptedShownToPrimaryTeamType.description.validator, + ) +] TeamMergeRequestAcceptedShownToSecondaryTeamDetails.primary_team.validator = bv.String() TeamMergeRequestAcceptedShownToSecondaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestAcceptedShownToSecondaryTeamDetails._all_field_names_ = set([ - 'primary_team', - 'sent_by', -]) +TeamMergeRequestAcceptedShownToSecondaryTeamDetails._all_field_names_ = set( + [ + "primary_team", + "sent_by", + ] +) TeamMergeRequestAcceptedShownToSecondaryTeamDetails._all_fields_ = [ - ('primary_team', TeamMergeRequestAcceptedShownToSecondaryTeamDetails.primary_team.validator), - ('sent_by', TeamMergeRequestAcceptedShownToSecondaryTeamDetails.sent_by.validator), + ( + "primary_team", + TeamMergeRequestAcceptedShownToSecondaryTeamDetails.primary_team.validator, + ), + ("sent_by", TeamMergeRequestAcceptedShownToSecondaryTeamDetails.sent_by.validator), ] TeamMergeRequestAcceptedShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestAcceptedShownToSecondaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestAcceptedShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestAcceptedShownToSecondaryTeamType.description.validator)] +TeamMergeRequestAcceptedShownToSecondaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestAcceptedShownToSecondaryTeamType._all_fields_ = [ + ( + "description", + TeamMergeRequestAcceptedShownToSecondaryTeamType.description.validator, + ) +] TeamMergeRequestAcceptedType.description.validator = bv.String() -TeamMergeRequestAcceptedType._all_field_names_ = set(['description']) -TeamMergeRequestAcceptedType._all_fields_ = [('description', TeamMergeRequestAcceptedType.description.validator)] +TeamMergeRequestAcceptedType._all_field_names_ = set(["description"]) +TeamMergeRequestAcceptedType._all_fields_ = [ + ("description", TeamMergeRequestAcceptedType.description.validator) +] TeamMergeRequestAutoCanceledDetails.details.validator = bv.Nullable(bv.String()) -TeamMergeRequestAutoCanceledDetails._all_field_names_ = set(['details']) -TeamMergeRequestAutoCanceledDetails._all_fields_ = [('details', TeamMergeRequestAutoCanceledDetails.details.validator)] +TeamMergeRequestAutoCanceledDetails._all_field_names_ = set(["details"]) +TeamMergeRequestAutoCanceledDetails._all_fields_ = [ + ("details", TeamMergeRequestAutoCanceledDetails.details.validator) +] TeamMergeRequestAutoCanceledType.description.validator = bv.String() -TeamMergeRequestAutoCanceledType._all_field_names_ = set(['description']) -TeamMergeRequestAutoCanceledType._all_fields_ = [('description', TeamMergeRequestAutoCanceledType.description.validator)] +TeamMergeRequestAutoCanceledType._all_field_names_ = set(["description"]) +TeamMergeRequestAutoCanceledType._all_fields_ = [ + ("description", TeamMergeRequestAutoCanceledType.description.validator) +] -TeamMergeRequestCanceledDetails.request_canceled_details.validator = TeamMergeRequestCanceledExtraDetails_validator -TeamMergeRequestCanceledDetails._all_field_names_ = set(['request_canceled_details']) -TeamMergeRequestCanceledDetails._all_fields_ = [('request_canceled_details', TeamMergeRequestCanceledDetails.request_canceled_details.validator)] +TeamMergeRequestCanceledDetails.request_canceled_details.validator = ( + TeamMergeRequestCanceledExtraDetails_validator +) +TeamMergeRequestCanceledDetails._all_field_names_ = set(["request_canceled_details"]) +TeamMergeRequestCanceledDetails._all_fields_ = [ + ( + "request_canceled_details", + TeamMergeRequestCanceledDetails.request_canceled_details.validator, + ) +] -TeamMergeRequestCanceledExtraDetails._primary_team_validator = PrimaryTeamRequestCanceledDetails_validator -TeamMergeRequestCanceledExtraDetails._secondary_team_validator = SecondaryTeamRequestCanceledDetails_validator +TeamMergeRequestCanceledExtraDetails._primary_team_validator = ( + PrimaryTeamRequestCanceledDetails_validator +) +TeamMergeRequestCanceledExtraDetails._secondary_team_validator = ( + SecondaryTeamRequestCanceledDetails_validator +) TeamMergeRequestCanceledExtraDetails._other_validator = bv.Void() TeamMergeRequestCanceledExtraDetails._tagmap = { - 'primary_team': TeamMergeRequestCanceledExtraDetails._primary_team_validator, - 'secondary_team': TeamMergeRequestCanceledExtraDetails._secondary_team_validator, - 'other': TeamMergeRequestCanceledExtraDetails._other_validator, + "primary_team": TeamMergeRequestCanceledExtraDetails._primary_team_validator, + "secondary_team": TeamMergeRequestCanceledExtraDetails._secondary_team_validator, + "other": TeamMergeRequestCanceledExtraDetails._other_validator, } -TeamMergeRequestCanceledExtraDetails.other = TeamMergeRequestCanceledExtraDetails('other') +TeamMergeRequestCanceledExtraDetails.other = TeamMergeRequestCanceledExtraDetails("other") TeamMergeRequestCanceledShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestCanceledShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestCanceledShownToPrimaryTeamDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_by', -]) +TeamMergeRequestCanceledShownToPrimaryTeamDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_by", + ] +) TeamMergeRequestCanceledShownToPrimaryTeamDetails._all_fields_ = [ - ('secondary_team', TeamMergeRequestCanceledShownToPrimaryTeamDetails.secondary_team.validator), - ('sent_by', TeamMergeRequestCanceledShownToPrimaryTeamDetails.sent_by.validator), + ( + "secondary_team", + TeamMergeRequestCanceledShownToPrimaryTeamDetails.secondary_team.validator, + ), + ("sent_by", TeamMergeRequestCanceledShownToPrimaryTeamDetails.sent_by.validator), ] TeamMergeRequestCanceledShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestCanceledShownToPrimaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestCanceledShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestCanceledShownToPrimaryTeamType.description.validator)] +TeamMergeRequestCanceledShownToPrimaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestCanceledShownToPrimaryTeamType._all_fields_ = [ + ( + "description", + TeamMergeRequestCanceledShownToPrimaryTeamType.description.validator, + ) +] TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_to.validator = bv.String() TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestCanceledShownToSecondaryTeamDetails._all_field_names_ = set([ - 'sent_to', - 'sent_by', -]) +TeamMergeRequestCanceledShownToSecondaryTeamDetails._all_field_names_ = set( + [ + "sent_to", + "sent_by", + ] +) TeamMergeRequestCanceledShownToSecondaryTeamDetails._all_fields_ = [ - ('sent_to', TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_to.validator), - ('sent_by', TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_by.validator), + ("sent_to", TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_to.validator), + ("sent_by", TeamMergeRequestCanceledShownToSecondaryTeamDetails.sent_by.validator), ] TeamMergeRequestCanceledShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestCanceledShownToSecondaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestCanceledShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestCanceledShownToSecondaryTeamType.description.validator)] +TeamMergeRequestCanceledShownToSecondaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestCanceledShownToSecondaryTeamType._all_fields_ = [ + ( + "description", + TeamMergeRequestCanceledShownToSecondaryTeamType.description.validator, + ) +] TeamMergeRequestCanceledType.description.validator = bv.String() -TeamMergeRequestCanceledType._all_field_names_ = set(['description']) -TeamMergeRequestCanceledType._all_fields_ = [('description', TeamMergeRequestCanceledType.description.validator)] +TeamMergeRequestCanceledType._all_field_names_ = set(["description"]) +TeamMergeRequestCanceledType._all_fields_ = [ + ("description", TeamMergeRequestCanceledType.description.validator) +] -TeamMergeRequestExpiredDetails.request_expired_details.validator = TeamMergeRequestExpiredExtraDetails_validator -TeamMergeRequestExpiredDetails._all_field_names_ = set(['request_expired_details']) -TeamMergeRequestExpiredDetails._all_fields_ = [('request_expired_details', TeamMergeRequestExpiredDetails.request_expired_details.validator)] +TeamMergeRequestExpiredDetails.request_expired_details.validator = ( + TeamMergeRequestExpiredExtraDetails_validator +) +TeamMergeRequestExpiredDetails._all_field_names_ = set(["request_expired_details"]) +TeamMergeRequestExpiredDetails._all_fields_ = [ + ( + "request_expired_details", + TeamMergeRequestExpiredDetails.request_expired_details.validator, + ) +] -TeamMergeRequestExpiredExtraDetails._primary_team_validator = PrimaryTeamRequestExpiredDetails_validator -TeamMergeRequestExpiredExtraDetails._secondary_team_validator = SecondaryTeamRequestExpiredDetails_validator +TeamMergeRequestExpiredExtraDetails._primary_team_validator = ( + PrimaryTeamRequestExpiredDetails_validator +) +TeamMergeRequestExpiredExtraDetails._secondary_team_validator = ( + SecondaryTeamRequestExpiredDetails_validator +) TeamMergeRequestExpiredExtraDetails._other_validator = bv.Void() TeamMergeRequestExpiredExtraDetails._tagmap = { - 'primary_team': TeamMergeRequestExpiredExtraDetails._primary_team_validator, - 'secondary_team': TeamMergeRequestExpiredExtraDetails._secondary_team_validator, - 'other': TeamMergeRequestExpiredExtraDetails._other_validator, + "primary_team": TeamMergeRequestExpiredExtraDetails._primary_team_validator, + "secondary_team": TeamMergeRequestExpiredExtraDetails._secondary_team_validator, + "other": TeamMergeRequestExpiredExtraDetails._other_validator, } -TeamMergeRequestExpiredExtraDetails.other = TeamMergeRequestExpiredExtraDetails('other') +TeamMergeRequestExpiredExtraDetails.other = TeamMergeRequestExpiredExtraDetails("other") TeamMergeRequestExpiredShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestExpiredShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestExpiredShownToPrimaryTeamDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_by', -]) +TeamMergeRequestExpiredShownToPrimaryTeamDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_by", + ] +) TeamMergeRequestExpiredShownToPrimaryTeamDetails._all_fields_ = [ - ('secondary_team', TeamMergeRequestExpiredShownToPrimaryTeamDetails.secondary_team.validator), - ('sent_by', TeamMergeRequestExpiredShownToPrimaryTeamDetails.sent_by.validator), + ( + "secondary_team", + TeamMergeRequestExpiredShownToPrimaryTeamDetails.secondary_team.validator, + ), + ("sent_by", TeamMergeRequestExpiredShownToPrimaryTeamDetails.sent_by.validator), ] TeamMergeRequestExpiredShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestExpiredShownToPrimaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestExpiredShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestExpiredShownToPrimaryTeamType.description.validator)] +TeamMergeRequestExpiredShownToPrimaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestExpiredShownToPrimaryTeamType._all_fields_ = [ + ("description", TeamMergeRequestExpiredShownToPrimaryTeamType.description.validator) +] TeamMergeRequestExpiredShownToSecondaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_field_names_ = set(['sent_to']) -TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_fields_ = [('sent_to', TeamMergeRequestExpiredShownToSecondaryTeamDetails.sent_to.validator)] +TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_field_names_ = set(["sent_to"]) +TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_fields_ = [ + ("sent_to", TeamMergeRequestExpiredShownToSecondaryTeamDetails.sent_to.validator) +] TeamMergeRequestExpiredShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestExpiredShownToSecondaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestExpiredShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestExpiredShownToSecondaryTeamType.description.validator)] +TeamMergeRequestExpiredShownToSecondaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestExpiredShownToSecondaryTeamType._all_fields_ = [ + ( + "description", + TeamMergeRequestExpiredShownToSecondaryTeamType.description.validator, + ) +] TeamMergeRequestExpiredType.description.validator = bv.String() -TeamMergeRequestExpiredType._all_field_names_ = set(['description']) -TeamMergeRequestExpiredType._all_fields_ = [('description', TeamMergeRequestExpiredType.description.validator)] +TeamMergeRequestExpiredType._all_field_names_ = set(["description"]) +TeamMergeRequestExpiredType._all_fields_ = [ + ("description", TeamMergeRequestExpiredType.description.validator) +] TeamMergeRequestRejectedShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestRejectedShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestRejectedShownToPrimaryTeamDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_by', -]) +TeamMergeRequestRejectedShownToPrimaryTeamDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_by", + ] +) TeamMergeRequestRejectedShownToPrimaryTeamDetails._all_fields_ = [ - ('secondary_team', TeamMergeRequestRejectedShownToPrimaryTeamDetails.secondary_team.validator), - ('sent_by', TeamMergeRequestRejectedShownToPrimaryTeamDetails.sent_by.validator), + ( + "secondary_team", + TeamMergeRequestRejectedShownToPrimaryTeamDetails.secondary_team.validator, + ), + ("sent_by", TeamMergeRequestRejectedShownToPrimaryTeamDetails.sent_by.validator), ] TeamMergeRequestRejectedShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestRejectedShownToPrimaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestRejectedShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestRejectedShownToPrimaryTeamType.description.validator)] +TeamMergeRequestRejectedShownToPrimaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestRejectedShownToPrimaryTeamType._all_fields_ = [ + ( + "description", + TeamMergeRequestRejectedShownToPrimaryTeamType.description.validator, + ) +] TeamMergeRequestRejectedShownToSecondaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_field_names_ = set(['sent_by']) -TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_fields_ = [('sent_by', TeamMergeRequestRejectedShownToSecondaryTeamDetails.sent_by.validator)] +TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_field_names_ = set(["sent_by"]) +TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_fields_ = [ + ("sent_by", TeamMergeRequestRejectedShownToSecondaryTeamDetails.sent_by.validator) +] TeamMergeRequestRejectedShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestRejectedShownToSecondaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestRejectedShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestRejectedShownToSecondaryTeamType.description.validator)] +TeamMergeRequestRejectedShownToSecondaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestRejectedShownToSecondaryTeamType._all_fields_ = [ + ( + "description", + TeamMergeRequestRejectedShownToSecondaryTeamType.description.validator, + ) +] -TeamMergeRequestReminderDetails.request_reminder_details.validator = TeamMergeRequestReminderExtraDetails_validator -TeamMergeRequestReminderDetails._all_field_names_ = set(['request_reminder_details']) -TeamMergeRequestReminderDetails._all_fields_ = [('request_reminder_details', TeamMergeRequestReminderDetails.request_reminder_details.validator)] +TeamMergeRequestReminderDetails.request_reminder_details.validator = ( + TeamMergeRequestReminderExtraDetails_validator +) +TeamMergeRequestReminderDetails._all_field_names_ = set(["request_reminder_details"]) +TeamMergeRequestReminderDetails._all_fields_ = [ + ( + "request_reminder_details", + TeamMergeRequestReminderDetails.request_reminder_details.validator, + ) +] -TeamMergeRequestReminderExtraDetails._primary_team_validator = PrimaryTeamRequestReminderDetails_validator -TeamMergeRequestReminderExtraDetails._secondary_team_validator = SecondaryTeamRequestReminderDetails_validator +TeamMergeRequestReminderExtraDetails._primary_team_validator = ( + PrimaryTeamRequestReminderDetails_validator +) +TeamMergeRequestReminderExtraDetails._secondary_team_validator = ( + SecondaryTeamRequestReminderDetails_validator +) TeamMergeRequestReminderExtraDetails._other_validator = bv.Void() TeamMergeRequestReminderExtraDetails._tagmap = { - 'primary_team': TeamMergeRequestReminderExtraDetails._primary_team_validator, - 'secondary_team': TeamMergeRequestReminderExtraDetails._secondary_team_validator, - 'other': TeamMergeRequestReminderExtraDetails._other_validator, + "primary_team": TeamMergeRequestReminderExtraDetails._primary_team_validator, + "secondary_team": TeamMergeRequestReminderExtraDetails._secondary_team_validator, + "other": TeamMergeRequestReminderExtraDetails._other_validator, } -TeamMergeRequestReminderExtraDetails.other = TeamMergeRequestReminderExtraDetails('other') +TeamMergeRequestReminderExtraDetails.other = TeamMergeRequestReminderExtraDetails("other") TeamMergeRequestReminderShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestReminderShownToPrimaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestReminderShownToPrimaryTeamDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_to', -]) +TeamMergeRequestReminderShownToPrimaryTeamDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_to", + ] +) TeamMergeRequestReminderShownToPrimaryTeamDetails._all_fields_ = [ - ('secondary_team', TeamMergeRequestReminderShownToPrimaryTeamDetails.secondary_team.validator), - ('sent_to', TeamMergeRequestReminderShownToPrimaryTeamDetails.sent_to.validator), + ( + "secondary_team", + TeamMergeRequestReminderShownToPrimaryTeamDetails.secondary_team.validator, + ), + ("sent_to", TeamMergeRequestReminderShownToPrimaryTeamDetails.sent_to.validator), ] TeamMergeRequestReminderShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestReminderShownToPrimaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestReminderShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestReminderShownToPrimaryTeamType.description.validator)] +TeamMergeRequestReminderShownToPrimaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestReminderShownToPrimaryTeamType._all_fields_ = [ + ( + "description", + TeamMergeRequestReminderShownToPrimaryTeamType.description.validator, + ) +] TeamMergeRequestReminderShownToSecondaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestReminderShownToSecondaryTeamDetails._all_field_names_ = set(['sent_to']) -TeamMergeRequestReminderShownToSecondaryTeamDetails._all_fields_ = [('sent_to', TeamMergeRequestReminderShownToSecondaryTeamDetails.sent_to.validator)] +TeamMergeRequestReminderShownToSecondaryTeamDetails._all_field_names_ = set(["sent_to"]) +TeamMergeRequestReminderShownToSecondaryTeamDetails._all_fields_ = [ + ("sent_to", TeamMergeRequestReminderShownToSecondaryTeamDetails.sent_to.validator) +] TeamMergeRequestReminderShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestReminderShownToSecondaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestReminderShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestReminderShownToSecondaryTeamType.description.validator)] +TeamMergeRequestReminderShownToSecondaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestReminderShownToSecondaryTeamType._all_fields_ = [ + ( + "description", + TeamMergeRequestReminderShownToSecondaryTeamType.description.validator, + ) +] TeamMergeRequestReminderType.description.validator = bv.String() -TeamMergeRequestReminderType._all_field_names_ = set(['description']) -TeamMergeRequestReminderType._all_fields_ = [('description', TeamMergeRequestReminderType.description.validator)] +TeamMergeRequestReminderType._all_field_names_ = set(["description"]) +TeamMergeRequestReminderType._all_fields_ = [ + ("description", TeamMergeRequestReminderType.description.validator) +] TeamMergeRequestRevokedDetails.team.validator = bv.String() -TeamMergeRequestRevokedDetails._all_field_names_ = set(['team']) -TeamMergeRequestRevokedDetails._all_fields_ = [('team', TeamMergeRequestRevokedDetails.team.validator)] +TeamMergeRequestRevokedDetails._all_field_names_ = set(["team"]) +TeamMergeRequestRevokedDetails._all_fields_ = [ + ("team", TeamMergeRequestRevokedDetails.team.validator) +] TeamMergeRequestRevokedType.description.validator = bv.String() -TeamMergeRequestRevokedType._all_field_names_ = set(['description']) -TeamMergeRequestRevokedType._all_fields_ = [('description', TeamMergeRequestRevokedType.description.validator)] +TeamMergeRequestRevokedType._all_field_names_ = set(["description"]) +TeamMergeRequestRevokedType._all_fields_ = [ + ("description", TeamMergeRequestRevokedType.description.validator) +] TeamMergeRequestSentShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestSentShownToPrimaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestSentShownToPrimaryTeamDetails._all_field_names_ = set([ - 'secondary_team', - 'sent_to', -]) +TeamMergeRequestSentShownToPrimaryTeamDetails._all_field_names_ = set( + [ + "secondary_team", + "sent_to", + ] +) TeamMergeRequestSentShownToPrimaryTeamDetails._all_fields_ = [ - ('secondary_team', TeamMergeRequestSentShownToPrimaryTeamDetails.secondary_team.validator), - ('sent_to', TeamMergeRequestSentShownToPrimaryTeamDetails.sent_to.validator), + ( + "secondary_team", + TeamMergeRequestSentShownToPrimaryTeamDetails.secondary_team.validator, + ), + ("sent_to", TeamMergeRequestSentShownToPrimaryTeamDetails.sent_to.validator), ] TeamMergeRequestSentShownToPrimaryTeamType.description.validator = bv.String() -TeamMergeRequestSentShownToPrimaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestSentShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestSentShownToPrimaryTeamType.description.validator)] +TeamMergeRequestSentShownToPrimaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestSentShownToPrimaryTeamType._all_fields_ = [ + ("description", TeamMergeRequestSentShownToPrimaryTeamType.description.validator) +] TeamMergeRequestSentShownToSecondaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestSentShownToSecondaryTeamDetails._all_field_names_ = set(['sent_to']) -TeamMergeRequestSentShownToSecondaryTeamDetails._all_fields_ = [('sent_to', TeamMergeRequestSentShownToSecondaryTeamDetails.sent_to.validator)] +TeamMergeRequestSentShownToSecondaryTeamDetails._all_field_names_ = set(["sent_to"]) +TeamMergeRequestSentShownToSecondaryTeamDetails._all_fields_ = [ + ("sent_to", TeamMergeRequestSentShownToSecondaryTeamDetails.sent_to.validator) +] TeamMergeRequestSentShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestSentShownToSecondaryTeamType._all_field_names_ = set(['description']) -TeamMergeRequestSentShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestSentShownToSecondaryTeamType.description.validator)] +TeamMergeRequestSentShownToSecondaryTeamType._all_field_names_ = set(["description"]) +TeamMergeRequestSentShownToSecondaryTeamType._all_fields_ = [ + ("description", TeamMergeRequestSentShownToSecondaryTeamType.description.validator) +] TeamMergeToDetails.team_name.validator = bv.String() -TeamMergeToDetails._all_field_names_ = set(['team_name']) -TeamMergeToDetails._all_fields_ = [('team_name', TeamMergeToDetails.team_name.validator)] +TeamMergeToDetails._all_field_names_ = set(["team_name"]) +TeamMergeToDetails._all_fields_ = [("team_name", TeamMergeToDetails.team_name.validator)] TeamMergeToType.description.validator = bv.String() -TeamMergeToType._all_field_names_ = set(['description']) -TeamMergeToType._all_fields_ = [('description', TeamMergeToType.description.validator)] +TeamMergeToType._all_field_names_ = set(["description"]) +TeamMergeToType._all_fields_ = [("description", TeamMergeToType.description.validator)] TeamName.team_display_name.validator = bv.String() TeamName.team_legal_name.validator = bv.String() -TeamName._all_field_names_ = set([ - 'team_display_name', - 'team_legal_name', -]) +TeamName._all_field_names_ = set( + [ + "team_display_name", + "team_legal_name", + ] +) TeamName._all_fields_ = [ - ('team_display_name', TeamName.team_display_name.validator), - ('team_legal_name', TeamName.team_legal_name.validator), + ("team_display_name", TeamName.team_display_name.validator), + ("team_legal_name", TeamName.team_legal_name.validator), ] TeamProfileAddBackgroundDetails._all_field_names_ = set([]) TeamProfileAddBackgroundDetails._all_fields_ = [] TeamProfileAddBackgroundType.description.validator = bv.String() -TeamProfileAddBackgroundType._all_field_names_ = set(['description']) -TeamProfileAddBackgroundType._all_fields_ = [('description', TeamProfileAddBackgroundType.description.validator)] +TeamProfileAddBackgroundType._all_field_names_ = set(["description"]) +TeamProfileAddBackgroundType._all_fields_ = [ + ("description", TeamProfileAddBackgroundType.description.validator) +] TeamProfileAddLogoDetails._all_field_names_ = set([]) TeamProfileAddLogoDetails._all_fields_ = [] TeamProfileAddLogoType.description.validator = bv.String() -TeamProfileAddLogoType._all_field_names_ = set(['description']) -TeamProfileAddLogoType._all_fields_ = [('description', TeamProfileAddLogoType.description.validator)] +TeamProfileAddLogoType._all_field_names_ = set(["description"]) +TeamProfileAddLogoType._all_fields_ = [ + ("description", TeamProfileAddLogoType.description.validator) +] TeamProfileChangeBackgroundDetails._all_field_names_ = set([]) TeamProfileChangeBackgroundDetails._all_fields_ = [] TeamProfileChangeBackgroundType.description.validator = bv.String() -TeamProfileChangeBackgroundType._all_field_names_ = set(['description']) -TeamProfileChangeBackgroundType._all_fields_ = [('description', TeamProfileChangeBackgroundType.description.validator)] +TeamProfileChangeBackgroundType._all_field_names_ = set(["description"]) +TeamProfileChangeBackgroundType._all_fields_ = [ + ("description", TeamProfileChangeBackgroundType.description.validator) +] TeamProfileChangeDefaultLanguageDetails.new_value.validator = common.LanguageCode_validator TeamProfileChangeDefaultLanguageDetails.previous_value.validator = common.LanguageCode_validator -TeamProfileChangeDefaultLanguageDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +TeamProfileChangeDefaultLanguageDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) TeamProfileChangeDefaultLanguageDetails._all_fields_ = [ - ('new_value', TeamProfileChangeDefaultLanguageDetails.new_value.validator), - ('previous_value', TeamProfileChangeDefaultLanguageDetails.previous_value.validator), + ("new_value", TeamProfileChangeDefaultLanguageDetails.new_value.validator), + ( + "previous_value", + TeamProfileChangeDefaultLanguageDetails.previous_value.validator, + ), ] TeamProfileChangeDefaultLanguageType.description.validator = bv.String() -TeamProfileChangeDefaultLanguageType._all_field_names_ = set(['description']) -TeamProfileChangeDefaultLanguageType._all_fields_ = [('description', TeamProfileChangeDefaultLanguageType.description.validator)] +TeamProfileChangeDefaultLanguageType._all_field_names_ = set(["description"]) +TeamProfileChangeDefaultLanguageType._all_fields_ = [ + ("description", TeamProfileChangeDefaultLanguageType.description.validator) +] TeamProfileChangeLogoDetails._all_field_names_ = set([]) TeamProfileChangeLogoDetails._all_fields_ = [] TeamProfileChangeLogoType.description.validator = bv.String() -TeamProfileChangeLogoType._all_field_names_ = set(['description']) -TeamProfileChangeLogoType._all_fields_ = [('description', TeamProfileChangeLogoType.description.validator)] +TeamProfileChangeLogoType._all_field_names_ = set(["description"]) +TeamProfileChangeLogoType._all_fields_ = [ + ("description", TeamProfileChangeLogoType.description.validator) +] TeamProfileChangeNameDetails.previous_value.validator = bv.Nullable(TeamName_validator) TeamProfileChangeNameDetails.new_value.validator = TeamName_validator -TeamProfileChangeNameDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +TeamProfileChangeNameDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) TeamProfileChangeNameDetails._all_fields_ = [ - ('previous_value', TeamProfileChangeNameDetails.previous_value.validator), - ('new_value', TeamProfileChangeNameDetails.new_value.validator), + ("previous_value", TeamProfileChangeNameDetails.previous_value.validator), + ("new_value", TeamProfileChangeNameDetails.new_value.validator), ] TeamProfileChangeNameType.description.validator = bv.String() -TeamProfileChangeNameType._all_field_names_ = set(['description']) -TeamProfileChangeNameType._all_fields_ = [('description', TeamProfileChangeNameType.description.validator)] +TeamProfileChangeNameType._all_field_names_ = set(["description"]) +TeamProfileChangeNameType._all_fields_ = [ + ("description", TeamProfileChangeNameType.description.validator) +] TeamProfileRemoveBackgroundDetails._all_field_names_ = set([]) TeamProfileRemoveBackgroundDetails._all_fields_ = [] TeamProfileRemoveBackgroundType.description.validator = bv.String() -TeamProfileRemoveBackgroundType._all_field_names_ = set(['description']) -TeamProfileRemoveBackgroundType._all_fields_ = [('description', TeamProfileRemoveBackgroundType.description.validator)] +TeamProfileRemoveBackgroundType._all_field_names_ = set(["description"]) +TeamProfileRemoveBackgroundType._all_fields_ = [ + ("description", TeamProfileRemoveBackgroundType.description.validator) +] TeamProfileRemoveLogoDetails._all_field_names_ = set([]) TeamProfileRemoveLogoDetails._all_fields_ = [] TeamProfileRemoveLogoType.description.validator = bv.String() -TeamProfileRemoveLogoType._all_field_names_ = set(['description']) -TeamProfileRemoveLogoType._all_fields_ = [('description', TeamProfileRemoveLogoType.description.validator)] +TeamProfileRemoveLogoType._all_field_names_ = set(["description"]) +TeamProfileRemoveLogoType._all_fields_ = [ + ("description", TeamProfileRemoveLogoType.description.validator) +] TeamSelectiveSyncPolicy._disabled_validator = bv.Void() TeamSelectiveSyncPolicy._enabled_validator = bv.Void() TeamSelectiveSyncPolicy._other_validator = bv.Void() TeamSelectiveSyncPolicy._tagmap = { - 'disabled': TeamSelectiveSyncPolicy._disabled_validator, - 'enabled': TeamSelectiveSyncPolicy._enabled_validator, - 'other': TeamSelectiveSyncPolicy._other_validator, + "disabled": TeamSelectiveSyncPolicy._disabled_validator, + "enabled": TeamSelectiveSyncPolicy._enabled_validator, + "other": TeamSelectiveSyncPolicy._other_validator, } -TeamSelectiveSyncPolicy.disabled = TeamSelectiveSyncPolicy('disabled') -TeamSelectiveSyncPolicy.enabled = TeamSelectiveSyncPolicy('enabled') -TeamSelectiveSyncPolicy.other = TeamSelectiveSyncPolicy('other') +TeamSelectiveSyncPolicy.disabled = TeamSelectiveSyncPolicy("disabled") +TeamSelectiveSyncPolicy.enabled = TeamSelectiveSyncPolicy("enabled") +TeamSelectiveSyncPolicy.other = TeamSelectiveSyncPolicy("other") TeamSelectiveSyncPolicyChangedDetails.new_value.validator = TeamSelectiveSyncPolicy_validator TeamSelectiveSyncPolicyChangedDetails.previous_value.validator = TeamSelectiveSyncPolicy_validator -TeamSelectiveSyncPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +TeamSelectiveSyncPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) TeamSelectiveSyncPolicyChangedDetails._all_fields_ = [ - ('new_value', TeamSelectiveSyncPolicyChangedDetails.new_value.validator), - ('previous_value', TeamSelectiveSyncPolicyChangedDetails.previous_value.validator), + ("new_value", TeamSelectiveSyncPolicyChangedDetails.new_value.validator), + ("previous_value", TeamSelectiveSyncPolicyChangedDetails.previous_value.validator), ] TeamSelectiveSyncPolicyChangedType.description.validator = bv.String() -TeamSelectiveSyncPolicyChangedType._all_field_names_ = set(['description']) -TeamSelectiveSyncPolicyChangedType._all_fields_ = [('description', TeamSelectiveSyncPolicyChangedType.description.validator)] +TeamSelectiveSyncPolicyChangedType._all_field_names_ = set(["description"]) +TeamSelectiveSyncPolicyChangedType._all_fields_ = [ + ("description", TeamSelectiveSyncPolicyChangedType.description.validator) +] TeamSelectiveSyncSettingsChangedDetails.previous_value.validator = files.SyncSetting_validator TeamSelectiveSyncSettingsChangedDetails.new_value.validator = files.SyncSetting_validator -TeamSelectiveSyncSettingsChangedDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +TeamSelectiveSyncSettingsChangedDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) TeamSelectiveSyncSettingsChangedDetails._all_fields_ = [ - ('previous_value', TeamSelectiveSyncSettingsChangedDetails.previous_value.validator), - ('new_value', TeamSelectiveSyncSettingsChangedDetails.new_value.validator), + ( + "previous_value", + TeamSelectiveSyncSettingsChangedDetails.previous_value.validator, + ), + ("new_value", TeamSelectiveSyncSettingsChangedDetails.new_value.validator), ] TeamSelectiveSyncSettingsChangedType.description.validator = bv.String() -TeamSelectiveSyncSettingsChangedType._all_field_names_ = set(['description']) -TeamSelectiveSyncSettingsChangedType._all_fields_ = [('description', TeamSelectiveSyncSettingsChangedType.description.validator)] +TeamSelectiveSyncSettingsChangedType._all_field_names_ = set(["description"]) +TeamSelectiveSyncSettingsChangedType._all_fields_ = [ + ("description", TeamSelectiveSyncSettingsChangedType.description.validator) +] TeamSharingWhitelistSubjectsChangedDetails.added_whitelist_subjects.validator = bv.List(bv.String()) -TeamSharingWhitelistSubjectsChangedDetails.removed_whitelist_subjects.validator = bv.List(bv.String()) -TeamSharingWhitelistSubjectsChangedDetails._all_field_names_ = set([ - 'added_whitelist_subjects', - 'removed_whitelist_subjects', -]) +TeamSharingWhitelistSubjectsChangedDetails.removed_whitelist_subjects.validator = bv.List( + bv.String() +) +TeamSharingWhitelistSubjectsChangedDetails._all_field_names_ = set( + [ + "added_whitelist_subjects", + "removed_whitelist_subjects", + ] +) TeamSharingWhitelistSubjectsChangedDetails._all_fields_ = [ - ('added_whitelist_subjects', TeamSharingWhitelistSubjectsChangedDetails.added_whitelist_subjects.validator), - ('removed_whitelist_subjects', TeamSharingWhitelistSubjectsChangedDetails.removed_whitelist_subjects.validator), + ( + "added_whitelist_subjects", + TeamSharingWhitelistSubjectsChangedDetails.added_whitelist_subjects.validator, + ), + ( + "removed_whitelist_subjects", + TeamSharingWhitelistSubjectsChangedDetails.removed_whitelist_subjects.validator, + ), ] TeamSharingWhitelistSubjectsChangedType.description.validator = bv.String() -TeamSharingWhitelistSubjectsChangedType._all_field_names_ = set(['description']) -TeamSharingWhitelistSubjectsChangedType._all_fields_ = [('description', TeamSharingWhitelistSubjectsChangedType.description.validator)] +TeamSharingWhitelistSubjectsChangedType._all_field_names_ = set(["description"]) +TeamSharingWhitelistSubjectsChangedType._all_fields_ = [ + ("description", TeamSharingWhitelistSubjectsChangedType.description.validator) +] TeamStorageCreateReportDetails._all_field_names_ = set([]) TeamStorageCreateReportDetails._all_fields_ = [] -TeamStorageCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -TeamStorageCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) -TeamStorageCreateReportFailedDetails._all_fields_ = [('failure_reason', TeamStorageCreateReportFailedDetails.failure_reason.validator)] +TeamStorageCreateReportFailedDetails.failure_reason.validator = ( + team.TeamReportFailureReason_validator +) +TeamStorageCreateReportFailedDetails._all_field_names_ = set(["failure_reason"]) +TeamStorageCreateReportFailedDetails._all_fields_ = [ + ("failure_reason", TeamStorageCreateReportFailedDetails.failure_reason.validator) +] TeamStorageCreateReportFailedType.description.validator = bv.String() -TeamStorageCreateReportFailedType._all_field_names_ = set(['description']) -TeamStorageCreateReportFailedType._all_fields_ = [('description', TeamStorageCreateReportFailedType.description.validator)] +TeamStorageCreateReportFailedType._all_field_names_ = set(["description"]) +TeamStorageCreateReportFailedType._all_fields_ = [ + ("description", TeamStorageCreateReportFailedType.description.validator) +] TeamStorageCreateReportType.description.validator = bv.String() -TeamStorageCreateReportType._all_field_names_ = set(['description']) -TeamStorageCreateReportType._all_fields_ = [('description', TeamStorageCreateReportType.description.validator)] +TeamStorageCreateReportType._all_field_names_ = set(["description"]) +TeamStorageCreateReportType._all_fields_ = [ + ("description", TeamStorageCreateReportType.description.validator) +] TfaAddBackupPhoneDetails._all_field_names_ = set([]) TfaAddBackupPhoneDetails._all_fields_ = [] TfaAddBackupPhoneType.description.validator = bv.String() -TfaAddBackupPhoneType._all_field_names_ = set(['description']) -TfaAddBackupPhoneType._all_fields_ = [('description', TfaAddBackupPhoneType.description.validator)] +TfaAddBackupPhoneType._all_field_names_ = set(["description"]) +TfaAddBackupPhoneType._all_fields_ = [("description", TfaAddBackupPhoneType.description.validator)] TfaAddExceptionDetails._all_field_names_ = set([]) TfaAddExceptionDetails._all_fields_ = [] TfaAddExceptionType.description.validator = bv.String() -TfaAddExceptionType._all_field_names_ = set(['description']) -TfaAddExceptionType._all_fields_ = [('description', TfaAddExceptionType.description.validator)] +TfaAddExceptionType._all_field_names_ = set(["description"]) +TfaAddExceptionType._all_fields_ = [("description", TfaAddExceptionType.description.validator)] TfaAddSecurityKeyDetails._all_field_names_ = set([]) TfaAddSecurityKeyDetails._all_fields_ = [] TfaAddSecurityKeyType.description.validator = bv.String() -TfaAddSecurityKeyType._all_field_names_ = set(['description']) -TfaAddSecurityKeyType._all_fields_ = [('description', TfaAddSecurityKeyType.description.validator)] +TfaAddSecurityKeyType._all_field_names_ = set(["description"]) +TfaAddSecurityKeyType._all_fields_ = [("description", TfaAddSecurityKeyType.description.validator)] TfaChangeBackupPhoneDetails._all_field_names_ = set([]) TfaChangeBackupPhoneDetails._all_fields_ = [] TfaChangeBackupPhoneType.description.validator = bv.String() -TfaChangeBackupPhoneType._all_field_names_ = set(['description']) -TfaChangeBackupPhoneType._all_fields_ = [('description', TfaChangeBackupPhoneType.description.validator)] +TfaChangeBackupPhoneType._all_field_names_ = set(["description"]) +TfaChangeBackupPhoneType._all_fields_ = [ + ("description", TfaChangeBackupPhoneType.description.validator) +] TfaChangePolicyDetails.new_value.validator = team_policies.TwoStepVerificationPolicy_validator -TfaChangePolicyDetails.previous_value.validator = bv.Nullable(team_policies.TwoStepVerificationPolicy_validator) -TfaChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +TfaChangePolicyDetails.previous_value.validator = bv.Nullable( + team_policies.TwoStepVerificationPolicy_validator +) +TfaChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) TfaChangePolicyDetails._all_fields_ = [ - ('new_value', TfaChangePolicyDetails.new_value.validator), - ('previous_value', TfaChangePolicyDetails.previous_value.validator), + ("new_value", TfaChangePolicyDetails.new_value.validator), + ("previous_value", TfaChangePolicyDetails.previous_value.validator), ] TfaChangePolicyType.description.validator = bv.String() -TfaChangePolicyType._all_field_names_ = set(['description']) -TfaChangePolicyType._all_fields_ = [('description', TfaChangePolicyType.description.validator)] +TfaChangePolicyType._all_field_names_ = set(["description"]) +TfaChangePolicyType._all_fields_ = [("description", TfaChangePolicyType.description.validator)] TfaChangeStatusDetails.new_value.validator = TfaConfiguration_validator TfaChangeStatusDetails.previous_value.validator = bv.Nullable(TfaConfiguration_validator) TfaChangeStatusDetails.used_rescue_code.validator = bv.Nullable(bv.Boolean()) -TfaChangeStatusDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', - 'used_rescue_code', -]) +TfaChangeStatusDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + "used_rescue_code", + ] +) TfaChangeStatusDetails._all_fields_ = [ - ('new_value', TfaChangeStatusDetails.new_value.validator), - ('previous_value', TfaChangeStatusDetails.previous_value.validator), - ('used_rescue_code', TfaChangeStatusDetails.used_rescue_code.validator), + ("new_value", TfaChangeStatusDetails.new_value.validator), + ("previous_value", TfaChangeStatusDetails.previous_value.validator), + ("used_rescue_code", TfaChangeStatusDetails.used_rescue_code.validator), ] TfaChangeStatusType.description.validator = bv.String() -TfaChangeStatusType._all_field_names_ = set(['description']) -TfaChangeStatusType._all_fields_ = [('description', TfaChangeStatusType.description.validator)] +TfaChangeStatusType._all_field_names_ = set(["description"]) +TfaChangeStatusType._all_fields_ = [("description", TfaChangeStatusType.description.validator)] TfaConfiguration._authenticator_validator = bv.Void() TfaConfiguration._disabled_validator = bv.Void() @@ -108578,46 +116884,52 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TfaConfiguration._sms_validator = bv.Void() TfaConfiguration._other_validator = bv.Void() TfaConfiguration._tagmap = { - 'authenticator': TfaConfiguration._authenticator_validator, - 'disabled': TfaConfiguration._disabled_validator, - 'enabled': TfaConfiguration._enabled_validator, - 'sms': TfaConfiguration._sms_validator, - 'other': TfaConfiguration._other_validator, + "authenticator": TfaConfiguration._authenticator_validator, + "disabled": TfaConfiguration._disabled_validator, + "enabled": TfaConfiguration._enabled_validator, + "sms": TfaConfiguration._sms_validator, + "other": TfaConfiguration._other_validator, } -TfaConfiguration.authenticator = TfaConfiguration('authenticator') -TfaConfiguration.disabled = TfaConfiguration('disabled') -TfaConfiguration.enabled = TfaConfiguration('enabled') -TfaConfiguration.sms = TfaConfiguration('sms') -TfaConfiguration.other = TfaConfiguration('other') +TfaConfiguration.authenticator = TfaConfiguration("authenticator") +TfaConfiguration.disabled = TfaConfiguration("disabled") +TfaConfiguration.enabled = TfaConfiguration("enabled") +TfaConfiguration.sms = TfaConfiguration("sms") +TfaConfiguration.other = TfaConfiguration("other") TfaRemoveBackupPhoneDetails._all_field_names_ = set([]) TfaRemoveBackupPhoneDetails._all_fields_ = [] TfaRemoveBackupPhoneType.description.validator = bv.String() -TfaRemoveBackupPhoneType._all_field_names_ = set(['description']) -TfaRemoveBackupPhoneType._all_fields_ = [('description', TfaRemoveBackupPhoneType.description.validator)] +TfaRemoveBackupPhoneType._all_field_names_ = set(["description"]) +TfaRemoveBackupPhoneType._all_fields_ = [ + ("description", TfaRemoveBackupPhoneType.description.validator) +] TfaRemoveExceptionDetails._all_field_names_ = set([]) TfaRemoveExceptionDetails._all_fields_ = [] TfaRemoveExceptionType.description.validator = bv.String() -TfaRemoveExceptionType._all_field_names_ = set(['description']) -TfaRemoveExceptionType._all_fields_ = [('description', TfaRemoveExceptionType.description.validator)] +TfaRemoveExceptionType._all_field_names_ = set(["description"]) +TfaRemoveExceptionType._all_fields_ = [ + ("description", TfaRemoveExceptionType.description.validator) +] TfaRemoveSecurityKeyDetails._all_field_names_ = set([]) TfaRemoveSecurityKeyDetails._all_fields_ = [] TfaRemoveSecurityKeyType.description.validator = bv.String() -TfaRemoveSecurityKeyType._all_field_names_ = set(['description']) -TfaRemoveSecurityKeyType._all_fields_ = [('description', TfaRemoveSecurityKeyType.description.validator)] +TfaRemoveSecurityKeyType._all_field_names_ = set(["description"]) +TfaRemoveSecurityKeyType._all_fields_ = [ + ("description", TfaRemoveSecurityKeyType.description.validator) +] TfaResetDetails._all_field_names_ = set([]) TfaResetDetails._all_fields_ = [] TfaResetType.description.validator = bv.String() -TfaResetType._all_field_names_ = set(['description']) -TfaResetType._all_fields_ = [('description', TfaResetType.description.validator)] +TfaResetType._all_field_names_ = set(["description"]) +TfaResetType._all_fields_ = [("description", TfaResetType.description.validator)] TimeUnit._days_validator = bv.Void() TimeUnit._hours_validator = bv.Void() @@ -108629,80 +116941,95 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TimeUnit._years_validator = bv.Void() TimeUnit._other_validator = bv.Void() TimeUnit._tagmap = { - 'days': TimeUnit._days_validator, - 'hours': TimeUnit._hours_validator, - 'milliseconds': TimeUnit._milliseconds_validator, - 'minutes': TimeUnit._minutes_validator, - 'months': TimeUnit._months_validator, - 'seconds': TimeUnit._seconds_validator, - 'weeks': TimeUnit._weeks_validator, - 'years': TimeUnit._years_validator, - 'other': TimeUnit._other_validator, + "days": TimeUnit._days_validator, + "hours": TimeUnit._hours_validator, + "milliseconds": TimeUnit._milliseconds_validator, + "minutes": TimeUnit._minutes_validator, + "months": TimeUnit._months_validator, + "seconds": TimeUnit._seconds_validator, + "weeks": TimeUnit._weeks_validator, + "years": TimeUnit._years_validator, + "other": TimeUnit._other_validator, } -TimeUnit.days = TimeUnit('days') -TimeUnit.hours = TimeUnit('hours') -TimeUnit.milliseconds = TimeUnit('milliseconds') -TimeUnit.minutes = TimeUnit('minutes') -TimeUnit.months = TimeUnit('months') -TimeUnit.seconds = TimeUnit('seconds') -TimeUnit.weeks = TimeUnit('weeks') -TimeUnit.years = TimeUnit('years') -TimeUnit.other = TimeUnit('other') +TimeUnit.days = TimeUnit("days") +TimeUnit.hours = TimeUnit("hours") +TimeUnit.milliseconds = TimeUnit("milliseconds") +TimeUnit.minutes = TimeUnit("minutes") +TimeUnit.months = TimeUnit("months") +TimeUnit.seconds = TimeUnit("seconds") +TimeUnit.weeks = TimeUnit("weeks") +TimeUnit.years = TimeUnit("years") +TimeUnit.other = TimeUnit("other") TopLevelContentPolicy._admins_only_validator = bv.Void() TopLevelContentPolicy._everyone_validator = bv.Void() TopLevelContentPolicy._other_validator = bv.Void() TopLevelContentPolicy._tagmap = { - 'admins_only': TopLevelContentPolicy._admins_only_validator, - 'everyone': TopLevelContentPolicy._everyone_validator, - 'other': TopLevelContentPolicy._other_validator, + "admins_only": TopLevelContentPolicy._admins_only_validator, + "everyone": TopLevelContentPolicy._everyone_validator, + "other": TopLevelContentPolicy._other_validator, } -TopLevelContentPolicy.admins_only = TopLevelContentPolicy('admins_only') -TopLevelContentPolicy.everyone = TopLevelContentPolicy('everyone') -TopLevelContentPolicy.other = TopLevelContentPolicy('other') +TopLevelContentPolicy.admins_only = TopLevelContentPolicy("admins_only") +TopLevelContentPolicy.everyone = TopLevelContentPolicy("everyone") +TopLevelContentPolicy.other = TopLevelContentPolicy("other") TopLevelContentPolicyChangedDetails.new_value.validator = TopLevelContentPolicy_validator TopLevelContentPolicyChangedDetails.previous_value.validator = TopLevelContentPolicy_validator -TopLevelContentPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +TopLevelContentPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) TopLevelContentPolicyChangedDetails._all_fields_ = [ - ('new_value', TopLevelContentPolicyChangedDetails.new_value.validator), - ('previous_value', TopLevelContentPolicyChangedDetails.previous_value.validator), + ("new_value", TopLevelContentPolicyChangedDetails.new_value.validator), + ("previous_value", TopLevelContentPolicyChangedDetails.previous_value.validator), ] TopLevelContentPolicyChangedType.description.validator = bv.String() -TopLevelContentPolicyChangedType._all_field_names_ = set(['description']) -TopLevelContentPolicyChangedType._all_fields_ = [('description', TopLevelContentPolicyChangedType.description.validator)] +TopLevelContentPolicyChangedType._all_field_names_ = set(["description"]) +TopLevelContentPolicyChangedType._all_fields_ = [ + ("description", TopLevelContentPolicyChangedType.description.validator) +] -TrustedNonTeamMemberLogInfo.trusted_non_team_member_type.validator = TrustedNonTeamMemberType_validator +TrustedNonTeamMemberLogInfo.trusted_non_team_member_type.validator = ( + TrustedNonTeamMemberType_validator +) TrustedNonTeamMemberLogInfo.team.validator = bv.Nullable(TeamLogInfo_validator) -TrustedNonTeamMemberLogInfo._field_names_ = set([ - 'trusted_non_team_member_type', - 'team', -]) -TrustedNonTeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union(TrustedNonTeamMemberLogInfo._field_names_) +TrustedNonTeamMemberLogInfo._field_names_ = set( + [ + "trusted_non_team_member_type", + "team", + ] +) +TrustedNonTeamMemberLogInfo._all_field_names_ = UserLogInfo._all_field_names_.union( + TrustedNonTeamMemberLogInfo._field_names_ +) TrustedNonTeamMemberLogInfo._fields_ = [ - ('trusted_non_team_member_type', TrustedNonTeamMemberLogInfo.trusted_non_team_member_type.validator), - ('team', TrustedNonTeamMemberLogInfo.team.validator), + ( + "trusted_non_team_member_type", + TrustedNonTeamMemberLogInfo.trusted_non_team_member_type.validator, + ), + ("team", TrustedNonTeamMemberLogInfo.team.validator), ] -TrustedNonTeamMemberLogInfo._all_fields_ = UserLogInfo._all_fields_ + TrustedNonTeamMemberLogInfo._fields_ +TrustedNonTeamMemberLogInfo._all_fields_ = ( + UserLogInfo._all_fields_ + TrustedNonTeamMemberLogInfo._fields_ +) TrustedNonTeamMemberType._enterprise_admin_validator = bv.Void() TrustedNonTeamMemberType._multi_instance_admin_validator = bv.Void() TrustedNonTeamMemberType._other_validator = bv.Void() TrustedNonTeamMemberType._tagmap = { - 'enterprise_admin': TrustedNonTeamMemberType._enterprise_admin_validator, - 'multi_instance_admin': TrustedNonTeamMemberType._multi_instance_admin_validator, - 'other': TrustedNonTeamMemberType._other_validator, + "enterprise_admin": TrustedNonTeamMemberType._enterprise_admin_validator, + "multi_instance_admin": TrustedNonTeamMemberType._multi_instance_admin_validator, + "other": TrustedNonTeamMemberType._other_validator, } -TrustedNonTeamMemberType.enterprise_admin = TrustedNonTeamMemberType('enterprise_admin') -TrustedNonTeamMemberType.multi_instance_admin = TrustedNonTeamMemberType('multi_instance_admin') -TrustedNonTeamMemberType.other = TrustedNonTeamMemberType('other') +TrustedNonTeamMemberType.enterprise_admin = TrustedNonTeamMemberType("enterprise_admin") +TrustedNonTeamMemberType.multi_instance_admin = TrustedNonTeamMemberType("multi_instance_admin") +TrustedNonTeamMemberType.other = TrustedNonTeamMemberType("other") TrustedTeamsRequestAction._accepted_validator = bv.Void() TrustedTeamsRequestAction._declined_validator = bv.Void() @@ -108711,281 +117038,337 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TrustedTeamsRequestAction._revoked_validator = bv.Void() TrustedTeamsRequestAction._other_validator = bv.Void() TrustedTeamsRequestAction._tagmap = { - 'accepted': TrustedTeamsRequestAction._accepted_validator, - 'declined': TrustedTeamsRequestAction._declined_validator, - 'expired': TrustedTeamsRequestAction._expired_validator, - 'invited': TrustedTeamsRequestAction._invited_validator, - 'revoked': TrustedTeamsRequestAction._revoked_validator, - 'other': TrustedTeamsRequestAction._other_validator, + "accepted": TrustedTeamsRequestAction._accepted_validator, + "declined": TrustedTeamsRequestAction._declined_validator, + "expired": TrustedTeamsRequestAction._expired_validator, + "invited": TrustedTeamsRequestAction._invited_validator, + "revoked": TrustedTeamsRequestAction._revoked_validator, + "other": TrustedTeamsRequestAction._other_validator, } -TrustedTeamsRequestAction.accepted = TrustedTeamsRequestAction('accepted') -TrustedTeamsRequestAction.declined = TrustedTeamsRequestAction('declined') -TrustedTeamsRequestAction.expired = TrustedTeamsRequestAction('expired') -TrustedTeamsRequestAction.invited = TrustedTeamsRequestAction('invited') -TrustedTeamsRequestAction.revoked = TrustedTeamsRequestAction('revoked') -TrustedTeamsRequestAction.other = TrustedTeamsRequestAction('other') +TrustedTeamsRequestAction.accepted = TrustedTeamsRequestAction("accepted") +TrustedTeamsRequestAction.declined = TrustedTeamsRequestAction("declined") +TrustedTeamsRequestAction.expired = TrustedTeamsRequestAction("expired") +TrustedTeamsRequestAction.invited = TrustedTeamsRequestAction("invited") +TrustedTeamsRequestAction.revoked = TrustedTeamsRequestAction("revoked") +TrustedTeamsRequestAction.other = TrustedTeamsRequestAction("other") TrustedTeamsRequestState._invited_validator = bv.Void() TrustedTeamsRequestState._linked_validator = bv.Void() TrustedTeamsRequestState._unlinked_validator = bv.Void() TrustedTeamsRequestState._other_validator = bv.Void() TrustedTeamsRequestState._tagmap = { - 'invited': TrustedTeamsRequestState._invited_validator, - 'linked': TrustedTeamsRequestState._linked_validator, - 'unlinked': TrustedTeamsRequestState._unlinked_validator, - 'other': TrustedTeamsRequestState._other_validator, + "invited": TrustedTeamsRequestState._invited_validator, + "linked": TrustedTeamsRequestState._linked_validator, + "unlinked": TrustedTeamsRequestState._unlinked_validator, + "other": TrustedTeamsRequestState._other_validator, } -TrustedTeamsRequestState.invited = TrustedTeamsRequestState('invited') -TrustedTeamsRequestState.linked = TrustedTeamsRequestState('linked') -TrustedTeamsRequestState.unlinked = TrustedTeamsRequestState('unlinked') -TrustedTeamsRequestState.other = TrustedTeamsRequestState('other') +TrustedTeamsRequestState.invited = TrustedTeamsRequestState("invited") +TrustedTeamsRequestState.linked = TrustedTeamsRequestState("linked") +TrustedTeamsRequestState.unlinked = TrustedTeamsRequestState("unlinked") +TrustedTeamsRequestState.other = TrustedTeamsRequestState("other") TwoAccountChangePolicyDetails.new_value.validator = TwoAccountPolicy_validator TwoAccountChangePolicyDetails.previous_value.validator = bv.Nullable(TwoAccountPolicy_validator) -TwoAccountChangePolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +TwoAccountChangePolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) TwoAccountChangePolicyDetails._all_fields_ = [ - ('new_value', TwoAccountChangePolicyDetails.new_value.validator), - ('previous_value', TwoAccountChangePolicyDetails.previous_value.validator), + ("new_value", TwoAccountChangePolicyDetails.new_value.validator), + ("previous_value", TwoAccountChangePolicyDetails.previous_value.validator), ] TwoAccountChangePolicyType.description.validator = bv.String() -TwoAccountChangePolicyType._all_field_names_ = set(['description']) -TwoAccountChangePolicyType._all_fields_ = [('description', TwoAccountChangePolicyType.description.validator)] +TwoAccountChangePolicyType._all_field_names_ = set(["description"]) +TwoAccountChangePolicyType._all_fields_ = [ + ("description", TwoAccountChangePolicyType.description.validator) +] TwoAccountPolicy._disabled_validator = bv.Void() TwoAccountPolicy._enabled_validator = bv.Void() TwoAccountPolicy._other_validator = bv.Void() TwoAccountPolicy._tagmap = { - 'disabled': TwoAccountPolicy._disabled_validator, - 'enabled': TwoAccountPolicy._enabled_validator, - 'other': TwoAccountPolicy._other_validator, + "disabled": TwoAccountPolicy._disabled_validator, + "enabled": TwoAccountPolicy._enabled_validator, + "other": TwoAccountPolicy._other_validator, } -TwoAccountPolicy.disabled = TwoAccountPolicy('disabled') -TwoAccountPolicy.enabled = TwoAccountPolicy('enabled') -TwoAccountPolicy.other = TwoAccountPolicy('other') +TwoAccountPolicy.disabled = TwoAccountPolicy("disabled") +TwoAccountPolicy.enabled = TwoAccountPolicy("enabled") +TwoAccountPolicy.other = TwoAccountPolicy("other") UndoNamingConventionDetails._all_field_names_ = set([]) UndoNamingConventionDetails._all_fields_ = [] UndoNamingConventionType.description.validator = bv.String() -UndoNamingConventionType._all_field_names_ = set(['description']) -UndoNamingConventionType._all_fields_ = [('description', UndoNamingConventionType.description.validator)] +UndoNamingConventionType._all_field_names_ = set(["description"]) +UndoNamingConventionType._all_fields_ = [ + ("description", UndoNamingConventionType.description.validator) +] UndoOrganizeFolderWithTidyDetails._all_field_names_ = set([]) UndoOrganizeFolderWithTidyDetails._all_fields_ = [] UndoOrganizeFolderWithTidyType.description.validator = bv.String() -UndoOrganizeFolderWithTidyType._all_field_names_ = set(['description']) -UndoOrganizeFolderWithTidyType._all_fields_ = [('description', UndoOrganizeFolderWithTidyType.description.validator)] +UndoOrganizeFolderWithTidyType._all_field_names_ = set(["description"]) +UndoOrganizeFolderWithTidyType._all_fields_ = [ + ("description", UndoOrganizeFolderWithTidyType.description.validator) +] UserLinkedAppLogInfo._field_names_ = set([]) -UserLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union(UserLinkedAppLogInfo._field_names_) +UserLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union( + UserLinkedAppLogInfo._field_names_ +) UserLinkedAppLogInfo._fields_ = [] UserLinkedAppLogInfo._all_fields_ = AppLogInfo._all_fields_ + UserLinkedAppLogInfo._fields_ UserNameLogInfo.given_name.validator = bv.String() UserNameLogInfo.surname.validator = bv.String() UserNameLogInfo.locale.validator = bv.Nullable(bv.String()) -UserNameLogInfo._all_field_names_ = set([ - 'given_name', - 'surname', - 'locale', -]) +UserNameLogInfo._all_field_names_ = set( + [ + "given_name", + "surname", + "locale", + ] +) UserNameLogInfo._all_fields_ = [ - ('given_name', UserNameLogInfo.given_name.validator), - ('surname', UserNameLogInfo.surname.validator), - ('locale', UserNameLogInfo.locale.validator), + ("given_name", UserNameLogInfo.given_name.validator), + ("surname", UserNameLogInfo.surname.validator), + ("locale", UserNameLogInfo.locale.validator), ] UserOrTeamLinkedAppLogInfo._field_names_ = set([]) -UserOrTeamLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union(UserOrTeamLinkedAppLogInfo._field_names_) +UserOrTeamLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union( + UserOrTeamLinkedAppLogInfo._field_names_ +) UserOrTeamLinkedAppLogInfo._fields_ = [] -UserOrTeamLinkedAppLogInfo._all_fields_ = AppLogInfo._all_fields_ + UserOrTeamLinkedAppLogInfo._fields_ +UserOrTeamLinkedAppLogInfo._all_fields_ = ( + AppLogInfo._all_fields_ + UserOrTeamLinkedAppLogInfo._fields_ +) UserTagsAddedDetails.values.validator = bv.List(bv.String()) -UserTagsAddedDetails._all_field_names_ = set(['values']) -UserTagsAddedDetails._all_fields_ = [('values', UserTagsAddedDetails.values.validator)] +UserTagsAddedDetails._all_field_names_ = set(["values"]) +UserTagsAddedDetails._all_fields_ = [("values", UserTagsAddedDetails.values.validator)] UserTagsAddedType.description.validator = bv.String() -UserTagsAddedType._all_field_names_ = set(['description']) -UserTagsAddedType._all_fields_ = [('description', UserTagsAddedType.description.validator)] +UserTagsAddedType._all_field_names_ = set(["description"]) +UserTagsAddedType._all_fields_ = [("description", UserTagsAddedType.description.validator)] UserTagsRemovedDetails.values.validator = bv.List(bv.String()) -UserTagsRemovedDetails._all_field_names_ = set(['values']) -UserTagsRemovedDetails._all_fields_ = [('values', UserTagsRemovedDetails.values.validator)] +UserTagsRemovedDetails._all_field_names_ = set(["values"]) +UserTagsRemovedDetails._all_fields_ = [("values", UserTagsRemovedDetails.values.validator)] UserTagsRemovedType.description.validator = bv.String() -UserTagsRemovedType._all_field_names_ = set(['description']) -UserTagsRemovedType._all_fields_ = [('description', UserTagsRemovedType.description.validator)] +UserTagsRemovedType._all_field_names_ = set(["description"]) +UserTagsRemovedType._all_fields_ = [("description", UserTagsRemovedType.description.validator)] ViewerInfoPolicyChangedDetails.previous_value.validator = PassPolicy_validator ViewerInfoPolicyChangedDetails.new_value.validator = PassPolicy_validator -ViewerInfoPolicyChangedDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +ViewerInfoPolicyChangedDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) ViewerInfoPolicyChangedDetails._all_fields_ = [ - ('previous_value', ViewerInfoPolicyChangedDetails.previous_value.validator), - ('new_value', ViewerInfoPolicyChangedDetails.new_value.validator), + ("previous_value", ViewerInfoPolicyChangedDetails.previous_value.validator), + ("new_value", ViewerInfoPolicyChangedDetails.new_value.validator), ] ViewerInfoPolicyChangedType.description.validator = bv.String() -ViewerInfoPolicyChangedType._all_field_names_ = set(['description']) -ViewerInfoPolicyChangedType._all_fields_ = [('description', ViewerInfoPolicyChangedType.description.validator)] +ViewerInfoPolicyChangedType._all_field_names_ = set(["description"]) +ViewerInfoPolicyChangedType._all_fields_ = [ + ("description", ViewerInfoPolicyChangedType.description.validator) +] WatermarkingPolicy._disabled_validator = bv.Void() WatermarkingPolicy._enabled_validator = bv.Void() WatermarkingPolicy._other_validator = bv.Void() WatermarkingPolicy._tagmap = { - 'disabled': WatermarkingPolicy._disabled_validator, - 'enabled': WatermarkingPolicy._enabled_validator, - 'other': WatermarkingPolicy._other_validator, + "disabled": WatermarkingPolicy._disabled_validator, + "enabled": WatermarkingPolicy._enabled_validator, + "other": WatermarkingPolicy._other_validator, } -WatermarkingPolicy.disabled = WatermarkingPolicy('disabled') -WatermarkingPolicy.enabled = WatermarkingPolicy('enabled') -WatermarkingPolicy.other = WatermarkingPolicy('other') +WatermarkingPolicy.disabled = WatermarkingPolicy("disabled") +WatermarkingPolicy.enabled = WatermarkingPolicy("enabled") +WatermarkingPolicy.other = WatermarkingPolicy("other") WatermarkingPolicyChangedDetails.new_value.validator = WatermarkingPolicy_validator WatermarkingPolicyChangedDetails.previous_value.validator = WatermarkingPolicy_validator -WatermarkingPolicyChangedDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +WatermarkingPolicyChangedDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) WatermarkingPolicyChangedDetails._all_fields_ = [ - ('new_value', WatermarkingPolicyChangedDetails.new_value.validator), - ('previous_value', WatermarkingPolicyChangedDetails.previous_value.validator), + ("new_value", WatermarkingPolicyChangedDetails.new_value.validator), + ("previous_value", WatermarkingPolicyChangedDetails.previous_value.validator), ] WatermarkingPolicyChangedType.description.validator = bv.String() -WatermarkingPolicyChangedType._all_field_names_ = set(['description']) -WatermarkingPolicyChangedType._all_fields_ = [('description', WatermarkingPolicyChangedType.description.validator)] +WatermarkingPolicyChangedType._all_field_names_ = set(["description"]) +WatermarkingPolicyChangedType._all_fields_ = [ + ("description", WatermarkingPolicyChangedType.description.validator) +] WebDeviceSessionLogInfo.session_info.validator = bv.Nullable(WebSessionLogInfo_validator) WebDeviceSessionLogInfo.user_agent.validator = bv.String() WebDeviceSessionLogInfo.os.validator = bv.String() WebDeviceSessionLogInfo.browser.validator = bv.String() -WebDeviceSessionLogInfo._field_names_ = set([ - 'session_info', - 'user_agent', - 'os', - 'browser', -]) -WebDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union(WebDeviceSessionLogInfo._field_names_) +WebDeviceSessionLogInfo._field_names_ = set( + [ + "session_info", + "user_agent", + "os", + "browser", + ] +) +WebDeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._all_field_names_.union( + WebDeviceSessionLogInfo._field_names_ +) WebDeviceSessionLogInfo._fields_ = [ - ('session_info', WebDeviceSessionLogInfo.session_info.validator), - ('user_agent', WebDeviceSessionLogInfo.user_agent.validator), - ('os', WebDeviceSessionLogInfo.os.validator), - ('browser', WebDeviceSessionLogInfo.browser.validator), + ("session_info", WebDeviceSessionLogInfo.session_info.validator), + ("user_agent", WebDeviceSessionLogInfo.user_agent.validator), + ("os", WebDeviceSessionLogInfo.os.validator), + ("browser", WebDeviceSessionLogInfo.browser.validator), ] -WebDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + WebDeviceSessionLogInfo._fields_ +WebDeviceSessionLogInfo._all_fields_ = ( + DeviceSessionLogInfo._all_fields_ + WebDeviceSessionLogInfo._fields_ +) WebSessionLogInfo._field_names_ = set([]) -WebSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union(WebSessionLogInfo._field_names_) +WebSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union( + WebSessionLogInfo._field_names_ +) WebSessionLogInfo._fields_ = [] WebSessionLogInfo._all_fields_ = SessionLogInfo._all_fields_ + WebSessionLogInfo._fields_ WebSessionsChangeActiveSessionLimitDetails.previous_value.validator = bv.String() WebSessionsChangeActiveSessionLimitDetails.new_value.validator = bv.String() -WebSessionsChangeActiveSessionLimitDetails._all_field_names_ = set([ - 'previous_value', - 'new_value', -]) +WebSessionsChangeActiveSessionLimitDetails._all_field_names_ = set( + [ + "previous_value", + "new_value", + ] +) WebSessionsChangeActiveSessionLimitDetails._all_fields_ = [ - ('previous_value', WebSessionsChangeActiveSessionLimitDetails.previous_value.validator), - ('new_value', WebSessionsChangeActiveSessionLimitDetails.new_value.validator), + ( + "previous_value", + WebSessionsChangeActiveSessionLimitDetails.previous_value.validator, + ), + ("new_value", WebSessionsChangeActiveSessionLimitDetails.new_value.validator), ] WebSessionsChangeActiveSessionLimitType.description.validator = bv.String() -WebSessionsChangeActiveSessionLimitType._all_field_names_ = set(['description']) -WebSessionsChangeActiveSessionLimitType._all_fields_ = [('description', WebSessionsChangeActiveSessionLimitType.description.validator)] - -WebSessionsChangeFixedLengthPolicyDetails.new_value.validator = bv.Nullable(WebSessionsFixedLengthPolicy_validator) -WebSessionsChangeFixedLengthPolicyDetails.previous_value.validator = bv.Nullable(WebSessionsFixedLengthPolicy_validator) -WebSessionsChangeFixedLengthPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +WebSessionsChangeActiveSessionLimitType._all_field_names_ = set(["description"]) +WebSessionsChangeActiveSessionLimitType._all_fields_ = [ + ("description", WebSessionsChangeActiveSessionLimitType.description.validator) +] + +WebSessionsChangeFixedLengthPolicyDetails.new_value.validator = bv.Nullable( + WebSessionsFixedLengthPolicy_validator +) +WebSessionsChangeFixedLengthPolicyDetails.previous_value.validator = bv.Nullable( + WebSessionsFixedLengthPolicy_validator +) +WebSessionsChangeFixedLengthPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) WebSessionsChangeFixedLengthPolicyDetails._all_fields_ = [ - ('new_value', WebSessionsChangeFixedLengthPolicyDetails.new_value.validator), - ('previous_value', WebSessionsChangeFixedLengthPolicyDetails.previous_value.validator), + ("new_value", WebSessionsChangeFixedLengthPolicyDetails.new_value.validator), + ( + "previous_value", + WebSessionsChangeFixedLengthPolicyDetails.previous_value.validator, + ), ] WebSessionsChangeFixedLengthPolicyType.description.validator = bv.String() -WebSessionsChangeFixedLengthPolicyType._all_field_names_ = set(['description']) -WebSessionsChangeFixedLengthPolicyType._all_fields_ = [('description', WebSessionsChangeFixedLengthPolicyType.description.validator)] - -WebSessionsChangeIdleLengthPolicyDetails.new_value.validator = bv.Nullable(WebSessionsIdleLengthPolicy_validator) -WebSessionsChangeIdleLengthPolicyDetails.previous_value.validator = bv.Nullable(WebSessionsIdleLengthPolicy_validator) -WebSessionsChangeIdleLengthPolicyDetails._all_field_names_ = set([ - 'new_value', - 'previous_value', -]) +WebSessionsChangeFixedLengthPolicyType._all_field_names_ = set(["description"]) +WebSessionsChangeFixedLengthPolicyType._all_fields_ = [ + ("description", WebSessionsChangeFixedLengthPolicyType.description.validator) +] + +WebSessionsChangeIdleLengthPolicyDetails.new_value.validator = bv.Nullable( + WebSessionsIdleLengthPolicy_validator +) +WebSessionsChangeIdleLengthPolicyDetails.previous_value.validator = bv.Nullable( + WebSessionsIdleLengthPolicy_validator +) +WebSessionsChangeIdleLengthPolicyDetails._all_field_names_ = set( + [ + "new_value", + "previous_value", + ] +) WebSessionsChangeIdleLengthPolicyDetails._all_fields_ = [ - ('new_value', WebSessionsChangeIdleLengthPolicyDetails.new_value.validator), - ('previous_value', WebSessionsChangeIdleLengthPolicyDetails.previous_value.validator), + ("new_value", WebSessionsChangeIdleLengthPolicyDetails.new_value.validator), + ( + "previous_value", + WebSessionsChangeIdleLengthPolicyDetails.previous_value.validator, + ), ] WebSessionsChangeIdleLengthPolicyType.description.validator = bv.String() -WebSessionsChangeIdleLengthPolicyType._all_field_names_ = set(['description']) -WebSessionsChangeIdleLengthPolicyType._all_fields_ = [('description', WebSessionsChangeIdleLengthPolicyType.description.validator)] +WebSessionsChangeIdleLengthPolicyType._all_field_names_ = set(["description"]) +WebSessionsChangeIdleLengthPolicyType._all_fields_ = [ + ("description", WebSessionsChangeIdleLengthPolicyType.description.validator) +] WebSessionsFixedLengthPolicy._defined_validator = DurationLogInfo_validator WebSessionsFixedLengthPolicy._undefined_validator = bv.Void() WebSessionsFixedLengthPolicy._other_validator = bv.Void() WebSessionsFixedLengthPolicy._tagmap = { - 'defined': WebSessionsFixedLengthPolicy._defined_validator, - 'undefined': WebSessionsFixedLengthPolicy._undefined_validator, - 'other': WebSessionsFixedLengthPolicy._other_validator, + "defined": WebSessionsFixedLengthPolicy._defined_validator, + "undefined": WebSessionsFixedLengthPolicy._undefined_validator, + "other": WebSessionsFixedLengthPolicy._other_validator, } -WebSessionsFixedLengthPolicy.undefined = WebSessionsFixedLengthPolicy('undefined') -WebSessionsFixedLengthPolicy.other = WebSessionsFixedLengthPolicy('other') +WebSessionsFixedLengthPolicy.undefined = WebSessionsFixedLengthPolicy("undefined") +WebSessionsFixedLengthPolicy.other = WebSessionsFixedLengthPolicy("other") WebSessionsIdleLengthPolicy._defined_validator = DurationLogInfo_validator WebSessionsIdleLengthPolicy._undefined_validator = bv.Void() WebSessionsIdleLengthPolicy._other_validator = bv.Void() WebSessionsIdleLengthPolicy._tagmap = { - 'defined': WebSessionsIdleLengthPolicy._defined_validator, - 'undefined': WebSessionsIdleLengthPolicy._undefined_validator, - 'other': WebSessionsIdleLengthPolicy._other_validator, + "defined": WebSessionsIdleLengthPolicy._defined_validator, + "undefined": WebSessionsIdleLengthPolicy._undefined_validator, + "other": WebSessionsIdleLengthPolicy._other_validator, } -WebSessionsIdleLengthPolicy.undefined = WebSessionsIdleLengthPolicy('undefined') -WebSessionsIdleLengthPolicy.other = WebSessionsIdleLengthPolicy('other') +WebSessionsIdleLengthPolicy.undefined = WebSessionsIdleLengthPolicy("undefined") +WebSessionsIdleLengthPolicy.other = WebSessionsIdleLengthPolicy("other") GetTeamEventsArg.limit.default = 1000 get_events = bb.Route( - 'get_events', + "get_events", 1, False, GetTeamEventsArg_validator, GetTeamEventsResult_validator, GetTeamEventsError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) get_events_continue = bb.Route( - 'get_events/continue', + "get_events/continue", 1, False, GetTeamEventsContinueArg_validator, GetTeamEventsResult_validator, GetTeamEventsContinueError_validator, - {'auth': 'team', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "team", "host": "api", "style": "rpc"}, ) ROUTES = { - 'get_events': get_events, - 'get_events/continue': get_events_continue, + "get_events": get_events, + "get_events/continue": get_events_continue, } - diff --git a/dropbox/team_policies.py b/dropbox/team_policies.py index 0fea2fc0..acef2217 100644 --- a/dropbox/team_policies.py +++ b/dropbox/team_policies.py @@ -7,6 +7,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class CameraUploadsPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -19,7 +20,7 @@ class CameraUploadsPolicyState(bb.Union): Background camera uploads are allowed. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -33,7 +34,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -41,7 +42,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -49,13 +50,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CameraUploadsPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(CameraUploadsPolicyState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + CameraUploadsPolicyState_validator = bv.Union(CameraUploadsPolicyState) + class ComputerBackupPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -71,7 +76,7 @@ class ComputerBackupPolicyState(bb.Union): teams. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -87,7 +92,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -95,7 +100,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_default(self): """ @@ -103,7 +108,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_other(self): """ @@ -111,13 +116,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ComputerBackupPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ComputerBackupPolicyState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ComputerBackupPolicyState_validator = bv.Union(ComputerBackupPolicyState) + class DefaultLinkExpirationDaysPolicy(bb.Union): """ Policy governing default expiration date for new links shared outside the @@ -145,7 +154,7 @@ class DefaultLinkExpirationDaysPolicy(bb.Union): New links shared outside the team default to expire in 365 days. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition none = None # Attribute is overwritten below the class definition @@ -171,7 +180,7 @@ def is_none(self): :rtype: bool """ - return self._tag == 'none' + return self._tag == "none" def is_day_1(self): """ @@ -179,7 +188,7 @@ def is_day_1(self): :rtype: bool """ - return self._tag == 'day_1' + return self._tag == "day_1" def is_day_3(self): """ @@ -187,7 +196,7 @@ def is_day_3(self): :rtype: bool """ - return self._tag == 'day_3' + return self._tag == "day_3" def is_day_7(self): """ @@ -195,7 +204,7 @@ def is_day_7(self): :rtype: bool """ - return self._tag == 'day_7' + return self._tag == "day_7" def is_day_30(self): """ @@ -203,7 +212,7 @@ def is_day_30(self): :rtype: bool """ - return self._tag == 'day_30' + return self._tag == "day_30" def is_day_90(self): """ @@ -211,7 +220,7 @@ def is_day_90(self): :rtype: bool """ - return self._tag == 'day_90' + return self._tag == "day_90" def is_day_180(self): """ @@ -219,7 +228,7 @@ def is_day_180(self): :rtype: bool """ - return self._tag == 'day_180' + return self._tag == "day_180" def is_year_1(self): """ @@ -227,7 +236,7 @@ def is_year_1(self): :rtype: bool """ - return self._tag == 'year_1' + return self._tag == "year_1" def is_other(self): """ @@ -235,13 +244,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DefaultLinkExpirationDaysPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DefaultLinkExpirationDaysPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DefaultLinkExpirationDaysPolicy_validator = bv.Union(DefaultLinkExpirationDaysPolicy) + class EmmState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -256,7 +269,7 @@ class EmmState(bb.Union): Emm token is required. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -272,7 +285,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_optional(self): """ @@ -280,7 +293,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == 'optional' + return self._tag == "optional" def is_required(self): """ @@ -288,7 +301,7 @@ def is_required(self): :rtype: bool """ - return self._tag == 'required' + return self._tag == "required" def is_other(self): """ @@ -296,13 +309,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(EmmState, self)._process_custom_annotations(annotation_type, field_path, processor) + EmmState_validator = bv.Union(EmmState) + class EnforceLinkPasswordPolicy(bb.Union): """ Policy governing whether new links shared outside the team require @@ -318,7 +333,7 @@ class EnforceLinkPasswordPolicy(bb.Union): New links shared outside the team require passwords. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition optional = None # Attribute is overwritten below the class definition @@ -332,7 +347,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == 'optional' + return self._tag == "optional" def is_required(self): """ @@ -340,7 +355,7 @@ def is_required(self): :rtype: bool """ - return self._tag == 'required' + return self._tag == "required" def is_other(self): """ @@ -348,13 +363,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EnforceLinkPasswordPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(EnforceLinkPasswordPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + EnforceLinkPasswordPolicy_validator = bv.Union(EnforceLinkPasswordPolicy) + class ExternalDriveBackupPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -369,7 +388,7 @@ class ExternalDriveBackupPolicyState(bb.Union): External Drive Backup default value based on team tier. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -385,7 +404,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -393,7 +412,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_default(self): """ @@ -401,7 +420,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_other(self): """ @@ -409,13 +428,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExternalDriveBackupPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ExternalDriveBackupPolicyState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ExternalDriveBackupPolicyState_validator = bv.Union(ExternalDriveBackupPolicyState) + class FileLockingPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -428,7 +451,7 @@ class FileLockingPolicyState(bb.Union): File locking feature is allowed. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -442,7 +465,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -450,7 +473,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -458,13 +481,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLockingPolicyState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLockingPolicyState_validator = bv.Union(FileLockingPolicyState) + class FileProviderMigrationPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -483,7 +510,7 @@ class FileProviderMigrationPolicyState(bb.Union): team. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -501,7 +528,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -509,7 +536,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_default(self): """ @@ -517,7 +544,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_immediate(self): """ @@ -525,7 +552,7 @@ def is_immediate(self): :rtype: bool """ - return self._tag == 'immediate' + return self._tag == "immediate" def is_other(self): """ @@ -533,13 +560,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileProviderMigrationPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileProviderMigrationPolicyState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileProviderMigrationPolicyState_validator = bv.Union(FileProviderMigrationPolicyState) + class GroupCreation(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -564,7 +595,7 @@ def is_admins_and_members(self): :rtype: bool """ - return self._tag == 'admins_and_members' + return self._tag == "admins_and_members" def is_admins_only(self): """ @@ -572,13 +603,17 @@ def is_admins_only(self): :rtype: bool """ - return self._tag == 'admins_only' + return self._tag == "admins_only" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupCreation, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GroupCreation, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GroupCreation_validator = bv.Union(GroupCreation) + class OfficeAddInPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -591,7 +626,7 @@ class OfficeAddInPolicy(bb.Union): Office Add-In is enabled. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -605,7 +640,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -613,7 +648,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -621,13 +656,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(OfficeAddInPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(OfficeAddInPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + OfficeAddInPolicy_validator = bv.Union(OfficeAddInPolicy) + class PaperDefaultFolderPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -641,7 +680,7 @@ class PaperDefaultFolderPolicy(bb.Union): Invite only will be the default option when creating a folder in Paper. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition everyone_in_team = None # Attribute is overwritten below the class definition @@ -655,7 +694,7 @@ def is_everyone_in_team(self): :rtype: bool """ - return self._tag == 'everyone_in_team' + return self._tag == "everyone_in_team" def is_invite_only(self): """ @@ -663,7 +702,7 @@ def is_invite_only(self): :rtype: bool """ - return self._tag == 'invite_only' + return self._tag == "invite_only" def is_other(self): """ @@ -671,13 +710,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDefaultFolderPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDefaultFolderPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDefaultFolderPolicy_validator = bv.Union(PaperDefaultFolderPolicy) + class PaperDeploymentPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -691,7 +734,7 @@ class PaperDeploymentPolicy(bb.Union): whitelisted, check 'is_paper_whitelisted' on 'account/info'. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition full = None # Attribute is overwritten below the class definition @@ -705,7 +748,7 @@ def is_full(self): :rtype: bool """ - return self._tag == 'full' + return self._tag == "full" def is_partial(self): """ @@ -713,7 +756,7 @@ def is_partial(self): :rtype: bool """ - return self._tag == 'partial' + return self._tag == "partial" def is_other(self): """ @@ -721,13 +764,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDeploymentPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDeploymentPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDeploymentPolicy_validator = bv.Union(PaperDeploymentPolicy) + class PaperDesktopPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -740,7 +787,7 @@ class PaperDesktopPolicy(bb.Union): Allow team members to use Paper Desktop. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -754,7 +801,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -762,7 +809,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -770,13 +817,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDesktopPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperDesktopPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperDesktopPolicy_validator = bv.Union(PaperDesktopPolicy) + class PaperEnabledPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -791,7 +842,7 @@ class PaperEnabledPolicy(bb.Union): Unspecified policy. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -807,7 +858,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -815,7 +866,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_unspecified(self): """ @@ -823,7 +874,7 @@ def is_unspecified(self): :rtype: bool """ - return self._tag == 'unspecified' + return self._tag == "unspecified" def is_other(self): """ @@ -831,13 +882,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperEnabledPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperEnabledPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperEnabledPolicy_validator = bv.Union(PaperEnabledPolicy) + class PasswordControlMode(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -850,7 +905,7 @@ class PasswordControlMode(bb.Union): Password is enabled. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -864,7 +919,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -872,7 +927,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -880,13 +935,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordControlMode, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordControlMode, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasswordControlMode_validator = bv.Union(PasswordControlMode) + class PasswordStrengthPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -905,7 +964,7 @@ class PasswordStrengthPolicy(bb.Union): the value must be kept as is for backwards compatability. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition minimal_requirements = None # Attribute is overwritten below the class definition @@ -921,7 +980,7 @@ def is_minimal_requirements(self): :rtype: bool """ - return self._tag == 'minimal_requirements' + return self._tag == "minimal_requirements" def is_moderate_password(self): """ @@ -929,7 +988,7 @@ def is_moderate_password(self): :rtype: bool """ - return self._tag == 'moderate_password' + return self._tag == "moderate_password" def is_strong_password(self): """ @@ -937,7 +996,7 @@ def is_strong_password(self): :rtype: bool """ - return self._tag == 'strong_password' + return self._tag == "strong_password" def is_other(self): """ @@ -945,13 +1004,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PasswordStrengthPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PasswordStrengthPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PasswordStrengthPolicy_validator = bv.Union(PasswordStrengthPolicy) + class RolloutMethod(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -980,7 +1043,7 @@ def is_unlink_all(self): :rtype: bool """ - return self._tag == 'unlink_all' + return self._tag == "unlink_all" def is_unlink_most_inactive(self): """ @@ -988,7 +1051,7 @@ def is_unlink_most_inactive(self): :rtype: bool """ - return self._tag == 'unlink_most_inactive' + return self._tag == "unlink_most_inactive" def is_add_member_to_exceptions(self): """ @@ -996,13 +1059,17 @@ def is_add_member_to_exceptions(self): :rtype: bool """ - return self._tag == 'add_member_to_exceptions' + return self._tag == "add_member_to_exceptions" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RolloutMethod, self)._process_custom_annotations(annotation_type, field_path, processor) + super(RolloutMethod, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + RolloutMethod_validator = bv.Union(RolloutMethod) + class SharedFolderBlanketLinkRestrictionPolicy(bb.Union): """ Policy governing whether shared folder membership is required to access @@ -1019,7 +1086,7 @@ class SharedFolderBlanketLinkRestrictionPolicy(bb.Union): Anyone can access folder content via shared link. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition members = None # Attribute is overwritten below the class definition @@ -1033,7 +1100,7 @@ def is_members(self): :rtype: bool """ - return self._tag == 'members' + return self._tag == "members" def is_anyone(self): """ @@ -1041,7 +1108,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == 'anyone' + return self._tag == "anyone" def is_other(self): """ @@ -1049,12 +1116,18 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderBlanketLinkRestrictionPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderBlanketLinkRestrictionPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + + +SharedFolderBlanketLinkRestrictionPolicy_validator = bv.Union( + SharedFolderBlanketLinkRestrictionPolicy +) -SharedFolderBlanketLinkRestrictionPolicy_validator = bv.Union(SharedFolderBlanketLinkRestrictionPolicy) class SharedFolderJoinPolicy(bb.Union): """ @@ -1071,7 +1144,7 @@ class SharedFolderJoinPolicy(bb.Union): outside the team. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition from_team_only = None # Attribute is overwritten below the class definition @@ -1085,7 +1158,7 @@ def is_from_team_only(self): :rtype: bool """ - return self._tag == 'from_team_only' + return self._tag == "from_team_only" def is_from_anyone(self): """ @@ -1093,7 +1166,7 @@ def is_from_anyone(self): :rtype: bool """ - return self._tag == 'from_anyone' + return self._tag == "from_anyone" def is_other(self): """ @@ -1101,13 +1174,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderJoinPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderJoinPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderJoinPolicy_validator = bv.Union(SharedFolderJoinPolicy) + class SharedFolderMemberPolicy(bb.Union): """ Policy governing who can be a member of a folder shared by a team member. @@ -1125,7 +1202,7 @@ class SharedFolderMemberPolicy(bb.Union): by a team member. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition team = None # Attribute is overwritten below the class definition @@ -1141,7 +1218,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_anyone(self): """ @@ -1149,7 +1226,7 @@ def is_anyone(self): :rtype: bool """ - return self._tag == 'anyone' + return self._tag == "anyone" def is_team_and_approved(self): """ @@ -1157,7 +1234,7 @@ def is_team_and_approved(self): :rtype: bool """ - return self._tag == 'team_and_approved' + return self._tag == "team_and_approved" def is_other(self): """ @@ -1165,13 +1242,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMemberPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedFolderMemberPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedFolderMemberPolicy_validator = bv.Union(SharedFolderMemberPolicy) + class SharedLinkCreatePolicy(bb.Union): """ Policy governing the visibility of shared links. This policy can apply to @@ -1196,7 +1277,7 @@ class SharedLinkCreatePolicy(bb.Union): required to access the shared links unless overridden. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default_public = None # Attribute is overwritten below the class definition @@ -1214,7 +1295,7 @@ def is_default_public(self): :rtype: bool """ - return self._tag == 'default_public' + return self._tag == "default_public" def is_default_team_only(self): """ @@ -1222,7 +1303,7 @@ def is_default_team_only(self): :rtype: bool """ - return self._tag == 'default_team_only' + return self._tag == "default_team_only" def is_team_only(self): """ @@ -1230,7 +1311,7 @@ def is_team_only(self): :rtype: bool """ - return self._tag == 'team_only' + return self._tag == "team_only" def is_default_no_one(self): """ @@ -1238,7 +1319,7 @@ def is_default_no_one(self): :rtype: bool """ - return self._tag == 'default_no_one' + return self._tag == "default_no_one" def is_other(self): """ @@ -1246,13 +1327,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkCreatePolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkCreatePolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkCreatePolicy_validator = bv.Union(SharedLinkCreatePolicy) + class SharedLinkDefaultPermissionsPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1267,7 +1352,7 @@ class SharedLinkDefaultPermissionsPolicy(bb.Union): Default to view-only when creating new sharing links """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition default = None # Attribute is overwritten below the class definition @@ -1283,7 +1368,7 @@ def is_default(self): :rtype: bool """ - return self._tag == 'default' + return self._tag == "default" def is_edit(self): """ @@ -1291,7 +1376,7 @@ def is_edit(self): :rtype: bool """ - return self._tag == 'edit' + return self._tag == "edit" def is_view(self): """ @@ -1299,7 +1384,7 @@ def is_view(self): :rtype: bool """ - return self._tag == 'view' + return self._tag == "view" def is_other(self): """ @@ -1307,13 +1392,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkDefaultPermissionsPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SharedLinkDefaultPermissionsPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SharedLinkDefaultPermissionsPolicy_validator = bv.Union(SharedLinkDefaultPermissionsPolicy) + class ShowcaseDownloadPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1326,7 +1415,7 @@ class ShowcaseDownloadPolicy(bb.Union): Allow files to be downloaded from Showcases. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1340,7 +1429,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -1348,7 +1437,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -1356,13 +1445,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseDownloadPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseDownloadPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseDownloadPolicy_validator = bv.Union(ShowcaseDownloadPolicy) + class ShowcaseEnabledPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1375,7 +1468,7 @@ class ShowcaseEnabledPolicy(bb.Union): Showcase is enabled. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1389,7 +1482,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -1397,7 +1490,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -1405,13 +1498,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseEnabledPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseEnabledPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseEnabledPolicy_validator = bv.Union(ShowcaseEnabledPolicy) + class ShowcaseExternalSharingPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1424,7 +1521,7 @@ class ShowcaseExternalSharingPolicy(bb.Union): Allow showcases to be shared with people not on the team. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1438,7 +1535,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -1446,7 +1543,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -1454,13 +1551,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ShowcaseExternalSharingPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(ShowcaseExternalSharingPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + ShowcaseExternalSharingPolicy_validator = bv.Union(ShowcaseExternalSharingPolicy) + class SmartSyncPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1473,7 +1574,7 @@ class SmartSyncPolicy(bb.Union): The specified content will be synced as on-demand files by default. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition local = None # Attribute is overwritten below the class definition @@ -1487,7 +1588,7 @@ def is_local(self): :rtype: bool """ - return self._tag == 'local' + return self._tag == "local" def is_on_demand(self): """ @@ -1495,7 +1596,7 @@ def is_on_demand(self): :rtype: bool """ - return self._tag == 'on_demand' + return self._tag == "on_demand" def is_other(self): """ @@ -1503,13 +1604,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmartSyncPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmartSyncPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmartSyncPolicy_validator = bv.Union(SmartSyncPolicy) + class SmarterSmartSyncPolicyState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1522,7 +1627,7 @@ class SmarterSmartSyncPolicyState(bb.Union): Smarter Smart Sync feature is enabled. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1536,7 +1641,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -1544,7 +1649,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -1552,13 +1657,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SmarterSmartSyncPolicyState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SmarterSmartSyncPolicyState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SmarterSmartSyncPolicyState_validator = bv.Union(SmarterSmartSyncPolicyState) + class SsoPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1574,7 +1683,7 @@ class SsoPolicy(bb.Union): Users will be required to sign in with their single sign-on credentials. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1590,7 +1699,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_optional(self): """ @@ -1598,7 +1707,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == 'optional' + return self._tag == "optional" def is_required(self): """ @@ -1606,7 +1715,7 @@ def is_required(self): :rtype: bool """ - return self._tag == 'required' + return self._tag == "required" def is_other(self): """ @@ -1614,13 +1723,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(SsoPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + SsoPolicy_validator = bv.Union(SsoPolicy) + class SuggestMembersPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1633,7 +1744,7 @@ class SuggestMembersPolicy(bb.Union): Suggest members is enabled. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition disabled = None # Attribute is overwritten below the class definition @@ -1647,7 +1758,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_enabled(self): """ @@ -1655,7 +1766,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -1663,13 +1774,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SuggestMembersPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SuggestMembersPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SuggestMembersPolicy_validator = bv.Union(SuggestMembersPolicy) + class TeamMemberPolicies(bb.Struct): """ Policies governing team members. @@ -1694,21 +1809,23 @@ class TeamMemberPolicies(bb.Struct): """ __slots__ = [ - '_sharing_value', - '_emm_state_value', - '_office_addin_value', - '_suggest_members_policy_value', - '_top_level_content_policy_value', + "_sharing_value", + "_emm_state_value", + "_office_addin_value", + "_suggest_members_policy_value", + "_top_level_content_policy_value", ] _has_required_fields = True - def __init__(self, - sharing=None, - emm_state=None, - office_addin=None, - suggest_members_policy=None, - top_level_content_policy=None): + def __init__( + self, + sharing=None, + emm_state=None, + office_addin=None, + suggest_members_policy=None, + top_level_content_policy=None, + ): self._sharing_value = bb.NOT_SET self._emm_state_value = bb.NOT_SET self._office_addin_value = bb.NOT_SET @@ -1741,10 +1858,14 @@ def __init__(self, top_level_content_policy = bb.Attribute("top_level_content_policy", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberPolicies, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamMemberPolicies, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamMemberPolicies_validator = bv.Struct(TeamMemberPolicies) + class TeamSharingPolicies(bb.Struct): """ Policies governing sharing within and outside of the team. @@ -1768,27 +1889,29 @@ class TeamSharingPolicies(bb.Struct): """ __slots__ = [ - '_shared_folder_member_policy_value', - '_shared_folder_join_policy_value', - '_shared_link_create_policy_value', - '_group_creation_policy_value', - '_shared_folder_link_restriction_policy_value', - '_enforce_link_password_policy_value', - '_default_link_expiration_days_policy_value', - '_shared_link_default_permissions_policy_value', + "_shared_folder_member_policy_value", + "_shared_folder_join_policy_value", + "_shared_link_create_policy_value", + "_group_creation_policy_value", + "_shared_folder_link_restriction_policy_value", + "_enforce_link_password_policy_value", + "_default_link_expiration_days_policy_value", + "_shared_link_default_permissions_policy_value", ] _has_required_fields = True - def __init__(self, - shared_folder_member_policy=None, - shared_folder_join_policy=None, - shared_link_create_policy=None, - group_creation_policy=None, - shared_folder_link_restriction_policy=None, - enforce_link_password_policy=None, - default_link_expiration_days_policy=None, - shared_link_default_permissions_policy=None): + def __init__( + self, + shared_folder_member_policy=None, + shared_folder_join_policy=None, + shared_link_create_policy=None, + group_creation_policy=None, + shared_folder_link_restriction_policy=None, + enforce_link_password_policy=None, + default_link_expiration_days_policy=None, + shared_link_default_permissions_policy=None, + ): self._shared_folder_member_policy_value = bb.NOT_SET self._shared_folder_join_policy_value = bb.NOT_SET self._shared_link_create_policy_value = bb.NOT_SET @@ -1827,22 +1950,32 @@ def __init__(self, group_creation_policy = bb.Attribute("group_creation_policy", user_defined=True) # Instance attribute type: SharedFolderBlanketLinkRestrictionPolicy (validator is set below) - shared_folder_link_restriction_policy = bb.Attribute("shared_folder_link_restriction_policy", user_defined=True) + shared_folder_link_restriction_policy = bb.Attribute( + "shared_folder_link_restriction_policy", user_defined=True + ) # Instance attribute type: EnforceLinkPasswordPolicy (validator is set below) enforce_link_password_policy = bb.Attribute("enforce_link_password_policy", user_defined=True) # Instance attribute type: DefaultLinkExpirationDaysPolicy (validator is set below) - default_link_expiration_days_policy = bb.Attribute("default_link_expiration_days_policy", user_defined=True) + default_link_expiration_days_policy = bb.Attribute( + "default_link_expiration_days_policy", user_defined=True + ) # Instance attribute type: SharedLinkDefaultPermissionsPolicy (validator is set below) - shared_link_default_permissions_policy = bb.Attribute("shared_link_default_permissions_policy", user_defined=True) + shared_link_default_permissions_policy = bb.Attribute( + "shared_link_default_permissions_policy", user_defined=True + ) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSharingPolicies, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSharingPolicies, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamSharingPolicies_validator = bv.Struct(TeamSharingPolicies) + class TopLevelContentPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1856,7 +1989,7 @@ class TopLevelContentPolicy(bb.Union): space. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition admin_only = None # Attribute is overwritten below the class definition @@ -1870,7 +2003,7 @@ def is_admin_only(self): :rtype: bool """ - return self._tag == 'admin_only' + return self._tag == "admin_only" def is_everyone(self): """ @@ -1878,7 +2011,7 @@ def is_everyone(self): :rtype: bool """ - return self._tag == 'everyone' + return self._tag == "everyone" def is_other(self): """ @@ -1886,13 +2019,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TopLevelContentPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TopLevelContentPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TopLevelContentPolicy_validator = bv.Union(TopLevelContentPolicy) + class TwoStepVerificationPolicy(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1905,7 +2042,7 @@ class TwoStepVerificationPolicy(bb.Union): Disabled require two factor authorization. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition require_tfa_enable = None # Attribute is overwritten below the class definition @@ -1919,7 +2056,7 @@ def is_require_tfa_enable(self): :rtype: bool """ - return self._tag == 'require_tfa_enable' + return self._tag == "require_tfa_enable" def is_require_tfa_disable(self): """ @@ -1927,7 +2064,7 @@ def is_require_tfa_disable(self): :rtype: bool """ - return self._tag == 'require_tfa_disable' + return self._tag == "require_tfa_disable" def is_other(self): """ @@ -1935,13 +2072,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoStepVerificationPolicy, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TwoStepVerificationPolicy, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TwoStepVerificationPolicy_validator = bv.Union(TwoStepVerificationPolicy) + class TwoStepVerificationState(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1956,7 +2097,7 @@ class TwoStepVerificationState(bb.Union): Disabled require two factor authorization. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition required = None # Attribute is overwritten below the class definition @@ -1972,7 +2113,7 @@ def is_required(self): :rtype: bool """ - return self._tag == 'required' + return self._tag == "required" def is_optional(self): """ @@ -1980,7 +2121,7 @@ def is_optional(self): :rtype: bool """ - return self._tag == 'optional' + return self._tag == "optional" def is_disabled(self): """ @@ -1988,7 +2129,7 @@ def is_disabled(self): :rtype: bool """ - return self._tag == 'disabled' + return self._tag == "disabled" def is_other(self): """ @@ -1996,10 +2137,13 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TwoStepVerificationState, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TwoStepVerificationState, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TwoStepVerificationState_validator = bv.Union(TwoStepVerificationState) @@ -2007,30 +2151,30 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CameraUploadsPolicyState._enabled_validator = bv.Void() CameraUploadsPolicyState._other_validator = bv.Void() CameraUploadsPolicyState._tagmap = { - 'disabled': CameraUploadsPolicyState._disabled_validator, - 'enabled': CameraUploadsPolicyState._enabled_validator, - 'other': CameraUploadsPolicyState._other_validator, + "disabled": CameraUploadsPolicyState._disabled_validator, + "enabled": CameraUploadsPolicyState._enabled_validator, + "other": CameraUploadsPolicyState._other_validator, } -CameraUploadsPolicyState.disabled = CameraUploadsPolicyState('disabled') -CameraUploadsPolicyState.enabled = CameraUploadsPolicyState('enabled') -CameraUploadsPolicyState.other = CameraUploadsPolicyState('other') +CameraUploadsPolicyState.disabled = CameraUploadsPolicyState("disabled") +CameraUploadsPolicyState.enabled = CameraUploadsPolicyState("enabled") +CameraUploadsPolicyState.other = CameraUploadsPolicyState("other") ComputerBackupPolicyState._disabled_validator = bv.Void() ComputerBackupPolicyState._enabled_validator = bv.Void() ComputerBackupPolicyState._default_validator = bv.Void() ComputerBackupPolicyState._other_validator = bv.Void() ComputerBackupPolicyState._tagmap = { - 'disabled': ComputerBackupPolicyState._disabled_validator, - 'enabled': ComputerBackupPolicyState._enabled_validator, - 'default': ComputerBackupPolicyState._default_validator, - 'other': ComputerBackupPolicyState._other_validator, + "disabled": ComputerBackupPolicyState._disabled_validator, + "enabled": ComputerBackupPolicyState._enabled_validator, + "default": ComputerBackupPolicyState._default_validator, + "other": ComputerBackupPolicyState._other_validator, } -ComputerBackupPolicyState.disabled = ComputerBackupPolicyState('disabled') -ComputerBackupPolicyState.enabled = ComputerBackupPolicyState('enabled') -ComputerBackupPolicyState.default = ComputerBackupPolicyState('default') -ComputerBackupPolicyState.other = ComputerBackupPolicyState('other') +ComputerBackupPolicyState.disabled = ComputerBackupPolicyState("disabled") +ComputerBackupPolicyState.enabled = ComputerBackupPolicyState("enabled") +ComputerBackupPolicyState.default = ComputerBackupPolicyState("default") +ComputerBackupPolicyState.other = ComputerBackupPolicyState("other") DefaultLinkExpirationDaysPolicy._none_validator = bv.Void() DefaultLinkExpirationDaysPolicy._day_1_validator = bv.Void() @@ -2042,84 +2186,84 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DefaultLinkExpirationDaysPolicy._year_1_validator = bv.Void() DefaultLinkExpirationDaysPolicy._other_validator = bv.Void() DefaultLinkExpirationDaysPolicy._tagmap = { - 'none': DefaultLinkExpirationDaysPolicy._none_validator, - 'day_1': DefaultLinkExpirationDaysPolicy._day_1_validator, - 'day_3': DefaultLinkExpirationDaysPolicy._day_3_validator, - 'day_7': DefaultLinkExpirationDaysPolicy._day_7_validator, - 'day_30': DefaultLinkExpirationDaysPolicy._day_30_validator, - 'day_90': DefaultLinkExpirationDaysPolicy._day_90_validator, - 'day_180': DefaultLinkExpirationDaysPolicy._day_180_validator, - 'year_1': DefaultLinkExpirationDaysPolicy._year_1_validator, - 'other': DefaultLinkExpirationDaysPolicy._other_validator, + "none": DefaultLinkExpirationDaysPolicy._none_validator, + "day_1": DefaultLinkExpirationDaysPolicy._day_1_validator, + "day_3": DefaultLinkExpirationDaysPolicy._day_3_validator, + "day_7": DefaultLinkExpirationDaysPolicy._day_7_validator, + "day_30": DefaultLinkExpirationDaysPolicy._day_30_validator, + "day_90": DefaultLinkExpirationDaysPolicy._day_90_validator, + "day_180": DefaultLinkExpirationDaysPolicy._day_180_validator, + "year_1": DefaultLinkExpirationDaysPolicy._year_1_validator, + "other": DefaultLinkExpirationDaysPolicy._other_validator, } -DefaultLinkExpirationDaysPolicy.none = DefaultLinkExpirationDaysPolicy('none') -DefaultLinkExpirationDaysPolicy.day_1 = DefaultLinkExpirationDaysPolicy('day_1') -DefaultLinkExpirationDaysPolicy.day_3 = DefaultLinkExpirationDaysPolicy('day_3') -DefaultLinkExpirationDaysPolicy.day_7 = DefaultLinkExpirationDaysPolicy('day_7') -DefaultLinkExpirationDaysPolicy.day_30 = DefaultLinkExpirationDaysPolicy('day_30') -DefaultLinkExpirationDaysPolicy.day_90 = DefaultLinkExpirationDaysPolicy('day_90') -DefaultLinkExpirationDaysPolicy.day_180 = DefaultLinkExpirationDaysPolicy('day_180') -DefaultLinkExpirationDaysPolicy.year_1 = DefaultLinkExpirationDaysPolicy('year_1') -DefaultLinkExpirationDaysPolicy.other = DefaultLinkExpirationDaysPolicy('other') +DefaultLinkExpirationDaysPolicy.none = DefaultLinkExpirationDaysPolicy("none") +DefaultLinkExpirationDaysPolicy.day_1 = DefaultLinkExpirationDaysPolicy("day_1") +DefaultLinkExpirationDaysPolicy.day_3 = DefaultLinkExpirationDaysPolicy("day_3") +DefaultLinkExpirationDaysPolicy.day_7 = DefaultLinkExpirationDaysPolicy("day_7") +DefaultLinkExpirationDaysPolicy.day_30 = DefaultLinkExpirationDaysPolicy("day_30") +DefaultLinkExpirationDaysPolicy.day_90 = DefaultLinkExpirationDaysPolicy("day_90") +DefaultLinkExpirationDaysPolicy.day_180 = DefaultLinkExpirationDaysPolicy("day_180") +DefaultLinkExpirationDaysPolicy.year_1 = DefaultLinkExpirationDaysPolicy("year_1") +DefaultLinkExpirationDaysPolicy.other = DefaultLinkExpirationDaysPolicy("other") EmmState._disabled_validator = bv.Void() EmmState._optional_validator = bv.Void() EmmState._required_validator = bv.Void() EmmState._other_validator = bv.Void() EmmState._tagmap = { - 'disabled': EmmState._disabled_validator, - 'optional': EmmState._optional_validator, - 'required': EmmState._required_validator, - 'other': EmmState._other_validator, + "disabled": EmmState._disabled_validator, + "optional": EmmState._optional_validator, + "required": EmmState._required_validator, + "other": EmmState._other_validator, } -EmmState.disabled = EmmState('disabled') -EmmState.optional = EmmState('optional') -EmmState.required = EmmState('required') -EmmState.other = EmmState('other') +EmmState.disabled = EmmState("disabled") +EmmState.optional = EmmState("optional") +EmmState.required = EmmState("required") +EmmState.other = EmmState("other") EnforceLinkPasswordPolicy._optional_validator = bv.Void() EnforceLinkPasswordPolicy._required_validator = bv.Void() EnforceLinkPasswordPolicy._other_validator = bv.Void() EnforceLinkPasswordPolicy._tagmap = { - 'optional': EnforceLinkPasswordPolicy._optional_validator, - 'required': EnforceLinkPasswordPolicy._required_validator, - 'other': EnforceLinkPasswordPolicy._other_validator, + "optional": EnforceLinkPasswordPolicy._optional_validator, + "required": EnforceLinkPasswordPolicy._required_validator, + "other": EnforceLinkPasswordPolicy._other_validator, } -EnforceLinkPasswordPolicy.optional = EnforceLinkPasswordPolicy('optional') -EnforceLinkPasswordPolicy.required = EnforceLinkPasswordPolicy('required') -EnforceLinkPasswordPolicy.other = EnforceLinkPasswordPolicy('other') +EnforceLinkPasswordPolicy.optional = EnforceLinkPasswordPolicy("optional") +EnforceLinkPasswordPolicy.required = EnforceLinkPasswordPolicy("required") +EnforceLinkPasswordPolicy.other = EnforceLinkPasswordPolicy("other") ExternalDriveBackupPolicyState._disabled_validator = bv.Void() ExternalDriveBackupPolicyState._enabled_validator = bv.Void() ExternalDriveBackupPolicyState._default_validator = bv.Void() ExternalDriveBackupPolicyState._other_validator = bv.Void() ExternalDriveBackupPolicyState._tagmap = { - 'disabled': ExternalDriveBackupPolicyState._disabled_validator, - 'enabled': ExternalDriveBackupPolicyState._enabled_validator, - 'default': ExternalDriveBackupPolicyState._default_validator, - 'other': ExternalDriveBackupPolicyState._other_validator, + "disabled": ExternalDriveBackupPolicyState._disabled_validator, + "enabled": ExternalDriveBackupPolicyState._enabled_validator, + "default": ExternalDriveBackupPolicyState._default_validator, + "other": ExternalDriveBackupPolicyState._other_validator, } -ExternalDriveBackupPolicyState.disabled = ExternalDriveBackupPolicyState('disabled') -ExternalDriveBackupPolicyState.enabled = ExternalDriveBackupPolicyState('enabled') -ExternalDriveBackupPolicyState.default = ExternalDriveBackupPolicyState('default') -ExternalDriveBackupPolicyState.other = ExternalDriveBackupPolicyState('other') +ExternalDriveBackupPolicyState.disabled = ExternalDriveBackupPolicyState("disabled") +ExternalDriveBackupPolicyState.enabled = ExternalDriveBackupPolicyState("enabled") +ExternalDriveBackupPolicyState.default = ExternalDriveBackupPolicyState("default") +ExternalDriveBackupPolicyState.other = ExternalDriveBackupPolicyState("other") FileLockingPolicyState._disabled_validator = bv.Void() FileLockingPolicyState._enabled_validator = bv.Void() FileLockingPolicyState._other_validator = bv.Void() FileLockingPolicyState._tagmap = { - 'disabled': FileLockingPolicyState._disabled_validator, - 'enabled': FileLockingPolicyState._enabled_validator, - 'other': FileLockingPolicyState._other_validator, + "disabled": FileLockingPolicyState._disabled_validator, + "enabled": FileLockingPolicyState._enabled_validator, + "other": FileLockingPolicyState._other_validator, } -FileLockingPolicyState.disabled = FileLockingPolicyState('disabled') -FileLockingPolicyState.enabled = FileLockingPolicyState('enabled') -FileLockingPolicyState.other = FileLockingPolicyState('other') +FileLockingPolicyState.disabled = FileLockingPolicyState("disabled") +FileLockingPolicyState.enabled = FileLockingPolicyState("enabled") +FileLockingPolicyState.other = FileLockingPolicyState("other") FileProviderMigrationPolicyState._disabled_validator = bv.Void() FileProviderMigrationPolicyState._enabled_validator = bv.Void() @@ -2127,180 +2271,182 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileProviderMigrationPolicyState._immediate_validator = bv.Void() FileProviderMigrationPolicyState._other_validator = bv.Void() FileProviderMigrationPolicyState._tagmap = { - 'disabled': FileProviderMigrationPolicyState._disabled_validator, - 'enabled': FileProviderMigrationPolicyState._enabled_validator, - 'default': FileProviderMigrationPolicyState._default_validator, - 'immediate': FileProviderMigrationPolicyState._immediate_validator, - 'other': FileProviderMigrationPolicyState._other_validator, + "disabled": FileProviderMigrationPolicyState._disabled_validator, + "enabled": FileProviderMigrationPolicyState._enabled_validator, + "default": FileProviderMigrationPolicyState._default_validator, + "immediate": FileProviderMigrationPolicyState._immediate_validator, + "other": FileProviderMigrationPolicyState._other_validator, } -FileProviderMigrationPolicyState.disabled = FileProviderMigrationPolicyState('disabled') -FileProviderMigrationPolicyState.enabled = FileProviderMigrationPolicyState('enabled') -FileProviderMigrationPolicyState.default = FileProviderMigrationPolicyState('default') -FileProviderMigrationPolicyState.immediate = FileProviderMigrationPolicyState('immediate') -FileProviderMigrationPolicyState.other = FileProviderMigrationPolicyState('other') +FileProviderMigrationPolicyState.disabled = FileProviderMigrationPolicyState("disabled") +FileProviderMigrationPolicyState.enabled = FileProviderMigrationPolicyState("enabled") +FileProviderMigrationPolicyState.default = FileProviderMigrationPolicyState("default") +FileProviderMigrationPolicyState.immediate = FileProviderMigrationPolicyState("immediate") +FileProviderMigrationPolicyState.other = FileProviderMigrationPolicyState("other") GroupCreation._admins_and_members_validator = bv.Void() GroupCreation._admins_only_validator = bv.Void() GroupCreation._tagmap = { - 'admins_and_members': GroupCreation._admins_and_members_validator, - 'admins_only': GroupCreation._admins_only_validator, + "admins_and_members": GroupCreation._admins_and_members_validator, + "admins_only": GroupCreation._admins_only_validator, } -GroupCreation.admins_and_members = GroupCreation('admins_and_members') -GroupCreation.admins_only = GroupCreation('admins_only') +GroupCreation.admins_and_members = GroupCreation("admins_and_members") +GroupCreation.admins_only = GroupCreation("admins_only") OfficeAddInPolicy._disabled_validator = bv.Void() OfficeAddInPolicy._enabled_validator = bv.Void() OfficeAddInPolicy._other_validator = bv.Void() OfficeAddInPolicy._tagmap = { - 'disabled': OfficeAddInPolicy._disabled_validator, - 'enabled': OfficeAddInPolicy._enabled_validator, - 'other': OfficeAddInPolicy._other_validator, + "disabled": OfficeAddInPolicy._disabled_validator, + "enabled": OfficeAddInPolicy._enabled_validator, + "other": OfficeAddInPolicy._other_validator, } -OfficeAddInPolicy.disabled = OfficeAddInPolicy('disabled') -OfficeAddInPolicy.enabled = OfficeAddInPolicy('enabled') -OfficeAddInPolicy.other = OfficeAddInPolicy('other') +OfficeAddInPolicy.disabled = OfficeAddInPolicy("disabled") +OfficeAddInPolicy.enabled = OfficeAddInPolicy("enabled") +OfficeAddInPolicy.other = OfficeAddInPolicy("other") PaperDefaultFolderPolicy._everyone_in_team_validator = bv.Void() PaperDefaultFolderPolicy._invite_only_validator = bv.Void() PaperDefaultFolderPolicy._other_validator = bv.Void() PaperDefaultFolderPolicy._tagmap = { - 'everyone_in_team': PaperDefaultFolderPolicy._everyone_in_team_validator, - 'invite_only': PaperDefaultFolderPolicy._invite_only_validator, - 'other': PaperDefaultFolderPolicy._other_validator, + "everyone_in_team": PaperDefaultFolderPolicy._everyone_in_team_validator, + "invite_only": PaperDefaultFolderPolicy._invite_only_validator, + "other": PaperDefaultFolderPolicy._other_validator, } -PaperDefaultFolderPolicy.everyone_in_team = PaperDefaultFolderPolicy('everyone_in_team') -PaperDefaultFolderPolicy.invite_only = PaperDefaultFolderPolicy('invite_only') -PaperDefaultFolderPolicy.other = PaperDefaultFolderPolicy('other') +PaperDefaultFolderPolicy.everyone_in_team = PaperDefaultFolderPolicy("everyone_in_team") +PaperDefaultFolderPolicy.invite_only = PaperDefaultFolderPolicy("invite_only") +PaperDefaultFolderPolicy.other = PaperDefaultFolderPolicy("other") PaperDeploymentPolicy._full_validator = bv.Void() PaperDeploymentPolicy._partial_validator = bv.Void() PaperDeploymentPolicy._other_validator = bv.Void() PaperDeploymentPolicy._tagmap = { - 'full': PaperDeploymentPolicy._full_validator, - 'partial': PaperDeploymentPolicy._partial_validator, - 'other': PaperDeploymentPolicy._other_validator, + "full": PaperDeploymentPolicy._full_validator, + "partial": PaperDeploymentPolicy._partial_validator, + "other": PaperDeploymentPolicy._other_validator, } -PaperDeploymentPolicy.full = PaperDeploymentPolicy('full') -PaperDeploymentPolicy.partial = PaperDeploymentPolicy('partial') -PaperDeploymentPolicy.other = PaperDeploymentPolicy('other') +PaperDeploymentPolicy.full = PaperDeploymentPolicy("full") +PaperDeploymentPolicy.partial = PaperDeploymentPolicy("partial") +PaperDeploymentPolicy.other = PaperDeploymentPolicy("other") PaperDesktopPolicy._disabled_validator = bv.Void() PaperDesktopPolicy._enabled_validator = bv.Void() PaperDesktopPolicy._other_validator = bv.Void() PaperDesktopPolicy._tagmap = { - 'disabled': PaperDesktopPolicy._disabled_validator, - 'enabled': PaperDesktopPolicy._enabled_validator, - 'other': PaperDesktopPolicy._other_validator, + "disabled": PaperDesktopPolicy._disabled_validator, + "enabled": PaperDesktopPolicy._enabled_validator, + "other": PaperDesktopPolicy._other_validator, } -PaperDesktopPolicy.disabled = PaperDesktopPolicy('disabled') -PaperDesktopPolicy.enabled = PaperDesktopPolicy('enabled') -PaperDesktopPolicy.other = PaperDesktopPolicy('other') +PaperDesktopPolicy.disabled = PaperDesktopPolicy("disabled") +PaperDesktopPolicy.enabled = PaperDesktopPolicy("enabled") +PaperDesktopPolicy.other = PaperDesktopPolicy("other") PaperEnabledPolicy._disabled_validator = bv.Void() PaperEnabledPolicy._enabled_validator = bv.Void() PaperEnabledPolicy._unspecified_validator = bv.Void() PaperEnabledPolicy._other_validator = bv.Void() PaperEnabledPolicy._tagmap = { - 'disabled': PaperEnabledPolicy._disabled_validator, - 'enabled': PaperEnabledPolicy._enabled_validator, - 'unspecified': PaperEnabledPolicy._unspecified_validator, - 'other': PaperEnabledPolicy._other_validator, + "disabled": PaperEnabledPolicy._disabled_validator, + "enabled": PaperEnabledPolicy._enabled_validator, + "unspecified": PaperEnabledPolicy._unspecified_validator, + "other": PaperEnabledPolicy._other_validator, } -PaperEnabledPolicy.disabled = PaperEnabledPolicy('disabled') -PaperEnabledPolicy.enabled = PaperEnabledPolicy('enabled') -PaperEnabledPolicy.unspecified = PaperEnabledPolicy('unspecified') -PaperEnabledPolicy.other = PaperEnabledPolicy('other') +PaperEnabledPolicy.disabled = PaperEnabledPolicy("disabled") +PaperEnabledPolicy.enabled = PaperEnabledPolicy("enabled") +PaperEnabledPolicy.unspecified = PaperEnabledPolicy("unspecified") +PaperEnabledPolicy.other = PaperEnabledPolicy("other") PasswordControlMode._disabled_validator = bv.Void() PasswordControlMode._enabled_validator = bv.Void() PasswordControlMode._other_validator = bv.Void() PasswordControlMode._tagmap = { - 'disabled': PasswordControlMode._disabled_validator, - 'enabled': PasswordControlMode._enabled_validator, - 'other': PasswordControlMode._other_validator, + "disabled": PasswordControlMode._disabled_validator, + "enabled": PasswordControlMode._enabled_validator, + "other": PasswordControlMode._other_validator, } -PasswordControlMode.disabled = PasswordControlMode('disabled') -PasswordControlMode.enabled = PasswordControlMode('enabled') -PasswordControlMode.other = PasswordControlMode('other') +PasswordControlMode.disabled = PasswordControlMode("disabled") +PasswordControlMode.enabled = PasswordControlMode("enabled") +PasswordControlMode.other = PasswordControlMode("other") PasswordStrengthPolicy._minimal_requirements_validator = bv.Void() PasswordStrengthPolicy._moderate_password_validator = bv.Void() PasswordStrengthPolicy._strong_password_validator = bv.Void() PasswordStrengthPolicy._other_validator = bv.Void() PasswordStrengthPolicy._tagmap = { - 'minimal_requirements': PasswordStrengthPolicy._minimal_requirements_validator, - 'moderate_password': PasswordStrengthPolicy._moderate_password_validator, - 'strong_password': PasswordStrengthPolicy._strong_password_validator, - 'other': PasswordStrengthPolicy._other_validator, + "minimal_requirements": PasswordStrengthPolicy._minimal_requirements_validator, + "moderate_password": PasswordStrengthPolicy._moderate_password_validator, + "strong_password": PasswordStrengthPolicy._strong_password_validator, + "other": PasswordStrengthPolicy._other_validator, } -PasswordStrengthPolicy.minimal_requirements = PasswordStrengthPolicy('minimal_requirements') -PasswordStrengthPolicy.moderate_password = PasswordStrengthPolicy('moderate_password') -PasswordStrengthPolicy.strong_password = PasswordStrengthPolicy('strong_password') -PasswordStrengthPolicy.other = PasswordStrengthPolicy('other') +PasswordStrengthPolicy.minimal_requirements = PasswordStrengthPolicy("minimal_requirements") +PasswordStrengthPolicy.moderate_password = PasswordStrengthPolicy("moderate_password") +PasswordStrengthPolicy.strong_password = PasswordStrengthPolicy("strong_password") +PasswordStrengthPolicy.other = PasswordStrengthPolicy("other") RolloutMethod._unlink_all_validator = bv.Void() RolloutMethod._unlink_most_inactive_validator = bv.Void() RolloutMethod._add_member_to_exceptions_validator = bv.Void() RolloutMethod._tagmap = { - 'unlink_all': RolloutMethod._unlink_all_validator, - 'unlink_most_inactive': RolloutMethod._unlink_most_inactive_validator, - 'add_member_to_exceptions': RolloutMethod._add_member_to_exceptions_validator, + "unlink_all": RolloutMethod._unlink_all_validator, + "unlink_most_inactive": RolloutMethod._unlink_most_inactive_validator, + "add_member_to_exceptions": RolloutMethod._add_member_to_exceptions_validator, } -RolloutMethod.unlink_all = RolloutMethod('unlink_all') -RolloutMethod.unlink_most_inactive = RolloutMethod('unlink_most_inactive') -RolloutMethod.add_member_to_exceptions = RolloutMethod('add_member_to_exceptions') +RolloutMethod.unlink_all = RolloutMethod("unlink_all") +RolloutMethod.unlink_most_inactive = RolloutMethod("unlink_most_inactive") +RolloutMethod.add_member_to_exceptions = RolloutMethod("add_member_to_exceptions") SharedFolderBlanketLinkRestrictionPolicy._members_validator = bv.Void() SharedFolderBlanketLinkRestrictionPolicy._anyone_validator = bv.Void() SharedFolderBlanketLinkRestrictionPolicy._other_validator = bv.Void() SharedFolderBlanketLinkRestrictionPolicy._tagmap = { - 'members': SharedFolderBlanketLinkRestrictionPolicy._members_validator, - 'anyone': SharedFolderBlanketLinkRestrictionPolicy._anyone_validator, - 'other': SharedFolderBlanketLinkRestrictionPolicy._other_validator, + "members": SharedFolderBlanketLinkRestrictionPolicy._members_validator, + "anyone": SharedFolderBlanketLinkRestrictionPolicy._anyone_validator, + "other": SharedFolderBlanketLinkRestrictionPolicy._other_validator, } -SharedFolderBlanketLinkRestrictionPolicy.members = SharedFolderBlanketLinkRestrictionPolicy('members') -SharedFolderBlanketLinkRestrictionPolicy.anyone = SharedFolderBlanketLinkRestrictionPolicy('anyone') -SharedFolderBlanketLinkRestrictionPolicy.other = SharedFolderBlanketLinkRestrictionPolicy('other') +SharedFolderBlanketLinkRestrictionPolicy.members = SharedFolderBlanketLinkRestrictionPolicy( + "members" +) +SharedFolderBlanketLinkRestrictionPolicy.anyone = SharedFolderBlanketLinkRestrictionPolicy("anyone") +SharedFolderBlanketLinkRestrictionPolicy.other = SharedFolderBlanketLinkRestrictionPolicy("other") SharedFolderJoinPolicy._from_team_only_validator = bv.Void() SharedFolderJoinPolicy._from_anyone_validator = bv.Void() SharedFolderJoinPolicy._other_validator = bv.Void() SharedFolderJoinPolicy._tagmap = { - 'from_team_only': SharedFolderJoinPolicy._from_team_only_validator, - 'from_anyone': SharedFolderJoinPolicy._from_anyone_validator, - 'other': SharedFolderJoinPolicy._other_validator, + "from_team_only": SharedFolderJoinPolicy._from_team_only_validator, + "from_anyone": SharedFolderJoinPolicy._from_anyone_validator, + "other": SharedFolderJoinPolicy._other_validator, } -SharedFolderJoinPolicy.from_team_only = SharedFolderJoinPolicy('from_team_only') -SharedFolderJoinPolicy.from_anyone = SharedFolderJoinPolicy('from_anyone') -SharedFolderJoinPolicy.other = SharedFolderJoinPolicy('other') +SharedFolderJoinPolicy.from_team_only = SharedFolderJoinPolicy("from_team_only") +SharedFolderJoinPolicy.from_anyone = SharedFolderJoinPolicy("from_anyone") +SharedFolderJoinPolicy.other = SharedFolderJoinPolicy("other") SharedFolderMemberPolicy._team_validator = bv.Void() SharedFolderMemberPolicy._anyone_validator = bv.Void() SharedFolderMemberPolicy._team_and_approved_validator = bv.Void() SharedFolderMemberPolicy._other_validator = bv.Void() SharedFolderMemberPolicy._tagmap = { - 'team': SharedFolderMemberPolicy._team_validator, - 'anyone': SharedFolderMemberPolicy._anyone_validator, - 'team_and_approved': SharedFolderMemberPolicy._team_and_approved_validator, - 'other': SharedFolderMemberPolicy._other_validator, + "team": SharedFolderMemberPolicy._team_validator, + "anyone": SharedFolderMemberPolicy._anyone_validator, + "team_and_approved": SharedFolderMemberPolicy._team_and_approved_validator, + "other": SharedFolderMemberPolicy._other_validator, } -SharedFolderMemberPolicy.team = SharedFolderMemberPolicy('team') -SharedFolderMemberPolicy.anyone = SharedFolderMemberPolicy('anyone') -SharedFolderMemberPolicy.team_and_approved = SharedFolderMemberPolicy('team_and_approved') -SharedFolderMemberPolicy.other = SharedFolderMemberPolicy('other') +SharedFolderMemberPolicy.team = SharedFolderMemberPolicy("team") +SharedFolderMemberPolicy.anyone = SharedFolderMemberPolicy("anyone") +SharedFolderMemberPolicy.team_and_approved = SharedFolderMemberPolicy("team_and_approved") +SharedFolderMemberPolicy.other = SharedFolderMemberPolicy("other") SharedLinkCreatePolicy._default_public_validator = bv.Void() SharedLinkCreatePolicy._default_team_only_validator = bv.Void() @@ -2308,220 +2454,249 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkCreatePolicy._default_no_one_validator = bv.Void() SharedLinkCreatePolicy._other_validator = bv.Void() SharedLinkCreatePolicy._tagmap = { - 'default_public': SharedLinkCreatePolicy._default_public_validator, - 'default_team_only': SharedLinkCreatePolicy._default_team_only_validator, - 'team_only': SharedLinkCreatePolicy._team_only_validator, - 'default_no_one': SharedLinkCreatePolicy._default_no_one_validator, - 'other': SharedLinkCreatePolicy._other_validator, + "default_public": SharedLinkCreatePolicy._default_public_validator, + "default_team_only": SharedLinkCreatePolicy._default_team_only_validator, + "team_only": SharedLinkCreatePolicy._team_only_validator, + "default_no_one": SharedLinkCreatePolicy._default_no_one_validator, + "other": SharedLinkCreatePolicy._other_validator, } -SharedLinkCreatePolicy.default_public = SharedLinkCreatePolicy('default_public') -SharedLinkCreatePolicy.default_team_only = SharedLinkCreatePolicy('default_team_only') -SharedLinkCreatePolicy.team_only = SharedLinkCreatePolicy('team_only') -SharedLinkCreatePolicy.default_no_one = SharedLinkCreatePolicy('default_no_one') -SharedLinkCreatePolicy.other = SharedLinkCreatePolicy('other') +SharedLinkCreatePolicy.default_public = SharedLinkCreatePolicy("default_public") +SharedLinkCreatePolicy.default_team_only = SharedLinkCreatePolicy("default_team_only") +SharedLinkCreatePolicy.team_only = SharedLinkCreatePolicy("team_only") +SharedLinkCreatePolicy.default_no_one = SharedLinkCreatePolicy("default_no_one") +SharedLinkCreatePolicy.other = SharedLinkCreatePolicy("other") SharedLinkDefaultPermissionsPolicy._default_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._edit_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._view_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._other_validator = bv.Void() SharedLinkDefaultPermissionsPolicy._tagmap = { - 'default': SharedLinkDefaultPermissionsPolicy._default_validator, - 'edit': SharedLinkDefaultPermissionsPolicy._edit_validator, - 'view': SharedLinkDefaultPermissionsPolicy._view_validator, - 'other': SharedLinkDefaultPermissionsPolicy._other_validator, + "default": SharedLinkDefaultPermissionsPolicy._default_validator, + "edit": SharedLinkDefaultPermissionsPolicy._edit_validator, + "view": SharedLinkDefaultPermissionsPolicy._view_validator, + "other": SharedLinkDefaultPermissionsPolicy._other_validator, } -SharedLinkDefaultPermissionsPolicy.default = SharedLinkDefaultPermissionsPolicy('default') -SharedLinkDefaultPermissionsPolicy.edit = SharedLinkDefaultPermissionsPolicy('edit') -SharedLinkDefaultPermissionsPolicy.view = SharedLinkDefaultPermissionsPolicy('view') -SharedLinkDefaultPermissionsPolicy.other = SharedLinkDefaultPermissionsPolicy('other') +SharedLinkDefaultPermissionsPolicy.default = SharedLinkDefaultPermissionsPolicy("default") +SharedLinkDefaultPermissionsPolicy.edit = SharedLinkDefaultPermissionsPolicy("edit") +SharedLinkDefaultPermissionsPolicy.view = SharedLinkDefaultPermissionsPolicy("view") +SharedLinkDefaultPermissionsPolicy.other = SharedLinkDefaultPermissionsPolicy("other") ShowcaseDownloadPolicy._disabled_validator = bv.Void() ShowcaseDownloadPolicy._enabled_validator = bv.Void() ShowcaseDownloadPolicy._other_validator = bv.Void() ShowcaseDownloadPolicy._tagmap = { - 'disabled': ShowcaseDownloadPolicy._disabled_validator, - 'enabled': ShowcaseDownloadPolicy._enabled_validator, - 'other': ShowcaseDownloadPolicy._other_validator, + "disabled": ShowcaseDownloadPolicy._disabled_validator, + "enabled": ShowcaseDownloadPolicy._enabled_validator, + "other": ShowcaseDownloadPolicy._other_validator, } -ShowcaseDownloadPolicy.disabled = ShowcaseDownloadPolicy('disabled') -ShowcaseDownloadPolicy.enabled = ShowcaseDownloadPolicy('enabled') -ShowcaseDownloadPolicy.other = ShowcaseDownloadPolicy('other') +ShowcaseDownloadPolicy.disabled = ShowcaseDownloadPolicy("disabled") +ShowcaseDownloadPolicy.enabled = ShowcaseDownloadPolicy("enabled") +ShowcaseDownloadPolicy.other = ShowcaseDownloadPolicy("other") ShowcaseEnabledPolicy._disabled_validator = bv.Void() ShowcaseEnabledPolicy._enabled_validator = bv.Void() ShowcaseEnabledPolicy._other_validator = bv.Void() ShowcaseEnabledPolicy._tagmap = { - 'disabled': ShowcaseEnabledPolicy._disabled_validator, - 'enabled': ShowcaseEnabledPolicy._enabled_validator, - 'other': ShowcaseEnabledPolicy._other_validator, + "disabled": ShowcaseEnabledPolicy._disabled_validator, + "enabled": ShowcaseEnabledPolicy._enabled_validator, + "other": ShowcaseEnabledPolicy._other_validator, } -ShowcaseEnabledPolicy.disabled = ShowcaseEnabledPolicy('disabled') -ShowcaseEnabledPolicy.enabled = ShowcaseEnabledPolicy('enabled') -ShowcaseEnabledPolicy.other = ShowcaseEnabledPolicy('other') +ShowcaseEnabledPolicy.disabled = ShowcaseEnabledPolicy("disabled") +ShowcaseEnabledPolicy.enabled = ShowcaseEnabledPolicy("enabled") +ShowcaseEnabledPolicy.other = ShowcaseEnabledPolicy("other") ShowcaseExternalSharingPolicy._disabled_validator = bv.Void() ShowcaseExternalSharingPolicy._enabled_validator = bv.Void() ShowcaseExternalSharingPolicy._other_validator = bv.Void() ShowcaseExternalSharingPolicy._tagmap = { - 'disabled': ShowcaseExternalSharingPolicy._disabled_validator, - 'enabled': ShowcaseExternalSharingPolicy._enabled_validator, - 'other': ShowcaseExternalSharingPolicy._other_validator, + "disabled": ShowcaseExternalSharingPolicy._disabled_validator, + "enabled": ShowcaseExternalSharingPolicy._enabled_validator, + "other": ShowcaseExternalSharingPolicy._other_validator, } -ShowcaseExternalSharingPolicy.disabled = ShowcaseExternalSharingPolicy('disabled') -ShowcaseExternalSharingPolicy.enabled = ShowcaseExternalSharingPolicy('enabled') -ShowcaseExternalSharingPolicy.other = ShowcaseExternalSharingPolicy('other') +ShowcaseExternalSharingPolicy.disabled = ShowcaseExternalSharingPolicy("disabled") +ShowcaseExternalSharingPolicy.enabled = ShowcaseExternalSharingPolicy("enabled") +ShowcaseExternalSharingPolicy.other = ShowcaseExternalSharingPolicy("other") SmartSyncPolicy._local_validator = bv.Void() SmartSyncPolicy._on_demand_validator = bv.Void() SmartSyncPolicy._other_validator = bv.Void() SmartSyncPolicy._tagmap = { - 'local': SmartSyncPolicy._local_validator, - 'on_demand': SmartSyncPolicy._on_demand_validator, - 'other': SmartSyncPolicy._other_validator, + "local": SmartSyncPolicy._local_validator, + "on_demand": SmartSyncPolicy._on_demand_validator, + "other": SmartSyncPolicy._other_validator, } -SmartSyncPolicy.local = SmartSyncPolicy('local') -SmartSyncPolicy.on_demand = SmartSyncPolicy('on_demand') -SmartSyncPolicy.other = SmartSyncPolicy('other') +SmartSyncPolicy.local = SmartSyncPolicy("local") +SmartSyncPolicy.on_demand = SmartSyncPolicy("on_demand") +SmartSyncPolicy.other = SmartSyncPolicy("other") SmarterSmartSyncPolicyState._disabled_validator = bv.Void() SmarterSmartSyncPolicyState._enabled_validator = bv.Void() SmarterSmartSyncPolicyState._other_validator = bv.Void() SmarterSmartSyncPolicyState._tagmap = { - 'disabled': SmarterSmartSyncPolicyState._disabled_validator, - 'enabled': SmarterSmartSyncPolicyState._enabled_validator, - 'other': SmarterSmartSyncPolicyState._other_validator, + "disabled": SmarterSmartSyncPolicyState._disabled_validator, + "enabled": SmarterSmartSyncPolicyState._enabled_validator, + "other": SmarterSmartSyncPolicyState._other_validator, } -SmarterSmartSyncPolicyState.disabled = SmarterSmartSyncPolicyState('disabled') -SmarterSmartSyncPolicyState.enabled = SmarterSmartSyncPolicyState('enabled') -SmarterSmartSyncPolicyState.other = SmarterSmartSyncPolicyState('other') +SmarterSmartSyncPolicyState.disabled = SmarterSmartSyncPolicyState("disabled") +SmarterSmartSyncPolicyState.enabled = SmarterSmartSyncPolicyState("enabled") +SmarterSmartSyncPolicyState.other = SmarterSmartSyncPolicyState("other") SsoPolicy._disabled_validator = bv.Void() SsoPolicy._optional_validator = bv.Void() SsoPolicy._required_validator = bv.Void() SsoPolicy._other_validator = bv.Void() SsoPolicy._tagmap = { - 'disabled': SsoPolicy._disabled_validator, - 'optional': SsoPolicy._optional_validator, - 'required': SsoPolicy._required_validator, - 'other': SsoPolicy._other_validator, + "disabled": SsoPolicy._disabled_validator, + "optional": SsoPolicy._optional_validator, + "required": SsoPolicy._required_validator, + "other": SsoPolicy._other_validator, } -SsoPolicy.disabled = SsoPolicy('disabled') -SsoPolicy.optional = SsoPolicy('optional') -SsoPolicy.required = SsoPolicy('required') -SsoPolicy.other = SsoPolicy('other') +SsoPolicy.disabled = SsoPolicy("disabled") +SsoPolicy.optional = SsoPolicy("optional") +SsoPolicy.required = SsoPolicy("required") +SsoPolicy.other = SsoPolicy("other") SuggestMembersPolicy._disabled_validator = bv.Void() SuggestMembersPolicy._enabled_validator = bv.Void() SuggestMembersPolicy._other_validator = bv.Void() SuggestMembersPolicy._tagmap = { - 'disabled': SuggestMembersPolicy._disabled_validator, - 'enabled': SuggestMembersPolicy._enabled_validator, - 'other': SuggestMembersPolicy._other_validator, + "disabled": SuggestMembersPolicy._disabled_validator, + "enabled": SuggestMembersPolicy._enabled_validator, + "other": SuggestMembersPolicy._other_validator, } -SuggestMembersPolicy.disabled = SuggestMembersPolicy('disabled') -SuggestMembersPolicy.enabled = SuggestMembersPolicy('enabled') -SuggestMembersPolicy.other = SuggestMembersPolicy('other') +SuggestMembersPolicy.disabled = SuggestMembersPolicy("disabled") +SuggestMembersPolicy.enabled = SuggestMembersPolicy("enabled") +SuggestMembersPolicy.other = SuggestMembersPolicy("other") TeamMemberPolicies.sharing.validator = TeamSharingPolicies_validator TeamMemberPolicies.emm_state.validator = EmmState_validator TeamMemberPolicies.office_addin.validator = OfficeAddInPolicy_validator TeamMemberPolicies.suggest_members_policy.validator = SuggestMembersPolicy_validator TeamMemberPolicies.top_level_content_policy.validator = TopLevelContentPolicy_validator -TeamMemberPolicies._all_field_names_ = set([ - 'sharing', - 'emm_state', - 'office_addin', - 'suggest_members_policy', - 'top_level_content_policy', -]) +TeamMemberPolicies._all_field_names_ = set( + [ + "sharing", + "emm_state", + "office_addin", + "suggest_members_policy", + "top_level_content_policy", + ] +) TeamMemberPolicies._all_fields_ = [ - ('sharing', TeamMemberPolicies.sharing.validator), - ('emm_state', TeamMemberPolicies.emm_state.validator), - ('office_addin', TeamMemberPolicies.office_addin.validator), - ('suggest_members_policy', TeamMemberPolicies.suggest_members_policy.validator), - ('top_level_content_policy', TeamMemberPolicies.top_level_content_policy.validator), + ("sharing", TeamMemberPolicies.sharing.validator), + ("emm_state", TeamMemberPolicies.emm_state.validator), + ("office_addin", TeamMemberPolicies.office_addin.validator), + ("suggest_members_policy", TeamMemberPolicies.suggest_members_policy.validator), + ("top_level_content_policy", TeamMemberPolicies.top_level_content_policy.validator), ] TeamSharingPolicies.shared_folder_member_policy.validator = SharedFolderMemberPolicy_validator TeamSharingPolicies.shared_folder_join_policy.validator = SharedFolderJoinPolicy_validator TeamSharingPolicies.shared_link_create_policy.validator = SharedLinkCreatePolicy_validator TeamSharingPolicies.group_creation_policy.validator = GroupCreation_validator -TeamSharingPolicies.shared_folder_link_restriction_policy.validator = SharedFolderBlanketLinkRestrictionPolicy_validator +TeamSharingPolicies.shared_folder_link_restriction_policy.validator = ( + SharedFolderBlanketLinkRestrictionPolicy_validator +) TeamSharingPolicies.enforce_link_password_policy.validator = EnforceLinkPasswordPolicy_validator -TeamSharingPolicies.default_link_expiration_days_policy.validator = DefaultLinkExpirationDaysPolicy_validator -TeamSharingPolicies.shared_link_default_permissions_policy.validator = SharedLinkDefaultPermissionsPolicy_validator -TeamSharingPolicies._all_field_names_ = set([ - 'shared_folder_member_policy', - 'shared_folder_join_policy', - 'shared_link_create_policy', - 'group_creation_policy', - 'shared_folder_link_restriction_policy', - 'enforce_link_password_policy', - 'default_link_expiration_days_policy', - 'shared_link_default_permissions_policy', -]) +TeamSharingPolicies.default_link_expiration_days_policy.validator = ( + DefaultLinkExpirationDaysPolicy_validator +) +TeamSharingPolicies.shared_link_default_permissions_policy.validator = ( + SharedLinkDefaultPermissionsPolicy_validator +) +TeamSharingPolicies._all_field_names_ = set( + [ + "shared_folder_member_policy", + "shared_folder_join_policy", + "shared_link_create_policy", + "group_creation_policy", + "shared_folder_link_restriction_policy", + "enforce_link_password_policy", + "default_link_expiration_days_policy", + "shared_link_default_permissions_policy", + ] +) TeamSharingPolicies._all_fields_ = [ - ('shared_folder_member_policy', TeamSharingPolicies.shared_folder_member_policy.validator), - ('shared_folder_join_policy', TeamSharingPolicies.shared_folder_join_policy.validator), - ('shared_link_create_policy', TeamSharingPolicies.shared_link_create_policy.validator), - ('group_creation_policy', TeamSharingPolicies.group_creation_policy.validator), - ('shared_folder_link_restriction_policy', TeamSharingPolicies.shared_folder_link_restriction_policy.validator), - ('enforce_link_password_policy', TeamSharingPolicies.enforce_link_password_policy.validator), - ('default_link_expiration_days_policy', TeamSharingPolicies.default_link_expiration_days_policy.validator), - ('shared_link_default_permissions_policy', TeamSharingPolicies.shared_link_default_permissions_policy.validator), + ( + "shared_folder_member_policy", + TeamSharingPolicies.shared_folder_member_policy.validator, + ), + ( + "shared_folder_join_policy", + TeamSharingPolicies.shared_folder_join_policy.validator, + ), + ( + "shared_link_create_policy", + TeamSharingPolicies.shared_link_create_policy.validator, + ), + ("group_creation_policy", TeamSharingPolicies.group_creation_policy.validator), + ( + "shared_folder_link_restriction_policy", + TeamSharingPolicies.shared_folder_link_restriction_policy.validator, + ), + ( + "enforce_link_password_policy", + TeamSharingPolicies.enforce_link_password_policy.validator, + ), + ( + "default_link_expiration_days_policy", + TeamSharingPolicies.default_link_expiration_days_policy.validator, + ), + ( + "shared_link_default_permissions_policy", + TeamSharingPolicies.shared_link_default_permissions_policy.validator, + ), ] TopLevelContentPolicy._admin_only_validator = bv.Void() TopLevelContentPolicy._everyone_validator = bv.Void() TopLevelContentPolicy._other_validator = bv.Void() TopLevelContentPolicy._tagmap = { - 'admin_only': TopLevelContentPolicy._admin_only_validator, - 'everyone': TopLevelContentPolicy._everyone_validator, - 'other': TopLevelContentPolicy._other_validator, + "admin_only": TopLevelContentPolicy._admin_only_validator, + "everyone": TopLevelContentPolicy._everyone_validator, + "other": TopLevelContentPolicy._other_validator, } -TopLevelContentPolicy.admin_only = TopLevelContentPolicy('admin_only') -TopLevelContentPolicy.everyone = TopLevelContentPolicy('everyone') -TopLevelContentPolicy.other = TopLevelContentPolicy('other') +TopLevelContentPolicy.admin_only = TopLevelContentPolicy("admin_only") +TopLevelContentPolicy.everyone = TopLevelContentPolicy("everyone") +TopLevelContentPolicy.other = TopLevelContentPolicy("other") TwoStepVerificationPolicy._require_tfa_enable_validator = bv.Void() TwoStepVerificationPolicy._require_tfa_disable_validator = bv.Void() TwoStepVerificationPolicy._other_validator = bv.Void() TwoStepVerificationPolicy._tagmap = { - 'require_tfa_enable': TwoStepVerificationPolicy._require_tfa_enable_validator, - 'require_tfa_disable': TwoStepVerificationPolicy._require_tfa_disable_validator, - 'other': TwoStepVerificationPolicy._other_validator, + "require_tfa_enable": TwoStepVerificationPolicy._require_tfa_enable_validator, + "require_tfa_disable": TwoStepVerificationPolicy._require_tfa_disable_validator, + "other": TwoStepVerificationPolicy._other_validator, } -TwoStepVerificationPolicy.require_tfa_enable = TwoStepVerificationPolicy('require_tfa_enable') -TwoStepVerificationPolicy.require_tfa_disable = TwoStepVerificationPolicy('require_tfa_disable') -TwoStepVerificationPolicy.other = TwoStepVerificationPolicy('other') +TwoStepVerificationPolicy.require_tfa_enable = TwoStepVerificationPolicy("require_tfa_enable") +TwoStepVerificationPolicy.require_tfa_disable = TwoStepVerificationPolicy("require_tfa_disable") +TwoStepVerificationPolicy.other = TwoStepVerificationPolicy("other") TwoStepVerificationState._required_validator = bv.Void() TwoStepVerificationState._optional_validator = bv.Void() TwoStepVerificationState._disabled_validator = bv.Void() TwoStepVerificationState._other_validator = bv.Void() TwoStepVerificationState._tagmap = { - 'required': TwoStepVerificationState._required_validator, - 'optional': TwoStepVerificationState._optional_validator, - 'disabled': TwoStepVerificationState._disabled_validator, - 'other': TwoStepVerificationState._other_validator, + "required": TwoStepVerificationState._required_validator, + "optional": TwoStepVerificationState._optional_validator, + "disabled": TwoStepVerificationState._disabled_validator, + "other": TwoStepVerificationState._other_validator, } -TwoStepVerificationState.required = TwoStepVerificationState('required') -TwoStepVerificationState.optional = TwoStepVerificationState('optional') -TwoStepVerificationState.disabled = TwoStepVerificationState('disabled') -TwoStepVerificationState.other = TwoStepVerificationState('other') - -ROUTES = { -} +TwoStepVerificationState.required = TwoStepVerificationState("required") +TwoStepVerificationState.optional = TwoStepVerificationState("optional") +TwoStepVerificationState.disabled = TwoStepVerificationState("disabled") +TwoStepVerificationState.other = TwoStepVerificationState("other") +ROUTES = {} diff --git a/dropbox/users.py b/dropbox/users.py index 3be912b7..73902783 100644 --- a/dropbox/users.py +++ b/dropbox/users.py @@ -16,6 +16,7 @@ from dropbox import team_policies from dropbox import users_common + class Account(bb.Struct): """ The amount of detail revealed about an account depends on the user being @@ -38,23 +39,25 @@ class Account(bb.Struct): """ __slots__ = [ - '_account_id_value', - '_name_value', - '_email_value', - '_email_verified_value', - '_profile_photo_url_value', - '_disabled_value', + "_account_id_value", + "_name_value", + "_email_value", + "_email_verified_value", + "_profile_photo_url_value", + "_disabled_value", ] _has_required_fields = True - def __init__(self, - account_id=None, - name=None, - email=None, - email_verified=None, - disabled=None, - profile_photo_url=None): + def __init__( + self, + account_id=None, + name=None, + email=None, + email_verified=None, + disabled=None, + profile_photo_url=None, + ): self._account_id_value = bb.NOT_SET self._name_value = bb.NOT_SET self._email_value = bb.NOT_SET @@ -95,8 +98,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(Account, self)._process_custom_annotations(annotation_type, field_path, processor) + Account_validator = bv.Struct(Account) + class BasicAccount(Account): """ Basic information about any account. @@ -110,27 +115,26 @@ class BasicAccount(Account): """ __slots__ = [ - '_is_teammate_value', - '_team_member_id_value', + "_is_teammate_value", + "_team_member_id_value", ] _has_required_fields = True - def __init__(self, - account_id=None, - name=None, - email=None, - email_verified=None, - disabled=None, - is_teammate=None, - profile_photo_url=None, - team_member_id=None): - super(BasicAccount, self).__init__(account_id, - name, - email, - email_verified, - disabled, - profile_photo_url) + def __init__( + self, + account_id=None, + name=None, + email=None, + email_verified=None, + disabled=None, + is_teammate=None, + profile_photo_url=None, + team_member_id=None, + ): + super(BasicAccount, self).__init__( + account_id, name, email, email_verified, disabled, profile_photo_url + ) self._is_teammate_value = bb.NOT_SET self._team_member_id_value = bb.NOT_SET if is_teammate is not None: @@ -145,10 +149,14 @@ def __init__(self, team_member_id = bb.Attribute("team_member_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(BasicAccount, self)._process_custom_annotations(annotation_type, field_path, processor) + super(BasicAccount, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + BasicAccount_validator = bv.Struct(BasicAccount) + class DistinctMemberHomeValue(bb.Union): """ The value for ``UserFeature.distinct_member_home``. @@ -163,7 +171,7 @@ class DistinctMemberHomeValue(bb.Union): :vartype DistinctMemberHomeValue.enabled: bool """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -176,7 +184,7 @@ def enabled(cls, val): :param bool val: :rtype: DistinctMemberHomeValue """ - return cls('enabled', val) + return cls("enabled", val) def is_enabled(self): """ @@ -184,7 +192,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -192,7 +200,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_enabled(self): """ @@ -208,10 +216,14 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DistinctMemberHomeValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(DistinctMemberHomeValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + DistinctMemberHomeValue_validator = bv.Union(DistinctMemberHomeValue) + class FileLockingValue(bb.Union): """ The value for ``UserFeature.file_locking``. @@ -227,7 +239,7 @@ class FileLockingValue(bb.Union): :vartype FileLockingValue.enabled: bool """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -240,7 +252,7 @@ def enabled(cls, val): :param bool val: :rtype: FileLockingValue """ - return cls('enabled', val) + return cls("enabled", val) def is_enabled(self): """ @@ -248,7 +260,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -256,7 +268,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_enabled(self): """ @@ -273,10 +285,14 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLockingValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(FileLockingValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + FileLockingValue_validator = bv.Union(FileLockingValue) + class FullAccount(Account): """ Detailed information about the current user's account. @@ -305,39 +321,38 @@ class FullAccount(Account): """ __slots__ = [ - '_country_value', - '_locale_value', - '_referral_link_value', - '_team_value', - '_team_member_id_value', - '_is_paired_value', - '_account_type_value', - '_root_info_value', + "_country_value", + "_locale_value", + "_referral_link_value", + "_team_value", + "_team_member_id_value", + "_is_paired_value", + "_account_type_value", + "_root_info_value", ] _has_required_fields = True - def __init__(self, - account_id=None, - name=None, - email=None, - email_verified=None, - disabled=None, - locale=None, - referral_link=None, - is_paired=None, - account_type=None, - root_info=None, - profile_photo_url=None, - country=None, - team=None, - team_member_id=None): - super(FullAccount, self).__init__(account_id, - name, - email, - email_verified, - disabled, - profile_photo_url) + def __init__( + self, + account_id=None, + name=None, + email=None, + email_verified=None, + disabled=None, + locale=None, + referral_link=None, + is_paired=None, + account_type=None, + root_info=None, + profile_photo_url=None, + country=None, + team=None, + team_member_id=None, + ): + super(FullAccount, self).__init__( + account_id, name, email, email_verified, disabled, profile_photo_url + ) self._country_value = bb.NOT_SET self._locale_value = bb.NOT_SET self._referral_link_value = bb.NOT_SET @@ -390,8 +405,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(FullAccount, self)._process_custom_annotations(annotation_type, field_path, processor) + FullAccount_validator = bv.Struct(FullAccount) + class Team(bb.Struct): """ Information about a team. @@ -403,15 +420,13 @@ class Team(bb.Struct): """ __slots__ = [ - '_id_value', - '_name_value', + "_id_value", + "_name_value", ] _has_required_fields = True - def __init__(self, - id=None, - name=None): + def __init__(self, id=None, name=None): self._id_value = bb.NOT_SET self._name_value = bb.NOT_SET if id is not None: @@ -428,8 +443,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(Team, self)._process_custom_annotations(annotation_type, field_path, processor) + Team_validator = bv.Struct(Team) + class FullTeam(Team): """ Detailed information about a team. @@ -444,21 +461,22 @@ class FullTeam(Team): """ __slots__ = [ - '_sharing_policies_value', - '_office_addin_policy_value', - '_top_level_content_policy_value', + "_sharing_policies_value", + "_office_addin_policy_value", + "_top_level_content_policy_value", ] _has_required_fields = True - def __init__(self, - id=None, - name=None, - sharing_policies=None, - office_addin_policy=None, - top_level_content_policy=None): - super(FullTeam, self).__init__(id, - name) + def __init__( + self, + id=None, + name=None, + sharing_policies=None, + office_addin_policy=None, + top_level_content_policy=None, + ): + super(FullTeam, self).__init__(id, name) self._sharing_policies_value = bb.NOT_SET self._office_addin_policy_value = bb.NOT_SET self._top_level_content_policy_value = bb.NOT_SET @@ -481,8 +499,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(FullTeam, self)._process_custom_annotations(annotation_type, field_path, processor) + FullTeam_validator = bv.Struct(FullTeam) + class GetAccountArg(bb.Struct): """ :ivar GetAccountArg.account_id: @@ -490,13 +510,12 @@ class GetAccountArg(bb.Struct): """ __slots__ = [ - '_account_id_value', + "_account_id_value", ] _has_required_fields = True - def __init__(self, - account_id=None): + def __init__(self, account_id=None): self._account_id_value = bb.NOT_SET if account_id is not None: self.account_id = account_id @@ -505,10 +524,14 @@ def __init__(self, account_id = bb.Attribute("account_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetAccountArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetAccountArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetAccountArg_validator = bv.Struct(GetAccountArg) + class GetAccountBatchArg(bb.Struct): """ :ivar GetAccountBatchArg.account_ids: @@ -517,13 +540,12 @@ class GetAccountBatchArg(bb.Struct): """ __slots__ = [ - '_account_ids_value', + "_account_ids_value", ] _has_required_fields = True - def __init__(self, - account_ids=None): + def __init__(self, account_ids=None): self._account_ids_value = bb.NOT_SET if account_ids is not None: self.account_ids = account_ids @@ -532,10 +554,14 @@ def __init__(self, account_ids = bb.Attribute("account_ids") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetAccountBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetAccountBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetAccountBatchArg_validator = bv.Struct(GetAccountBatchArg) + class GetAccountBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -548,7 +574,7 @@ class GetAccountBatchError(bb.Union): :vartype GetAccountBatchError.no_account: str """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -561,7 +587,7 @@ def no_account(cls, val): :param str val: :rtype: GetAccountBatchError """ - return cls('no_account', val) + return cls("no_account", val) def is_no_account(self): """ @@ -569,7 +595,7 @@ def is_no_account(self): :rtype: bool """ - return self._tag == 'no_account' + return self._tag == "no_account" def is_other(self): """ @@ -577,7 +603,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_no_account(self): """ @@ -593,10 +619,14 @@ def get_no_account(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetAccountBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetAccountBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetAccountBatchError_validator = bv.Union(GetAccountBatchError) + class GetAccountError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -607,7 +637,7 @@ class GetAccountError(bb.Union): The specified ``GetAccountArg.account_id`` does not exist. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition no_account = None # Attribute is overwritten below the class definition @@ -619,7 +649,7 @@ def is_no_account(self): :rtype: bool """ - return self._tag == 'no_account' + return self._tag == "no_account" def is_other(self): """ @@ -627,13 +657,17 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetAccountError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(GetAccountError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + GetAccountError_validator = bv.Union(GetAccountError) + class IndividualSpaceAllocation(bb.Struct): """ :ivar IndividualSpaceAllocation.allocated: @@ -641,13 +675,12 @@ class IndividualSpaceAllocation(bb.Struct): """ __slots__ = [ - '_allocated_value', + "_allocated_value", ] _has_required_fields = True - def __init__(self, - allocated=None): + def __init__(self, allocated=None): self._allocated_value = bb.NOT_SET if allocated is not None: self.allocated = allocated @@ -656,10 +689,14 @@ def __init__(self, allocated = bb.Attribute("allocated") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(IndividualSpaceAllocation, self)._process_custom_annotations(annotation_type, field_path, processor) + super(IndividualSpaceAllocation, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + IndividualSpaceAllocation_validator = bv.Struct(IndividualSpaceAllocation) + class Name(bb.Struct): """ Representations for a person's name to assist with internationalization. @@ -681,21 +718,23 @@ class Name(bb.Struct): """ __slots__ = [ - '_given_name_value', - '_surname_value', - '_familiar_name_value', - '_display_name_value', - '_abbreviated_name_value', + "_given_name_value", + "_surname_value", + "_familiar_name_value", + "_display_name_value", + "_abbreviated_name_value", ] _has_required_fields = True - def __init__(self, - given_name=None, - surname=None, - familiar_name=None, - display_name=None, - abbreviated_name=None): + def __init__( + self, + given_name=None, + surname=None, + familiar_name=None, + display_name=None, + abbreviated_name=None, + ): self._given_name_value = bb.NOT_SET self._surname_value = bb.NOT_SET self._familiar_name_value = bb.NOT_SET @@ -730,8 +769,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(Name, self)._process_custom_annotations(annotation_type, field_path, processor) + Name_validator = bv.Struct(Name) + class PaperAsFilesValue(bb.Union): """ The value for ``UserFeature.paper_as_files``. @@ -749,7 +790,7 @@ class PaperAsFilesValue(bb.Union): :vartype PaperAsFilesValue.enabled: bool """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -762,7 +803,7 @@ def enabled(cls, val): :param bool val: :rtype: PaperAsFilesValue """ - return cls('enabled', val) + return cls("enabled", val) def is_enabled(self): """ @@ -770,7 +811,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -778,7 +819,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_enabled(self): """ @@ -797,10 +838,14 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperAsFilesValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(PaperAsFilesValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + PaperAsFilesValue_validator = bv.Union(PaperAsFilesValue) + class SpaceAllocation(bb.Union): """ Space is allocated differently based on the type of account. @@ -817,7 +862,7 @@ class SpaceAllocation(bb.Union): :vartype SpaceAllocation.team: TeamSpaceAllocation """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -830,7 +875,7 @@ def individual(cls, val): :param IndividualSpaceAllocation val: :rtype: SpaceAllocation """ - return cls('individual', val) + return cls("individual", val) @classmethod def team(cls, val): @@ -841,7 +886,7 @@ def team(cls, val): :param TeamSpaceAllocation val: :rtype: SpaceAllocation """ - return cls('team', val) + return cls("team", val) def is_individual(self): """ @@ -849,7 +894,7 @@ def is_individual(self): :rtype: bool """ - return self._tag == 'individual' + return self._tag == "individual" def is_team(self): """ @@ -857,7 +902,7 @@ def is_team(self): :rtype: bool """ - return self._tag == 'team' + return self._tag == "team" def is_other(self): """ @@ -865,7 +910,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_individual(self): """ @@ -892,10 +937,14 @@ def get_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SpaceAllocation, self)._process_custom_annotations(annotation_type, field_path, processor) + super(SpaceAllocation, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + SpaceAllocation_validator = bv.Union(SpaceAllocation) + class SpaceUsage(bb.Struct): """ Information about a user's space usage and quota. @@ -907,15 +956,13 @@ class SpaceUsage(bb.Struct): """ __slots__ = [ - '_used_value', - '_allocation_value', + "_used_value", + "_allocation_value", ] _has_required_fields = True - def __init__(self, - used=None, - allocation=None): + def __init__(self, used=None, allocation=None): self._used_value = bb.NOT_SET self._allocation_value = bb.NOT_SET if used is not None: @@ -932,8 +979,10 @@ def __init__(self, def _process_custom_annotations(self, annotation_type, field_path, processor): super(SpaceUsage, self)._process_custom_annotations(annotation_type, field_path, processor) + SpaceUsage_validator = bv.Struct(SpaceUsage) + class TeamSharedDropboxValue(bb.Union): """ The value for ``UserFeature.team_shared_dropbox``. @@ -948,7 +997,7 @@ class TeamSharedDropboxValue(bb.Union): :vartype TeamSharedDropboxValue.enabled: bool """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -961,7 +1010,7 @@ def enabled(cls, val): :param bool val: :rtype: TeamSharedDropboxValue """ - return cls('enabled', val) + return cls("enabled", val) def is_enabled(self): """ @@ -969,7 +1018,7 @@ def is_enabled(self): :rtype: bool """ - return self._tag == 'enabled' + return self._tag == "enabled" def is_other(self): """ @@ -977,7 +1026,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_enabled(self): """ @@ -993,10 +1042,14 @@ def get_enabled(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSharedDropboxValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSharedDropboxValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamSharedDropboxValue_validator = bv.Union(TeamSharedDropboxValue) + class TeamSpaceAllocation(bb.Struct): """ :ivar TeamSpaceAllocation.used: @@ -1016,21 +1069,23 @@ class TeamSpaceAllocation(bb.Struct): """ __slots__ = [ - '_used_value', - '_allocated_value', - '_user_within_team_space_allocated_value', - '_user_within_team_space_limit_type_value', - '_user_within_team_space_used_cached_value', + "_used_value", + "_allocated_value", + "_user_within_team_space_allocated_value", + "_user_within_team_space_limit_type_value", + "_user_within_team_space_used_cached_value", ] _has_required_fields = True - def __init__(self, - used=None, - allocated=None, - user_within_team_space_allocated=None, - user_within_team_space_limit_type=None, - user_within_team_space_used_cached=None): + def __init__( + self, + used=None, + allocated=None, + user_within_team_space_allocated=None, + user_within_team_space_limit_type=None, + user_within_team_space_used_cached=None, + ): self._used_value = bb.NOT_SET self._allocated_value = bb.NOT_SET self._user_within_team_space_allocated_value = bb.NOT_SET @@ -1057,16 +1112,22 @@ def __init__(self, user_within_team_space_allocated = bb.Attribute("user_within_team_space_allocated") # Instance attribute type: team_common.MemberSpaceLimitType (validator is set below) - user_within_team_space_limit_type = bb.Attribute("user_within_team_space_limit_type", user_defined=True) + user_within_team_space_limit_type = bb.Attribute( + "user_within_team_space_limit_type", user_defined=True + ) # Instance attribute type: int (validator is set below) user_within_team_space_used_cached = bb.Attribute("user_within_team_space_used_cached") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamSpaceAllocation, self)._process_custom_annotations(annotation_type, field_path, processor) + super(TeamSpaceAllocation, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + TeamSpaceAllocation_validator = bv.Struct(TeamSpaceAllocation) + class UserFeature(bb.Union): """ A set of features that a Dropbox User account may have configured. @@ -1089,7 +1150,7 @@ class UserFeature(bb.Union): namespace is distinct from their root namespace. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition paper_as_files = None # Attribute is overwritten below the class definition @@ -1107,7 +1168,7 @@ def is_paper_as_files(self): :rtype: bool """ - return self._tag == 'paper_as_files' + return self._tag == "paper_as_files" def is_file_locking(self): """ @@ -1115,7 +1176,7 @@ def is_file_locking(self): :rtype: bool """ - return self._tag == 'file_locking' + return self._tag == "file_locking" def is_team_shared_dropbox(self): """ @@ -1123,7 +1184,7 @@ def is_team_shared_dropbox(self): :rtype: bool """ - return self._tag == 'team_shared_dropbox' + return self._tag == "team_shared_dropbox" def is_distinct_member_home(self): """ @@ -1131,7 +1192,7 @@ def is_distinct_member_home(self): :rtype: bool """ - return self._tag == 'distinct_member_home' + return self._tag == "distinct_member_home" def is_other(self): """ @@ -1139,13 +1200,15 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): super(UserFeature, self)._process_custom_annotations(annotation_type, field_path, processor) + UserFeature_validator = bv.Union(UserFeature) + class UserFeatureValue(bb.Union): """ Values that correspond to entries in :class:`UserFeature`. @@ -1155,7 +1218,7 @@ class UserFeatureValue(bb.Union): corresponding ``get_*`` method. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition other = None @@ -1168,7 +1231,7 @@ def paper_as_files(cls, val): :param PaperAsFilesValue val: :rtype: UserFeatureValue """ - return cls('paper_as_files', val) + return cls("paper_as_files", val) @classmethod def file_locking(cls, val): @@ -1179,7 +1242,7 @@ def file_locking(cls, val): :param FileLockingValue val: :rtype: UserFeatureValue """ - return cls('file_locking', val) + return cls("file_locking", val) @classmethod def team_shared_dropbox(cls, val): @@ -1190,7 +1253,7 @@ def team_shared_dropbox(cls, val): :param TeamSharedDropboxValue val: :rtype: UserFeatureValue """ - return cls('team_shared_dropbox', val) + return cls("team_shared_dropbox", val) @classmethod def distinct_member_home(cls, val): @@ -1201,7 +1264,7 @@ def distinct_member_home(cls, val): :param DistinctMemberHomeValue val: :rtype: UserFeatureValue """ - return cls('distinct_member_home', val) + return cls("distinct_member_home", val) def is_paper_as_files(self): """ @@ -1209,7 +1272,7 @@ def is_paper_as_files(self): :rtype: bool """ - return self._tag == 'paper_as_files' + return self._tag == "paper_as_files" def is_file_locking(self): """ @@ -1217,7 +1280,7 @@ def is_file_locking(self): :rtype: bool """ - return self._tag == 'file_locking' + return self._tag == "file_locking" def is_team_shared_dropbox(self): """ @@ -1225,7 +1288,7 @@ def is_team_shared_dropbox(self): :rtype: bool """ - return self._tag == 'team_shared_dropbox' + return self._tag == "team_shared_dropbox" def is_distinct_member_home(self): """ @@ -1233,7 +1296,7 @@ def is_distinct_member_home(self): :rtype: bool """ - return self._tag == 'distinct_member_home' + return self._tag == "distinct_member_home" def is_other(self): """ @@ -1241,7 +1304,7 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def get_paper_as_files(self): """ @@ -1284,10 +1347,14 @@ def get_distinct_member_home(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFeatureValue, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserFeatureValue, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserFeatureValue_validator = bv.Union(UserFeatureValue) + class UserFeaturesGetValuesBatchArg(bb.Struct): """ :ivar UserFeaturesGetValuesBatchArg.features: @@ -1296,13 +1363,12 @@ class UserFeaturesGetValuesBatchArg(bb.Struct): """ __slots__ = [ - '_features_value', + "_features_value", ] _has_required_fields = True - def __init__(self, - features=None): + def __init__(self, features=None): self._features_value = bb.NOT_SET if features is not None: self.features = features @@ -1311,10 +1377,14 @@ def __init__(self, features = bb.Attribute("features") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFeaturesGetValuesBatchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserFeaturesGetValuesBatchArg, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserFeaturesGetValuesBatchArg_validator = bv.Struct(UserFeaturesGetValuesBatchArg) + class UserFeaturesGetValuesBatchError(bb.Union): """ This class acts as a tagged union. Only one of the ``is_*`` methods will @@ -1326,7 +1396,7 @@ class UserFeaturesGetValuesBatchError(bb.Union): :class:`UserFeaturesGetValuesBatchArg`.features list. """ - _catch_all = 'other' + _catch_all = "other" # Attribute is overwritten below the class definition empty_features_list = None # Attribute is overwritten below the class definition @@ -1338,7 +1408,7 @@ def is_empty_features_list(self): :rtype: bool """ - return self._tag == 'empty_features_list' + return self._tag == "empty_features_list" def is_other(self): """ @@ -1346,23 +1416,25 @@ def is_other(self): :rtype: bool """ - return self._tag == 'other' + return self._tag == "other" def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFeaturesGetValuesBatchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserFeaturesGetValuesBatchError, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserFeaturesGetValuesBatchError_validator = bv.Union(UserFeaturesGetValuesBatchError) -class UserFeaturesGetValuesBatchResult(bb.Struct): +class UserFeaturesGetValuesBatchResult(bb.Struct): __slots__ = [ - '_values_value', + "_values_value", ] _has_required_fields = True - def __init__(self, - values=None): + def __init__(self, values=None): self._values_value = bb.NOT_SET if values is not None: self.values = values @@ -1371,7 +1443,10 @@ def __init__(self, values = bb.Attribute("values") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserFeaturesGetValuesBatchResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super(UserFeaturesGetValuesBatchResult, self)._process_custom_annotations( + annotation_type, field_path, processor + ) + UserFeaturesGetValuesBatchResult_validator = bv.Struct(UserFeaturesGetValuesBatchResult) @@ -1382,51 +1457,57 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Account.email_verified.validator = bv.Boolean() Account.profile_photo_url.validator = bv.Nullable(bv.String()) Account.disabled.validator = bv.Boolean() -Account._all_field_names_ = set([ - 'account_id', - 'name', - 'email', - 'email_verified', - 'profile_photo_url', - 'disabled', -]) +Account._all_field_names_ = set( + [ + "account_id", + "name", + "email", + "email_verified", + "profile_photo_url", + "disabled", + ] +) Account._all_fields_ = [ - ('account_id', Account.account_id.validator), - ('name', Account.name.validator), - ('email', Account.email.validator), - ('email_verified', Account.email_verified.validator), - ('profile_photo_url', Account.profile_photo_url.validator), - ('disabled', Account.disabled.validator), + ("account_id", Account.account_id.validator), + ("name", Account.name.validator), + ("email", Account.email.validator), + ("email_verified", Account.email_verified.validator), + ("profile_photo_url", Account.profile_photo_url.validator), + ("disabled", Account.disabled.validator), ] BasicAccount.is_teammate.validator = bv.Boolean() BasicAccount.team_member_id.validator = bv.Nullable(bv.String()) -BasicAccount._all_field_names_ = Account._all_field_names_.union(set([ - 'is_teammate', - 'team_member_id', -])) +BasicAccount._all_field_names_ = Account._all_field_names_.union( + set( + [ + "is_teammate", + "team_member_id", + ] + ) +) BasicAccount._all_fields_ = Account._all_fields_ + [ - ('is_teammate', BasicAccount.is_teammate.validator), - ('team_member_id', BasicAccount.team_member_id.validator), + ("is_teammate", BasicAccount.is_teammate.validator), + ("team_member_id", BasicAccount.team_member_id.validator), ] DistinctMemberHomeValue._enabled_validator = bv.Boolean() DistinctMemberHomeValue._other_validator = bv.Void() DistinctMemberHomeValue._tagmap = { - 'enabled': DistinctMemberHomeValue._enabled_validator, - 'other': DistinctMemberHomeValue._other_validator, + "enabled": DistinctMemberHomeValue._enabled_validator, + "other": DistinctMemberHomeValue._other_validator, } -DistinctMemberHomeValue.other = DistinctMemberHomeValue('other') +DistinctMemberHomeValue.other = DistinctMemberHomeValue("other") FileLockingValue._enabled_validator = bv.Boolean() FileLockingValue._other_validator = bv.Void() FileLockingValue._tagmap = { - 'enabled': FileLockingValue._enabled_validator, - 'other': FileLockingValue._other_validator, + "enabled": FileLockingValue._enabled_validator, + "other": FileLockingValue._other_validator, } -FileLockingValue.other = FileLockingValue('other') +FileLockingValue.other = FileLockingValue("other") FullAccount.country.validator = bv.Nullable(bv.String(min_length=2, max_length=2)) FullAccount.locale.validator = bv.String(min_length=2) @@ -1436,161 +1517,190 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FullAccount.is_paired.validator = bv.Boolean() FullAccount.account_type.validator = users_common.AccountType_validator FullAccount.root_info.validator = common.RootInfo_validator -FullAccount._all_field_names_ = Account._all_field_names_.union(set([ - 'country', - 'locale', - 'referral_link', - 'team', - 'team_member_id', - 'is_paired', - 'account_type', - 'root_info', -])) +FullAccount._all_field_names_ = Account._all_field_names_.union( + set( + [ + "country", + "locale", + "referral_link", + "team", + "team_member_id", + "is_paired", + "account_type", + "root_info", + ] + ) +) FullAccount._all_fields_ = Account._all_fields_ + [ - ('country', FullAccount.country.validator), - ('locale', FullAccount.locale.validator), - ('referral_link', FullAccount.referral_link.validator), - ('team', FullAccount.team.validator), - ('team_member_id', FullAccount.team_member_id.validator), - ('is_paired', FullAccount.is_paired.validator), - ('account_type', FullAccount.account_type.validator), - ('root_info', FullAccount.root_info.validator), + ("country", FullAccount.country.validator), + ("locale", FullAccount.locale.validator), + ("referral_link", FullAccount.referral_link.validator), + ("team", FullAccount.team.validator), + ("team_member_id", FullAccount.team_member_id.validator), + ("is_paired", FullAccount.is_paired.validator), + ("account_type", FullAccount.account_type.validator), + ("root_info", FullAccount.root_info.validator), ] Team.id.validator = bv.String() Team.name.validator = bv.String() -Team._all_field_names_ = set([ - 'id', - 'name', -]) +Team._all_field_names_ = set( + [ + "id", + "name", + ] +) Team._all_fields_ = [ - ('id', Team.id.validator), - ('name', Team.name.validator), + ("id", Team.id.validator), + ("name", Team.name.validator), ] FullTeam.sharing_policies.validator = team_policies.TeamSharingPolicies_validator FullTeam.office_addin_policy.validator = team_policies.OfficeAddInPolicy_validator FullTeam.top_level_content_policy.validator = team_policies.TopLevelContentPolicy_validator -FullTeam._all_field_names_ = Team._all_field_names_.union(set([ - 'sharing_policies', - 'office_addin_policy', - 'top_level_content_policy', -])) +FullTeam._all_field_names_ = Team._all_field_names_.union( + set( + [ + "sharing_policies", + "office_addin_policy", + "top_level_content_policy", + ] + ) +) FullTeam._all_fields_ = Team._all_fields_ + [ - ('sharing_policies', FullTeam.sharing_policies.validator), - ('office_addin_policy', FullTeam.office_addin_policy.validator), - ('top_level_content_policy', FullTeam.top_level_content_policy.validator), + ("sharing_policies", FullTeam.sharing_policies.validator), + ("office_addin_policy", FullTeam.office_addin_policy.validator), + ("top_level_content_policy", FullTeam.top_level_content_policy.validator), ] GetAccountArg.account_id.validator = users_common.AccountId_validator -GetAccountArg._all_field_names_ = set(['account_id']) -GetAccountArg._all_fields_ = [('account_id', GetAccountArg.account_id.validator)] +GetAccountArg._all_field_names_ = set(["account_id"]) +GetAccountArg._all_fields_ = [("account_id", GetAccountArg.account_id.validator)] GetAccountBatchArg.account_ids.validator = bv.List(users_common.AccountId_validator, min_items=1) -GetAccountBatchArg._all_field_names_ = set(['account_ids']) -GetAccountBatchArg._all_fields_ = [('account_ids', GetAccountBatchArg.account_ids.validator)] +GetAccountBatchArg._all_field_names_ = set(["account_ids"]) +GetAccountBatchArg._all_fields_ = [("account_ids", GetAccountBatchArg.account_ids.validator)] GetAccountBatchError._no_account_validator = users_common.AccountId_validator GetAccountBatchError._other_validator = bv.Void() GetAccountBatchError._tagmap = { - 'no_account': GetAccountBatchError._no_account_validator, - 'other': GetAccountBatchError._other_validator, + "no_account": GetAccountBatchError._no_account_validator, + "other": GetAccountBatchError._other_validator, } -GetAccountBatchError.other = GetAccountBatchError('other') +GetAccountBatchError.other = GetAccountBatchError("other") GetAccountError._no_account_validator = bv.Void() GetAccountError._other_validator = bv.Void() GetAccountError._tagmap = { - 'no_account': GetAccountError._no_account_validator, - 'other': GetAccountError._other_validator, + "no_account": GetAccountError._no_account_validator, + "other": GetAccountError._other_validator, } -GetAccountError.no_account = GetAccountError('no_account') -GetAccountError.other = GetAccountError('other') +GetAccountError.no_account = GetAccountError("no_account") +GetAccountError.other = GetAccountError("other") IndividualSpaceAllocation.allocated.validator = bv.UInt64() -IndividualSpaceAllocation._all_field_names_ = set(['allocated']) -IndividualSpaceAllocation._all_fields_ = [('allocated', IndividualSpaceAllocation.allocated.validator)] +IndividualSpaceAllocation._all_field_names_ = set(["allocated"]) +IndividualSpaceAllocation._all_fields_ = [ + ("allocated", IndividualSpaceAllocation.allocated.validator) +] Name.given_name.validator = bv.String() Name.surname.validator = bv.String() Name.familiar_name.validator = bv.String() Name.display_name.validator = bv.String() Name.abbreviated_name.validator = bv.String() -Name._all_field_names_ = set([ - 'given_name', - 'surname', - 'familiar_name', - 'display_name', - 'abbreviated_name', -]) +Name._all_field_names_ = set( + [ + "given_name", + "surname", + "familiar_name", + "display_name", + "abbreviated_name", + ] +) Name._all_fields_ = [ - ('given_name', Name.given_name.validator), - ('surname', Name.surname.validator), - ('familiar_name', Name.familiar_name.validator), - ('display_name', Name.display_name.validator), - ('abbreviated_name', Name.abbreviated_name.validator), + ("given_name", Name.given_name.validator), + ("surname", Name.surname.validator), + ("familiar_name", Name.familiar_name.validator), + ("display_name", Name.display_name.validator), + ("abbreviated_name", Name.abbreviated_name.validator), ] PaperAsFilesValue._enabled_validator = bv.Boolean() PaperAsFilesValue._other_validator = bv.Void() PaperAsFilesValue._tagmap = { - 'enabled': PaperAsFilesValue._enabled_validator, - 'other': PaperAsFilesValue._other_validator, + "enabled": PaperAsFilesValue._enabled_validator, + "other": PaperAsFilesValue._other_validator, } -PaperAsFilesValue.other = PaperAsFilesValue('other') +PaperAsFilesValue.other = PaperAsFilesValue("other") SpaceAllocation._individual_validator = IndividualSpaceAllocation_validator SpaceAllocation._team_validator = TeamSpaceAllocation_validator SpaceAllocation._other_validator = bv.Void() SpaceAllocation._tagmap = { - 'individual': SpaceAllocation._individual_validator, - 'team': SpaceAllocation._team_validator, - 'other': SpaceAllocation._other_validator, + "individual": SpaceAllocation._individual_validator, + "team": SpaceAllocation._team_validator, + "other": SpaceAllocation._other_validator, } -SpaceAllocation.other = SpaceAllocation('other') +SpaceAllocation.other = SpaceAllocation("other") SpaceUsage.used.validator = bv.UInt64() SpaceUsage.allocation.validator = SpaceAllocation_validator -SpaceUsage._all_field_names_ = set([ - 'used', - 'allocation', -]) +SpaceUsage._all_field_names_ = set( + [ + "used", + "allocation", + ] +) SpaceUsage._all_fields_ = [ - ('used', SpaceUsage.used.validator), - ('allocation', SpaceUsage.allocation.validator), + ("used", SpaceUsage.used.validator), + ("allocation", SpaceUsage.allocation.validator), ] TeamSharedDropboxValue._enabled_validator = bv.Boolean() TeamSharedDropboxValue._other_validator = bv.Void() TeamSharedDropboxValue._tagmap = { - 'enabled': TeamSharedDropboxValue._enabled_validator, - 'other': TeamSharedDropboxValue._other_validator, + "enabled": TeamSharedDropboxValue._enabled_validator, + "other": TeamSharedDropboxValue._other_validator, } -TeamSharedDropboxValue.other = TeamSharedDropboxValue('other') +TeamSharedDropboxValue.other = TeamSharedDropboxValue("other") TeamSpaceAllocation.used.validator = bv.UInt64() TeamSpaceAllocation.allocated.validator = bv.UInt64() TeamSpaceAllocation.user_within_team_space_allocated.validator = bv.UInt64() -TeamSpaceAllocation.user_within_team_space_limit_type.validator = team_common.MemberSpaceLimitType_validator +TeamSpaceAllocation.user_within_team_space_limit_type.validator = ( + team_common.MemberSpaceLimitType_validator +) TeamSpaceAllocation.user_within_team_space_used_cached.validator = bv.UInt64() -TeamSpaceAllocation._all_field_names_ = set([ - 'used', - 'allocated', - 'user_within_team_space_allocated', - 'user_within_team_space_limit_type', - 'user_within_team_space_used_cached', -]) +TeamSpaceAllocation._all_field_names_ = set( + [ + "used", + "allocated", + "user_within_team_space_allocated", + "user_within_team_space_limit_type", + "user_within_team_space_used_cached", + ] +) TeamSpaceAllocation._all_fields_ = [ - ('used', TeamSpaceAllocation.used.validator), - ('allocated', TeamSpaceAllocation.allocated.validator), - ('user_within_team_space_allocated', TeamSpaceAllocation.user_within_team_space_allocated.validator), - ('user_within_team_space_limit_type', TeamSpaceAllocation.user_within_team_space_limit_type.validator), - ('user_within_team_space_used_cached', TeamSpaceAllocation.user_within_team_space_used_cached.validator), + ("used", TeamSpaceAllocation.used.validator), + ("allocated", TeamSpaceAllocation.allocated.validator), + ( + "user_within_team_space_allocated", + TeamSpaceAllocation.user_within_team_space_allocated.validator, + ), + ( + "user_within_team_space_limit_type", + TeamSpaceAllocation.user_within_team_space_limit_type.validator, + ), + ( + "user_within_team_space_used_cached", + TeamSpaceAllocation.user_within_team_space_used_cached.validator, + ), ] UserFeature._paper_as_files_validator = bv.Void() @@ -1599,18 +1709,18 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserFeature._distinct_member_home_validator = bv.Void() UserFeature._other_validator = bv.Void() UserFeature._tagmap = { - 'paper_as_files': UserFeature._paper_as_files_validator, - 'file_locking': UserFeature._file_locking_validator, - 'team_shared_dropbox': UserFeature._team_shared_dropbox_validator, - 'distinct_member_home': UserFeature._distinct_member_home_validator, - 'other': UserFeature._other_validator, + "paper_as_files": UserFeature._paper_as_files_validator, + "file_locking": UserFeature._file_locking_validator, + "team_shared_dropbox": UserFeature._team_shared_dropbox_validator, + "distinct_member_home": UserFeature._distinct_member_home_validator, + "other": UserFeature._other_validator, } -UserFeature.paper_as_files = UserFeature('paper_as_files') -UserFeature.file_locking = UserFeature('file_locking') -UserFeature.team_shared_dropbox = UserFeature('team_shared_dropbox') -UserFeature.distinct_member_home = UserFeature('distinct_member_home') -UserFeature.other = UserFeature('other') +UserFeature.paper_as_files = UserFeature("paper_as_files") +UserFeature.file_locking = UserFeature("file_locking") +UserFeature.team_shared_dropbox = UserFeature("team_shared_dropbox") +UserFeature.distinct_member_home = UserFeature("distinct_member_home") +UserFeature.other = UserFeature("other") UserFeatureValue._paper_as_files_validator = PaperAsFilesValue_validator UserFeatureValue._file_locking_validator = FileLockingValue_validator @@ -1618,94 +1728,89 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserFeatureValue._distinct_member_home_validator = DistinctMemberHomeValue_validator UserFeatureValue._other_validator = bv.Void() UserFeatureValue._tagmap = { - 'paper_as_files': UserFeatureValue._paper_as_files_validator, - 'file_locking': UserFeatureValue._file_locking_validator, - 'team_shared_dropbox': UserFeatureValue._team_shared_dropbox_validator, - 'distinct_member_home': UserFeatureValue._distinct_member_home_validator, - 'other': UserFeatureValue._other_validator, + "paper_as_files": UserFeatureValue._paper_as_files_validator, + "file_locking": UserFeatureValue._file_locking_validator, + "team_shared_dropbox": UserFeatureValue._team_shared_dropbox_validator, + "distinct_member_home": UserFeatureValue._distinct_member_home_validator, + "other": UserFeatureValue._other_validator, } -UserFeatureValue.other = UserFeatureValue('other') +UserFeatureValue.other = UserFeatureValue("other") UserFeaturesGetValuesBatchArg.features.validator = bv.List(UserFeature_validator) -UserFeaturesGetValuesBatchArg._all_field_names_ = set(['features']) -UserFeaturesGetValuesBatchArg._all_fields_ = [('features', UserFeaturesGetValuesBatchArg.features.validator)] +UserFeaturesGetValuesBatchArg._all_field_names_ = set(["features"]) +UserFeaturesGetValuesBatchArg._all_fields_ = [ + ("features", UserFeaturesGetValuesBatchArg.features.validator) +] UserFeaturesGetValuesBatchError._empty_features_list_validator = bv.Void() UserFeaturesGetValuesBatchError._other_validator = bv.Void() UserFeaturesGetValuesBatchError._tagmap = { - 'empty_features_list': UserFeaturesGetValuesBatchError._empty_features_list_validator, - 'other': UserFeaturesGetValuesBatchError._other_validator, + "empty_features_list": UserFeaturesGetValuesBatchError._empty_features_list_validator, + "other": UserFeaturesGetValuesBatchError._other_validator, } -UserFeaturesGetValuesBatchError.empty_features_list = UserFeaturesGetValuesBatchError('empty_features_list') -UserFeaturesGetValuesBatchError.other = UserFeaturesGetValuesBatchError('other') +UserFeaturesGetValuesBatchError.empty_features_list = UserFeaturesGetValuesBatchError( + "empty_features_list" +) +UserFeaturesGetValuesBatchError.other = UserFeaturesGetValuesBatchError("other") UserFeaturesGetValuesBatchResult.values.validator = bv.List(UserFeatureValue_validator) -UserFeaturesGetValuesBatchResult._all_field_names_ = set(['values']) -UserFeaturesGetValuesBatchResult._all_fields_ = [('values', UserFeaturesGetValuesBatchResult.values.validator)] +UserFeaturesGetValuesBatchResult._all_field_names_ = set(["values"]) +UserFeaturesGetValuesBatchResult._all_fields_ = [ + ("values", UserFeaturesGetValuesBatchResult.values.validator) +] features_get_values = bb.Route( - 'features/get_values', + "features/get_values", 1, False, UserFeaturesGetValuesBatchArg_validator, UserFeaturesGetValuesBatchResult_validator, UserFeaturesGetValuesBatchError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_account = bb.Route( - 'get_account', + "get_account", 1, False, GetAccountArg_validator, BasicAccount_validator, GetAccountError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_account_batch = bb.Route( - 'get_account_batch', + "get_account_batch", 1, False, GetAccountBatchArg_validator, GetAccountBatchResult_validator, GetAccountBatchError_validator, - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_current_account = bb.Route( - 'get_current_account', + "get_current_account", 1, False, bv.Void(), FullAccount_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) get_space_usage = bb.Route( - 'get_space_usage', + "get_space_usage", 1, False, bv.Void(), SpaceUsage_validator, bv.Void(), - {'auth': 'user', - 'host': 'api', - 'style': 'rpc'}, + {"auth": "user", "host": "api", "style": "rpc"}, ) ROUTES = { - 'features/get_values': features_get_values, - 'get_account': get_account, - 'get_account_batch': get_account_batch, - 'get_current_account': get_current_account, - 'get_space_usage': get_space_usage, + "features/get_values": features_get_values, + "get_account": get_account, + "get_account_batch": get_account_batch, + "get_current_account": get_current_account, + "get_space_usage": get_space_usage, } - diff --git a/dropbox/users_common.py b/dropbox/users_common.py index cd0a7aac..5ee26be6 100644 --- a/dropbox/users_common.py +++ b/dropbox/users_common.py @@ -11,6 +11,7 @@ from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv + class AccountType(bb.Union): """ What type of account this user has. @@ -41,7 +42,7 @@ def is_basic(self): :rtype: bool """ - return self._tag == 'basic' + return self._tag == "basic" def is_pro(self): """ @@ -49,7 +50,7 @@ def is_pro(self): :rtype: bool """ - return self._tag == 'pro' + return self._tag == "pro" def is_business(self): """ @@ -57,11 +58,12 @@ def is_business(self): :rtype: bool """ - return self._tag == 'business' + return self._tag == "business" def _process_custom_annotations(self, annotation_type, field_path, processor): super(AccountType, self)._process_custom_annotations(annotation_type, field_path, processor) + AccountType_validator = bv.Union(AccountType) AccountId_validator = bv.String(min_length=40, max_length=40) @@ -69,15 +71,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccountType._pro_validator = bv.Void() AccountType._business_validator = bv.Void() AccountType._tagmap = { - 'basic': AccountType._basic_validator, - 'pro': AccountType._pro_validator, - 'business': AccountType._business_validator, + "basic": AccountType._basic_validator, + "pro": AccountType._pro_validator, + "business": AccountType._business_validator, } -AccountType.basic = AccountType('basic') -AccountType.pro = AccountType('pro') -AccountType.business = AccountType('business') - -ROUTES = { -} +AccountType.basic = AccountType("basic") +AccountType.pro = AccountType("pro") +AccountType.business = AccountType("business") +ROUTES = {} diff --git a/example/back-up-and-restore/backup-and-restore-example.py b/example/back-up-and-restore/backup-and-restore-example.py index 030a1733..bb7a8097 100644 --- a/example/back-up-and-restore/backup-and-restore-example.py +++ b/example/back-up-and-restore/backup-and-restore-example.py @@ -11,24 +11,24 @@ # Add OAuth2 access token here. # You can generate one for yourself in the App Console. # See -TOKEN = '' +TOKEN = "" + +LOCALFILE = "my-file.txt" +BACKUPPATH = "/my-file-backup.txt" -LOCALFILE = 'my-file.txt' -BACKUPPATH = '/my-file-backup.txt' # Uploads contents of LOCALFILE to Dropbox def backup(): - with open(LOCALFILE, 'rb') as f: + with open(LOCALFILE, "rb") as f: # We use WriteMode=overwrite to make sure that the settings in the file # are changed on upload print("Uploading " + LOCALFILE + " to Dropbox as " + BACKUPPATH + "...") try: - dbx.files_upload(f.read(), BACKUPPATH, mode=WriteMode('overwrite')) + dbx.files_upload(f.read(), BACKUPPATH, mode=WriteMode("overwrite")) except ApiError as err: # This checks for the specific error where a user doesn't have # enough Dropbox space quota to upload this file - if (err.error.is_path() and - err.error.get_path().reason.is_insufficient_space()): + if err.error.is_path() and err.error.get_path().reason.is_insufficient_space(): sys.exit("ERROR: Cannot back up; insufficient space.") elif err.user_message_text: print(err.user_message_text) @@ -37,13 +37,15 @@ def backup(): print(err) sys.exit() + # Change the text string in LOCALFILE to be new_content # @param new_content is a string def change_local_file(new_content): print("Changing contents of " + LOCALFILE + " on local machine...") - with open(LOCALFILE, 'wb') as f: + with open(LOCALFILE, "wb") as f: f.write(new_content) + # Restore the local and Dropbox files to a certain revision def restore(rev=None): # Restore the file on Dropbox to a certain revision @@ -54,6 +56,7 @@ def restore(rev=None): print("Downloading current " + BACKUPPATH + " from Dropbox, overwriting " + LOCALFILE + "...") dbx.files_download_to_file(LOCALFILE, BACKUPPATH, rev) + # Look at all of the available revisions on Dropbox, and return the oldest one def select_revision(): # Get the revisions for a file (and sort by the datetime object, "server_modified") @@ -67,23 +70,27 @@ def select_revision(): # Return the oldest revision (first entry, because revisions was sorted oldest:newest) return revisions[0].rev -if __name__ == '__main__': + +if __name__ == "__main__": # Check for an access token - if (len(TOKEN) == 0): - sys.exit("ERROR: Looks like you didn't add your access token. " + if len(TOKEN) == 0: + sys.exit( + "ERROR: Looks like you didn't add your access token. " "Open up backup-and-restore-example.py in a text editor and " - "paste in your token in line 14.") + "paste in your token in line 14." + ) # Create an instance of a Dropbox class, which can make requests to the API. print("Creating a Dropbox object...") with dropbox.Dropbox(TOKEN) as dbx: - # Check that the access token is valid try: dbx.users_get_current_account() except AuthError: - sys.exit("ERROR: Invalid access token; try re-generating an " - "access token from the app console on the web.") + sys.exit( + "ERROR: Invalid access token; try re-generating an " + "access token from the app console on the web." + ) # Create a backup of the current settings file backup() diff --git a/example/oauth/commandline-oauth-pkce.py b/example/oauth/commandline-oauth-pkce.py index b783e196..7509f206 100644 --- a/example/oauth/commandline-oauth-pkce.py +++ b/example/oauth/commandline-oauth-pkce.py @@ -3,23 +3,23 @@ import dropbox from dropbox import DropboxOAuth2FlowNoRedirect -''' +""" Populate your app key in order to run this locally -''' +""" APP_KEY = "" -auth_flow = DropboxOAuth2FlowNoRedirect(APP_KEY, use_pkce=True, token_access_type='offline') +auth_flow = DropboxOAuth2FlowNoRedirect(APP_KEY, use_pkce=True, token_access_type="offline") authorize_url = auth_flow.start() print("1. Go to: " + authorize_url) -print("2. Click \"Allow\" (you might have to log in first).") +print('2. Click "Allow" (you might have to log in first).') print("3. Copy the authorization code.") auth_code = input("Enter the authorization code here: ").strip() try: oauth_result = auth_flow.finish(auth_code) except Exception as e: - print('Error: %s' % (e,)) + print("Error: %s" % (e,)) exit(1) with dropbox.Dropbox(oauth2_refresh_token=oauth_result.refresh_token, app_key=APP_KEY) as dbx: diff --git a/example/oauth/commandline-oauth-scopes.py b/example/oauth/commandline-oauth-scopes.py index 7378f59e..00a9b0ec 100644 --- a/example/oauth/commandline-oauth-scopes.py +++ b/example/oauth/commandline-oauth-scopes.py @@ -3,63 +3,69 @@ import dropbox from dropbox import DropboxOAuth2FlowNoRedirect -''' +""" It goes through an example of requesting a starting scope, and requesting more throughout the process -''' +""" APP_KEY = "" APP_SECRET = "" -auth_flow = DropboxOAuth2FlowNoRedirect(APP_KEY, - consumer_secret=APP_SECRET, - token_access_type='offline', - scope=['files.metadata.read']) +auth_flow = DropboxOAuth2FlowNoRedirect( + APP_KEY, + consumer_secret=APP_SECRET, + token_access_type="offline", + scope=["files.metadata.read"], +) authorize_url = auth_flow.start() print("1. Go to: " + authorize_url) -print("2. Click \"Allow\" (you might have to log in first).") +print('2. Click "Allow" (you might have to log in first).') print("3. Copy the authorization code.") auth_code = input("Enter the authorization code here: ").strip() try: oauth_result = auth_flow.finish(auth_code) # authorization has files.metadata.read scope only - assert oauth_result.scope == 'files.metadata.read' + assert oauth_result.scope == "files.metadata.read" except Exception as e: - print('Error: %s' % (e,)) + print("Error: %s" % (e,)) exit(1) # If an application needs write scopes now we can request the new scope with the auth flow -auth_flow2 = DropboxOAuth2FlowNoRedirect(APP_KEY, - consumer_secret=APP_SECRET, - token_access_type='offline', - scope=['account_info.read']) +auth_flow2 = DropboxOAuth2FlowNoRedirect( + APP_KEY, + consumer_secret=APP_SECRET, + token_access_type="offline", + scope=["account_info.read"], +) authorize_url = auth_flow2.start() print("1. Go to: " + authorize_url) -print("2. Click \"Allow\" (you might have to log in first).") +print('2. Click "Allow" (you might have to log in first).') print("3. Copy the authorization code.") auth_code = input("Enter the authorization code here: ").strip() try: oauth_result = auth_flow2.finish(auth_code) # authorization has account_info.read scope only - assert oauth_result.scope == 'account_info.read' + assert oauth_result.scope == "account_info.read" except Exception as e: - print('Error: %s' % (e,)) + print("Error: %s" % (e,)) exit(1) # If an application needs a new scope but wants to keep the existing scopes, # you can add include_granted_scopes parameter -auth_flow3 = DropboxOAuth2FlowNoRedirect(APP_KEY, - consumer_secret=APP_SECRET, - token_access_type='offline', - scope=['files.content.read', 'files.content.write'], - include_granted_scopes='user') +auth_flow3 = DropboxOAuth2FlowNoRedirect( + APP_KEY, + consumer_secret=APP_SECRET, + token_access_type="offline", + scope=["files.content.read", "files.content.write"], + include_granted_scopes="user", +) authorize_url = auth_flow3.start() print("1. Go to: " + authorize_url) -print("2. Click \"Allow\" (you might have to log in first).") +print('2. Click "Allow" (you might have to log in first).') print("3. Copy the authorization code.") auth_code = input("Enter the authorization code here: ").strip() @@ -67,19 +73,21 @@ oauth_result = auth_flow3.finish(auth_code) print(oauth_result) # authorization has all granted user scopes - assert 'account_info.read' in oauth_result.scope - assert 'files.metadata.read' in oauth_result.scope - assert 'files.content.read' in oauth_result.scope - assert 'files.content.write' in oauth_result.scope + assert "account_info.read" in oauth_result.scope + assert "files.metadata.read" in oauth_result.scope + assert "files.content.read" in oauth_result.scope + assert "files.content.write" in oauth_result.scope print(oauth_result.scope) # Printing for example except Exception as e: - print('Error: %s' % (e,)) + print("Error: %s" % (e,)) exit(1) -with dropbox.Dropbox(oauth2_access_token=oauth_result.access_token, - oauth2_access_token_expiration=oauth_result.expires_at, - oauth2_refresh_token=oauth_result.refresh_token, - app_key=APP_KEY, - app_secret=APP_SECRET) as dbx: +with dropbox.Dropbox( + oauth2_access_token=oauth_result.access_token, + oauth2_access_token_expiration=oauth_result.expires_at, + oauth2_refresh_token=oauth_result.refresh_token, + app_key=APP_KEY, + app_secret=APP_SECRET, +) as dbx: dbx.users_get_current_account() print("Successfully set up client!") diff --git a/example/oauth/commandline-oauth.py b/example/oauth/commandline-oauth.py index eb9611ab..42a25bc7 100644 --- a/example/oauth/commandline-oauth.py +++ b/example/oauth/commandline-oauth.py @@ -3,10 +3,10 @@ import dropbox from dropbox import DropboxOAuth2FlowNoRedirect -''' +""" This example walks through a basic oauth flow using the existing long-lived token type Populate your app key and app secret in order to run this locally -''' +""" APP_KEY = "" APP_SECRET = "" @@ -14,14 +14,14 @@ authorize_url = auth_flow.start() print("1. Go to: " + authorize_url) -print("2. Click \"Allow\" (you might have to log in first).") +print('2. Click "Allow" (you might have to log in first).') print("3. Copy the authorization code.") auth_code = input("Enter the authorization code here: ").strip() try: oauth_result = auth_flow.finish(auth_code) except Exception as e: - print('Error: %s' % (e,)) + print("Error: %s" % (e,)) exit(1) with dropbox.Dropbox(oauth2_access_token=oauth_result.access_token) as dbx: diff --git a/example/updown.py b/example/updown.py index 3cf36c71..81241d93 100644 --- a/example/updown.py +++ b/example/updown.py @@ -11,28 +11,28 @@ import time import unicodedata -if sys.version.startswith('2'): - input = raw_input # noqa: E501,F821; pylint: disable=redefined-builtin,undefined-variable,useless-suppression +if sys.version.startswith("2"): + input = raw_input # noqa: F821 # pylint: disable=redefined-builtin,undefined-variable,useless-suppression import dropbox # OAuth2 access token. TODO: login etc. -TOKEN = '' - -parser = argparse.ArgumentParser(description='Sync ~/Downloads to Dropbox') -parser.add_argument('folder', nargs='?', default='Downloads', - help='Folder name in your Dropbox') -parser.add_argument('rootdir', nargs='?', default='~/Downloads', - help='Local directory to upload') -parser.add_argument('--token', default=TOKEN, - help='Access token ' - '(see https://www.dropbox.com/developers/apps)') -parser.add_argument('--yes', '-y', action='store_true', - help='Answer yes to all questions') -parser.add_argument('--no', '-n', action='store_true', - help='Answer no to all questions') -parser.add_argument('--default', '-d', action='store_true', - help='Take default answer on all questions') +TOKEN = "" + +parser = argparse.ArgumentParser(description="Sync ~/Downloads to Dropbox") +parser.add_argument("folder", nargs="?", default="Downloads", help="Folder name in your Dropbox") +parser.add_argument("rootdir", nargs="?", default="~/Downloads", help="Local directory to upload") +parser.add_argument( + "--token", + default=TOKEN, + help="Access token (see https://www.dropbox.com/developers/apps)", +) +parser.add_argument("--yes", "-y", action="store_true", help="Answer yes to all questions") +parser.add_argument("--no", "-n", action="store_true", help="Answer no to all questions") +parser.add_argument( + "--default", "-d", action="store_true", help="Take default answer on all questions" +) + def main(): """Main program. @@ -44,98 +44,101 @@ def main(): """ args = parser.parse_args() if sum([bool(b) for b in (args.yes, args.no, args.default)]) > 1: - print('At most one of --yes, --no, --default is allowed') + print("At most one of --yes, --no, --default is allowed") sys.exit(2) if not args.token: - print('--token is mandatory') + print("--token is mandatory") sys.exit(2) folder = args.folder rootdir = os.path.expanduser(args.rootdir) - print('Dropbox folder name:', folder) - print('Local directory:', rootdir) + print("Dropbox folder name:", folder) + print("Local directory:", rootdir) if not os.path.exists(rootdir): - print(rootdir, 'does not exist on your filesystem') + print(rootdir, "does not exist on your filesystem") sys.exit(1) elif not os.path.isdir(rootdir): - print(rootdir, 'is not a folder on your filesystem') + print(rootdir, "is not a folder on your filesystem") sys.exit(1) dbx = dropbox.Dropbox(args.token) for dn, dirs, files in os.walk(rootdir): - subfolder = dn[len(rootdir):].strip(os.path.sep) + subfolder = dn[len(rootdir) :].strip(os.path.sep) listing = list_folder(dbx, folder, subfolder) - print('Descending into', subfolder, '...') + print("Descending into", subfolder, "...") # First do all the files. for name in files: fullname = os.path.join(dn, name) if not isinstance(name, str): - name = name.decode('utf-8') - nname = unicodedata.normalize('NFC', name) - if name.startswith('.'): - print('Skipping dot file:', name) - elif name.startswith('@') or name.endswith('~'): - print('Skipping temporary file:', name) - elif name.endswith('.pyc') or name.endswith('.pyo'): - print('Skipping generated file:', name) + name = name.decode("utf-8") + nname = unicodedata.normalize("NFC", name) + if name.startswith("."): + print("Skipping dot file:", name) + elif name.startswith("@") or name.endswith("~"): + print("Skipping temporary file:", name) + elif name.endswith(".pyc") or name.endswith(".pyo"): + print("Skipping generated file:", name) elif nname in listing: md = listing[nname] mtime = os.path.getmtime(fullname) mtime_dt = datetime.datetime(*time.gmtime(mtime)[:6]) size = os.path.getsize(fullname) - if (isinstance(md, dropbox.files.FileMetadata) and - mtime_dt == md.client_modified and size == md.size): - print(name, 'is already synced [stats match]') + if ( + isinstance(md, dropbox.files.FileMetadata) + and mtime_dt == md.client_modified + and size == md.size + ): + print(name, "is already synced [stats match]") else: - print(name, 'exists with different stats, downloading') + print(name, "exists with different stats, downloading") res = download(dbx, folder, subfolder, name) - with open(fullname, 'rb') as f: + with open(fullname, "rb") as f: data = f.read() if res == data: - print(name, 'is already synced [content match]') + print(name, "is already synced [content match]") else: - print(name, 'has changed since last sync') - if yesno('Refresh %s' % name, False, args): - upload(dbx, fullname, folder, subfolder, name, - overwrite=True) - elif yesno('Upload %s' % name, True, args): + print(name, "has changed since last sync") + if yesno("Refresh %s" % name, False, args): + upload(dbx, fullname, folder, subfolder, name, overwrite=True) + elif yesno("Upload %s" % name, True, args): upload(dbx, fullname, folder, subfolder, name) # Then choose which subdirectories to traverse. keep = [] for name in dirs: - if name.startswith('.'): - print('Skipping dot directory:', name) - elif name.startswith('@') or name.endswith('~'): - print('Skipping temporary directory:', name) - elif name == '__pycache__': - print('Skipping generated directory:', name) - elif yesno('Descend into %s' % name, True, args): - print('Keeping directory:', name) + if name.startswith("."): + print("Skipping dot directory:", name) + elif name.startswith("@") or name.endswith("~"): + print("Skipping temporary directory:", name) + elif name == "__pycache__": + print("Skipping generated directory:", name) + elif yesno("Descend into %s" % name, True, args): + print("Keeping directory:", name) keep.append(name) else: - print('OK, skipping directory:', name) + print("OK, skipping directory:", name) dirs[:] = keep dbx.close() + def list_folder(dbx, folder, subfolder): """List a folder. Return a dict mapping unicode filenames to FileMetadata|FolderMetadata entries. """ - path = '/%s/%s' % (folder, subfolder.replace(os.path.sep, '/')) - while '//' in path: - path = path.replace('//', '/') - path = path.rstrip('/') + path = "/%s/%s" % (folder, subfolder.replace(os.path.sep, "/")) + while "//" in path: + path = path.replace("//", "/") + path = path.rstrip("/") try: - with stopwatch('list_folder'): + with stopwatch("list_folder"): res = dbx.files_list_folder(path) except dropbox.exceptions.ApiError as err: - print('Folder listing failed for', path, '-- assumed empty:', err) + print("Folder listing failed for", path, "-- assumed empty:", err) return {} else: rv = {} @@ -143,50 +146,54 @@ def list_folder(dbx, folder, subfolder): rv[entry.name] = entry return rv + def download(dbx, folder, subfolder, name): """Download a file. Return the bytes of the file, or None if it doesn't exist. """ - path = '/%s/%s/%s' % (folder, subfolder.replace(os.path.sep, '/'), name) - while '//' in path: - path = path.replace('//', '/') - with stopwatch('download'): + path = "/%s/%s/%s" % (folder, subfolder.replace(os.path.sep, "/"), name) + while "//" in path: + path = path.replace("//", "/") + with stopwatch("download"): try: md, res = dbx.files_download(path) except dropbox.exceptions.HttpError as err: - print('*** HTTP error', err) + print("*** HTTP error", err) return None data = res.content - print(len(data), 'bytes; md:', md) + print(len(data), "bytes; md:", md) return data + def upload(dbx, fullname, folder, subfolder, name, overwrite=False): """Upload a file. Return the request response, or None in case of error. """ - path = '/%s/%s/%s' % (folder, subfolder.replace(os.path.sep, '/'), name) - while '//' in path: - path = path.replace('//', '/') - mode = (dropbox.files.WriteMode.overwrite - if overwrite - else dropbox.files.WriteMode.add) + path = "/%s/%s/%s" % (folder, subfolder.replace(os.path.sep, "/"), name) + while "//" in path: + path = path.replace("//", "/") + mode = dropbox.files.WriteMode.overwrite if overwrite else dropbox.files.WriteMode.add mtime = os.path.getmtime(fullname) - with open(fullname, 'rb') as f: + with open(fullname, "rb") as f: data = f.read() - with stopwatch('upload %d bytes' % len(data)): + with stopwatch("upload %d bytes" % len(data)): try: res = dbx.files_upload( - data, path, mode, + data, + path, + mode, client_modified=datetime.datetime(*time.gmtime(mtime)[:6]), - mute=True) + mute=True, + ) except dropbox.exceptions.ApiError as err: - print('*** API error', err) + print("*** API error", err) return None - print('uploaded as', res.name.encode('utf8')) + print("uploaded as", res.name.encode("utf8")) return res + def yesno(message, default, args): """Handy helper function to ask a yes/no question. @@ -203,33 +210,35 @@ def yesno(message, default, args): - p or pdb invokes the debugger """ if args.default: - print(message + '? [auto]', 'Y' if default else 'N') + print(message + "? [auto]", "Y" if default else "N") return default if args.yes: - print(message + '? [auto] YES') + print(message + "? [auto] YES") return True if args.no: - print(message + '? [auto] NO') + print(message + "? [auto] NO") return False if default: - message += '? [Y/n] ' + message += "? [Y/n] " else: - message += '? [N/y] ' + message += "? [N/y] " while True: answer = input(message).strip().lower() if not answer: return default - if answer in ('y', 'yes'): + if answer in ("y", "yes"): return True - if answer in ('n', 'no'): + if answer in ("n", "no"): return False - if answer in ('q', 'quit'): - print('Exit') + if answer in ("q", "quit"): + print("Exit") raise SystemExit(0) - if answer in ('p', 'pdb'): + if answer in ("p", "pdb"): import pdb + pdb.set_trace() - print('Please answer YES or NO.') + print("Please answer YES or NO.") + @contextlib.contextmanager def stopwatch(message): @@ -239,7 +248,8 @@ def stopwatch(message): yield finally: t1 = time.time() - print('Total elapsed time for %s: %.3f' % (message, t1 - t0)) + print("Total elapsed time for %s: %.3f" % (message, t1 - t0)) + -if __name__ == '__main__': +if __name__ == "__main__": main() diff --git a/generate_base_client.py b/generate_base_client.py index dfdff9d5..b3ae1340 100755 --- a/generate_base_client.py +++ b/generate_base_client.py @@ -13,18 +13,19 @@ _cmdline_parser = argparse.ArgumentParser(description=cmdline_desc) _cmdline_parser.add_argument( - '-v', - '--verbose', - action='store_true', - help='Print debugging statements.', + "-v", + "--verbose", + action="store_true", + help="Print debugging statements.", ) _cmdline_parser.add_argument( - 'spec', - nargs='*', + "spec", + nargs="*", type=str, - help='Path to API specifications. Each must have a .stone extension.', + help="Path to API specifications. Each must have a .stone extension.", ) + def main(): """The entry point for the program.""" @@ -35,53 +36,83 @@ def main(): specs = args.spec else: # If no specs were specified, default to the spec submodule. - specs = glob.glob('spec/*.stone') # Arbitrary sorting + specs = glob.glob("spec/*.stone") # Arbitrary sorting specs.sort() specs = [os.path.join(os.getcwd(), s) for s in specs] dropbox_pkg_path = os.path.abspath( - os.path.join(os.path.dirname(sys.argv[0]), 'dropbox')) + os.path.join(os.path.dirname(sys.argv[0]), "dropbox") + ) if verbose: - print('Dropbox package path: %s' % dropbox_pkg_path) + print("Dropbox package path: %s" % dropbox_pkg_path) if verbose: - print('Generating Python types') + print("Generating Python types") subprocess.check_output( - (['python', '-m', 'stone.cli', 'python_types', dropbox_pkg_path] + - specs + ['-a', 'host', '-a', 'style', '-a', 'auth'] + - ['--', '-r', 'dropbox.dropbox_client.Dropbox.{ns}_{route}', '-p', 'dropbox'])) + ( + ["python", "-m", "stone.cli", "python_types", dropbox_pkg_path] + + specs + + ["-a", "host", "-a", "style", "-a", "auth"] + + [ + "--", + "-r", + "dropbox.dropbox_client.Dropbox.{ns}_{route}", + "-p", + "dropbox", + ] + ) + ) if verbose: - print('Generating Python client') + print("Generating Python client") o = subprocess.check_output( - (['python', '-m', 'stone.cli', 'python_client', dropbox_pkg_path] + - specs + ['-a', 'host', '-a', 'style', '-a', 'auth', '-a', 'scope'] + - [ - '--', - '-w', 'user,app,noauth', - '-m', 'base', - '-c', 'DropboxBase', - '-t', 'dropbox', - '-a', 'scope' - ])) + ( + ["python", "-m", "stone.cli", "python_client", dropbox_pkg_path] + + specs + + ["-a", "host", "-a", "style", "-a", "auth", "-a", "scope"] + + [ + "--", + "-w", + "user,app,noauth", + "-m", + "base", + "-c", + "DropboxBase", + "-t", + "dropbox", + "-a", + "scope", + ] + ) + ) if o: - print('Output:', o) + print("Output:", o) o = subprocess.check_output( - (['python', '-m', 'stone.cli', 'python_client', dropbox_pkg_path] + - specs + ['-a', 'host', '-a', 'style', '-a', 'auth', '-a', 'scope'] + - [ - '--', - '-w', 'team', - '-m', 'base_team', - '-c', 'DropboxTeamBase', - '-t', 'dropbox', - '-a', 'scope' - ])) + ( + ["python", "-m", "stone.cli", "python_client", dropbox_pkg_path] + + specs + + ["-a", "host", "-a", "style", "-a", "auth", "-a", "scope"] + + [ + "--", + "-w", + "team", + "-m", + "base_team", + "-c", + "DropboxTeamBase", + "-t", + "dropbox", + "-a", + "scope", + ] + ) + ) if o: - print('Output:', o) + print("Output:", o) + -if __name__ == '__main__': +if __name__ == "__main__": main() diff --git a/pyproject.toml b/pyproject.toml index 422757c1..40a6839c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=77.0"] +requires = ["setuptools>=77", "setuptools-scm>=8,<9"] build-backend = "setuptools.build_meta" [project] @@ -42,8 +42,31 @@ dev = ["flake8", "twine", "wheel", "build"] packages = ["dropbox"] zip-safe = false -[tool.setuptools.dynamic] -version = { attr = "dropbox.dropbox_client.__version__" } +[tool.setuptools_scm] +version_file = "dropbox/_version.py" +parentdir_prefix_version = "dropbox-" [tool.pytest.ini_options] norecursedirs = [".tox", ".venv", ".venv-*", "stone"] + +[tool.ruff] +line-length = 100 +target-version = "py311" + +[tool.ruff.lint] +select = ["E4", "E7", "E9", "F"] +ignore = [ + "E301", + "E302", + "E305", + "E402", +] + +[tool.ruff.lint.per-file-ignores] +"dropbox/stone_base.py" = ["F401", "F403"] +"dropbox/stone_validators.py" = ["F401", "F403"] +"dropbox/stone_serializers.py" = ["F401", "F403"] + +[tool.ruff.format] +quote-style = "double" +line-ending = "auto" \ No newline at end of file diff --git a/test/integration/test_dropbox.py b/test/integration/test_dropbox.py index 5afa3728..e86b1882 100644 --- a/test/integration/test_dropbox.py +++ b/test/integration/test_dropbox.py @@ -58,20 +58,26 @@ # Misc types SHARED_LINK_KEY = "DROPBOX_SHARED_LINK" + def format_env_name(app_type=SCOPED_KEY, user_type=USER_KEY, key_type=ACCESS_TOKEN_KEY): - return '{}_{}_{}'.format(app_type, user_type, key_type) + return "{}_{}_{}".format(app_type, user_type, key_type) + def _value_from_env_or_die(env_name): value = os.environ.get(env_name) if value is None: - print('Set {} environment variable to a valid value.'.format(env_name), - file=sys.stderr) + print( + "Set {} environment variable to a valid value.".format(env_name), + file=sys.stderr, + ) sys.exit(1) return value + _TRUSTED_CERTS_FILE = os.path.join(os.path.dirname(__file__), "trusted-certs.crt") _EXPIRED_CERTS_FILE = os.path.join(os.path.dirname(__file__), "expired-certs.crt") + # enables testing both with and without a manually-provided CA bundle @pytest.fixture(params=[None, _TRUSTED_CERTS_FILE], ids=["no-pinning", "pinning"]) def dbx_session(request): @@ -86,9 +92,12 @@ def _refresh_dbx(dbx_session=None): refresh_token = _value_from_env_or_die(format_env_name(SCOPED_KEY, USER_KEY, REFRESH_TOKEN_KEY)) app_key = _value_from_env_or_die(format_env_name(SCOPED_KEY, USER_KEY, CLIENT_ID_KEY)) app_secret = _value_from_env_or_die(format_env_name(SCOPED_KEY, USER_KEY, CLIENT_SECRET_KEY)) - return Dropbox(oauth2_refresh_token=refresh_token, - app_key=app_key, app_secret=app_secret, - session=dbx_session) + return Dropbox( + oauth2_refresh_token=refresh_token, + app_key=app_key, + app_secret=app_secret, + session=dbx_session, + ) @pytest.fixture() @@ -107,22 +116,25 @@ def bad_secret_dbx_from_env(dbx_session): # endpoint rejects the refresh. refresh_token = _value_from_env_or_die(format_env_name(SCOPED_KEY, USER_KEY, REFRESH_TOKEN_KEY)) app_key = _value_from_env_or_die(format_env_name(SCOPED_KEY, USER_KEY, CLIENT_ID_KEY)) - return Dropbox(oauth2_refresh_token=refresh_token, - app_key=app_key, app_secret='invalid_app_secret', - session=dbx_session) + return Dropbox( + oauth2_refresh_token=refresh_token, + app_key=app_key, + app_secret="invalid_app_secret", + session=dbx_session, + ) @pytest.fixture() def dbx_team_from_env(dbx_session): - refresh_token = _value_from_env_or_die( - format_env_name(SCOPED_KEY, TEAM_KEY, REFRESH_TOKEN_KEY)) - app_key = _value_from_env_or_die( - format_env_name(SCOPED_KEY, TEAM_KEY, CLIENT_ID_KEY)) - app_secret = _value_from_env_or_die( - format_env_name(SCOPED_KEY, TEAM_KEY, CLIENT_SECRET_KEY)) - return DropboxTeam(oauth2_refresh_token=refresh_token, - app_key=app_key, app_secret=app_secret, - session=dbx_session) + refresh_token = _value_from_env_or_die(format_env_name(SCOPED_KEY, TEAM_KEY, REFRESH_TOKEN_KEY)) + app_key = _value_from_env_or_die(format_env_name(SCOPED_KEY, TEAM_KEY, CLIENT_ID_KEY)) + app_secret = _value_from_env_or_die(format_env_name(SCOPED_KEY, TEAM_KEY, CLIENT_SECRET_KEY)) + return DropboxTeam( + oauth2_refresh_token=refresh_token, + app_key=app_key, + app_secret=app_secret, + session=dbx_session, + ) @pytest.fixture() @@ -137,17 +149,18 @@ def dbx_share_url_from_env(): return _value_from_env_or_die(SHARED_LINK_KEY) -MALFORMED_TOKEN = 'asdf' -INVALID_TOKEN = 'z' * 62 +MALFORMED_TOKEN = "asdf" +INVALID_TOKEN = "z" * 62 # Need bytes type for Python3 -DUMMY_PAYLOAD = string.ascii_letters.encode('ascii') +DUMMY_PAYLOAD = string.ascii_letters.encode("ascii") RANDOM_FOLDER = random.sample(string.ascii_letters, 15) TIMESTAMP = str(datetime.datetime.now(datetime.timezone.utc)) STATIC_FILE = "/test.txt" -@pytest.fixture(scope='module') + +@pytest.fixture(scope="module") def pytest_setup(): print("Setup") dbx = _refresh_dbx() @@ -158,10 +171,11 @@ def pytest_setup(): print("File not found") try: - dbx.files_delete('/Test/%s' % TIMESTAMP) + dbx.files_delete("/Test/%s" % TIMESTAMP) except Exception: print("File not found") + @pytest.mark.usefixtures( "pytest_setup", "dbx_from_env", @@ -189,32 +203,31 @@ def test_refresh(self, refresh_dbx_from_env): def test_refresh_failure_error_detail(self, bad_secret_dbx_from_env): with pytest.raises(BadInputError) as cm: bad_secret_dbx_from_env.users_get_current_account() - assert 'invalid_client' in cm.value.message + assert "invalid_client" in cm.value.message def test_app_auth(self, dbx_app_auth_from_env): dbx_app_auth_from_env.check_app(query="hello world") def test_downscope(self, refresh_dbx_from_env): refresh_dbx_from_env.users_get_current_account() - refresh_dbx_from_env.refresh_access_token(scope=['files.metadata.read']) + refresh_dbx_from_env.refresh_access_token(scope=["files.metadata.read"]) with pytest.raises(AuthError): # Should fail because downscoped to not include needed scope refresh_dbx_from_env.users_get_current_account() def test_rpc(self, dbx_from_env): - dbx_from_env.files_list_folder('') + dbx_from_env.files_list_folder("") # Test API error - random_folder_path = '/' + \ - ''.join(RANDOM_FOLDER) + random_folder_path = "/" + "".join(RANDOM_FOLDER) with pytest.raises(ApiError) as cm: dbx_from_env.files_list_folder(random_folder_path) assert isinstance(cm.value.error, ListFolderError) def test_upload_download(self, dbx_from_env): # Upload file - random_filename = ''.join(RANDOM_FOLDER) - random_path = '/Test/%s/%s' % (TIMESTAMP, random_filename) + random_filename = "".join(RANDOM_FOLDER) + random_path = "/Test/%s/%s" % (TIMESTAMP, random_filename) test_contents = DUMMY_PAYLOAD dbx_from_env.files_upload(test_contents, random_path) @@ -223,22 +236,21 @@ def test_upload_download(self, dbx_from_env): assert DUMMY_PAYLOAD == resp.content # Cleanup folder - dbx_from_env.files_delete('/Test/%s' % TIMESTAMP) + dbx_from_env.files_delete("/Test/%s" % TIMESTAMP) def test_upload_auto_content_hash(self, dbx_from_env, monkeypatch): # A deliberately incorrect auto-computed hash must be rejected by the # server, proving the default hash is included in the request. - monkeypatch.setattr(dropbox_client, '_content_hash', - lambda _: '0' * 64) - random_filename = ''.join(RANDOM_FOLDER) - random_path = '/Test/%s/%s' % (TIMESTAMP, random_filename) + monkeypatch.setattr(dropbox_client, "_content_hash", lambda _: "0" * 64) + random_filename = "".join(RANDOM_FOLDER) + random_path = "/Test/%s/%s" % (TIMESTAMP, random_filename) with pytest.raises(ApiError) as cm: dbx_from_env.files_upload(DUMMY_PAYLOAD, random_path) assert cm.value.error.is_content_hash_mismatch() def test_bad_upload_types(self, dbx_from_env): with pytest.raises(TypeError): - dbx_from_env.files_upload(BytesIO(b'test'), '/Test') + dbx_from_env.files_upload(BytesIO(b"test"), "/Test") def test_clone_when_user_linked(self, dbx_from_env): new_dbx = dbx_from_env.clone() @@ -269,26 +281,26 @@ def test_path_root(self, dbx_from_env): # verify home mode dbxpr = dbx_from_env.with_path_root(PathRoot.home) - dbxpr.files_list_folder('') + dbxpr.files_list_folder("") # verify root mode dbxpr = dbx_from_env.with_path_root(PathRoot.root(root_ns)) - dbxpr.files_list_folder('') + dbxpr.files_list_folder("") # verify namespace_id mode dbxpr = dbx_from_env.with_path_root(PathRoot.namespace_id(home_ns)) - dbxpr.files_list_folder('') + dbxpr.files_list_folder("") def test_path_root_err(self, dbx_from_env): # verify invalid namespace return is_no_permission error dbxpr = dbx_from_env.with_path_root(PathRoot.namespace_id("1234567890")) with pytest.raises(PathRootError) as cm: - dbxpr.files_list_folder('') + dbxpr.files_list_folder("") assert cm.value.error.is_no_permission() dbxpr = dbx_from_env.with_path_root(PathRoot.root("1234567890")) with pytest.raises(PathRootError) as cm: - dbxpr.files_list_folder('') + dbxpr.files_list_folder("") assert cm.value.error.is_invalid_root() def test_versioned_route(self, dbx_from_env): @@ -300,6 +312,7 @@ def test_versioned_route(self, dbx_from_env): # Verify response type is of v2 route assert isinstance(resp, DeleteResult) + @pytest.mark.usefixtures( "pytest_setup", "dbx_team_from_env", @@ -311,22 +324,22 @@ def test_team(self, dbx_team_from_env): if r.members: # Only test assuming a member if there is a member team_member_id = r.members[0].profile.team_member_id - dbx_team_from_env.as_user(team_member_id).files_list_folder('') + dbx_team_from_env.as_user(team_member_id).files_list_folder("") def test_as_user(self, dbx_team_from_env): - dbx_as_user = dbx_team_from_env.as_user('1') + dbx_as_user = dbx_team_from_env.as_user("1") path_root = PathRoot.root("123") dbx_new = dbx_as_user.with_path_root(path_root) assert isinstance(dbx_new, Dropbox) - assert dbx_new._headers.get(SELECT_USER_HEADER) == '1' + assert dbx_new._headers.get(SELECT_USER_HEADER) == "1" expected = stone_serializers.json_encode(PathRoot_validator, path_root) assert dbx_new._headers.get(PATH_ROOT_HEADER) == expected def test_as_admin(self, dbx_team_from_env): - dbx_as_admin = dbx_team_from_env.as_admin('1') + dbx_as_admin = dbx_team_from_env.as_admin("1") assert isinstance(dbx_as_admin, Dropbox) def test_clone_when_team_linked(self, dbx_team_from_env): @@ -334,22 +347,29 @@ def test_clone_when_team_linked(self, dbx_team_from_env): assert dbx_team_from_env is not new_dbxt assert isinstance(new_dbxt, dbx_team_from_env.__class__) + def test_default_oauth2_urls(): - flow_obj = DropboxOAuth2Flow('dummy_app_key', 'dummy_app_secret', - 'http://localhost/dummy', 'dummy_session', 'dbx-auth-csrf-token') + flow_obj = DropboxOAuth2Flow( + "dummy_app_key", + "dummy_app_secret", + "http://localhost/dummy", + "dummy_session", + "dbx-auth-csrf-token", + ) assert re.match( - r'^https://{}/oauth2/authorize\?'.format(re.escape(session.WEB_HOST)), - flow_obj._get_authorize_url('http://localhost/redirect', 'state', 'legacy'), + r"^https://{}/oauth2/authorize\?".format(re.escape(session.WEB_HOST)), + flow_obj._get_authorize_url("http://localhost/redirect", "state", "legacy"), ) - assert flow_obj.build_url( - '/oauth2/authorize' - ) == 'https://{}/oauth2/authorize'.format(session.API_HOST) + assert flow_obj.build_url("/oauth2/authorize") == "https://{}/oauth2/authorize".format( + session.API_HOST + ) assert flow_obj.build_url( - '/oauth2/authorize', host=session.WEB_HOST - ) == 'https://{}/oauth2/authorize'.format(session.WEB_HOST) + "/oauth2/authorize", host=session.WEB_HOST + ) == "https://{}/oauth2/authorize".format(session.WEB_HOST) + def test_bad_auth(dbx_session): # Test malformed token @@ -359,22 +379,28 @@ def test_bad_auth(dbx_session): # malformed_token_dbx.files_list_folder('') # assert 'token is malformed' in cm.value.message with pytest.raises(AuthError): - malformed_token_dbx.files_list_folder('') + malformed_token_dbx.files_list_folder("") # Test reasonable-looking invalid token invalid_token_dbx = Dropbox(INVALID_TOKEN, session=dbx_session) with pytest.raises(AuthError) as cm: - invalid_token_dbx.files_list_folder('') + invalid_token_dbx.files_list_folder("") assert cm.value.error.is_invalid_access_token() + def test_bad_pins(): # sanity-check: if we're pinning using expired pins, we should fail w/ an SSL error _dbx = Dropbox("dummy_token", ca_certs=_EXPIRED_CERTS_FILE) - with pytest.raises(SSLError,): - _dbx.files_list_folder('') + with pytest.raises( + SSLError, + ): + _dbx.files_list_folder("") + def test_bad_pins_session(): _session = create_session(ca_certs=_EXPIRED_CERTS_FILE) _dbx = Dropbox("dummy_token2", session=_session) - with pytest.raises(SSLError,): - _dbx.files_list_folder('') + with pytest.raises( + SSLError, + ): + _dbx.files_list_folder("") diff --git a/test/unit/test_content_hash.py b/test/unit/test_content_hash.py index 24d9cac8..ded83c29 100644 --- a/test/unit/test_content_hash.py +++ b/test/unit/test_content_hash.py @@ -14,43 +14,42 @@ BLOCK_SIZE = DropboxContentHasher.BLOCK_SIZE # SHA-256 of empty input; the content hash of empty content. -EMPTY_HASH = 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855' +EMPTY_HASH = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" def _reference_hash(data): # Independent reference implementation of the block-based algorithm. - block_hashes = b'' + block_hashes = b"" for i in range(0, len(data), BLOCK_SIZE): - block_hashes += hashlib.sha256(data[i:i + BLOCK_SIZE]).digest() + block_hashes += hashlib.sha256(data[i : i + BLOCK_SIZE]).digest() return hashlib.sha256(block_hashes).hexdigest() class TestContentHash: - def test_empty(self): - assert content_hash(b'') == EMPTY_HASH + assert content_hash(b"") == EMPTY_HASH def test_single_block(self): - data = b'hello world' + data = b"hello world" assert content_hash(data) == _reference_hash(data) def test_exact_block_boundary(self): - data = b'a' * BLOCK_SIZE + data = b"a" * BLOCK_SIZE assert content_hash(data) == _reference_hash(data) def test_multiple_blocks(self): - data = b'a' * (BLOCK_SIZE + 123) + data = b"a" * (BLOCK_SIZE + 123) assert content_hash(data) == _reference_hash(data) def test_update_in_chunks_matches_single_update(self): - data = b'x' * (BLOCK_SIZE * 2 + 500) + data = b"x" * (BLOCK_SIZE * 2 + 500) chunked = DropboxContentHasher() for i in range(0, len(data), 1000): - chunked.update(data[i:i + 1000]) + chunked.update(data[i : i + 1000]) assert chunked.hexdigest() == content_hash(data) def test_digest_and_hexdigest_agree(self): - data = b'some bytes' + data = b"some bytes" h1 = DropboxContentHasher() h1.update(data) h2 = DropboxContentHasher() @@ -60,29 +59,28 @@ def test_digest_and_hexdigest_agree(self): def test_update_rejects_non_bytes(self): hasher = DropboxContentHasher() with pytest.raises(AssertionError): - hasher.update(u'not bytes') + hasher.update("not bytes") def test_cannot_reuse_after_digest(self): hasher = DropboxContentHasher() - hasher.update(b'data') + hasher.update(b"data") hasher.hexdigest() with pytest.raises(AssertionError): - hasher.update(b'more') + hasher.update(b"more") def test_copy_is_independent(self): h = DropboxContentHasher() - h.update(b'prefix') + h.update(b"prefix") c = h.copy() assert c.digest_size == h.digest_size - h.update(b'-original') - c.update(b'-copy') + h.update(b"-original") + c.update(b"-copy") assert h.hexdigest() != c.hexdigest() class TestStreamHasher: - def test_read_hashes_passthrough(self): - data = b'streamed content' + data = b"streamed content" hasher = DropboxContentHasher() wrapped = StreamHasher(io.BytesIO(data), hasher) read_back = wrapped.read() @@ -90,7 +88,7 @@ def test_read_hashes_passthrough(self): assert hasher.hexdigest() == content_hash(data) def test_write_hashes_passthrough(self): - data = b'written content' + data = b"written content" hasher = DropboxContentHasher() out = io.BytesIO() wrapped = StreamHasher(out, hasher) @@ -99,31 +97,31 @@ def test_write_hashes_passthrough(self): assert hasher.hexdigest() == content_hash(data) def test_readlines_hashes_and_returns_all_lines(self): - lines = [b'first\n', b'second\n'] + lines = [b"first\n", b"second\n"] hasher = DropboxContentHasher() - wrapped = StreamHasher(io.BytesIO(b''.join(lines)), hasher) + wrapped = StreamHasher(io.BytesIO(b"".join(lines)), hasher) assert wrapped.readlines() == lines - assert hasher.hexdigest() == content_hash(b''.join(lines)) + assert hasher.hexdigest() == content_hash(b"".join(lines)) def test_readlines_empty_stream(self): hasher = DropboxContentHasher() wrapped = StreamHasher(io.BytesIO(), hasher) assert wrapped.readlines() == [] - assert hasher.hexdigest() == content_hash(b'') + assert hasher.hexdigest() == content_hash(b"") def test_python3_iteration_hashes_passthrough(self): - data = b'first\nsecond\n' + data = b"first\nsecond\n" hasher = DropboxContentHasher() wrapped = StreamHasher(io.BytesIO(data), hasher) - assert list(wrapped) == [b'first\n', b'second\n'] + assert list(wrapped) == [b"first\n", b"second\n"] assert hasher.hexdigest() == content_hash(data) def test_next_compatibility_method_hashes_passthrough(self): - data = b'first\nsecond\n' + data = b"first\nsecond\n" hasher = DropboxContentHasher() wrapped = StreamHasher(io.BytesIO(data), hasher) - assert wrapped.next() == b'first\n' - assert wrapped.next() == b'second\n' + assert wrapped.next() == b"first\n" + assert wrapped.next() == b"second\n" with pytest.raises(StopIteration): wrapped.next() assert hasher.hexdigest() == content_hash(data) diff --git a/test/unit/test_dropbox_unit.py b/test/unit/test_dropbox_unit.py index cfe88878..ef91395c 100644 --- a/test/unit/test_dropbox_unit.py +++ b/test/unit/test_dropbox_unit.py @@ -19,162 +19,218 @@ from dropbox.oauth import OAuth2FlowNoRedirectResult, DropboxOAuth2FlowNoRedirect from datetime import datetime, timedelta -APP_KEY = 'dummy_app_key' -APP_SECRET = 'dummy_app_secret' -ACCESS_TOKEN = 'dummy_access_token' -REFRESH_TOKEN = 'dummy_refresh_token' +APP_KEY = "dummy_app_key" +APP_SECRET = "dummy_app_secret" +ACCESS_TOKEN = "dummy_access_token" +REFRESH_TOKEN = "dummy_refresh_token" EXPIRES_IN = 14400 -ACCOUNT_ID = 'dummy_account_id' -USER_ID = 'dummy_user_id' -ADMIN_ID = 'dummy_admin_id' -TEAM_MEMBER_ID = 'dummy_team_member_id' -SCOPE_LIST = ['files.metadata.read', 'files.metadata.write'] +ACCOUNT_ID = "dummy_account_id" +USER_ID = "dummy_user_id" +ADMIN_ID = "dummy_admin_id" +TEAM_MEMBER_ID = "dummy_team_member_id" +SCOPE_LIST = ["files.metadata.read", "files.metadata.write"] EXPIRATION = datetime.utcnow() + timedelta(seconds=EXPIRES_IN) CA_CERTS = "/dummy/path/ca.crt" EXPIRATION_BUFFER = timedelta(minutes=5) -class TestOAuth: +class TestOAuth: def test_authorization_url(self): - flow_obj = DropboxOAuth2Flow(APP_KEY, APP_SECRET, 'http://localhost/dummy', - 'dummy_session', 'dbx-auth-csrf-token') - for redirect_uri in [None, 'localhost']: - for state in [None, 'state']: - for token_access_type in [None, 'legacy', 'offline', 'online']: + flow_obj = DropboxOAuth2Flow( + APP_KEY, + APP_SECRET, + "http://localhost/dummy", + "dummy_session", + "dbx-auth-csrf-token", + ) + for redirect_uri in [None, "localhost"]: + for state in [None, "state"]: + for token_access_type in [None, "legacy", "offline", "online"]: for scope in [None, SCOPE_LIST]: - for include_granted_scopes in [None, 'user', 'team']: - for code_challenge in [None, 'mychallenge']: - authorization_url = \ - flow_obj._get_authorize_url(redirect_uri, state, - token_access_type, scope, - include_granted_scopes, - code_challenge) - assert authorization_url\ - .startswith('https://{}/oauth2/authorize?' - .format(session.WEB_HOST)) - assert 'client_id={}'.format(APP_KEY) in authorization_url - assert 'response_type=code' in authorization_url + for include_granted_scopes in [None, "user", "team"]: + for code_challenge in [None, "mychallenge"]: + authorization_url = flow_obj._get_authorize_url( + redirect_uri, + state, + token_access_type, + scope, + include_granted_scopes, + code_challenge, + ) + assert authorization_url.startswith( + "https://{}/oauth2/authorize?".format(session.WEB_HOST) + ) + assert "client_id={}".format(APP_KEY) in authorization_url + assert "response_type=code" in authorization_url if redirect_uri: - assert 'redirect_uri={}'.format(redirect_uri) \ - in authorization_url + assert ( + "redirect_uri={}".format(redirect_uri) in authorization_url + ) else: - assert 'redirect_uri' not in authorization_url + assert "redirect_uri" not in authorization_url if state: - assert 'state={}'.format(state) in authorization_url + assert "state={}".format(state) in authorization_url else: - assert 'state' not in authorization_url + assert "state" not in authorization_url if token_access_type: - assert 'token_access_type={}'.format(token_access_type) \ + assert ( + "token_access_type={}".format(token_access_type) in authorization_url + ) else: - assert 'token_access_type' not in authorization_url + assert "token_access_type" not in authorization_url if scope: - assert 'scope={}'.format("+".join(scope)) \ - in authorization_url + assert "scope={}".format("+".join(scope)) in authorization_url else: - assert 'scope' not in authorization_url + assert "scope" not in authorization_url if include_granted_scopes and scope: - assert 'include_granted_scopes={}'\ - .format(include_granted_scopes)\ + assert ( + "include_granted_scopes={}".format(include_granted_scopes) in authorization_url + ) else: - assert 'include_granted_scopes' not in authorization_url + assert "include_granted_scopes" not in authorization_url if code_challenge: - assert 'code_challenge_method=S256' in authorization_url - assert 'code_challenge={}'.format(code_challenge)\ + assert "code_challenge_method=S256" in authorization_url + assert ( + "code_challenge={}".format(code_challenge) in authorization_url + ) else: - assert 'code_challenge_method' not in authorization_url - assert 'code_challenge' not in authorization_url + assert "code_challenge_method" not in authorization_url + assert "code_challenge" not in authorization_url def test_authorization_with_ca_certs(self): - DropboxOAuth2Flow(APP_KEY, APP_SECRET, 'http://localhost/dummy', 'dummy_session', - 'dbx-auth-csrf-token', ca_certs=CA_CERTS) + DropboxOAuth2Flow( + APP_KEY, + APP_SECRET, + "http://localhost/dummy", + "dummy_session", + "dbx-auth-csrf-token", + ca_certs=CA_CERTS, + ) def test_authorization_url_legacy_default(self): - flow_obj = DropboxOAuth2Flow(APP_KEY, APP_SECRET, 'http://localhost/dummy', - 'dummy_session', 'dbx-auth-csrf-token') - - legacy_default_authorization_url = flow_obj._get_authorize_url(None, None, 'legacy') - assert legacy_default_authorization_url.startswith('https://{}/oauth2/authorize?' - .format(session.WEB_HOST)) - assert 'client_id={}'.format(APP_KEY) in legacy_default_authorization_url - assert 'response_type=code' in legacy_default_authorization_url + flow_obj = DropboxOAuth2Flow( + APP_KEY, + APP_SECRET, + "http://localhost/dummy", + "dummy_session", + "dbx-auth-csrf-token", + ) + + legacy_default_authorization_url = flow_obj._get_authorize_url(None, None, "legacy") + assert legacy_default_authorization_url.startswith( + "https://{}/oauth2/authorize?".format(session.WEB_HOST) + ) + assert "client_id={}".format(APP_KEY) in legacy_default_authorization_url + assert "response_type=code" in legacy_default_authorization_url def test_authorization_url_invalid_token_type_raises_assertion_error(self): - flow_obj = DropboxOAuth2Flow(APP_KEY, APP_SECRET, 'http://localhost/dummy', - 'dummy_session', 'dbx-auth-csrf-token') + flow_obj = DropboxOAuth2Flow( + APP_KEY, + APP_SECRET, + "http://localhost/dummy", + "dummy_session", + "dbx-auth-csrf-token", + ) with pytest.raises(AssertionError): - flow_obj._get_authorize_url(None, None, 'invalid') + flow_obj._get_authorize_url(None, None, "invalid") def test_authorization_url_online_token_type(self): - flow_obj = DropboxOAuth2Flow(APP_KEY, APP_SECRET, 'http://localhost/dummy', - 'dummy_session', 'dbx-auth-csrf-token') - online_authorization_url = flow_obj._get_authorize_url(None, None, 'online') - assert online_authorization_url.startswith('https://{}/oauth2/authorize?' - .format(session.WEB_HOST)) - assert 'client_id={}'.format(APP_KEY) in online_authorization_url - assert 'response_type=code' in online_authorization_url - assert 'token_access_type=online' in online_authorization_url + flow_obj = DropboxOAuth2Flow( + APP_KEY, + APP_SECRET, + "http://localhost/dummy", + "dummy_session", + "dbx-auth-csrf-token", + ) + online_authorization_url = flow_obj._get_authorize_url(None, None, "online") + assert online_authorization_url.startswith( + "https://{}/oauth2/authorize?".format(session.WEB_HOST) + ) + assert "client_id={}".format(APP_KEY) in online_authorization_url + assert "response_type=code" in online_authorization_url + assert "token_access_type=online" in online_authorization_url def test_authorization_url_offline_token_type(self): - flow_obj = DropboxOAuth2Flow(APP_KEY, APP_SECRET, 'http://localhost/dummy', - 'dummy_session', 'dbx-auth-csrf-token') - - offline_authorization_url = flow_obj._get_authorize_url(None, None, 'offline') - assert offline_authorization_url.startswith('https://{}/oauth2/authorize?' - .format(session.WEB_HOST)) - assert 'client_id={}'.format(APP_KEY) in offline_authorization_url - assert 'response_type=code' in offline_authorization_url - assert 'token_access_type=offline' in offline_authorization_url + flow_obj = DropboxOAuth2Flow( + APP_KEY, + APP_SECRET, + "http://localhost/dummy", + "dummy_session", + "dbx-auth-csrf-token", + ) + + offline_authorization_url = flow_obj._get_authorize_url(None, None, "offline") + assert offline_authorization_url.startswith( + "https://{}/oauth2/authorize?".format(session.WEB_HOST) + ) + assert "client_id={}".format(APP_KEY) in offline_authorization_url + assert "response_type=code" in offline_authorization_url + assert "token_access_type=offline" in offline_authorization_url def test_authorization_url_with_scopes_and_granted(self): - flow_obj = DropboxOAuth2Flow(APP_KEY, APP_SECRET, 'http://localhost/dummy', - 'dummy_session', 'dbx-auth-csrf-token') - - scopes = ['account_info.read', 'files.metadata.read'] - scope_authorization_url = flow_obj._get_authorize_url(None, None, 'offline', scopes, 'user') - assert scope_authorization_url.startswith('https://{}/oauth2/authorize?' - .format(session.WEB_HOST)) - assert 'client_id={}'.format(APP_KEY) in scope_authorization_url - assert 'response_type=code' in scope_authorization_url - assert 'token_access_type=offline' in scope_authorization_url - assert 'scope=account_info.read+files.metadata.read' in scope_authorization_url - assert 'include_granted_scopes=user' in scope_authorization_url + flow_obj = DropboxOAuth2Flow( + APP_KEY, + APP_SECRET, + "http://localhost/dummy", + "dummy_session", + "dbx-auth-csrf-token", + ) + + scopes = ["account_info.read", "files.metadata.read"] + scope_authorization_url = flow_obj._get_authorize_url(None, None, "offline", scopes, "user") + assert scope_authorization_url.startswith( + "https://{}/oauth2/authorize?".format(session.WEB_HOST) + ) + assert "client_id={}".format(APP_KEY) in scope_authorization_url + assert "response_type=code" in scope_authorization_url + assert "token_access_type=offline" in scope_authorization_url + assert "scope=account_info.read+files.metadata.read" in scope_authorization_url + assert "include_granted_scopes=user" in scope_authorization_url def test_authorization_url_with_scopes(self): - flow_obj = DropboxOAuth2Flow(APP_KEY, APP_SECRET, 'http://localhost/dummy', - 'dummy_session', 'dbx-auth-csrf-token') - - scopes = ['account_info.read', 'files.metadata.read'] - scope_authorization_url = flow_obj._get_authorize_url(None, None, 'offline', scopes) - assert scope_authorization_url.startswith('https://{}/oauth2/authorize?' - .format(session.WEB_HOST)) - assert 'client_id={}'.format(APP_KEY) in scope_authorization_url - assert 'response_type=code' in scope_authorization_url - assert 'token_access_type=offline' in scope_authorization_url - assert 'scope=account_info.read+files.metadata.read' in scope_authorization_url - assert 'include_granted_scopes' not in scope_authorization_url + flow_obj = DropboxOAuth2Flow( + APP_KEY, + APP_SECRET, + "http://localhost/dummy", + "dummy_session", + "dbx-auth-csrf-token", + ) + + scopes = ["account_info.read", "files.metadata.read"] + scope_authorization_url = flow_obj._get_authorize_url(None, None, "offline", scopes) + assert scope_authorization_url.startswith( + "https://{}/oauth2/authorize?".format(session.WEB_HOST) + ) + assert "client_id={}".format(APP_KEY) in scope_authorization_url + assert "response_type=code" in scope_authorization_url + assert "token_access_type=offline" in scope_authorization_url + assert "scope=account_info.read+files.metadata.read" in scope_authorization_url + assert "include_granted_scopes" not in scope_authorization_url def test_OAuth2FlowNoRedirectResult_legacy(self): # Test legacy result - result_obj = OAuth2FlowNoRedirectResult(ACCESS_TOKEN, ACCOUNT_ID, USER_ID, None, None, - SCOPE_LIST) + result_obj = OAuth2FlowNoRedirectResult( + ACCESS_TOKEN, ACCOUNT_ID, USER_ID, None, None, SCOPE_LIST + ) assert result_obj.access_token == ACCESS_TOKEN assert not result_obj.refresh_token assert not result_obj.expires_at def test_OAuth2FlowNoRedirectResult_offline(self): # Test offline result - result_obj = OAuth2FlowNoRedirectResult(ACCESS_TOKEN, ACCOUNT_ID, USER_ID, - REFRESH_TOKEN, EXPIRES_IN, SCOPE_LIST) + result_obj = OAuth2FlowNoRedirectResult( + ACCESS_TOKEN, ACCOUNT_ID, USER_ID, REFRESH_TOKEN, EXPIRES_IN, SCOPE_LIST + ) assert result_obj.access_token == ACCESS_TOKEN assert result_obj.refresh_token == REFRESH_TOKEN assert abs(result_obj.expires_at - EXPIRATION) < EXPIRATION_BUFFER @@ -184,39 +240,46 @@ def test_OAuth2FlowNoRedirectResult_offline(self): def test_OAuth2FlowNoRedirectResult_online(self): # Test online result - result_obj = OAuth2FlowNoRedirectResult(ACCESS_TOKEN, ACCOUNT_ID, USER_ID, None, EXPIRES_IN, - SCOPE_LIST) + result_obj = OAuth2FlowNoRedirectResult( + ACCESS_TOKEN, ACCOUNT_ID, USER_ID, None, EXPIRES_IN, SCOPE_LIST + ) assert result_obj.access_token == ACCESS_TOKEN assert not result_obj.refresh_token assert abs(result_obj.expires_at - EXPIRATION) < EXPIRATION_BUFFER def test_OAuth2FlowNoRedirectResult_copy(self): # Test constructor for copying object - result_obj = OAuth2FlowNoRedirectResult(ACCESS_TOKEN, ACCOUNT_ID, USER_ID, - REFRESH_TOKEN, EXPIRATION, SCOPE_LIST) + result_obj = OAuth2FlowNoRedirectResult( + ACCESS_TOKEN, ACCOUNT_ID, USER_ID, REFRESH_TOKEN, EXPIRATION, SCOPE_LIST + ) assert result_obj.expires_at == EXPIRATION - @pytest.fixture(scope='function') + @pytest.fixture(scope="function") def auth_flow_offline_with_scopes(self, mocker): - auth_flow = DropboxOAuth2FlowNoRedirect(APP_KEY, APP_SECRET, token_access_type='offline', - scope=SCOPE_LIST) + auth_flow = DropboxOAuth2FlowNoRedirect( + APP_KEY, APP_SECRET, token_access_type="offline", scope=SCOPE_LIST + ) session = mock.MagicMock() post_response = mock.MagicMock(status_code=200) - post_response.json.return_value = {"access_token": ACCESS_TOKEN, "refresh_token": - REFRESH_TOKEN, "expires_in": EXPIRES_IN, "uid": USER_ID, "account_id": ACCOUNT_ID, - "scope": " ".join(SCOPE_LIST)} - mocker.patch.object(session, 'post', return_value=post_response) + post_response.json.return_value = { + "access_token": ACCESS_TOKEN, + "refresh_token": REFRESH_TOKEN, + "expires_in": EXPIRES_IN, + "uid": USER_ID, + "account_id": ACCOUNT_ID, + "scope": " ".join(SCOPE_LIST), + } + mocker.patch.object(session, "post", return_value=post_response) auth_flow.requests_session = session return auth_flow def test_NoRedirect_whole_flow(self, auth_flow_offline_with_scopes): authorization_url = auth_flow_offline_with_scopes.start() - assert authorization_url.startswith('https://{}/oauth2/authorize?' - .format(session.WEB_HOST)) - assert 'client_id={}'.format(APP_KEY) in authorization_url - assert 'response_type=code' in authorization_url - mycode = 'test oauth code' + assert authorization_url.startswith("https://{}/oauth2/authorize?".format(session.WEB_HOST)) + assert "client_id={}".format(APP_KEY) in authorization_url + assert "response_type=code" in authorization_url + mycode = "test oauth code" auth_result = auth_flow_offline_with_scopes.finish(mycode) assert auth_result.access_token == ACCESS_TOKEN assert auth_result.refresh_token == REFRESH_TOKEN @@ -229,68 +292,76 @@ def test_NoRedirect_whole_flow(self, auth_flow_offline_with_scopes): token_call_args = auth_flow_offline_with_scopes.requests_session.post.call_args_list assert len(token_call_args) == 1 first_call_args = token_call_args[0] - assert first_call_args[0][0] == 'https://{}/oauth2/token'.format(session.API_HOST) - call_data = first_call_args[1]['data'] - assert call_data['client_id'] == APP_KEY - assert call_data['grant_type'] == 'authorization_code' - assert call_data['client_secret'] == APP_SECRET - assert call_data['code'] == mycode + assert first_call_args[0][0] == "https://{}/oauth2/token".format(session.API_HOST) + call_data = first_call_args[1]["data"] + assert call_data["client_id"] == APP_KEY + assert call_data["grant_type"] == "authorization_code" + assert call_data["client_secret"] == APP_SECRET + assert call_data["code"] == mycode -class TestClient: - @pytest.fixture(scope='function') +class TestClient: + @pytest.fixture(scope="function") def session_instance(self, mocker): session_obj = create_session() post_response = mock.MagicMock(status_code=200) - post_response.json.return_value = {"access_token": ACCESS_TOKEN, "expires_in": EXPIRES_IN} - mocker.patch.object(session_obj, 'post', return_value=post_response) + post_response.json.return_value = { + "access_token": ACCESS_TOKEN, + "expires_in": EXPIRES_IN, + } + mocker.patch.object(session_obj, "post", return_value=post_response) return session_obj - @pytest.fixture(scope='function') + @pytest.fixture(scope="function") def session_instance_with_ca_certs(self, mocker): session_obj = create_session(ca_certs=CA_CERTS) post_response = mock.MagicMock(status_code=200) - post_response.json.return_value = {"access_token": ACCESS_TOKEN, "expires_in": EXPIRES_IN} - mocker.patch.object(session_obj, 'post', return_value=post_response) + post_response.json.return_value = { + "access_token": ACCESS_TOKEN, + "expires_in": EXPIRES_IN, + } + mocker.patch.object(session_obj, "post", return_value=post_response) return session_obj - @pytest.fixture(scope='function') + @pytest.fixture(scope="function") def invalid_grant_session_instance(self, mocker): session_obj = create_session() post_response = mock.MagicMock(status_code=400) post_response.json.return_value = {"error": "invalid_grant"} - mocker.patch.object(session_obj, 'post', return_value=post_response) + mocker.patch.object(session_obj, "post", return_value=post_response) return session_obj - @pytest.fixture(scope='function') + @pytest.fixture(scope="function") def bad_request_no_error_key_session_instance(self, mocker): # A 400 response whose JSON body does not contain an "error" key. session_obj = create_session() post_response = mock.MagicMock(status_code=400) post_response.json.return_value = {"error_description": "some other problem"} post_response.text = '{"error_description": "some other problem"}' - mocker.patch.object(session_obj, 'post', return_value=post_response) + mocker.patch.object(session_obj, "post", return_value=post_response) return session_obj - @pytest.fixture(scope='function') + @pytest.fixture(scope="function") def server_error_then_ok_session_instance(self, mocker): # First refresh POST returns 500, second returns 200 with a valid token. session_obj = create_session() error_response = mock.MagicMock(status_code=500) - error_response.text = 'internal server error' + error_response.text = "internal server error" ok_response = mock.MagicMock(status_code=200) - ok_response.json.return_value = {"access_token": ACCESS_TOKEN, "expires_in": EXPIRES_IN} - mocker.patch.object(session_obj, 'post', - side_effect=[error_response, ok_response]) + ok_response.json.return_value = { + "access_token": ACCESS_TOKEN, + "expires_in": EXPIRES_IN, + } + mocker.patch.object(session_obj, "post", side_effect=[error_response, ok_response]) return session_obj - @pytest.fixture(scope='function') + @pytest.fixture(scope="function") def server_error_session_instance(self, mocker): # Every refresh POST returns 500. session_obj = create_session() error_response = mock.MagicMock(status_code=500) - error_response.text = 'internal server error' - mocker.patch.object(session_obj, 'post', return_value=error_response) + error_response.text = "internal server error" + mocker.patch.object(session_obj, "post", return_value=error_response) return session_obj def test_default_Dropbox_raises_assertion_error(self): @@ -308,39 +379,50 @@ def test_Dropbox_with_legacy_token(self, session_instance): def test_Dropbox_with_valid_online_token(self, session_instance): # Test Online Case w/ valid access - Dropbox(oauth2_access_token=ACCESS_TOKEN, oauth2_access_token_expiration=EXPIRATION, - session=session_instance) + Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_access_token_expiration=EXPIRATION, + session=session_instance, + ) def test_Dropbox_with_expired_online_token(self, session_instance): # Test Online Case w/ invalid access - Dropbox(oauth2_access_token=ACCESS_TOKEN, - oauth2_access_token_expiration=EXPIRATION - timedelta(weeks=1), - session=session_instance) + Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_access_token_expiration=EXPIRATION - timedelta(weeks=1), + session=session_instance, + ) def test_Dropbox_with_valid_offline_token(self, session_instance): # Test Offline Case w/ valid access - Dropbox(oauth2_access_token=ACCESS_TOKEN, - oauth2_refresh_token=REFRESH_TOKEN, - oauth2_access_token_expiration=EXPIRATION, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance) + Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_refresh_token=REFRESH_TOKEN, + oauth2_access_token_expiration=EXPIRATION, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + ) def test_Dropbox_with_expired_offline_token(self, session_instance): # Test Offline Case w/ invalid access - Dropbox(oauth2_access_token=ACCESS_TOKEN, - oauth2_refresh_token=REFRESH_TOKEN, - oauth2_access_token_expiration=EXPIRATION - timedelta(weeks=1), - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance) + Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_refresh_token=REFRESH_TOKEN, + oauth2_access_token_expiration=EXPIRATION - timedelta(weeks=1), + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + ) def test_Dropbox_with_only_refresh(self, session_instance): # Test Offline Case w/ only refresh - Dropbox(oauth2_refresh_token=REFRESH_TOKEN, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance) + Dropbox( + oauth2_refresh_token=REFRESH_TOKEN, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + ) def test_Dropbox_with_only_app_key_and_secret(self, session_instance): Dropbox(app_key=APP_KEY, app_secret=APP_SECRET) @@ -352,146 +434,179 @@ def test_check_refresh_with_legacy_token(self, session_instance): def test_check_refresh_with_valid_online_token(self, session_instance): # Test Online Case w/ valid access - dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN, oauth2_access_token_expiration=EXPIRATION, - session=session_instance) + dbx = Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_access_token_expiration=EXPIRATION, + session=session_instance, + ) dbx.check_and_refresh_access_token() session_instance.post.assert_not_called() def test_check_refresh_with_expired_online_token(self, session_instance): # Test Online Case w/ invalid access - dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN, - oauth2_access_token_expiration=EXPIRATION - timedelta(weeks=1), - session=session_instance) + dbx = Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_access_token_expiration=EXPIRATION - timedelta(weeks=1), + session=session_instance, + ) dbx.check_and_refresh_access_token() session_instance.post.assert_not_called() def test_check_refresh_with_valid_offline_token(self, session_instance): # Test Offline Case w/ valid access - dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN, - oauth2_refresh_token=REFRESH_TOKEN, - oauth2_access_token_expiration=EXPIRATION, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance) + dbx = Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_refresh_token=REFRESH_TOKEN, + oauth2_access_token_expiration=EXPIRATION, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + ) dbx.check_and_refresh_access_token() session_instance.post.assert_not_called() def test_check_refresh_with_expired_offline_token(self, session_instance): # Test Offline Case w/ invalid access - dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN, - oauth2_refresh_token=REFRESH_TOKEN, - oauth2_access_token_expiration=EXPIRATION - timedelta(weeks=1), - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance) + dbx = Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_refresh_token=REFRESH_TOKEN, + oauth2_access_token_expiration=EXPIRATION - timedelta(weeks=1), + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + ) dbx.check_and_refresh_access_token() assert session_instance.post.call_count == 1 def test_check_refresh_with_only_refresh(self, session_instance): # Test Offline Case w/ only refresh - dbx = Dropbox(oauth2_refresh_token=REFRESH_TOKEN, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance) + dbx = Dropbox( + oauth2_refresh_token=REFRESH_TOKEN, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + ) dbx.check_and_refresh_access_token() assert session_instance.post.call_count == 1 def test_refresh_token_with_no_expiration(self, session_instance): # Test refresh token is refreshed when not given expiration - dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN, - oauth2_refresh_token=REFRESH_TOKEN, - oauth2_access_token_expiration=None, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance) + dbx = Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_refresh_token=REFRESH_TOKEN, + oauth2_access_token_expiration=None, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + ) dbx.check_and_refresh_access_token() assert session_instance.post.call_count == 1 assert dbx._oauth2_access_token_expiration def test_check_refresh_with_invalid_grant(self, invalid_grant_session_instance): - dbx = Dropbox(oauth2_refresh_token=REFRESH_TOKEN, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=invalid_grant_session_instance) + dbx = Dropbox( + oauth2_refresh_token=REFRESH_TOKEN, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=invalid_grant_session_instance, + ) with pytest.raises(AuthError) as e: dbx.check_and_refresh_access_token() assert invalid_grant_session_instance.post.call_count == 1 assert e.error.is_invalid_access_token() def test_check_Dropbox_with_ca_certs(self, session_instance_with_ca_certs): - Dropbox(oauth2_access_token=ACCESS_TOKEN, oauth2_access_token_expiration=EXPIRATION, - session=session_instance_with_ca_certs) + Dropbox( + oauth2_access_token=ACCESS_TOKEN, + oauth2_access_token_expiration=EXPIRATION, + session=session_instance_with_ca_certs, + ) def test_team_client_refresh(self, session_instance): - dbx = DropboxTeam(oauth2_refresh_token=REFRESH_TOKEN, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance) + dbx = DropboxTeam( + oauth2_refresh_token=REFRESH_TOKEN, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + ) dbx.check_and_refresh_access_token() assert session_instance.post.call_count == 1 def test_team_client_as_admin(self, session_instance): - dbx = DropboxTeam(oauth2_refresh_token=REFRESH_TOKEN, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance, - auto_content_hash=False) + dbx = DropboxTeam( + oauth2_refresh_token=REFRESH_TOKEN, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + auto_content_hash=False, + ) assert dbx.as_admin(ADMIN_ID)._auto_content_hash is False def test_team_client_as_user(self, session_instance): - dbx = DropboxTeam(oauth2_refresh_token=REFRESH_TOKEN, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=session_instance, - auto_content_hash=False) + dbx = DropboxTeam( + oauth2_refresh_token=REFRESH_TOKEN, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=session_instance, + auto_content_hash=False, + ) assert dbx.as_user(TEAM_MEMBER_ID)._auto_content_hash is False def test_non_list_scope_raises_bad_input(self, session_instance): # A non-list scope with no len() must raise BadInputException, not # TypeError from calling len() before the isinstance check. with pytest.raises(BadInputException): - Dropbox(oauth2_access_token=ACCESS_TOKEN, - scope=12345, - session=session_instance) + Dropbox(oauth2_access_token=ACCESS_TOKEN, scope=12345, session=session_instance) def test_clone_does_not_double_user_agent(self, session_instance): - dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN, session=session_instance, - user_agent='myapp') + dbx = Dropbox( + oauth2_access_token=ACCESS_TOKEN, + session=session_instance, + user_agent="myapp", + ) cloned = dbx.clone() # The base suffix must appear exactly once after cloning. - assert cloned._user_agent.count('OfficialDropboxPythonSDKv2/') == 1 + assert cloned._user_agent.count("OfficialDropboxPythonSDKv2/") == 1 assert cloned._user_agent == dbx._user_agent def test_clone_preserves_and_can_override_auto_content_hash(self, session_instance): - dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN, - session=session_instance, - auto_content_hash=False) + dbx = Dropbox( + oauth2_access_token=ACCESS_TOKEN, + session=session_instance, + auto_content_hash=False, + ) assert dbx.clone()._auto_content_hash is False assert dbx.clone(auto_content_hash=True)._auto_content_hash is True def test_with_path_root_preserves_auto_content_hash(self, session_instance): - dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN, - session=session_instance, - auto_content_hash=False) + dbx = Dropbox( + oauth2_access_token=ACCESS_TOKEN, + session=session_instance, + auto_content_hash=False, + ) cloned = dbx.with_path_root(PathRoot.home) assert cloned._auto_content_hash is False def test_refresh_400_without_error_key(self, bad_request_no_error_key_session_instance): # A 400 body lacking the "error" key must raise BadInputError, not KeyError. - dbx = Dropbox(oauth2_refresh_token=REFRESH_TOKEN, - app_key=APP_KEY, - app_secret=APP_SECRET, - session=bad_request_no_error_key_session_instance) + dbx = Dropbox( + oauth2_refresh_token=REFRESH_TOKEN, + app_key=APP_KEY, + app_secret=APP_SECRET, + session=bad_request_no_error_key_session_instance, + ) with pytest.raises(BadInputError): dbx.check_and_refresh_access_token() def test_refresh_retries_on_server_error(self, server_error_then_ok_session_instance): # A 5xx on the refresh POST must be retried, then succeed. - dbx = Dropbox(oauth2_refresh_token=REFRESH_TOKEN, - app_key=APP_KEY, - app_secret=APP_SECRET, - max_retries_on_error=2, - session=server_error_then_ok_session_instance) + dbx = Dropbox( + oauth2_refresh_token=REFRESH_TOKEN, + app_key=APP_KEY, + app_secret=APP_SECRET, + max_retries_on_error=2, + session=server_error_then_ok_session_instance, + ) dbx.check_and_refresh_access_token() assert server_error_then_ok_session_instance.post.call_count == 2 assert dbx._oauth2_access_token == ACCESS_TOKEN @@ -499,11 +614,14 @@ def test_refresh_retries_on_server_error(self, server_error_then_ok_session_inst def test_refresh_raises_after_exhausting_retries(self, server_error_session_instance): # Once retries are exhausted, the 5xx propagates as InternalServerError. from dropbox.exceptions import InternalServerError - dbx = Dropbox(oauth2_refresh_token=REFRESH_TOKEN, - app_key=APP_KEY, - app_secret=APP_SECRET, - max_retries_on_error=2, - session=server_error_session_instance) + + dbx = Dropbox( + oauth2_refresh_token=REFRESH_TOKEN, + app_key=APP_KEY, + app_secret=APP_SECRET, + max_retries_on_error=2, + session=server_error_session_instance, + ) with pytest.raises(InternalServerError): dbx.check_and_refresh_access_token() # Initial attempt + 2 retries. @@ -511,53 +629,52 @@ def test_refresh_raises_after_exhausting_retries(self, server_error_session_inst class TestAutoContentHash: - def _fake_file_metadata(self, size, file_content_hash): - return json.dumps({ - 'name': 'a.txt', - 'id': 'id:1', - 'client_modified': '2020-01-01T00:00:00Z', - 'server_modified': '2020-01-01T00:00:00Z', - 'rev': '0123456789', - 'size': size, - 'path_lower': '/a.txt', - 'path_display': '/a.txt', - 'content_hash': file_content_hash, - }) + return json.dumps( + { + "name": "a.txt", + "id": "id:1", + "client_modified": "2020-01-01T00:00:00Z", + "server_modified": "2020-01-01T00:00:00Z", + "rev": "0123456789", + "size": size, + "path_lower": "/a.txt", + "path_display": "/a.txt", + "content_hash": file_content_hash, + } + ) def _capture_upload(self, dbx, data, **upload_kwargs): # Stub out the network layer and capture the serialized argument sent. captured = {} - def fake_request(host, name, style, serialized_arg, auth, binary, - timeout=None): - captured['arg'] = json.loads(serialized_arg) - return RouteResult(self._fake_file_metadata( - len(data), content_hash(data))) + def fake_request(host, name, style, serialized_arg, auth, binary, timeout=None): + captured["arg"] = json.loads(serialized_arg) + return RouteResult(self._fake_file_metadata(len(data), content_hash(data))) dbx.request_json_string_with_retry = fake_request dbx.check_and_refresh_access_token = lambda: None - dbx.files_upload(data, '/a.txt', **upload_kwargs) - return captured['arg'] + dbx.files_upload(data, "/a.txt", **upload_kwargs) + return captured["arg"] def test_upload_adds_content_hash_by_default(self): - data = b'hello world' + data = b"hello world" dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN) arg = self._capture_upload(dbx, data) - assert arg['content_hash'] == content_hash(data) + assert arg["content_hash"] == content_hash(data) def test_upload_no_content_hash_when_disabled(self): - data = b'hello world' + data = b"hello world" dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN, auto_content_hash=False) arg = self._capture_upload(dbx, data) - assert 'content_hash' not in arg + assert "content_hash" not in arg def test_upload_respects_caller_content_hash(self): - data = b'hello world' - caller_hash = 'f' * 64 + data = b"hello world" + caller_hash = "f" * 64 dbx = Dropbox(oauth2_access_token=ACCESS_TOKEN) arg = self._capture_upload(dbx, data, content_hash=caller_hash) - assert arg['content_hash'] == caller_hash + assert arg["content_hash"] == caller_hash class TestSession: diff --git a/tox.ini b/tox.ini index a853105e..b8ee0d7d 100644 --- a/tox.ini +++ b/tox.ini @@ -3,16 +3,6 @@ envlist = py{311,312,313,py3},check,lint,docs,test_unit,coverage skip_missing_interpreters = true -[flake8] - -# See -ignore = E128,E301,E302,E305,E402,W503,W504 -max-line-length = 100 -per-file-ignores = - dropbox/stone_base.py: F401, F403 - dropbox/stone_validators.py: F401, F403 - dropbox/stone_serializers.py: F401, F403 - [testenv:test_integration] @@ -47,11 +37,12 @@ usedevelop = true [testenv:lint] -description = format the code base to adhere to our styles, and complain about what we cannot do automatically +description = check code with Ruff commands = - flake8 dropbox example test + ruff check dropbox example test + ruff format --check dropbox example test deps = - flake8 + ruff -rtest/requirements.txt usedevelop = true From acbea4dcfe3ebe64ebd6bdbf1b5098f83ded9444 Mon Sep 17 00:00:00 2001 From: Andrey Markelov Date: Mon, 20 Jul 2026 00:39:50 -0700 Subject: [PATCH 3/3] reformat with ruff --- generate_base_client.py | 4 +--- pyproject.toml | 5 ++++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/generate_base_client.py b/generate_base_client.py index b3ae1340..4348b6eb 100755 --- a/generate_base_client.py +++ b/generate_base_client.py @@ -41,9 +41,7 @@ def main(): specs = [os.path.join(os.getcwd(), s) for s in specs] - dropbox_pkg_path = os.path.abspath( - os.path.join(os.path.dirname(sys.argv[0]), "dropbox") - ) + dropbox_pkg_path = os.path.abspath(os.path.join(os.path.dirname(sys.argv[0]), "dropbox")) if verbose: print("Dropbox package path: %s" % dropbox_pkg_path) diff --git a/pyproject.toml b/pyproject.toml index 40a6839c..42a3c648 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,4 +69,7 @@ ignore = [ [tool.ruff.format] quote-style = "double" -line-ending = "auto" \ No newline at end of file +line-ending = "auto" +exclude = [ + "dropbox/", +]