diff --git a/docs/conf.py b/docs/conf.py index cf1ce368..2dd8423f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # # Dropbox for Python documentation build configuration file, created by # sphinx-quickstart on Fri Oct 24 13:42:45 2014. @@ -54,8 +53,8 @@ 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 diff --git a/dropbox/__init__.py b/dropbox/__init__.py index 13686aec..fb7a590d 100644 --- a/dropbox/__init__.py +++ b/dropbox/__init__.py @@ -1,5 +1,3 @@ -from __future__ import absolute_import - from dropbox.dropbox_client import ( # noqa: F401 # pylint: disable=unused-import __version__, Dropbox, DropboxTeam, create_session ) diff --git a/dropbox/account.py b/dropbox/account.py index 8a30b5d7..ed0b364d 100644 --- a/dropbox/account.py +++ b/dropbox/account.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -61,7 +59,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PhotoSourceArg_validator = bv.Union(PhotoSourceArg) @@ -87,7 +85,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SetProfilePhotoArg_validator = bv.Struct(SetProfilePhotoArg) @@ -172,7 +170,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SetProfilePhotoError_validator = bv.Union(SetProfilePhotoError) @@ -198,7 +196,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SetProfilePhotoResult_validator = bv.Struct(SetProfilePhotoResult) @@ -212,7 +210,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PhotoSourceArg.other = PhotoSourceArg('other') SetProfilePhotoArg.photo.validator = PhotoSourceArg_validator -SetProfilePhotoArg._all_field_names_ = set(['photo']) +SetProfilePhotoArg._all_field_names_ = {'photo'} SetProfilePhotoArg._all_fields_ = [('photo', SetProfilePhotoArg.photo.validator)] SetProfilePhotoError._file_type_error_validator = bv.Void() @@ -238,7 +236,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SetProfilePhotoError.other = SetProfilePhotoError('other') SetProfilePhotoResult.profile_photo_url.validator = bv.String() -SetProfilePhotoResult._all_field_names_ = set(['profile_photo_url']) +SetProfilePhotoResult._all_field_names_ = {'profile_photo_url'} SetProfilePhotoResult._all_fields_ = [('profile_photo_url', SetProfilePhotoResult.profile_photo_url.validator)] set_profile_photo = bb.Route( diff --git a/dropbox/async.py b/dropbox/async.py index 6e820731..53436613 100644 --- a/dropbox/async.py +++ b/dropbox/async.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa diff --git a/dropbox/async_.py b/dropbox/async_.py index bc239e0a..a6df15a1 100644 --- a/dropbox/async_.py +++ b/dropbox/async_.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -59,7 +57,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LaunchResultBase_validator = bv.Union(LaunchResultBase) @@ -89,7 +87,7 @@ def is_complete(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LaunchEmptyResult_validator = bv.Union(LaunchEmptyResult) @@ -117,7 +115,7 @@ def __init__(self, async_job_id = bb.Attribute("async_job_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PollArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) PollArg_validator = bv.Struct(PollArg) @@ -149,7 +147,7 @@ def is_in_progress(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PollResultBase_validator = bv.Union(PollResultBase) @@ -178,7 +176,7 @@ def is_complete(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PollEmptyResult_validator = bv.Union(PollEmptyResult) @@ -229,7 +227,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) PollError_validator = bv.Union(PollError) @@ -248,7 +246,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LaunchEmptyResult.complete = LaunchEmptyResult('complete') PollArg.async_job_id.validator = AsyncJobId_validator -PollArg._all_field_names_ = set(['async_job_id']) +PollArg._all_field_names_ = {'async_job_id'} PollArg._all_fields_ = [('async_job_id', PollArg.async_job_id.validator)] PollResultBase._in_progress_validator = bv.Void() diff --git a/dropbox/auth.py b/dropbox/auth.py index d69cf178..18c88e13 100644 --- a/dropbox/auth.py +++ b/dropbox/auth.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -97,7 +95,7 @@ def get_paper_access_denied(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AccessError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) AccessError_validator = bv.Union(AccessError) @@ -226,7 +224,7 @@ def get_missing_scope(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AuthError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) AuthError_validator = bv.Union(AuthError) @@ -275,7 +273,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) InvalidAccountTypeError_validator = bv.Union(InvalidAccountTypeError) @@ -323,7 +321,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperAccessError_validator = bv.Union(PaperAccessError) @@ -361,7 +359,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RateLimitError_validator = bv.Struct(RateLimitError) @@ -410,7 +408,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RateLimitReason_validator = bv.Union(RateLimitReason) @@ -446,7 +444,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TokenFromOAuth1Arg_validator = bv.Struct(TokenFromOAuth1Arg) @@ -495,7 +493,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TokenFromOAuth1Error_validator = bv.Union(TokenFromOAuth1Error) @@ -521,7 +519,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TokenFromOAuth1Result_validator = bv.Struct(TokenFromOAuth1Result) @@ -547,7 +545,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TokenScopeError_validator = bv.Struct(TokenScopeError) @@ -617,10 +615,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RateLimitError.reason.validator = RateLimitReason_validator RateLimitError.retry_after.validator = bv.UInt64() -RateLimitError._all_field_names_ = set([ +RateLimitError._all_field_names_ = { 'reason', 'retry_after', -]) +} RateLimitError._all_fields_ = [ ('reason', RateLimitError.reason.validator), ('retry_after', RateLimitError.retry_after.validator), @@ -641,10 +639,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TokenFromOAuth1Arg.oauth1_token.validator = bv.String(min_length=1) TokenFromOAuth1Arg.oauth1_token_secret.validator = bv.String(min_length=1) -TokenFromOAuth1Arg._all_field_names_ = set([ +TokenFromOAuth1Arg._all_field_names_ = { 'oauth1_token', 'oauth1_token_secret', -]) +} TokenFromOAuth1Arg._all_fields_ = [ ('oauth1_token', TokenFromOAuth1Arg.oauth1_token.validator), ('oauth1_token_secret', TokenFromOAuth1Arg.oauth1_token_secret.validator), @@ -664,11 +662,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TokenFromOAuth1Error.other = TokenFromOAuth1Error('other') TokenFromOAuth1Result.oauth2_token.validator = bv.String(min_length=1) -TokenFromOAuth1Result._all_field_names_ = set(['oauth2_token']) +TokenFromOAuth1Result._all_field_names_ = {'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_field_names_ = {'required_scope'} TokenScopeError._all_fields_ = [('required_scope', TokenScopeError.required_scope.validator)] RateLimitError.retry_after.default = 1 diff --git a/dropbox/base.py b/dropbox/base.py index 8b27e80a..701d4957 100644 --- a/dropbox/base.py +++ b/dropbox/base.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # flake8: noqa # pylint: skip-file @@ -28,7 +27,7 @@ from dropbox import users_common -class DropboxBase(object): +class DropboxBase: __metaclass__ = ABCMeta @abstractmethod diff --git a/dropbox/base_team.py b/dropbox/base_team.py index ff04def4..956cce2f 100644 --- a/dropbox/base_team.py +++ b/dropbox/base_team.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # flake8: noqa # pylint: skip-file @@ -28,7 +27,7 @@ from dropbox import users_common -class DropboxTeamBase(object): +class DropboxTeamBase: __metaclass__ = ABCMeta @abstractmethod diff --git a/dropbox/check.py b/dropbox/check.py index b960e449..8b0eb903 100644 --- a/dropbox/check.py +++ b/dropbox/check.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -31,7 +29,7 @@ def __init__(self, query = bb.Attribute("query") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EchoArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) EchoArg_validator = bv.Struct(EchoArg) @@ -59,16 +57,16 @@ def __init__(self, result = bb.Attribute("result") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EchoResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._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_field_names_ = {'query'} EchoArg._all_fields_ = [('query', EchoArg.query.validator)] EchoResult.result.validator = bv.String() -EchoResult._all_field_names_ = set(['result']) +EchoResult._all_field_names_ = {'result'} EchoResult._all_fields_ = [('result', EchoResult.result.validator)] EchoArg.query.default = '' diff --git a/dropbox/common.py b/dropbox/common.py index 41dbd474..fc4c974f 100644 --- a/dropbox/common.py +++ b/dropbox/common.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -113,7 +111,7 @@ def get_namespace_id(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PathRoot, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) PathRoot_validator = bv.Union(PathRoot) @@ -185,7 +183,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PathRootError_validator = bv.Union(PathRootError) @@ -225,7 +223,7 @@ def __init__(self, home_namespace_id = bb.Attribute("home_namespace_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RootInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) RootInfo_validator = bv.StructTree(RootInfo) @@ -247,7 +245,7 @@ def __init__(self, root_namespace_id=None, home_namespace_id=None, home_path=None): - super(TeamRootInfo, self).__init__(root_namespace_id, + super().__init__(root_namespace_id, home_namespace_id) self._home_path_value = bb.NOT_SET if home_path is not None: @@ -257,7 +255,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamRootInfo_validator = bv.Struct(TeamRootInfo) @@ -275,11 +273,11 @@ class UserRootInfo(RootInfo): def __init__(self, root_namespace_id=None, home_namespace_id=None): - super(UserRootInfo, self).__init__(root_namespace_id, + super().__init__(root_namespace_id, home_namespace_id) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserRootInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) UserRootInfo_validator = bv.Struct(UserRootInfo) @@ -323,10 +321,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RootInfo.root_namespace_id.validator = NamespaceId_validator RootInfo.home_namespace_id.validator = NamespaceId_validator -RootInfo._field_names_ = set([ +RootInfo._field_names_ = { 'root_namespace_id', 'home_namespace_id', -]) +} RootInfo._all_field_names_ = RootInfo._field_names_ RootInfo._fields_ = [ ('root_namespace_id', RootInfo.root_namespace_id.validator), @@ -345,12 +343,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RootInfo._is_catch_all_ = True TeamRootInfo.home_path.validator = bv.String() -TeamRootInfo._field_names_ = set(['home_path']) +TeamRootInfo._field_names_ = {'home_path'} TeamRootInfo._all_field_names_ = RootInfo._all_field_names_.union(TeamRootInfo._field_names_) TeamRootInfo._fields_ = [('home_path', TeamRootInfo.home_path.validator)] TeamRootInfo._all_fields_ = RootInfo._all_fields_ + TeamRootInfo._fields_ -UserRootInfo._field_names_ = set([]) +UserRootInfo._field_names_ = set() UserRootInfo._all_field_names_ = RootInfo._all_field_names_.union(UserRootInfo._field_names_) UserRootInfo._fields_ = [] UserRootInfo._all_fields_ = RootInfo._all_fields_ + UserRootInfo._fields_ diff --git a/dropbox/contacts.py b/dropbox/contacts.py index 2654e3ab..2bf8cc92 100644 --- a/dropbox/contacts.py +++ b/dropbox/contacts.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -31,7 +29,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteManualContactsArg_validator = bv.Struct(DeleteManualContactsArg) @@ -91,12 +89,12 @@ 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()._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_field_names_ = {'email_addresses'} DeleteManualContactsArg._all_fields_ = [('email_addresses', DeleteManualContactsArg.email_addresses.validator)] DeleteManualContactsError._contacts_not_found_validator = bv.List(common.EmailAddress_validator) diff --git a/dropbox/dropbox_client.py b/dropbox/dropbox_client.py index 3ddf8243..a7823540 100644 --- a/dropbox/dropbox_client.py +++ b/dropbox/dropbox_client.py @@ -16,7 +16,6 @@ import time import requests -import six from datetime import datetime, timedelta from dropbox.auth import ( @@ -65,7 +64,7 @@ APP_AUTH = 'app' NO_AUTH = 'noauth' -class RouteResult(object): +class RouteResult: """The successful result of a call to a route.""" def __init__(self, obj_result, http_resp=None): @@ -75,7 +74,7 @@ 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, six.string_types), \ + 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), \ @@ -84,7 +83,7 @@ def __init__(self, obj_result, http_resp=None): self.obj_result = obj_result self.http_resp = http_resp -class RouteErrorResult(object): +class RouteErrorResult: """The error result of a call to a route.""" def __init__(self, request_id, obj_result): @@ -117,7 +116,7 @@ def create_session(max_connections=8, proxies=None, ca_certs=None): session.proxies = proxies return session -class _DropboxTransport(object): +class _DropboxTransport: """ Responsible for implementing the wire protocol for making requests to the Dropbox API. @@ -191,7 +190,7 @@ def __init__(self, ) if headers is not None and not isinstance(headers, dict): - raise BadInputException('Expected dict, got {}'.format(headers)) + raise BadInputException(f'Expected dict, got {headers}') if oauth2_refresh_token and not app_key: raise BadInputException("app_key is required to refresh tokens") @@ -221,7 +220,7 @@ def __init__(self, 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 = f'{user_agent}/{base_user_agent}' else: self._raw_user_agent = None self._user_agent = base_user_agent @@ -307,7 +306,7 @@ def request(self, auth_type = route.attrs['auth'] route_name = namespace + '/' + route.name if route.version > 1: - route_name += '_v{}'.format(route.version) + route_name += f'_v{route.version}' route_style = route.attrs['style'] or 'rpc' serialized_arg = stone_serializers.json_encode(route.arg_type, request_arg) @@ -388,7 +387,7 @@ def refresh_access_token(self, host=API_HOST, scope=None): return self._logger.info('Refreshing access token.') - url = "https://{}/oauth2/token".format(host) + url = f"https://{host}/oauth2/token" body = {'grant_type': 'refresh_token', 'refresh_token': self._oauth2_refresh_token, 'client_id': self._app_key, @@ -530,7 +529,7 @@ def request_json_string(self, if host not in self._host_map: raise ValueError('Unknown value for host: %r' % host) - if not isinstance(request_binary, (six.binary_type, type(None))): + 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 @@ -553,7 +552,7 @@ def request_json_string(self, raise BadInputException( '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") + f"{self._app_key}:{self._app_secret}".encode("utf-8") ) headers['Authorization'] = 'Basic {}'.format(auth_header.decode("utf-8")) if self._headers: @@ -561,7 +560,7 @@ def request_json_string(self, elif auth_type == NO_AUTH: pass else: - raise BadInputException('Unhandled auth type: {}'.format(auth_type)) + raise BadInputException(f'Unhandled auth type: {auth_type}') # The contents of the body of the HTTP request body = None diff --git a/dropbox/exceptions.py b/dropbox/exceptions.py index 12ac0458..8f719264 100644 --- a/dropbox/exceptions.py +++ b/dropbox/exceptions.py @@ -4,7 +4,7 @@ class DropboxException(Exception): def __init__(self, request_id, *args, **kwargs): # A request_id can be shared with Dropbox Support to pinpoint the exact # request that returns an error. - super(DropboxException, self).__init__(request_id, *args, **kwargs) + super().__init__(request_id, *args, **kwargs) self.request_id = request_id def __str__(self): @@ -24,20 +24,20 @@ def __init__(self, request_id, error, user_message_text, user_message_locale): :param (str) user_message_locale: The locale of ``user_message_text``, if present. """ - super(ApiError, self).__init__(request_id, error) + super().__init__(request_id, error) self.error = error self.user_message_text = user_message_text self.user_message_locale = user_message_locale def __repr__(self): - return 'ApiError({!r}, {})'.format(self.request_id, self.error) + return f'ApiError({self.request_id!r}, {self.error})' class HttpError(DropboxException): """Errors produced at the HTTP layer.""" def __init__(self, request_id, status_code, body): - super(HttpError, self).__init__(request_id, status_code, body) + super().__init__(request_id, status_code, body) self.status_code = status_code self.body = body @@ -50,40 +50,40 @@ class PathRootError(HttpError): """Error caused by an invalid path root.""" def __init__(self, request_id, error=None): - super(PathRootError, self).__init__(request_id, 422, None) + super().__init__(request_id, 422, None) self.error = error def __repr__(self): - return 'PathRootError({!r}, {!r})'.format(self.request_id, self.error) + return f'PathRootError({self.request_id!r}, {self.error!r})' class BadInputError(HttpError): """Errors due to bad input parameters to an API Operation.""" def __init__(self, request_id, message): - super(BadInputError, self).__init__(request_id, 400, message) + super().__init__(request_id, 400, message) self.message = message def __repr__(self): - return 'BadInputError({!r}, {!r})'.format(self.request_id, self.message) + return f'BadInputError({self.request_id!r}, {self.message!r})' class AuthError(HttpError): """Errors due to invalid authentication credentials.""" def __init__(self, request_id, error): - super(AuthError, self).__init__(request_id, 401, None) + super().__init__(request_id, 401, None) self.error = error def __repr__(self): - return 'AuthError({!r}, {!r})'.format(self.request_id, self.error) + return f'AuthError({self.request_id!r}, {self.error!r})' class RateLimitError(HttpError): """Error caused by rate limiting.""" def __init__(self, request_id, error=None, backoff=None): - super(RateLimitError, self).__init__(request_id, 429, None) + super().__init__(request_id, 429, None) self.error = error self.backoff = backoff diff --git a/dropbox/file_properties.py b/dropbox/file_properties.py index 6f2ab143..dd1b392f 100644 --- a/dropbox/file_properties.py +++ b/dropbox/file_properties.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa @@ -23,7 +22,6 @@ Finally, properties can be accessed from a number of endpoints that return metadata, including `files/get_metadata`, and `files/list_folder`. Properties can also be added during upload, using `files/upload`. """ -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -60,7 +58,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddPropertiesArg_validator = bv.Struct(AddPropertiesArg) @@ -130,7 +128,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TemplateError_validator = bv.Union(TemplateError) @@ -185,7 +183,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertiesError_validator = bv.Union(PropertiesError) @@ -237,7 +235,7 @@ def is_duplicate_property_groups(self): 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()._process_custom_annotations(annotation_type, field_path, processor) InvalidPropertyGroupError_validator = bv.Union(InvalidPropertyGroupError) @@ -263,7 +261,7 @@ def is_property_group_already_exists(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AddPropertiesError_validator = bv.Union(AddPropertiesError) @@ -312,7 +310,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertyGroupTemplate_validator = bv.Struct(PropertyGroupTemplate) @@ -327,12 +325,12 @@ def __init__(self, name=None, description=None, fields=None): - super(AddTemplateArg, self).__init__(name, + super().__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()._process_custom_annotations(annotation_type, field_path, processor) AddTemplateArg_validator = bv.Struct(AddTemplateArg) @@ -361,7 +359,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddTemplateResult_validator = bv.Struct(AddTemplateResult) @@ -390,7 +388,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTemplateArg_validator = bv.Struct(GetTemplateArg) @@ -405,12 +403,12 @@ def __init__(self, name=None, description=None, fields=None): - super(GetTemplateResult, self).__init__(name, + super().__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()._process_custom_annotations(annotation_type, field_path, processor) GetTemplateResult_validator = bv.Struct(GetTemplateResult) @@ -439,7 +437,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListTemplateResult_validator = bv.Struct(ListTemplateResult) @@ -478,7 +476,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LogicalOperator_validator = bv.Union(LogicalOperator) @@ -515,7 +513,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LookUpPropertiesError_validator = bv.Union(LookUpPropertiesError) @@ -618,7 +616,7 @@ def get_malformed_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LookupError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) LookupError_validator = bv.Union(LookupError) @@ -682,7 +680,7 @@ def is_template_attribute_too_large(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ModifyTemplateError_validator = bv.Union(ModifyTemplateError) @@ -719,7 +717,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OverwritePropertyGroupArg_validator = bv.Struct(OverwritePropertyGroupArg) @@ -754,7 +752,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchArg_validator = bv.Struct(PropertiesSearchArg) @@ -783,7 +781,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchContinueArg_validator = bv.Struct(PropertiesSearchContinueArg) @@ -822,7 +820,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchContinueError_validator = bv.Union(PropertiesSearchContinueError) @@ -875,7 +873,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchError_validator = bv.Union(PropertiesSearchError) @@ -931,7 +929,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchMatch_validator = bv.Struct(PropertiesSearchMatch) @@ -989,7 +987,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchMode_validator = bv.Union(PropertiesSearchMode) @@ -1035,7 +1033,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchQuery_validator = bv.Struct(PropertiesSearchQuery) @@ -1073,7 +1071,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertiesSearchResult_validator = bv.Struct(PropertiesSearchResult) @@ -1112,7 +1110,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertyField_validator = bv.Struct(PropertyField) @@ -1162,7 +1160,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertyFieldTemplate_validator = bv.Struct(PropertyFieldTemplate) @@ -1203,7 +1201,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertyGroup_validator = bv.Struct(PropertyGroup) @@ -1250,7 +1248,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PropertyGroupUpdate_validator = bv.Struct(PropertyGroupUpdate) @@ -1289,7 +1287,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PropertyType_validator = bv.Union(PropertyType) @@ -1328,7 +1326,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemovePropertiesArg_validator = bv.Struct(RemovePropertiesArg) @@ -1369,7 +1367,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemovePropertiesError_validator = bv.Union(RemovePropertiesError) @@ -1398,7 +1396,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemoveTemplateArg_validator = bv.Struct(RemoveTemplateArg) @@ -1458,7 +1456,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TemplateFilterBase_validator = bv.Union(TemplateFilterBase) @@ -1484,7 +1482,7 @@ def is_filter_none(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TemplateFilter_validator = bv.Union(TemplateFilter) @@ -1533,7 +1531,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TemplateOwnerType_validator = bv.Union(TemplateOwnerType) @@ -1569,7 +1567,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdatePropertiesArg_validator = bv.Struct(UpdatePropertiesArg) @@ -1610,7 +1608,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdatePropertiesError_validator = bv.Union(UpdatePropertiesError) @@ -1670,7 +1668,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateTemplateArg_validator = bv.Struct(UpdateTemplateArg) @@ -1699,7 +1697,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateTemplateResult_validator = bv.Struct(UpdateTemplateResult) @@ -1709,10 +1707,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +AddPropertiesArg._all_field_names_ = { 'path', 'property_groups', -]) +} AddPropertiesArg._all_fields_ = [ ('path', AddPropertiesArg.path.validator), ('property_groups', AddPropertiesArg.property_groups.validator), @@ -1765,33 +1763,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PropertyGroupTemplate.name.validator = bv.String() PropertyGroupTemplate.description.validator = bv.String() PropertyGroupTemplate.fields.validator = bv.List(PropertyFieldTemplate_validator) -PropertyGroupTemplate._all_field_names_ = set([ +PropertyGroupTemplate._all_field_names_ = { 'name', 'description', 'fields', -]) +} PropertyGroupTemplate._all_fields_ = [ ('name', PropertyGroupTemplate.name.validator), ('description', PropertyGroupTemplate.description.validator), ('fields', PropertyGroupTemplate.fields.validator), ] -AddTemplateArg._all_field_names_ = PropertyGroupTemplate._all_field_names_.union(set([])) +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_field_names_ = {'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_field_names_ = {'template_id'} GetTemplateArg._all_fields_ = [('template_id', GetTemplateArg.template_id.validator)] -GetTemplateResult._all_field_names_ = PropertyGroupTemplate._all_field_names_.union(set([])) +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_field_names_ = {'template_ids'} ListTemplateResult._all_fields_ = [('template_ids', ListTemplateResult.template_ids.validator)] LogicalOperator._or_operator_validator = bv.Void() @@ -1854,10 +1852,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): OverwritePropertyGroupArg.path.validator = PathOrId_validator OverwritePropertyGroupArg.property_groups.validator = bv.List(PropertyGroup_validator, min_items=1) -OverwritePropertyGroupArg._all_field_names_ = set([ +OverwritePropertyGroupArg._all_field_names_ = { 'path', 'property_groups', -]) +} OverwritePropertyGroupArg._all_fields_ = [ ('path', OverwritePropertyGroupArg.path.validator), ('property_groups', OverwritePropertyGroupArg.property_groups.validator), @@ -1865,17 +1863,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PropertiesSearchArg.queries.validator = bv.List(PropertiesSearchQuery_validator, min_items=1) PropertiesSearchArg.template_filter.validator = TemplateFilter_validator -PropertiesSearchArg._all_field_names_ = set([ +PropertiesSearchArg._all_field_names_ = { 'queries', 'template_filter', -]) +} PropertiesSearchArg._all_fields_ = [ ('queries', PropertiesSearchArg.queries.validator), ('template_filter', PropertiesSearchArg.template_filter.validator), ] PropertiesSearchContinueArg.cursor.validator = PropertiesSearchCursor_validator -PropertiesSearchContinueArg._all_field_names_ = set(['cursor']) +PropertiesSearchContinueArg._all_field_names_ = {'cursor'} PropertiesSearchContinueArg._all_fields_ = [('cursor', PropertiesSearchContinueArg.cursor.validator)] PropertiesSearchContinueError._reset_validator = bv.Void() @@ -1901,12 +1899,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PropertiesSearchMatch.path.validator = bv.String() PropertiesSearchMatch.is_deleted.validator = bv.Boolean() PropertiesSearchMatch.property_groups.validator = bv.List(PropertyGroup_validator) -PropertiesSearchMatch._all_field_names_ = set([ +PropertiesSearchMatch._all_field_names_ = { 'id', 'path', 'is_deleted', 'property_groups', -]) +} PropertiesSearchMatch._all_fields_ = [ ('id', PropertiesSearchMatch.id.validator), ('path', PropertiesSearchMatch.path.validator), @@ -1926,11 +1924,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PropertiesSearchQuery.query.validator = bv.String() PropertiesSearchQuery.mode.validator = PropertiesSearchMode_validator PropertiesSearchQuery.logical_operator.validator = LogicalOperator_validator -PropertiesSearchQuery._all_field_names_ = set([ +PropertiesSearchQuery._all_field_names_ = { 'query', 'mode', 'logical_operator', -]) +} PropertiesSearchQuery._all_fields_ = [ ('query', PropertiesSearchQuery.query.validator), ('mode', PropertiesSearchQuery.mode.validator), @@ -1939,10 +1937,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PropertiesSearchResult.matches.validator = bv.List(PropertiesSearchMatch_validator) PropertiesSearchResult.cursor.validator = bv.Nullable(PropertiesSearchCursor_validator) -PropertiesSearchResult._all_field_names_ = set([ +PropertiesSearchResult._all_field_names_ = { 'matches', 'cursor', -]) +} PropertiesSearchResult._all_fields_ = [ ('matches', PropertiesSearchResult.matches.validator), ('cursor', PropertiesSearchResult.cursor.validator), @@ -1950,10 +1948,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PropertyField.name.validator = bv.String() PropertyField.value.validator = bv.String() -PropertyField._all_field_names_ = set([ +PropertyField._all_field_names_ = { 'name', 'value', -]) +} PropertyField._all_fields_ = [ ('name', PropertyField.name.validator), ('value', PropertyField.value.validator), @@ -1962,11 +1960,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PropertyFieldTemplate.name.validator = bv.String() PropertyFieldTemplate.description.validator = bv.String() PropertyFieldTemplate.type.validator = PropertyType_validator -PropertyFieldTemplate._all_field_names_ = set([ +PropertyFieldTemplate._all_field_names_ = { 'name', 'description', 'type', -]) +} PropertyFieldTemplate._all_fields_ = [ ('name', PropertyFieldTemplate.name.validator), ('description', PropertyFieldTemplate.description.validator), @@ -1975,10 +1973,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PropertyGroup.template_id.validator = TemplateId_validator PropertyGroup.fields.validator = bv.List(PropertyField_validator) -PropertyGroup._all_field_names_ = set([ +PropertyGroup._all_field_names_ = { 'template_id', 'fields', -]) +} PropertyGroup._all_fields_ = [ ('template_id', PropertyGroup.template_id.validator), ('fields', PropertyGroup.fields.validator), @@ -1987,11 +1985,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +PropertyGroupUpdate._all_field_names_ = { '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), @@ -2010,10 +2008,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RemovePropertiesArg.path.validator = PathOrId_validator RemovePropertiesArg.property_template_ids.validator = bv.List(TemplateId_validator) -RemovePropertiesArg._all_field_names_ = set([ +RemovePropertiesArg._all_field_names_ = { 'path', 'property_template_ids', -]) +} RemovePropertiesArg._all_fields_ = [ ('path', RemovePropertiesArg.path.validator), ('property_template_ids', RemovePropertiesArg.property_template_ids.validator), @@ -2026,7 +2024,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RemovePropertiesError._tagmap.update(PropertiesError._tagmap) RemoveTemplateArg.template_id.validator = TemplateId_validator -RemoveTemplateArg._all_field_names_ = set(['template_id']) +RemoveTemplateArg._all_field_names_ = {'template_id'} RemoveTemplateArg._all_fields_ = [('template_id', RemoveTemplateArg.template_id.validator)] TemplateFilterBase._filter_some_validator = bv.List(TemplateId_validator, min_items=1) @@ -2061,10 +2059,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdatePropertiesArg.path.validator = PathOrId_validator UpdatePropertiesArg.update_property_groups.validator = bv.List(PropertyGroupUpdate_validator) -UpdatePropertiesArg._all_field_names_ = set([ +UpdatePropertiesArg._all_field_names_ = { 'path', 'update_property_groups', -]) +} UpdatePropertiesArg._all_fields_ = [ ('path', UpdatePropertiesArg.path.validator), ('update_property_groups', UpdatePropertiesArg.update_property_groups.validator), @@ -2080,12 +2078,12 @@ 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([ +UpdateTemplateArg._all_field_names_ = { 'template_id', 'name', 'description', 'add_fields', -]) +} UpdateTemplateArg._all_fields_ = [ ('template_id', UpdateTemplateArg.template_id.validator), ('name', UpdateTemplateArg.name.validator), @@ -2094,7 +2092,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] UpdateTemplateResult.template_id.validator = TemplateId_validator -UpdateTemplateResult._all_field_names_ = set(['template_id']) +UpdateTemplateResult._all_field_names_ = {'template_id'} UpdateTemplateResult._all_fields_ = [('template_id', UpdateTemplateResult.template_id.validator)] PropertiesSearchArg.template_filter.default = TemplateFilter.filter_none diff --git a/dropbox/file_requests.py b/dropbox/file_requests.py index ab931bb7..2bd9937d 100644 --- a/dropbox/file_requests.py +++ b/dropbox/file_requests.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa @@ -7,7 +6,6 @@ This namespace contains endpoints and data types for file request operations. """ -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -49,7 +47,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GeneralFileRequestsError_validator = bv.Union(GeneralFileRequestsError) @@ -63,7 +61,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CountFileRequestsError_validator = bv.Union(CountFileRequestsError) @@ -91,7 +89,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CountFileRequestsResult_validator = bv.Struct(CountFileRequestsResult) @@ -162,7 +160,7 @@ def __init__(self, description = bb.Attribute("description", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CreateFileRequestArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) CreateFileRequestArgs_validator = bv.Struct(CreateFileRequestArgs) @@ -254,7 +252,7 @@ def is_validation_error(self): return self._tag == 'validation_error' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) FileRequestError_validator = bv.Union(FileRequestError) @@ -295,7 +293,7 @@ def is_rate_limit(self): 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFileRequestError_validator = bv.Union(CreateFileRequestError) @@ -309,7 +307,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteAllClosedFileRequestsError_validator = bv.Union(DeleteAllClosedFileRequestsError) @@ -338,7 +336,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteAllClosedFileRequestsResult_validator = bv.Struct(DeleteAllClosedFileRequestsResult) @@ -366,7 +364,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteFileRequestArgs_validator = bv.Struct(DeleteFileRequestArgs) @@ -394,7 +392,7 @@ def is_file_request_open(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteFileRequestError_validator = bv.Union(DeleteFileRequestError) @@ -422,7 +420,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteFileRequestsResult_validator = bv.Struct(DeleteFileRequestsResult) @@ -530,7 +528,7 @@ def __init__(self, description = bb.Attribute("description", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequest, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) FileRequest_validator = bv.Struct(FileRequest) @@ -567,7 +565,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestDeadline_validator = bv.Struct(FileRequestDeadline) @@ -595,7 +593,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetFileRequestArgs_validator = bv.Struct(GetFileRequestArgs) @@ -609,7 +607,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetFileRequestError_validator = bv.Union(GetFileRequestError) @@ -683,7 +681,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) GracePeriod_validator = bv.Union(GracePeriod) @@ -711,7 +709,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsArg_validator = bv.Struct(ListFileRequestsArg) @@ -737,7 +735,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsContinueArg_validator = bv.Struct(ListFileRequestsContinueArg) @@ -765,7 +763,7 @@ def is_invalid_cursor(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsContinueError_validator = bv.Union(ListFileRequestsContinueError) @@ -779,7 +777,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsError_validator = bv.Union(ListFileRequestsError) @@ -808,7 +806,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsResult_validator = bv.Struct(ListFileRequestsResult) @@ -860,7 +858,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileRequestsV2Result_validator = bv.Struct(ListFileRequestsV2Result) @@ -940,7 +938,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateFileRequestArgs_validator = bv.Struct(UpdateFileRequestArgs) @@ -1011,7 +1009,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateFileRequestDeadline_validator = bv.Union(UpdateFileRequestDeadline) @@ -1025,7 +1023,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateFileRequestError_validator = bv.Union(UpdateFileRequestError) @@ -1046,7 +1044,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CountFileRequestsError._tagmap.update(GeneralFileRequestsError._tagmap) CountFileRequestsResult.file_request_count.validator = bv.UInt64() -CountFileRequestsResult._all_field_names_ = set(['file_request_count']) +CountFileRequestsResult._all_field_names_ = {'file_request_count'} CountFileRequestsResult._all_fields_ = [('file_request_count', CountFileRequestsResult.file_request_count.validator)] CreateFileRequestArgs.title.validator = bv.String(min_length=1) @@ -1054,13 +1052,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CreateFileRequestArgs.deadline.validator = bv.Nullable(FileRequestDeadline_validator) CreateFileRequestArgs.open.validator = bv.Boolean() CreateFileRequestArgs.description.validator = bv.Nullable(bv.String()) -CreateFileRequestArgs._all_field_names_ = set([ +CreateFileRequestArgs._all_field_names_ = { 'title', 'destination', 'deadline', 'open', 'description', -]) +} CreateFileRequestArgs._all_fields_ = [ ('title', CreateFileRequestArgs.title.validator), ('destination', CreateFileRequestArgs.destination.validator), @@ -1108,11 +1106,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeleteAllClosedFileRequestsError._tagmap.update(FileRequestError._tagmap) DeleteAllClosedFileRequestsResult.file_requests.validator = bv.List(FileRequest_validator) -DeleteAllClosedFileRequestsResult._all_field_names_ = set(['file_requests']) +DeleteAllClosedFileRequestsResult._all_field_names_ = {'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_field_names_ = {'ids'} DeleteFileRequestArgs._all_fields_ = [('ids', DeleteFileRequestArgs.ids.validator)] DeleteFileRequestError._file_request_open_validator = bv.Void() @@ -1124,7 +1122,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = {'file_requests'} DeleteFileRequestsResult._all_fields_ = [('file_requests', DeleteFileRequestsResult.file_requests.validator)] FileRequest.id.validator = FileRequestId_validator @@ -1136,7 +1134,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileRequest.is_open.validator = bv.Boolean() FileRequest.file_count.validator = bv.Int64() FileRequest.description.validator = bv.Nullable(bv.String()) -FileRequest._all_field_names_ = set([ +FileRequest._all_field_names_ = { 'id', 'url', 'title', @@ -1146,7 +1144,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'is_open', 'file_count', 'description', -]) +} FileRequest._all_fields_ = [ ('id', FileRequest.id.validator), ('url', FileRequest.url.validator), @@ -1161,17 +1159,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileRequestDeadline.deadline.validator = common.DropboxTimestamp_validator FileRequestDeadline.allow_late_uploads.validator = bv.Nullable(GracePeriod_validator) -FileRequestDeadline._all_field_names_ = set([ +FileRequestDeadline._all_field_names_ = { 'deadline', 'allow_late_uploads', -]) +} FileRequestDeadline._all_fields_ = [ ('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_field_names_ = {'id'} GetFileRequestArgs._all_fields_ = [('id', GetFileRequestArgs.id.validator)] GetFileRequestError._tagmap = { @@ -1201,11 +1199,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GracePeriod.other = GracePeriod('other') ListFileRequestsArg.limit.validator = bv.UInt64() -ListFileRequestsArg._all_field_names_ = set(['limit']) +ListFileRequestsArg._all_field_names_ = {'limit'} ListFileRequestsArg._all_fields_ = [('limit', ListFileRequestsArg.limit.validator)] ListFileRequestsContinueArg.cursor.validator = bv.String() -ListFileRequestsContinueArg._all_field_names_ = set(['cursor']) +ListFileRequestsContinueArg._all_field_names_ = {'cursor'} ListFileRequestsContinueArg._all_fields_ = [('cursor', ListFileRequestsContinueArg.cursor.validator)] ListFileRequestsContinueError._invalid_cursor_validator = bv.Void() @@ -1221,17 +1219,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFileRequestsError._tagmap.update(GeneralFileRequestsError._tagmap) ListFileRequestsResult.file_requests.validator = bv.List(FileRequest_validator) -ListFileRequestsResult._all_field_names_ = set(['file_requests']) +ListFileRequestsResult._all_field_names_ = {'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([ +ListFileRequestsV2Result._all_field_names_ = { 'file_requests', 'cursor', 'has_more', -]) +} ListFileRequestsV2Result._all_fields_ = [ ('file_requests', ListFileRequestsV2Result.file_requests.validator), ('cursor', ListFileRequestsV2Result.cursor.validator), @@ -1244,14 +1242,14 @@ 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([ +UpdateFileRequestArgs._all_field_names_ = { 'id', 'title', 'destination', 'deadline', 'open', 'description', -]) +} UpdateFileRequestArgs._all_fields_ = [ ('id', UpdateFileRequestArgs.id.validator), ('title', UpdateFileRequestArgs.title.validator), diff --git a/dropbox/files.py b/dropbox/files.py index a930edac..946bf4ab 100644 --- a/dropbox/files.py +++ b/dropbox/files.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa @@ -7,7 +6,6 @@ This namespace contains endpoints and data types for basic file operations. """ -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -47,7 +45,7 @@ def __init__(self, tag_text = bb.Attribute("tag_text") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddTagArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) AddTagArg_validator = bv.Struct(AddTagArg) @@ -100,7 +98,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BaseTagError_validator = bv.Union(BaseTagError) @@ -126,7 +124,7 @@ def is_too_many_tags(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) AddTagError_validator = bv.Union(AddTagError) @@ -194,7 +192,7 @@ def __init__(self, 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()._process_custom_annotations(annotation_type, field_path, processor) GetMetadataArg_validator = bv.Struct(GetMetadataArg) @@ -218,7 +216,7 @@ def __init__(self, include_has_explicit_shared_members=None, include_property_groups=None, include_property_templates=None): - super(AlphaGetMetadataArg, self).__init__(path, + super().__init__(path, include_media_info, include_deleted, include_has_explicit_shared_members, @@ -231,7 +229,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AlphaGetMetadataArg_validator = bv.Struct(AlphaGetMetadataArg) @@ -274,7 +272,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetMetadataError_validator = bv.Union(GetMetadataError) @@ -315,7 +313,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AlphaGetMetadataError_validator = bv.Union(AlphaGetMetadataError) @@ -409,7 +407,7 @@ def __init__(self, strict_conflict = bb.Attribute("strict_conflict") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(CommitInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) CommitInfo_validator = bv.Struct(CommitInfo) @@ -444,7 +442,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ContentSyncSetting_validator = bv.Struct(ContentSyncSetting) @@ -479,7 +477,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ContentSyncSettingArg_validator = bv.Struct(ContentSyncSettingArg) @@ -514,7 +512,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderArg_validator = bv.Struct(CreateFolderArg) @@ -561,7 +559,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchArg_validator = bv.Struct(CreateFolderBatchArg) @@ -598,7 +596,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchError_validator = bv.Union(CreateFolderBatchError) @@ -689,7 +687,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchJobStatus_validator = bv.Union(CreateFolderBatchJobStatus) @@ -746,7 +744,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchLaunch_validator = bv.Union(CreateFolderBatchLaunch) @@ -761,7 +759,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileOpsResult_validator = bv.Struct(FileOpsResult) @@ -780,7 +778,7 @@ class CreateFolderBatchResult(FileOpsResult): def __init__(self, entries=None): - super(CreateFolderBatchResult, self).__init__() + super().__init__() self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -789,7 +787,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchResult_validator = bv.Struct(CreateFolderBatchResult) @@ -861,7 +859,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderBatchResultEntry_validator = bv.Union(CreateFolderBatchResultEntry) @@ -914,7 +912,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderEntryError_validator = bv.Union(CreateFolderEntryError) @@ -940,7 +938,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderEntryResult_validator = bv.Struct(CreateFolderEntryResult) @@ -983,7 +981,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderError_validator = bv.Union(CreateFolderError) @@ -1000,7 +998,7 @@ class CreateFolderResult(FileOpsResult): def __init__(self, metadata=None): - super(CreateFolderResult, self).__init__() + super().__init__() self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -1009,7 +1007,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderResult_validator = bv.Struct(CreateFolderResult) @@ -1045,7 +1043,7 @@ def __init__(self, parent_rev = bb.Attribute("parent_rev", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) DeleteArg_validator = bv.Struct(DeleteArg) @@ -1067,7 +1065,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchArg_validator = bv.Struct(DeleteBatchArg) @@ -1106,7 +1104,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchError_validator = bv.Union(DeleteBatchError) @@ -1197,7 +1195,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchJobStatus_validator = bv.Union(DeleteBatchJobStatus) @@ -1253,7 +1251,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchLaunch_validator = bv.Union(DeleteBatchLaunch) @@ -1272,7 +1270,7 @@ class DeleteBatchResult(FileOpsResult): def __init__(self, entries=None): - super(DeleteBatchResult, self).__init__() + super().__init__() self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -1281,7 +1279,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchResult_validator = bv.Struct(DeleteBatchResult) @@ -1306,7 +1304,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchResultData_validator = bv.Struct(DeleteBatchResultData) @@ -1378,7 +1376,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteBatchResultEntry_validator = bv.Union(DeleteBatchResultEntry) @@ -1485,7 +1483,7 @@ def get_path_write(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeleteError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) DeleteError_validator = bv.Union(DeleteError) @@ -1502,7 +1500,7 @@ class DeleteResult(FileOpsResult): def __init__(self, metadata=None): - super(DeleteResult, self).__init__() + super().__init__() self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -1511,7 +1509,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteResult_validator = bv.Struct(DeleteResult) @@ -1585,7 +1583,7 @@ def __init__(self, preview_url = bb.Attribute("preview_url", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(Metadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) Metadata_validator = bv.StructTree(Metadata) @@ -1606,14 +1604,14 @@ def __init__(self, path_display=None, parent_shared_folder_id=None, preview_url=None): - super(DeletedMetadata, self).__init__(name, + super().__init__(name, path_lower, path_display, parent_shared_folder_id, preview_url) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DeletedMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) DeletedMetadata_validator = bv.Struct(DeletedMetadata) @@ -1649,7 +1647,7 @@ def __init__(self, width = bb.Attribute("width") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(Dimensions, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) Dimensions_validator = bv.Struct(Dimensions) @@ -1683,7 +1681,7 @@ def __init__(self, rev = bb.Attribute("rev", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DownloadArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) DownloadArg_validator = bv.Struct(DownloadArg) @@ -1750,7 +1748,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DownloadError_validator = bv.Union(DownloadError) @@ -1775,7 +1773,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DownloadZipArg_validator = bv.Struct(DownloadZipArg) @@ -1853,7 +1851,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DownloadZipError_validator = bv.Union(DownloadZipError) @@ -1875,7 +1873,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DownloadZipResult_validator = bv.Struct(DownloadZipResult) @@ -1914,7 +1912,7 @@ def __init__(self, export_format = bb.Attribute("export_format", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ExportArg_validator = bv.Struct(ExportArg) @@ -2004,7 +2002,7 @@ def get_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ExportError_validator = bv.Union(ExportError) @@ -2043,7 +2041,7 @@ def __init__(self, export_options = bb.Attribute("export_options", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExportInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ExportInfo_validator = bv.Struct(ExportInfo) @@ -2101,7 +2099,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExportMetadata_validator = bv.Struct(ExportMetadata) @@ -2136,7 +2134,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExportResult_validator = bv.Struct(ExportResult) @@ -2272,7 +2270,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FileCategory_validator = bv.Union(FileCategory) @@ -2297,7 +2295,7 @@ def __init__(self, content = bb.Attribute("content", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileLock, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) FileLock_validator = bv.Struct(FileLock) @@ -2366,7 +2364,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLockContent_validator = bv.Union(FileLockContent) @@ -2421,7 +2419,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLockMetadata_validator = bv.Struct(FileLockMetadata) @@ -2511,7 +2509,7 @@ def __init__(self, has_explicit_shared_members=None, content_hash=None, file_lock_info=None): - super(FileMetadata, self).__init__(name, + super().__init__(name, path_lower, path_display, parent_shared_folder_id, @@ -2602,7 +2600,7 @@ def __init__(self, file_lock_info = bb.Attribute("file_lock_info", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) FileMetadata_validator = bv.Struct(FileMetadata) @@ -2630,7 +2628,7 @@ def __init__(self, read_only = bb.Attribute("read_only") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharingInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SharingInfo_validator = bv.Struct(SharingInfo) @@ -2655,7 +2653,7 @@ def __init__(self, read_only=None, parent_shared_folder_id=None, modified_by=None): - super(FileSharingInfo, self).__init__(read_only) + super().__init__(read_only) self._parent_shared_folder_id_value = bb.NOT_SET self._modified_by_value = bb.NOT_SET if parent_shared_folder_id is not None: @@ -2670,7 +2668,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileSharingInfo_validator = bv.Struct(FileSharingInfo) @@ -2714,7 +2712,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) FileStatus_validator = bv.Union(FileStatus) @@ -2750,7 +2748,7 @@ def __init__(self, shared_folder_id=None, sharing_info=None, property_groups=None): - super(FolderMetadata, self).__init__(name, + super().__init__(name, path_lower, path_display, parent_shared_folder_id, @@ -2781,7 +2779,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderMetadata_validator = bv.Struct(FolderMetadata) @@ -2818,7 +2816,7 @@ def __init__(self, shared_folder_id=None, traverse_only=None, no_access=None): - super(FolderSharingInfo, self).__init__(read_only) + super().__init__(read_only) self._parent_shared_folder_id_value = bb.NOT_SET self._shared_folder_id_value = bb.NOT_SET self._traverse_only_value = bb.NOT_SET @@ -2845,7 +2843,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderSharingInfo_validator = bv.Struct(FolderSharingInfo) @@ -2871,7 +2869,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetCopyReferenceArg_validator = bv.Struct(GetCopyReferenceArg) @@ -2924,7 +2922,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetCopyReferenceError_validator = bv.Union(GetCopyReferenceError) @@ -2970,7 +2968,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetCopyReferenceResult_validator = bv.Struct(GetCopyReferenceResult) @@ -2995,7 +2993,7 @@ def __init__(self, paths = bb.Attribute("paths") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GetTagsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) GetTagsArg_validator = bv.Struct(GetTagsArg) @@ -3021,7 +3019,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTagsResult_validator = bv.Struct(GetTagsResult) @@ -3047,7 +3045,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryLinkArg_validator = bv.Struct(GetTemporaryLinkArg) @@ -3142,7 +3140,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryLinkError_validator = bv.Union(GetTemporaryLinkError) @@ -3177,7 +3175,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryLinkResult_validator = bv.Struct(GetTemporaryLinkResult) @@ -3217,7 +3215,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryUploadLinkArg_validator = bv.Struct(GetTemporaryUploadLinkArg) @@ -3243,7 +3241,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTemporaryUploadLinkResult_validator = bv.Struct(GetTemporaryUploadLinkResult) @@ -3271,7 +3269,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchArg_validator = bv.Struct(GetThumbnailBatchArg) @@ -3308,7 +3306,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchError_validator = bv.Union(GetThumbnailBatchError) @@ -3334,7 +3332,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchResult_validator = bv.Struct(GetThumbnailBatchResult) @@ -3368,7 +3366,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchResultData_validator = bv.Struct(GetThumbnailBatchResultData) @@ -3455,7 +3453,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetThumbnailBatchResultEntry_validator = bv.Union(GetThumbnailBatchResultEntry) @@ -3491,7 +3489,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GpsCoordinates_validator = bv.Struct(GpsCoordinates) @@ -3527,7 +3525,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) HighlightSpan_validator = bv.Struct(HighlightSpan) @@ -3590,7 +3588,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ImportFormat_validator = bv.Union(ImportFormat) @@ -3714,7 +3712,7 @@ def __init__(self, include_non_downloadable_files = bb.Attribute("include_non_downloadable_files") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ListFolderArg_validator = bv.Struct(ListFolderArg) @@ -3741,7 +3739,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderContinueArg_validator = bv.Struct(ListFolderContinueArg) @@ -3809,7 +3807,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderContinueError_validator = bv.Union(ListFolderContinueError) @@ -3891,7 +3889,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderError_validator = bv.Union(ListFolderError) @@ -3918,7 +3916,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderGetLatestCursorResult_validator = bv.Struct(ListFolderGetLatestCursorResult) @@ -3960,7 +3958,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderLongpollArg_validator = bv.Struct(ListFolderLongpollArg) @@ -3999,7 +3997,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderLongpollError_validator = bv.Union(ListFolderLongpollError) @@ -4038,7 +4036,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderLongpollResult_validator = bv.Struct(ListFolderLongpollResult) @@ -4087,7 +4085,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderResult_validator = bv.Struct(ListFolderResult) @@ -4133,7 +4131,7 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ListRevisionsArg_validator = bv.Struct(ListRevisionsArg) @@ -4186,7 +4184,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListRevisionsError_validator = bv.Union(ListRevisionsError) @@ -4236,7 +4234,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListRevisionsMode_validator = bv.Union(ListRevisionsMode) @@ -4282,7 +4280,7 @@ def __init__(self, entries = bb.Attribute("entries") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListRevisionsResult, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ListRevisionsResult_validator = bv.Struct(ListRevisionsResult) @@ -4307,7 +4305,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LockConflictError_validator = bv.Struct(LockConflictError) @@ -4332,7 +4330,7 @@ def __init__(self, path = bb.Attribute("path") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LockFileArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) LockFileArg_validator = bv.Struct(LockFileArg) @@ -4359,7 +4357,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LockFileBatchArg_validator = bv.Struct(LockFileBatchArg) @@ -4378,7 +4376,7 @@ class LockFileBatchResult(FileOpsResult): def __init__(self, entries=None): - super(LockFileBatchResult, self).__init__() + super().__init__() self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -4387,7 +4385,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LockFileBatchResult_validator = bv.Struct(LockFileBatchResult) @@ -4551,7 +4549,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LockFileError_validator = bv.Union(LockFileError) @@ -4585,7 +4583,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LockFileResult_validator = bv.Struct(LockFileResult) @@ -4657,7 +4655,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LockFileResultEntry_validator = bv.Union(LockFileResultEntry) @@ -4792,7 +4790,7 @@ def get_malformed_path(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LookupError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) LookupError_validator = bv.Union(LookupError) @@ -4851,7 +4849,7 @@ def get_metadata(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MediaInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) MediaInfo_validator = bv.Union(MediaInfo) @@ -4897,7 +4895,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MediaMetadata_validator = bv.StructTree(MediaMetadata) @@ -4952,7 +4950,7 @@ def get_metadata(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MetadataV2, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) MetadataV2_validator = bv.Union(MetadataV2) @@ -5009,7 +5007,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MinimalFileLinkMetadata_validator = bv.Struct(MinimalFileLinkMetadata) @@ -5046,7 +5044,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchArgBase_validator = bv.Struct(RelocationBatchArgBase) @@ -5067,7 +5065,7 @@ def __init__(self, entries=None, autorename=None, allow_ownership_transfer=None): - super(MoveBatchArg, self).__init__(entries, + super().__init__(entries, autorename) self._allow_ownership_transfer_value = bb.NOT_SET if allow_ownership_transfer is not None: @@ -5077,7 +5075,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MoveBatchArg_validator = bv.Struct(MoveBatchArg) @@ -5114,7 +5112,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MoveIntoFamilyError_validator = bv.Union(MoveIntoFamilyError) @@ -5151,7 +5149,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MoveIntoVaultError_validator = bv.Union(MoveIntoVaultError) @@ -5225,7 +5223,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentError_validator = bv.Union(PaperContentError) @@ -5261,7 +5259,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperCreateArg_validator = bv.Struct(PaperCreateArg) @@ -5323,7 +5321,7 @@ def is_paper_disabled(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperCreateError_validator = bv.Union(PaperCreateError) @@ -5377,7 +5375,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperCreateResult_validator = bv.Struct(PaperCreateResult) @@ -5451,7 +5449,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocUpdatePolicy_validator = bv.Union(PaperDocUpdatePolicy) @@ -5507,7 +5505,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperUpdateArg_validator = bv.Struct(PaperUpdateArg) @@ -5586,7 +5584,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperUpdateError_validator = bv.Union(PaperUpdateError) @@ -5611,7 +5609,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperUpdateResult_validator = bv.Struct(PaperUpdateResult) @@ -5693,7 +5691,7 @@ def get_link(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PathOrLink, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) PathOrLink_validator = bv.Union(PathOrLink) @@ -5727,7 +5725,7 @@ def __init__(self, tags = bb.Attribute("tags") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PathToTags, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) PathToTags_validator = bv.Struct(PathToTags) @@ -5745,12 +5743,12 @@ def __init__(self, dimensions=None, location=None, time_taken=None): - super(PhotoMetadata, self).__init__(dimensions, + super().__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()._process_custom_annotations(annotation_type, field_path, processor) PhotoMetadata_validator = bv.Struct(PhotoMetadata) @@ -5784,7 +5782,7 @@ def __init__(self, rev = bb.Attribute("rev", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PreviewArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) PreviewArg_validator = bv.Struct(PreviewArg) @@ -5868,7 +5866,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PreviewError_validator = bv.Union(PreviewError) @@ -5906,7 +5904,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PreviewResult_validator = bv.Struct(PreviewResult) @@ -5942,7 +5940,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationPath_validator = bv.Struct(RelocationPath) @@ -5970,7 +5968,7 @@ def __init__(self, allow_shared_folder=None, autorename=None, allow_ownership_transfer=None): - super(RelocationArg, self).__init__(from_path, + super().__init__(from_path, to_path) self._allow_shared_folder_value = bb.NOT_SET self._autorename_value = bb.NOT_SET @@ -5992,7 +5990,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationArg_validator = bv.Struct(RelocationArg) @@ -6016,7 +6014,7 @@ def __init__(self, autorename=None, allow_shared_folder=None, allow_ownership_transfer=None): - super(RelocationBatchArg, self).__init__(entries, + super().__init__(entries, autorename) self._allow_shared_folder_value = bb.NOT_SET self._allow_ownership_transfer_value = bb.NOT_SET @@ -6032,7 +6030,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchArg_validator = bv.Struct(RelocationBatchArg) @@ -6325,7 +6323,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationError_validator = bv.Union(RelocationError) @@ -6351,7 +6349,7 @@ def is_too_many_write_operations(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchError_validator = bv.Union(RelocationBatchError) @@ -6435,7 +6433,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchErrorEntry_validator = bv.Union(RelocationBatchErrorEntry) @@ -6514,7 +6512,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchJobStatus_validator = bv.Union(RelocationBatchJobStatus) @@ -6571,7 +6569,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchLaunch_validator = bv.Union(RelocationBatchLaunch) @@ -6585,7 +6583,7 @@ class RelocationBatchResult(FileOpsResult): def __init__(self, entries=None): - super(RelocationBatchResult, self).__init__() + super().__init__() self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -6594,7 +6592,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchResult_validator = bv.Struct(RelocationBatchResult) @@ -6620,7 +6618,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchResultData_validator = bv.Struct(RelocationBatchResultData) @@ -6702,7 +6700,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchResultEntry_validator = bv.Union(RelocationBatchResultEntry) @@ -6753,7 +6751,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchV2JobStatus_validator = bv.Union(RelocationBatchV2JobStatus) @@ -6798,7 +6796,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchV2Launch_validator = bv.Union(RelocationBatchV2Launch) @@ -6817,7 +6815,7 @@ class RelocationBatchV2Result(FileOpsResult): def __init__(self, entries=None): - super(RelocationBatchV2Result, self).__init__() + super().__init__() self._entries_value = bb.NOT_SET if entries is not None: self.entries = entries @@ -6826,7 +6824,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationBatchV2Result_validator = bv.Struct(RelocationBatchV2Result) @@ -6843,7 +6841,7 @@ class RelocationResult(FileOpsResult): def __init__(self, metadata=None): - super(RelocationResult, self).__init__() + super().__init__() self._metadata_value = bb.NOT_SET if metadata is not None: self.metadata = metadata @@ -6852,7 +6850,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocationResult_validator = bv.Struct(RelocationResult) @@ -6887,7 +6885,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemoveTagArg_validator = bv.Struct(RemoveTagArg) @@ -6913,7 +6911,7 @@ def is_tag_not_present(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RemoveTagError_validator = bv.Union(RemoveTagError) @@ -6947,7 +6945,7 @@ def __init__(self, rev = bb.Attribute("rev") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RestoreArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) RestoreArg_validator = bv.Struct(RestoreArg) @@ -7062,7 +7060,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RestoreError_validator = bv.Union(RestoreError) @@ -7098,7 +7096,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SaveCopyReferenceArg_validator = bv.Struct(SaveCopyReferenceArg) @@ -7202,7 +7200,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SaveCopyReferenceError_validator = bv.Union(SaveCopyReferenceError) @@ -7228,7 +7226,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SaveCopyReferenceResult_validator = bv.Struct(SaveCopyReferenceResult) @@ -7263,7 +7261,7 @@ def __init__(self, url = bb.Attribute("url") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SaveUrlArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SaveUrlArg_validator = bv.Struct(SaveUrlArg) @@ -7353,7 +7351,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SaveUrlError_validator = bv.Union(SaveUrlError) @@ -7428,7 +7426,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SaveUrlJobStatus_validator = bv.Union(SaveUrlJobStatus) @@ -7474,7 +7472,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SaveUrlResult_validator = bv.Union(SaveUrlResult) @@ -7544,7 +7542,7 @@ def __init__(self, mode = bb.Attribute("mode", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SearchArg_validator = bv.Struct(SearchArg) @@ -7639,7 +7637,7 @@ def get_invalid_argument(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SearchError_validator = bv.Union(SearchError) @@ -7674,7 +7672,7 @@ def __init__(self, metadata = bb.Attribute("metadata", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchMatch, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SearchMatch_validator = bv.Struct(SearchMatch) @@ -7700,7 +7698,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SearchMatchFieldOptions_validator = bv.Struct(SearchMatchFieldOptions) @@ -7753,7 +7751,7 @@ def is_both(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SearchMatchType_validator = bv.Union(SearchMatchType) @@ -7828,7 +7826,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SearchMatchTypeV2_validator = bv.Union(SearchMatchTypeV2) @@ -7873,7 +7871,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SearchMatchV2_validator = bv.Struct(SearchMatchV2) @@ -7923,7 +7921,7 @@ def is_deleted_filename(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) SearchMode_validator = bv.Union(SearchMode) @@ -8019,7 +8017,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SearchOptions_validator = bv.Struct(SearchOptions) @@ -8063,7 +8061,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SearchOrderBy_validator = bv.Union(SearchOrderBy) @@ -8112,7 +8110,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SearchResult_validator = bv.Struct(SearchResult) @@ -8167,7 +8165,7 @@ def __init__(self, include_highlights = bb.Attribute("include_highlights", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SearchV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SearchV2Arg_validator = bv.Struct(SearchV2Arg) @@ -8194,7 +8192,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SearchV2ContinueArg_validator = bv.Struct(SearchV2ContinueArg) @@ -8243,7 +8241,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SearchV2Result_validator = bv.Struct(SearchV2Result) @@ -8277,7 +8275,7 @@ def __init__(self, password = bb.Attribute("password", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLink, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SharedLink_validator = bv.Struct(SharedLink) @@ -8326,7 +8324,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkFileInfo_validator = bv.Struct(SharedLinkFileInfo) @@ -8371,7 +8369,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SingleUserLock_validator = bv.Struct(SingleUserLock) @@ -8396,7 +8394,7 @@ def __init__(self, target = bb.Attribute("target") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SymlinkInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SymlinkInfo_validator = bv.Struct(SymlinkInfo) @@ -8459,7 +8457,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) SyncSetting_validator = bv.Union(SyncSetting) @@ -8509,7 +8507,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SyncSettingArg_validator = bv.Union(SyncSettingArg) @@ -8587,7 +8585,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SyncSettingsError_validator = bv.Union(SyncSettingsError) @@ -8646,7 +8644,7 @@ def get_user_generated_tag(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(Tag, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) Tag_validator = bv.Union(Tag) @@ -8702,7 +8700,7 @@ def __init__(self, mode = bb.Attribute("mode", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ThumbnailArg_validator = bv.Struct(ThumbnailArg) @@ -8786,7 +8784,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ThumbnailError_validator = bv.Union(ThumbnailError) @@ -8820,7 +8818,7 @@ def is_png(self): return self._tag == 'png' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailFormat, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ThumbnailFormat_validator = bv.Union(ThumbnailFormat) @@ -8871,7 +8869,7 @@ def is_fitone_bestfit(self): return self._tag == 'fitone_bestfit' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailMode, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ThumbnailMode_validator = bv.Union(ThumbnailMode) @@ -8985,7 +8983,7 @@ def is_w2048h1536(self): return self._tag == 'w2048h1536' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailSize, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ThumbnailSize_validator = bv.Union(ThumbnailSize) @@ -9042,7 +9040,7 @@ def __init__(self, mode = bb.Attribute("mode", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ThumbnailV2Arg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ThumbnailV2Arg_validator = bv.Struct(ThumbnailV2Arg) @@ -9159,7 +9157,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ThumbnailV2Error_validator = bv.Union(ThumbnailV2Error) @@ -9184,7 +9182,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UnlockFileArg_validator = bv.Struct(UnlockFileArg) @@ -9211,7 +9209,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UnlockFileBatchArg_validator = bv.Struct(UnlockFileBatchArg) @@ -9238,7 +9236,7 @@ def __init__(self, property_groups=None, strict_conflict=None, content_hash=None): - super(UploadArg, self).__init__(path, + super().__init__(path, mode, autorename, client_modified, @@ -9253,7 +9251,7 @@ def __init__(self, content_hash = bb.Attribute("content_hash", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) UploadArg_validator = bv.Struct(UploadArg) @@ -9370,7 +9368,7 @@ def get_properties_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) UploadError_validator = bv.Union(UploadError) @@ -9421,7 +9419,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendArg_validator = bv.Struct(UploadSessionAppendArg) @@ -9572,7 +9570,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionLookupError_validator = bv.Union(UploadSessionLookupError) @@ -9599,7 +9597,7 @@ def is_content_hash_mismatch(self): return self._tag == 'content_hash_mismatch' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UploadSessionAppendError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionAppendError_validator = bv.Union(UploadSessionAppendError) @@ -9636,7 +9634,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionCursor_validator = bv.Struct(UploadSessionCursor) @@ -9685,7 +9683,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishArg_validator = bv.Struct(UploadSessionFinishArg) @@ -9711,7 +9709,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchArg_validator = bv.Struct(UploadSessionFinishBatchArg) @@ -9761,7 +9759,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchJobStatus_validator = bv.Union(UploadSessionFinishBatchJobStatus) @@ -9818,7 +9816,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchLaunch_validator = bv.Union(UploadSessionFinishBatchLaunch) @@ -9845,7 +9843,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchResult_validator = bv.Struct(UploadSessionFinishBatchResult) @@ -9917,7 +9915,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishBatchResultEntry_validator = bv.Union(UploadSessionFinishBatchResultEntry) @@ -10134,7 +10132,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionFinishError_validator = bv.Union(UploadSessionFinishError) @@ -10160,7 +10158,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionOffsetError_validator = bv.Struct(UploadSessionOffsetError) @@ -10212,7 +10210,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartArg_validator = bv.Struct(UploadSessionStartArg) @@ -10249,7 +10247,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartBatchArg_validator = bv.Struct(UploadSessionStartBatchArg) @@ -10277,7 +10275,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartBatchResult_validator = bv.Struct(UploadSessionStartBatchResult) @@ -10351,7 +10349,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartError_validator = bv.Union(UploadSessionStartError) @@ -10379,7 +10377,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionStartResult_validator = bv.Struct(UploadSessionStartResult) @@ -10428,7 +10426,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) UploadSessionType_validator = bv.Union(UploadSessionType) @@ -10466,7 +10464,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadWriteFailed_validator = bv.Struct(UploadWriteFailed) @@ -10488,7 +10486,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserGeneratedTag_validator = bv.Struct(UserGeneratedTag) @@ -10511,7 +10509,7 @@ def __init__(self, location=None, time_taken=None, duration=None): - super(VideoMetadata, self).__init__(dimensions, + super().__init__(dimensions, location, time_taken) self._duration_value = bb.NOT_SET @@ -10522,7 +10520,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) VideoMetadata_validator = bv.Struct(VideoMetadata) @@ -10581,7 +10579,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) WriteConflictError_validator = bv.Union(WriteConflictError) @@ -10751,7 +10749,7 @@ def get_conflict(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WriteError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) WriteError_validator = bv.Union(WriteError) @@ -10849,7 +10847,7 @@ def get_update(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(WriteMode, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) WriteMode_validator = bv.Union(WriteMode) @@ -10873,10 +10871,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): WritePathOrId_validator = bv.String(pattern='(/(.|[\\r\\n])*)|(ns:[0-9]+(/.*)?)|(id:.*)') AddTagArg.path.validator = Path_validator AddTagArg.tag_text.validator = TagText_validator -AddTagArg._all_field_names_ = set([ +AddTagArg._all_field_names_ = { 'path', 'tag_text', -]) +} AddTagArg._all_fields_ = [ ('path', AddTagArg.path.validator), ('tag_text', AddTagArg.tag_text.validator), @@ -10904,13 +10902,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GetMetadataArg._all_field_names_ = { '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), @@ -10920,7 +10918,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] 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_field_names_ = GetMetadataArg._all_field_names_.union({'include_property_templates'}) AlphaGetMetadataArg._all_fields_ = GetMetadataArg._all_fields_ + [('include_property_templates', AlphaGetMetadataArg.include_property_templates.validator)] GetMetadataError._path_validator = LookupError_validator @@ -10941,7 +10939,7 @@ 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([ +CommitInfo._all_field_names_ = { 'path', 'mode', 'autorename', @@ -10949,7 +10947,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'mute', 'property_groups', 'strict_conflict', -]) +} CommitInfo._all_fields_ = [ ('path', CommitInfo.path.validator), ('mode', CommitInfo.mode.validator), @@ -10962,10 +10960,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ContentSyncSetting.id.validator = FileId_validator ContentSyncSetting.sync_setting.validator = SyncSetting_validator -ContentSyncSetting._all_field_names_ = set([ +ContentSyncSetting._all_field_names_ = { 'id', 'sync_setting', -]) +} ContentSyncSetting._all_fields_ = [ ('id', ContentSyncSetting.id.validator), ('sync_setting', ContentSyncSetting.sync_setting.validator), @@ -10973,10 +10971,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ContentSyncSettingArg.id.validator = FileId_validator ContentSyncSettingArg.sync_setting.validator = SyncSettingArg_validator -ContentSyncSettingArg._all_field_names_ = set([ +ContentSyncSettingArg._all_field_names_ = { 'id', 'sync_setting', -]) +} ContentSyncSettingArg._all_fields_ = [ ('id', ContentSyncSettingArg.id.validator), ('sync_setting', ContentSyncSettingArg.sync_setting.validator), @@ -10984,10 +10982,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CreateFolderArg.path.validator = WritePath_validator CreateFolderArg.autorename.validator = bv.Boolean() -CreateFolderArg._all_field_names_ = set([ +CreateFolderArg._all_field_names_ = { 'path', 'autorename', -]) +} CreateFolderArg._all_fields_ = [ ('path', CreateFolderArg.path.validator), ('autorename', CreateFolderArg.autorename.validator), @@ -10996,11 +10994,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +CreateFolderBatchArg._all_field_names_ = { 'paths', 'autorename', 'force_async', -]) +} CreateFolderBatchArg._all_fields_ = [ ('paths', CreateFolderBatchArg.paths.validator), ('autorename', CreateFolderBatchArg.autorename.validator), @@ -11039,11 +11037,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CreateFolderBatchLaunch.other = CreateFolderBatchLaunch('other') -FileOpsResult._all_field_names_ = set([]) +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_field_names_ = FileOpsResult._all_field_names_.union({'entries'}) CreateFolderBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', CreateFolderBatchResult.entries.validator)] CreateFolderBatchResultEntry._success_validator = CreateFolderEntryResult_validator @@ -11063,7 +11061,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CreateFolderEntryError.other = CreateFolderEntryError('other') CreateFolderEntryResult.metadata.validator = FolderMetadata_validator -CreateFolderEntryResult._all_field_names_ = set(['metadata']) +CreateFolderEntryResult._all_field_names_ = {'metadata'} CreateFolderEntryResult._all_fields_ = [('metadata', CreateFolderEntryResult.metadata.validator)] CreateFolderError._path_validator = WriteError_validator @@ -11072,22 +11070,22 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): } CreateFolderResult.metadata.validator = FolderMetadata_validator -CreateFolderResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['metadata'])) +CreateFolderResult._all_field_names_ = FileOpsResult._all_field_names_.union({'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([ +DeleteArg._all_field_names_ = { 'path', 'parent_rev', -]) +} DeleteArg._all_fields_ = [ ('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_field_names_ = {'entries'} DeleteBatchArg._all_fields_ = [('entries', DeleteBatchArg.entries.validator)] DeleteBatchError._too_many_write_operations_validator = bv.Void() @@ -11123,11 +11121,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeleteBatchLaunch.other = DeleteBatchLaunch('other') DeleteBatchResult.entries.validator = bv.List(DeleteBatchResultEntry_validator) -DeleteBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) +DeleteBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union({'entries'}) DeleteBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', DeleteBatchResult.entries.validator)] DeleteBatchResultData.metadata.validator = Metadata_validator -DeleteBatchResultData._all_field_names_ = set(['metadata']) +DeleteBatchResultData._all_field_names_ = {'metadata'} DeleteBatchResultData._all_fields_ = [('metadata', DeleteBatchResultData.metadata.validator)] DeleteBatchResultEntry._success_validator = DeleteBatchResultData_validator @@ -11155,7 +11153,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeleteError.other = DeleteError('other') DeleteResult.metadata.validator = Metadata_validator -DeleteResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['metadata'])) +DeleteResult._all_field_names_ = FileOpsResult._all_field_names_.union({'metadata'}) DeleteResult._all_fields_ = FileOpsResult._all_fields_ + [('metadata', DeleteResult.metadata.validator)] Metadata.name.validator = bv.String() @@ -11163,13 +11161,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +Metadata._field_names_ = { 'name', 'path_lower', 'path_display', 'parent_shared_folder_id', 'preview_url', -]) +} Metadata._all_field_names_ = Metadata._field_names_ Metadata._fields_ = [ ('name', Metadata.name.validator), @@ -11192,17 +11190,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): } Metadata._is_catch_all_ = False -DeletedMetadata._field_names_ = set([]) +DeletedMetadata._field_names_ = set() DeletedMetadata._all_field_names_ = Metadata._all_field_names_.union(DeletedMetadata._field_names_) DeletedMetadata._fields_ = [] DeletedMetadata._all_fields_ = Metadata._all_fields_ + DeletedMetadata._fields_ Dimensions.height.validator = bv.UInt64() Dimensions.width.validator = bv.UInt64() -Dimensions._all_field_names_ = set([ +Dimensions._all_field_names_ = { 'height', 'width', -]) +} Dimensions._all_fields_ = [ ('height', Dimensions.height.validator), ('width', Dimensions.width.validator), @@ -11210,10 +11208,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DownloadArg.path.validator = ReadPath_validator DownloadArg.rev.validator = bv.Nullable(Rev_validator) -DownloadArg._all_field_names_ = set([ +DownloadArg._all_field_names_ = { 'path', 'rev', -]) +} DownloadArg._all_fields_ = [ ('path', DownloadArg.path.validator), ('rev', DownloadArg.rev.validator), @@ -11232,7 +11230,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DownloadError.other = DownloadError('other') DownloadZipArg.path.validator = ReadPath_validator -DownloadZipArg._all_field_names_ = set(['path']) +DownloadZipArg._all_field_names_ = {'path'} DownloadZipArg._all_fields_ = [('path', DownloadZipArg.path.validator)] DownloadZipError._path_validator = LookupError_validator @@ -11251,15 +11249,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DownloadZipError.other = DownloadZipError('other') DownloadZipResult.metadata.validator = FolderMetadata_validator -DownloadZipResult._all_field_names_ = set(['metadata']) +DownloadZipResult._all_field_names_ = {'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([ +ExportArg._all_field_names_ = { 'path', 'export_format', -]) +} ExportArg._all_fields_ = [ ('path', ExportArg.path.validator), ('export_format', ExportArg.export_format.validator), @@ -11285,10 +11283,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExportInfo.export_as.validator = bv.Nullable(bv.String()) ExportInfo.export_options.validator = bv.Nullable(bv.List(bv.String())) -ExportInfo._all_field_names_ = set([ +ExportInfo._all_field_names_ = { 'export_as', 'export_options', -]) +} ExportInfo._all_fields_ = [ ('export_as', ExportInfo.export_as.validator), ('export_options', ExportInfo.export_options.validator), @@ -11298,12 +11296,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ExportMetadata._all_field_names_ = { 'name', 'size', 'export_hash', 'paper_revision', -]) +} ExportMetadata._all_fields_ = [ ('name', ExportMetadata.name.validator), ('size', ExportMetadata.size.validator), @@ -11313,10 +11311,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExportResult.export_metadata.validator = ExportMetadata_validator ExportResult.file_metadata.validator = FileMetadata_validator -ExportResult._all_field_names_ = set([ +ExportResult._all_field_names_ = { 'export_metadata', 'file_metadata', -]) +} ExportResult._all_fields_ = [ ('export_metadata', ExportResult.export_metadata.validator), ('file_metadata', ExportResult.file_metadata.validator), @@ -11360,7 +11358,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileCategory.other = FileCategory('other') FileLock.content.validator = FileLockContent_validator -FileLock._all_field_names_ = set(['content']) +FileLock._all_field_names_ = {'content'} FileLock._all_fields_ = [('content', FileLock.content.validator)] FileLockContent._unlocked_validator = bv.Void() @@ -11379,12 +11377,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +FileLockMetadata._all_field_names_ = { 'is_lockholder', 'lockholder_name', 'lockholder_account_id', 'created', -]) +} FileLockMetadata._all_fields_ = [ ('is_lockholder', FileLockMetadata.is_lockholder.validator), ('lockholder_name', FileLockMetadata.lockholder_name.validator), @@ -11406,7 +11404,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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._field_names_ = set([ +FileMetadata._field_names_ = { 'id', 'client_modified', 'server_modified', @@ -11421,7 +11419,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'has_explicit_shared_members', 'content_hash', 'file_lock_info', -]) +} FileMetadata._all_field_names_ = Metadata._all_field_names_.union(FileMetadata._field_names_) FileMetadata._fields_ = [ ('id', FileMetadata.id.validator), @@ -11442,15 +11440,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileMetadata._all_fields_ = Metadata._all_fields_ + FileMetadata._fields_ SharingInfo.read_only.validator = bv.Boolean() -SharingInfo._all_field_names_ = set(['read_only']) +SharingInfo._all_field_names_ = {'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([ +FileSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union({ '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), @@ -11473,12 +11471,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +FolderMetadata._field_names_ = { '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), @@ -11492,12 +11490,12 @@ 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([ +FolderSharingInfo._all_field_names_ = SharingInfo._all_field_names_.union({ '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), @@ -11506,7 +11504,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GetCopyReferenceArg.path.validator = ReadPath_validator -GetCopyReferenceArg._all_field_names_ = set(['path']) +GetCopyReferenceArg._all_field_names_ = {'path'} GetCopyReferenceArg._all_fields_ = [('path', GetCopyReferenceArg.path.validator)] GetCopyReferenceError._path_validator = LookupError_validator @@ -11521,11 +11519,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetCopyReferenceResult.metadata.validator = Metadata_validator GetCopyReferenceResult.copy_reference.validator = bv.String() GetCopyReferenceResult.expires.validator = common.DropboxTimestamp_validator -GetCopyReferenceResult._all_field_names_ = set([ +GetCopyReferenceResult._all_field_names_ = { 'metadata', 'copy_reference', 'expires', -]) +} GetCopyReferenceResult._all_fields_ = [ ('metadata', GetCopyReferenceResult.metadata.validator), ('copy_reference', GetCopyReferenceResult.copy_reference.validator), @@ -11533,15 +11531,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GetTagsArg.paths.validator = bv.List(Path_validator) -GetTagsArg._all_field_names_ = set(['paths']) +GetTagsArg._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'path'} GetTemporaryLinkArg._all_fields_ = [('path', GetTemporaryLinkArg.path.validator)] GetTemporaryLinkError._path_validator = LookupError_validator @@ -11564,10 +11562,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetTemporaryLinkResult.metadata.validator = FileMetadata_validator GetTemporaryLinkResult.link.validator = bv.String() -GetTemporaryLinkResult._all_field_names_ = set([ +GetTemporaryLinkResult._all_field_names_ = { 'metadata', 'link', -]) +} GetTemporaryLinkResult._all_fields_ = [ ('metadata', GetTemporaryLinkResult.metadata.validator), ('link', GetTemporaryLinkResult.link.validator), @@ -11575,21 +11573,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetTemporaryUploadLinkArg.commit_info.validator = CommitInfo_validator GetTemporaryUploadLinkArg.duration.validator = bv.Float64(min_value=60.0, max_value=14400.0) -GetTemporaryUploadLinkArg._all_field_names_ = set([ +GetTemporaryUploadLinkArg._all_field_names_ = { 'commit_info', 'duration', -]) +} GetTemporaryUploadLinkArg._all_fields_ = [ ('commit_info', GetTemporaryUploadLinkArg.commit_info.validator), ('duration', GetTemporaryUploadLinkArg.duration.validator), ] GetTemporaryUploadLinkResult.link.validator = bv.String() -GetTemporaryUploadLinkResult._all_field_names_ = set(['link']) +GetTemporaryUploadLinkResult._all_field_names_ = {'link'} GetTemporaryUploadLinkResult._all_fields_ = [('link', GetTemporaryUploadLinkResult.link.validator)] GetThumbnailBatchArg.entries.validator = bv.List(ThumbnailArg_validator) -GetThumbnailBatchArg._all_field_names_ = set(['entries']) +GetThumbnailBatchArg._all_field_names_ = {'entries'} GetThumbnailBatchArg._all_fields_ = [('entries', GetThumbnailBatchArg.entries.validator)] GetThumbnailBatchError._too_many_files_validator = bv.Void() @@ -11603,15 +11601,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetThumbnailBatchError.other = GetThumbnailBatchError('other') GetThumbnailBatchResult.entries.validator = bv.List(GetThumbnailBatchResultEntry_validator) -GetThumbnailBatchResult._all_field_names_ = set(['entries']) +GetThumbnailBatchResult._all_field_names_ = {'entries'} GetThumbnailBatchResult._all_fields_ = [('entries', GetThumbnailBatchResult.entries.validator)] GetThumbnailBatchResultData.metadata.validator = FileMetadata_validator GetThumbnailBatchResultData.thumbnail.validator = bv.String() -GetThumbnailBatchResultData._all_field_names_ = set([ +GetThumbnailBatchResultData._all_field_names_ = { 'metadata', 'thumbnail', -]) +} GetThumbnailBatchResultData._all_fields_ = [ ('metadata', GetThumbnailBatchResultData.metadata.validator), ('thumbnail', GetThumbnailBatchResultData.thumbnail.validator), @@ -11630,10 +11628,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GpsCoordinates.latitude.validator = bv.Float64() GpsCoordinates.longitude.validator = bv.Float64() -GpsCoordinates._all_field_names_ = set([ +GpsCoordinates._all_field_names_ = { 'latitude', 'longitude', -]) +} GpsCoordinates._all_fields_ = [ ('latitude', GpsCoordinates.latitude.validator), ('longitude', GpsCoordinates.longitude.validator), @@ -11641,10 +11639,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): HighlightSpan.highlight_str.validator = bv.String() HighlightSpan.is_highlighted.validator = bv.Boolean() -HighlightSpan._all_field_names_ = set([ +HighlightSpan._all_field_names_ = { 'highlight_str', 'is_highlighted', -]) +} HighlightSpan._all_fields_ = [ ('highlight_str', HighlightSpan.highlight_str.validator), ('is_highlighted', HighlightSpan.is_highlighted.validator), @@ -11676,7 +11674,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFolderArg.shared_link.validator = bv.Nullable(SharedLink_validator) ListFolderArg.include_property_groups.validator = bv.Nullable(file_properties.TemplateFilterBase_validator) ListFolderArg.include_non_downloadable_files.validator = bv.Boolean() -ListFolderArg._all_field_names_ = set([ +ListFolderArg._all_field_names_ = { 'path', 'recursive', 'include_media_info', @@ -11687,7 +11685,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'shared_link', 'include_property_groups', 'include_non_downloadable_files', -]) +} ListFolderArg._all_fields_ = [ ('path', ListFolderArg.path.validator), ('recursive', ListFolderArg.recursive.validator), @@ -11702,7 +11700,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ListFolderContinueArg.cursor.validator = ListFolderCursor_validator -ListFolderContinueArg._all_field_names_ = set(['cursor']) +ListFolderContinueArg._all_field_names_ = {'cursor'} ListFolderContinueArg._all_fields_ = [('cursor', ListFolderContinueArg.cursor.validator)] ListFolderContinueError._path_validator = LookupError_validator @@ -11729,15 +11727,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFolderError.other = ListFolderError('other') ListFolderGetLatestCursorResult.cursor.validator = ListFolderCursor_validator -ListFolderGetLatestCursorResult._all_field_names_ = set(['cursor']) +ListFolderGetLatestCursorResult._all_field_names_ = {'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([ +ListFolderLongpollArg._all_field_names_ = { 'cursor', 'timeout', -]) +} ListFolderLongpollArg._all_fields_ = [ ('cursor', ListFolderLongpollArg.cursor.validator), ('timeout', ListFolderLongpollArg.timeout.validator), @@ -11755,10 +11753,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFolderLongpollResult.changes.validator = bv.Boolean() ListFolderLongpollResult.backoff.validator = bv.Nullable(bv.UInt64()) -ListFolderLongpollResult._all_field_names_ = set([ +ListFolderLongpollResult._all_field_names_ = { 'changes', 'backoff', -]) +} ListFolderLongpollResult._all_fields_ = [ ('changes', ListFolderLongpollResult.changes.validator), ('backoff', ListFolderLongpollResult.backoff.validator), @@ -11767,11 +11765,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFolderResult.entries.validator = bv.List(Metadata_validator) ListFolderResult.cursor.validator = ListFolderCursor_validator ListFolderResult.has_more.validator = bv.Boolean() -ListFolderResult._all_field_names_ = set([ +ListFolderResult._all_field_names_ = { 'entries', 'cursor', 'has_more', -]) +} ListFolderResult._all_fields_ = [ ('entries', ListFolderResult.entries.validator), ('cursor', ListFolderResult.cursor.validator), @@ -11781,11 +11779,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListRevisionsArg.path.validator = PathOrId_validator ListRevisionsArg.mode.validator = ListRevisionsMode_validator ListRevisionsArg.limit.validator = bv.UInt64(min_value=1, max_value=100) -ListRevisionsArg._all_field_names_ = set([ +ListRevisionsArg._all_field_names_ = { 'path', 'mode', 'limit', -]) +} ListRevisionsArg._all_fields_ = [ ('path', ListRevisionsArg.path.validator), ('mode', ListRevisionsArg.mode.validator), @@ -11817,11 +11815,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListRevisionsResult.is_deleted.validator = bv.Boolean() ListRevisionsResult.server_deleted.validator = bv.Nullable(common.DropboxTimestamp_validator) ListRevisionsResult.entries.validator = bv.List(FileMetadata_validator) -ListRevisionsResult._all_field_names_ = set([ +ListRevisionsResult._all_field_names_ = { 'is_deleted', 'server_deleted', 'entries', -]) +} ListRevisionsResult._all_fields_ = [ ('is_deleted', ListRevisionsResult.is_deleted.validator), ('server_deleted', ListRevisionsResult.server_deleted.validator), @@ -11829,19 +11827,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LockConflictError.lock.validator = FileLock_validator -LockConflictError._all_field_names_ = set(['lock']) +LockConflictError._all_field_names_ = {'lock'} LockConflictError._all_fields_ = [('lock', LockConflictError.lock.validator)] LockFileArg.path.validator = WritePathOrId_validator -LockFileArg._all_field_names_ = set(['path']) +LockFileArg._all_field_names_ = {'path'} LockFileArg._all_fields_ = [('path', LockFileArg.path.validator)] LockFileBatchArg.entries.validator = bv.List(LockFileArg_validator) -LockFileBatchArg._all_field_names_ = set(['entries']) +LockFileBatchArg._all_field_names_ = {'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_field_names_ = FileOpsResult._all_field_names_.union({'entries'}) LockFileBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', LockFileBatchResult.entries.validator)] LockFileError._path_lookup_validator = LookupError_validator @@ -11875,10 +11873,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LockFileResult.metadata.validator = Metadata_validator LockFileResult.lock.validator = FileLock_validator -LockFileResult._all_field_names_ = set([ +LockFileResult._all_field_names_ = { 'metadata', 'lock', -]) +} LockFileResult._all_fields_ = [ ('metadata', LockFileResult.metadata.validator), ('lock', LockFileResult.lock.validator), @@ -11930,11 +11928,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +MediaMetadata._field_names_ = { 'dimensions', 'location', 'time_taken', -]) +} MediaMetadata._all_field_names_ = MediaMetadata._field_names_ MediaMetadata._fields_ = [ ('dimensions', MediaMetadata.dimensions.validator), @@ -11966,12 +11964,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MinimalFileLinkMetadata.id.validator = bv.Nullable(Id_validator) MinimalFileLinkMetadata.path.validator = bv.Nullable(bv.String()) MinimalFileLinkMetadata.rev.validator = Rev_validator -MinimalFileLinkMetadata._all_field_names_ = set([ +MinimalFileLinkMetadata._all_field_names_ = { 'url', 'id', 'path', 'rev', -]) +} MinimalFileLinkMetadata._all_fields_ = [ ('url', MinimalFileLinkMetadata.url.validator), ('id', MinimalFileLinkMetadata.id.validator), @@ -11981,17 +11979,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelocationBatchArgBase.entries.validator = bv.List(RelocationPath_validator, min_items=1, max_items=1000) RelocationBatchArgBase.autorename.validator = bv.Boolean() -RelocationBatchArgBase._all_field_names_ = set([ +RelocationBatchArgBase._all_field_names_ = { 'entries', 'autorename', -]) +} RelocationBatchArgBase._all_fields_ = [ ('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_field_names_ = RelocationBatchArgBase._all_field_names_.union({'allow_ownership_transfer'}) MoveBatchArg._all_fields_ = RelocationBatchArgBase._all_fields_ + [('allow_ownership_transfer', MoveBatchArg.allow_ownership_transfer.validator)] MoveIntoFamilyError._is_shared_folder_validator = bv.Void() @@ -12035,10 +12033,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperCreateArg.path.validator = Path_validator PaperCreateArg.import_format.validator = ImportFormat_validator -PaperCreateArg._all_field_names_ = set([ +PaperCreateArg._all_field_names_ = { 'path', 'import_format', -]) +} PaperCreateArg._all_fields_ = [ ('path', PaperCreateArg.path.validator), ('import_format', PaperCreateArg.import_format.validator), @@ -12065,12 +12063,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperCreateResult.result_path.validator = bv.String() PaperCreateResult.file_id.validator = FileId_validator PaperCreateResult.paper_revision.validator = bv.Int64() -PaperCreateResult._all_field_names_ = set([ +PaperCreateResult._all_field_names_ = { 'url', 'result_path', 'file_id', 'paper_revision', -]) +} PaperCreateResult._all_fields_ = [ ('url', PaperCreateResult.url.validator), ('result_path', PaperCreateResult.result_path.validator), @@ -12101,12 +12099,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +PaperUpdateArg._all_field_names_ = { 'path', 'import_format', 'doc_update_policy', 'paper_revision', -]) +} PaperUpdateArg._all_fields_ = [ ('path', PaperUpdateArg.path.validator), ('import_format', PaperUpdateArg.import_format.validator), @@ -12131,7 +12129,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperUpdateError.doc_deleted = PaperUpdateError('doc_deleted') PaperUpdateResult.paper_revision.validator = bv.Int64() -PaperUpdateResult._all_field_names_ = set(['paper_revision']) +PaperUpdateResult._all_field_names_ = {'paper_revision'} PaperUpdateResult._all_fields_ = [('paper_revision', PaperUpdateResult.paper_revision.validator)] PathOrLink._path_validator = ReadPath_validator @@ -12147,26 +12145,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PathToTags.path.validator = Path_validator PathToTags.tags.validator = bv.List(Tag_validator) -PathToTags._all_field_names_ = set([ +PathToTags._all_field_names_ = { 'path', 'tags', -]) +} PathToTags._all_fields_ = [ ('path', PathToTags.path.validator), ('tags', PathToTags.tags.validator), ] -PhotoMetadata._field_names_ = set([]) +PhotoMetadata._field_names_ = set() PhotoMetadata._all_field_names_ = MediaMetadata._all_field_names_.union(PhotoMetadata._field_names_) PhotoMetadata._fields_ = [] PhotoMetadata._all_fields_ = MediaMetadata._all_fields_ + PhotoMetadata._fields_ PreviewArg.path.validator = ReadPath_validator PreviewArg.rev.validator = bv.Nullable(Rev_validator) -PreviewArg._all_field_names_ = set([ +PreviewArg._all_field_names_ = { 'path', 'rev', -]) +} PreviewArg._all_fields_ = [ ('path', PreviewArg.path.validator), ('rev', PreviewArg.rev.validator), @@ -12189,10 +12187,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PreviewResult.file_metadata.validator = bv.Nullable(FileMetadata_validator) PreviewResult.link_metadata.validator = bv.Nullable(MinimalFileLinkMetadata_validator) -PreviewResult._all_field_names_ = set([ +PreviewResult._all_field_names_ = { 'file_metadata', 'link_metadata', -]) +} PreviewResult._all_fields_ = [ ('file_metadata', PreviewResult.file_metadata.validator), ('link_metadata', PreviewResult.link_metadata.validator), @@ -12200,10 +12198,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelocationPath.from_path.validator = WritePathOrId_validator RelocationPath.to_path.validator = WritePathOrId_validator -RelocationPath._all_field_names_ = set([ +RelocationPath._all_field_names_ = { 'from_path', 'to_path', -]) +} RelocationPath._all_fields_ = [ ('from_path', RelocationPath.from_path.validator), ('to_path', RelocationPath.to_path.validator), @@ -12212,11 +12210,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +RelocationArg._all_field_names_ = RelocationPath._all_field_names_.union({ '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), @@ -12225,10 +12223,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelocationBatchArg.allow_shared_folder.validator = bv.Boolean() RelocationBatchArg.allow_ownership_transfer.validator = bv.Boolean() -RelocationBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union(set([ +RelocationBatchArg._all_field_names_ = RelocationBatchArgBase._all_field_names_.union({ '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), @@ -12320,11 +12318,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelocationBatchLaunch.other = RelocationBatchLaunch('other') RelocationBatchResult.entries.validator = bv.List(RelocationBatchResultData_validator) -RelocationBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union(set(['entries'])) +RelocationBatchResult._all_field_names_ = FileOpsResult._all_field_names_.union({'entries'}) RelocationBatchResult._all_fields_ = FileOpsResult._all_fields_ + [('entries', RelocationBatchResult.entries.validator)] RelocationBatchResultData.metadata.validator = Metadata_validator -RelocationBatchResultData._all_field_names_ = set(['metadata']) +RelocationBatchResultData._all_field_names_ = {'metadata'} RelocationBatchResultData._all_fields_ = [('metadata', RelocationBatchResultData.metadata.validator)] RelocationBatchResultEntry._success_validator = Metadata_validator @@ -12351,19 +12349,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = FileOpsResult._all_field_names_.union({'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_field_names_ = FileOpsResult._all_field_names_.union({'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([ +RemoveTagArg._all_field_names_ = { 'path', 'tag_text', -]) +} RemoveTagArg._all_fields_ = [ ('path', RemoveTagArg.path.validator), ('tag_text', RemoveTagArg.tag_text.validator), @@ -12379,10 +12377,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RestoreArg.path.validator = WritePath_validator RestoreArg.rev.validator = Rev_validator -RestoreArg._all_field_names_ = set([ +RestoreArg._all_field_names_ = { 'path', 'rev', -]) +} RestoreArg._all_fields_ = [ ('path', RestoreArg.path.validator), ('rev', RestoreArg.rev.validator), @@ -12407,10 +12405,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SaveCopyReferenceArg.copy_reference.validator = bv.String() SaveCopyReferenceArg.path.validator = Path_validator -SaveCopyReferenceArg._all_field_names_ = set([ +SaveCopyReferenceArg._all_field_names_ = { 'copy_reference', 'path', -]) +} SaveCopyReferenceArg._all_fields_ = [ ('copy_reference', SaveCopyReferenceArg.copy_reference.validator), ('path', SaveCopyReferenceArg.path.validator), @@ -12438,15 +12436,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SaveCopyReferenceError.other = SaveCopyReferenceError('other') SaveCopyReferenceResult.metadata.validator = Metadata_validator -SaveCopyReferenceResult._all_field_names_ = set(['metadata']) +SaveCopyReferenceResult._all_field_names_ = {'metadata'} SaveCopyReferenceResult._all_fields_ = [('metadata', SaveCopyReferenceResult.metadata.validator)] SaveUrlArg.path.validator = Path_validator SaveUrlArg.url.validator = bv.String() -SaveUrlArg._all_field_names_ = set([ +SaveUrlArg._all_field_names_ = { 'path', 'url', -]) +} SaveUrlArg._all_fields_ = [ ('path', SaveUrlArg.path.validator), ('url', SaveUrlArg.url.validator), @@ -12489,13 +12487,13 @@ 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([ +SearchArg._all_field_names_ = { 'path', 'query', 'start', 'max_results', 'mode', -]) +} SearchArg._all_fields_ = [ ('path', SearchArg.path.validator), ('query', SearchArg.query.validator), @@ -12520,17 +12518,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchMatch.match_type.validator = SearchMatchType_validator SearchMatch.metadata.validator = Metadata_validator -SearchMatch._all_field_names_ = set([ +SearchMatch._all_field_names_ = { 'match_type', 'metadata', -]) +} SearchMatch._all_fields_ = [ ('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_field_names_ = {'include_highlights'} SearchMatchFieldOptions._all_fields_ = [('include_highlights', SearchMatchFieldOptions.include_highlights.validator)] SearchMatchType._filename_validator = bv.Void() @@ -12568,11 +12566,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +SearchMatchV2._all_field_names_ = { 'metadata', 'match_type', 'highlight_spans', -]) +} SearchMatchV2._all_fields_ = [ ('metadata', SearchMatchV2.metadata.validator), ('match_type', SearchMatchV2.match_type.validator), @@ -12600,7 +12598,7 @@ 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([ +SearchOptions._all_field_names_ = { 'path', 'max_results', 'order_by', @@ -12609,7 +12607,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'file_extensions', 'file_categories', 'account_id', -]) +} SearchOptions._all_fields_ = [ ('path', SearchOptions.path.validator), ('max_results', SearchOptions.max_results.validator), @@ -12637,11 +12635,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SearchResult.matches.validator = bv.List(SearchMatch_validator) SearchResult.more.validator = bv.Boolean() SearchResult.start.validator = bv.UInt64() -SearchResult._all_field_names_ = set([ +SearchResult._all_field_names_ = { 'matches', 'more', 'start', -]) +} SearchResult._all_fields_ = [ ('matches', SearchResult.matches.validator), ('more', SearchResult.more.validator), @@ -12652,12 +12650,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +SearchV2Arg._all_field_names_ = { 'query', 'options', 'match_field_options', 'include_highlights', -]) +} SearchV2Arg._all_fields_ = [ ('query', SearchV2Arg.query.validator), ('options', SearchV2Arg.options.validator), @@ -12666,17 +12664,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SearchV2ContinueArg.cursor.validator = SearchV2Cursor_validator -SearchV2ContinueArg._all_field_names_ = set(['cursor']) +SearchV2ContinueArg._all_field_names_ = {'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([ +SearchV2Result._all_field_names_ = { 'matches', 'has_more', 'cursor', -]) +} SearchV2Result._all_fields_ = [ ('matches', SearchV2Result.matches.validator), ('has_more', SearchV2Result.has_more.validator), @@ -12685,10 +12683,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLink.url.validator = SharedLinkUrl_validator SharedLink.password.validator = bv.Nullable(bv.String()) -SharedLink._all_field_names_ = set([ +SharedLink._all_field_names_ = { 'url', 'password', -]) +} SharedLink._all_fields_ = [ ('url', SharedLink.url.validator), ('password', SharedLink.password.validator), @@ -12697,11 +12695,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkFileInfo.url.validator = bv.String() SharedLinkFileInfo.path.validator = bv.Nullable(bv.String()) SharedLinkFileInfo.password.validator = bv.Nullable(bv.String()) -SharedLinkFileInfo._all_field_names_ = set([ +SharedLinkFileInfo._all_field_names_ = { 'url', 'path', 'password', -]) +} SharedLinkFileInfo._all_fields_ = [ ('url', SharedLinkFileInfo.url.validator), ('path', SharedLinkFileInfo.path.validator), @@ -12711,11 +12709,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +SingleUserLock._all_field_names_ = { '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), @@ -12723,7 +12721,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SymlinkInfo.target.validator = bv.String() -SymlinkInfo._all_field_names_ = set(['target']) +SymlinkInfo._all_field_names_ = {'target'} SymlinkInfo._all_fields_ = [('target', SymlinkInfo.target.validator)] SyncSetting._default_validator = bv.Void() @@ -12783,12 +12781,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailArg.format.validator = ThumbnailFormat_validator ThumbnailArg.size.validator = ThumbnailSize_validator ThumbnailArg.mode.validator = ThumbnailMode_validator -ThumbnailArg._all_field_names_ = set([ +ThumbnailArg._all_field_names_ = { 'path', 'format', 'size', 'mode', -]) +} ThumbnailArg._all_fields_ = [ ('path', ThumbnailArg.path.validator), ('format', ThumbnailArg.format.validator), @@ -12869,12 +12867,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailV2Arg.format.validator = ThumbnailFormat_validator ThumbnailV2Arg.size.validator = ThumbnailSize_validator ThumbnailV2Arg.mode.validator = ThumbnailMode_validator -ThumbnailV2Arg._all_field_names_ = set([ +ThumbnailV2Arg._all_field_names_ = { 'resource', 'format', 'size', 'mode', -]) +} ThumbnailV2Arg._all_fields_ = [ ('resource', ThumbnailV2Arg.resource.validator), ('format', ThumbnailV2Arg.format.validator), @@ -12907,15 +12905,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ThumbnailV2Error.other = ThumbnailV2Error('other') UnlockFileArg.path.validator = WritePathOrId_validator -UnlockFileArg._all_field_names_ = set(['path']) +UnlockFileArg._all_field_names_ = {'path'} UnlockFileArg._all_fields_ = [('path', UnlockFileArg.path.validator)] UnlockFileBatchArg.entries.validator = bv.List(UnlockFileArg_validator) -UnlockFileBatchArg._all_field_names_ = set(['entries']) +UnlockFileBatchArg._all_field_names_ = {'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_field_names_ = CommitInfo._all_field_names_.union({'content_hash'}) UploadArg._all_fields_ = CommitInfo._all_fields_ + [('content_hash', UploadArg.content_hash.validator)] UploadError._path_validator = UploadWriteFailed_validator @@ -12938,11 +12936,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionAppendArg.cursor.validator = UploadSessionCursor_validator UploadSessionAppendArg.close.validator = bv.Boolean() UploadSessionAppendArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionAppendArg._all_field_names_ = set([ +UploadSessionAppendArg._all_field_names_ = { 'cursor', 'close', 'content_hash', -]) +} UploadSessionAppendArg._all_fields_ = [ ('cursor', UploadSessionAppendArg.cursor.validator), ('close', UploadSessionAppendArg.close.validator), @@ -12989,10 +12987,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionCursor.session_id.validator = bv.String() UploadSessionCursor.offset.validator = bv.UInt64() -UploadSessionCursor._all_field_names_ = set([ +UploadSessionCursor._all_field_names_ = { 'session_id', 'offset', -]) +} UploadSessionCursor._all_fields_ = [ ('session_id', UploadSessionCursor.session_id.validator), ('offset', UploadSessionCursor.offset.validator), @@ -13001,11 +12999,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionFinishArg.cursor.validator = UploadSessionCursor_validator UploadSessionFinishArg.commit.validator = CommitInfo_validator UploadSessionFinishArg.content_hash.validator = bv.Nullable(Sha256HexHash_validator) -UploadSessionFinishArg._all_field_names_ = set([ +UploadSessionFinishArg._all_field_names_ = { 'cursor', 'commit', 'content_hash', -]) +} UploadSessionFinishArg._all_fields_ = [ ('cursor', UploadSessionFinishArg.cursor.validator), ('commit', UploadSessionFinishArg.commit.validator), @@ -13013,7 +13011,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] UploadSessionFinishBatchArg.entries.validator = bv.List(UploadSessionFinishArg_validator, max_items=1000) -UploadSessionFinishBatchArg._all_field_names_ = set(['entries']) +UploadSessionFinishBatchArg._all_field_names_ = {'entries'} UploadSessionFinishBatchArg._all_fields_ = [('entries', UploadSessionFinishBatchArg.entries.validator)] UploadSessionFinishBatchJobStatus._complete_validator = UploadSessionFinishBatchResult_validator @@ -13033,7 +13031,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionFinishBatchLaunch.other = UploadSessionFinishBatchLaunch('other') UploadSessionFinishBatchResult.entries.validator = bv.List(UploadSessionFinishBatchResultEntry_validator) -UploadSessionFinishBatchResult._all_field_names_ = set(['entries']) +UploadSessionFinishBatchResult._all_field_names_ = {'entries'} UploadSessionFinishBatchResult._all_fields_ = [('entries', UploadSessionFinishBatchResult.entries.validator)] UploadSessionFinishBatchResultEntry._success_validator = FileMetadata_validator @@ -13078,17 +13076,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionFinishError.other = UploadSessionFinishError('other') UploadSessionOffsetError.correct_offset.validator = bv.UInt64() -UploadSessionOffsetError._all_field_names_ = set(['correct_offset']) +UploadSessionOffsetError._all_field_names_ = {'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([ +UploadSessionStartArg._all_field_names_ = { 'close', 'session_type', 'content_hash', -]) +} UploadSessionStartArg._all_fields_ = [ ('close', UploadSessionStartArg.close.validator), ('session_type', UploadSessionStartArg.session_type.validator), @@ -13097,17 +13095,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +UploadSessionStartBatchArg._all_field_names_ = { 'session_type', 'num_sessions', -]) +} UploadSessionStartBatchArg._all_fields_ = [ ('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_field_names_ = {'session_ids'} UploadSessionStartBatchResult._all_fields_ = [('session_ids', UploadSessionStartBatchResult.session_ids.validator)] UploadSessionStartError._concurrent_session_data_not_allowed_validator = bv.Void() @@ -13130,7 +13128,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadSessionStartError.other = UploadSessionStartError('other') UploadSessionStartResult.session_id.validator = bv.String() -UploadSessionStartResult._all_field_names_ = set(['session_id']) +UploadSessionStartResult._all_field_names_ = {'session_id'} UploadSessionStartResult._all_fields_ = [('session_id', UploadSessionStartResult.session_id.validator)] UploadSessionType._sequential_validator = bv.Void() @@ -13148,21 +13146,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UploadWriteFailed.reason.validator = WriteError_validator UploadWriteFailed.upload_session_id.validator = bv.String() -UploadWriteFailed._all_field_names_ = set([ +UploadWriteFailed._all_field_names_ = { 'reason', 'upload_session_id', -]) +} UploadWriteFailed._all_fields_ = [ ('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_field_names_ = {'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_ = {'duration'} VideoMetadata._all_field_names_ = MediaMetadata._all_field_names_.union(VideoMetadata._field_names_) VideoMetadata._fields_ = [('duration', VideoMetadata.duration.validator)] VideoMetadata._all_fields_ = MediaMetadata._all_fields_ + VideoMetadata._fields_ diff --git a/dropbox/oauth.py b/dropbox/oauth.py index eaf5d462..2fb577d5 100644 --- a/dropbox/oauth.py +++ b/dropbox/oauth.py @@ -14,7 +14,6 @@ import base64 import os -import six import urllib import re from datetime import datetime, timedelta @@ -26,18 +25,14 @@ DEFAULT_TIMEOUT, ) -if six.PY3: - url_path_quote = urllib.parse.quote # pylint: disable=no-member,useless-suppression - url_encode = urllib.parse.urlencode # pylint: disable=no-member,useless-suppression -else: - url_path_quote = urllib.quote # pylint: disable=no-member,useless-suppression - url_encode = urllib.urlencode # pylint: disable=no-member,useless-suppression +url_path_quote = urllib.parse.quote # pylint: disable=no-member,useless-suppression +url_encode = urllib.parse.urlencode # pylint: disable=no-member,useless-suppression TOKEN_ACCESS_TYPES = ['offline', 'online', 'legacy'] INCLUDE_GRANTED_SCOPES_TYPES = ['user', 'team'] PKCE_VERIFIER_LENGTH = 128 -class OAuth2FlowNoRedirectResult(object): +class OAuth2FlowNoRedirectResult: """ Authorization information for an OAuth2Flow performed with no redirect. """ @@ -67,7 +62,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({}, {}, {}, {}, {}, {})'.format( self.access_token, self.account_id, self.user_id, @@ -89,7 +84,7 @@ def __init__(self, access_token, account_id, user_id, url_state, refresh_token, :param str url_state: The url state that was set by :meth:`DropboxOAuth2Flow.start`. """ - super(OAuth2FlowResult, self).__init__( + super().__init__( access_token=access_token, account_id=account_id, user_id=user_id, @@ -105,7 +100,7 @@ def from_no_redirect_result(cls, result, url_state): url_state, result.refresh_token, result.expires_at, result.scope) def __repr__(self): - return 'OAuth2FlowResult(%s, %s, %s, %s, %s, %s, %s)' % ( + return 'OAuth2FlowResult({}, {}, {}, {}, {}, {}, {})'.format( self.access_token, self.account_id, self.user_id, @@ -116,7 +111,7 @@ def __repr__(self): ) -class DropboxOAuth2FlowBase(object): +class 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, @@ -233,9 +228,6 @@ def build_path(self, target, params=None): :return: The path and parameters components of an API URL. :rtype: str """ - if six.PY2 and isinstance(target, six.text_type): - target = target.encode('utf8') - target_path = url_path_quote(target) params = params or {} @@ -246,7 +238,7 @@ def build_path(self, target, params=None): if params: query_string = _params_to_urlencoded(params) - return "%s?%s" % (target_path, query_string) + return "{}?{}".format(target_path, query_string) else: return target_path @@ -260,7 +252,7 @@ def build_url(self, target, params=None, host=API_HOST): :return: The full API URL. :rtype: str """ - return "https://%s%s" % (host, self.build_path(target, params)) + return "https://{}{}".format(host, self.build_path(target, params)) class DropboxOAuth2FlowNoRedirect(DropboxOAuth2FlowBase): @@ -311,7 +303,7 @@ def __init__(self, consumer_key, consumer_secret=None, locale=None, token_access :param str ca_cert: path to CA certificate. If left blank, default certificate location \ will be used """ - super(DropboxOAuth2FlowNoRedirect, self).__init__( + super().__init__( consumer_key=consumer_key, consumer_secret=consumer_secret, locale=locale, @@ -409,7 +401,7 @@ def __init__(self, consumer_key, redirect_uri, session, will be used """ - super(DropboxOAuth2Flow, self).__init__( + super().__init__( consumer_key=consumer_key, consumer_secret=consumer_secret, locale=locale, @@ -610,15 +602,15 @@ def _params_to_urlencoded(params): unicode objects which are utf8-encoded. """ def encode(o): - if isinstance(o, six.binary_type): + if isinstance(o, bytes): return o else: - if isinstance(o, six.text_type): + if isinstance(o, str): return o.encode('utf-8') else: return str(o).encode('utf-8') - utf8_params = {encode(k): encode(v) for k, v in six.iteritems(params)} + utf8_params = {encode(k): encode(v) for k, v in params.items()} return url_encode(utf8_params) def _generate_pkce_code_verifier(): diff --git a/dropbox/openid.py b/dropbox/openid.py index 1b540e04..d4b45741 100644 --- a/dropbox/openid.py +++ b/dropbox/openid.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -40,7 +38,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) OpenIdError_validator = bv.Union(OpenIdError) @@ -58,7 +56,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserInfoArgs_validator = bv.Struct(UserInfoArgs) @@ -111,7 +109,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserInfoError_validator = bv.Union(UserInfoError) @@ -183,7 +181,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserInfoResult_validator = bv.Struct(UserInfoResult) @@ -197,7 +195,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): OpenIdError.incorrect_openid_scopes = OpenIdError('incorrect_openid_scopes') OpenIdError.other = OpenIdError('other') -UserInfoArgs._all_field_names_ = set([]) +UserInfoArgs._all_field_names_ = set() UserInfoArgs._all_fields_ = [] UserInfoError._openid_error_validator = OpenIdError_validator @@ -215,14 +213,14 @@ 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([ +UserInfoResult._all_field_names_ = { 'family_name', 'given_name', 'email', 'email_verified', 'iss', 'sub', -]) +} UserInfoResult._all_fields_ = [ ('family_name', UserInfoResult.family_name.validator), ('given_name', UserInfoResult.given_name.validator), diff --git a/dropbox/paper.py b/dropbox/paper.py index b0a932f5..06f17792 100644 --- a/dropbox/paper.py +++ b/dropbox/paper.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa @@ -8,7 +7,6 @@ New Paper users will see docs they create in their filesystem as '.paper' files alongside their other Dropbox content. The /paper endpoints are being deprecated and you'll need to use /files and /sharing endpoints to interact with their Paper content. Read more in the `Paper Migration Guide `_. """ -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -46,7 +44,7 @@ def __init__(self, member = bb.Attribute("member", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddMember, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) AddMember_validator = bv.Struct(AddMember) @@ -71,7 +69,7 @@ def __init__(self, doc_id = bb.Attribute("doc_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(RefPaperDoc, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) RefPaperDoc_validator = bv.Struct(RefPaperDoc) @@ -98,7 +96,7 @@ def __init__(self, members=None, custom_message=None, quiet=None): - super(AddPaperDocUser, self).__init__(doc_id) + super().__init__(doc_id) self._members_value = bb.NOT_SET self._custom_message_value = bb.NOT_SET self._quiet_value = bb.NOT_SET @@ -119,7 +117,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddPaperDocUser_validator = bv.Struct(AddPaperDocUser) @@ -158,7 +156,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddPaperDocUserMemberResult_validator = bv.Struct(AddPaperDocUserMemberResult) @@ -267,7 +265,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AddPaperDocUserResult_validator = bv.Union(AddPaperDocUserResult) @@ -313,7 +311,7 @@ def __init__(self, expiration = bb.Attribute("expiration", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(Cursor, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) Cursor_validator = bv.Struct(Cursor) @@ -353,7 +351,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperApiBaseError_validator = bv.Union(PaperApiBaseError) @@ -378,7 +376,7 @@ def is_doc_not_found(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DocLookupError_validator = bv.Union(DocLookupError) @@ -443,7 +441,7 @@ def is_no_email(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DocSubscriptionLevel_validator = bv.Union(DocSubscriptionLevel) @@ -492,7 +490,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExportFormat_validator = bv.Union(ExportFormat) @@ -529,7 +527,7 @@ def __init__(self, name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(Folder, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) Folder_validator = bv.Struct(Folder) @@ -571,7 +569,7 @@ def is_invite_only(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FolderSharingPolicyType_validator = bv.Union(FolderSharingPolicyType) @@ -636,7 +634,7 @@ def is_weekly_emails(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FolderSubscriptionLevel_validator = bv.Union(FolderSubscriptionLevel) @@ -674,7 +672,7 @@ def __init__(self, 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()._process_custom_annotations(annotation_type, field_path, processor) FoldersContainingPaperDoc_validator = bv.Struct(FoldersContainingPaperDoc) @@ -739,7 +737,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ImportFormat_validator = bv.Union(ImportFormat) @@ -775,7 +773,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) InviteeInfoWithPermissionLevel_validator = bv.Struct(InviteeInfoWithPermissionLevel) @@ -828,7 +826,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListDocsCursorError_validator = bv.Union(ListDocsCursorError) @@ -885,7 +883,7 @@ def __init__(self, limit = bb.Attribute("limit") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListPaperDocsArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsArgs_validator = bv.Struct(ListPaperDocsArgs) @@ -913,7 +911,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsContinueArgs_validator = bv.Struct(ListPaperDocsContinueArgs) @@ -962,7 +960,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsFilterBy_validator = bv.Union(ListPaperDocsFilterBy) @@ -1017,7 +1015,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsResponse_validator = bv.Struct(ListPaperDocsResponse) @@ -1078,7 +1076,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsSortBy_validator = bv.Union(ListPaperDocsSortBy) @@ -1127,7 +1125,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListPaperDocsSortOrder_validator = bv.Union(ListPaperDocsSortOrder) @@ -1182,7 +1180,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListUsersCursorError_validator = bv.Union(ListUsersCursorError) @@ -1202,7 +1200,7 @@ class ListUsersOnFolderArgs(RefPaperDoc): def __init__(self, doc_id=None, limit=None): - super(ListUsersOnFolderArgs, self).__init__(doc_id) + super().__init__(doc_id) self._limit_value = bb.NOT_SET if limit is not None: self.limit = limit @@ -1211,7 +1209,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnFolderArgs_validator = bv.Struct(ListUsersOnFolderArgs) @@ -1232,7 +1230,7 @@ class ListUsersOnFolderContinueArgs(RefPaperDoc): def __init__(self, doc_id=None, cursor=None): - super(ListUsersOnFolderContinueArgs, self).__init__(doc_id) + super().__init__(doc_id) self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -1241,7 +1239,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnFolderContinueArgs_validator = bv.Struct(ListUsersOnFolderContinueArgs) @@ -1304,7 +1302,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnFolderResponse_validator = bv.Struct(ListUsersOnFolderResponse) @@ -1328,7 +1326,7 @@ def __init__(self, doc_id=None, limit=None, filter_by=None): - super(ListUsersOnPaperDocArgs, self).__init__(doc_id) + super().__init__(doc_id) self._limit_value = bb.NOT_SET self._filter_by_value = bb.NOT_SET if limit is not None: @@ -1343,7 +1341,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnPaperDocArgs_validator = bv.Struct(ListUsersOnPaperDocArgs) @@ -1364,7 +1362,7 @@ class ListUsersOnPaperDocContinueArgs(RefPaperDoc): def __init__(self, doc_id=None, cursor=None): - super(ListUsersOnPaperDocContinueArgs, self).__init__(doc_id) + super().__init__(doc_id) self._cursor_value = bb.NOT_SET if cursor is not None: self.cursor = cursor @@ -1373,7 +1371,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnPaperDocContinueArgs_validator = bv.Struct(ListUsersOnPaperDocContinueArgs) @@ -1447,7 +1445,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListUsersOnPaperDocResponse_validator = bv.Struct(ListUsersOnPaperDocResponse) @@ -1521,7 +1519,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperApiCursorError_validator = bv.Union(PaperApiCursorError) @@ -1557,7 +1555,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocCreateArgs_validator = bv.Struct(PaperDocCreateArgs) @@ -1620,7 +1618,7 @@ def is_image_size_exceeded(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocCreateError_validator = bv.Union(PaperDocCreateError) @@ -1665,7 +1663,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocCreateUpdateResult_validator = bv.Struct(PaperDocCreateUpdateResult) @@ -1680,7 +1678,7 @@ class PaperDocExport(RefPaperDoc): def __init__(self, doc_id=None, export_format=None): - super(PaperDocExport, self).__init__(doc_id) + super().__init__(doc_id) self._export_format_value = bb.NOT_SET if export_format is not None: self.export_format = export_format @@ -1689,7 +1687,7 @@ def __init__(self, export_format = bb.Attribute("export_format", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PaperDocExport, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) PaperDocExport_validator = bv.Struct(PaperDocExport) @@ -1743,7 +1741,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocExportResult_validator = bv.Struct(PaperDocExportResult) @@ -1792,7 +1790,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocPermissionLevel_validator = bv.Union(PaperDocPermissionLevel) @@ -1811,7 +1809,7 @@ class PaperDocSharingPolicy(RefPaperDoc): def __init__(self, doc_id=None, sharing_policy=None): - super(PaperDocSharingPolicy, self).__init__(doc_id) + super().__init__(doc_id) self._sharing_policy_value = bb.NOT_SET if sharing_policy is not None: self.sharing_policy = sharing_policy @@ -1820,7 +1818,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocSharingPolicy_validator = bv.Struct(PaperDocSharingPolicy) @@ -1847,7 +1845,7 @@ def __init__(self, doc_update_policy=None, revision=None, import_format=None): - super(PaperDocUpdateArgs, self).__init__(doc_id) + super().__init__(doc_id) self._doc_update_policy_value = bb.NOT_SET self._revision_value = bb.NOT_SET self._import_format_value = bb.NOT_SET @@ -1868,7 +1866,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocUpdateArgs_validator = bv.Struct(PaperDocUpdateArgs) @@ -1955,7 +1953,7 @@ def is_doc_deleted(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocUpdateError_validator = bv.Union(PaperDocUpdateError) @@ -2016,7 +2014,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocUpdatePolicy_validator = bv.Union(PaperDocUpdatePolicy) @@ -2067,7 +2065,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderCreateArg_validator = bv.Struct(PaperFolderCreateArg) @@ -2105,7 +2103,7 @@ def is_invalid_folder_id(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderCreateError_validator = bv.Union(PaperFolderCreateError) @@ -2131,7 +2129,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderCreateResult_validator = bv.Struct(PaperFolderCreateResult) @@ -2150,7 +2148,7 @@ class RemovePaperDocUser(RefPaperDoc): def __init__(self, doc_id=None, member=None): - super(RemovePaperDocUser, self).__init__(doc_id) + super().__init__(doc_id) self._member_value = bb.NOT_SET if member is not None: self.member = member @@ -2159,7 +2157,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemovePaperDocUser_validator = bv.Struct(RemovePaperDocUser) @@ -2197,7 +2195,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingPolicy_validator = bv.Struct(SharingPolicy) @@ -2250,7 +2248,7 @@ def is_invite_only(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharingTeamPolicyType_validator = bv.Union(SharingTeamPolicyType) @@ -2276,7 +2274,7 @@ def is_disabled(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharingPublicPolicyType_validator = bv.Union(SharingPublicPolicyType) @@ -2311,7 +2309,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserInfoWithPermissionLevel_validator = bv.Struct(UserInfoWithPermissionLevel) @@ -2361,7 +2359,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) UserOnPaperDocFilter_validator = bv.Union(UserOnPaperDocFilter) @@ -2369,27 +2367,27 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocId_validator = bv.String() AddMember.permission_level.validator = PaperDocPermissionLevel_validator AddMember.member.validator = sharing.MemberSelector_validator -AddMember._all_field_names_ = set([ +AddMember._all_field_names_ = { 'permission_level', 'member', -]) +} AddMember._all_fields_ = [ ('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_field_names_ = {'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([ +AddPaperDocUser._all_field_names_ = RefPaperDoc._all_field_names_.union({ 'members', 'custom_message', 'quiet', -])) +}) AddPaperDocUser._all_fields_ = RefPaperDoc._all_fields_ + [ ('members', AddPaperDocUser.members.validator), ('custom_message', AddPaperDocUser.custom_message.validator), @@ -2398,10 +2396,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddPaperDocUserMemberResult.member.validator = sharing.MemberSelector_validator AddPaperDocUserMemberResult.result.validator = AddPaperDocUserResult_validator -AddPaperDocUserMemberResult._all_field_names_ = set([ +AddPaperDocUserMemberResult._all_field_names_ = { 'member', 'result', -]) +} AddPaperDocUserMemberResult._all_fields_ = [ ('member', AddPaperDocUserMemberResult.member.validator), ('result', AddPaperDocUserMemberResult.result.validator), @@ -2437,10 +2435,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Cursor.value.validator = bv.String() Cursor.expiration.validator = bv.Nullable(common.DropboxTimestamp_validator) -Cursor._all_field_names_ = set([ +Cursor._all_field_names_ = { 'value', 'expiration', -]) +} Cursor._all_fields_ = [ ('value', Cursor.value.validator), ('expiration', Cursor.expiration.validator), @@ -2495,10 +2493,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Folder.id.validator = bv.String() Folder.name.validator = bv.String() -Folder._all_field_names_ = set([ +Folder._all_field_names_ = { 'id', 'name', -]) +} Folder._all_fields_ = [ ('id', Folder.id.validator), ('name', Folder.name.validator), @@ -2532,10 +2530,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FoldersContainingPaperDoc.folder_sharing_policy_type.validator = bv.Nullable(FolderSharingPolicyType_validator) FoldersContainingPaperDoc.folders.validator = bv.Nullable(bv.List(Folder_validator)) -FoldersContainingPaperDoc._all_field_names_ = set([ +FoldersContainingPaperDoc._all_field_names_ = { 'folder_sharing_policy_type', 'folders', -]) +} FoldersContainingPaperDoc._all_fields_ = [ ('folder_sharing_policy_type', FoldersContainingPaperDoc.folder_sharing_policy_type.validator), ('folders', FoldersContainingPaperDoc.folders.validator), @@ -2559,10 +2557,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): InviteeInfoWithPermissionLevel.invitee.validator = sharing.InviteeInfo_validator InviteeInfoWithPermissionLevel.permission_level.validator = PaperDocPermissionLevel_validator -InviteeInfoWithPermissionLevel._all_field_names_ = set([ +InviteeInfoWithPermissionLevel._all_field_names_ = { 'invitee', 'permission_level', -]) +} InviteeInfoWithPermissionLevel._all_fields_ = [ ('invitee', InviteeInfoWithPermissionLevel.invitee.validator), ('permission_level', InviteeInfoWithPermissionLevel.permission_level.validator), @@ -2581,12 +2579,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListPaperDocsArgs.sort_by.validator = ListPaperDocsSortBy_validator ListPaperDocsArgs.sort_order.validator = ListPaperDocsSortOrder_validator ListPaperDocsArgs.limit.validator = bv.Int32(min_value=1, max_value=1000) -ListPaperDocsArgs._all_field_names_ = set([ +ListPaperDocsArgs._all_field_names_ = { 'filter_by', 'sort_by', 'sort_order', 'limit', -]) +} ListPaperDocsArgs._all_fields_ = [ ('filter_by', ListPaperDocsArgs.filter_by.validator), ('sort_by', ListPaperDocsArgs.sort_by.validator), @@ -2595,7 +2593,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ListPaperDocsContinueArgs.cursor.validator = bv.String() -ListPaperDocsContinueArgs._all_field_names_ = set(['cursor']) +ListPaperDocsContinueArgs._all_field_names_ = {'cursor'} ListPaperDocsContinueArgs._all_fields_ = [('cursor', ListPaperDocsContinueArgs.cursor.validator)] ListPaperDocsFilterBy._docs_accessed_validator = bv.Void() @@ -2614,11 +2612,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListPaperDocsResponse.doc_ids.validator = bv.List(PaperDocId_validator) ListPaperDocsResponse.cursor.validator = Cursor_validator ListPaperDocsResponse.has_more.validator = bv.Boolean() -ListPaperDocsResponse._all_field_names_ = set([ +ListPaperDocsResponse._all_field_names_ = { 'doc_ids', 'cursor', 'has_more', -]) +} ListPaperDocsResponse._all_fields_ = [ ('doc_ids', ListPaperDocsResponse.doc_ids.validator), ('cursor', ListPaperDocsResponse.cursor.validator), @@ -2665,23 +2663,23 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = RefPaperDoc._all_field_names_.union({'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_field_names_ = RefPaperDoc._all_field_names_.union({'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([ +ListUsersOnFolderResponse._all_field_names_ = { 'invitees', 'users', 'cursor', 'has_more', -]) +} ListUsersOnFolderResponse._all_fields_ = [ ('invitees', ListUsersOnFolderResponse.invitees.validator), ('users', ListUsersOnFolderResponse.users.validator), @@ -2691,17 +2689,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListUsersOnPaperDocArgs._all_field_names_ = RefPaperDoc._all_field_names_.union({ 'limit', 'filter_by', -])) +}) ListUsersOnPaperDocArgs._all_fields_ = RefPaperDoc._all_fields_ + [ ('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_field_names_ = RefPaperDoc._all_field_names_.union({'cursor'}) ListUsersOnPaperDocContinueArgs._all_fields_ = RefPaperDoc._all_fields_ + [('cursor', ListUsersOnPaperDocContinueArgs.cursor.validator)] ListUsersOnPaperDocResponse.invitees.validator = bv.List(InviteeInfoWithPermissionLevel_validator) @@ -2709,13 +2707,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListUsersOnPaperDocResponse.doc_owner.validator = sharing.UserInfo_validator ListUsersOnPaperDocResponse.cursor.validator = Cursor_validator ListUsersOnPaperDocResponse.has_more.validator = bv.Boolean() -ListUsersOnPaperDocResponse._all_field_names_ = set([ +ListUsersOnPaperDocResponse._all_field_names_ = { 'invitees', 'users', 'doc_owner', 'cursor', 'has_more', -]) +} ListUsersOnPaperDocResponse._all_fields_ = [ ('invitees', ListUsersOnPaperDocResponse.invitees.validator), ('users', ListUsersOnPaperDocResponse.users.validator), @@ -2745,10 +2743,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocCreateArgs.parent_folder_id.validator = bv.Nullable(bv.String()) PaperDocCreateArgs.import_format.validator = ImportFormat_validator -PaperDocCreateArgs._all_field_names_ = set([ +PaperDocCreateArgs._all_field_names_ = { 'parent_folder_id', 'import_format', -]) +} PaperDocCreateArgs._all_fields_ = [ ('parent_folder_id', PaperDocCreateArgs.parent_folder_id.validator), ('import_format', PaperDocCreateArgs.import_format.validator), @@ -2774,11 +2772,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocCreateUpdateResult.doc_id.validator = bv.String() PaperDocCreateUpdateResult.revision.validator = bv.Int64() PaperDocCreateUpdateResult.title.validator = bv.String() -PaperDocCreateUpdateResult._all_field_names_ = set([ +PaperDocCreateUpdateResult._all_field_names_ = { 'doc_id', 'revision', 'title', -]) +} PaperDocCreateUpdateResult._all_fields_ = [ ('doc_id', PaperDocCreateUpdateResult.doc_id.validator), ('revision', PaperDocCreateUpdateResult.revision.validator), @@ -2786,19 +2784,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] PaperDocExport.export_format.validator = ExportFormat_validator -PaperDocExport._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['export_format'])) +PaperDocExport._all_field_names_ = RefPaperDoc._all_field_names_.union({'export_format'}) PaperDocExport._all_fields_ = RefPaperDoc._all_fields_ + [('export_format', PaperDocExport.export_format.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([ +PaperDocExportResult._all_field_names_ = { 'owner', 'title', 'revision', 'mime_type', -]) +} PaperDocExportResult._all_fields_ = [ ('owner', PaperDocExportResult.owner.validator), ('title', PaperDocExportResult.title.validator), @@ -2820,17 +2818,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDocPermissionLevel.other = PaperDocPermissionLevel('other') PaperDocSharingPolicy.sharing_policy.validator = SharingPolicy_validator -PaperDocSharingPolicy._all_field_names_ = RefPaperDoc._all_field_names_.union(set(['sharing_policy'])) +PaperDocSharingPolicy._all_field_names_ = RefPaperDoc._all_field_names_.union({'sharing_policy'}) PaperDocSharingPolicy._all_fields_ = RefPaperDoc._all_fields_ + [('sharing_policy', PaperDocSharingPolicy.sharing_policy.validator)] 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([ +PaperDocUpdateArgs._all_field_names_ = RefPaperDoc._all_field_names_.union({ 'doc_update_policy', 'revision', 'import_format', -])) +}) PaperDocUpdateArgs._all_fields_ = RefPaperDoc._all_fields_ + [ ('doc_update_policy', PaperDocUpdateArgs.doc_update_policy.validator), ('revision', PaperDocUpdateArgs.revision.validator), @@ -2879,11 +2877,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +PaperFolderCreateArg._all_field_names_ = { 'name', 'parent_folder_id', 'is_team_folder', -]) +} PaperFolderCreateArg._all_fields_ = [ ('name', PaperFolderCreateArg.name.validator), ('parent_folder_id', PaperFolderCreateArg.parent_folder_id.validator), @@ -2902,19 +2900,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperFolderCreateError.invalid_folder_id = PaperFolderCreateError('invalid_folder_id') PaperFolderCreateResult.folder_id.validator = bv.String() -PaperFolderCreateResult._all_field_names_ = set(['folder_id']) +PaperFolderCreateResult._all_field_names_ = {'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_field_names_ = RefPaperDoc._all_field_names_.union({'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([ +SharingPolicy._all_field_names_ = { '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), @@ -2943,10 +2941,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserInfoWithPermissionLevel.user.validator = sharing.UserInfo_validator UserInfoWithPermissionLevel.permission_level.validator = PaperDocPermissionLevel_validator -UserInfoWithPermissionLevel._all_field_names_ = set([ +UserInfoWithPermissionLevel._all_field_names_ = { 'user', 'permission_level', -]) +} UserInfoWithPermissionLevel._all_fields_ = [ ('user', UserInfoWithPermissionLevel.user.validator), ('permission_level', UserInfoWithPermissionLevel.permission_level.validator), diff --git a/dropbox/secondary_emails.py b/dropbox/secondary_emails.py index bec9dc3b..30d1a813 100644 --- a/dropbox/secondary_emails.py +++ b/dropbox/secondary_emails.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -40,16 +38,16 @@ 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()._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([ +SecondaryEmail._all_field_names_ = { 'email', 'is_verified', -]) +} SecondaryEmail._all_fields_ = [ ('email', SecondaryEmail.email.validator), ('is_verified', SecondaryEmail.is_verified.validator), diff --git a/dropbox/seen_state.py b/dropbox/seen_state.py index 37af6946..ab41a24f 100644 --- a/dropbox/seen_state.py +++ b/dropbox/seen_state.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -113,7 +111,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PlatformType_validator = bv.Union(PlatformType) diff --git a/dropbox/session.py b/dropbox/session.py index c157c7da..4ec5e2fd 100644 --- a/dropbox/session.py +++ b/dropbox/session.py @@ -39,7 +39,7 @@ class _SSLAdapter(HTTPAdapter): def __init__(self, *args, **kwargs): self._ca_certs = kwargs.pop("ca_certs", None) - super(_SSLAdapter, self).__init__(*args, **kwargs) + super().__init__(*args, **kwargs) def init_poolmanager(self, connections, maxsize, block=False, **_): self.poolmanager = PoolManager( diff --git a/dropbox/sharing.py b/dropbox/sharing.py index 9f81c142..2010ef97 100644 --- a/dropbox/sharing.py +++ b/dropbox/sharing.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa @@ -7,7 +6,6 @@ This namespace contains endpoints and data types for creating and managing shared links and shared folders. """ -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -66,7 +64,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AccessInheritance_validator = bv.Union(AccessInheritance) @@ -170,7 +168,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) AccessLevel_validator = bv.Union(AccessLevel) @@ -221,7 +219,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AclUpdatePolicy_validator = bv.Union(AclUpdatePolicy) @@ -300,7 +298,7 @@ def __init__(self, add_message_as_comment = bb.Attribute("add_message_as_comment") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFileMemberArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) AddFileMemberArgs_validator = bv.Struct(AddFileMemberArgs) @@ -409,7 +407,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddFileMemberError_validator = bv.Union(AddFileMemberError) @@ -465,7 +463,7 @@ def __init__(self, custom_message = bb.Attribute("custom_message", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddFolderMemberArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) AddFolderMemberArg_validator = bv.Struct(AddFolderMemberArg) @@ -734,7 +732,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddFolderMemberError_validator = bv.Union(AddFolderMemberError) @@ -772,7 +770,7 @@ def __init__(self, access_level = bb.Attribute("access_level", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AddMember, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) AddMember_validator = bv.Struct(AddMember) @@ -935,7 +933,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddMemberSelectorError_validator = bv.Union(AddMemberSelectorError) @@ -992,7 +990,7 @@ def is_password(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RequestedVisibility_validator = bv.Union(RequestedVisibility) @@ -1075,7 +1073,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ResolvedVisibility_validator = bv.Union(ResolvedVisibility) @@ -1089,7 +1087,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AlphaResolvedVisibility_validator = bv.Union(AlphaResolvedVisibility) @@ -1118,7 +1116,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AudienceExceptionContentInfo_validator = bv.Struct(AudienceExceptionContentInfo) @@ -1158,7 +1156,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AudienceExceptions_validator = bv.Struct(AudienceExceptions) @@ -1207,7 +1205,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AudienceRestrictingSharedFolder_validator = bv.Struct(AudienceRestrictingSharedFolder) @@ -1254,7 +1252,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LinkMetadata_validator = bv.StructTree(LinkMetadata) @@ -1272,12 +1270,12 @@ def __init__(self, url=None, visibility=None, expires=None): - super(CollectionLinkMetadata, self).__init__(url, + super().__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()._process_custom_annotations(annotation_type, field_path, processor) CollectionLinkMetadata_validator = bv.Struct(CollectionLinkMetadata) @@ -1322,7 +1320,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateSharedLinkArg_validator = bv.Struct(CreateSharedLinkArg) @@ -1375,7 +1373,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateSharedLinkError_validator = bv.Union(CreateSharedLinkError) @@ -1411,7 +1409,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateSharedLinkWithSettingsArg_validator = bv.Struct(CreateSharedLinkWithSettingsArg) @@ -1555,7 +1553,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateSharedLinkWithSettingsError_validator = bv.Union(CreateSharedLinkWithSettingsError) @@ -1647,7 +1645,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentLinkMetadataBase_validator = bv.Struct(SharedContentLinkMetadataBase) @@ -1670,7 +1668,7 @@ def __init__(self, access_level=None, audience_restricting_shared_folder=None, expiry=None): - super(ExpectedSharedContentLinkMetadata, self).__init__(audience_options, + super().__init__(audience_options, current_audience, link_permissions, password_protected, @@ -1679,7 +1677,7 @@ def __init__(self, expiry) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ExpectedSharedContentLinkMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ExpectedSharedContentLinkMetadata_validator = bv.Struct(ExpectedSharedContentLinkMetadata) @@ -1846,7 +1844,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) FileAction_validator = bv.Union(FileAction) @@ -1970,7 +1968,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileErrorResult_validator = bv.Union(FileErrorResult) @@ -2071,7 +2069,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkMetadata_validator = bv.StructTree(SharedLinkMetadata) @@ -2115,7 +2113,7 @@ def __init__(self, path_lower=None, team_member_info=None, content_owner_team_info=None): - super(FileLinkMetadata, self).__init__(url, + super().__init__(url, name, link_permissions, id, @@ -2149,7 +2147,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLinkMetadata_validator = bv.Struct(FileLinkMetadata) @@ -2268,7 +2266,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileMemberActionError_validator = bv.Union(FileMemberActionError) @@ -2358,7 +2356,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileMemberActionIndividualResult_validator = bv.Union(FileMemberActionIndividualResult) @@ -2418,7 +2416,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileMemberActionResult_validator = bv.Struct(FileMemberActionResult) @@ -2509,7 +2507,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileMemberRemoveActionResult_validator = bv.Union(FileMemberRemoveActionResult) @@ -2557,7 +2555,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FilePermission_validator = bv.Struct(FilePermission) @@ -2748,7 +2746,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FolderAction_validator = bv.Union(FolderAction) @@ -2771,7 +2769,7 @@ def __init__(self, path_lower=None, team_member_info=None, content_owner_team_info=None): - super(FolderLinkMetadata, self).__init__(url, + super().__init__(url, name, link_permissions, id, @@ -2781,7 +2779,7 @@ def __init__(self, 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) + super()._process_custom_annotations(annotation_type, field_path, processor) FolderLinkMetadata_validator = bv.Struct(FolderLinkMetadata) @@ -2830,7 +2828,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderPermission_validator = bv.Struct(FolderPermission) @@ -2902,7 +2900,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderPolicy_validator = bv.Struct(FolderPolicy) @@ -2942,7 +2940,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataArg_validator = bv.Struct(GetFileMetadataArg) @@ -2982,7 +2980,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataBatchArg_validator = bv.Struct(GetFileMetadataBatchArg) @@ -3021,7 +3019,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataBatchResult_validator = bv.Struct(GetFileMetadataBatchResult) @@ -3106,7 +3104,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataError_validator = bv.Union(GetFileMetadataError) @@ -3197,7 +3195,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetFileMetadataIndividualResult_validator = bv.Union(GetFileMetadataIndividualResult) @@ -3235,7 +3233,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetMetadataArgs_validator = bv.Struct(GetMetadataArgs) @@ -3297,7 +3295,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkError_validator = bv.Union(SharedLinkError) @@ -3323,7 +3321,7 @@ def is_shared_link_is_directory(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinkFileError_validator = bv.Union(GetSharedLinkFileError) @@ -3370,7 +3368,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinkMetadataArg_validator = bv.Struct(GetSharedLinkMetadataArg) @@ -3397,7 +3395,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinksArg_validator = bv.Struct(GetSharedLinksArg) @@ -3450,7 +3448,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinksError_validator = bv.Union(GetSharedLinksError) @@ -3476,7 +3474,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetSharedLinksResult_validator = bv.Struct(GetSharedLinksResult) @@ -3513,7 +3511,7 @@ def __init__(self, same_team=None, group_external_id=None, member_count=None): - super(GroupInfo, self).__init__(group_name, + super().__init__(group_name, group_id, group_management_type, group_external_id, @@ -3544,7 +3542,7 @@ def __init__(self, same_team = bb.Attribute("same_team") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(GroupInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) GroupInfo_validator = bv.Struct(GroupInfo) @@ -3603,7 +3601,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembershipInfo_validator = bv.Struct(MembershipInfo) @@ -3627,7 +3625,7 @@ def __init__(self, permissions=None, initials=None, is_inherited=None): - super(GroupMembershipInfo, self).__init__(access_type, + super().__init__(access_type, permissions, initials, is_inherited) @@ -3639,7 +3637,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMembershipInfo_validator = bv.Struct(GroupMembershipInfo) @@ -3676,7 +3674,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) InsufficientPlan_validator = bv.Struct(InsufficientPlan) @@ -3722,7 +3720,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) InsufficientQuotaAmounts_validator = bv.Struct(InsufficientQuotaAmounts) @@ -3781,7 +3779,7 @@ def get_email(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(InviteeInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) InviteeInfo_validator = bv.Union(InviteeInfo) @@ -3808,7 +3806,7 @@ def __init__(self, initials=None, is_inherited=None, user=None): - super(InviteeMembershipInfo, self).__init__(access_type, + super().__init__(access_type, permissions, initials, is_inherited) @@ -3826,7 +3824,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) InviteeMembershipInfo_validator = bv.Struct(InviteeMembershipInfo) @@ -3965,7 +3963,7 @@ def get_relinquish_folder_membership_error(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(JobError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) JobError_validator = bv.Union(JobError) @@ -4022,7 +4020,7 @@ def get_failed(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(JobStatus, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) JobStatus_validator = bv.Union(JobStatus) @@ -4071,7 +4069,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LinkAccessLevel_validator = bv.Union(LinkAccessLevel) @@ -4167,7 +4165,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) LinkAction_validator = bv.Union(LinkAction) @@ -4253,7 +4251,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LinkAudience_validator = bv.Union(LinkAudience) @@ -4352,7 +4350,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) VisibilityPolicyDisallowedReason_validator = bv.Union(VisibilityPolicyDisallowedReason) @@ -4366,7 +4364,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LinkAudienceDisallowedReason_validator = bv.Union(LinkAudienceDisallowedReason) @@ -4413,7 +4411,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LinkAudienceOption_validator = bv.Struct(LinkAudienceOption) @@ -4483,7 +4481,7 @@ def get_set_expiry(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkExpiry, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) LinkExpiry_validator = bv.Union(LinkExpiry) @@ -4553,7 +4551,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LinkPassword_validator = bv.Union(LinkPassword) @@ -4594,7 +4592,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LinkPermission_validator = bv.Struct(LinkPermission) @@ -4821,7 +4819,7 @@ def __init__(self, can_use_extended_sharing_controls = bb.Attribute("can_use_extended_sharing_controls", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LinkPermissions, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) LinkPermissions_validator = bv.Struct(LinkPermissions) @@ -4877,7 +4875,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LinkSettings_validator = bv.Struct(LinkSettings) @@ -4936,7 +4934,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersArg_validator = bv.Struct(ListFileMembersArg) @@ -4975,7 +4973,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersBatchArg_validator = bv.Struct(ListFileMembersBatchArg) @@ -5014,7 +5012,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersBatchResult_validator = bv.Struct(ListFileMembersBatchResult) @@ -5047,7 +5045,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersContinueArg_validator = bv.Struct(ListFileMembersContinueArg) @@ -5145,7 +5143,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersContinueError_validator = bv.Union(ListFileMembersContinueError) @@ -5181,7 +5179,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersCountResult_validator = bv.Struct(ListFileMembersCountResult) @@ -5265,7 +5263,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersError_validator = bv.Union(ListFileMembersError) @@ -5356,7 +5354,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFileMembersIndividualResult_validator = bv.Union(ListFileMembersIndividualResult) @@ -5397,7 +5395,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFilesArg_validator = bv.Struct(ListFilesArg) @@ -5426,7 +5424,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFilesContinueArg_validator = bv.Struct(ListFilesContinueArg) @@ -5499,7 +5497,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFilesContinueError_validator = bv.Union(ListFilesContinueError) @@ -5538,7 +5536,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFilesResult_validator = bv.Struct(ListFilesResult) @@ -5576,7 +5574,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderMembersCursorArg_validator = bv.Struct(ListFolderMembersCursorArg) @@ -5596,7 +5594,7 @@ def __init__(self, shared_folder_id=None, actions=None, limit=None): - super(ListFolderMembersArgs, self).__init__(actions, + super().__init__(actions, limit) self._shared_folder_id_value = bb.NOT_SET if shared_folder_id is not None: @@ -5606,7 +5604,7 @@ def __init__(self, shared_folder_id = bb.Attribute("shared_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ListFolderMembersArgs, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ListFolderMembersArgs_validator = bv.Struct(ListFolderMembersArgs) @@ -5634,7 +5632,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderMembersContinueArg_validator = bv.Struct(ListFolderMembersContinueArg) @@ -5700,7 +5698,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFolderMembersContinueError_validator = bv.Union(ListFolderMembersContinueError) @@ -5738,7 +5736,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFoldersArgs_validator = bv.Struct(ListFoldersArgs) @@ -5764,7 +5762,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFoldersContinueArg_validator = bv.Struct(ListFoldersContinueArg) @@ -5801,7 +5799,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListFoldersContinueError_validator = bv.Union(ListFoldersContinueError) @@ -5846,7 +5844,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListFoldersResult_validator = bv.Struct(ListFoldersResult) @@ -5895,7 +5893,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListSharedLinksArg_validator = bv.Struct(ListSharedLinksArg) @@ -5963,7 +5961,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListSharedLinksError_validator = bv.Union(ListSharedLinksError) @@ -6013,7 +6011,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListSharedLinksResult_validator = bv.Struct(ListSharedLinksResult) @@ -6064,7 +6062,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAccessLevelResult_validator = bv.Struct(MemberAccessLevelResult) @@ -6162,7 +6160,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAction_validator = bv.Union(MemberAction) @@ -6210,7 +6208,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberPermission_validator = bv.Struct(MemberPermission) @@ -6260,7 +6258,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MemberPolicy_validator = bv.Union(MemberPolicy) @@ -6352,7 +6350,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSelector_validator = bv.Union(MemberSelector) @@ -6398,7 +6396,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ModifySharedLinkSettingsArgs_validator = bv.Struct(ModifySharedLinkSettingsArgs) @@ -6459,7 +6457,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ModifySharedLinkSettingsError_validator = bv.Union(ModifySharedLinkSettingsError) @@ -6485,7 +6483,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MountFolderArg_validator = bv.Struct(MountFolderArg) @@ -6621,7 +6619,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MountFolderError_validator = bv.Union(MountFolderError) @@ -6679,7 +6677,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ParentFolderAccessInfo_validator = bv.Struct(ParentFolderAccessInfo) @@ -6701,7 +6699,7 @@ def __init__(self, visibility=None, path=None, expires=None): - super(PathLinkMetadata, self).__init__(url, + super().__init__(url, visibility, expires) self._path_value = bb.NOT_SET @@ -6712,7 +6710,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PathLinkMetadata_validator = bv.Struct(PathLinkMetadata) @@ -6752,7 +6750,7 @@ def is_folder(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PendingUploadMode_validator = bv.Union(PendingUploadMode) @@ -6976,7 +6974,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PermissionDeniedReason_validator = bv.Union(PermissionDeniedReason) @@ -7001,7 +6999,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelinquishFileMembershipArg_validator = bv.Struct(RelinquishFileMembershipArg) @@ -7080,7 +7078,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelinquishFileMembershipError_validator = bv.Union(RelinquishFileMembershipError) @@ -7117,7 +7115,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelinquishFolderMembershipArg_validator = bv.Struct(RelinquishFolderMembershipArg) @@ -7247,7 +7245,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelinquishFolderMembershipError_validator = bv.Union(RelinquishFolderMembershipError) @@ -7287,7 +7285,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemoveFileMemberArg_validator = bv.Struct(RemoveFileMemberArg) @@ -7410,7 +7408,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemoveFileMemberError_validator = bv.Union(RemoveFileMemberError) @@ -7459,7 +7457,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemoveFolderMemberArg_validator = bv.Struct(RemoveFolderMemberArg) @@ -7604,7 +7602,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemoveFolderMemberError_validator = bv.Union(RemoveFolderMemberError) @@ -7681,7 +7679,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemoveMemberJobStatus_validator = bv.Union(RemoveMemberJobStatus) @@ -7755,7 +7753,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RequestedLinkAccessLevel_validator = bv.Union(RequestedLinkAccessLevel) @@ -7780,7 +7778,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeSharedLinkArg_validator = bv.Struct(RevokeSharedLinkArg) @@ -7806,7 +7804,7 @@ def is_shared_link_malformed(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeSharedLinkError_validator = bv.Union(RevokeSharedLinkError) @@ -7842,7 +7840,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SetAccessInheritanceArg_validator = bv.Struct(SetAccessInheritanceArg) @@ -7912,7 +7910,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SetAccessInheritanceError_validator = bv.Union(SetAccessInheritanceError) @@ -8000,7 +7998,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShareFolderArgBase_validator = bv.Struct(ShareFolderArgBase) @@ -8031,7 +8029,7 @@ def __init__(self, access_inheritance=None, actions=None, link_settings=None): - super(ShareFolderArg, self).__init__(path, + super().__init__(path, acl_update_policy, force_async, member_policy, @@ -8052,7 +8050,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShareFolderArg_validator = bv.Struct(ShareFolderArg) @@ -8149,7 +8147,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShareFolderErrorBase_validator = bv.Union(ShareFolderErrorBase) @@ -8175,7 +8173,7 @@ def is_no_permission(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ShareFolderError_validator = bv.Union(ShareFolderError) @@ -8250,7 +8248,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShareFolderJobStatus_validator = bv.Union(ShareFolderJobStatus) @@ -8291,7 +8289,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShareFolderLaunch_validator = bv.Union(ShareFolderLaunch) @@ -8528,7 +8526,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharePathError_validator = bv.Union(SharePathError) @@ -8560,7 +8558,7 @@ def __init__(self, audience_restricting_shared_folder=None, expiry=None, audience_exceptions=None): - super(SharedContentLinkMetadata, self).__init__(audience_options, + super().__init__(audience_options, current_audience, link_permissions, password_protected, @@ -8581,7 +8579,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentLinkMetadata_validator = bv.Struct(SharedContentLinkMetadata) @@ -8646,7 +8644,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFileMembers_validator = bv.Struct(SharedFileMembers) @@ -8814,7 +8812,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFileMetadata_validator = bv.Struct(SharedFileMetadata) @@ -8900,7 +8898,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderAccessError_validator = bv.Union(SharedFolderAccessError) @@ -8982,7 +8980,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMemberError_validator = bv.Union(SharedFolderMemberError) @@ -9043,7 +9041,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMembers_validator = bv.Struct(SharedFolderMembers) @@ -9154,7 +9152,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMetadataBase_validator = bv.Struct(SharedFolderMetadataBase) @@ -9212,7 +9210,7 @@ def __init__(self, link_metadata=None, permissions=None, access_inheritance=None): - super(SharedFolderMetadata, self).__init__(access_type, + super().__init__(access_type, is_inside_team_folder, is_team_folder, owner_display_names, @@ -9271,7 +9269,7 @@ def __init__(self, access_inheritance = bb.Attribute("access_inheritance", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedFolderMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMetadata_validator = bv.Struct(SharedFolderMetadata) @@ -9358,7 +9356,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAccessFailureReason_validator = bv.Union(SharedLinkAccessFailureReason) @@ -9416,7 +9414,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAlreadyExistsMetadata_validator = bv.Union(SharedLinkAlreadyExistsMetadata) @@ -9478,7 +9476,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkPolicy_validator = bv.Union(SharedLinkPolicy) @@ -9569,7 +9567,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettings_validator = bv.Struct(SharedLinkSettings) @@ -9615,7 +9613,7 @@ def is_not_authorized(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsError_validator = bv.Union(SharedLinkSettingsError) @@ -9702,7 +9700,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharingFileAccessError_validator = bv.Union(SharingFileAccessError) @@ -9743,7 +9741,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharingUserError_validator = bv.Union(SharingUserError) @@ -9790,7 +9788,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMemberInfo_validator = bv.Struct(TeamMemberInfo) @@ -9826,7 +9824,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TransferFolderArg_validator = bv.Struct(TransferFolderArg) @@ -9954,7 +9952,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TransferFolderError_validator = bv.Union(TransferFolderError) @@ -9980,7 +9978,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UnmountFolderArg_validator = bv.Struct(UnmountFolderArg) @@ -10060,7 +10058,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UnmountFolderError_validator = bv.Union(UnmountFolderError) @@ -10087,7 +10085,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UnshareFileArg_validator = bv.Struct(UnshareFileArg) @@ -10172,7 +10170,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UnshareFileError_validator = bv.Union(UnshareFileError) @@ -10210,7 +10208,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UnshareFolderArg_validator = bv.Struct(UnshareFolderArg) @@ -10300,7 +10298,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UnshareFolderError_validator = bv.Union(UnshareFolderError) @@ -10349,7 +10347,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateFileMemberArgs_validator = bv.Struct(UpdateFileMemberArgs) @@ -10396,7 +10394,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateFolderMemberArg_validator = bv.Struct(UpdateFolderMemberArg) @@ -10540,7 +10538,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateFolderMemberError_validator = bv.Union(UpdateFolderMemberError) @@ -10632,7 +10630,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateFolderPolicyArg_validator = bv.Struct(UpdateFolderPolicyArg) @@ -10748,7 +10746,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UpdateFolderPolicyError_validator = bv.Union(UpdateFolderPolicyError) @@ -10772,7 +10770,7 @@ def __init__(self, permissions=None, initials=None, is_inherited=None): - super(UserMembershipInfo, self).__init__(access_type, + super().__init__(access_type, permissions, initials, is_inherited) @@ -10784,7 +10782,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserMembershipInfo_validator = bv.Struct(UserMembershipInfo) @@ -10815,7 +10813,7 @@ def __init__(self, is_inherited=None, time_last_seen=None, platform_type=None): - super(UserFileMembershipInfo, self).__init__(access_type, + super().__init__(access_type, user, permissions, initials, @@ -10834,7 +10832,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserFileMembershipInfo_validator = bv.Struct(UserFileMembershipInfo) @@ -10902,7 +10900,7 @@ def __init__(self, team_member_id = bb.Attribute("team_member_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) UserInfo_validator = bv.Struct(UserInfo) @@ -10951,7 +10949,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ViewerInfoPolicy_validator = bv.Union(ViewerInfoPolicy) @@ -11041,7 +11039,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) Visibility_validator = bv.Union(Visibility) @@ -11100,7 +11098,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) VisibilityPolicy_validator = bv.Struct(VisibilityPolicy) @@ -11171,14 +11169,14 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddFileMemberArgs.quiet.validator = bv.Boolean() AddFileMemberArgs.access_level.validator = AccessLevel_validator AddFileMemberArgs.add_message_as_comment.validator = bv.Boolean() -AddFileMemberArgs._all_field_names_ = set([ +AddFileMemberArgs._all_field_names_ = { 'file', 'members', 'custom_message', 'quiet', 'access_level', 'add_message_as_comment', -]) +} AddFileMemberArgs._all_fields_ = [ ('file', AddFileMemberArgs.file.validator), ('members', AddFileMemberArgs.members.validator), @@ -11209,12 +11207,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddFolderMemberArg.members.validator = bv.List(AddMember_validator) AddFolderMemberArg.quiet.validator = bv.Boolean() AddFolderMemberArg.custom_message.validator = bv.Nullable(bv.String(min_length=1)) -AddFolderMemberArg._all_field_names_ = set([ +AddFolderMemberArg._all_field_names_ = { 'shared_folder_id', 'members', 'quiet', 'custom_message', -]) +} AddFolderMemberArg._all_fields_ = [ ('shared_folder_id', AddFolderMemberArg.shared_folder_id.validator), ('members', AddFolderMemberArg.members.validator), @@ -11266,10 +11264,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddMember.member.validator = MemberSelector_validator AddMember.access_level.validator = AccessLevel_validator -AddMember._all_field_names_ = set([ +AddMember._all_field_names_ = { 'member', 'access_level', -]) +} AddMember._all_fields_ = [ ('member', AddMember.member.validator), ('access_level', AddMember.access_level.validator), @@ -11335,15 +11333,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AlphaResolvedVisibility._tagmap.update(ResolvedVisibility._tagmap) AudienceExceptionContentInfo.name.validator = bv.String() -AudienceExceptionContentInfo._all_field_names_ = set(['name']) +AudienceExceptionContentInfo._all_field_names_ = {'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([ +AudienceExceptions._all_field_names_ = { 'count', 'exceptions', -]) +} AudienceExceptions._all_fields_ = [ ('count', AudienceExceptions.count.validator), ('exceptions', AudienceExceptions.exceptions.validator), @@ -11352,11 +11350,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AudienceRestrictingSharedFolder.shared_folder_id.validator = common.SharedFolderId_validator AudienceRestrictingSharedFolder.name.validator = bv.String() AudienceRestrictingSharedFolder.audience.validator = LinkAudience_validator -AudienceRestrictingSharedFolder._all_field_names_ = set([ +AudienceRestrictingSharedFolder._all_field_names_ = { 'shared_folder_id', 'name', 'audience', -]) +} AudienceRestrictingSharedFolder._all_fields_ = [ ('shared_folder_id', AudienceRestrictingSharedFolder.shared_folder_id.validator), ('name', AudienceRestrictingSharedFolder.name.validator), @@ -11366,11 +11364,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkMetadata.url.validator = bv.String() LinkMetadata.visibility.validator = Visibility_validator LinkMetadata.expires.validator = bv.Nullable(common.DropboxTimestamp_validator) -LinkMetadata._field_names_ = set([ +LinkMetadata._field_names_ = { 'url', 'visibility', 'expires', -]) +} LinkMetadata._all_field_names_ = LinkMetadata._field_names_ LinkMetadata._fields_ = [ ('url', LinkMetadata.url.validator), @@ -11389,7 +11387,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): } LinkMetadata._is_catch_all_ = True -CollectionLinkMetadata._field_names_ = set([]) +CollectionLinkMetadata._field_names_ = set() CollectionLinkMetadata._all_field_names_ = LinkMetadata._all_field_names_.union(CollectionLinkMetadata._field_names_) CollectionLinkMetadata._fields_ = [] CollectionLinkMetadata._all_fields_ = LinkMetadata._all_fields_ + CollectionLinkMetadata._fields_ @@ -11397,11 +11395,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CreateSharedLinkArg.path.validator = bv.String() CreateSharedLinkArg.short_url.validator = bv.Boolean() CreateSharedLinkArg.pending_upload.validator = bv.Nullable(PendingUploadMode_validator) -CreateSharedLinkArg._all_field_names_ = set([ +CreateSharedLinkArg._all_field_names_ = { 'path', 'short_url', 'pending_upload', -]) +} CreateSharedLinkArg._all_fields_ = [ ('path', CreateSharedLinkArg.path.validator), ('short_url', CreateSharedLinkArg.short_url.validator), @@ -11419,10 +11417,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CreateSharedLinkWithSettingsArg.path.validator = ReadPath_validator CreateSharedLinkWithSettingsArg.settings.validator = bv.Nullable(SharedLinkSettings_validator) -CreateSharedLinkWithSettingsArg._all_field_names_ = set([ +CreateSharedLinkWithSettingsArg._all_field_names_ = { 'path', 'settings', -]) +} CreateSharedLinkWithSettingsArg._all_fields_ = [ ('path', CreateSharedLinkWithSettingsArg.path.validator), ('settings', CreateSharedLinkWithSettingsArg.settings.validator), @@ -11451,7 +11449,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +SharedContentLinkMetadataBase._all_field_names_ = { 'access_level', 'audience_options', 'audience_restricting_shared_folder', @@ -11459,7 +11457,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'expiry', 'link_permissions', 'password_protected', -]) +} SharedContentLinkMetadataBase._all_fields_ = [ ('access_level', SharedContentLinkMetadataBase.access_level.validator), ('audience_options', SharedContentLinkMetadataBase.audience_options.validator), @@ -11470,7 +11468,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ('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() @@ -11537,7 +11535,7 @@ 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([ +SharedLinkMetadata._field_names_ = { 'url', 'id', 'name', @@ -11546,7 +11544,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'link_permissions', 'team_member_info', 'content_owner_team_info', -]) +} SharedLinkMetadata._all_field_names_ = SharedLinkMetadata._field_names_ SharedLinkMetadata._fields_ = [ ('url', SharedLinkMetadata.url.validator), @@ -11574,12 +11572,12 @@ 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([ +FileLinkMetadata._field_names_ = { '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), @@ -11617,12 +11615,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +FileMemberActionResult._all_field_names_ = { 'member', 'result', 'sckey_sha1', 'invitation_signature', -]) +} FileMemberActionResult._all_fields_ = [ ('member', FileMemberActionResult.member.validator), ('result', FileMemberActionResult.result.validator), @@ -11644,11 +11642,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FilePermission.action.validator = FileAction_validator FilePermission.allow.validator = bv.Boolean() FilePermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -FilePermission._all_field_names_ = set([ +FilePermission._all_field_names_ = { 'action', 'allow', 'reason', -]) +} FilePermission._all_fields_ = [ ('action', FilePermission.action.validator), ('allow', FilePermission.allow.validator), @@ -11704,7 +11702,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FolderAction.set_access_inheritance = FolderAction('set_access_inheritance') FolderAction.other = FolderAction('other') -FolderLinkMetadata._field_names_ = set([]) +FolderLinkMetadata._field_names_ = set() FolderLinkMetadata._all_field_names_ = SharedLinkMetadata._all_field_names_.union(FolderLinkMetadata._field_names_) FolderLinkMetadata._fields_ = [] FolderLinkMetadata._all_fields_ = SharedLinkMetadata._all_fields_ + FolderLinkMetadata._fields_ @@ -11712,11 +11710,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FolderPermission.action.validator = FolderAction_validator FolderPermission.allow.validator = bv.Boolean() FolderPermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -FolderPermission._all_field_names_ = set([ +FolderPermission._all_field_names_ = { 'action', 'allow', 'reason', -]) +} FolderPermission._all_fields_ = [ ('action', FolderPermission.action.validator), ('allow', FolderPermission.allow.validator), @@ -11728,13 +11726,13 @@ 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([ +FolderPolicy._all_field_names_ = { '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), @@ -11745,10 +11743,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetFileMetadataArg.file.validator = PathOrId_validator GetFileMetadataArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) -GetFileMetadataArg._all_field_names_ = set([ +GetFileMetadataArg._all_field_names_ = { 'file', 'actions', -]) +} GetFileMetadataArg._all_fields_ = [ ('file', GetFileMetadataArg.file.validator), ('actions', GetFileMetadataArg.actions.validator), @@ -11756,10 +11754,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetFileMetadataBatchArg.files.validator = bv.List(PathOrId_validator, max_items=100) GetFileMetadataBatchArg.actions.validator = bv.Nullable(bv.List(FileAction_validator)) -GetFileMetadataBatchArg._all_field_names_ = set([ +GetFileMetadataBatchArg._all_field_names_ = { 'files', 'actions', -]) +} GetFileMetadataBatchArg._all_fields_ = [ ('files', GetFileMetadataBatchArg.files.validator), ('actions', GetFileMetadataBatchArg.actions.validator), @@ -11767,10 +11765,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetFileMetadataBatchResult.file.validator = PathOrId_validator GetFileMetadataBatchResult.result.validator = GetFileMetadataIndividualResult_validator -GetFileMetadataBatchResult._all_field_names_ = set([ +GetFileMetadataBatchResult._all_field_names_ = { 'file', 'result', -]) +} GetFileMetadataBatchResult._all_fields_ = [ ('file', GetFileMetadataBatchResult.file.validator), ('result', GetFileMetadataBatchResult.result.validator), @@ -11800,10 +11798,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetMetadataArgs.shared_folder_id.validator = common.SharedFolderId_validator GetMetadataArgs.actions.validator = bv.Nullable(bv.List(FolderAction_validator)) -GetMetadataArgs._all_field_names_ = set([ +GetMetadataArgs._all_field_names_ = { 'shared_folder_id', 'actions', -]) +} GetMetadataArgs._all_fields_ = [ ('shared_folder_id', GetMetadataArgs.shared_folder_id.validator), ('actions', GetMetadataArgs.actions.validator), @@ -11836,11 +11834,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GetSharedLinkMetadataArg._all_field_names_ = { 'url', 'path', 'link_password', -]) +} GetSharedLinkMetadataArg._all_fields_ = [ ('url', GetSharedLinkMetadataArg.url.validator), ('path', GetSharedLinkMetadataArg.path.validator), @@ -11848,7 +11846,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GetSharedLinksArg.path.validator = bv.Nullable(bv.String()) -GetSharedLinksArg._all_field_names_ = set(['path']) +GetSharedLinksArg._all_field_names_ = {'path'} GetSharedLinksArg._all_fields_ = [('path', GetSharedLinksArg.path.validator)] GetSharedLinksError._path_validator = files.MalformedPathError_validator @@ -11861,19 +11859,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetSharedLinksError.other = GetSharedLinksError('other') GetSharedLinksResult.links.validator = bv.List(LinkMetadata_validator) -GetSharedLinksResult._all_field_names_ = set(['links']) +GetSharedLinksResult._all_field_names_ = {'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([ +GroupInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union({ '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), @@ -11885,12 +11883,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +MembershipInfo._all_field_names_ = { 'access_type', 'permissions', 'initials', 'is_inherited', -]) +} MembershipInfo._all_fields_ = [ ('access_type', MembershipInfo.access_type.validator), ('permissions', MembershipInfo.permissions.validator), @@ -11899,15 +11897,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GroupMembershipInfo.group.validator = GroupInfo_validator -GroupMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(['group'])) +GroupMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union({'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([ +InsufficientPlan._all_field_names_ = { 'message', 'upsell_url', -]) +} InsufficientPlan._all_fields_ = [ ('message', InsufficientPlan.message.validator), ('upsell_url', InsufficientPlan.upsell_url.validator), @@ -11916,11 +11914,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): InsufficientQuotaAmounts.space_needed.validator = bv.UInt64() InsufficientQuotaAmounts.space_shortage.validator = bv.UInt64() InsufficientQuotaAmounts.space_left.validator = bv.UInt64() -InsufficientQuotaAmounts._all_field_names_ = set([ +InsufficientQuotaAmounts._all_field_names_ = { 'space_needed', 'space_shortage', 'space_left', -]) +} InsufficientQuotaAmounts._all_fields_ = [ ('space_needed', InsufficientQuotaAmounts.space_needed.validator), ('space_shortage', InsufficientQuotaAmounts.space_shortage.validator), @@ -11938,10 +11936,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): InviteeMembershipInfo.invitee.validator = InviteeInfo_validator InviteeMembershipInfo.user.validator = bv.Nullable(UserInfo_validator) -InviteeMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set([ +InviteeMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union({ 'invitee', 'user', -])) +}) InviteeMembershipInfo._all_fields_ = MembershipInfo._all_fields_ + [ ('invitee', InviteeMembershipInfo.invitee.validator), ('user', InviteeMembershipInfo.user.validator), @@ -12062,11 +12060,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkAudienceOption.audience.validator = LinkAudience_validator LinkAudienceOption.allowed.validator = bv.Boolean() LinkAudienceOption.disallowed_reason.validator = bv.Nullable(LinkAudienceDisallowedReason_validator) -LinkAudienceOption._all_field_names_ = set([ +LinkAudienceOption._all_field_names_ = { 'audience', 'allowed', 'disallowed_reason', -]) +} LinkAudienceOption._all_fields_ = [ ('audience', LinkAudienceOption.audience.validator), ('allowed', LinkAudienceOption.allowed.validator), @@ -12100,11 +12098,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkPermission.action.validator = LinkAction_validator LinkPermission.allow.validator = bv.Boolean() LinkPermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -LinkPermission._all_field_names_ = set([ +LinkPermission._all_field_names_ = { 'action', 'allow', 'reason', -]) +} LinkPermission._all_fields_ = [ ('action', LinkPermission.action.validator), ('allow', LinkPermission.allow.validator), @@ -12130,7 +12128,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LinkPermissions.can_remove_password.validator = bv.Nullable(bv.Boolean()) LinkPermissions.require_password.validator = bv.Nullable(bv.Boolean()) LinkPermissions.can_use_extended_sharing_controls.validator = bv.Nullable(bv.Boolean()) -LinkPermissions._all_field_names_ = set([ +LinkPermissions._all_field_names_ = { 'resolved_visibility', 'requested_visibility', 'can_revoke', @@ -12150,7 +12148,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'can_remove_password', 'require_password', 'can_use_extended_sharing_controls', -]) +} LinkPermissions._all_fields_ = [ ('resolved_visibility', LinkPermissions.resolved_visibility.validator), ('requested_visibility', LinkPermissions.requested_visibility.validator), @@ -12177,12 +12175,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +LinkSettings._all_field_names_ = { 'access_level', 'audience', 'expiry', 'password', -]) +} LinkSettings._all_fields_ = [ ('access_level', LinkSettings.access_level.validator), ('audience', LinkSettings.audience.validator), @@ -12194,12 +12192,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListFileMembersArg._all_field_names_ = { 'file', 'actions', 'include_inherited', 'limit', -]) +} ListFileMembersArg._all_fields_ = [ ('file', ListFileMembersArg.file.validator), ('actions', ListFileMembersArg.actions.validator), @@ -12209,10 +12207,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFileMembersBatchArg.files.validator = bv.List(PathOrId_validator, max_items=100) ListFileMembersBatchArg.limit.validator = bv.UInt32(max_value=20) -ListFileMembersBatchArg._all_field_names_ = set([ +ListFileMembersBatchArg._all_field_names_ = { 'files', 'limit', -]) +} ListFileMembersBatchArg._all_fields_ = [ ('files', ListFileMembersBatchArg.files.validator), ('limit', ListFileMembersBatchArg.limit.validator), @@ -12220,17 +12218,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFileMembersBatchResult.file.validator = PathOrId_validator ListFileMembersBatchResult.result.validator = ListFileMembersIndividualResult_validator -ListFileMembersBatchResult._all_field_names_ = set([ +ListFileMembersBatchResult._all_field_names_ = { 'file', 'result', -]) +} ListFileMembersBatchResult._all_fields_ = [ ('file', ListFileMembersBatchResult.file.validator), ('result', ListFileMembersBatchResult.result.validator), ] ListFileMembersContinueArg.cursor.validator = bv.String() -ListFileMembersContinueArg._all_field_names_ = set(['cursor']) +ListFileMembersContinueArg._all_field_names_ = {'cursor'} ListFileMembersContinueArg._all_fields_ = [('cursor', ListFileMembersContinueArg.cursor.validator)] ListFileMembersContinueError._user_error_validator = SharingUserError_validator @@ -12249,10 +12247,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFileMembersCountResult.members.validator = SharedFileMembers_validator ListFileMembersCountResult.member_count.validator = bv.UInt32() -ListFileMembersCountResult._all_field_names_ = set([ +ListFileMembersCountResult._all_field_names_ = { 'members', 'member_count', -]) +} ListFileMembersCountResult._all_fields_ = [ ('members', ListFileMembersCountResult.members.validator), ('member_count', ListFileMembersCountResult.member_count.validator), @@ -12282,17 +12280,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListFilesArg._all_field_names_ = { 'limit', 'actions', -]) +} ListFilesArg._all_fields_ = [ ('limit', ListFilesArg.limit.validator), ('actions', ListFilesArg.actions.validator), ] ListFilesContinueArg.cursor.validator = bv.String() -ListFilesContinueArg._all_field_names_ = set(['cursor']) +ListFilesContinueArg._all_field_names_ = {'cursor'} ListFilesContinueArg._all_fields_ = [('cursor', ListFilesContinueArg.cursor.validator)] ListFilesContinueError._user_error_validator = SharingUserError_validator @@ -12309,10 +12307,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFilesResult.entries.validator = bv.List(SharedFileMetadata_validator) ListFilesResult.cursor.validator = bv.Nullable(bv.String()) -ListFilesResult._all_field_names_ = set([ +ListFilesResult._all_field_names_ = { 'entries', 'cursor', -]) +} ListFilesResult._all_fields_ = [ ('entries', ListFilesResult.entries.validator), ('cursor', ListFilesResult.cursor.validator), @@ -12320,21 +12318,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListFolderMembersCursorArg._all_field_names_ = { 'actions', 'limit', -]) +} ListFolderMembersCursorArg._all_fields_ = [ ('actions', ListFolderMembersCursorArg.actions.validator), ('limit', ListFolderMembersCursorArg.limit.validator), ] ListFolderMembersArgs.shared_folder_id.validator = common.SharedFolderId_validator -ListFolderMembersArgs._all_field_names_ = ListFolderMembersCursorArg._all_field_names_.union(set(['shared_folder_id'])) +ListFolderMembersArgs._all_field_names_ = ListFolderMembersCursorArg._all_field_names_.union({'shared_folder_id'}) ListFolderMembersArgs._all_fields_ = ListFolderMembersCursorArg._all_fields_ + [('shared_folder_id', ListFolderMembersArgs.shared_folder_id.validator)] ListFolderMembersContinueArg.cursor.validator = bv.String() -ListFolderMembersContinueArg._all_field_names_ = set(['cursor']) +ListFolderMembersContinueArg._all_field_names_ = {'cursor'} ListFolderMembersContinueArg._all_fields_ = [('cursor', ListFolderMembersContinueArg.cursor.validator)] ListFolderMembersContinueError._access_error_validator = SharedFolderAccessError_validator @@ -12351,17 +12349,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListFoldersArgs._all_field_names_ = { 'limit', 'actions', -]) +} ListFoldersArgs._all_fields_ = [ ('limit', ListFoldersArgs.limit.validator), ('actions', ListFoldersArgs.actions.validator), ] ListFoldersContinueArg.cursor.validator = bv.String() -ListFoldersContinueArg._all_field_names_ = set(['cursor']) +ListFoldersContinueArg._all_field_names_ = {'cursor'} ListFoldersContinueArg._all_fields_ = [('cursor', ListFoldersContinueArg.cursor.validator)] ListFoldersContinueError._invalid_cursor_validator = bv.Void() @@ -12376,10 +12374,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListFoldersResult.entries.validator = bv.List(SharedFolderMetadata_validator) ListFoldersResult.cursor.validator = bv.Nullable(bv.String()) -ListFoldersResult._all_field_names_ = set([ +ListFoldersResult._all_field_names_ = { 'entries', 'cursor', -]) +} ListFoldersResult._all_fields_ = [ ('entries', ListFoldersResult.entries.validator), ('cursor', ListFoldersResult.cursor.validator), @@ -12388,11 +12386,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListSharedLinksArg._all_field_names_ = { 'path', 'cursor', 'direct_only', -]) +} ListSharedLinksArg._all_fields_ = [ ('path', ListSharedLinksArg.path.validator), ('cursor', ListSharedLinksArg.cursor.validator), @@ -12414,11 +12412,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListSharedLinksResult._all_field_names_ = { 'links', 'has_more', 'cursor', -]) +} ListSharedLinksResult._all_fields_ = [ ('links', ListSharedLinksResult.links.validator), ('has_more', ListSharedLinksResult.has_more.validator), @@ -12428,11 +12426,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +MemberAccessLevelResult._all_field_names_ = { 'access_level', 'warning', 'access_details', -]) +} MemberAccessLevelResult._all_fields_ = [ ('access_level', MemberAccessLevelResult.access_level.validator), ('warning', MemberAccessLevelResult.warning.validator), @@ -12467,11 +12465,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberPermission.action.validator = MemberAction_validator MemberPermission.allow.validator = bv.Boolean() MemberPermission.reason.validator = bv.Nullable(PermissionDeniedReason_validator) -MemberPermission._all_field_names_ = set([ +MemberPermission._all_field_names_ = { 'action', 'allow', 'reason', -]) +} MemberPermission._all_fields_ = [ ('action', MemberPermission.action.validator), ('allow', MemberPermission.allow.validator), @@ -12505,11 +12503,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ModifySharedLinkSettingsArgs.url.validator = bv.String() ModifySharedLinkSettingsArgs.settings.validator = SharedLinkSettings_validator ModifySharedLinkSettingsArgs.remove_expiration.validator = bv.Boolean() -ModifySharedLinkSettingsArgs._all_field_names_ = set([ +ModifySharedLinkSettingsArgs._all_field_names_ = { 'url', 'settings', 'remove_expiration', -]) +} ModifySharedLinkSettingsArgs._all_fields_ = [ ('url', ModifySharedLinkSettingsArgs.url.validator), ('settings', ModifySharedLinkSettingsArgs.settings.validator), @@ -12527,7 +12525,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = {'shared_folder_id'} MountFolderArg._all_fields_ = [('shared_folder_id', MountFolderArg.shared_folder_id.validator)] MountFolderError._access_error_validator = SharedFolderAccessError_validator @@ -12557,12 +12555,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ParentFolderAccessInfo._all_field_names_ = { 'folder_name', 'shared_folder_id', 'permissions', 'path', -]) +} ParentFolderAccessInfo._all_fields_ = [ ('folder_name', ParentFolderAccessInfo.folder_name.validator), ('shared_folder_id', ParentFolderAccessInfo.shared_folder_id.validator), @@ -12571,7 +12569,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] PathLinkMetadata.path.validator = bv.String() -PathLinkMetadata._field_names_ = set(['path']) +PathLinkMetadata._field_names_ = {'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_ @@ -12638,7 +12636,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PermissionDeniedReason.other = PermissionDeniedReason('other') RelinquishFileMembershipArg.file.validator = PathOrId_validator -RelinquishFileMembershipArg._all_field_names_ = set(['file']) +RelinquishFileMembershipArg._all_field_names_ = {'file'} RelinquishFileMembershipArg._all_fields_ = [('file', RelinquishFileMembershipArg.file.validator)] RelinquishFileMembershipError._access_error_validator = SharingFileAccessError_validator @@ -12658,10 +12656,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelinquishFolderMembershipArg.shared_folder_id.validator = common.SharedFolderId_validator RelinquishFolderMembershipArg.leave_a_copy.validator = bv.Boolean() -RelinquishFolderMembershipArg._all_field_names_ = set([ +RelinquishFolderMembershipArg._all_field_names_ = { '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), @@ -12696,10 +12694,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RemoveFileMemberArg.file.validator = PathOrId_validator RemoveFileMemberArg.member.validator = MemberSelector_validator -RemoveFileMemberArg._all_field_names_ = set([ +RemoveFileMemberArg._all_field_names_ = { 'file', 'member', -]) +} RemoveFileMemberArg._all_fields_ = [ ('file', RemoveFileMemberArg.file.validator), ('member', RemoveFileMemberArg.member.validator), @@ -12721,11 +12719,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +RemoveFolderMemberArg._all_field_names_ = { 'shared_folder_id', 'member', 'leave_a_copy', -]) +} RemoveFolderMemberArg._all_fields_ = [ ('shared_folder_id', RemoveFolderMemberArg.shared_folder_id.validator), ('member', RemoveFolderMemberArg.member.validator), @@ -12786,7 +12784,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RequestedLinkAccessLevel.other = RequestedLinkAccessLevel('other') RevokeSharedLinkArg.url.validator = bv.String() -RevokeSharedLinkArg._all_field_names_ = set(['url']) +RevokeSharedLinkArg._all_field_names_ = {'url'} RevokeSharedLinkArg._all_fields_ = [('url', RevokeSharedLinkArg.url.validator)] RevokeSharedLinkError._shared_link_malformed_validator = bv.Void() @@ -12799,10 +12797,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SetAccessInheritanceArg.access_inheritance.validator = AccessInheritance_validator SetAccessInheritanceArg.shared_folder_id.validator = common.SharedFolderId_validator -SetAccessInheritanceArg._all_field_names_ = set([ +SetAccessInheritanceArg._all_field_names_ = { 'access_inheritance', 'shared_folder_id', -]) +} SetAccessInheritanceArg._all_fields_ = [ ('access_inheritance', SetAccessInheritanceArg.access_inheritance.validator), ('shared_folder_id', SetAccessInheritanceArg.shared_folder_id.validator), @@ -12827,7 +12825,7 @@ 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([ +ShareFolderArgBase._all_field_names_ = { 'acl_update_policy', 'force_async', 'member_policy', @@ -12835,7 +12833,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): '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), @@ -12848,10 +12846,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ShareFolderArg._all_field_names_ = ShareFolderArgBase._all_field_names_.union({ 'actions', 'link_settings', -])) +}) ShareFolderArg._all_fields_ = ShareFolderArgBase._all_fields_ + [ ('actions', ShareFolderArg.actions.validator), ('link_settings', ShareFolderArg.link_settings.validator), @@ -12953,10 +12951,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedContentLinkMetadata.audience_exceptions.validator = bv.Nullable(AudienceExceptions_validator) SharedContentLinkMetadata.url.validator = bv.String() -SharedContentLinkMetadata._all_field_names_ = SharedContentLinkMetadataBase._all_field_names_.union(set([ +SharedContentLinkMetadata._all_field_names_ = SharedContentLinkMetadataBase._all_field_names_.union({ 'audience_exceptions', 'url', -])) +}) SharedContentLinkMetadata._all_fields_ = SharedContentLinkMetadataBase._all_fields_ + [ ('audience_exceptions', SharedContentLinkMetadata.audience_exceptions.validator), ('url', SharedContentLinkMetadata.url.validator), @@ -12966,12 +12964,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +SharedFileMembers._all_field_names_ = { 'users', 'groups', 'invitees', 'cursor', -]) +} SharedFileMembers._all_fields_ = [ ('users', SharedFileMembers.users.validator), ('groups', SharedFileMembers.groups.validator), @@ -12993,7 +12991,7 @@ 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([ +SharedFileMetadata._all_field_names_ = { 'access_type', 'id', 'expected_link_metadata', @@ -13008,7 +13006,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'policy', 'preview_url', 'time_invited', -]) +} SharedFileMetadata._all_fields_ = [ ('access_type', SharedFileMetadata.access_type.validator), ('id', SharedFileMetadata.id.validator), @@ -13067,12 +13065,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +SharedFolderMembers._all_field_names_ = { 'users', 'groups', 'invitees', 'cursor', -]) +} SharedFolderMembers._all_fields_ = [ ('users', SharedFolderMembers.users.validator), ('groups', SharedFolderMembers.groups.validator), @@ -13089,7 +13087,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +SharedFolderMetadataBase._all_field_names_ = { 'access_type', 'is_inside_team_folder', 'is_team_folder', @@ -13099,7 +13097,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): '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), @@ -13120,7 +13118,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderMetadata.shared_folder_id.validator = common.SharedFolderId_validator SharedFolderMetadata.time_invited.validator = common.DropboxTimestamp_validator SharedFolderMetadata.access_inheritance.validator = AccessInheritance_validator -SharedFolderMetadata._all_field_names_ = SharedFolderMetadataBase._all_field_names_.union(set([ +SharedFolderMetadata._all_field_names_ = SharedFolderMetadataBase._all_field_names_.union({ 'link_metadata', 'name', 'permissions', @@ -13129,7 +13127,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'shared_folder_id', 'time_invited', 'access_inheritance', -])) +}) SharedFolderMetadata._all_fields_ = SharedFolderMetadataBase._all_fields_ + [ ('link_metadata', SharedFolderMetadata.link_metadata.validator), ('name', SharedFolderMetadata.name.validator), @@ -13195,7 +13193,7 @@ 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([ +SharedLinkSettings._all_field_names_ = { 'require_password', 'link_password', 'expires', @@ -13203,7 +13201,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'access', 'requested_visibility', 'allow_download', -]) +} SharedLinkSettings._all_fields_ = [ ('require_password', SharedLinkSettings.require_password.validator), ('link_password', SharedLinkSettings.link_password.validator), @@ -13259,11 +13257,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +TeamMemberInfo._all_field_names_ = { 'team_info', 'display_name', 'member_id', -]) +} TeamMemberInfo._all_fields_ = [ ('team_info', TeamMemberInfo.team_info.validator), ('display_name', TeamMemberInfo.display_name.validator), @@ -13272,10 +13270,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TransferFolderArg.shared_folder_id.validator = common.SharedFolderId_validator TransferFolderArg.to_dropbox_id.validator = DropboxId_validator -TransferFolderArg._all_field_names_ = set([ +TransferFolderArg._all_field_names_ = { '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), @@ -13309,7 +13307,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TransferFolderError.other = TransferFolderError('other') UnmountFolderArg.shared_folder_id.validator = common.SharedFolderId_validator -UnmountFolderArg._all_field_names_ = set(['shared_folder_id']) +UnmountFolderArg._all_field_names_ = {'shared_folder_id'} UnmountFolderArg._all_fields_ = [('shared_folder_id', UnmountFolderArg.shared_folder_id.validator)] UnmountFolderError._access_error_validator = SharedFolderAccessError_validator @@ -13328,7 +13326,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UnmountFolderError.other = UnmountFolderError('other') UnshareFileArg.file.validator = PathOrId_validator -UnshareFileArg._all_field_names_ = set(['file']) +UnshareFileArg._all_field_names_ = {'file'} UnshareFileArg._all_fields_ = [('file', UnshareFileArg.file.validator)] UnshareFileError._user_error_validator = SharingUserError_validator @@ -13344,10 +13342,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UnshareFolderArg.shared_folder_id.validator = common.SharedFolderId_validator UnshareFolderArg.leave_a_copy.validator = bv.Boolean() -UnshareFolderArg._all_field_names_ = set([ +UnshareFolderArg._all_field_names_ = { '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), @@ -13374,11 +13372,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFileMemberArgs.file.validator = PathOrId_validator UpdateFileMemberArgs.member.validator = MemberSelector_validator UpdateFileMemberArgs.access_level.validator = AccessLevel_validator -UpdateFileMemberArgs._all_field_names_ = set([ +UpdateFileMemberArgs._all_field_names_ = { 'file', 'member', 'access_level', -]) +} UpdateFileMemberArgs._all_fields_ = [ ('file', UpdateFileMemberArgs.file.validator), ('member', UpdateFileMemberArgs.member.validator), @@ -13388,11 +13386,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFolderMemberArg.shared_folder_id.validator = common.SharedFolderId_validator UpdateFolderMemberArg.member.validator = MemberSelector_validator UpdateFolderMemberArg.access_level.validator = AccessLevel_validator -UpdateFolderMemberArg._all_field_names_ = set([ +UpdateFolderMemberArg._all_field_names_ = { 'shared_folder_id', 'member', 'access_level', -]) +} UpdateFolderMemberArg._all_fields_ = [ ('shared_folder_id', UpdateFolderMemberArg.shared_folder_id.validator), ('member', UpdateFolderMemberArg.member.validator), @@ -13425,7 +13423,7 @@ 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([ +UpdateFolderPolicyArg._all_field_names_ = { 'shared_folder_id', 'member_policy', 'acl_update_policy', @@ -13433,7 +13431,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'shared_link_policy', 'link_settings', 'actions', -]) +} UpdateFolderPolicyArg._all_fields_ = [ ('shared_folder_id', UpdateFolderPolicyArg.shared_folder_id.validator), ('member_policy', UpdateFolderPolicyArg.member_policy.validator), @@ -13469,15 +13467,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UpdateFolderPolicyError.other = UpdateFolderPolicyError('other') UserMembershipInfo.user.validator = UserInfo_validator -UserMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union(set(['user'])) +UserMembershipInfo._all_field_names_ = MembershipInfo._all_field_names_.union({'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([ +UserFileMembershipInfo._all_field_names_ = UserMembershipInfo._all_field_names_.union({ '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), @@ -13488,13 +13486,13 @@ 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([ +UserInfo._all_field_names_ = { 'account_id', 'email', 'display_name', 'same_team', 'team_member_id', -]) +} UserInfo._all_fields_ = [ ('account_id', UserInfo.account_id.validator), ('email', UserInfo.email.validator), @@ -13542,12 +13540,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): VisibilityPolicy.resolved_policy.validator = AlphaResolvedVisibility_validator VisibilityPolicy.allowed.validator = bv.Boolean() VisibilityPolicy.disallowed_reason.validator = bv.Nullable(VisibilityPolicyDisallowedReason_validator) -VisibilityPolicy._all_field_names_ = set([ +VisibilityPolicy._all_field_names_ = { 'policy', 'resolved_policy', 'allowed', 'disallowed_reason', -]) +} VisibilityPolicy._all_fields_ = [ ('policy', VisibilityPolicy.policy.validator), ('resolved_policy', VisibilityPolicy.resolved_policy.validator), diff --git a/dropbox/team.py b/dropbox/team.py index 7859a456..874d2e5a 100644 --- a/dropbox/team.py +++ b/dropbox/team.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -78,7 +76,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceSession_validator = bv.Struct(DeviceSession) @@ -112,7 +110,7 @@ def __init__(self, created=None, updated=None, expires=None): - super(ActiveWebSession, self).__init__(session_id, + super().__init__(session_id, ip_address, country, created, @@ -143,7 +141,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ActiveWebSession_validator = bv.Struct(ActiveWebSession) @@ -471,7 +469,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddSecondaryEmailResult_validator = bv.Union(AddSecondaryEmailResult) @@ -497,7 +495,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddSecondaryEmailsArg_validator = bv.Struct(AddSecondaryEmailsArg) @@ -548,7 +546,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AddSecondaryEmailsError_validator = bv.Union(AddSecondaryEmailsError) @@ -574,7 +572,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AddSecondaryEmailsResult_validator = bv.Struct(AddSecondaryEmailsResult) @@ -639,7 +637,7 @@ def is_member_only(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) AdminTier_validator = bv.Union(AdminTier) @@ -712,7 +710,7 @@ def __init__(self, is_app_folder = bb.Attribute("is_app_folder") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ApiApp, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ApiApp_validator = bv.Struct(ApiApp) @@ -740,7 +738,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BaseDfbReport_validator = bv.Struct(BaseDfbReport) @@ -853,7 +851,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BaseTeamFolderError_validator = bv.Union(BaseTeamFolderError) @@ -892,7 +890,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) CustomQuotaError_validator = bv.Union(CustomQuotaError) @@ -984,7 +982,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CustomQuotaResult_validator = bv.Union(CustomQuotaResult) @@ -1009,7 +1007,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CustomQuotaUsersArg_validator = bv.Struct(CustomQuotaUsersArg) @@ -1047,7 +1045,7 @@ def __init__(self, end_date = bb.Attribute("end_date", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(DateRange, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) DateRange_validator = bv.Struct(DateRange) @@ -1073,7 +1071,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DateRangeError_validator = bv.Union(DateRangeError) @@ -1203,7 +1201,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteSecondaryEmailResult_validator = bv.Union(DeleteSecondaryEmailResult) @@ -1229,7 +1227,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteSecondaryEmailsArg_validator = bv.Struct(DeleteSecondaryEmailsArg) @@ -1251,7 +1249,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteSecondaryEmailsResult_validator = bv.Struct(DeleteSecondaryEmailsResult) @@ -1290,7 +1288,7 @@ def __init__(self, country=None, created=None, updated=None): - super(DesktopClientSession, self).__init__(session_id, + super().__init__(session_id, ip_address, country, created, @@ -1327,7 +1325,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DesktopClientSession_validator = bv.Struct(DesktopClientSession) @@ -1385,7 +1383,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DesktopPlatform_validator = bv.Union(DesktopPlatform) @@ -1420,7 +1418,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceSessionArg_validator = bv.Struct(DeviceSessionArg) @@ -1510,7 +1508,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DevicesActive_validator = bv.Struct(DevicesActive) @@ -1537,7 +1535,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListArg_validator = bv.Struct(ExcludedUsersListArg) @@ -1565,7 +1563,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListContinueArg_validator = bv.Struct(ExcludedUsersListContinueArg) @@ -1604,7 +1602,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListContinueError_validator = bv.Union(ExcludedUsersListContinueError) @@ -1642,7 +1640,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListError_validator = bv.Union(ExcludedUsersListError) @@ -1691,7 +1689,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersListResult_validator = bv.Struct(ExcludedUsersListResult) @@ -1720,7 +1718,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersUpdateArg_validator = bv.Struct(ExcludedUsersUpdateArg) @@ -1771,7 +1769,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersUpdateError_validator = bv.Union(ExcludedUsersUpdateError) @@ -1798,7 +1796,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersUpdateResult_validator = bv.Struct(ExcludedUsersUpdateResult) @@ -1836,7 +1834,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExcludedUsersUpdateStatus_validator = bv.Union(ExcludedUsersUpdateStatus) @@ -1910,7 +1908,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) Feature_validator = bv.Union(Feature) @@ -2053,7 +2051,7 @@ def get_has_team_selective_sync(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()._process_custom_annotations(annotation_type, field_path, processor) FeatureValue_validator = bv.Union(FeatureValue) @@ -2080,7 +2078,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FeaturesGetValuesBatchArg_validator = bv.Struct(FeaturesGetValuesBatchArg) @@ -2118,7 +2116,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FeaturesGetValuesBatchError_validator = bv.Union(FeaturesGetValuesBatchError) @@ -2140,7 +2138,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FeaturesGetValuesBatchResult_validator = bv.Struct(FeaturesGetValuesBatchResult) @@ -2218,7 +2216,7 @@ def __init__(self, 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) + super().__init__(start_date) self._adds_value = bb.NOT_SET self._edits_value = bb.NOT_SET self._deletes_value = bb.NOT_SET @@ -2305,7 +2303,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetActivityReport_validator = bv.Struct(GetActivityReport) @@ -2337,7 +2335,7 @@ def __init__(self, active_1_day=None, active_7_day=None, active_28_day=None): - super(GetDevicesReport, self).__init__(start_date) + super().__init__(start_date) self._active_1_day_value = bb.NOT_SET self._active_7_day_value = bb.NOT_SET self._active_28_day_value = bb.NOT_SET @@ -2358,7 +2356,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetDevicesReport_validator = bv.Struct(GetDevicesReport) @@ -2396,7 +2394,7 @@ def __init__(self, members_joined=None, suspended_members=None, licenses=None): - super(GetMembershipReport, self).__init__(start_date) + super().__init__(start_date) self._team_size_value = bb.NOT_SET self._pending_invites_value = bb.NOT_SET self._members_joined_value = bb.NOT_SET @@ -2429,7 +2427,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetMembershipReport_validator = bv.Struct(GetMembershipReport) @@ -2472,7 +2470,7 @@ def __init__(self, unshared_usage=None, shared_folders=None, member_storage_map=None): - super(GetStorageReport, self).__init__(start_date) + super().__init__(start_date) self._total_usage_value = bb.NOT_SET self._shared_usage_value = bb.NOT_SET self._unshared_usage_value = bb.NOT_SET @@ -2505,7 +2503,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetStorageReport_validator = bv.Struct(GetStorageReport) @@ -2546,7 +2544,7 @@ def is_owner(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupAccessType_validator = bv.Union(GroupAccessType) @@ -2601,7 +2599,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupCreateArg_validator = bv.Struct(GroupCreateArg) @@ -2674,7 +2672,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupCreateError_validator = bv.Union(GroupCreateError) @@ -2713,7 +2711,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupSelectorError_validator = bv.Union(GroupSelectorError) @@ -2742,7 +2740,7 @@ def is_system_managed_group_disallowed(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupSelectorWithTeamGroupError_validator = bv.Union(GroupSelectorWithTeamGroupError) @@ -2768,7 +2766,7 @@ def is_group_already_deleted(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupDeleteError_validator = bv.Union(GroupDeleteError) @@ -2796,7 +2794,7 @@ def __init__(self, group_external_id=None, member_count=None, members=None): - super(GroupFullInfo, self).__init__(group_name, + super().__init__(group_name, group_id, group_management_type, group_external_id, @@ -2815,7 +2813,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupFullInfo_validator = bv.Struct(GroupFullInfo) @@ -2852,7 +2850,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMemberInfo_validator = bv.Struct(GroupMemberInfo) @@ -2889,7 +2887,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMemberSelector_validator = bv.Struct(GroupMemberSelector) @@ -2918,7 +2916,7 @@ def is_member_not_in_group(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMemberSelectorError_validator = bv.Union(GroupMemberSelectorError) @@ -2945,7 +2943,7 @@ def is_user_cannot_be_manager_of_company_managed_group(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMemberSetAccessTypeError_validator = bv.Union(GroupMemberSetAccessTypeError) @@ -2973,7 +2971,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) IncludeMembersArg_validator = bv.Struct(IncludeMembersArg) @@ -2995,7 +2993,7 @@ def __init__(self, group=None, members=None, return_members=None): - super(GroupMembersAddArg, self).__init__(return_members) + super().__init__(return_members) self._group_value = bb.NOT_SET self._members_value = bb.NOT_SET if group is not None: @@ -3010,7 +3008,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMembersAddArg_validator = bv.Struct(GroupMembersAddArg) @@ -3169,7 +3167,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMembersAddError_validator = bv.Union(GroupMembersAddError) @@ -3212,7 +3210,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMembersChangeResult_validator = bv.Struct(GroupMembersChangeResult) @@ -3235,7 +3233,7 @@ def __init__(self, group=None, users=None, return_members=None): - super(GroupMembersRemoveArg, self).__init__(return_members) + super().__init__(return_members) self._group_value = bb.NOT_SET self._users_value = bb.NOT_SET if group is not None: @@ -3250,7 +3248,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMembersRemoveArg_validator = bv.Struct(GroupMembersRemoveArg) @@ -3279,7 +3277,7 @@ def is_member_not_in_group(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMembersSelectorError_validator = bv.Union(GroupMembersSelectorError) @@ -3372,7 +3370,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMembersRemoveError_validator = bv.Union(GroupMembersRemoveError) @@ -3409,7 +3407,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMembersSelector_validator = bv.Struct(GroupMembersSelector) @@ -3435,7 +3433,7 @@ def __init__(self, user=None, access_type=None, return_members=None): - super(GroupMembersSetAccessTypeArg, self).__init__(group, + super().__init__(group, user) self._access_type_value = bb.NOT_SET self._return_members_value = bb.NOT_SET @@ -3451,7 +3449,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMembersSetAccessTypeArg_validator = bv.Struct(GroupMembersSetAccessTypeArg) @@ -3533,7 +3531,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupSelector_validator = bv.Union(GroupSelector) @@ -3565,7 +3563,7 @@ def __init__(self, new_group_name=None, new_group_external_id=None, new_group_management_type=None): - super(GroupUpdateArgs, self).__init__(return_members) + super().__init__(return_members) self._group_value = bb.NOT_SET self._new_group_name_value = bb.NOT_SET self._new_group_external_id_value = bb.NOT_SET @@ -3592,7 +3590,7 @@ def __init__(self, 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()._process_custom_annotations(annotation_type, field_path, processor) GroupUpdateArgs_validator = bv.Struct(GroupUpdateArgs) @@ -3642,7 +3640,7 @@ def is_external_id_already_in_use(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupUpdateError_validator = bv.Union(GroupUpdateError) @@ -3679,7 +3677,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsGetInfoError_validator = bv.Union(GroupsGetInfoError) @@ -3764,7 +3762,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsGetInfoItem_validator = bv.Union(GroupsGetInfoItem) @@ -3789,7 +3787,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsListArg_validator = bv.Struct(GroupsListArg) @@ -3815,7 +3813,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsListContinueArg_validator = bv.Struct(GroupsListContinueArg) @@ -3851,7 +3849,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsListContinueError_validator = bv.Union(GroupsListContinueError) @@ -3898,7 +3896,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsListResult_validator = bv.Struct(GroupsListResult) @@ -3933,7 +3931,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsMembersListArg_validator = bv.Struct(GroupsMembersListArg) @@ -3959,7 +3957,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsMembersListContinueArg_validator = bv.Struct(GroupsMembersListContinueArg) @@ -3996,7 +3994,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsMembersListContinueError_validator = bv.Union(GroupsMembersListContinueError) @@ -4043,7 +4041,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsMembersListResult_validator = bv.Struct(GroupsMembersListResult) @@ -4069,7 +4067,7 @@ def is_access_denied(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsPollError_validator = bv.Union(GroupsPollError) @@ -4152,7 +4150,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupsSelector_validator = bv.Union(GroupsSelector) @@ -4212,7 +4210,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) HasTeamFileEventsValue_validator = bv.Union(HasTeamFileEventsValue) @@ -4272,7 +4270,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) HasTeamSelectiveSyncValue_validator = bv.Union(HasTeamSelectiveSyncValue) @@ -4332,7 +4330,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) HasTeamSharedDropboxValue_validator = bv.Union(HasTeamSharedDropboxValue) @@ -4449,7 +4447,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldHeldRevisionMetadata_validator = bv.Struct(LegalHoldHeldRevisionMetadata) @@ -4540,7 +4538,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldPolicy_validator = bv.Struct(LegalHoldPolicy) @@ -4631,7 +4629,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldStatus_validator = bv.Union(LegalHoldStatus) @@ -4680,7 +4678,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsError_validator = bv.Union(LegalHoldsError) @@ -4705,7 +4703,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsGetPolicyArg_validator = bv.Struct(LegalHoldsGetPolicyArg) @@ -4731,7 +4729,7 @@ def is_legal_hold_policy_not_found(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsGetPolicyError_validator = bv.Union(LegalHoldsGetPolicyError) @@ -4780,7 +4778,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListHeldRevisionResult_validator = bv.Struct(LegalHoldsListHeldRevisionResult) @@ -4805,7 +4803,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListHeldRevisionsArg_validator = bv.Struct(LegalHoldsListHeldRevisionsArg) @@ -4841,7 +4839,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListHeldRevisionsContinueArg_validator = bv.Struct(LegalHoldsListHeldRevisionsContinueArg) @@ -4905,7 +4903,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListHeldRevisionsContinueError_validator = bv.Union(LegalHoldsListHeldRevisionsContinueError) @@ -4955,7 +4953,7 @@ def is_inactive_legal_hold(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListHeldRevisionsError_validator = bv.Union(LegalHoldsListHeldRevisionsError) @@ -4981,7 +4979,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListPoliciesArg_validator = bv.Struct(LegalHoldsListPoliciesArg) @@ -5007,7 +5005,7 @@ def is_transient_error(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListPoliciesError_validator = bv.Union(LegalHoldsListPoliciesError) @@ -5029,7 +5027,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsListPoliciesResult_validator = bv.Struct(LegalHoldsListPoliciesResult) @@ -5094,7 +5092,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyCreateArg_validator = bv.Struct(LegalHoldsPolicyCreateArg) @@ -5205,7 +5203,7 @@ def is_invalid_date(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyCreateError_validator = bv.Union(LegalHoldsPolicyCreateError) @@ -5230,7 +5228,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyReleaseArg_validator = bv.Struct(LegalHoldsPolicyReleaseArg) @@ -5281,7 +5279,7 @@ def is_legal_hold_policy_not_found(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyReleaseError_validator = bv.Union(LegalHoldsPolicyReleaseError) @@ -5334,7 +5332,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyUpdateArg_validator = bv.Struct(LegalHoldsPolicyUpdateArg) @@ -5446,7 +5444,7 @@ def is_legal_hold_policy_not_found(self): 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsPolicyUpdateError_validator = bv.Union(LegalHoldsPolicyUpdateError) @@ -5471,7 +5469,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListMemberAppsArg_validator = bv.Struct(ListMemberAppsArg) @@ -5510,7 +5508,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListMemberAppsError_validator = bv.Union(ListMemberAppsError) @@ -5536,7 +5534,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListMemberAppsResult_validator = bv.Struct(ListMemberAppsResult) @@ -5591,7 +5589,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListMemberDevicesArg_validator = bv.Struct(ListMemberDevicesArg) @@ -5627,7 +5625,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListMemberDevicesError_validator = bv.Union(ListMemberDevicesError) @@ -5673,7 +5671,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListMemberDevicesResult_validator = bv.Struct(ListMemberDevicesResult) @@ -5705,7 +5703,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListMembersAppsArg_validator = bv.Struct(ListMembersAppsArg) @@ -5747,7 +5745,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListMembersAppsError_validator = bv.Union(ListMembersAppsError) @@ -5799,7 +5797,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListMembersAppsResult_validator = bv.Struct(ListMembersAppsResult) @@ -5858,7 +5856,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListMembersDevicesArg_validator = bv.Struct(ListMembersDevicesArg) @@ -5897,7 +5895,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListMembersDevicesError_validator = bv.Union(ListMembersDevicesError) @@ -5946,7 +5944,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListMembersDevicesResult_validator = bv.Struct(ListMembersDevicesResult) @@ -5978,7 +5976,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListTeamAppsArg_validator = bv.Struct(ListTeamAppsArg) @@ -6020,7 +6018,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListTeamAppsError_validator = bv.Union(ListTeamAppsError) @@ -6072,7 +6070,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListTeamAppsResult_validator = bv.Struct(ListTeamAppsResult) @@ -6131,7 +6129,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListTeamDevicesArg_validator = bv.Struct(ListTeamDevicesArg) @@ -6170,7 +6168,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ListTeamDevicesError_validator = bv.Union(ListTeamDevicesError) @@ -6219,7 +6217,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ListTeamDevicesResult_validator = bv.Struct(ListTeamDevicesResult) @@ -6255,7 +6253,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAccess_validator = bv.Struct(MemberAccess) @@ -6340,7 +6338,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddArgBase_validator = bv.Struct(MemberAddArgBase) @@ -6361,7 +6359,7 @@ def __init__(self, send_welcome_email=None, is_directory_restricted=None, role=None): - super(MemberAddArg, self).__init__(member_email, + super().__init__(member_email, member_given_name, member_surname, member_external_id, @@ -6376,7 +6374,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddArg_validator = bv.Struct(MemberAddArg) @@ -6734,7 +6732,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddResultBase_validator = bv.Union(MemberAddResultBase) @@ -6785,7 +6783,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddResult_validator = bv.Union(MemberAddResult) @@ -6806,7 +6804,7 @@ def __init__(self, send_welcome_email=None, is_directory_restricted=None, role_ids=None): - super(MemberAddV2Arg, self).__init__(member_email, + super().__init__(member_email, member_given_name, member_surname, member_external_id, @@ -6821,7 +6819,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddV2Arg_validator = bv.Struct(MemberAddV2Arg) @@ -6884,7 +6882,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddV2Result_validator = bv.Union(MemberAddV2Result) @@ -6941,7 +6939,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberDevices_validator = bv.Struct(MemberDevices) @@ -6978,7 +6976,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberLinkedApps_validator = bv.Struct(MemberLinkedApps) @@ -7146,7 +7144,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberProfile_validator = bv.Struct(MemberProfile) @@ -7177,7 +7175,7 @@ def is_user_not_found(self): 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()._process_custom_annotations(annotation_type, field_path, processor) UserSelectorError_validator = bv.Union(UserSelectorError) @@ -7203,7 +7201,7 @@ def is_user_not_in_team(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSelectorError_validator = bv.Union(MemberSelectorError) @@ -7229,7 +7227,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersAddArgBase_validator = bv.Struct(MembersAddArgBase) @@ -7248,7 +7246,7 @@ class MembersAddArg(MembersAddArgBase): def __init__(self, new_members=None, force_async=None): - super(MembersAddArg, self).__init__(force_async) + super().__init__(force_async) self._new_members_value = bb.NOT_SET if new_members is not None: self.new_members = new_members @@ -7257,7 +7255,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersAddArg_validator = bv.Struct(MembersAddArg) @@ -7342,7 +7340,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersAddJobStatus_validator = bv.Union(MembersAddJobStatus) @@ -7439,7 +7437,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersAddJobStatusV2Result_validator = bv.Union(MembersAddJobStatusV2Result) @@ -7480,7 +7478,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersAddLaunch_validator = bv.Union(MembersAddLaunch) @@ -7533,7 +7531,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersAddLaunchV2Result_validator = bv.Union(MembersAddLaunchV2Result) @@ -7552,7 +7550,7 @@ class MembersAddV2Arg(MembersAddArgBase): def __init__(self, new_members=None, force_async=None): - super(MembersAddV2Arg, self).__init__(force_async) + super().__init__(force_async) self._new_members_value = bb.NOT_SET if new_members is not None: self.new_members = new_members @@ -7561,7 +7559,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersAddV2Arg_validator = bv.Struct(MembersAddV2Arg) @@ -7590,7 +7588,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersDeactivateBaseArg_validator = bv.Struct(MembersDeactivateBaseArg) @@ -7613,7 +7611,7 @@ def __init__(self, user=None, transfer_dest_id=None, transfer_admin_id=None): - super(MembersDataTransferArg, self).__init__(user) + super().__init__(user) self._transfer_dest_id_value = bb.NOT_SET self._transfer_admin_id_value = bb.NOT_SET if transfer_dest_id is not None: @@ -7628,7 +7626,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersDataTransferArg_validator = bv.Struct(MembersDataTransferArg) @@ -7647,7 +7645,7 @@ class MembersDeactivateArg(MembersDeactivateBaseArg): def __init__(self, user=None, wipe_data=None): - super(MembersDeactivateArg, self).__init__(user) + super().__init__(user) self._wipe_data_value = bb.NOT_SET if wipe_data is not None: self.wipe_data = wipe_data @@ -7656,7 +7654,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersDeactivateArg_validator = bv.Struct(MembersDeactivateArg) @@ -7693,7 +7691,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersDeactivateError_validator = bv.Union(MembersDeactivateError) @@ -7719,7 +7717,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersDeleteProfilePhotoArg_validator = bv.Struct(MembersDeleteProfilePhotoArg) @@ -7756,7 +7754,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersDeleteProfilePhotoError_validator = bv.Union(MembersDeleteProfilePhotoError) @@ -7784,7 +7782,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersGetAvailableTeamMemberRolesResult_validator = bv.Struct(MembersGetAvailableTeamMemberRolesResult) @@ -7809,7 +7807,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoArgs_validator = bv.Struct(MembersGetInfoArgs) @@ -7833,7 +7831,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoError_validator = bv.Union(MembersGetInfoError) @@ -7888,7 +7886,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoItemBase_validator = bv.Union(MembersGetInfoItemBase) @@ -7937,7 +7935,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoItem_validator = bv.Union(MembersGetInfoItem) @@ -7998,7 +7996,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoItemV2_validator = bv.Union(MembersGetInfoItemV2) @@ -8023,7 +8021,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoV2Arg_validator = bv.Struct(MembersGetInfoV2Arg) @@ -8048,7 +8046,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersGetInfoV2Result_validator = bv.Struct(MembersGetInfoV2Result) @@ -8084,7 +8082,7 @@ def __init__(self, permanently_deleted_users = bb.Attribute("permanently_deleted_users") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) MembersInfo_validator = bv.Struct(MembersInfo) @@ -8119,7 +8117,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersListArg_validator = bv.Struct(MembersListArg) @@ -8145,7 +8143,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersListContinueArg_validator = bv.Struct(MembersListContinueArg) @@ -8181,7 +8179,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersListContinueError_validator = bv.Union(MembersListContinueError) @@ -8205,7 +8203,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersListError_validator = bv.Union(MembersListError) @@ -8253,7 +8251,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersListResult_validator = bv.Struct(MembersListResult) @@ -8301,7 +8299,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersListV2Result_validator = bv.Struct(MembersListV2Result) @@ -8329,7 +8327,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersRecoverArg_validator = bv.Struct(MembersRecoverArg) @@ -8390,7 +8388,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersRecoverError_validator = bv.Union(MembersRecoverError) @@ -8432,7 +8430,7 @@ def __init__(self, transfer_admin_id=None, keep_account=None, retain_team_shares=None): - super(MembersRemoveArg, self).__init__(user, + super().__init__(user, wipe_data) self._transfer_dest_id_value = bb.NOT_SET self._transfer_admin_id_value = bb.NOT_SET @@ -8460,7 +8458,7 @@ def __init__(self, retain_team_shares = bb.Attribute("retain_team_shares") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRemoveArg, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) MembersRemoveArg_validator = bv.Struct(MembersRemoveArg) @@ -8585,7 +8583,7 @@ def is_recipient_not_verified(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersTransferFilesError_validator = bv.Union(MembersTransferFilesError) @@ -8738,7 +8736,7 @@ def is_cannot_keep_account_required_to_sign_tos(self): return self._tag == 'cannot_keep_account_required_to_sign_tos' def _process_custom_annotations(self, annotation_type, field_path, processor): - super(MembersRemoveError, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) MembersRemoveError_validator = bv.Union(MembersRemoveError) @@ -8762,7 +8760,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSendWelcomeError_validator = bv.Union(MembersSendWelcomeError) @@ -8802,7 +8800,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissions2Arg_validator = bv.Struct(MembersSetPermissions2Arg) @@ -8877,7 +8875,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissions2Error_validator = bv.Union(MembersSetPermissions2Error) @@ -8913,7 +8911,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissions2Result_validator = bv.Struct(MembersSetPermissions2Result) @@ -8951,7 +8949,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissionsArg_validator = bv.Struct(MembersSetPermissionsArg) @@ -9024,7 +9022,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissionsError_validator = bv.Union(MembersSetPermissionsError) @@ -9059,7 +9057,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetPermissionsResult_validator = bv.Struct(MembersSetPermissionsResult) @@ -9145,7 +9143,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetProfileArg_validator = bv.Struct(MembersSetProfileArg) @@ -9279,7 +9277,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetProfileError_validator = bv.Union(MembersSetProfileError) @@ -9315,7 +9313,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetProfilePhotoArg_validator = bv.Struct(MembersSetProfilePhotoArg) @@ -9381,7 +9379,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSetProfilePhotoError_validator = bv.Union(MembersSetProfilePhotoError) @@ -9431,7 +9429,7 @@ def is_team_license_limit(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersSuspendError_validator = bv.Union(MembersSuspendError) @@ -9497,7 +9495,7 @@ def is_user_data_already_transferred(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersTransferFormerMembersFilesError_validator = bv.Union(MembersTransferFormerMembersFilesError) @@ -9525,7 +9523,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MembersUnsuspendArg_validator = bv.Struct(MembersUnsuspendArg) @@ -9563,7 +9561,7 @@ def is_team_license_limit(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MembersUnsuspendError_validator = bv.Union(MembersUnsuspendError) @@ -9645,7 +9643,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MobileClientPlatform_validator = bv.Union(MobileClientPlatform) @@ -9682,7 +9680,7 @@ def __init__(self, client_version=None, os_version=None, last_carrier=None): - super(MobileClientSession, self).__init__(session_id, + super().__init__(session_id, ip_address, country, created, @@ -9719,7 +9717,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MobileClientSession_validator = bv.Struct(MobileClientSession) @@ -9775,7 +9773,7 @@ def __init__(self, team_member_id = bb.Attribute("team_member_id", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(NamespaceMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) NamespaceMetadata_validator = bv.Struct(NamespaceMetadata) @@ -9844,7 +9842,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) NamespaceType_validator = bv.Union(NamespaceType) @@ -9937,7 +9935,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemoveCustomQuotaResult_validator = bv.Union(RemoveCustomQuotaResult) @@ -9973,7 +9971,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RemovedStatus_validator = bv.Struct(RemovedStatus) @@ -10104,7 +10102,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResendSecondaryEmailResult_validator = bv.Union(ResendSecondaryEmailResult) @@ -10130,7 +10128,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResendVerificationEmailArg_validator = bv.Struct(ResendVerificationEmailArg) @@ -10155,7 +10153,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResendVerificationEmailResult_validator = bv.Struct(ResendVerificationEmailResult) @@ -10176,7 +10174,7 @@ def __init__(self, session_id=None, team_member_id=None, delete_on_unlink=None): - super(RevokeDesktopClientArg, self).__init__(session_id, + super().__init__(session_id, team_member_id) self._delete_on_unlink_value = bb.NOT_SET if delete_on_unlink is not None: @@ -10186,7 +10184,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeDesktopClientArg_validator = bv.Struct(RevokeDesktopClientArg) @@ -10300,7 +10298,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionArg_validator = bv.Union(RevokeDeviceSessionArg) @@ -10322,7 +10320,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionBatchArg_validator = bv.Struct(RevokeDeviceSessionBatchArg) @@ -10346,7 +10344,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionBatchError_validator = bv.Union(RevokeDeviceSessionBatchError) @@ -10368,7 +10366,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionBatchResult_validator = bv.Struct(RevokeDeviceSessionBatchResult) @@ -10416,7 +10414,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionError_validator = bv.Union(RevokeDeviceSessionError) @@ -10452,7 +10450,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeDeviceSessionStatus_validator = bv.Struct(RevokeDeviceSessionStatus) @@ -10498,7 +10496,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedApiAppArg_validator = bv.Struct(RevokeLinkedApiAppArg) @@ -10520,7 +10518,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedApiAppBatchArg_validator = bv.Struct(RevokeLinkedApiAppBatchArg) @@ -10547,7 +10545,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedAppBatchError_validator = bv.Union(RevokeLinkedAppBatchError) @@ -10569,7 +10567,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedAppBatchResult_validator = bv.Struct(RevokeLinkedAppBatchResult) @@ -10631,7 +10629,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedAppError_validator = bv.Union(RevokeLinkedAppError) @@ -10666,7 +10664,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RevokeLinkedAppStatus_validator = bv.Struct(RevokeLinkedAppStatus) @@ -10692,7 +10690,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SetCustomQuotaArg_validator = bv.Struct(SetCustomQuotaArg) @@ -10720,7 +10718,7 @@ def is_some_users_are_excluded(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SetCustomQuotaError_validator = bv.Union(SetCustomQuotaError) @@ -10759,7 +10757,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistAddArgs_validator = bv.Struct(SharingAllowlistAddArgs) @@ -10897,7 +10895,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistAddError_validator = bv.Union(SharingAllowlistAddError) @@ -10916,7 +10914,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistAddResponse_validator = bv.Struct(SharingAllowlistAddResponse) @@ -10942,7 +10940,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListArg_validator = bv.Struct(SharingAllowlistListArg) @@ -10970,7 +10968,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListContinueArg_validator = bv.Struct(SharingAllowlistListContinueArg) @@ -11007,7 +11005,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListContinueError_validator = bv.Union(SharingAllowlistListContinueError) @@ -11026,7 +11024,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListError_validator = bv.Struct(SharingAllowlistListError) @@ -11084,7 +11082,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistListResponse_validator = bv.Struct(SharingAllowlistListResponse) @@ -11120,7 +11118,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistRemoveArgs_validator = bv.Struct(SharingAllowlistRemoveArgs) @@ -11246,7 +11244,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistRemoveError_validator = bv.Union(SharingAllowlistRemoveError) @@ -11265,7 +11263,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingAllowlistRemoveResponse_validator = bv.Struct(SharingAllowlistRemoveResponse) @@ -11303,7 +11301,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) StorageBucket_validator = bv.Struct(StorageBucket) @@ -11352,7 +11350,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderAccessError_validator = bv.Union(TeamFolderAccessError) @@ -11364,7 +11362,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderActivateError_validator = bv.Union(TeamFolderActivateError) @@ -11389,7 +11387,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderIdArg_validator = bv.Struct(TeamFolderIdArg) @@ -11408,7 +11406,7 @@ class TeamFolderArchiveArg(TeamFolderIdArg): def __init__(self, team_folder_id=None, force_async_off=None): - super(TeamFolderArchiveArg, self).__init__(team_folder_id) + super().__init__(team_folder_id) self._force_async_off_value = bb.NOT_SET if force_async_off is not None: self.force_async_off = force_async_off @@ -11417,7 +11415,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderArchiveArg_validator = bv.Struct(TeamFolderArchiveArg) @@ -11429,7 +11427,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderArchiveError_validator = bv.Union(TeamFolderArchiveError) @@ -11512,7 +11510,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderArchiveJobStatus_validator = bv.Union(TeamFolderArchiveJobStatus) @@ -11553,7 +11551,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderArchiveLaunch_validator = bv.Union(TeamFolderArchiveLaunch) @@ -11589,7 +11587,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderCreateArg_validator = bv.Struct(TeamFolderCreateArg) @@ -11683,7 +11681,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderCreateError_validator = bv.Union(TeamFolderCreateError) @@ -11767,7 +11765,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderGetInfoItem_validator = bv.Union(TeamFolderGetInfoItem) @@ -11792,7 +11790,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderIdListArg_validator = bv.Struct(TeamFolderIdListArg) @@ -11853,7 +11851,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderInvalidStatusError_validator = bv.Union(TeamFolderInvalidStatusError) @@ -11879,7 +11877,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListArg_validator = bv.Struct(TeamFolderListArg) @@ -11905,7 +11903,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListContinueArg_validator = bv.Struct(TeamFolderListContinueArg) @@ -11942,7 +11940,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListContinueError_validator = bv.Union(TeamFolderListContinueError) @@ -11964,7 +11962,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListError_validator = bv.Struct(TeamFolderListError) @@ -12016,7 +12014,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderListResult_validator = bv.Struct(TeamFolderListResult) @@ -12091,7 +12089,7 @@ def __init__(self, content_sync_settings = bb.Attribute("content_sync_settings") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamFolderMetadata, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderMetadata_validator = bv.Struct(TeamFolderMetadata) @@ -12103,7 +12101,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderPermanentlyDeleteError_validator = bv.Union(TeamFolderPermanentlyDeleteError) @@ -12121,7 +12119,7 @@ class TeamFolderRenameArg(TeamFolderIdArg): def __init__(self, team_folder_id=None, name=None): - super(TeamFolderRenameArg, self).__init__(team_folder_id) + super().__init__(team_folder_id) self._name_value = bb.NOT_SET if name is not None: self.name = name @@ -12130,7 +12128,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderRenameArg_validator = bv.Struct(TeamFolderRenameArg) @@ -12180,7 +12178,7 @@ def is_folder_name_reserved(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderRenameError_validator = bv.Union(TeamFolderRenameError) @@ -12241,7 +12239,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderStatus_validator = bv.Union(TeamFolderStatus) @@ -12278,7 +12276,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderTeamSharedDropboxError_validator = bv.Union(TeamFolderTeamSharedDropboxError) @@ -12302,7 +12300,7 @@ def __init__(self, team_folder_id=None, sync_setting=None, content_sync_settings=None): - super(TeamFolderUpdateSyncSettingsArg, self).__init__(team_folder_id) + super().__init__(team_folder_id) self._sync_setting_value = bb.NOT_SET self._content_sync_settings_value = bb.NOT_SET if sync_setting is not None: @@ -12317,7 +12315,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderUpdateSyncSettingsArg_validator = bv.Struct(TeamFolderUpdateSyncSettingsArg) @@ -12364,7 +12362,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderUpdateSyncSettingsError_validator = bv.Union(TeamFolderUpdateSyncSettingsError) @@ -12436,7 +12434,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamGetInfoResult_validator = bv.Struct(TeamGetInfoResult) @@ -12472,7 +12470,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMemberInfo_validator = bv.Struct(TeamMemberInfo) @@ -12509,7 +12507,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMemberInfoV2_validator = bv.Struct(TeamMemberInfoV2) @@ -12538,7 +12536,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMemberInfoV2Result_validator = bv.Struct(TeamMemberInfoV2Result) @@ -12577,7 +12575,7 @@ def __init__(self, persistent_id=None, is_directory_restricted=None, profile_photo_url=None): - super(TeamMemberProfile, self).__init__(team_member_id, + super().__init__(team_member_id, email, email_verified, status, @@ -12606,7 +12604,7 @@ def __init__(self, member_folder_id = bb.Attribute("member_folder_id") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamMemberProfile, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) TeamMemberProfile_validator = bv.Struct(TeamMemberProfile) @@ -12654,7 +12652,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMemberRole_validator = bv.Struct(TeamMemberRole) @@ -12742,7 +12740,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMemberStatus_validator = bv.Union(TeamMemberStatus) @@ -12781,7 +12779,7 @@ def is_limited(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMembershipType_validator = bv.Union(TeamMembershipType) @@ -12807,7 +12805,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListArg_validator = bv.Struct(TeamNamespacesListArg) @@ -12833,7 +12831,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListContinueArg_validator = bv.Struct(TeamNamespacesListContinueArg) @@ -12870,7 +12868,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListError_validator = bv.Union(TeamNamespacesListError) @@ -12896,7 +12894,7 @@ def is_invalid_cursor(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListContinueError_validator = bv.Union(TeamNamespacesListContinueError) @@ -12946,7 +12944,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamNamespacesListResult_validator = bv.Struct(TeamNamespacesListResult) @@ -13009,7 +13007,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamReportFailureReason_validator = bv.Union(TeamReportFailureReason) @@ -13064,7 +13062,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TokenGetAuthenticatedAdminError_validator = bv.Union(TokenGetAuthenticatedAdminError) @@ -13093,7 +13091,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TokenGetAuthenticatedAdminResult_validator = bv.Struct(TokenGetAuthenticatedAdminResult) @@ -13166,7 +13164,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UploadApiRateLimitValue_validator = bv.Union(UploadApiRateLimitValue) @@ -13329,7 +13327,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserAddResult_validator = bv.Union(UserAddResult) @@ -13362,7 +13360,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserCustomQuotaArg_validator = bv.Struct(UserCustomQuotaArg) @@ -13396,7 +13394,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserCustomQuotaResult_validator = bv.Struct(UserCustomQuotaResult) @@ -13426,7 +13424,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserDeleteEmailsResult_validator = bv.Struct(UserDeleteEmailsResult) @@ -13523,7 +13521,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserDeleteResult_validator = bv.Union(UserDeleteResult) @@ -13553,7 +13551,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserResendEmailsResult_validator = bv.Struct(UserResendEmailsResult) @@ -13650,7 +13648,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserResendResult_validator = bv.Union(UserResendResult) @@ -13683,7 +13681,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserSecondaryEmailsArg_validator = bv.Struct(UserSecondaryEmailsArg) @@ -13713,7 +13711,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserSecondaryEmailsResult_validator = bv.Struct(UserSecondaryEmailsResult) @@ -13817,7 +13815,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserSelectorArg_validator = bv.Union(UserSelectorArg) @@ -13933,7 +13931,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UsersSelectorArg_validator = bv.Union(UsersSelectorArg) @@ -13960,13 +13958,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +DeviceSession._all_field_names_ = { 'session_id', 'ip_address', 'country', 'created', 'updated', -]) +} DeviceSession._all_fields_ = [ ('session_id', DeviceSession.session_id.validator), ('ip_address', DeviceSession.ip_address.validator), @@ -13979,12 +13977,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ActiveWebSession._all_field_names_ = DeviceSession._all_field_names_.union({ 'user_agent', 'os', 'browser', 'expires', -])) +}) ActiveWebSession._all_fields_ = DeviceSession._all_fields_ + [ ('user_agent', ActiveWebSession.user_agent.validator), ('os', ActiveWebSession.os.validator), @@ -14018,7 +14016,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddSecondaryEmailResult.other = AddSecondaryEmailResult('other') AddSecondaryEmailsArg.new_secondary_emails.validator = bv.List(UserSecondaryEmailsArg_validator) -AddSecondaryEmailsArg._all_field_names_ = set(['new_secondary_emails']) +AddSecondaryEmailsArg._all_field_names_ = {'new_secondary_emails'} AddSecondaryEmailsArg._all_fields_ = [('new_secondary_emails', AddSecondaryEmailsArg.new_secondary_emails.validator)] AddSecondaryEmailsError._secondary_emails_disabled_validator = bv.Void() @@ -14035,7 +14033,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AddSecondaryEmailsError.other = AddSecondaryEmailsError('other') AddSecondaryEmailsResult.results.validator = bv.List(UserAddResult_validator) -AddSecondaryEmailsResult._all_field_names_ = set(['results']) +AddSecondaryEmailsResult._all_field_names_ = {'results'} AddSecondaryEmailsResult._all_fields_ = [('results', AddSecondaryEmailsResult.results.validator)] AdminTier._team_admin_validator = bv.Void() @@ -14060,14 +14058,14 @@ 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([ +ApiApp._all_field_names_ = { '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), @@ -14078,7 +14076,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] BaseDfbReport.start_date.validator = bv.String() -BaseDfbReport._all_field_names_ = set(['start_date']) +BaseDfbReport._all_field_names_ = {'start_date'} BaseDfbReport._all_fields_ = [('start_date', BaseDfbReport.start_date.validator)] BaseTeamFolderError._access_error_validator = TeamFolderAccessError_validator @@ -14116,15 +14114,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CustomQuotaResult.other = CustomQuotaResult('other') CustomQuotaUsersArg.users.validator = bv.List(UserSelectorArg_validator) -CustomQuotaUsersArg._all_field_names_ = set(['users']) +CustomQuotaUsersArg._all_field_names_ = {'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([ +DateRange._all_field_names_ = { 'start_date', 'end_date', -]) +} DateRange._all_fields_ = [ ('start_date', DateRange.start_date.validator), ('end_date', DateRange.end_date.validator), @@ -14151,11 +14149,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeleteSecondaryEmailResult.other = DeleteSecondaryEmailResult('other') DeleteSecondaryEmailsArg.emails_to_delete.validator = bv.List(UserSecondaryEmailsArg_validator) -DeleteSecondaryEmailsArg._all_field_names_ = set(['emails_to_delete']) +DeleteSecondaryEmailsArg._all_field_names_ = {'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_field_names_ = {'results'} DeleteSecondaryEmailsResult._all_fields_ = [('results', DeleteSecondaryEmailsResult.results.validator)] DesktopClientSession.host_name.validator = bv.String() @@ -14163,13 +14161,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +DesktopClientSession._all_field_names_ = DeviceSession._all_field_names_.union({ '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), @@ -14196,10 +14194,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeviceSessionArg.session_id.validator = bv.String() DeviceSessionArg.team_member_id.validator = bv.String() -DeviceSessionArg._all_field_names_ = set([ +DeviceSessionArg._all_field_names_ = { 'session_id', 'team_member_id', -]) +} DeviceSessionArg._all_fields_ = [ ('session_id', DeviceSessionArg.session_id.validator), ('team_member_id', DeviceSessionArg.team_member_id.validator), @@ -14212,7 +14210,7 @@ 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([ +DevicesActive._all_field_names_ = { 'windows', 'macos', 'linux', @@ -14220,7 +14218,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'android', 'other', 'total', -]) +} DevicesActive._all_fields_ = [ ('windows', DevicesActive.windows.validator), ('macos', DevicesActive.macos.validator), @@ -14232,11 +14230,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ExcludedUsersListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -ExcludedUsersListArg._all_field_names_ = set(['limit']) +ExcludedUsersListArg._all_field_names_ = {'limit'} ExcludedUsersListArg._all_fields_ = [('limit', ExcludedUsersListArg.limit.validator)] ExcludedUsersListContinueArg.cursor.validator = bv.String() -ExcludedUsersListContinueArg._all_field_names_ = set(['cursor']) +ExcludedUsersListContinueArg._all_field_names_ = {'cursor'} ExcludedUsersListContinueArg._all_fields_ = [('cursor', ExcludedUsersListContinueArg.cursor.validator)] ExcludedUsersListContinueError._invalid_cursor_validator = bv.Void() @@ -14262,11 +14260,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ExcludedUsersListResult._all_field_names_ = { 'users', 'cursor', 'has_more', -]) +} ExcludedUsersListResult._all_fields_ = [ ('users', ExcludedUsersListResult.users.validator), ('cursor', ExcludedUsersListResult.cursor.validator), @@ -14274,7 +14272,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ExcludedUsersUpdateArg.users.validator = bv.Nullable(bv.List(UserSelectorArg_validator)) -ExcludedUsersUpdateArg._all_field_names_ = set(['users']) +ExcludedUsersUpdateArg._all_field_names_ = {'users'} ExcludedUsersUpdateArg._all_fields_ = [('users', ExcludedUsersUpdateArg.users.validator)] ExcludedUsersUpdateError._users_not_in_team_validator = bv.Void() @@ -14291,7 +14289,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExcludedUsersUpdateError.other = ExcludedUsersUpdateError('other') ExcludedUsersUpdateResult.status.validator = ExcludedUsersUpdateStatus_validator -ExcludedUsersUpdateResult._all_field_names_ = set(['status']) +ExcludedUsersUpdateResult._all_field_names_ = {'status'} ExcludedUsersUpdateResult._all_fields_ = [('status', ExcludedUsersUpdateResult.status.validator)] ExcludedUsersUpdateStatus._success_validator = bv.Void() @@ -14339,7 +14337,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FeatureValue.other = FeatureValue('other') FeaturesGetValuesBatchArg.features.validator = bv.List(Feature_validator) -FeaturesGetValuesBatchArg._all_field_names_ = set(['features']) +FeaturesGetValuesBatchArg._all_field_names_ = {'features'} FeaturesGetValuesBatchArg._all_fields_ = [('features', FeaturesGetValuesBatchArg.features.validator)] FeaturesGetValuesBatchError._empty_features_list_validator = bv.Void() @@ -14353,7 +14351,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FeaturesGetValuesBatchError.other = FeaturesGetValuesBatchError('other') FeaturesGetValuesBatchResult.values.validator = bv.List(FeatureValue_validator) -FeaturesGetValuesBatchResult._all_field_names_ = set(['values']) +FeaturesGetValuesBatchResult._all_field_names_ = {'values'} FeaturesGetValuesBatchResult._all_fields_ = [('values', FeaturesGetValuesBatchResult.values.validator)] GetActivityReport.adds.validator = NumberPerDay_validator @@ -14370,7 +14368,7 @@ 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([ +GetActivityReport._all_field_names_ = BaseDfbReport._all_field_names_.union({ 'adds', 'edits', 'deletes', @@ -14385,7 +14383,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): '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), @@ -14406,11 +14404,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GetDevicesReport._all_field_names_ = BaseDfbReport._all_field_names_.union({ '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), @@ -14422,13 +14420,13 @@ 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([ +GetMembershipReport._all_field_names_ = BaseDfbReport._all_field_names_.union({ '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), @@ -14442,13 +14440,13 @@ 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([ +GetStorageReport._all_field_names_ = BaseDfbReport._all_field_names_.union({ '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), @@ -14471,12 +14469,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GroupCreateArg._all_field_names_ = { '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), @@ -14531,10 +14529,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GroupFullInfo._all_field_names_ = team_common.GroupSummary._all_field_names_.union({ 'members', 'created', -])) +}) GroupFullInfo._all_fields_ = team_common.GroupSummary._all_fields_ + [ ('members', GroupFullInfo.members.validator), ('created', GroupFullInfo.created.validator), @@ -14542,10 +14540,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupMemberInfo.profile.validator = MemberProfile_validator GroupMemberInfo.access_type.validator = GroupAccessType_validator -GroupMemberInfo._all_field_names_ = set([ +GroupMemberInfo._all_field_names_ = { 'profile', 'access_type', -]) +} GroupMemberInfo._all_fields_ = [ ('profile', GroupMemberInfo.profile.validator), ('access_type', GroupMemberInfo.access_type.validator), @@ -14553,10 +14551,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupMemberSelector.group.validator = GroupSelector_validator GroupMemberSelector.user.validator = UserSelectorArg_validator -GroupMemberSelector._all_field_names_ = set([ +GroupMemberSelector._all_field_names_ = { 'group', 'user', -]) +} GroupMemberSelector._all_fields_ = [ ('group', GroupMemberSelector.group.validator), ('user', GroupMemberSelector.user.validator), @@ -14579,15 +14577,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = {'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([ +GroupMembersAddArg._all_field_names_ = IncludeMembersArg._all_field_names_.union({ 'group', 'members', -])) +}) GroupMembersAddArg._all_fields_ = IncludeMembersArg._all_fields_ + [ ('group', GroupMembersAddArg.group.validator), ('members', GroupMembersAddArg.members.validator), @@ -14615,10 +14613,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupMembersChangeResult.group_info.validator = GroupFullInfo_validator GroupMembersChangeResult.async_job_id.validator = async_.AsyncJobId_validator -GroupMembersChangeResult._all_field_names_ = set([ +GroupMembersChangeResult._all_field_names_ = { 'group_info', 'async_job_id', -]) +} GroupMembersChangeResult._all_fields_ = [ ('group_info', GroupMembersChangeResult.group_info.validator), ('async_job_id', GroupMembersChangeResult.async_job_id.validator), @@ -14626,10 +14624,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupMembersRemoveArg.group.validator = GroupSelector_validator GroupMembersRemoveArg.users.validator = bv.List(UserSelectorArg_validator) -GroupMembersRemoveArg._all_field_names_ = IncludeMembersArg._all_field_names_.union(set([ +GroupMembersRemoveArg._all_field_names_ = IncludeMembersArg._all_field_names_.union({ 'group', 'users', -])) +}) GroupMembersRemoveArg._all_fields_ = IncludeMembersArg._all_fields_ + [ ('group', GroupMembersRemoveArg.group.validator), ('users', GroupMembersRemoveArg.users.validator), @@ -14657,10 +14655,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupMembersSelector.group.validator = GroupSelector_validator GroupMembersSelector.users.validator = UsersSelectorArg_validator -GroupMembersSelector._all_field_names_ = set([ +GroupMembersSelector._all_field_names_ = { 'group', 'users', -]) +} GroupMembersSelector._all_fields_ = [ ('group', GroupMembersSelector.group.validator), ('users', GroupMembersSelector.users.validator), @@ -14668,10 +14666,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupMembersSetAccessTypeArg.access_type.validator = GroupAccessType_validator GroupMembersSetAccessTypeArg.return_members.validator = bv.Boolean() -GroupMembersSetAccessTypeArg._all_field_names_ = GroupMemberSelector._all_field_names_.union(set([ +GroupMembersSetAccessTypeArg._all_field_names_ = GroupMemberSelector._all_field_names_.union({ 'access_type', 'return_members', -])) +}) GroupMembersSetAccessTypeArg._all_fields_ = GroupMemberSelector._all_fields_ + [ ('access_type', GroupMembersSetAccessTypeArg.access_type.validator), ('return_members', GroupMembersSetAccessTypeArg.return_members.validator), @@ -14688,12 +14686,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GroupUpdateArgs._all_field_names_ = IncludeMembersArg._all_field_names_.union({ '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), @@ -14733,11 +14731,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): } GroupsListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -GroupsListArg._all_field_names_ = set(['limit']) +GroupsListArg._all_field_names_ = {'limit'} GroupsListArg._all_fields_ = [('limit', GroupsListArg.limit.validator)] GroupsListContinueArg.cursor.validator = bv.String() -GroupsListContinueArg._all_field_names_ = set(['cursor']) +GroupsListContinueArg._all_field_names_ = {'cursor'} GroupsListContinueArg._all_fields_ = [('cursor', GroupsListContinueArg.cursor.validator)] GroupsListContinueError._invalid_cursor_validator = bv.Void() @@ -14753,11 +14751,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GroupsListResult._all_field_names_ = { 'groups', 'cursor', 'has_more', -]) +} GroupsListResult._all_fields_ = [ ('groups', GroupsListResult.groups.validator), ('cursor', GroupsListResult.cursor.validator), @@ -14766,17 +14764,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupsMembersListArg.group.validator = GroupSelector_validator GroupsMembersListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -GroupsMembersListArg._all_field_names_ = set([ +GroupsMembersListArg._all_field_names_ = { 'group', 'limit', -]) +} GroupsMembersListArg._all_fields_ = [ ('group', GroupsMembersListArg.group.validator), ('limit', GroupsMembersListArg.limit.validator), ] GroupsMembersListContinueArg.cursor.validator = bv.String() -GroupsMembersListContinueArg._all_field_names_ = set(['cursor']) +GroupsMembersListContinueArg._all_field_names_ = {'cursor'} GroupsMembersListContinueArg._all_fields_ = [('cursor', GroupsMembersListContinueArg.cursor.validator)] GroupsMembersListContinueError._invalid_cursor_validator = bv.Void() @@ -14792,11 +14790,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupsMembersListResult.members.validator = bv.List(GroupMemberInfo_validator) GroupsMembersListResult.cursor.validator = bv.String() GroupsMembersListResult.has_more.validator = bv.Boolean() -GroupsMembersListResult._all_field_names_ = set([ +GroupsMembersListResult._all_field_names_ = { 'members', 'cursor', 'has_more', -]) +} GroupsMembersListResult._all_fields_ = [ ('members', GroupsMembersListResult.members.validator), ('cursor', GroupsMembersListResult.cursor.validator), @@ -14855,7 +14853,7 @@ 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([ +LegalHoldHeldRevisionMetadata._all_field_names_ = { 'new_filename', 'original_revision_id', 'original_file_path', @@ -14866,7 +14864,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'file_type', 'size', 'content_hash', -]) +} LegalHoldHeldRevisionMetadata._all_fields_ = [ ('new_filename', LegalHoldHeldRevisionMetadata.new_filename.validator), ('original_revision_id', LegalHoldHeldRevisionMetadata.original_revision_id.validator), @@ -14888,7 +14886,7 @@ 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([ +LegalHoldPolicy._all_field_names_ = { 'id', 'name', 'description', @@ -14897,7 +14895,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'status', 'start_date', 'end_date', -]) +} LegalHoldPolicy._all_fields_ = [ ('id', LegalHoldPolicy.id.validator), ('name', LegalHoldPolicy.name.validator), @@ -14948,7 +14946,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldsError.other = LegalHoldsError('other') LegalHoldsGetPolicyArg.id.validator = LegalHoldId_validator -LegalHoldsGetPolicyArg._all_field_names_ = set(['id']) +LegalHoldsGetPolicyArg._all_field_names_ = {'id'} LegalHoldsGetPolicyArg._all_fields_ = [('id', LegalHoldsGetPolicyArg.id.validator)] LegalHoldsGetPolicyError._legal_hold_policy_not_found_validator = bv.Void() @@ -14962,11 +14960,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +LegalHoldsListHeldRevisionResult._all_field_names_ = { 'entries', 'cursor', 'has_more', -]) +} LegalHoldsListHeldRevisionResult._all_fields_ = [ ('entries', LegalHoldsListHeldRevisionResult.entries.validator), ('cursor', LegalHoldsListHeldRevisionResult.cursor.validator), @@ -14974,15 +14972,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LegalHoldsListHeldRevisionsArg.id.validator = LegalHoldId_validator -LegalHoldsListHeldRevisionsArg._all_field_names_ = set(['id']) +LegalHoldsListHeldRevisionsArg._all_field_names_ = {'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([ +LegalHoldsListHeldRevisionsContinueArg._all_field_names_ = { 'id', 'cursor', -]) +} LegalHoldsListHeldRevisionsContinueArg._all_fields_ = [ ('id', LegalHoldsListHeldRevisionsContinueArg.id.validator), ('cursor', LegalHoldsListHeldRevisionsContinueArg.cursor.validator), @@ -15019,7 +15017,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldsListHeldRevisionsError.inactive_legal_hold = LegalHoldsListHeldRevisionsError('inactive_legal_hold') LegalHoldsListPoliciesArg.include_released.validator = bv.Boolean() -LegalHoldsListPoliciesArg._all_field_names_ = set(['include_released']) +LegalHoldsListPoliciesArg._all_field_names_ = {'include_released'} LegalHoldsListPoliciesArg._all_fields_ = [('include_released', LegalHoldsListPoliciesArg.include_released.validator)] LegalHoldsListPoliciesError._transient_error_validator = bv.Void() @@ -15031,7 +15029,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldsListPoliciesError.transient_error = LegalHoldsListPoliciesError('transient_error') LegalHoldsListPoliciesResult.policies.validator = bv.List(LegalHoldPolicy_validator) -LegalHoldsListPoliciesResult._all_field_names_ = set(['policies']) +LegalHoldsListPoliciesResult._all_field_names_ = {'policies'} LegalHoldsListPoliciesResult._all_fields_ = [('policies', LegalHoldsListPoliciesResult.policies.validator)] LegalHoldsPolicyCreateArg.name.validator = LegalHoldPolicyName_validator @@ -15039,13 +15037,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +LegalHoldsPolicyCreateArg._all_field_names_ = { 'name', 'description', 'members', 'start_date', 'end_date', -]) +} LegalHoldsPolicyCreateArg._all_fields_ = [ ('name', LegalHoldsPolicyCreateArg.name.validator), ('description', LegalHoldsPolicyCreateArg.description.validator), @@ -15084,7 +15082,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LegalHoldsPolicyCreateError.invalid_date = LegalHoldsPolicyCreateError('invalid_date') LegalHoldsPolicyReleaseArg.id.validator = LegalHoldId_validator -LegalHoldsPolicyReleaseArg._all_field_names_ = set(['id']) +LegalHoldsPolicyReleaseArg._all_field_names_ = {'id'} LegalHoldsPolicyReleaseArg._all_fields_ = [('id', LegalHoldsPolicyReleaseArg.id.validator)] LegalHoldsPolicyReleaseError._legal_hold_performing_another_operation_validator = bv.Void() @@ -15105,12 +15103,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +LegalHoldsPolicyUpdateArg._all_field_names_ = { 'id', 'name', 'description', 'members', -]) +} LegalHoldsPolicyUpdateArg._all_fields_ = [ ('id', LegalHoldsPolicyUpdateArg.id.validator), ('name', LegalHoldsPolicyUpdateArg.name.validator), @@ -15148,7 +15146,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = {'team_member_id'} ListMemberAppsArg._all_fields_ = [('team_member_id', ListMemberAppsArg.team_member_id.validator)] ListMemberAppsError._member_not_found_validator = bv.Void() @@ -15162,19 +15160,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ListMemberAppsError.other = ListMemberAppsError('other') ListMemberAppsResult.linked_api_apps.validator = bv.List(ApiApp_validator) -ListMemberAppsResult._all_field_names_ = set(['linked_api_apps']) +ListMemberAppsResult._all_field_names_ = {'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([ +ListMemberDevicesArg._all_field_names_ = { '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), @@ -15195,11 +15193,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListMemberDevicesResult._all_field_names_ = { '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), @@ -15207,7 +15205,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ListMembersAppsArg.cursor.validator = bv.Nullable(bv.String()) -ListMembersAppsArg._all_field_names_ = set(['cursor']) +ListMembersAppsArg._all_field_names_ = {'cursor'} ListMembersAppsArg._all_fields_ = [('cursor', ListMembersAppsArg.cursor.validator)] ListMembersAppsError._reset_validator = bv.Void() @@ -15223,11 +15221,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListMembersAppsResult._all_field_names_ = { 'apps', 'has_more', 'cursor', -]) +} ListMembersAppsResult._all_fields_ = [ ('apps', ListMembersAppsResult.apps.validator), ('has_more', ListMembersAppsResult.has_more.validator), @@ -15238,12 +15236,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListMembersDevicesArg._all_field_names_ = { '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), @@ -15264,11 +15262,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListMembersDevicesResult._all_field_names_ = { 'devices', 'has_more', 'cursor', -]) +} ListMembersDevicesResult._all_fields_ = [ ('devices', ListMembersDevicesResult.devices.validator), ('has_more', ListMembersDevicesResult.has_more.validator), @@ -15276,7 +15274,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ListTeamAppsArg.cursor.validator = bv.Nullable(bv.String()) -ListTeamAppsArg._all_field_names_ = set(['cursor']) +ListTeamAppsArg._all_field_names_ = {'cursor'} ListTeamAppsArg._all_fields_ = [('cursor', ListTeamAppsArg.cursor.validator)] ListTeamAppsError._reset_validator = bv.Void() @@ -15292,11 +15290,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListTeamAppsResult._all_field_names_ = { 'apps', 'has_more', 'cursor', -]) +} ListTeamAppsResult._all_fields_ = [ ('apps', ListTeamAppsResult.apps.validator), ('has_more', ListTeamAppsResult.has_more.validator), @@ -15307,12 +15305,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListTeamDevicesArg._all_field_names_ = { '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), @@ -15333,11 +15331,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ListTeamDevicesResult._all_field_names_ = { 'devices', 'has_more', 'cursor', -]) +} ListTeamDevicesResult._all_fields_ = [ ('devices', ListTeamDevicesResult.devices.validator), ('has_more', ListTeamDevicesResult.has_more.validator), @@ -15346,10 +15344,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberAccess.user.validator = UserSelectorArg_validator MemberAccess.access_type.validator = GroupAccessType_validator -MemberAccess._all_field_names_ = set([ +MemberAccess._all_field_names_ = { 'user', 'access_type', -]) +} MemberAccess._all_fields_ = [ ('user', MemberAccess.user.validator), ('access_type', MemberAccess.access_type.validator), @@ -15362,7 +15360,7 @@ 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([ +MemberAddArgBase._all_field_names_ = { 'member_email', 'member_given_name', 'member_surname', @@ -15370,7 +15368,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): '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), @@ -15382,7 +15380,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] MemberAddArg.role.validator = AdminTier_validator -MemberAddArg._all_field_names_ = MemberAddArgBase._all_field_names_.union(set(['role'])) +MemberAddArg._all_field_names_ = MemberAddArgBase._all_field_names_.union({'role'}) MemberAddArg._all_fields_ = MemberAddArgBase._all_fields_ + [('role', MemberAddArg.role.validator)] MemberAddResultBase._team_license_limit_validator = common.EmailAddress_validator @@ -15415,7 +15413,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = MemberAddArgBase._all_field_names_.union({'role_ids'}) MemberAddV2Arg._all_fields_ = MemberAddArgBase._all_fields_ + [('role_ids', MemberAddV2Arg.role_ids.validator)] MemberAddV2Result._success_validator = TeamMemberInfoV2_validator @@ -15432,12 +15430,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +MemberDevices._all_field_names_ = { '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), @@ -15447,10 +15445,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberLinkedApps.team_member_id.validator = bv.String() MemberLinkedApps.linked_api_apps.validator = bv.List(ApiApp_validator) -MemberLinkedApps._all_field_names_ = set([ +MemberLinkedApps._all_field_names_ = { '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), @@ -15471,7 +15469,7 @@ 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([ +MemberProfile._all_field_names_ = { 'team_member_id', 'external_id', 'account_id', @@ -15487,7 +15485,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): '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), @@ -15522,11 +15520,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = {'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_field_names_ = MembersAddArgBase._all_field_names_.union({'new_members'}) MembersAddArg._all_fields_ = MembersAddArgBase._all_fields_ + [('new_members', MembersAddArg.new_members.validator)] MembersAddJobStatus._complete_validator = bv.List(MemberAddResult_validator) @@ -15566,26 +15564,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = MembersAddArgBase._all_field_names_.union({'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_field_names_ = {'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([ +MembersDataTransferArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union({ '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), ] MembersDeactivateArg.wipe_data.validator = bv.Boolean() -MembersDeactivateArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union(set(['wipe_data'])) +MembersDeactivateArg._all_field_names_ = MembersDeactivateBaseArg._all_field_names_.union({'wipe_data'}) MembersDeactivateArg._all_fields_ = MembersDeactivateBaseArg._all_fields_ + [('wipe_data', MembersDeactivateArg.wipe_data.validator)] MembersDeactivateError._user_not_in_team_validator = bv.Void() @@ -15600,7 +15598,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersDeactivateError.other = MembersDeactivateError('other') MembersDeleteProfilePhotoArg.user.validator = UserSelectorArg_validator -MembersDeleteProfilePhotoArg._all_field_names_ = set(['user']) +MembersDeleteProfilePhotoArg._all_field_names_ = {'user'} MembersDeleteProfilePhotoArg._all_fields_ = [('user', MembersDeleteProfilePhotoArg.user.validator)] MembersDeleteProfilePhotoError._set_profile_disallowed_validator = bv.Void() @@ -15615,11 +15613,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersDeleteProfilePhotoError.other = MembersDeleteProfilePhotoError('other') MembersGetAvailableTeamMemberRolesResult.roles.validator = bv.List(TeamMemberRole_validator) -MembersGetAvailableTeamMemberRolesResult._all_field_names_ = set(['roles']) +MembersGetAvailableTeamMemberRolesResult._all_field_names_ = {'roles'} MembersGetAvailableTeamMemberRolesResult._all_fields_ = [('roles', MembersGetAvailableTeamMemberRolesResult.roles.validator)] MembersGetInfoArgs.members.validator = bv.List(UserSelectorArg_validator) -MembersGetInfoArgs._all_field_names_ = set(['members']) +MembersGetInfoArgs._all_field_names_ = {'members'} MembersGetInfoArgs._all_fields_ = [('members', MembersGetInfoArgs.members.validator)] MembersGetInfoError._other_validator = bv.Void() @@ -15651,19 +15649,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersGetInfoItemV2.other = MembersGetInfoItemV2('other') MembersGetInfoV2Arg.members.validator = bv.List(UserSelectorArg_validator) -MembersGetInfoV2Arg._all_field_names_ = set(['members']) +MembersGetInfoV2Arg._all_field_names_ = {'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_field_names_ = {'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([ +MembersInfo._all_field_names_ = { '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), @@ -15671,17 +15669,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) MembersListArg.include_removed.validator = bv.Boolean() -MembersListArg._all_field_names_ = set([ +MembersListArg._all_field_names_ = { 'limit', 'include_removed', -]) +} MembersListArg._all_fields_ = [ ('limit', MembersListArg.limit.validator), ('include_removed', MembersListArg.include_removed.validator), ] MembersListContinueArg.cursor.validator = bv.String() -MembersListContinueArg._all_field_names_ = set(['cursor']) +MembersListContinueArg._all_field_names_ = {'cursor'} MembersListContinueArg._all_fields_ = [('cursor', MembersListContinueArg.cursor.validator)] MembersListContinueError._invalid_cursor_validator = bv.Void() @@ -15704,11 +15702,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersListResult.members.validator = bv.List(TeamMemberInfo_validator) MembersListResult.cursor.validator = bv.String() MembersListResult.has_more.validator = bv.Boolean() -MembersListResult._all_field_names_ = set([ +MembersListResult._all_field_names_ = { 'members', 'cursor', 'has_more', -]) +} MembersListResult._all_fields_ = [ ('members', MembersListResult.members.validator), ('cursor', MembersListResult.cursor.validator), @@ -15718,11 +15716,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersListV2Result.members.validator = bv.List(TeamMemberInfoV2_validator) MembersListV2Result.cursor.validator = bv.String() MembersListV2Result.has_more.validator = bv.Boolean() -MembersListV2Result._all_field_names_ = set([ +MembersListV2Result._all_field_names_ = { 'members', 'cursor', 'has_more', -]) +} MembersListV2Result._all_fields_ = [ ('members', MembersListV2Result.members.validator), ('cursor', MembersListV2Result.cursor.validator), @@ -15730,7 +15728,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] MembersRecoverArg.user.validator = UserSelectorArg_validator -MembersRecoverArg._all_field_names_ = set(['user']) +MembersRecoverArg._all_field_names_ = {'user'} MembersRecoverArg._all_fields_ = [('user', MembersRecoverArg.user.validator)] MembersRecoverError._user_unrecoverable_validator = bv.Void() @@ -15754,12 +15752,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersRemoveArg.transfer_admin_id.validator = bv.Nullable(UserSelectorArg_validator) MembersRemoveArg.keep_account.validator = bv.Boolean() MembersRemoveArg.retain_team_shares.validator = bv.Boolean() -MembersRemoveArg._all_field_names_ = MembersDeactivateArg._all_field_names_.union(set([ +MembersRemoveArg._all_field_names_ = MembersDeactivateArg._all_field_names_.union({ 'transfer_dest_id', 'transfer_admin_id', 'keep_account', 'retain_team_shares', -])) +}) MembersRemoveArg._all_fields_ = MembersDeactivateArg._all_fields_ + [ ('transfer_dest_id', MembersRemoveArg.transfer_dest_id.validator), ('transfer_admin_id', MembersRemoveArg.transfer_admin_id.validator), @@ -15847,10 +15845,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetPermissions2Arg.user.validator = UserSelectorArg_validator MembersSetPermissions2Arg.new_roles.validator = bv.Nullable(bv.List(TeamMemberRoleId_validator, max_items=1)) -MembersSetPermissions2Arg._all_field_names_ = set([ +MembersSetPermissions2Arg._all_field_names_ = { 'user', 'new_roles', -]) +} MembersSetPermissions2Arg._all_fields_ = [ ('user', MembersSetPermissions2Arg.user.validator), ('new_roles', MembersSetPermissions2Arg.new_roles.validator), @@ -15878,10 +15876,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetPermissions2Result.team_member_id.validator = team_common.TeamMemberId_validator MembersSetPermissions2Result.roles.validator = bv.Nullable(bv.List(TeamMemberRole_validator)) -MembersSetPermissions2Result._all_field_names_ = set([ +MembersSetPermissions2Result._all_field_names_ = { 'team_member_id', 'roles', -]) +} MembersSetPermissions2Result._all_fields_ = [ ('team_member_id', MembersSetPermissions2Result.team_member_id.validator), ('roles', MembersSetPermissions2Result.roles.validator), @@ -15889,10 +15887,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetPermissionsArg.user.validator = UserSelectorArg_validator MembersSetPermissionsArg.new_role.validator = AdminTier_validator -MembersSetPermissionsArg._all_field_names_ = set([ +MembersSetPermissionsArg._all_field_names_ = { 'user', 'new_role', -]) +} MembersSetPermissionsArg._all_fields_ = [ ('user', MembersSetPermissionsArg.user.validator), ('new_role', MembersSetPermissionsArg.new_role.validator), @@ -15920,10 +15918,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetPermissionsResult.team_member_id.validator = team_common.TeamMemberId_validator MembersSetPermissionsResult.role.validator = AdminTier_validator -MembersSetPermissionsResult._all_field_names_ = set([ +MembersSetPermissionsResult._all_field_names_ = { 'team_member_id', 'role', -]) +} MembersSetPermissionsResult._all_fields_ = [ ('team_member_id', MembersSetPermissionsResult.team_member_id.validator), ('role', MembersSetPermissionsResult.role.validator), @@ -15936,7 +15934,7 @@ 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([ +MembersSetProfileArg._all_field_names_ = { 'user', 'new_email', 'new_external_id', @@ -15944,7 +15942,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'new_surname', 'new_persistent_id', 'new_is_directory_restricted', -]) +} MembersSetProfileArg._all_fields_ = [ ('user', MembersSetProfileArg.user.validator), ('new_email', MembersSetProfileArg.new_email.validator), @@ -15992,10 +15990,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersSetProfilePhotoArg.user.validator = UserSelectorArg_validator MembersSetProfilePhotoArg.photo.validator = account.PhotoSourceArg_validator -MembersSetProfilePhotoArg._all_field_names_ = set([ +MembersSetProfilePhotoArg._all_field_names_ = { 'user', 'photo', -]) +} MembersSetProfilePhotoArg._all_fields_ = [ ('user', MembersSetProfilePhotoArg.user.validator), ('photo', MembersSetProfilePhotoArg.photo.validator), @@ -16046,7 +16044,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MembersTransferFormerMembersFilesError.user_data_already_transferred = MembersTransferFormerMembersFilesError('user_data_already_transferred') MembersUnsuspendArg.user.validator = UserSelectorArg_validator -MembersUnsuspendArg._all_field_names_ = set(['user']) +MembersUnsuspendArg._all_field_names_ = {'user'} MembersUnsuspendArg._all_fields_ = [('user', MembersUnsuspendArg.user.validator)] MembersUnsuspendError._unsuspend_non_suspended_member_validator = bv.Void() @@ -16087,13 +16085,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +MobileClientSession._all_field_names_ = DeviceSession._all_field_names_.union({ '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), @@ -16106,12 +16104,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): NamespaceMetadata.namespace_id.validator = common.SharedFolderId_validator NamespaceMetadata.namespace_type.validator = NamespaceType_validator NamespaceMetadata.team_member_id.validator = bv.Nullable(team_common.TeamMemberId_validator) -NamespaceMetadata._all_field_names_ = set([ +NamespaceMetadata._all_field_names_ = { 'name', 'namespace_id', 'namespace_type', 'team_member_id', -]) +} NamespaceMetadata._all_fields_ = [ ('name', NamespaceMetadata.name.validator), ('namespace_id', NamespaceMetadata.namespace_id.validator), @@ -16151,10 +16149,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RemovedStatus.is_recoverable.validator = bv.Boolean() RemovedStatus.is_disconnected.validator = bv.Boolean() -RemovedStatus._all_field_names_ = set([ +RemovedStatus._all_field_names_ = { 'is_recoverable', 'is_disconnected', -]) +} RemovedStatus._all_fields_ = [ ('is_recoverable', RemovedStatus.is_recoverable.validator), ('is_disconnected', RemovedStatus.is_disconnected.validator), @@ -16174,15 +16172,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ResendSecondaryEmailResult.other = ResendSecondaryEmailResult('other') ResendVerificationEmailArg.emails_to_resend.validator = bv.List(UserSecondaryEmailsArg_validator) -ResendVerificationEmailArg._all_field_names_ = set(['emails_to_resend']) +ResendVerificationEmailArg._all_field_names_ = {'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_field_names_ = {'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_field_names_ = DeviceSessionArg._all_field_names_.union({'delete_on_unlink'}) RevokeDesktopClientArg._all_fields_ = DeviceSessionArg._all_fields_ + [('delete_on_unlink', RevokeDesktopClientArg.delete_on_unlink.validator)] RevokeDeviceSessionArg._web_session_validator = DeviceSessionArg_validator @@ -16195,7 +16193,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): } RevokeDeviceSessionBatchArg.revoke_devices.validator = bv.List(RevokeDeviceSessionArg_validator) -RevokeDeviceSessionBatchArg._all_field_names_ = set(['revoke_devices']) +RevokeDeviceSessionBatchArg._all_field_names_ = {'revoke_devices'} RevokeDeviceSessionBatchArg._all_fields_ = [('revoke_devices', RevokeDeviceSessionBatchArg.revoke_devices.validator)] RevokeDeviceSessionBatchError._other_validator = bv.Void() @@ -16206,7 +16204,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RevokeDeviceSessionBatchError.other = RevokeDeviceSessionBatchError('other') RevokeDeviceSessionBatchResult.revoke_devices_status.validator = bv.List(RevokeDeviceSessionStatus_validator) -RevokeDeviceSessionBatchResult._all_field_names_ = set(['revoke_devices_status']) +RevokeDeviceSessionBatchResult._all_field_names_ = {'revoke_devices_status'} RevokeDeviceSessionBatchResult._all_fields_ = [('revoke_devices_status', RevokeDeviceSessionBatchResult.revoke_devices_status.validator)] RevokeDeviceSessionError._device_session_not_found_validator = bv.Void() @@ -16224,10 +16222,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RevokeDeviceSessionStatus.success.validator = bv.Boolean() RevokeDeviceSessionStatus.error_type.validator = bv.Nullable(RevokeDeviceSessionError_validator) -RevokeDeviceSessionStatus._all_field_names_ = set([ +RevokeDeviceSessionStatus._all_field_names_ = { 'success', 'error_type', -]) +} RevokeDeviceSessionStatus._all_fields_ = [ ('success', RevokeDeviceSessionStatus.success.validator), ('error_type', RevokeDeviceSessionStatus.error_type.validator), @@ -16236,11 +16234,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +RevokeLinkedApiAppArg._all_field_names_ = { '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), @@ -16248,7 +16246,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] RevokeLinkedApiAppBatchArg.revoke_linked_app.validator = bv.List(RevokeLinkedApiAppArg_validator) -RevokeLinkedApiAppBatchArg._all_field_names_ = set(['revoke_linked_app']) +RevokeLinkedApiAppBatchArg._all_field_names_ = {'revoke_linked_app'} RevokeLinkedApiAppBatchArg._all_fields_ = [('revoke_linked_app', RevokeLinkedApiAppBatchArg.revoke_linked_app.validator)] RevokeLinkedAppBatchError._other_validator = bv.Void() @@ -16259,7 +16257,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = {'revoke_linked_app_status'} RevokeLinkedAppBatchResult._all_fields_ = [('revoke_linked_app_status', RevokeLinkedAppBatchResult.revoke_linked_app_status.validator)] RevokeLinkedAppError._app_not_found_validator = bv.Void() @@ -16280,17 +16278,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RevokeLinkedAppStatus.success.validator = bv.Boolean() RevokeLinkedAppStatus.error_type.validator = bv.Nullable(RevokeLinkedAppError_validator) -RevokeLinkedAppStatus._all_field_names_ = set([ +RevokeLinkedAppStatus._all_field_names_ = { 'success', 'error_type', -]) +} RevokeLinkedAppStatus._all_fields_ = [ ('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_field_names_ = {'users_and_quotas'} SetCustomQuotaArg._all_fields_ = [('users_and_quotas', SetCustomQuotaArg.users_and_quotas.validator)] SetCustomQuotaError._some_users_are_excluded_validator = bv.Void() @@ -16303,10 +16301,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistAddArgs.domains.validator = bv.Nullable(bv.List(bv.String())) SharingAllowlistAddArgs.emails.validator = bv.Nullable(bv.List(bv.String())) -SharingAllowlistAddArgs._all_field_names_ = set([ +SharingAllowlistAddArgs._all_field_names_ = { 'domains', 'emails', -]) +} SharingAllowlistAddArgs._all_fields_ = [ ('domains', SharingAllowlistAddArgs.domains.validator), ('emails', SharingAllowlistAddArgs.emails.validator), @@ -16335,15 +16333,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistAddError.unknown_error = SharingAllowlistAddError('unknown_error') SharingAllowlistAddError.other = SharingAllowlistAddError('other') -SharingAllowlistAddResponse._all_field_names_ = set([]) +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_field_names_ = {'limit'} SharingAllowlistListArg._all_fields_ = [('limit', SharingAllowlistListArg.limit.validator)] SharingAllowlistListContinueArg.cursor.validator = bv.String() -SharingAllowlistListContinueArg._all_field_names_ = set(['cursor']) +SharingAllowlistListContinueArg._all_field_names_ = {'cursor'} SharingAllowlistListContinueArg._all_fields_ = [('cursor', SharingAllowlistListContinueArg.cursor.validator)] SharingAllowlistListContinueError._invalid_cursor_validator = bv.Void() @@ -16356,19 +16354,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistListContinueError.invalid_cursor = SharingAllowlistListContinueError('invalid_cursor') SharingAllowlistListContinueError.other = SharingAllowlistListContinueError('other') -SharingAllowlistListError._all_field_names_ = set([]) +SharingAllowlistListError._all_field_names_ = set() SharingAllowlistListError._all_fields_ = [] SharingAllowlistListResponse.domains.validator = bv.List(bv.String()) SharingAllowlistListResponse.emails.validator = bv.List(bv.String()) SharingAllowlistListResponse.cursor.validator = bv.String() SharingAllowlistListResponse.has_more.validator = bv.Boolean() -SharingAllowlistListResponse._all_field_names_ = set([ +SharingAllowlistListResponse._all_field_names_ = { 'domains', 'emails', 'cursor', 'has_more', -]) +} SharingAllowlistListResponse._all_fields_ = [ ('domains', SharingAllowlistListResponse.domains.validator), ('emails', SharingAllowlistListResponse.emails.validator), @@ -16378,10 +16376,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistRemoveArgs.domains.validator = bv.Nullable(bv.List(bv.String())) SharingAllowlistRemoveArgs.emails.validator = bv.Nullable(bv.List(bv.String())) -SharingAllowlistRemoveArgs._all_field_names_ = set([ +SharingAllowlistRemoveArgs._all_field_names_ = { 'domains', 'emails', -]) +} SharingAllowlistRemoveArgs._all_fields_ = [ ('domains', SharingAllowlistRemoveArgs.domains.validator), ('emails', SharingAllowlistRemoveArgs.emails.validator), @@ -16407,15 +16405,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingAllowlistRemoveError.unknown_error = SharingAllowlistRemoveError('unknown_error') SharingAllowlistRemoveError.other = SharingAllowlistRemoveError('other') -SharingAllowlistRemoveResponse._all_field_names_ = set([]) +SharingAllowlistRemoveResponse._all_field_names_ = set() SharingAllowlistRemoveResponse._all_fields_ = [] StorageBucket.bucket.validator = bv.String() StorageBucket.users.validator = bv.UInt64() -StorageBucket._all_field_names_ = set([ +StorageBucket._all_field_names_ = { 'bucket', 'users', -]) +} StorageBucket._all_fields_ = [ ('bucket', StorageBucket.bucket.validator), ('users', StorageBucket.users.validator), @@ -16439,11 +16437,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderActivateError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderIdArg.team_folder_id.validator = common.SharedFolderId_validator -TeamFolderIdArg._all_field_names_ = set(['team_folder_id']) +TeamFolderIdArg._all_field_names_ = {'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_field_names_ = TeamFolderIdArg._all_field_names_.union({'force_async_off'}) TeamFolderArchiveArg._all_fields_ = TeamFolderIdArg._all_fields_ + [('force_async_off', TeamFolderArchiveArg.force_async_off.validator)] TeamFolderArchiveError._tagmap = { @@ -16466,10 +16464,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderCreateArg.name.validator = bv.String() TeamFolderCreateArg.sync_setting.validator = bv.Nullable(files.SyncSettingArg_validator) -TeamFolderCreateArg._all_field_names_ = set([ +TeamFolderCreateArg._all_field_names_ = { 'name', 'sync_setting', -]) +} TeamFolderCreateArg._all_fields_ = [ ('name', TeamFolderCreateArg.name.validator), ('sync_setting', TeamFolderCreateArg.sync_setting.validator), @@ -16501,7 +16499,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): } TeamFolderIdListArg.team_folder_ids.validator = bv.List(common.SharedFolderId_validator, min_items=1) -TeamFolderIdListArg._all_field_names_ = set(['team_folder_ids']) +TeamFolderIdListArg._all_field_names_ = {'team_folder_ids'} TeamFolderIdListArg._all_fields_ = [('team_folder_ids', TeamFolderIdListArg.team_folder_ids.validator)] TeamFolderInvalidStatusError._active_validator = bv.Void() @@ -16521,11 +16519,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderInvalidStatusError.other = TeamFolderInvalidStatusError('other') TeamFolderListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -TeamFolderListArg._all_field_names_ = set(['limit']) +TeamFolderListArg._all_field_names_ = {'limit'} TeamFolderListArg._all_fields_ = [('limit', TeamFolderListArg.limit.validator)] TeamFolderListContinueArg.cursor.validator = bv.String() -TeamFolderListContinueArg._all_field_names_ = set(['cursor']) +TeamFolderListContinueArg._all_field_names_ = {'cursor'} TeamFolderListContinueArg._all_fields_ = [('cursor', TeamFolderListContinueArg.cursor.validator)] TeamFolderListContinueError._invalid_cursor_validator = bv.Void() @@ -16539,17 +16537,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderListContinueError.other = TeamFolderListContinueError('other') TeamFolderListError.access_error.validator = TeamFolderAccessError_validator -TeamFolderListError._all_field_names_ = set(['access_error']) +TeamFolderListError._all_field_names_ = {'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([ +TeamFolderListResult._all_field_names_ = { 'team_folders', 'cursor', 'has_more', -]) +} TeamFolderListResult._all_fields_ = [ ('team_folders', TeamFolderListResult.team_folders.validator), ('cursor', TeamFolderListResult.cursor.validator), @@ -16562,14 +16560,14 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderMetadata.is_team_shared_dropbox.validator = bv.Boolean() TeamFolderMetadata.sync_setting.validator = files.SyncSetting_validator TeamFolderMetadata.content_sync_settings.validator = bv.List(files.ContentSyncSetting_validator) -TeamFolderMetadata._all_field_names_ = set([ +TeamFolderMetadata._all_field_names_ = { 'team_folder_id', 'name', 'status', 'is_team_shared_dropbox', 'sync_setting', 'content_sync_settings', -]) +} TeamFolderMetadata._all_fields_ = [ ('team_folder_id', TeamFolderMetadata.team_folder_id.validator), ('name', TeamFolderMetadata.name.validator), @@ -16584,7 +16582,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamFolderPermanentlyDeleteError._tagmap.update(BaseTeamFolderError._tagmap) TeamFolderRenameArg.name.validator = bv.String() -TeamFolderRenameArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union(set(['name'])) +TeamFolderRenameArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union({'name'}) TeamFolderRenameArg._all_fields_ = TeamFolderIdArg._all_fields_ + [('name', TeamFolderRenameArg.name.validator)] TeamFolderRenameError._invalid_folder_name_validator = bv.Void() @@ -16629,10 +16627,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +TeamFolderUpdateSyncSettingsArg._all_field_names_ = TeamFolderIdArg._all_field_names_.union({ '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), @@ -16650,14 +16648,14 @@ 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([ +TeamGetInfoResult._all_field_names_ = { '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), @@ -16669,10 +16667,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMemberInfo.profile.validator = TeamMemberProfile_validator TeamMemberInfo.role.validator = AdminTier_validator -TeamMemberInfo._all_field_names_ = set([ +TeamMemberInfo._all_field_names_ = { 'profile', 'role', -]) +} TeamMemberInfo._all_fields_ = [ ('profile', TeamMemberInfo.profile.validator), ('role', TeamMemberInfo.role.validator), @@ -16680,25 +16678,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMemberInfoV2.profile.validator = TeamMemberProfile_validator TeamMemberInfoV2.roles.validator = bv.Nullable(bv.List(TeamMemberRole_validator)) -TeamMemberInfoV2._all_field_names_ = set([ +TeamMemberInfoV2._all_field_names_ = { 'profile', 'roles', -]) +} TeamMemberInfoV2._all_fields_ = [ ('profile', TeamMemberInfoV2.profile.validator), ('roles', TeamMemberInfoV2.roles.validator), ] TeamMemberInfoV2Result.member_info.validator = TeamMemberInfoV2_validator -TeamMemberInfoV2Result._all_field_names_ = set(['member_info']) +TeamMemberInfoV2Result._all_field_names_ = {'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._all_field_names_ = MemberProfile._all_field_names_.union(set([ +TeamMemberProfile._all_field_names_ = MemberProfile._all_field_names_.union({ 'groups', 'member_folder_id', -])) +}) TeamMemberProfile._all_fields_ = MemberProfile._all_fields_ + [ ('groups', TeamMemberProfile.groups.validator), ('member_folder_id', TeamMemberProfile.member_folder_id.validator), @@ -16707,11 +16705,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +TeamMemberRole._all_field_names_ = { 'role_id', 'name', 'description', -]) +} TeamMemberRole._all_fields_ = [ ('role_id', TeamMemberRole.role_id.validator), ('name', TeamMemberRole.name.validator), @@ -16744,11 +16742,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMembershipType.limited = TeamMembershipType('limited') TeamNamespacesListArg.limit.validator = bv.UInt32(min_value=1, max_value=1000) -TeamNamespacesListArg._all_field_names_ = set(['limit']) +TeamNamespacesListArg._all_field_names_ = {'limit'} TeamNamespacesListArg._all_fields_ = [('limit', TeamNamespacesListArg.limit.validator)] TeamNamespacesListContinueArg.cursor.validator = bv.String() -TeamNamespacesListContinueArg._all_field_names_ = set(['cursor']) +TeamNamespacesListContinueArg._all_field_names_ = {'cursor'} TeamNamespacesListContinueArg._all_fields_ = [('cursor', TeamNamespacesListContinueArg.cursor.validator)] TeamNamespacesListError._invalid_arg_validator = bv.Void() @@ -16772,11 +16770,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamNamespacesListResult.namespaces.validator = bv.List(NamespaceMetadata_validator) TeamNamespacesListResult.cursor.validator = bv.String() TeamNamespacesListResult.has_more.validator = bv.Boolean() -TeamNamespacesListResult._all_field_names_ = set([ +TeamNamespacesListResult._all_field_names_ = { 'namespaces', 'cursor', 'has_more', -]) +} TeamNamespacesListResult._all_fields_ = [ ('namespaces', TeamNamespacesListResult.namespaces.validator), ('cursor', TeamNamespacesListResult.cursor.validator), @@ -16813,7 +16811,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TokenGetAuthenticatedAdminError.other = TokenGetAuthenticatedAdminError('other') TokenGetAuthenticatedAdminResult.admin_profile.validator = TeamMemberProfile_validator -TokenGetAuthenticatedAdminResult._all_field_names_ = set(['admin_profile']) +TokenGetAuthenticatedAdminResult._all_field_names_ = {'admin_profile'} TokenGetAuthenticatedAdminResult._all_fields_ = [('admin_profile', TokenGetAuthenticatedAdminResult.admin_profile.validator)] UploadApiRateLimitValue._unlimited_validator = bv.Void() @@ -16845,10 +16843,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserCustomQuotaArg.user.validator = UserSelectorArg_validator UserCustomQuotaArg.quota_gb.validator = UserQuota_validator -UserCustomQuotaArg._all_field_names_ = set([ +UserCustomQuotaArg._all_field_names_ = { 'user', 'quota_gb', -]) +} UserCustomQuotaArg._all_fields_ = [ ('user', UserCustomQuotaArg.user.validator), ('quota_gb', UserCustomQuotaArg.quota_gb.validator), @@ -16856,10 +16854,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserCustomQuotaResult.user.validator = UserSelectorArg_validator UserCustomQuotaResult.quota_gb.validator = bv.Nullable(UserQuota_validator) -UserCustomQuotaResult._all_field_names_ = set([ +UserCustomQuotaResult._all_field_names_ = { 'user', 'quota_gb', -]) +} UserCustomQuotaResult._all_fields_ = [ ('user', UserCustomQuotaResult.user.validator), ('quota_gb', UserCustomQuotaResult.quota_gb.validator), @@ -16867,10 +16865,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserDeleteEmailsResult.user.validator = UserSelectorArg_validator UserDeleteEmailsResult.results.validator = bv.List(DeleteSecondaryEmailResult_validator) -UserDeleteEmailsResult._all_field_names_ = set([ +UserDeleteEmailsResult._all_field_names_ = { 'user', 'results', -]) +} UserDeleteEmailsResult._all_fields_ = [ ('user', UserDeleteEmailsResult.user.validator), ('results', UserDeleteEmailsResult.results.validator), @@ -16889,10 +16887,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserResendEmailsResult.user.validator = UserSelectorArg_validator UserResendEmailsResult.results.validator = bv.List(ResendSecondaryEmailResult_validator) -UserResendEmailsResult._all_field_names_ = set([ +UserResendEmailsResult._all_field_names_ = { 'user', 'results', -]) +} UserResendEmailsResult._all_fields_ = [ ('user', UserResendEmailsResult.user.validator), ('results', UserResendEmailsResult.results.validator), @@ -16911,10 +16909,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserSecondaryEmailsArg.user.validator = UserSelectorArg_validator UserSecondaryEmailsArg.secondary_emails.validator = bv.List(common.EmailAddress_validator) -UserSecondaryEmailsArg._all_field_names_ = set([ +UserSecondaryEmailsArg._all_field_names_ = { 'user', 'secondary_emails', -]) +} UserSecondaryEmailsArg._all_fields_ = [ ('user', UserSecondaryEmailsArg.user.validator), ('secondary_emails', UserSecondaryEmailsArg.secondary_emails.validator), @@ -16922,10 +16920,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserSecondaryEmailsResult.user.validator = UserSelectorArg_validator UserSecondaryEmailsResult.results.validator = bv.List(AddSecondaryEmailResult_validator) -UserSecondaryEmailsResult._all_field_names_ = set([ +UserSecondaryEmailsResult._all_field_names_ = { 'user', 'results', -]) +} UserSecondaryEmailsResult._all_fields_ = [ ('user', UserSecondaryEmailsResult.user.validator), ('results', UserSecondaryEmailsResult.results.validator), diff --git a/dropbox/team_common.py b/dropbox/team_common.py index 8784d9db..dfa464a2 100644 --- a/dropbox/team_common.py +++ b/dropbox/team_common.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -68,7 +66,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupManagementType_validator = bv.Union(GroupManagementType) @@ -132,7 +130,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupSummary_validator = bv.Struct(GroupSummary) @@ -184,7 +182,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) GroupType_validator = bv.Union(GroupType) @@ -249,7 +247,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitType_validator = bv.Union(MemberSpaceLimitType) @@ -285,7 +283,7 @@ def __init__(self, end_time = bb.Attribute("end_time", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TimeRange, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) TimeRange_validator = bv.Struct(TimeRange) @@ -316,13 +314,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GroupSummary._all_field_names_ = { '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), @@ -362,10 +360,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TimeRange.start_time.validator = bv.Nullable(common.DropboxTimestamp_validator) TimeRange.end_time.validator = bv.Nullable(common.DropboxTimestamp_validator) -TimeRange._all_field_names_ = set([ +TimeRange._all_field_names_ = { 'start_time', 'end_time', -]) +} TimeRange._all_fields_ = [ ('start_time', TimeRange.start_time.validator), ('end_time', TimeRange.end_time.validator), diff --git a/dropbox/team_log.py b/dropbox/team_log.py index 8049ee2d..cd594cab 100644 --- a/dropbox/team_log.py +++ b/dropbox/team_log.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -235,7 +233,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccessMethodLogInfo_validator = bv.Union(AccessMethodLogInfo) @@ -279,7 +277,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureAvailability_validator = bv.Union(AccountCaptureAvailability) @@ -318,7 +316,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureChangeAvailabilityDetails_validator = bv.Struct(AccountCaptureChangeAvailabilityDetails) @@ -340,7 +338,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureChangeAvailabilityType_validator = bv.Struct(AccountCaptureChangeAvailabilityType) @@ -378,7 +376,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureChangePolicyDetails_validator = bv.Struct(AccountCaptureChangePolicyDetails) @@ -400,7 +398,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureChangePolicyType_validator = bv.Struct(AccountCaptureChangePolicyType) @@ -427,7 +425,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureMigrateAccountDetails_validator = bv.Struct(AccountCaptureMigrateAccountDetails) @@ -449,7 +447,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureMigrateAccountType_validator = bv.Struct(AccountCaptureMigrateAccountType) @@ -488,7 +486,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureNotificationEmailsSentDetails_validator = bv.Struct(AccountCaptureNotificationEmailsSentDetails) @@ -510,7 +508,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureNotificationEmailsSentType_validator = bv.Struct(AccountCaptureNotificationEmailsSentType) @@ -554,7 +552,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureNotificationType_validator = bv.Union(AccountCaptureNotificationType) @@ -618,7 +616,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCapturePolicy_validator = bv.Union(AccountCapturePolicy) @@ -646,7 +644,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureRelinquishAccountDetails_validator = bv.Struct(AccountCaptureRelinquishAccountDetails) @@ -668,7 +666,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountCaptureRelinquishAccountType_validator = bv.Struct(AccountCaptureRelinquishAccountType) @@ -706,7 +704,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountLockOrUnlockedDetails_validator = bv.Struct(AccountLockOrUnlockedDetails) @@ -728,7 +726,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AccountLockOrUnlockedType_validator = bv.Struct(AccountLockOrUnlockedType) @@ -772,7 +770,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AccountState_validator = bv.Union(AccountState) @@ -899,7 +897,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ActionDetails_validator = bv.Union(ActionDetails) @@ -1076,7 +1074,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ActorLogInfo_validator = bv.Union(ActorLogInfo) @@ -1172,7 +1170,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertCategoryEnum_validator = bv.Union(AdminAlertCategoryEnum) @@ -1248,7 +1246,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertGeneralStateEnum_validator = bv.Union(AdminAlertGeneralStateEnum) @@ -1324,7 +1322,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertSeverityEnum_validator = bv.Union(AdminAlertSeverityEnum) @@ -1390,7 +1388,7 @@ def __init__(self, excluded_file_extensions = bb.Attribute("excluded_file_extensions", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AdminAlertingAlertConfiguration, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertConfiguration_validator = bv.Struct(AdminAlertingAlertConfiguration) @@ -1476,7 +1474,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertSensitivity_validator = bv.Union(AdminAlertingAlertSensitivity) @@ -1553,7 +1551,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertStateChangedDetails_validator = bv.Struct(AdminAlertingAlertStateChangedDetails) @@ -1575,7 +1573,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertStateChangedType_validator = bv.Struct(AdminAlertingAlertStateChangedType) @@ -1621,7 +1619,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingAlertStatePolicy_validator = bv.Union(AdminAlertingAlertStatePolicy) @@ -1669,7 +1667,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingChangedAlertConfigDetails_validator = bv.Struct(AdminAlertingChangedAlertConfigDetails) @@ -1691,7 +1689,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingChangedAlertConfigType_validator = bv.Struct(AdminAlertingChangedAlertConfigType) @@ -1748,7 +1746,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingTriggeredAlertDetails_validator = bv.Struct(AdminAlertingTriggeredAlertDetails) @@ -1770,7 +1768,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AdminAlertingTriggeredAlertType_validator = bv.Struct(AdminAlertingTriggeredAlertType) @@ -1814,7 +1812,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AdminConsoleAppPermission_validator = bv.Union(AdminConsoleAppPermission) @@ -1868,7 +1866,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AdminConsoleAppPolicy_validator = bv.Union(AdminConsoleAppPolicy) @@ -1904,7 +1902,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AdminEmailRemindersChangedDetails_validator = bv.Struct(AdminEmailRemindersChangedDetails) @@ -1926,7 +1924,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AdminEmailRemindersChangedType_validator = bv.Struct(AdminEmailRemindersChangedType) @@ -1983,7 +1981,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AdminEmailRemindersPolicy_validator = bv.Union(AdminEmailRemindersPolicy) @@ -2107,7 +2105,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) AdminRole_validator = bv.Union(AdminRole) @@ -2173,7 +2171,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) AlertRecipientsSettingType_validator = bv.Union(AlertRecipientsSettingType) @@ -2191,7 +2189,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AllowDownloadDisabledDetails_validator = bv.Struct(AllowDownloadDisabledDetails) @@ -2213,7 +2211,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AllowDownloadDisabledType_validator = bv.Struct(AllowDownloadDisabledType) @@ -2231,7 +2229,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AllowDownloadEnabledDetails_validator = bv.Struct(AllowDownloadEnabledDetails) @@ -2253,7 +2251,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AllowDownloadEnabledType_validator = bv.Struct(AllowDownloadEnabledType) @@ -2280,7 +2278,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ApiSessionLogInfo_validator = bv.Struct(ApiSessionLogInfo) @@ -2308,7 +2306,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppBlockedByPermissionsDetails_validator = bv.Struct(AppBlockedByPermissionsDetails) @@ -2330,7 +2328,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppBlockedByPermissionsType_validator = bv.Struct(AppBlockedByPermissionsType) @@ -2357,7 +2355,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppLinkTeamDetails_validator = bv.Struct(AppLinkTeamDetails) @@ -2379,7 +2377,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppLinkTeamType_validator = bv.Struct(AppLinkTeamType) @@ -2406,7 +2404,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppLinkUserDetails_validator = bv.Struct(AppLinkUserDetails) @@ -2428,7 +2426,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppLinkUserType_validator = bv.Struct(AppLinkUserType) @@ -2464,7 +2462,7 @@ def __init__(self, display_name = bb.Attribute("display_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(AppLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) AppLogInfo_validator = bv.StructTree(AppLogInfo) @@ -2519,7 +2517,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppPermissionsChangedDetails_validator = bv.Struct(AppPermissionsChangedDetails) @@ -2541,7 +2539,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppPermissionsChangedType_validator = bv.Struct(AppPermissionsChangedType) @@ -2568,7 +2566,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppUnlinkTeamDetails_validator = bv.Struct(AppUnlinkTeamDetails) @@ -2590,7 +2588,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppUnlinkTeamType_validator = bv.Struct(AppUnlinkTeamType) @@ -2617,7 +2615,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppUnlinkUserDetails_validator = bv.Struct(AppUnlinkUserDetails) @@ -2639,7 +2637,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AppUnlinkUserType_validator = bv.Struct(AppUnlinkUserType) @@ -2657,7 +2655,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ApplyNamingConventionDetails_validator = bv.Struct(ApplyNamingConventionDetails) @@ -2679,7 +2677,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ApplyNamingConventionType_validator = bv.Struct(ApplyNamingConventionType) @@ -2868,7 +2866,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) AssetLogInfo_validator = bv.Union(AssetLogInfo) @@ -2886,7 +2884,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BackupAdminInvitationSentDetails_validator = bv.Struct(BackupAdminInvitationSentDetails) @@ -2908,7 +2906,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BackupAdminInvitationSentType_validator = bv.Struct(BackupAdminInvitationSentType) @@ -2926,7 +2924,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BackupInvitationOpenedDetails_validator = bv.Struct(BackupInvitationOpenedDetails) @@ -2948,7 +2946,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BackupInvitationOpenedType_validator = bv.Struct(BackupInvitationOpenedType) @@ -2994,7 +2992,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) BackupStatus_validator = bv.Union(BackupStatus) @@ -3040,7 +3038,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderAddPageDetails_validator = bv.Struct(BinderAddPageDetails) @@ -3062,7 +3060,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderAddPageType_validator = bv.Struct(BinderAddPageType) @@ -3108,7 +3106,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderAddSectionDetails_validator = bv.Struct(BinderAddSectionDetails) @@ -3130,7 +3128,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderAddSectionType_validator = bv.Struct(BinderAddSectionType) @@ -3176,7 +3174,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderRemovePageDetails_validator = bv.Struct(BinderRemovePageDetails) @@ -3198,7 +3196,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderRemovePageType_validator = bv.Struct(BinderRemovePageType) @@ -3246,7 +3244,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderRemoveSectionDetails_validator = bv.Struct(BinderRemoveSectionDetails) @@ -3268,7 +3266,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderRemoveSectionType_validator = bv.Struct(BinderRemoveSectionType) @@ -3324,7 +3322,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderRenamePageDetails_validator = bv.Struct(BinderRenamePageDetails) @@ -3346,7 +3344,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderRenamePageType_validator = bv.Struct(BinderRenamePageType) @@ -3404,7 +3402,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderRenameSectionDetails_validator = bv.Struct(BinderRenameSectionDetails) @@ -3426,7 +3424,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderRenameSectionType_validator = bv.Struct(BinderRenameSectionType) @@ -3472,7 +3470,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderReorderPageDetails_validator = bv.Struct(BinderReorderPageDetails) @@ -3494,7 +3492,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderReorderPageType_validator = bv.Struct(BinderReorderPageType) @@ -3542,7 +3540,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderReorderSectionDetails_validator = bv.Struct(BinderReorderSectionDetails) @@ -3564,7 +3562,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BinderReorderSectionType_validator = bv.Struct(BinderReorderSectionType) @@ -3610,7 +3608,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) CameraUploadsPolicy_validator = bv.Union(CameraUploadsPolicy) @@ -3648,7 +3646,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CameraUploadsPolicyChangedDetails_validator = bv.Struct(CameraUploadsPolicyChangedDetails) @@ -3670,7 +3668,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CameraUploadsPolicyChangedType_validator = bv.Struct(CameraUploadsPolicyChangedType) @@ -3726,7 +3724,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) CaptureTranscriptPolicy_validator = bv.Union(CaptureTranscriptPolicy) @@ -3762,7 +3760,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CaptureTranscriptPolicyChangedDetails_validator = bv.Struct(CaptureTranscriptPolicyChangedDetails) @@ -3784,7 +3782,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CaptureTranscriptPolicyChangedType_validator = bv.Struct(CaptureTranscriptPolicyChangedType) @@ -3865,7 +3863,7 @@ def __init__(self, common_name = bb.Attribute("common_name", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(Certificate, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) Certificate_validator = bv.Struct(Certificate) @@ -3912,7 +3910,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ChangeLinkExpirationPolicy_validator = bv.Union(ChangeLinkExpirationPolicy) @@ -3960,7 +3958,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ChangedEnterpriseAdminRoleDetails_validator = bv.Struct(ChangedEnterpriseAdminRoleDetails) @@ -3982,7 +3980,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ChangedEnterpriseAdminRoleType_validator = bv.Struct(ChangedEnterpriseAdminRoleType) @@ -4040,7 +4038,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ChangedEnterpriseConnectedTeamStatusDetails_validator = bv.Struct(ChangedEnterpriseConnectedTeamStatusDetails) @@ -4062,7 +4060,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ChangedEnterpriseConnectedTeamStatusType_validator = bv.Struct(ChangedEnterpriseConnectedTeamStatusType) @@ -4110,7 +4108,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ClassificationChangePolicyDetails_validator = bv.Struct(ClassificationChangePolicyDetails) @@ -4132,7 +4130,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ClassificationChangePolicyType_validator = bv.Struct(ClassificationChangePolicyType) @@ -4150,7 +4148,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ClassificationCreateReportDetails_validator = bv.Struct(ClassificationCreateReportDetails) @@ -4178,7 +4176,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ClassificationCreateReportFailDetails_validator = bv.Struct(ClassificationCreateReportFailDetails) @@ -4200,7 +4198,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ClassificationCreateReportFailType_validator = bv.Struct(ClassificationCreateReportFailType) @@ -4222,7 +4220,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ClassificationCreateReportType_validator = bv.Struct(ClassificationCreateReportType) @@ -4288,7 +4286,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ClassificationPolicyEnumWrapper_validator = bv.Union(ClassificationPolicyEnumWrapper) @@ -4334,7 +4332,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ClassificationType_validator = bv.Union(ClassificationType) @@ -4361,7 +4359,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CollectionShareDetails_validator = bv.Struct(CollectionShareDetails) @@ -4383,7 +4381,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CollectionShareType_validator = bv.Struct(CollectionShareType) @@ -4439,7 +4437,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ComputerBackupPolicy_validator = bv.Union(ComputerBackupPolicy) @@ -4477,7 +4475,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ComputerBackupPolicyChangedDetails_validator = bv.Struct(ComputerBackupPolicyChangedDetails) @@ -4499,7 +4497,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ComputerBackupPolicyChangedType_validator = bv.Struct(ComputerBackupPolicyChangedType) @@ -4526,7 +4524,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ConnectedTeamName_validator = bv.Struct(ConnectedTeamName) @@ -4564,7 +4562,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ContentAdministrationPolicyChangedDetails_validator = bv.Struct(ContentAdministrationPolicyChangedDetails) @@ -4586,7 +4584,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ContentAdministrationPolicyChangedType_validator = bv.Struct(ContentAdministrationPolicyChangedType) @@ -4632,7 +4630,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ContentPermanentDeletePolicy_validator = bv.Union(ContentPermanentDeletePolicy) @@ -4813,7 +4811,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ContextLogInfo_validator = bv.Union(ContextLogInfo) @@ -4831,7 +4829,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderDetails_validator = bv.Struct(CreateFolderDetails) @@ -4853,7 +4851,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateFolderType_validator = bv.Struct(CreateFolderType) @@ -4891,7 +4889,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateTeamInviteLinkDetails_validator = bv.Struct(CreateTeamInviteLinkDetails) @@ -4913,7 +4911,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) CreateTeamInviteLinkType_validator = bv.Struct(CreateTeamInviteLinkType) @@ -4951,7 +4949,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DataPlacementRestrictionChangePolicyDetails_validator = bv.Struct(DataPlacementRestrictionChangePolicyDetails) @@ -4973,7 +4971,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DataPlacementRestrictionChangePolicyType_validator = bv.Struct(DataPlacementRestrictionChangePolicyType) @@ -5002,7 +5000,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DataPlacementRestrictionSatisfyPolicyDetails_validator = bv.Struct(DataPlacementRestrictionSatisfyPolicyDetails) @@ -5024,7 +5022,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DataPlacementRestrictionSatisfyPolicyType_validator = bv.Struct(DataPlacementRestrictionSatisfyPolicyType) @@ -5042,7 +5040,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DataResidencyMigrationRequestSuccessfulDetails_validator = bv.Struct(DataResidencyMigrationRequestSuccessfulDetails) @@ -5064,7 +5062,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DataResidencyMigrationRequestSuccessfulType_validator = bv.Struct(DataResidencyMigrationRequestSuccessfulType) @@ -5082,7 +5080,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DataResidencyMigrationRequestUnsuccessfulDetails_validator = bv.Struct(DataResidencyMigrationRequestUnsuccessfulDetails) @@ -5104,7 +5102,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DataResidencyMigrationRequestUnsuccessfulType_validator = bv.Struct(DataResidencyMigrationRequestUnsuccessfulType) @@ -5211,7 +5209,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DefaultLinkExpirationDaysPolicy_validator = bv.Union(DefaultLinkExpirationDaysPolicy) @@ -5239,7 +5237,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteTeamInviteLinkDetails_validator = bv.Struct(DeleteTeamInviteLinkDetails) @@ -5261,7 +5259,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeleteTeamInviteLinkType_validator = bv.Struct(DeleteTeamInviteLinkType) @@ -5309,7 +5307,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceSessionLogInfo_validator = bv.StructTree(DeviceSessionLogInfo) @@ -5353,7 +5351,7 @@ def __init__(self, updated=None, session_info=None, client_version=None): - super(DesktopDeviceSessionLogInfo, self).__init__(ip_address, + super().__init__(ip_address, created, updated) self._session_info_value = bb.NOT_SET @@ -5394,7 +5392,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DesktopDeviceSessionLogInfo_validator = bv.Struct(DesktopDeviceSessionLogInfo) @@ -5421,7 +5419,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SessionLogInfo_validator = bv.StructTree(SessionLogInfo) @@ -5437,10 +5435,10 @@ class DesktopSessionLogInfo(SessionLogInfo): def __init__(self, session_id=None): - super(DesktopSessionLogInfo, self).__init__(session_id) + super().__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()._process_custom_annotations(annotation_type, field_path, processor) DesktopSessionLogInfo_validator = bv.Struct(DesktopSessionLogInfo) @@ -5458,7 +5456,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsAddExceptionDetails_validator = bv.Struct(DeviceApprovalsAddExceptionDetails) @@ -5480,7 +5478,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsAddExceptionType_validator = bv.Struct(DeviceApprovalsAddExceptionType) @@ -5521,7 +5519,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeDesktopPolicyDetails_validator = bv.Struct(DeviceApprovalsChangeDesktopPolicyDetails) @@ -5543,7 +5541,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeDesktopPolicyType_validator = bv.Struct(DeviceApprovalsChangeDesktopPolicyType) @@ -5584,7 +5582,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeMobilePolicyDetails_validator = bv.Struct(DeviceApprovalsChangeMobilePolicyDetails) @@ -5606,7 +5604,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeMobilePolicyType_validator = bv.Struct(DeviceApprovalsChangeMobilePolicyType) @@ -5645,7 +5643,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeOverageActionDetails_validator = bv.Struct(DeviceApprovalsChangeOverageActionDetails) @@ -5667,7 +5665,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeOverageActionType_validator = bv.Struct(DeviceApprovalsChangeOverageActionType) @@ -5706,7 +5704,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeUnlinkActionDetails_validator = bv.Struct(DeviceApprovalsChangeUnlinkActionDetails) @@ -5728,7 +5726,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsChangeUnlinkActionType_validator = bv.Struct(DeviceApprovalsChangeUnlinkActionType) @@ -5772,7 +5770,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsPolicy_validator = bv.Union(DeviceApprovalsPolicy) @@ -5790,7 +5788,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsRemoveExceptionDetails_validator = bv.Struct(DeviceApprovalsRemoveExceptionDetails) @@ -5812,7 +5810,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceApprovalsRemoveExceptionType_validator = bv.Struct(DeviceApprovalsRemoveExceptionType) @@ -5840,7 +5838,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpDesktopDetails_validator = bv.Struct(DeviceChangeIpDesktopDetails) @@ -5862,7 +5860,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpDesktopType_validator = bv.Struct(DeviceChangeIpDesktopType) @@ -5890,7 +5888,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpMobileDetails_validator = bv.Struct(DeviceChangeIpMobileDetails) @@ -5912,7 +5910,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpMobileType_validator = bv.Struct(DeviceChangeIpMobileType) @@ -5939,7 +5937,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpWebDetails_validator = bv.Struct(DeviceChangeIpWebDetails) @@ -5961,7 +5959,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceChangeIpWebType_validator = bv.Struct(DeviceChangeIpWebType) @@ -6009,7 +6007,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceDeleteOnUnlinkFailDetails_validator = bv.Struct(DeviceDeleteOnUnlinkFailDetails) @@ -6031,7 +6029,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceDeleteOnUnlinkFailType_validator = bv.Struct(DeviceDeleteOnUnlinkFailType) @@ -6069,7 +6067,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceDeleteOnUnlinkSuccessDetails_validator = bv.Struct(DeviceDeleteOnUnlinkSuccessDetails) @@ -6091,7 +6089,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceDeleteOnUnlinkSuccessType_validator = bv.Struct(DeviceDeleteOnUnlinkSuccessType) @@ -6129,7 +6127,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceLinkFailDetails_validator = bv.Struct(DeviceLinkFailDetails) @@ -6151,7 +6149,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceLinkFailType_validator = bv.Struct(DeviceLinkFailType) @@ -6179,7 +6177,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceLinkSuccessDetails_validator = bv.Struct(DeviceLinkSuccessDetails) @@ -6201,7 +6199,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceLinkSuccessType_validator = bv.Struct(DeviceLinkSuccessType) @@ -6219,7 +6217,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceManagementDisabledDetails_validator = bv.Struct(DeviceManagementDisabledDetails) @@ -6241,7 +6239,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceManagementDisabledType_validator = bv.Struct(DeviceManagementDisabledType) @@ -6259,7 +6257,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceManagementEnabledDetails_validator = bv.Struct(DeviceManagementEnabledDetails) @@ -6281,7 +6279,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceManagementEnabledType_validator = bv.Struct(DeviceManagementEnabledType) @@ -6330,7 +6328,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceSyncBackupStatusChangedDetails_validator = bv.Struct(DeviceSyncBackupStatusChangedDetails) @@ -6352,7 +6350,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceSyncBackupStatusChangedType_validator = bv.Struct(DeviceSyncBackupStatusChangedType) @@ -6396,7 +6394,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) DeviceType_validator = bv.Union(DeviceType) @@ -6443,7 +6441,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceUnlinkDetails_validator = bv.Struct(DeviceUnlinkDetails) @@ -6487,7 +6485,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceUnlinkPolicy_validator = bv.Union(DeviceUnlinkPolicy) @@ -6509,7 +6507,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DeviceUnlinkType_validator = bv.Struct(DeviceUnlinkType) @@ -6527,7 +6525,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DirectoryRestrictionsAddMembersDetails_validator = bv.Struct(DirectoryRestrictionsAddMembersDetails) @@ -6549,7 +6547,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DirectoryRestrictionsAddMembersType_validator = bv.Struct(DirectoryRestrictionsAddMembersType) @@ -6567,7 +6565,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DirectoryRestrictionsRemoveMembersDetails_validator = bv.Struct(DirectoryRestrictionsRemoveMembersDetails) @@ -6589,7 +6587,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DirectoryRestrictionsRemoveMembersType_validator = bv.Struct(DirectoryRestrictionsRemoveMembersType) @@ -6607,7 +6605,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DisabledDomainInvitesDetails_validator = bv.Struct(DisabledDomainInvitesDetails) @@ -6629,7 +6627,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DisabledDomainInvitesType_validator = bv.Struct(DisabledDomainInvitesType) @@ -6673,7 +6671,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DispositionActionType_validator = bv.Union(DispositionActionType) @@ -6691,7 +6689,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesApproveRequestToJoinTeamDetails_validator = bv.Struct(DomainInvitesApproveRequestToJoinTeamDetails) @@ -6713,7 +6711,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesApproveRequestToJoinTeamType_validator = bv.Struct(DomainInvitesApproveRequestToJoinTeamType) @@ -6731,7 +6729,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesDeclineRequestToJoinTeamDetails_validator = bv.Struct(DomainInvitesDeclineRequestToJoinTeamDetails) @@ -6753,7 +6751,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesDeclineRequestToJoinTeamType_validator = bv.Struct(DomainInvitesDeclineRequestToJoinTeamType) @@ -6791,7 +6789,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesEmailExistingUsersDetails_validator = bv.Struct(DomainInvitesEmailExistingUsersDetails) @@ -6813,7 +6811,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesEmailExistingUsersType_validator = bv.Struct(DomainInvitesEmailExistingUsersType) @@ -6831,7 +6829,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesRequestToJoinTeamDetails_validator = bv.Struct(DomainInvitesRequestToJoinTeamDetails) @@ -6853,7 +6851,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesRequestToJoinTeamType_validator = bv.Struct(DomainInvitesRequestToJoinTeamType) @@ -6871,7 +6869,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesSetInviteNewUserPrefToNoDetails_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToNoDetails) @@ -6893,7 +6891,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesSetInviteNewUserPrefToNoType_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToNoType) @@ -6911,7 +6909,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesSetInviteNewUserPrefToYesDetails_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToYesDetails) @@ -6933,7 +6931,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainInvitesSetInviteNewUserPrefToYesType_validator = bv.Struct(DomainInvitesSetInviteNewUserPrefToYesType) @@ -6972,7 +6970,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationAddDomainFailDetails_validator = bv.Struct(DomainVerificationAddDomainFailDetails) @@ -6994,7 +6992,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationAddDomainFailType_validator = bv.Struct(DomainVerificationAddDomainFailType) @@ -7034,7 +7032,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationAddDomainSuccessDetails_validator = bv.Struct(DomainVerificationAddDomainSuccessDetails) @@ -7056,7 +7054,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationAddDomainSuccessType_validator = bv.Struct(DomainVerificationAddDomainSuccessType) @@ -7084,7 +7082,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationRemoveDomainDetails_validator = bv.Struct(DomainVerificationRemoveDomainDetails) @@ -7106,7 +7104,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DomainVerificationRemoveDomainType_validator = bv.Struct(DomainVerificationRemoveDomainType) @@ -7152,7 +7150,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DownloadPolicyType_validator = bv.Union(DownloadPolicyType) @@ -7180,7 +7178,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsExportedDetails_validator = bv.Struct(DropboxPasswordsExportedDetails) @@ -7202,7 +7200,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsExportedType_validator = bv.Struct(DropboxPasswordsExportedType) @@ -7240,7 +7238,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsNewDeviceEnrolledDetails_validator = bv.Struct(DropboxPasswordsNewDeviceEnrolledDetails) @@ -7262,7 +7260,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsNewDeviceEnrolledType_validator = bv.Struct(DropboxPasswordsNewDeviceEnrolledType) @@ -7318,7 +7316,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsPolicy_validator = bv.Union(DropboxPasswordsPolicy) @@ -7354,7 +7352,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsPolicyChangedDetails_validator = bv.Struct(DropboxPasswordsPolicyChangedDetails) @@ -7376,7 +7374,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DropboxPasswordsPolicyChangedType_validator = bv.Struct(DropboxPasswordsPolicyChangedType) @@ -7412,7 +7410,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) DurationLogInfo_validator = bv.Struct(DurationLogInfo) @@ -7458,7 +7456,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) EmailIngestPolicy_validator = bv.Union(EmailIngestPolicy) @@ -7494,7 +7492,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmailIngestPolicyChangedDetails_validator = bv.Struct(EmailIngestPolicyChangedDetails) @@ -7516,7 +7514,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmailIngestPolicyChangedType_validator = bv.Struct(EmailIngestPolicyChangedType) @@ -7582,7 +7580,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmailIngestReceiveFileDetails_validator = bv.Struct(EmailIngestReceiveFileDetails) @@ -7604,7 +7602,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmailIngestReceiveFileType_validator = bv.Struct(EmailIngestReceiveFileType) @@ -7622,7 +7620,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmAddExceptionDetails_validator = bv.Struct(EmmAddExceptionDetails) @@ -7644,7 +7642,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmAddExceptionType_validator = bv.Struct(EmmAddExceptionType) @@ -7682,7 +7680,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmChangePolicyDetails_validator = bv.Struct(EmmChangePolicyDetails) @@ -7704,7 +7702,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmChangePolicyType_validator = bv.Struct(EmmChangePolicyType) @@ -7722,7 +7720,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmCreateExceptionsReportDetails_validator = bv.Struct(EmmCreateExceptionsReportDetails) @@ -7744,7 +7742,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmCreateExceptionsReportType_validator = bv.Struct(EmmCreateExceptionsReportType) @@ -7762,7 +7760,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmCreateUsageReportDetails_validator = bv.Struct(EmmCreateUsageReportDetails) @@ -7784,7 +7782,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmCreateUsageReportType_validator = bv.Struct(EmmCreateUsageReportType) @@ -7811,7 +7809,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmErrorDetails_validator = bv.Struct(EmmErrorDetails) @@ -7833,7 +7831,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmErrorType_validator = bv.Struct(EmmErrorType) @@ -7851,7 +7849,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmRefreshAuthTokenDetails_validator = bv.Struct(EmmRefreshAuthTokenDetails) @@ -7873,7 +7871,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmRefreshAuthTokenType_validator = bv.Struct(EmmRefreshAuthTokenType) @@ -7891,7 +7889,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmRemoveExceptionDetails_validator = bv.Struct(EmmRemoveExceptionDetails) @@ -7913,7 +7911,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EmmRemoveExceptionType_validator = bv.Struct(EmmRemoveExceptionType) @@ -7931,7 +7929,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EnabledDomainInvitesDetails_validator = bv.Struct(EnabledDomainInvitesDetails) @@ -7953,7 +7951,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EnabledDomainInvitesType_validator = bv.Struct(EnabledDomainInvitesType) @@ -7982,7 +7980,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EndedEnterpriseAdminSessionDeprecatedDetails_validator = bv.Struct(EndedEnterpriseAdminSessionDeprecatedDetails) @@ -8004,7 +8002,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EndedEnterpriseAdminSessionDeprecatedType_validator = bv.Struct(EndedEnterpriseAdminSessionDeprecatedType) @@ -8022,7 +8020,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EndedEnterpriseAdminSessionDetails_validator = bv.Struct(EndedEnterpriseAdminSessionDetails) @@ -8044,7 +8042,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EndedEnterpriseAdminSessionType_validator = bv.Struct(EndedEnterpriseAdminSessionType) @@ -8091,7 +8089,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) EnforceLinkPasswordPolicy_validator = bv.Union(EnforceLinkPasswordPolicy) @@ -8151,7 +8149,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EnterpriseSettingsLockingDetails_validator = bv.Struct(EnterpriseSettingsLockingDetails) @@ -8173,7 +8171,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EnterpriseSettingsLockingType_validator = bv.Struct(EnterpriseSettingsLockingType) @@ -8475,7 +8473,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) EventCategory_validator = bv.Union(EventCategory) @@ -23190,7 +23188,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) EventDetails_validator = bv.Union(EventDetails) @@ -40146,7 +40144,7 @@ def get_team_merge_request_sent_shown_to_secondary_team(self): return self._value def _process_custom_annotations(self, annotation_type, field_path, processor): - super(EventType, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) EventType_validator = bv.Union(EventType) @@ -46243,7 +46241,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) EventTypeArg_validator = bv.Union(EventTypeArg) @@ -46261,7 +46259,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExportMembersReportDetails_validator = bv.Struct(ExportMembersReportDetails) @@ -46289,7 +46287,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExportMembersReportFailDetails_validator = bv.Struct(ExportMembersReportFailDetails) @@ -46311,7 +46309,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExportMembersReportFailType_validator = bv.Struct(ExportMembersReportFailType) @@ -46333,7 +46331,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExportMembersReportType_validator = bv.Struct(ExportMembersReportType) @@ -46372,7 +46370,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExtendedVersionHistoryChangePolicyDetails_validator = bv.Struct(ExtendedVersionHistoryChangePolicyDetails) @@ -46394,7 +46392,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExtendedVersionHistoryChangePolicyType_validator = bv.Struct(ExtendedVersionHistoryChangePolicyType) @@ -46458,7 +46456,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExtendedVersionHistoryPolicy_validator = bv.Union(ExtendedVersionHistoryPolicy) @@ -46504,7 +46502,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupEligibilityStatus_validator = bv.Union(ExternalDriveBackupEligibilityStatus) @@ -46554,7 +46552,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupEligibilityStatusCheckedDetails_validator = bv.Struct(ExternalDriveBackupEligibilityStatusCheckedDetails) @@ -46576,7 +46574,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupEligibilityStatusCheckedType_validator = bv.Struct(ExternalDriveBackupEligibilityStatusCheckedType) @@ -46632,7 +46630,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupPolicy_validator = bv.Union(ExternalDriveBackupPolicy) @@ -46670,7 +46668,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupPolicyChangedDetails_validator = bv.Struct(ExternalDriveBackupPolicyChangedDetails) @@ -46692,7 +46690,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupPolicyChangedType_validator = bv.Struct(ExternalDriveBackupPolicyChangedType) @@ -46778,7 +46776,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupStatus_validator = bv.Union(ExternalDriveBackupStatus) @@ -46827,7 +46825,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupStatusChangedDetails_validator = bv.Struct(ExternalDriveBackupStatusChangedDetails) @@ -46849,7 +46847,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupStatusChangedType_validator = bv.Struct(ExternalDriveBackupStatusChangedType) @@ -46867,7 +46865,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalSharingCreateReportDetails_validator = bv.Struct(ExternalSharingCreateReportDetails) @@ -46889,7 +46887,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalSharingCreateReportType_validator = bv.Struct(ExternalSharingCreateReportType) @@ -46917,7 +46915,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalSharingReportFailedDetails_validator = bv.Struct(ExternalSharingReportFailedDetails) @@ -46939,7 +46937,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalSharingReportFailedType_validator = bv.Struct(ExternalSharingReportFailedType) @@ -46976,7 +46974,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalUserLogInfo_validator = bv.Struct(ExternalUserLogInfo) @@ -47014,7 +47012,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FailureDetailsLogInfo_validator = bv.Struct(FailureDetailsLogInfo) @@ -47058,7 +47056,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FedAdminRole_validator = bv.Union(FedAdminRole) @@ -47150,7 +47148,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FedExtraDetails_validator = bv.Union(FedExtraDetails) @@ -47234,7 +47232,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FedHandshakeAction_validator = bv.Union(FedHandshakeAction) @@ -47363,7 +47361,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FederationStatusChangeAdditionalInfo_validator = bv.Union(FederationStatusChangeAdditionalInfo) @@ -47390,7 +47388,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileAddCommentDetails_validator = bv.Struct(FileAddCommentDetails) @@ -47412,7 +47410,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileAddCommentType_validator = bv.Struct(FileAddCommentType) @@ -47430,7 +47428,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileAddDetails_validator = bv.Struct(FileAddDetails) @@ -47448,7 +47446,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileAddFromAutomationDetails_validator = bv.Struct(FileAddFromAutomationDetails) @@ -47470,7 +47468,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileAddFromAutomationType_validator = bv.Struct(FileAddFromAutomationType) @@ -47492,7 +47490,7 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileAddType, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) FileAddType_validator = bv.Struct(FileAddType) @@ -47530,7 +47528,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileChangeCommentSubscriptionDetails_validator = bv.Struct(FileChangeCommentSubscriptionDetails) @@ -47552,7 +47550,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileChangeCommentSubscriptionType_validator = bv.Struct(FileChangeCommentSubscriptionType) @@ -47598,7 +47596,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FileCommentNotificationPolicy_validator = bv.Union(FileCommentNotificationPolicy) @@ -47637,7 +47635,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileCommentsChangePolicyDetails_validator = bv.Struct(FileCommentsChangePolicyDetails) @@ -47659,7 +47657,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileCommentsChangePolicyType_validator = bv.Struct(FileCommentsChangePolicyType) @@ -47705,7 +47703,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FileCommentsPolicy_validator = bv.Union(FileCommentsPolicy) @@ -47733,7 +47731,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileCopyDetails_validator = bv.Struct(FileCopyDetails) @@ -47755,7 +47753,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileCopyType_validator = bv.Struct(FileCopyType) @@ -47782,7 +47780,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileDeleteCommentDetails_validator = bv.Struct(FileDeleteCommentDetails) @@ -47804,7 +47802,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileDeleteCommentType_validator = bv.Struct(FileDeleteCommentType) @@ -47822,7 +47820,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileDeleteDetails_validator = bv.Struct(FileDeleteDetails) @@ -47844,7 +47842,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileDeleteType_validator = bv.Struct(FileDeleteType) @@ -47862,7 +47860,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileDownloadDetails_validator = bv.Struct(FileDownloadDetails) @@ -47884,7 +47882,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileDownloadType_validator = bv.Struct(FileDownloadType) @@ -47921,7 +47919,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileEditCommentDetails_validator = bv.Struct(FileEditCommentDetails) @@ -47943,7 +47941,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileEditCommentType_validator = bv.Struct(FileEditCommentType) @@ -47961,7 +47959,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileEditDetails_validator = bv.Struct(FileEditDetails) @@ -47983,7 +47981,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileEditType_validator = bv.Struct(FileEditType) @@ -48001,7 +47999,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileGetCopyReferenceDetails_validator = bv.Struct(FileGetCopyReferenceDetails) @@ -48023,7 +48021,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileGetCopyReferenceType_validator = bv.Struct(FileGetCopyReferenceType) @@ -48050,7 +48048,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLikeCommentDetails_validator = bv.Struct(FileLikeCommentDetails) @@ -48072,7 +48070,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLikeCommentType_validator = bv.Struct(FileLikeCommentType) @@ -48110,7 +48108,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLockingLockStatusChangedDetails_validator = bv.Struct(FileLockingLockStatusChangedDetails) @@ -48132,7 +48130,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLockingLockStatusChangedType_validator = bv.Struct(FileLockingLockStatusChangedType) @@ -48170,7 +48168,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLockingPolicyChangedDetails_validator = bv.Struct(FileLockingPolicyChangedDetails) @@ -48192,7 +48190,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLockingPolicyChangedType_validator = bv.Struct(FileLockingPolicyChangedType) @@ -48246,7 +48244,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileOrFolderLogInfo_validator = bv.Struct(FileOrFolderLogInfo) @@ -48265,13 +48263,13 @@ def __init__(self, display_name=None, file_id=None, file_size=None): - super(FileLogInfo, self).__init__(path, + super().__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) + super()._process_custom_annotations(annotation_type, field_path, processor) FileLogInfo_validator = bv.Struct(FileLogInfo) @@ -48299,7 +48297,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileMoveDetails_validator = bv.Struct(FileMoveDetails) @@ -48321,7 +48319,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileMoveType_validator = bv.Struct(FileMoveType) @@ -48339,7 +48337,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FilePermanentlyDeleteDetails_validator = bv.Struct(FilePermanentlyDeleteDetails) @@ -48361,7 +48359,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FilePermanentlyDeleteType_validator = bv.Struct(FilePermanentlyDeleteType) @@ -48379,7 +48377,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FilePreviewDetails_validator = bv.Struct(FilePreviewDetails) @@ -48401,7 +48399,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FilePreviewType_validator = bv.Struct(FilePreviewType) @@ -48438,7 +48436,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileProviderMigrationPolicyChangedDetails_validator = bv.Struct(FileProviderMigrationPolicyChangedDetails) @@ -48460,7 +48458,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileProviderMigrationPolicyChangedType_validator = bv.Struct(FileProviderMigrationPolicyChangedType) @@ -48488,7 +48486,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRenameDetails_validator = bv.Struct(FileRenameDetails) @@ -48510,7 +48508,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRenameType_validator = bv.Struct(FileRenameType) @@ -48558,7 +48556,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestChangeDetails_validator = bv.Struct(FileRequestChangeDetails) @@ -48580,7 +48578,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestChangeType_validator = bv.Struct(FileRequestChangeType) @@ -48618,7 +48616,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestCloseDetails_validator = bv.Struct(FileRequestCloseDetails) @@ -48640,7 +48638,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestCloseType_validator = bv.Struct(FileRequestCloseType) @@ -48678,7 +48676,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestCreateDetails_validator = bv.Struct(FileRequestCreateDetails) @@ -48700,7 +48698,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestCreateType_validator = bv.Struct(FileRequestCreateType) @@ -48738,7 +48736,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestDeadline_validator = bv.Struct(FileRequestDeadline) @@ -48776,7 +48774,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestDeleteDetails_validator = bv.Struct(FileRequestDeleteDetails) @@ -48798,7 +48796,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestDeleteType_validator = bv.Struct(FileRequestDeleteType) @@ -48835,7 +48833,7 @@ def __init__(self, deadline = bb.Attribute("deadline", nullable=True, user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FileRequestDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) FileRequestDetails_validator = bv.Struct(FileRequestDetails) @@ -48903,7 +48901,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestReceiveFileDetails_validator = bv.Struct(FileRequestReceiveFileDetails) @@ -48925,7 +48923,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestReceiveFileType_validator = bv.Struct(FileRequestReceiveFileType) @@ -48963,7 +48961,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestsChangePolicyDetails_validator = bv.Struct(FileRequestsChangePolicyDetails) @@ -48985,7 +48983,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestsChangePolicyType_validator = bv.Struct(FileRequestsChangePolicyType) @@ -49003,7 +49001,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestsEmailsEnabledDetails_validator = bv.Struct(FileRequestsEmailsEnabledDetails) @@ -49025,7 +49023,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestsEmailsEnabledType_validator = bv.Struct(FileRequestsEmailsEnabledType) @@ -49043,7 +49041,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestsEmailsRestrictedToTeamOnlyDetails_validator = bv.Struct(FileRequestsEmailsRestrictedToTeamOnlyDetails) @@ -49065,7 +49063,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestsEmailsRestrictedToTeamOnlyType_validator = bv.Struct(FileRequestsEmailsRestrictedToTeamOnlyType) @@ -49111,7 +49109,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FileRequestsPolicy_validator = bv.Union(FileRequestsPolicy) @@ -49138,7 +49136,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileResolveCommentDetails_validator = bv.Struct(FileResolveCommentDetails) @@ -49160,7 +49158,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileResolveCommentType_validator = bv.Struct(FileResolveCommentType) @@ -49178,7 +49176,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRestoreDetails_validator = bv.Struct(FileRestoreDetails) @@ -49200,7 +49198,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRestoreType_validator = bv.Struct(FileRestoreType) @@ -49218,7 +49216,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRevertDetails_validator = bv.Struct(FileRevertDetails) @@ -49240,7 +49238,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRevertType_validator = bv.Struct(FileRevertType) @@ -49258,7 +49256,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRollbackChangesDetails_validator = bv.Struct(FileRollbackChangesDetails) @@ -49280,7 +49278,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileRollbackChangesType_validator = bv.Struct(FileRollbackChangesType) @@ -49308,7 +49306,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileSaveCopyReferenceDetails_validator = bv.Struct(FileSaveCopyReferenceDetails) @@ -49330,7 +49328,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileSaveCopyReferenceType_validator = bv.Struct(FileSaveCopyReferenceType) @@ -49357,7 +49355,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersFileAddDetails_validator = bv.Struct(FileTransfersFileAddDetails) @@ -49379,7 +49377,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersFileAddType_validator = bv.Struct(FileTransfersFileAddType) @@ -49425,7 +49423,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersPolicy_validator = bv.Union(FileTransfersPolicy) @@ -49463,7 +49461,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersPolicyChangedDetails_validator = bv.Struct(FileTransfersPolicyChangedDetails) @@ -49485,7 +49483,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersPolicyChangedType_validator = bv.Struct(FileTransfersPolicyChangedType) @@ -49513,7 +49511,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferDeleteDetails_validator = bv.Struct(FileTransfersTransferDeleteDetails) @@ -49535,7 +49533,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferDeleteType_validator = bv.Struct(FileTransfersTransferDeleteType) @@ -49563,7 +49561,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferDownloadDetails_validator = bv.Struct(FileTransfersTransferDownloadDetails) @@ -49585,7 +49583,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferDownloadType_validator = bv.Struct(FileTransfersTransferDownloadType) @@ -49613,7 +49611,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferSendDetails_validator = bv.Struct(FileTransfersTransferSendDetails) @@ -49635,7 +49633,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferSendType_validator = bv.Struct(FileTransfersTransferSendType) @@ -49663,7 +49661,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferViewDetails_validator = bv.Struct(FileTransfersTransferViewDetails) @@ -49685,7 +49683,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileTransfersTransferViewType_validator = bv.Struct(FileTransfersTransferViewType) @@ -49712,7 +49710,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileUnlikeCommentDetails_validator = bv.Struct(FileUnlikeCommentDetails) @@ -49734,7 +49732,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileUnlikeCommentType_validator = bv.Struct(FileUnlikeCommentType) @@ -49761,7 +49759,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileUnresolveCommentDetails_validator = bv.Struct(FileUnresolveCommentDetails) @@ -49783,7 +49781,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileUnresolveCommentType_validator = bv.Struct(FileUnresolveCommentType) @@ -49830,7 +49828,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FolderLinkRestrictionPolicy_validator = bv.Union(FolderLinkRestrictionPolicy) @@ -49867,7 +49865,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderLinkRestrictionPolicyChangedDetails_validator = bv.Struct(FolderLinkRestrictionPolicyChangedDetails) @@ -49889,7 +49887,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderLinkRestrictionPolicyChangedType_validator = bv.Struct(FolderLinkRestrictionPolicyChangedType) @@ -49912,7 +49910,7 @@ def __init__(self, file_id=None, file_size=None, file_count=None): - super(FolderLogInfo, self).__init__(path, + super().__init__(path, display_name, file_id, file_size) @@ -49924,7 +49922,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderLogInfo_validator = bv.Struct(FolderLogInfo) @@ -49953,7 +49951,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewDescriptionChangedDetails_validator = bv.Struct(FolderOverviewDescriptionChangedDetails) @@ -49975,7 +49973,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewDescriptionChangedType_validator = bv.Struct(FolderOverviewDescriptionChangedType) @@ -50014,7 +50012,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewItemPinnedDetails_validator = bv.Struct(FolderOverviewItemPinnedDetails) @@ -50036,7 +50034,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewItemPinnedType_validator = bv.Struct(FolderOverviewItemPinnedType) @@ -50075,7 +50073,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewItemUnpinnedDetails_validator = bv.Struct(FolderOverviewItemUnpinnedDetails) @@ -50097,7 +50095,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FolderOverviewItemUnpinnedType_validator = bv.Struct(FolderOverviewItemUnpinnedType) @@ -50151,7 +50149,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GeoLocationLogInfo_validator = bv.Struct(GeoLocationLogInfo) @@ -50222,7 +50220,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsArg_validator = bv.Struct(GetTeamEventsArg) @@ -50248,7 +50246,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsContinueArg_validator = bv.Struct(GetTeamEventsContinueArg) @@ -50333,7 +50331,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsContinueError_validator = bv.Union(GetTeamEventsContinueError) @@ -50396,7 +50394,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsError_validator = bv.Union(GetTeamEventsError) @@ -50453,7 +50451,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetTeamEventsResult_validator = bv.Struct(GetTeamEventsResult) @@ -50491,7 +50489,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GoogleSsoChangePolicyDetails_validator = bv.Struct(GoogleSsoChangePolicyDetails) @@ -50513,7 +50511,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GoogleSsoChangePolicyType_validator = bv.Struct(GoogleSsoChangePolicyType) @@ -50559,7 +50557,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GoogleSsoPolicy_validator = bv.Union(GoogleSsoPolicy) @@ -50624,7 +50622,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyAddFolderFailedDetails_validator = bv.Struct(GovernancePolicyAddFolderFailedDetails) @@ -50646,7 +50644,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyAddFolderFailedType_validator = bv.Struct(GovernancePolicyAddFolderFailedType) @@ -50701,7 +50699,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyAddFoldersDetails_validator = bv.Struct(GovernancePolicyAddFoldersDetails) @@ -50723,7 +50721,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyAddFoldersType_validator = bv.Struct(GovernancePolicyAddFoldersType) @@ -50780,7 +50778,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyContentDisposedDetails_validator = bv.Struct(GovernancePolicyContentDisposedDetails) @@ -50802,7 +50800,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyContentDisposedType_validator = bv.Struct(GovernancePolicyContentDisposedType) @@ -50866,7 +50864,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyCreateDetails_validator = bv.Struct(GovernancePolicyCreateDetails) @@ -50888,7 +50886,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyCreateType_validator = bv.Struct(GovernancePolicyCreateType) @@ -50934,7 +50932,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyDeleteDetails_validator = bv.Struct(GovernancePolicyDeleteDetails) @@ -50956,7 +50954,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyDeleteType_validator = bv.Struct(GovernancePolicyDeleteType) @@ -51029,7 +51027,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyEditDetailsDetails_validator = bv.Struct(GovernancePolicyEditDetailsDetails) @@ -51051,7 +51049,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyEditDetailsType_validator = bv.Struct(GovernancePolicyEditDetailsType) @@ -51115,7 +51113,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyEditDurationDetails_validator = bv.Struct(GovernancePolicyEditDurationDetails) @@ -51137,7 +51135,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyEditDurationType_validator = bv.Struct(GovernancePolicyEditDurationType) @@ -51194,7 +51192,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyExportCreatedDetails_validator = bv.Struct(GovernancePolicyExportCreatedDetails) @@ -51216,7 +51214,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyExportCreatedType_validator = bv.Struct(GovernancePolicyExportCreatedType) @@ -51273,7 +51271,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyExportRemovedDetails_validator = bv.Struct(GovernancePolicyExportRemovedDetails) @@ -51295,7 +51293,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyExportRemovedType_validator = bv.Struct(GovernancePolicyExportRemovedType) @@ -51360,7 +51358,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyRemoveFoldersDetails_validator = bv.Struct(GovernancePolicyRemoveFoldersDetails) @@ -51382,7 +51380,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyRemoveFoldersType_validator = bv.Struct(GovernancePolicyRemoveFoldersType) @@ -51429,7 +51427,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyReportCreatedDetails_validator = bv.Struct(GovernancePolicyReportCreatedDetails) @@ -51451,7 +51449,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyReportCreatedType_validator = bv.Struct(GovernancePolicyReportCreatedType) @@ -51518,7 +51516,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyZipPartDownloadedDetails_validator = bv.Struct(GovernancePolicyZipPartDownloadedDetails) @@ -51540,7 +51538,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GovernancePolicyZipPartDownloadedType_validator = bv.Struct(GovernancePolicyZipPartDownloadedType) @@ -51567,7 +51565,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupAddExternalIdDetails_validator = bv.Struct(GroupAddExternalIdDetails) @@ -51589,7 +51587,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupAddExternalIdType_validator = bv.Struct(GroupAddExternalIdType) @@ -51616,7 +51614,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupAddMemberDetails_validator = bv.Struct(GroupAddMemberDetails) @@ -51638,7 +51636,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupAddMemberType_validator = bv.Struct(GroupAddMemberType) @@ -51674,7 +51672,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupChangeExternalIdDetails_validator = bv.Struct(GroupChangeExternalIdDetails) @@ -51696,7 +51694,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupChangeExternalIdType_validator = bv.Struct(GroupChangeExternalIdType) @@ -51734,7 +51732,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupChangeManagementTypeDetails_validator = bv.Struct(GroupChangeManagementTypeDetails) @@ -51756,7 +51754,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupChangeManagementTypeType_validator = bv.Struct(GroupChangeManagementTypeType) @@ -51783,7 +51781,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupChangeMemberRoleDetails_validator = bv.Struct(GroupChangeMemberRoleDetails) @@ -51805,7 +51803,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupChangeMemberRoleType_validator = bv.Struct(GroupChangeMemberRoleType) @@ -51842,7 +51840,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupCreateDetails_validator = bv.Struct(GroupCreateDetails) @@ -51864,7 +51862,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupCreateType_validator = bv.Struct(GroupCreateType) @@ -51892,7 +51890,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupDeleteDetails_validator = bv.Struct(GroupDeleteDetails) @@ -51914,7 +51912,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupDeleteType_validator = bv.Struct(GroupDeleteType) @@ -51932,7 +51930,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupDescriptionUpdatedDetails_validator = bv.Struct(GroupDescriptionUpdatedDetails) @@ -51954,7 +51952,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupDescriptionUpdatedType_validator = bv.Struct(GroupDescriptionUpdatedType) @@ -51998,7 +51996,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupJoinPolicy_validator = bv.Union(GroupJoinPolicy) @@ -52035,7 +52033,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupJoinPolicyUpdatedDetails_validator = bv.Struct(GroupJoinPolicyUpdatedDetails) @@ -52057,7 +52055,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupJoinPolicyUpdatedType_validator = bv.Struct(GroupJoinPolicyUpdatedType) @@ -52102,7 +52100,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupLogInfo_validator = bv.Struct(GroupLogInfo) @@ -52120,7 +52118,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMovedDetails_validator = bv.Struct(GroupMovedDetails) @@ -52142,7 +52140,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupMovedType_validator = bv.Struct(GroupMovedType) @@ -52169,7 +52167,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupRemoveExternalIdDetails_validator = bv.Struct(GroupRemoveExternalIdDetails) @@ -52191,7 +52189,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupRemoveExternalIdType_validator = bv.Struct(GroupRemoveExternalIdType) @@ -52209,7 +52207,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupRemoveMemberDetails_validator = bv.Struct(GroupRemoveMemberDetails) @@ -52231,7 +52229,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupRemoveMemberType_validator = bv.Struct(GroupRemoveMemberType) @@ -52267,7 +52265,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupRenameDetails_validator = bv.Struct(GroupRenameDetails) @@ -52289,7 +52287,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupRenameType_validator = bv.Struct(GroupRenameType) @@ -52328,7 +52326,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupUserManagementChangePolicyDetails_validator = bv.Struct(GroupUserManagementChangePolicyDetails) @@ -52350,7 +52348,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GroupUserManagementChangePolicyType_validator = bv.Struct(GroupUserManagementChangePolicyType) @@ -52426,7 +52424,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GuestAdminChangeStatusDetails_validator = bv.Struct(GuestAdminChangeStatusDetails) @@ -52448,7 +52446,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GuestAdminChangeStatusType_validator = bv.Struct(GuestAdminChangeStatusType) @@ -52486,7 +52484,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GuestAdminSignedInViaTrustedTeamsDetails_validator = bv.Struct(GuestAdminSignedInViaTrustedTeamsDetails) @@ -52508,7 +52506,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GuestAdminSignedInViaTrustedTeamsType_validator = bv.Struct(GuestAdminSignedInViaTrustedTeamsType) @@ -52546,7 +52544,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GuestAdminSignedOutViaTrustedTeamsDetails_validator = bv.Struct(GuestAdminSignedOutViaTrustedTeamsDetails) @@ -52568,7 +52566,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GuestAdminSignedOutViaTrustedTeamsType_validator = bv.Struct(GuestAdminSignedOutViaTrustedTeamsType) @@ -52612,7 +52610,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) IdentifierType_validator = bv.Union(IdentifierType) @@ -52640,7 +52638,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) IntegrationConnectedDetails_validator = bv.Struct(IntegrationConnectedDetails) @@ -52662,7 +52660,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) IntegrationConnectedType_validator = bv.Struct(IntegrationConnectedType) @@ -52690,7 +52688,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) IntegrationDisconnectedDetails_validator = bv.Struct(IntegrationDisconnectedDetails) @@ -52712,7 +52710,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) IntegrationDisconnectedType_validator = bv.Struct(IntegrationDisconnectedType) @@ -52759,7 +52757,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) IntegrationPolicy_validator = bv.Union(IntegrationPolicy) @@ -52807,7 +52805,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) IntegrationPolicyChangedDetails_validator = bv.Struct(IntegrationPolicyChangedDetails) @@ -52829,7 +52827,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) IntegrationPolicyChangedType_validator = bv.Struct(IntegrationPolicyChangedType) @@ -52876,7 +52874,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) InviteAcceptanceEmailPolicy_validator = bv.Union(InviteAcceptanceEmailPolicy) @@ -52913,7 +52911,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) InviteAcceptanceEmailPolicyChangedDetails_validator = bv.Struct(InviteAcceptanceEmailPolicyChangedDetails) @@ -52935,7 +52933,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) InviteAcceptanceEmailPolicyChangedType_validator = bv.Struct(InviteAcceptanceEmailPolicyChangedType) @@ -52999,7 +52997,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) InviteMethod_validator = bv.Union(InviteMethod) @@ -53110,7 +53108,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) JoinTeamDetails_validator = bv.Struct(JoinTeamDetails) @@ -53166,7 +53164,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) LabelType_validator = bv.Union(LabelType) @@ -53222,7 +53220,7 @@ def __init__(self, device_type=None, client_version=None, legacy_uniq_id=None): - super(LegacyDeviceSessionLogInfo, self).__init__(ip_address, + super().__init__(ip_address, created, updated) self._session_info_value = bb.NOT_SET @@ -53281,7 +53279,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegacyDeviceSessionLogInfo_validator = bv.Struct(LegacyDeviceSessionLogInfo) @@ -53335,7 +53333,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsActivateAHoldDetails_validator = bv.Struct(LegalHoldsActivateAHoldDetails) @@ -53357,7 +53355,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsActivateAHoldType_validator = bv.Struct(LegalHoldsActivateAHoldType) @@ -53393,7 +53391,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsAddMembersDetails_validator = bv.Struct(LegalHoldsAddMembersDetails) @@ -53415,7 +53413,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsAddMembersType_validator = bv.Struct(LegalHoldsAddMembersType) @@ -53470,7 +53468,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsChangeHoldDetailsDetails_validator = bv.Struct(LegalHoldsChangeHoldDetailsDetails) @@ -53492,7 +53490,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsChangeHoldDetailsType_validator = bv.Struct(LegalHoldsChangeHoldDetailsType) @@ -53538,7 +53536,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsChangeHoldNameDetails_validator = bv.Struct(LegalHoldsChangeHoldNameDetails) @@ -53560,7 +53558,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsChangeHoldNameType_validator = bv.Struct(LegalHoldsChangeHoldNameType) @@ -53605,7 +53603,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportAHoldDetails_validator = bv.Struct(LegalHoldsExportAHoldDetails) @@ -53627,7 +53625,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportAHoldType_validator = bv.Struct(LegalHoldsExportAHoldType) @@ -53672,7 +53670,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportCancelledDetails_validator = bv.Struct(LegalHoldsExportCancelledDetails) @@ -53694,7 +53692,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportCancelledType_validator = bv.Struct(LegalHoldsExportCancelledType) @@ -53757,7 +53755,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportDownloadedDetails_validator = bv.Struct(LegalHoldsExportDownloadedDetails) @@ -53779,7 +53777,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportDownloadedType_validator = bv.Struct(LegalHoldsExportDownloadedType) @@ -53824,7 +53822,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportRemovedDetails_validator = bv.Struct(LegalHoldsExportRemovedDetails) @@ -53846,7 +53844,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsExportRemovedType_validator = bv.Struct(LegalHoldsExportRemovedType) @@ -53882,7 +53880,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsReleaseAHoldDetails_validator = bv.Struct(LegalHoldsReleaseAHoldDetails) @@ -53904,7 +53902,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsReleaseAHoldType_validator = bv.Struct(LegalHoldsReleaseAHoldType) @@ -53940,7 +53938,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsRemoveMembersDetails_validator = bv.Struct(LegalHoldsRemoveMembersDetails) @@ -53962,7 +53960,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsRemoveMembersType_validator = bv.Struct(LegalHoldsRemoveMembersType) @@ -53998,7 +53996,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsReportAHoldDetails_validator = bv.Struct(LegalHoldsReportAHoldDetails) @@ -54020,7 +54018,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LegalHoldsReportAHoldType_validator = bv.Struct(LegalHoldsReportAHoldType) @@ -54180,7 +54178,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LinkedDeviceLogInfo_validator = bv.Union(LinkedDeviceLogInfo) @@ -54226,7 +54224,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) LockStatus_validator = bv.Union(LockStatus) @@ -54272,7 +54270,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LoginFailDetails_validator = bv.Struct(LoginFailDetails) @@ -54294,7 +54292,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LoginFailType_validator = bv.Struct(LoginFailType) @@ -54408,7 +54406,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) LoginMethod_validator = bv.Union(LoginMethod) @@ -54445,7 +54443,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LoginSuccessDetails_validator = bv.Struct(LoginSuccessDetails) @@ -54467,7 +54465,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LoginSuccessType_validator = bv.Struct(LoginSuccessType) @@ -54494,7 +54492,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) LogoutDetails_validator = bv.Struct(LogoutDetails) @@ -54516,7 +54514,7 @@ def __init__(self, description = bb.Attribute("description") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(LogoutType, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) LogoutType_validator = bv.Struct(LogoutType) @@ -54543,7 +54541,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddExternalIdDetails_validator = bv.Struct(MemberAddExternalIdDetails) @@ -54565,7 +54563,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddExternalIdType_validator = bv.Struct(MemberAddExternalIdType) @@ -54592,7 +54590,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddNameDetails_validator = bv.Struct(MemberAddNameDetails) @@ -54614,7 +54612,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberAddNameType_validator = bv.Struct(MemberAddNameType) @@ -54654,7 +54652,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeAdminRoleDetails_validator = bv.Struct(MemberChangeAdminRoleDetails) @@ -54676,7 +54674,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeAdminRoleType_validator = bv.Struct(MemberChangeAdminRoleType) @@ -54713,7 +54711,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeEmailDetails_validator = bv.Struct(MemberChangeEmailDetails) @@ -54735,7 +54733,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeEmailType_validator = bv.Struct(MemberChangeEmailType) @@ -54772,7 +54770,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeExternalIdDetails_validator = bv.Struct(MemberChangeExternalIdDetails) @@ -54794,7 +54792,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeExternalIdType_validator = bv.Struct(MemberChangeExternalIdType) @@ -54832,7 +54830,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeMembershipTypeDetails_validator = bv.Struct(MemberChangeMembershipTypeDetails) @@ -54854,7 +54852,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeMembershipTypeType_validator = bv.Struct(MemberChangeMembershipTypeType) @@ -54891,7 +54889,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeNameDetails_validator = bv.Struct(MemberChangeNameDetails) @@ -54913,7 +54911,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeNameType_validator = bv.Struct(MemberChangeNameType) @@ -54952,7 +54950,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeResellerRoleDetails_validator = bv.Struct(MemberChangeResellerRoleDetails) @@ -54974,7 +54972,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeResellerRoleType_validator = bv.Struct(MemberChangeResellerRoleType) @@ -55042,7 +55040,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeStatusDetails_validator = bv.Struct(MemberChangeStatusDetails) @@ -55064,7 +55062,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberChangeStatusType_validator = bv.Struct(MemberChangeStatusType) @@ -55082,7 +55080,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberDeleteManualContactsDetails_validator = bv.Struct(MemberDeleteManualContactsDetails) @@ -55104,7 +55102,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberDeleteManualContactsType_validator = bv.Struct(MemberDeleteManualContactsType) @@ -55122,7 +55120,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberDeleteProfilePhotoDetails_validator = bv.Struct(MemberDeleteProfilePhotoDetails) @@ -55144,7 +55142,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberDeleteProfilePhotoType_validator = bv.Struct(MemberDeleteProfilePhotoType) @@ -55162,7 +55160,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberPermanentlyDeleteAccountContentsDetails_validator = bv.Struct(MemberPermanentlyDeleteAccountContentsDetails) @@ -55184,7 +55182,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberPermanentlyDeleteAccountContentsType_validator = bv.Struct(MemberPermanentlyDeleteAccountContentsType) @@ -55248,7 +55246,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MemberRemoveActionType_validator = bv.Union(MemberRemoveActionType) @@ -55276,7 +55274,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberRemoveExternalIdDetails_validator = bv.Struct(MemberRemoveExternalIdDetails) @@ -55298,7 +55296,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberRemoveExternalIdType_validator = bv.Struct(MemberRemoveExternalIdType) @@ -55337,7 +55335,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberRequestsChangePolicyDetails_validator = bv.Struct(MemberRequestsChangePolicyDetails) @@ -55359,7 +55357,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberRequestsChangePolicyType_validator = bv.Struct(MemberRequestsChangePolicyType) @@ -55413,7 +55411,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MemberRequestsPolicy_validator = bv.Union(MemberRequestsPolicy) @@ -55469,7 +55467,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSendInvitePolicy_validator = bv.Union(MemberSendInvitePolicy) @@ -55507,7 +55505,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSendInvitePolicyChangedDetails_validator = bv.Struct(MemberSendInvitePolicyChangedDetails) @@ -55529,7 +55527,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSendInvitePolicyChangedType_validator = bv.Struct(MemberSendInvitePolicyChangedType) @@ -55547,7 +55545,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSetProfilePhotoDetails_validator = bv.Struct(MemberSetProfilePhotoDetails) @@ -55569,7 +55567,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSetProfilePhotoType_validator = bv.Struct(MemberSetProfilePhotoType) @@ -55597,7 +55595,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsAddCustomQuotaDetails_validator = bv.Struct(MemberSpaceLimitsAddCustomQuotaDetails) @@ -55619,7 +55617,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsAddCustomQuotaType_validator = bv.Struct(MemberSpaceLimitsAddCustomQuotaType) @@ -55637,7 +55635,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsAddExceptionDetails_validator = bv.Struct(MemberSpaceLimitsAddExceptionDetails) @@ -55659,7 +55657,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsAddExceptionType_validator = bv.Struct(MemberSpaceLimitsAddExceptionType) @@ -55697,7 +55695,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangeCapsTypePolicyDetails_validator = bv.Struct(MemberSpaceLimitsChangeCapsTypePolicyDetails) @@ -55719,7 +55717,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangeCapsTypePolicyType_validator = bv.Struct(MemberSpaceLimitsChangeCapsTypePolicyType) @@ -55757,7 +55755,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangeCustomQuotaDetails_validator = bv.Struct(MemberSpaceLimitsChangeCustomQuotaDetails) @@ -55779,7 +55777,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangeCustomQuotaType_validator = bv.Struct(MemberSpaceLimitsChangeCustomQuotaType) @@ -55819,7 +55817,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangePolicyDetails_validator = bv.Struct(MemberSpaceLimitsChangePolicyDetails) @@ -55841,7 +55839,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangePolicyType_validator = bv.Struct(MemberSpaceLimitsChangePolicyType) @@ -55879,7 +55877,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangeStatusDetails_validator = bv.Struct(MemberSpaceLimitsChangeStatusDetails) @@ -55901,7 +55899,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsChangeStatusType_validator = bv.Struct(MemberSpaceLimitsChangeStatusType) @@ -55919,7 +55917,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsRemoveCustomQuotaDetails_validator = bv.Struct(MemberSpaceLimitsRemoveCustomQuotaDetails) @@ -55941,7 +55939,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsRemoveCustomQuotaType_validator = bv.Struct(MemberSpaceLimitsRemoveCustomQuotaType) @@ -55959,7 +55957,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsRemoveExceptionDetails_validator = bv.Struct(MemberSpaceLimitsRemoveExceptionDetails) @@ -55981,7 +55979,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSpaceLimitsRemoveExceptionType_validator = bv.Struct(MemberSpaceLimitsRemoveExceptionType) @@ -56065,7 +56063,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MemberStatus_validator = bv.Union(MemberStatus) @@ -56093,7 +56091,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestDetails_validator = bv.Struct(MemberSuggestDetails) @@ -56115,7 +56113,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestType_validator = bv.Struct(MemberSuggestType) @@ -56154,7 +56152,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestionsChangePolicyDetails_validator = bv.Struct(MemberSuggestionsChangePolicyDetails) @@ -56176,7 +56174,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestionsChangePolicyType_validator = bv.Struct(MemberSuggestionsChangePolicyType) @@ -56222,7 +56220,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MemberSuggestionsPolicy_validator = bv.Union(MemberSuggestionsPolicy) @@ -56240,7 +56238,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberTransferAccountContentsDetails_validator = bv.Struct(MemberTransferAccountContentsDetails) @@ -56262,7 +56260,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberTransferAccountContentsType_validator = bv.Struct(MemberTransferAccountContentsType) @@ -56300,7 +56298,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MemberTransferredInternalFields_validator = bv.Struct(MemberTransferredInternalFields) @@ -56339,7 +56337,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MicrosoftOfficeAddinChangePolicyDetails_validator = bv.Struct(MicrosoftOfficeAddinChangePolicyDetails) @@ -56361,7 +56359,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MicrosoftOfficeAddinChangePolicyType_validator = bv.Struct(MicrosoftOfficeAddinChangePolicyType) @@ -56407,7 +56405,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) MicrosoftOfficeAddinPolicy_validator = bv.Union(MicrosoftOfficeAddinPolicy) @@ -56436,7 +56434,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MissingDetails_validator = bv.Struct(MissingDetails) @@ -56478,7 +56476,7 @@ def __init__(self, client_version=None, os_version=None, last_carrier=None): - super(MobileDeviceSessionLogInfo, self).__init__(ip_address, + super().__init__(ip_address, created, updated) self._session_info_value = bb.NOT_SET @@ -56519,7 +56517,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) MobileDeviceSessionLogInfo_validator = bv.Struct(MobileDeviceSessionLogInfo) @@ -56535,10 +56533,10 @@ class MobileSessionLogInfo(SessionLogInfo): def __init__(self, session_id=None): - super(MobileSessionLogInfo, self).__init__(session_id) + super().__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()._process_custom_annotations(annotation_type, field_path, processor) MobileSessionLogInfo_validator = bv.Struct(MobileSessionLogInfo) @@ -56585,7 +56583,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NamespaceRelativePathLogInfo_validator = bv.Struct(NamespaceRelativePathLogInfo) @@ -56623,7 +56621,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NetworkControlChangePolicyDetails_validator = bv.Struct(NetworkControlChangePolicyDetails) @@ -56645,7 +56643,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NetworkControlChangePolicyType_validator = bv.Struct(NetworkControlChangePolicyType) @@ -56691,7 +56689,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) NetworkControlPolicy_validator = bv.Union(NetworkControlPolicy) @@ -56729,7 +56727,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoExpirationLinkGenCreateReportDetails_validator = bv.Struct(NoExpirationLinkGenCreateReportDetails) @@ -56751,7 +56749,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoExpirationLinkGenCreateReportType_validator = bv.Struct(NoExpirationLinkGenCreateReportType) @@ -56779,7 +56777,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoExpirationLinkGenReportFailedDetails_validator = bv.Struct(NoExpirationLinkGenReportFailedDetails) @@ -56801,7 +56799,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoExpirationLinkGenReportFailedType_validator = bv.Struct(NoExpirationLinkGenReportFailedType) @@ -56839,7 +56837,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkGenCreateReportDetails_validator = bv.Struct(NoPasswordLinkGenCreateReportDetails) @@ -56861,7 +56859,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkGenCreateReportType_validator = bv.Struct(NoPasswordLinkGenCreateReportType) @@ -56889,7 +56887,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkGenReportFailedDetails_validator = bv.Struct(NoPasswordLinkGenReportFailedDetails) @@ -56911,7 +56909,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkGenReportFailedType_validator = bv.Struct(NoPasswordLinkGenReportFailedType) @@ -56949,7 +56947,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkViewCreateReportDetails_validator = bv.Struct(NoPasswordLinkViewCreateReportDetails) @@ -56971,7 +56969,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkViewCreateReportType_validator = bv.Struct(NoPasswordLinkViewCreateReportType) @@ -56999,7 +56997,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkViewReportFailedDetails_validator = bv.Struct(NoPasswordLinkViewReportFailedDetails) @@ -57021,7 +57019,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoPasswordLinkViewReportFailedType_validator = bv.Struct(NoPasswordLinkViewReportFailedType) @@ -57066,7 +57064,7 @@ def __init__(self, email = bb.Attribute("email", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(UserLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) UserLogInfo_validator = bv.StructTree(UserLogInfo) @@ -57084,12 +57082,12 @@ def __init__(self, account_id=None, display_name=None, email=None): - super(NonTeamMemberLogInfo, self).__init__(account_id, + super().__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()._process_custom_annotations(annotation_type, field_path, processor) NonTeamMemberLogInfo_validator = bv.Struct(NonTeamMemberLogInfo) @@ -57117,7 +57115,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NonTrustedTeamDetails_validator = bv.Struct(NonTrustedTeamDetails) @@ -57135,7 +57133,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteAclInviteOnlyDetails_validator = bv.Struct(NoteAclInviteOnlyDetails) @@ -57157,7 +57155,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteAclInviteOnlyType_validator = bv.Struct(NoteAclInviteOnlyType) @@ -57175,7 +57173,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteAclLinkDetails_validator = bv.Struct(NoteAclLinkDetails) @@ -57197,7 +57195,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteAclLinkType_validator = bv.Struct(NoteAclLinkType) @@ -57215,7 +57213,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteAclTeamLinkDetails_validator = bv.Struct(NoteAclTeamLinkDetails) @@ -57237,7 +57235,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteAclTeamLinkType_validator = bv.Struct(NoteAclTeamLinkType) @@ -57255,7 +57253,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteShareReceiveDetails_validator = bv.Struct(NoteShareReceiveDetails) @@ -57277,7 +57275,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteShareReceiveType_validator = bv.Struct(NoteShareReceiveType) @@ -57295,7 +57293,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteSharedDetails_validator = bv.Struct(NoteSharedDetails) @@ -57317,7 +57315,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) NoteSharedType_validator = bv.Struct(NoteSharedType) @@ -57345,7 +57343,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelAddedDetails_validator = bv.Struct(ObjectLabelAddedDetails) @@ -57367,7 +57365,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelAddedType_validator = bv.Struct(ObjectLabelAddedType) @@ -57395,7 +57393,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelRemovedDetails_validator = bv.Struct(ObjectLabelRemovedDetails) @@ -57417,7 +57415,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelRemovedType_validator = bv.Struct(ObjectLabelRemovedType) @@ -57445,7 +57443,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelUpdatedValueDetails_validator = bv.Struct(ObjectLabelUpdatedValueDetails) @@ -57467,7 +57465,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ObjectLabelUpdatedValueType_validator = bv.Struct(ObjectLabelUpdatedValueType) @@ -57485,7 +57483,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OpenNoteSharedDetails_validator = bv.Struct(OpenNoteSharedDetails) @@ -57507,7 +57505,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OpenNoteSharedType_validator = bv.Struct(OpenNoteSharedType) @@ -57535,7 +57533,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OrganizationDetails_validator = bv.Struct(OrganizationDetails) @@ -57562,7 +57560,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OrganizationName_validator = bv.Struct(OrganizationName) @@ -57580,7 +57578,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OrganizeFolderWithTidyDetails_validator = bv.Struct(OrganizeFolderWithTidyDetails) @@ -57602,7 +57600,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OrganizeFolderWithTidyType_validator = bv.Struct(OrganizeFolderWithTidyType) @@ -57639,7 +57637,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OriginLogInfo_validator = bv.Struct(OriginLogInfo) @@ -57677,7 +57675,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OutdatedLinkViewCreateReportDetails_validator = bv.Struct(OutdatedLinkViewCreateReportDetails) @@ -57699,7 +57697,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OutdatedLinkViewCreateReportType_validator = bv.Struct(OutdatedLinkViewCreateReportType) @@ -57727,7 +57725,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OutdatedLinkViewReportFailedDetails_validator = bv.Struct(OutdatedLinkViewReportFailedDetails) @@ -57749,7 +57747,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) OutdatedLinkViewReportFailedType_validator = bv.Struct(OutdatedLinkViewReportFailedType) @@ -57803,7 +57801,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperAccessType_validator = bv.Union(PaperAccessType) @@ -57821,7 +57819,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperAdminExportStartDetails_validator = bv.Struct(PaperAdminExportStartDetails) @@ -57843,7 +57841,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperAdminExportStartType_validator = bv.Struct(PaperAdminExportStartType) @@ -57883,7 +57881,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperChangeDeploymentPolicyDetails_validator = bv.Struct(PaperChangeDeploymentPolicyDetails) @@ -57905,7 +57903,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperChangeDeploymentPolicyType_validator = bv.Struct(PaperChangeDeploymentPolicyType) @@ -57933,7 +57931,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperChangeMemberLinkPolicyDetails_validator = bv.Struct(PaperChangeMemberLinkPolicyDetails) @@ -57955,7 +57953,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperChangeMemberLinkPolicyType_validator = bv.Struct(PaperChangeMemberLinkPolicyType) @@ -57995,7 +57993,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperChangeMemberPolicyDetails_validator = bv.Struct(PaperChangeMemberPolicyDetails) @@ -58017,7 +58015,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperChangeMemberPolicyType_validator = bv.Struct(PaperChangeMemberPolicyType) @@ -58054,7 +58052,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperChangePolicyDetails_validator = bv.Struct(PaperChangePolicyDetails) @@ -58076,7 +58074,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperChangePolicyType_validator = bv.Struct(PaperChangePolicyType) @@ -58104,7 +58102,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentAddMemberDetails_validator = bv.Struct(PaperContentAddMemberDetails) @@ -58126,7 +58124,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentAddMemberType_validator = bv.Struct(PaperContentAddMemberType) @@ -58174,7 +58172,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentAddToFolderDetails_validator = bv.Struct(PaperContentAddToFolderDetails) @@ -58196,7 +58194,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentAddToFolderType_validator = bv.Struct(PaperContentAddToFolderType) @@ -58224,7 +58222,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentArchiveDetails_validator = bv.Struct(PaperContentArchiveDetails) @@ -58246,7 +58244,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentArchiveType_validator = bv.Struct(PaperContentArchiveType) @@ -58274,7 +58272,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentCreateDetails_validator = bv.Struct(PaperContentCreateDetails) @@ -58296,7 +58294,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentCreateType_validator = bv.Struct(PaperContentCreateType) @@ -58324,7 +58322,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentPermanentlyDeleteDetails_validator = bv.Struct(PaperContentPermanentlyDeleteDetails) @@ -58346,7 +58344,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentPermanentlyDeleteType_validator = bv.Struct(PaperContentPermanentlyDeleteType) @@ -58394,7 +58392,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentRemoveFromFolderDetails_validator = bv.Struct(PaperContentRemoveFromFolderDetails) @@ -58416,7 +58414,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentRemoveFromFolderType_validator = bv.Struct(PaperContentRemoveFromFolderType) @@ -58444,7 +58442,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentRemoveMemberDetails_validator = bv.Struct(PaperContentRemoveMemberDetails) @@ -58466,7 +58464,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentRemoveMemberType_validator = bv.Struct(PaperContentRemoveMemberType) @@ -58494,7 +58492,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentRenameDetails_validator = bv.Struct(PaperContentRenameDetails) @@ -58516,7 +58514,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentRenameType_validator = bv.Struct(PaperContentRenameType) @@ -58544,7 +58542,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentRestoreDetails_validator = bv.Struct(PaperContentRestoreDetails) @@ -58566,7 +58564,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperContentRestoreType_validator = bv.Struct(PaperContentRestoreType) @@ -58612,7 +58610,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDefaultFolderPolicy_validator = bv.Union(PaperDefaultFolderPolicy) @@ -58650,7 +58648,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDefaultFolderPolicyChangedDetails_validator = bv.Struct(PaperDefaultFolderPolicyChangedDetails) @@ -58672,7 +58670,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDefaultFolderPolicyChangedType_validator = bv.Struct(PaperDefaultFolderPolicyChangedType) @@ -58718,7 +58716,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDesktopPolicy_validator = bv.Union(PaperDesktopPolicy) @@ -58756,7 +58754,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDesktopPolicyChangedDetails_validator = bv.Struct(PaperDesktopPolicyChangedDetails) @@ -58778,7 +58776,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDesktopPolicyChangedType_validator = bv.Struct(PaperDesktopPolicyChangedType) @@ -58815,7 +58813,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocAddCommentDetails_validator = bv.Struct(PaperDocAddCommentDetails) @@ -58837,7 +58835,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocAddCommentType_validator = bv.Struct(PaperDocAddCommentType) @@ -58875,7 +58873,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeMemberRoleDetails_validator = bv.Struct(PaperDocChangeMemberRoleDetails) @@ -58897,7 +58895,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeMemberRoleType_validator = bv.Struct(PaperDocChangeMemberRoleType) @@ -58945,7 +58943,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeSharingPolicyDetails_validator = bv.Struct(PaperDocChangeSharingPolicyDetails) @@ -58967,7 +58965,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeSharingPolicyType_validator = bv.Struct(PaperDocChangeSharingPolicyType) @@ -59017,7 +59015,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeSubscriptionDetails_validator = bv.Struct(PaperDocChangeSubscriptionDetails) @@ -59039,7 +59037,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocChangeSubscriptionType_validator = bv.Struct(PaperDocChangeSubscriptionType) @@ -59076,7 +59074,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocDeleteCommentDetails_validator = bv.Struct(PaperDocDeleteCommentDetails) @@ -59098,7 +59096,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocDeleteCommentType_validator = bv.Struct(PaperDocDeleteCommentType) @@ -59125,7 +59123,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocDeletedDetails_validator = bv.Struct(PaperDocDeletedDetails) @@ -59147,7 +59145,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocDeletedType_validator = bv.Struct(PaperDocDeletedType) @@ -59184,7 +59182,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocDownloadDetails_validator = bv.Struct(PaperDocDownloadDetails) @@ -59206,7 +59204,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocDownloadType_validator = bv.Struct(PaperDocDownloadType) @@ -59243,7 +59241,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocEditCommentDetails_validator = bv.Struct(PaperDocEditCommentDetails) @@ -59265,7 +59263,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocEditCommentType_validator = bv.Struct(PaperDocEditCommentType) @@ -59292,7 +59290,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocEditDetails_validator = bv.Struct(PaperDocEditDetails) @@ -59314,7 +59312,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocEditType_validator = bv.Struct(PaperDocEditType) @@ -59341,7 +59339,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocFollowedDetails_validator = bv.Struct(PaperDocFollowedDetails) @@ -59363,7 +59361,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocFollowedType_validator = bv.Struct(PaperDocFollowedType) @@ -59390,7 +59388,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocMentionDetails_validator = bv.Struct(PaperDocMentionDetails) @@ -59412,7 +59410,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocMentionType_validator = bv.Struct(PaperDocMentionType) @@ -59459,7 +59457,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocOwnershipChangedDetails_validator = bv.Struct(PaperDocOwnershipChangedDetails) @@ -59481,7 +59479,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocOwnershipChangedType_validator = bv.Struct(PaperDocOwnershipChangedType) @@ -59509,7 +59507,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocRequestAccessDetails_validator = bv.Struct(PaperDocRequestAccessDetails) @@ -59531,7 +59529,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocRequestAccessType_validator = bv.Struct(PaperDocRequestAccessType) @@ -59568,7 +59566,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocResolveCommentDetails_validator = bv.Struct(PaperDocResolveCommentDetails) @@ -59590,7 +59588,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocResolveCommentType_validator = bv.Struct(PaperDocResolveCommentType) @@ -59617,7 +59615,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocRevertDetails_validator = bv.Struct(PaperDocRevertDetails) @@ -59639,7 +59637,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocRevertType_validator = bv.Struct(PaperDocRevertType) @@ -59667,7 +59665,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocSlackShareDetails_validator = bv.Struct(PaperDocSlackShareDetails) @@ -59689,7 +59687,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocSlackShareType_validator = bv.Struct(PaperDocSlackShareType) @@ -59717,7 +59715,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocTeamInviteDetails_validator = bv.Struct(PaperDocTeamInviteDetails) @@ -59739,7 +59737,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocTeamInviteType_validator = bv.Struct(PaperDocTeamInviteType) @@ -59766,7 +59764,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocTrashedDetails_validator = bv.Struct(PaperDocTrashedDetails) @@ -59788,7 +59786,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocTrashedType_validator = bv.Struct(PaperDocTrashedType) @@ -59825,7 +59823,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocUnresolveCommentDetails_validator = bv.Struct(PaperDocUnresolveCommentDetails) @@ -59847,7 +59845,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocUnresolveCommentType_validator = bv.Struct(PaperDocUnresolveCommentType) @@ -59874,7 +59872,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocUntrashedDetails_validator = bv.Struct(PaperDocUntrashedDetails) @@ -59896,7 +59894,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocUntrashedType_validator = bv.Struct(PaperDocUntrashedType) @@ -59923,7 +59921,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocViewDetails_validator = bv.Struct(PaperDocViewDetails) @@ -59945,7 +59943,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocViewType_validator = bv.Struct(PaperDocViewType) @@ -59981,7 +59979,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDocumentLogInfo_validator = bv.Struct(PaperDocumentLogInfo) @@ -60045,7 +60043,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDownloadFormat_validator = bv.Union(PaperDownloadFormat) @@ -60063,7 +60061,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledUsersGroupAdditionDetails_validator = bv.Struct(PaperEnabledUsersGroupAdditionDetails) @@ -60085,7 +60083,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledUsersGroupAdditionType_validator = bv.Struct(PaperEnabledUsersGroupAdditionType) @@ -60103,7 +60101,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledUsersGroupRemovalDetails_validator = bv.Struct(PaperEnabledUsersGroupRemovalDetails) @@ -60125,7 +60123,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledUsersGroupRemovalType_validator = bv.Struct(PaperEnabledUsersGroupRemovalType) @@ -60153,7 +60151,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewAllowDetails_validator = bv.Struct(PaperExternalViewAllowDetails) @@ -60175,7 +60173,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewAllowType_validator = bv.Struct(PaperExternalViewAllowType) @@ -60203,7 +60201,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewDefaultTeamDetails_validator = bv.Struct(PaperExternalViewDefaultTeamDetails) @@ -60225,7 +60223,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewDefaultTeamType_validator = bv.Struct(PaperExternalViewDefaultTeamType) @@ -60253,7 +60251,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewForbidDetails_validator = bv.Struct(PaperExternalViewForbidDetails) @@ -60275,7 +60273,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperExternalViewForbidType_validator = bv.Struct(PaperExternalViewForbidType) @@ -60325,7 +60323,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderChangeSubscriptionDetails_validator = bv.Struct(PaperFolderChangeSubscriptionDetails) @@ -60347,7 +60345,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderChangeSubscriptionType_validator = bv.Struct(PaperFolderChangeSubscriptionType) @@ -60375,7 +60373,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderDeletedDetails_validator = bv.Struct(PaperFolderDeletedDetails) @@ -60397,7 +60395,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderDeletedType_validator = bv.Struct(PaperFolderDeletedType) @@ -60425,7 +60423,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderFollowedDetails_validator = bv.Struct(PaperFolderFollowedDetails) @@ -60447,7 +60445,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderFollowedType_validator = bv.Struct(PaperFolderFollowedType) @@ -60483,7 +60481,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderLogInfo_validator = bv.Struct(PaperFolderLogInfo) @@ -60511,7 +60509,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderTeamInviteDetails_validator = bv.Struct(PaperFolderTeamInviteDetails) @@ -60533,7 +60531,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperFolderTeamInviteType_validator = bv.Struct(PaperFolderTeamInviteType) @@ -60589,7 +60587,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperMemberPolicy_validator = bv.Union(PaperMemberPolicy) @@ -60639,7 +60637,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkChangePermissionDetails_validator = bv.Struct(PaperPublishedLinkChangePermissionDetails) @@ -60661,7 +60659,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkChangePermissionType_validator = bv.Struct(PaperPublishedLinkChangePermissionType) @@ -60689,7 +60687,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkCreateDetails_validator = bv.Struct(PaperPublishedLinkCreateDetails) @@ -60711,7 +60709,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkCreateType_validator = bv.Struct(PaperPublishedLinkCreateType) @@ -60739,7 +60737,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkDisabledDetails_validator = bv.Struct(PaperPublishedLinkDisabledDetails) @@ -60761,7 +60759,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkDisabledType_validator = bv.Struct(PaperPublishedLinkDisabledType) @@ -60789,7 +60787,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkViewDetails_validator = bv.Struct(PaperPublishedLinkViewDetails) @@ -60811,7 +60809,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperPublishedLinkViewType_validator = bv.Struct(PaperPublishedLinkViewType) @@ -60902,7 +60900,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ParticipantLogInfo_validator = bv.Union(ParticipantLogInfo) @@ -60956,7 +60954,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) PassPolicy_validator = bv.Union(PassPolicy) @@ -60974,7 +60972,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordChangeDetails_validator = bv.Struct(PasswordChangeDetails) @@ -60996,7 +60994,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordChangeType_validator = bv.Struct(PasswordChangeType) @@ -61014,7 +61012,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordResetAllDetails_validator = bv.Struct(PasswordResetAllDetails) @@ -61036,7 +61034,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordResetAllType_validator = bv.Struct(PasswordResetAllType) @@ -61054,7 +61052,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordResetDetails_validator = bv.Struct(PasswordResetDetails) @@ -61076,7 +61074,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordResetType_validator = bv.Struct(PasswordResetType) @@ -61115,7 +61113,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordStrengthRequirementsChangePolicyDetails_validator = bv.Struct(PasswordStrengthRequirementsChangePolicyDetails) @@ -61137,7 +61135,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordStrengthRequirementsChangePolicyType_validator = bv.Struct(PasswordStrengthRequirementsChangePolicyType) @@ -61175,7 +61173,7 @@ def __init__(self, namespace_relative = bb.Attribute("namespace_relative", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(PathLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) PathLogInfo_validator = bv.Struct(PathLogInfo) @@ -61203,7 +61201,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PendingSecondaryEmailAddedDetails_validator = bv.Struct(PendingSecondaryEmailAddedDetails) @@ -61225,7 +61223,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PendingSecondaryEmailAddedType_validator = bv.Struct(PendingSecondaryEmailAddedType) @@ -61264,7 +61262,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PermanentDeleteChangePolicyDetails_validator = bv.Struct(PermanentDeleteChangePolicyDetails) @@ -61286,7 +61284,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PermanentDeleteChangePolicyType_validator = bv.Struct(PermanentDeleteChangePolicyType) @@ -61370,7 +61368,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PlacementRestriction_validator = bv.Union(PlacementRestriction) @@ -61414,7 +61412,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) PolicyType_validator = bv.Union(PolicyType) @@ -61452,7 +61450,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PrimaryTeamRequestAcceptedDetails_validator = bv.Struct(PrimaryTeamRequestAcceptedDetails) @@ -61490,7 +61488,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PrimaryTeamRequestCanceledDetails_validator = bv.Struct(PrimaryTeamRequestCanceledDetails) @@ -61528,7 +61526,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PrimaryTeamRequestExpiredDetails_validator = bv.Struct(PrimaryTeamRequestExpiredDetails) @@ -61566,7 +61564,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PrimaryTeamRequestReminderDetails_validator = bv.Struct(PrimaryTeamRequestReminderDetails) @@ -61652,7 +61650,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) QuickActionType_validator = bv.Union(QuickActionType) @@ -61670,7 +61668,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RansomwareAlertCreateReportDetails_validator = bv.Struct(RansomwareAlertCreateReportDetails) @@ -61698,7 +61696,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RansomwareAlertCreateReportFailedDetails_validator = bv.Struct(RansomwareAlertCreateReportFailedDetails) @@ -61720,7 +61718,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RansomwareAlertCreateReportFailedType_validator = bv.Struct(RansomwareAlertCreateReportFailedType) @@ -61742,7 +61740,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RansomwareAlertCreateReportType_validator = bv.Struct(RansomwareAlertCreateReportType) @@ -61792,7 +61790,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RansomwareRestoreProcessCompletedDetails_validator = bv.Struct(RansomwareRestoreProcessCompletedDetails) @@ -61814,7 +61812,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RansomwareRestoreProcessCompletedType_validator = bv.Struct(RansomwareRestoreProcessCompletedType) @@ -61842,7 +61840,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RansomwareRestoreProcessStartedDetails_validator = bv.Struct(RansomwareRestoreProcessStartedDetails) @@ -61864,7 +61862,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RansomwareRestoreProcessStartedType_validator = bv.Struct(RansomwareRestoreProcessStartedType) @@ -61911,7 +61909,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RecipientsConfiguration_validator = bv.Struct(RecipientsConfiguration) @@ -61950,7 +61948,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RelocateAssetReferencesLogInfo_validator = bv.Struct(RelocateAssetReferencesLogInfo) @@ -61968,7 +61966,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ReplayFileDeleteDetails_validator = bv.Struct(ReplayFileDeleteDetails) @@ -61990,7 +61988,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ReplayFileDeleteType_validator = bv.Struct(ReplayFileDeleteType) @@ -62008,7 +62006,7 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkCreatedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ReplayFileSharedLinkCreatedDetails_validator = bv.Struct(ReplayFileSharedLinkCreatedDetails) @@ -62030,7 +62028,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ReplayFileSharedLinkCreatedType_validator = bv.Struct(ReplayFileSharedLinkCreatedType) @@ -62048,7 +62046,7 @@ def __init__(self): pass def _process_custom_annotations(self, annotation_type, field_path, processor): - super(ReplayFileSharedLinkModifiedDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) ReplayFileSharedLinkModifiedDetails_validator = bv.Struct(ReplayFileSharedLinkModifiedDetails) @@ -62070,7 +62068,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ReplayFileSharedLinkModifiedType_validator = bv.Struct(ReplayFileSharedLinkModifiedType) @@ -62088,7 +62086,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ReplayProjectTeamAddDetails_validator = bv.Struct(ReplayProjectTeamAddDetails) @@ -62110,7 +62108,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ReplayProjectTeamAddType_validator = bv.Struct(ReplayProjectTeamAddType) @@ -62128,7 +62126,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ReplayProjectTeamDeleteDetails_validator = bv.Struct(ReplayProjectTeamDeleteDetails) @@ -62150,7 +62148,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ReplayProjectTeamDeleteType_validator = bv.Struct(ReplayProjectTeamDeleteType) @@ -62186,7 +62184,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResellerLogInfo_validator = bv.Struct(ResellerLogInfo) @@ -62230,7 +62228,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ResellerRole_validator = bv.Union(ResellerRole) @@ -62268,7 +62266,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportChangePolicyDetails_validator = bv.Struct(ResellerSupportChangePolicyDetails) @@ -62290,7 +62288,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportChangePolicyType_validator = bv.Struct(ResellerSupportChangePolicyType) @@ -62337,7 +62335,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportPolicy_validator = bv.Union(ResellerSupportPolicy) @@ -62355,7 +62353,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportSessionEndDetails_validator = bv.Struct(ResellerSupportSessionEndDetails) @@ -62377,7 +62375,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportSessionEndType_validator = bv.Struct(ResellerSupportSessionEndType) @@ -62395,7 +62393,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportSessionStartDetails_validator = bv.Struct(ResellerSupportSessionStartDetails) @@ -62417,7 +62415,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ResellerSupportSessionStartType_validator = bv.Struct(ResellerSupportSessionStartType) @@ -62445,7 +62443,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RewindFolderDetails_validator = bv.Struct(RewindFolderDetails) @@ -62467,7 +62465,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RewindFolderType_validator = bv.Struct(RewindFolderType) @@ -62513,7 +62511,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RewindPolicy_validator = bv.Union(RewindPolicy) @@ -62551,7 +62549,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RewindPolicyChangedDetails_validator = bv.Struct(RewindPolicyChangedDetails) @@ -62573,7 +62571,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) RewindPolicyChangedType_validator = bv.Struct(RewindPolicyChangedType) @@ -62601,7 +62599,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryEmailDeletedDetails_validator = bv.Struct(SecondaryEmailDeletedDetails) @@ -62623,7 +62621,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryEmailDeletedType_validator = bv.Struct(SecondaryEmailDeletedType) @@ -62651,7 +62649,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryEmailVerifiedDetails_validator = bv.Struct(SecondaryEmailVerifiedDetails) @@ -62673,7 +62671,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryEmailVerifiedType_validator = bv.Struct(SecondaryEmailVerifiedType) @@ -62717,7 +62715,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryMailsPolicy_validator = bv.Union(SecondaryMailsPolicy) @@ -62755,7 +62753,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryMailsPolicyChangedDetails_validator = bv.Struct(SecondaryMailsPolicyChangedDetails) @@ -62777,7 +62775,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryMailsPolicyChangedType_validator = bv.Struct(SecondaryMailsPolicyChangedType) @@ -62815,7 +62813,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryTeamRequestAcceptedDetails_validator = bv.Struct(SecondaryTeamRequestAcceptedDetails) @@ -62853,7 +62851,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryTeamRequestCanceledDetails_validator = bv.Struct(SecondaryTeamRequestCanceledDetails) @@ -62881,7 +62879,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryTeamRequestExpiredDetails_validator = bv.Struct(SecondaryTeamRequestExpiredDetails) @@ -62909,7 +62907,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SecondaryTeamRequestReminderDetails_validator = bv.Struct(SecondaryTeamRequestReminderDetails) @@ -62955,7 +62953,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SendForSignaturePolicy_validator = bv.Union(SendForSignaturePolicy) @@ -62993,7 +62991,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SendForSignaturePolicyChangedDetails_validator = bv.Struct(SendForSignaturePolicyChangedDetails) @@ -63015,7 +63013,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SendForSignaturePolicyChangedType_validator = bv.Struct(SendForSignaturePolicyChangedType) @@ -63071,7 +63069,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfAddGroupDetails_validator = bv.Struct(SfAddGroupDetails) @@ -63093,7 +63091,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfAddGroupType_validator = bv.Struct(SfAddGroupType) @@ -63142,7 +63140,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfAllowNonMembersToViewSharedLinksDetails_validator = bv.Struct(SfAllowNonMembersToViewSharedLinksDetails) @@ -63164,7 +63162,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfAllowNonMembersToViewSharedLinksType_validator = bv.Struct(SfAllowNonMembersToViewSharedLinksType) @@ -63222,7 +63220,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfExternalInviteWarnDetails_validator = bv.Struct(SfExternalInviteWarnDetails) @@ -63244,7 +63242,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfExternalInviteWarnType_validator = bv.Struct(SfExternalInviteWarnType) @@ -63302,7 +63300,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfFbInviteChangeRoleDetails_validator = bv.Struct(SfFbInviteChangeRoleDetails) @@ -63324,7 +63322,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfFbInviteChangeRoleType_validator = bv.Struct(SfFbInviteChangeRoleType) @@ -63371,7 +63369,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfFbInviteDetails_validator = bv.Struct(SfFbInviteDetails) @@ -63393,7 +63391,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfFbInviteType_validator = bv.Struct(SfFbInviteType) @@ -63431,7 +63429,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfFbUninviteDetails_validator = bv.Struct(SfFbUninviteDetails) @@ -63453,7 +63451,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfFbUninviteType_validator = bv.Struct(SfFbUninviteType) @@ -63481,7 +63479,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfInviteGroupDetails_validator = bv.Struct(SfInviteGroupDetails) @@ -63503,7 +63501,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfInviteGroupType_validator = bv.Struct(SfInviteGroupType) @@ -63541,7 +63539,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamGrantAccessDetails_validator = bv.Struct(SfTeamGrantAccessDetails) @@ -63563,7 +63561,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamGrantAccessType_validator = bv.Struct(SfTeamGrantAccessType) @@ -63621,7 +63619,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamInviteChangeRoleDetails_validator = bv.Struct(SfTeamInviteChangeRoleDetails) @@ -63643,7 +63641,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamInviteChangeRoleType_validator = bv.Struct(SfTeamInviteChangeRoleType) @@ -63690,7 +63688,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamInviteDetails_validator = bv.Struct(SfTeamInviteDetails) @@ -63712,7 +63710,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamInviteType_validator = bv.Struct(SfTeamInviteType) @@ -63750,7 +63748,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamJoinDetails_validator = bv.Struct(SfTeamJoinDetails) @@ -63808,7 +63806,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamJoinFromOobLinkDetails_validator = bv.Struct(SfTeamJoinFromOobLinkDetails) @@ -63830,7 +63828,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamJoinFromOobLinkType_validator = bv.Struct(SfTeamJoinFromOobLinkType) @@ -63852,7 +63850,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamJoinType_validator = bv.Struct(SfTeamJoinType) @@ -63890,7 +63888,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamUninviteDetails_validator = bv.Struct(SfTeamUninviteDetails) @@ -63912,7 +63910,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SfTeamUninviteType_validator = bv.Struct(SfTeamUninviteType) @@ -63949,7 +63947,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddInviteesDetails_validator = bv.Struct(SharedContentAddInviteesDetails) @@ -63971,7 +63969,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddInviteesType_validator = bv.Struct(SharedContentAddInviteesType) @@ -64000,7 +63998,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddLinkExpiryDetails_validator = bv.Struct(SharedContentAddLinkExpiryDetails) @@ -64022,7 +64020,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddLinkExpiryType_validator = bv.Struct(SharedContentAddLinkExpiryType) @@ -64040,7 +64038,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddLinkPasswordDetails_validator = bv.Struct(SharedContentAddLinkPasswordDetails) @@ -64062,7 +64060,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddLinkPasswordType_validator = bv.Struct(SharedContentAddLinkPasswordType) @@ -64090,7 +64088,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddMemberDetails_validator = bv.Struct(SharedContentAddMemberDetails) @@ -64112,7 +64110,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentAddMemberType_validator = bv.Struct(SharedContentAddMemberType) @@ -64150,7 +64148,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeDownloadsPolicyDetails_validator = bv.Struct(SharedContentChangeDownloadsPolicyDetails) @@ -64172,7 +64170,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeDownloadsPolicyType_validator = bv.Struct(SharedContentChangeDownloadsPolicyType) @@ -64221,7 +64219,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeInviteeRoleDetails_validator = bv.Struct(SharedContentChangeInviteeRoleDetails) @@ -64243,7 +64241,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeInviteeRoleType_validator = bv.Struct(SharedContentChangeInviteeRoleType) @@ -64281,7 +64279,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkAudienceDetails_validator = bv.Struct(SharedContentChangeLinkAudienceDetails) @@ -64303,7 +64301,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkAudienceType_validator = bv.Struct(SharedContentChangeLinkAudienceType) @@ -64343,7 +64341,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkExpiryDetails_validator = bv.Struct(SharedContentChangeLinkExpiryDetails) @@ -64365,7 +64363,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkExpiryType_validator = bv.Struct(SharedContentChangeLinkExpiryType) @@ -64383,7 +64381,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkPasswordDetails_validator = bv.Struct(SharedContentChangeLinkPasswordDetails) @@ -64405,7 +64403,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeLinkPasswordType_validator = bv.Struct(SharedContentChangeLinkPasswordType) @@ -64443,7 +64441,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeMemberRoleDetails_validator = bv.Struct(SharedContentChangeMemberRoleDetails) @@ -64465,7 +64463,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeMemberRoleType_validator = bv.Struct(SharedContentChangeMemberRoleType) @@ -64503,7 +64501,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeViewerInfoPolicyDetails_validator = bv.Struct(SharedContentChangeViewerInfoPolicyDetails) @@ -64525,7 +64523,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentChangeViewerInfoPolicyType_validator = bv.Struct(SharedContentChangeViewerInfoPolicyType) @@ -64553,7 +64551,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentClaimInvitationDetails_validator = bv.Struct(SharedContentClaimInvitationDetails) @@ -64575,7 +64573,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentClaimInvitationType_validator = bv.Struct(SharedContentClaimInvitationType) @@ -64633,7 +64631,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentCopyDetails_validator = bv.Struct(SharedContentCopyDetails) @@ -64655,7 +64653,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentCopyType_validator = bv.Struct(SharedContentCopyType) @@ -64703,7 +64701,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentDownloadDetails_validator = bv.Struct(SharedContentDownloadDetails) @@ -64725,7 +64723,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentDownloadType_validator = bv.Struct(SharedContentDownloadType) @@ -64743,7 +64741,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRelinquishMembershipDetails_validator = bv.Struct(SharedContentRelinquishMembershipDetails) @@ -64765,7 +64763,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRelinquishMembershipType_validator = bv.Struct(SharedContentRelinquishMembershipType) @@ -64793,7 +64791,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveInviteesDetails_validator = bv.Struct(SharedContentRemoveInviteesDetails) @@ -64815,7 +64813,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveInviteesType_validator = bv.Struct(SharedContentRemoveInviteesType) @@ -64844,7 +64842,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveLinkExpiryDetails_validator = bv.Struct(SharedContentRemoveLinkExpiryDetails) @@ -64866,7 +64864,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveLinkExpiryType_validator = bv.Struct(SharedContentRemoveLinkExpiryType) @@ -64884,7 +64882,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveLinkPasswordDetails_validator = bv.Struct(SharedContentRemoveLinkPasswordDetails) @@ -64906,7 +64904,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveLinkPasswordType_validator = bv.Struct(SharedContentRemoveLinkPasswordType) @@ -64934,7 +64932,7 @@ def __init__(self, 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveMemberDetails_validator = bv.Struct(SharedContentRemoveMemberDetails) @@ -64956,7 +64954,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRemoveMemberType_validator = bv.Struct(SharedContentRemoveMemberType) @@ -64984,7 +64982,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRequestAccessDetails_validator = bv.Struct(SharedContentRequestAccessDetails) @@ -65006,7 +65004,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRequestAccessType_validator = bv.Struct(SharedContentRequestAccessType) @@ -65045,7 +65043,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRestoreInviteesDetails_validator = bv.Struct(SharedContentRestoreInviteesDetails) @@ -65067,7 +65065,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRestoreInviteesType_validator = bv.Struct(SharedContentRestoreInviteesType) @@ -65096,7 +65094,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRestoreMemberDetails_validator = bv.Struct(SharedContentRestoreMemberDetails) @@ -65118,7 +65116,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentRestoreMemberType_validator = bv.Struct(SharedContentRestoreMemberType) @@ -65136,7 +65134,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentUnshareDetails_validator = bv.Struct(SharedContentUnshareDetails) @@ -65158,7 +65156,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentUnshareType_validator = bv.Struct(SharedContentUnshareType) @@ -65206,7 +65204,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentViewDetails_validator = bv.Struct(SharedContentViewDetails) @@ -65228,7 +65226,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedContentViewType_validator = bv.Struct(SharedContentViewType) @@ -65266,7 +65264,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeLinkPolicyDetails_validator = bv.Struct(SharedFolderChangeLinkPolicyDetails) @@ -65288,7 +65286,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeLinkPolicyType_validator = bv.Struct(SharedFolderChangeLinkPolicyType) @@ -65328,7 +65326,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeMembersInheritancePolicyDetails_validator = bv.Struct(SharedFolderChangeMembersInheritancePolicyDetails) @@ -65350,7 +65348,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeMembersInheritancePolicyType_validator = bv.Struct(SharedFolderChangeMembersInheritancePolicyType) @@ -65390,7 +65388,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeMembersManagementPolicyDetails_validator = bv.Struct(SharedFolderChangeMembersManagementPolicyDetails) @@ -65412,7 +65410,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeMembersManagementPolicyType_validator = bv.Struct(SharedFolderChangeMembersManagementPolicyType) @@ -65451,7 +65449,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeMembersPolicyDetails_validator = bv.Struct(SharedFolderChangeMembersPolicyDetails) @@ -65473,7 +65471,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderChangeMembersPolicyType_validator = bv.Struct(SharedFolderChangeMembersPolicyType) @@ -65500,7 +65498,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderCreateDetails_validator = bv.Struct(SharedFolderCreateDetails) @@ -65522,7 +65520,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderCreateType_validator = bv.Struct(SharedFolderCreateType) @@ -65540,7 +65538,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderDeclineInvitationDetails_validator = bv.Struct(SharedFolderDeclineInvitationDetails) @@ -65562,7 +65560,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderDeclineInvitationType_validator = bv.Struct(SharedFolderDeclineInvitationType) @@ -65608,7 +65606,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMembersInheritancePolicy_validator = bv.Union(SharedFolderMembersInheritancePolicy) @@ -65626,7 +65624,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMountDetails_validator = bv.Struct(SharedFolderMountDetails) @@ -65648,7 +65646,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMountType_validator = bv.Struct(SharedFolderMountType) @@ -65705,7 +65703,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderNestDetails_validator = bv.Struct(SharedFolderNestDetails) @@ -65727,7 +65725,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderNestType_validator = bv.Struct(SharedFolderNestType) @@ -65765,7 +65763,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderTransferOwnershipDetails_validator = bv.Struct(SharedFolderTransferOwnershipDetails) @@ -65787,7 +65785,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderTransferOwnershipType_validator = bv.Struct(SharedFolderTransferOwnershipType) @@ -65805,7 +65803,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderUnmountDetails_validator = bv.Struct(SharedFolderUnmountDetails) @@ -65827,7 +65825,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderUnmountType_validator = bv.Struct(SharedFolderUnmountType) @@ -65883,7 +65881,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAccessLevel_validator = bv.Union(SharedLinkAccessLevel) @@ -65911,7 +65909,7 @@ def __init__(self, new_value = bb.Attribute("new_value") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkAddExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAddExpiryDetails_validator = bv.Struct(SharedLinkAddExpiryDetails) @@ -65933,7 +65931,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkAddExpiryType_validator = bv.Struct(SharedLinkAddExpiryType) @@ -65971,7 +65969,7 @@ def __init__(self, previous_value = bb.Attribute("previous_value", nullable=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SharedLinkChangeExpiryDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkChangeExpiryDetails_validator = bv.Struct(SharedLinkChangeExpiryDetails) @@ -65993,7 +65991,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkChangeExpiryType_validator = bv.Struct(SharedLinkChangeExpiryType) @@ -66031,7 +66029,7 @@ 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(SharedLinkChangeVisibilityDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkChangeVisibilityDetails_validator = bv.Struct(SharedLinkChangeVisibilityDetails) @@ -66053,7 +66051,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkChangeVisibilityType_validator = bv.Struct(SharedLinkChangeVisibilityType) @@ -66081,7 +66079,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCopyDetails_validator = bv.Struct(SharedLinkCopyDetails) @@ -66103,7 +66101,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCopyType_validator = bv.Struct(SharedLinkCopyType) @@ -66131,7 +66129,7 @@ def __init__(self, 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCreateDetails_validator = bv.Struct(SharedLinkCreateDetails) @@ -66153,7 +66151,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCreateType_validator = bv.Struct(SharedLinkCreateType) @@ -66181,7 +66179,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDisableDetails_validator = bv.Struct(SharedLinkDisableDetails) @@ -66203,7 +66201,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDisableType_validator = bv.Struct(SharedLinkDisableType) @@ -66231,7 +66229,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDownloadDetails_validator = bv.Struct(SharedLinkDownloadDetails) @@ -66253,7 +66251,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkDownloadType_validator = bv.Struct(SharedLinkDownloadType) @@ -66281,7 +66279,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkRemoveExpiryDetails_validator = bv.Struct(SharedLinkRemoveExpiryDetails) @@ -66303,7 +66301,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkRemoveExpiryType_validator = bv.Struct(SharedLinkRemoveExpiryType) @@ -66353,7 +66351,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAddExpirationDetails_validator = bv.Struct(SharedLinkSettingsAddExpirationDetails) @@ -66375,7 +66373,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAddExpirationType_validator = bv.Struct(SharedLinkSettingsAddExpirationType) @@ -66414,7 +66412,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAddPasswordDetails_validator = bv.Struct(SharedLinkSettingsAddPasswordDetails) @@ -66436,7 +66434,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAddPasswordType_validator = bv.Struct(SharedLinkSettingsAddPasswordType) @@ -66476,7 +66474,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAllowDownloadDisabledDetails_validator = bv.Struct(SharedLinkSettingsAllowDownloadDisabledDetails) @@ -66498,7 +66496,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAllowDownloadDisabledType_validator = bv.Struct(SharedLinkSettingsAllowDownloadDisabledType) @@ -66538,7 +66536,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAllowDownloadEnabledDetails_validator = bv.Struct(SharedLinkSettingsAllowDownloadEnabledDetails) @@ -66560,7 +66558,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsAllowDownloadEnabledType_validator = bv.Struct(SharedLinkSettingsAllowDownloadEnabledType) @@ -66619,7 +66617,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsChangeAudienceDetails_validator = bv.Struct(SharedLinkSettingsChangeAudienceDetails) @@ -66641,7 +66639,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsChangeAudienceType_validator = bv.Struct(SharedLinkSettingsChangeAudienceType) @@ -66703,7 +66701,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsChangeExpirationDetails_validator = bv.Struct(SharedLinkSettingsChangeExpirationDetails) @@ -66725,7 +66723,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsChangeExpirationType_validator = bv.Struct(SharedLinkSettingsChangeExpirationType) @@ -66764,7 +66762,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsChangePasswordDetails_validator = bv.Struct(SharedLinkSettingsChangePasswordDetails) @@ -66786,7 +66784,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsChangePasswordType_validator = bv.Struct(SharedLinkSettingsChangePasswordType) @@ -66837,7 +66835,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsRemoveExpirationDetails_validator = bv.Struct(SharedLinkSettingsRemoveExpirationDetails) @@ -66859,7 +66857,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsRemoveExpirationType_validator = bv.Struct(SharedLinkSettingsRemoveExpirationType) @@ -66898,7 +66896,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsRemovePasswordDetails_validator = bv.Struct(SharedLinkSettingsRemovePasswordDetails) @@ -66920,7 +66918,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkSettingsRemovePasswordType_validator = bv.Struct(SharedLinkSettingsRemovePasswordType) @@ -66958,7 +66956,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkShareDetails_validator = bv.Struct(SharedLinkShareDetails) @@ -66980,7 +66978,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkShareType_validator = bv.Struct(SharedLinkShareType) @@ -67008,7 +67006,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkViewDetails_validator = bv.Struct(SharedLinkViewDetails) @@ -67030,7 +67028,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkViewType_validator = bv.Struct(SharedLinkViewType) @@ -67096,7 +67094,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkVisibility_validator = bv.Union(SharedLinkVisibility) @@ -67114,7 +67112,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedNoteOpenedDetails_validator = bv.Struct(SharedNoteOpenedDetails) @@ -67136,7 +67134,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharedNoteOpenedType_validator = bv.Struct(SharedNoteOpenedType) @@ -67174,7 +67172,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeFolderJoinPolicyDetails_validator = bv.Struct(SharingChangeFolderJoinPolicyDetails) @@ -67196,7 +67194,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeFolderJoinPolicyType_validator = bv.Struct(SharingChangeFolderJoinPolicyType) @@ -67237,7 +67235,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkAllowChangeExpirationPolicyDetails_validator = bv.Struct(SharingChangeLinkAllowChangeExpirationPolicyDetails) @@ -67259,7 +67257,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkAllowChangeExpirationPolicyType_validator = bv.Struct(SharingChangeLinkAllowChangeExpirationPolicyType) @@ -67298,7 +67296,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkDefaultExpirationPolicyDetails_validator = bv.Struct(SharingChangeLinkDefaultExpirationPolicyDetails) @@ -67320,7 +67318,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkDefaultExpirationPolicyType_validator = bv.Struct(SharingChangeLinkDefaultExpirationPolicyType) @@ -67357,7 +67355,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkEnforcePasswordPolicyDetails_validator = bv.Struct(SharingChangeLinkEnforcePasswordPolicyDetails) @@ -67379,7 +67377,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkEnforcePasswordPolicyType_validator = bv.Struct(SharingChangeLinkEnforcePasswordPolicyType) @@ -67419,7 +67417,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkPolicyDetails_validator = bv.Struct(SharingChangeLinkPolicyDetails) @@ -67441,7 +67439,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeLinkPolicyType_validator = bv.Struct(SharingChangeLinkPolicyType) @@ -67479,7 +67477,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeMemberPolicyDetails_validator = bv.Struct(SharingChangeMemberPolicyDetails) @@ -67501,7 +67499,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SharingChangeMemberPolicyType_validator = bv.Struct(SharingChangeMemberPolicyType) @@ -67548,7 +67546,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharingFolderJoinPolicy_validator = bv.Union(SharingFolderJoinPolicy) @@ -67614,7 +67612,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharingLinkPolicy_validator = bv.Union(SharingLinkPolicy) @@ -67670,7 +67668,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharingMemberPolicy_validator = bv.Union(SharingMemberPolicy) @@ -67698,7 +67696,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShmodelDisableDownloadsDetails_validator = bv.Struct(ShmodelDisableDownloadsDetails) @@ -67720,7 +67718,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShmodelDisableDownloadsType_validator = bv.Struct(ShmodelDisableDownloadsType) @@ -67748,7 +67746,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShmodelEnableDownloadsDetails_validator = bv.Struct(ShmodelEnableDownloadsDetails) @@ -67770,7 +67768,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShmodelEnableDownloadsType_validator = bv.Struct(ShmodelEnableDownloadsType) @@ -67788,7 +67786,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShmodelGroupShareDetails_validator = bv.Struct(ShmodelGroupShareDetails) @@ -67810,7 +67808,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShmodelGroupShareType_validator = bv.Struct(ShmodelGroupShareType) @@ -67838,7 +67836,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseAccessGrantedDetails_validator = bv.Struct(ShowcaseAccessGrantedDetails) @@ -67860,7 +67858,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseAccessGrantedType_validator = bv.Struct(ShowcaseAccessGrantedType) @@ -67887,7 +67885,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseAddMemberDetails_validator = bv.Struct(ShowcaseAddMemberDetails) @@ -67909,7 +67907,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseAddMemberType_validator = bv.Struct(ShowcaseAddMemberType) @@ -67936,7 +67934,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseArchivedDetails_validator = bv.Struct(ShowcaseArchivedDetails) @@ -67958,7 +67956,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseArchivedType_validator = bv.Struct(ShowcaseArchivedType) @@ -67996,7 +67994,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeDownloadPolicyDetails_validator = bv.Struct(ShowcaseChangeDownloadPolicyDetails) @@ -68018,7 +68016,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeDownloadPolicyType_validator = bv.Struct(ShowcaseChangeDownloadPolicyType) @@ -68056,7 +68054,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeEnabledPolicyDetails_validator = bv.Struct(ShowcaseChangeEnabledPolicyDetails) @@ -68078,7 +68076,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeEnabledPolicyType_validator = bv.Struct(ShowcaseChangeEnabledPolicyType) @@ -68116,7 +68114,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeExternalSharingPolicyDetails_validator = bv.Struct(ShowcaseChangeExternalSharingPolicyDetails) @@ -68138,7 +68136,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseChangeExternalSharingPolicyType_validator = bv.Struct(ShowcaseChangeExternalSharingPolicyType) @@ -68165,7 +68163,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseCreatedDetails_validator = bv.Struct(ShowcaseCreatedDetails) @@ -68187,7 +68185,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseCreatedType_validator = bv.Struct(ShowcaseCreatedType) @@ -68224,7 +68222,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDeleteCommentDetails_validator = bv.Struct(ShowcaseDeleteCommentDetails) @@ -68246,7 +68244,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDeleteCommentType_validator = bv.Struct(ShowcaseDeleteCommentType) @@ -68283,7 +68281,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDocumentLogInfo_validator = bv.Struct(ShowcaseDocumentLogInfo) @@ -68330,7 +68328,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDownloadPolicy_validator = bv.Union(ShowcaseDownloadPolicy) @@ -68367,7 +68365,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEditCommentDetails_validator = bv.Struct(ShowcaseEditCommentDetails) @@ -68389,7 +68387,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEditCommentType_validator = bv.Struct(ShowcaseEditCommentType) @@ -68416,7 +68414,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEditedDetails_validator = bv.Struct(ShowcaseEditedDetails) @@ -68438,7 +68436,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEditedType_validator = bv.Struct(ShowcaseEditedType) @@ -68484,7 +68482,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEnabledPolicy_validator = bv.Union(ShowcaseEnabledPolicy) @@ -68530,7 +68528,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseExternalSharingPolicy_validator = bv.Union(ShowcaseExternalSharingPolicy) @@ -68557,7 +68555,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileAddedDetails_validator = bv.Struct(ShowcaseFileAddedDetails) @@ -68579,7 +68577,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileAddedType_validator = bv.Struct(ShowcaseFileAddedType) @@ -68617,7 +68615,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileDownloadDetails_validator = bv.Struct(ShowcaseFileDownloadDetails) @@ -68639,7 +68637,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileDownloadType_validator = bv.Struct(ShowcaseFileDownloadType) @@ -68667,7 +68665,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileRemovedDetails_validator = bv.Struct(ShowcaseFileRemovedDetails) @@ -68689,7 +68687,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileRemovedType_validator = bv.Struct(ShowcaseFileRemovedType) @@ -68716,7 +68714,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileViewDetails_validator = bv.Struct(ShowcaseFileViewDetails) @@ -68738,7 +68736,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseFileViewType_validator = bv.Struct(ShowcaseFileViewType) @@ -68766,7 +68764,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcasePermanentlyDeletedDetails_validator = bv.Struct(ShowcasePermanentlyDeletedDetails) @@ -68788,7 +68786,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcasePermanentlyDeletedType_validator = bv.Struct(ShowcasePermanentlyDeletedType) @@ -68825,7 +68823,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcasePostCommentDetails_validator = bv.Struct(ShowcasePostCommentDetails) @@ -68847,7 +68845,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcasePostCommentType_validator = bv.Struct(ShowcasePostCommentType) @@ -68875,7 +68873,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRemoveMemberDetails_validator = bv.Struct(ShowcaseRemoveMemberDetails) @@ -68897,7 +68895,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRemoveMemberType_validator = bv.Struct(ShowcaseRemoveMemberType) @@ -68924,7 +68922,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRenamedDetails_validator = bv.Struct(ShowcaseRenamedDetails) @@ -68946,7 +68944,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRenamedType_validator = bv.Struct(ShowcaseRenamedType) @@ -68974,7 +68972,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRequestAccessDetails_validator = bv.Struct(ShowcaseRequestAccessDetails) @@ -68996,7 +68994,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRequestAccessType_validator = bv.Struct(ShowcaseRequestAccessType) @@ -69033,7 +69031,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseResolveCommentDetails_validator = bv.Struct(ShowcaseResolveCommentDetails) @@ -69055,7 +69053,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseResolveCommentType_validator = bv.Struct(ShowcaseResolveCommentType) @@ -69082,7 +69080,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRestoredDetails_validator = bv.Struct(ShowcaseRestoredDetails) @@ -69104,7 +69102,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseRestoredType_validator = bv.Struct(ShowcaseRestoredType) @@ -69132,7 +69130,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseTrashedDeprecatedDetails_validator = bv.Struct(ShowcaseTrashedDeprecatedDetails) @@ -69154,7 +69152,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseTrashedDeprecatedType_validator = bv.Struct(ShowcaseTrashedDeprecatedType) @@ -69181,7 +69179,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseTrashedDetails_validator = bv.Struct(ShowcaseTrashedDetails) @@ -69203,7 +69201,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseTrashedType_validator = bv.Struct(ShowcaseTrashedType) @@ -69240,7 +69238,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUnresolveCommentDetails_validator = bv.Struct(ShowcaseUnresolveCommentDetails) @@ -69262,7 +69260,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUnresolveCommentType_validator = bv.Struct(ShowcaseUnresolveCommentType) @@ -69290,7 +69288,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUntrashedDeprecatedDetails_validator = bv.Struct(ShowcaseUntrashedDeprecatedDetails) @@ -69312,7 +69310,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUntrashedDeprecatedType_validator = bv.Struct(ShowcaseUntrashedDeprecatedType) @@ -69339,7 +69337,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUntrashedDetails_validator = bv.Struct(ShowcaseUntrashedDetails) @@ -69361,7 +69359,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseUntrashedType_validator = bv.Struct(ShowcaseUntrashedType) @@ -69388,7 +69386,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseViewDetails_validator = bv.Struct(ShowcaseViewDetails) @@ -69410,7 +69408,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseViewType_validator = bv.Struct(ShowcaseViewType) @@ -69428,7 +69426,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SignInAsSessionEndDetails_validator = bv.Struct(SignInAsSessionEndDetails) @@ -69450,7 +69448,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SignInAsSessionEndType_validator = bv.Struct(SignInAsSessionEndType) @@ -69468,7 +69466,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SignInAsSessionStartDetails_validator = bv.Struct(SignInAsSessionStartDetails) @@ -69490,7 +69488,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SignInAsSessionStartType_validator = bv.Struct(SignInAsSessionStartType) @@ -69528,7 +69526,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncChangePolicyDetails_validator = bv.Struct(SmartSyncChangePolicyDetails) @@ -69550,7 +69548,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncChangePolicyType_validator = bv.Struct(SmartSyncChangePolicyType) @@ -69568,7 +69566,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncCreateAdminPrivilegeReportDetails_validator = bv.Struct(SmartSyncCreateAdminPrivilegeReportDetails) @@ -69590,7 +69588,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncCreateAdminPrivilegeReportType_validator = bv.Struct(SmartSyncCreateAdminPrivilegeReportType) @@ -69628,7 +69626,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncNotOptOutDetails_validator = bv.Struct(SmartSyncNotOptOutDetails) @@ -69650,7 +69648,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncNotOptOutType_validator = bv.Struct(SmartSyncNotOptOutType) @@ -69688,7 +69686,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncOptOutDetails_validator = bv.Struct(SmartSyncOptOutDetails) @@ -69732,7 +69730,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncOptOutPolicy_validator = bv.Union(SmartSyncOptOutPolicy) @@ -69754,7 +69752,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncOptOutType_validator = bv.Struct(SmartSyncOptOutType) @@ -69792,7 +69790,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmarterSmartSyncPolicyChangedDetails_validator = bv.Struct(SmarterSmartSyncPolicyChangedDetails) @@ -69814,7 +69812,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SmarterSmartSyncPolicyChangedType_validator = bv.Struct(SmarterSmartSyncPolicyChangedType) @@ -69870,7 +69868,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SpaceCapsType_validator = bv.Union(SpaceCapsType) @@ -69924,7 +69922,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SpaceLimitsStatus_validator = bv.Union(SpaceLimitsStatus) @@ -69952,7 +69950,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoAddCertDetails_validator = bv.Struct(SsoAddCertDetails) @@ -69974,7 +69972,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoAddCertType_validator = bv.Struct(SsoAddCertType) @@ -70002,7 +70000,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoAddLoginUrlDetails_validator = bv.Struct(SsoAddLoginUrlDetails) @@ -70024,7 +70022,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoAddLoginUrlType_validator = bv.Struct(SsoAddLoginUrlType) @@ -70052,7 +70050,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoAddLogoutUrlDetails_validator = bv.Struct(SsoAddLogoutUrlDetails) @@ -70074,7 +70072,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoAddLogoutUrlType_validator = bv.Struct(SsoAddLogoutUrlType) @@ -70112,7 +70110,7 @@ def __init__(self, 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangeCertDetails_validator = bv.Struct(SsoChangeCertDetails) @@ -70134,7 +70132,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangeCertType_validator = bv.Struct(SsoChangeCertType) @@ -70172,7 +70170,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangeLoginUrlDetails_validator = bv.Struct(SsoChangeLoginUrlDetails) @@ -70194,7 +70192,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangeLoginUrlType_validator = bv.Struct(SsoChangeLoginUrlType) @@ -70232,7 +70230,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangeLogoutUrlDetails_validator = bv.Struct(SsoChangeLogoutUrlDetails) @@ -70254,7 +70252,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangeLogoutUrlType_validator = bv.Struct(SsoChangeLogoutUrlType) @@ -70291,7 +70289,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangePolicyDetails_validator = bv.Struct(SsoChangePolicyDetails) @@ -70313,7 +70311,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangePolicyType_validator = bv.Struct(SsoChangePolicyType) @@ -70351,7 +70349,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangeSamlIdentityModeDetails_validator = bv.Struct(SsoChangeSamlIdentityModeDetails) @@ -70373,7 +70371,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoChangeSamlIdentityModeType_validator = bv.Struct(SsoChangeSamlIdentityModeType) @@ -70400,7 +70398,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoErrorDetails_validator = bv.Struct(SsoErrorDetails) @@ -70422,7 +70420,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoErrorType_validator = bv.Struct(SsoErrorType) @@ -70440,7 +70438,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveCertDetails_validator = bv.Struct(SsoRemoveCertDetails) @@ -70462,7 +70460,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveCertType_validator = bv.Struct(SsoRemoveCertType) @@ -70490,7 +70488,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveLoginUrlDetails_validator = bv.Struct(SsoRemoveLoginUrlDetails) @@ -70512,7 +70510,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveLoginUrlType_validator = bv.Struct(SsoRemoveLoginUrlType) @@ -70540,7 +70538,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveLogoutUrlDetails_validator = bv.Struct(SsoRemoveLogoutUrlDetails) @@ -70562,7 +70560,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SsoRemoveLogoutUrlType_validator = bv.Struct(SsoRemoveLogoutUrlType) @@ -70591,7 +70589,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) StartedEnterpriseAdminSessionDetails_validator = bv.Struct(StartedEnterpriseAdminSessionDetails) @@ -70613,7 +70611,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) StartedEnterpriseAdminSessionType_validator = bv.Struct(StartedEnterpriseAdminSessionType) @@ -70650,7 +70648,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamActivityCreateReportDetails_validator = bv.Struct(TeamActivityCreateReportDetails) @@ -70678,7 +70676,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamActivityCreateReportFailDetails_validator = bv.Struct(TeamActivityCreateReportFailDetails) @@ -70700,7 +70698,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamActivityCreateReportFailType_validator = bv.Struct(TeamActivityCreateReportFailType) @@ -70722,7 +70720,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamActivityCreateReportType_validator = bv.Struct(TeamActivityCreateReportType) @@ -70768,7 +70766,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamBrandingPolicy_validator = bv.Union(TeamBrandingPolicy) @@ -70806,7 +70804,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamBrandingPolicyChangedDetails_validator = bv.Struct(TeamBrandingPolicyChangedDetails) @@ -70828,7 +70826,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamBrandingPolicyChangedType_validator = bv.Struct(TeamBrandingPolicyChangedType) @@ -70855,7 +70853,7 @@ def __init__(self, team = bb.Attribute("team") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamDetails, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) TeamDetails_validator = bv.Struct(TeamDetails) @@ -70873,7 +70871,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyCancelKeyDeletionDetails_validator = bv.Struct(TeamEncryptionKeyCancelKeyDeletionDetails) @@ -70895,7 +70893,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyCancelKeyDeletionType_validator = bv.Struct(TeamEncryptionKeyCancelKeyDeletionType) @@ -70913,7 +70911,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyCreateKeyDetails_validator = bv.Struct(TeamEncryptionKeyCreateKeyDetails) @@ -70935,7 +70933,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyCreateKeyType_validator = bv.Struct(TeamEncryptionKeyCreateKeyType) @@ -70953,7 +70951,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDeleteKeyDetails_validator = bv.Struct(TeamEncryptionKeyDeleteKeyDetails) @@ -70975,7 +70973,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDeleteKeyType_validator = bv.Struct(TeamEncryptionKeyDeleteKeyType) @@ -70993,7 +70991,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDisableKeyDetails_validator = bv.Struct(TeamEncryptionKeyDisableKeyDetails) @@ -71015,7 +71013,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyDisableKeyType_validator = bv.Struct(TeamEncryptionKeyDisableKeyType) @@ -71033,7 +71031,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyEnableKeyDetails_validator = bv.Struct(TeamEncryptionKeyEnableKeyDetails) @@ -71055,7 +71053,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyEnableKeyType_validator = bv.Struct(TeamEncryptionKeyEnableKeyType) @@ -71073,7 +71071,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyRotateKeyDetails_validator = bv.Struct(TeamEncryptionKeyRotateKeyDetails) @@ -71095,7 +71093,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyRotateKeyType_validator = bv.Struct(TeamEncryptionKeyRotateKeyType) @@ -71113,7 +71111,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyScheduleKeyDeletionDetails_validator = bv.Struct(TeamEncryptionKeyScheduleKeyDeletionDetails) @@ -71135,7 +71133,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamEncryptionKeyScheduleKeyDeletionType_validator = bv.Struct(TeamEncryptionKeyScheduleKeyDeletionType) @@ -71259,7 +71257,7 @@ def __init__(self, details = bb.Attribute("details", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamEvent, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) TeamEvent_validator = bv.Struct(TeamEvent) @@ -71305,7 +71303,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamExtensionsPolicy_validator = bv.Union(TeamExtensionsPolicy) @@ -71343,7 +71341,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamExtensionsPolicyChangedDetails_validator = bv.Struct(TeamExtensionsPolicyChangedDetails) @@ -71365,7 +71363,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamExtensionsPolicyChangedType_validator = bv.Struct(TeamExtensionsPolicyChangedType) @@ -71403,7 +71401,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderChangeStatusDetails_validator = bv.Struct(TeamFolderChangeStatusDetails) @@ -71425,7 +71423,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderChangeStatusType_validator = bv.Struct(TeamFolderChangeStatusType) @@ -71443,7 +71441,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderCreateDetails_validator = bv.Struct(TeamFolderCreateDetails) @@ -71465,7 +71463,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderCreateType_validator = bv.Struct(TeamFolderCreateType) @@ -71493,7 +71491,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderDowngradeDetails_validator = bv.Struct(TeamFolderDowngradeDetails) @@ -71515,7 +71513,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderDowngradeType_validator = bv.Struct(TeamFolderDowngradeType) @@ -71533,7 +71531,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderPermanentlyDeleteDetails_validator = bv.Struct(TeamFolderPermanentlyDeleteDetails) @@ -71555,7 +71553,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderPermanentlyDeleteType_validator = bv.Struct(TeamFolderPermanentlyDeleteType) @@ -71592,7 +71590,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderRenameDetails_validator = bv.Struct(TeamFolderRenameDetails) @@ -71614,7 +71612,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamFolderRenameType_validator = bv.Struct(TeamFolderRenameType) @@ -71652,7 +71650,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamInviteDetails_validator = bv.Struct(TeamInviteDetails) @@ -71669,11 +71667,11 @@ class TeamLinkedAppLogInfo(AppLogInfo): def __init__(self, app_id=None, display_name=None): - super(TeamLinkedAppLogInfo, self).__init__(app_id, + super().__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()._process_custom_annotations(annotation_type, field_path, processor) TeamLinkedAppLogInfo_validator = bv.Struct(TeamLinkedAppLogInfo) @@ -71700,7 +71698,7 @@ def __init__(self, display_name = bb.Attribute("display_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamLogInfo, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) TeamLogInfo_validator = bv.Struct(TeamLogInfo) @@ -71730,7 +71728,7 @@ def __init__(self, team_member_id=None, member_external_id=None, team=None): - super(TeamMemberLogInfo, self).__init__(account_id, + super().__init__(account_id, display_name, email) self._team_member_id_value = bb.NOT_SET @@ -71753,7 +71751,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMemberLogInfo_validator = bv.Struct(TeamMemberLogInfo) @@ -71807,7 +71805,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMembershipType_validator = bv.Union(TeamMembershipType) @@ -71835,7 +71833,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeFromDetails_validator = bv.Struct(TeamMergeFromDetails) @@ -71857,7 +71855,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeFromType_validator = bv.Struct(TeamMergeFromType) @@ -71885,7 +71883,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedDetails_validator = bv.Struct(TeamMergeRequestAcceptedDetails) @@ -71980,7 +71978,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedExtraDetails_validator = bv.Union(TeamMergeRequestAcceptedExtraDetails) @@ -72019,7 +72017,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestAcceptedShownToPrimaryTeamDetails) @@ -72041,7 +72039,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestAcceptedShownToPrimaryTeamType) @@ -72080,7 +72078,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestAcceptedShownToSecondaryTeamDetails) @@ -72102,7 +72100,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestAcceptedShownToSecondaryTeamType) @@ -72124,7 +72122,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAcceptedType_validator = bv.Struct(TeamMergeRequestAcceptedType) @@ -72152,7 +72150,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAutoCanceledDetails_validator = bv.Struct(TeamMergeRequestAutoCanceledDetails) @@ -72174,7 +72172,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestAutoCanceledType_validator = bv.Struct(TeamMergeRequestAutoCanceledType) @@ -72202,7 +72200,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledDetails_validator = bv.Struct(TeamMergeRequestCanceledDetails) @@ -72297,7 +72295,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledExtraDetails_validator = bv.Union(TeamMergeRequestCanceledExtraDetails) @@ -72336,7 +72334,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestCanceledShownToPrimaryTeamDetails) @@ -72358,7 +72356,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestCanceledShownToPrimaryTeamType) @@ -72396,7 +72394,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestCanceledShownToSecondaryTeamDetails) @@ -72418,7 +72416,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestCanceledShownToSecondaryTeamType) @@ -72440,7 +72438,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestCanceledType_validator = bv.Struct(TeamMergeRequestCanceledType) @@ -72468,7 +72466,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredDetails_validator = bv.Struct(TeamMergeRequestExpiredDetails) @@ -72563,7 +72561,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredExtraDetails_validator = bv.Union(TeamMergeRequestExpiredExtraDetails) @@ -72602,7 +72600,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestExpiredShownToPrimaryTeamDetails) @@ -72624,7 +72622,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestExpiredShownToPrimaryTeamType) @@ -72652,7 +72650,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestExpiredShownToSecondaryTeamDetails) @@ -72674,7 +72672,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestExpiredShownToSecondaryTeamType) @@ -72696,7 +72694,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestExpiredType_validator = bv.Struct(TeamMergeRequestExpiredType) @@ -72735,7 +72733,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestRejectedShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestRejectedShownToPrimaryTeamDetails) @@ -72757,7 +72755,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestRejectedShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestRejectedShownToPrimaryTeamType) @@ -72785,7 +72783,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestRejectedShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestRejectedShownToSecondaryTeamDetails) @@ -72807,7 +72805,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestRejectedShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestRejectedShownToSecondaryTeamType) @@ -72835,7 +72833,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderDetails_validator = bv.Struct(TeamMergeRequestReminderDetails) @@ -72930,7 +72928,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderExtraDetails_validator = bv.Union(TeamMergeRequestReminderExtraDetails) @@ -72969,7 +72967,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestReminderShownToPrimaryTeamDetails) @@ -72991,7 +72989,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestReminderShownToPrimaryTeamType) @@ -73019,7 +73017,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestReminderShownToSecondaryTeamDetails) @@ -73041,7 +73039,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestReminderShownToSecondaryTeamType) @@ -73063,7 +73061,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestReminderType_validator = bv.Struct(TeamMergeRequestReminderType) @@ -73091,7 +73089,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestRevokedDetails_validator = bv.Struct(TeamMergeRequestRevokedDetails) @@ -73113,7 +73111,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestRevokedType_validator = bv.Struct(TeamMergeRequestRevokedType) @@ -73151,7 +73149,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestSentShownToPrimaryTeamDetails_validator = bv.Struct(TeamMergeRequestSentShownToPrimaryTeamDetails) @@ -73173,7 +73171,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestSentShownToPrimaryTeamType_validator = bv.Struct(TeamMergeRequestSentShownToPrimaryTeamType) @@ -73201,7 +73199,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestSentShownToSecondaryTeamDetails_validator = bv.Struct(TeamMergeRequestSentShownToSecondaryTeamDetails) @@ -73223,7 +73221,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeRequestSentShownToSecondaryTeamType_validator = bv.Struct(TeamMergeRequestSentShownToSecondaryTeamType) @@ -73251,7 +73249,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeToDetails_validator = bv.Struct(TeamMergeToDetails) @@ -73273,7 +73271,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamMergeToType_validator = bv.Struct(TeamMergeToType) @@ -73309,7 +73307,7 @@ def __init__(self, team_legal_name = bb.Attribute("team_legal_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(TeamName, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) TeamName_validator = bv.Struct(TeamName) @@ -73327,7 +73325,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileAddBackgroundDetails_validator = bv.Struct(TeamProfileAddBackgroundDetails) @@ -73349,7 +73347,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileAddBackgroundType_validator = bv.Struct(TeamProfileAddBackgroundType) @@ -73367,7 +73365,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileAddLogoDetails_validator = bv.Struct(TeamProfileAddLogoDetails) @@ -73389,7 +73387,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileAddLogoType_validator = bv.Struct(TeamProfileAddLogoType) @@ -73407,7 +73405,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeBackgroundDetails_validator = bv.Struct(TeamProfileChangeBackgroundDetails) @@ -73429,7 +73427,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeBackgroundType_validator = bv.Struct(TeamProfileChangeBackgroundType) @@ -73467,7 +73465,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeDefaultLanguageDetails_validator = bv.Struct(TeamProfileChangeDefaultLanguageDetails) @@ -73489,7 +73487,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeDefaultLanguageType_validator = bv.Struct(TeamProfileChangeDefaultLanguageType) @@ -73507,7 +73505,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeLogoDetails_validator = bv.Struct(TeamProfileChangeLogoDetails) @@ -73529,7 +73527,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeLogoType_validator = bv.Struct(TeamProfileChangeLogoType) @@ -73566,7 +73564,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeNameDetails_validator = bv.Struct(TeamProfileChangeNameDetails) @@ -73588,7 +73586,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileChangeNameType_validator = bv.Struct(TeamProfileChangeNameType) @@ -73606,7 +73604,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileRemoveBackgroundDetails_validator = bv.Struct(TeamProfileRemoveBackgroundDetails) @@ -73628,7 +73626,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileRemoveBackgroundType_validator = bv.Struct(TeamProfileRemoveBackgroundType) @@ -73646,7 +73644,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileRemoveLogoDetails_validator = bv.Struct(TeamProfileRemoveLogoDetails) @@ -73668,7 +73666,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamProfileRemoveLogoType_validator = bv.Struct(TeamProfileRemoveLogoType) @@ -73714,7 +73712,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TeamSelectiveSyncPolicy_validator = bv.Union(TeamSelectiveSyncPolicy) @@ -73752,7 +73750,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamSelectiveSyncPolicyChangedDetails_validator = bv.Struct(TeamSelectiveSyncPolicyChangedDetails) @@ -73774,7 +73772,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamSelectiveSyncPolicyChangedType_validator = bv.Struct(TeamSelectiveSyncPolicyChangedType) @@ -73811,7 +73809,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamSelectiveSyncSettingsChangedDetails_validator = bv.Struct(TeamSelectiveSyncSettingsChangedDetails) @@ -73833,7 +73831,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamSelectiveSyncSettingsChangedType_validator = bv.Struct(TeamSelectiveSyncSettingsChangedType) @@ -73873,7 +73871,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamSharingWhitelistSubjectsChangedDetails_validator = bv.Struct(TeamSharingWhitelistSubjectsChangedDetails) @@ -73895,7 +73893,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TeamSharingWhitelistSubjectsChangedType_validator = bv.Struct(TeamSharingWhitelistSubjectsChangedType) @@ -73913,7 +73911,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaAddBackupPhoneDetails_validator = bv.Struct(TfaAddBackupPhoneDetails) @@ -73935,7 +73933,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaAddBackupPhoneType_validator = bv.Struct(TfaAddBackupPhoneType) @@ -73953,7 +73951,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaAddExceptionDetails_validator = bv.Struct(TfaAddExceptionDetails) @@ -73975,7 +73973,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaAddExceptionType_validator = bv.Struct(TfaAddExceptionType) @@ -73993,7 +73991,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaAddSecurityKeyDetails_validator = bv.Struct(TfaAddSecurityKeyDetails) @@ -74015,7 +74013,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaAddSecurityKeyType_validator = bv.Struct(TfaAddSecurityKeyType) @@ -74033,7 +74031,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaChangeBackupPhoneDetails_validator = bv.Struct(TfaChangeBackupPhoneDetails) @@ -74055,7 +74053,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaChangeBackupPhoneType_validator = bv.Struct(TfaChangeBackupPhoneType) @@ -74092,7 +74090,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaChangePolicyDetails_validator = bv.Struct(TfaChangePolicyDetails) @@ -74114,7 +74112,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaChangePolicyType_validator = bv.Struct(TfaChangePolicyType) @@ -74164,7 +74162,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaChangeStatusDetails_validator = bv.Struct(TfaChangeStatusDetails) @@ -74186,7 +74184,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaChangeStatusType_validator = bv.Struct(TfaChangeStatusType) @@ -74253,7 +74251,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TfaConfiguration_validator = bv.Union(TfaConfiguration) @@ -74271,7 +74269,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveBackupPhoneDetails_validator = bv.Struct(TfaRemoveBackupPhoneDetails) @@ -74293,7 +74291,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveBackupPhoneType_validator = bv.Struct(TfaRemoveBackupPhoneType) @@ -74311,7 +74309,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveExceptionDetails_validator = bv.Struct(TfaRemoveExceptionDetails) @@ -74333,7 +74331,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveExceptionType_validator = bv.Struct(TfaRemoveExceptionType) @@ -74351,7 +74349,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveSecurityKeyDetails_validator = bv.Struct(TfaRemoveSecurityKeyDetails) @@ -74373,7 +74371,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaRemoveSecurityKeyType_validator = bv.Struct(TfaRemoveSecurityKeyType) @@ -74391,7 +74389,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaResetDetails_validator = bv.Struct(TfaResetDetails) @@ -74413,7 +74411,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TfaResetType_validator = bv.Struct(TfaResetType) @@ -74517,7 +74515,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) TimeUnit_validator = bv.Union(TimeUnit) @@ -74544,7 +74542,7 @@ def __init__(self, display_name=None, email=None, team=None): - super(TrustedNonTeamMemberLogInfo, self).__init__(account_id, + super().__init__(account_id, display_name, email) self._trusted_non_team_member_type_value = bb.NOT_SET @@ -74561,7 +74559,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TrustedNonTeamMemberLogInfo_validator = bv.Struct(TrustedNonTeamMemberLogInfo) @@ -74605,7 +74603,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TrustedNonTeamMemberType_validator = bv.Union(TrustedNonTeamMemberType) @@ -74679,7 +74677,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TrustedTeamsRequestAction_validator = bv.Union(TrustedTeamsRequestAction) @@ -74733,7 +74731,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TrustedTeamsRequestState_validator = bv.Union(TrustedTeamsRequestState) @@ -74772,7 +74770,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TwoAccountChangePolicyDetails_validator = bv.Struct(TwoAccountChangePolicyDetails) @@ -74794,7 +74792,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) TwoAccountChangePolicyType_validator = bv.Struct(TwoAccountChangePolicyType) @@ -74840,7 +74838,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TwoAccountPolicy_validator = bv.Union(TwoAccountPolicy) @@ -74858,7 +74856,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UndoNamingConventionDetails_validator = bv.Struct(UndoNamingConventionDetails) @@ -74880,7 +74878,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UndoNamingConventionType_validator = bv.Struct(UndoNamingConventionType) @@ -74898,7 +74896,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UndoOrganizeFolderWithTidyDetails_validator = bv.Struct(UndoOrganizeFolderWithTidyDetails) @@ -74920,7 +74918,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UndoOrganizeFolderWithTidyType_validator = bv.Struct(UndoOrganizeFolderWithTidyType) @@ -74937,11 +74935,11 @@ class UserLinkedAppLogInfo(AppLogInfo): def __init__(self, app_id=None, display_name=None): - super(UserLinkedAppLogInfo, self).__init__(app_id, + super().__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()._process_custom_annotations(annotation_type, field_path, processor) UserLinkedAppLogInfo_validator = bv.Struct(UserLinkedAppLogInfo) @@ -74987,7 +74985,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserNameLogInfo_validator = bv.Struct(UserNameLogInfo) @@ -75005,11 +75003,11 @@ class UserOrTeamLinkedAppLogInfo(AppLogInfo): def __init__(self, app_id=None, display_name=None): - super(UserOrTeamLinkedAppLogInfo, self).__init__(app_id, + super().__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()._process_custom_annotations(annotation_type, field_path, processor) UserOrTeamLinkedAppLogInfo_validator = bv.Struct(UserOrTeamLinkedAppLogInfo) @@ -75036,7 +75034,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserTagsAddedDetails_validator = bv.Struct(UserTagsAddedDetails) @@ -75058,7 +75056,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserTagsAddedType_validator = bv.Struct(UserTagsAddedType) @@ -75085,7 +75083,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserTagsRemovedDetails_validator = bv.Struct(UserTagsRemovedDetails) @@ -75107,7 +75105,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserTagsRemovedType_validator = bv.Struct(UserTagsRemovedType) @@ -75145,7 +75143,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ViewerInfoPolicyChangedDetails_validator = bv.Struct(ViewerInfoPolicyChangedDetails) @@ -75167,7 +75165,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) ViewerInfoPolicyChangedType_validator = bv.Struct(ViewerInfoPolicyChangedType) @@ -75213,7 +75211,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) WatermarkingPolicy_validator = bv.Union(WatermarkingPolicy) @@ -75251,7 +75249,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WatermarkingPolicyChangedDetails_validator = bv.Struct(WatermarkingPolicyChangedDetails) @@ -75273,7 +75271,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WatermarkingPolicyChangedType_validator = bv.Struct(WatermarkingPolicyChangedType) @@ -75307,7 +75305,7 @@ def __init__(self, created=None, updated=None, session_info=None): - super(WebDeviceSessionLogInfo, self).__init__(ip_address, + super().__init__(ip_address, created, updated) self._session_info_value = bb.NOT_SET @@ -75336,7 +75334,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WebDeviceSessionLogInfo_validator = bv.Struct(WebDeviceSessionLogInfo) @@ -75352,10 +75350,10 @@ class WebSessionLogInfo(SessionLogInfo): def __init__(self, session_id=None): - super(WebSessionLogInfo, self).__init__(session_id) + super().__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()._process_custom_annotations(annotation_type, field_path, processor) WebSessionLogInfo_validator = bv.Struct(WebSessionLogInfo) @@ -75393,7 +75391,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WebSessionsChangeActiveSessionLimitDetails_validator = bv.Struct(WebSessionsChangeActiveSessionLimitDetails) @@ -75415,7 +75413,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WebSessionsChangeActiveSessionLimitType_validator = bv.Struct(WebSessionsChangeActiveSessionLimitType) @@ -75454,7 +75452,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WebSessionsChangeFixedLengthPolicyDetails_validator = bv.Struct(WebSessionsChangeFixedLengthPolicyDetails) @@ -75476,7 +75474,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WebSessionsChangeFixedLengthPolicyType_validator = bv.Struct(WebSessionsChangeFixedLengthPolicyType) @@ -75515,7 +75513,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WebSessionsChangeIdleLengthPolicyDetails_validator = bv.Struct(WebSessionsChangeIdleLengthPolicyDetails) @@ -75537,7 +75535,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WebSessionsChangeIdleLengthPolicyType_validator = bv.Struct(WebSessionsChangeIdleLengthPolicyType) @@ -75609,7 +75607,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WebSessionsFixedLengthPolicy_validator = bv.Union(WebSessionsFixedLengthPolicy) @@ -75681,7 +75679,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) WebSessionsIdleLengthPolicy_validator = bv.Union(WebSessionsIdleLengthPolicy) @@ -75726,55 +75724,55 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccountCaptureChangeAvailabilityDetails.new_value.validator = AccountCaptureAvailability_validator AccountCaptureChangeAvailabilityDetails.previous_value.validator = bv.Nullable(AccountCaptureAvailability_validator) -AccountCaptureChangeAvailabilityDetails._all_field_names_ = set([ +AccountCaptureChangeAvailabilityDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} AccountCaptureChangeAvailabilityDetails._all_fields_ = [ ('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_field_names_ = {'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([ +AccountCaptureChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} AccountCaptureChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} AccountCaptureChangePolicyType._all_fields_ = [('description', AccountCaptureChangePolicyType.description.validator)] AccountCaptureMigrateAccountDetails.domain_name.validator = bv.String() -AccountCaptureMigrateAccountDetails._all_field_names_ = set(['domain_name']) +AccountCaptureMigrateAccountDetails._all_field_names_ = {'domain_name'} AccountCaptureMigrateAccountDetails._all_fields_ = [('domain_name', AccountCaptureMigrateAccountDetails.domain_name.validator)] AccountCaptureMigrateAccountType.description.validator = bv.String() -AccountCaptureMigrateAccountType._all_field_names_ = set(['description']) +AccountCaptureMigrateAccountType._all_field_names_ = {'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([ +AccountCaptureNotificationEmailsSentDetails._all_field_names_ = { 'domain_name', 'notification_type', -]) +} AccountCaptureNotificationEmailsSentDetails._all_fields_ = [ ('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_field_names_ = {'description'} AccountCaptureNotificationEmailsSentType._all_fields_ = [('description', AccountCaptureNotificationEmailsSentType.description.validator)] AccountCaptureNotificationType._actionable_notification_validator = bv.Void() @@ -75810,26 +75808,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AccountCapturePolicy.other = AccountCapturePolicy('other') AccountCaptureRelinquishAccountDetails.domain_name.validator = bv.String() -AccountCaptureRelinquishAccountDetails._all_field_names_ = set(['domain_name']) +AccountCaptureRelinquishAccountDetails._all_field_names_ = {'domain_name'} AccountCaptureRelinquishAccountDetails._all_fields_ = [('domain_name', AccountCaptureRelinquishAccountDetails.domain_name.validator)] AccountCaptureRelinquishAccountType.description.validator = bv.String() -AccountCaptureRelinquishAccountType._all_field_names_ = set(['description']) +AccountCaptureRelinquishAccountType._all_field_names_ = {'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([ +AccountLockOrUnlockedDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} AccountLockOrUnlockedDetails._all_fields_ = [ ('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_field_names_ = {'description'} AccountLockOrUnlockedType._all_fields_ = [('description', AccountLockOrUnlockedType.description.validator)] AccountState._locked_validator = bv.Void() @@ -75956,13 +75954,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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._all_field_names_ = set([ +AdminAlertingAlertConfiguration._all_field_names_ = { 'alert_state', 'sensitivity_level', 'recipients_settings', 'text', 'excluded_file_extensions', -]) +} AdminAlertingAlertConfiguration._all_fields_ = [ ('alert_state', AdminAlertingAlertConfiguration.alert_state.validator), ('sensitivity_level', AdminAlertingAlertConfiguration.sensitivity_level.validator), @@ -76002,14 +76000,14 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminAlertingAlertStateChangedDetails.alert_instance_id.validator = bv.String() AdminAlertingAlertStateChangedDetails.previous_value.validator = AdminAlertGeneralStateEnum_validator AdminAlertingAlertStateChangedDetails.new_value.validator = AdminAlertGeneralStateEnum_validator -AdminAlertingAlertStateChangedDetails._all_field_names_ = set([ +AdminAlertingAlertStateChangedDetails._all_field_names_ = { '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), @@ -76020,7 +76018,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] AdminAlertingAlertStateChangedType.description.validator = bv.String() -AdminAlertingAlertStateChangedType._all_field_names_ = set(['description']) +AdminAlertingAlertStateChangedType._all_field_names_ = {'description'} AdminAlertingAlertStateChangedType._all_fields_ = [('description', AdminAlertingAlertStateChangedType.description.validator)] AdminAlertingAlertStatePolicy._off_validator = bv.Void() @@ -76039,11 +76037,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +AdminAlertingChangedAlertConfigDetails._all_field_names_ = { '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), @@ -76051,19 +76049,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] AdminAlertingChangedAlertConfigType.description.validator = bv.String() -AdminAlertingChangedAlertConfigType._all_field_names_ = set(['description']) +AdminAlertingChangedAlertConfigType._all_field_names_ = {'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([ +AdminAlertingTriggeredAlertDetails._all_field_names_ = { 'alert_name', 'alert_severity', 'alert_category', 'alert_instance_id', -]) +} AdminAlertingTriggeredAlertDetails._all_fields_ = [ ('alert_name', AdminAlertingTriggeredAlertDetails.alert_name.validator), ('alert_severity', AdminAlertingTriggeredAlertDetails.alert_severity.validator), @@ -76072,7 +76070,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] AdminAlertingTriggeredAlertType.description.validator = bv.String() -AdminAlertingTriggeredAlertType._all_field_names_ = set(['description']) +AdminAlertingTriggeredAlertType._all_field_names_ = {'description'} AdminAlertingTriggeredAlertType._all_fields_ = [('description', AdminAlertingTriggeredAlertType.description.validator)] AdminConsoleAppPermission._default_for_listed_apps_validator = bv.Void() @@ -76106,17 +76104,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AdminEmailRemindersChangedDetails.new_value.validator = AdminEmailRemindersPolicy_validator AdminEmailRemindersChangedDetails.previous_value.validator = AdminEmailRemindersPolicy_validator -AdminEmailRemindersChangedDetails._all_field_names_ = set([ +AdminEmailRemindersChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} AdminEmailRemindersChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} AdminEmailRemindersChangedType._all_fields_ = [('description', AdminEmailRemindersChangedType.description.validator)] AdminEmailRemindersPolicy._default_validator = bv.Void() @@ -76191,54 +76189,54 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AlertRecipientsSettingType.team_admins = AlertRecipientsSettingType('team_admins') AlertRecipientsSettingType.other = AlertRecipientsSettingType('other') -AllowDownloadDisabledDetails._all_field_names_ = set([]) +AllowDownloadDisabledDetails._all_field_names_ = set() AllowDownloadDisabledDetails._all_fields_ = [] AllowDownloadDisabledType.description.validator = bv.String() -AllowDownloadDisabledType._all_field_names_ = set(['description']) +AllowDownloadDisabledType._all_field_names_ = {'description'} AllowDownloadDisabledType._all_fields_ = [('description', AllowDownloadDisabledType.description.validator)] -AllowDownloadEnabledDetails._all_field_names_ = set([]) +AllowDownloadEnabledDetails._all_field_names_ = set() AllowDownloadEnabledDetails._all_fields_ = [] AllowDownloadEnabledType.description.validator = bv.String() -AllowDownloadEnabledType._all_field_names_ = set(['description']) +AllowDownloadEnabledType._all_field_names_ = {'description'} AllowDownloadEnabledType._all_fields_ = [('description', AllowDownloadEnabledType.description.validator)] ApiSessionLogInfo.request_id.validator = RequestId_validator -ApiSessionLogInfo._all_field_names_ = set(['request_id']) +ApiSessionLogInfo._all_field_names_ = {'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_field_names_ = {'app_info'} AppBlockedByPermissionsDetails._all_fields_ = [('app_info', AppBlockedByPermissionsDetails.app_info.validator)] AppBlockedByPermissionsType.description.validator = bv.String() -AppBlockedByPermissionsType._all_field_names_ = set(['description']) +AppBlockedByPermissionsType._all_field_names_ = {'description'} AppBlockedByPermissionsType._all_fields_ = [('description', AppBlockedByPermissionsType.description.validator)] AppLinkTeamDetails.app_info.validator = AppLogInfo_validator -AppLinkTeamDetails._all_field_names_ = set(['app_info']) +AppLinkTeamDetails._all_field_names_ = {'app_info'} AppLinkTeamDetails._all_fields_ = [('app_info', AppLinkTeamDetails.app_info.validator)] AppLinkTeamType.description.validator = bv.String() -AppLinkTeamType._all_field_names_ = set(['description']) +AppLinkTeamType._all_field_names_ = {'description'} AppLinkTeamType._all_fields_ = [('description', AppLinkTeamType.description.validator)] AppLinkUserDetails.app_info.validator = AppLogInfo_validator -AppLinkUserDetails._all_field_names_ = set(['app_info']) +AppLinkUserDetails._all_field_names_ = {'app_info'} AppLinkUserDetails._all_fields_ = [('app_info', AppLinkUserDetails.app_info.validator)] AppLinkUserType.description.validator = bv.String() -AppLinkUserType._all_field_names_ = set(['description']) +AppLinkUserType._all_field_names_ = {'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([ +AppLogInfo._field_names_ = { 'app_id', 'display_name', -]) +} AppLogInfo._all_field_names_ = AppLogInfo._field_names_ AppLogInfo._fields_ = [ ('app_id', AppLogInfo.app_id.validator), @@ -76262,12 +76260,12 @@ 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([ +AppPermissionsChangedDetails._all_field_names_ = { 'app_name', 'permission', 'previous_value', 'new_value', -]) +} AppPermissionsChangedDetails._all_fields_ = [ ('app_name', AppPermissionsChangedDetails.app_name.validator), ('permission', AppPermissionsChangedDetails.permission.validator), @@ -76276,30 +76274,30 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] AppPermissionsChangedType.description.validator = bv.String() -AppPermissionsChangedType._all_field_names_ = set(['description']) +AppPermissionsChangedType._all_field_names_ = {'description'} AppPermissionsChangedType._all_fields_ = [('description', AppPermissionsChangedType.description.validator)] AppUnlinkTeamDetails.app_info.validator = AppLogInfo_validator -AppUnlinkTeamDetails._all_field_names_ = set(['app_info']) +AppUnlinkTeamDetails._all_field_names_ = {'app_info'} AppUnlinkTeamDetails._all_fields_ = [('app_info', AppUnlinkTeamDetails.app_info.validator)] AppUnlinkTeamType.description.validator = bv.String() -AppUnlinkTeamType._all_field_names_ = set(['description']) +AppUnlinkTeamType._all_field_names_ = {'description'} AppUnlinkTeamType._all_fields_ = [('description', AppUnlinkTeamType.description.validator)] AppUnlinkUserDetails.app_info.validator = AppLogInfo_validator -AppUnlinkUserDetails._all_field_names_ = set(['app_info']) +AppUnlinkUserDetails._all_field_names_ = {'app_info'} AppUnlinkUserDetails._all_fields_ = [('app_info', AppUnlinkUserDetails.app_info.validator)] AppUnlinkUserType.description.validator = bv.String() -AppUnlinkUserType._all_field_names_ = set(['description']) +AppUnlinkUserType._all_field_names_ = {'description'} AppUnlinkUserType._all_fields_ = [('description', AppUnlinkUserType.description.validator)] -ApplyNamingConventionDetails._all_field_names_ = set([]) +ApplyNamingConventionDetails._all_field_names_ = set() ApplyNamingConventionDetails._all_fields_ = [] ApplyNamingConventionType.description.validator = bv.String() -ApplyNamingConventionType._all_field_names_ = set(['description']) +ApplyNamingConventionType._all_field_names_ = {'description'} ApplyNamingConventionType._all_fields_ = [('description', ApplyNamingConventionType.description.validator)] AssetLogInfo._file_validator = FileLogInfo_validator @@ -76319,18 +76317,18 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): AssetLogInfo.other = AssetLogInfo('other') -BackupAdminInvitationSentDetails._all_field_names_ = set([]) +BackupAdminInvitationSentDetails._all_field_names_ = set() BackupAdminInvitationSentDetails._all_fields_ = [] BackupAdminInvitationSentType.description.validator = bv.String() -BackupAdminInvitationSentType._all_field_names_ = set(['description']) +BackupAdminInvitationSentType._all_field_names_ = {'description'} BackupAdminInvitationSentType._all_fields_ = [('description', BackupAdminInvitationSentType.description.validator)] -BackupInvitationOpenedDetails._all_field_names_ = set([]) +BackupInvitationOpenedDetails._all_field_names_ = set() BackupInvitationOpenedDetails._all_fields_ = [] BackupInvitationOpenedType.description.validator = bv.String() -BackupInvitationOpenedType._all_field_names_ = set(['description']) +BackupInvitationOpenedType._all_field_names_ = {'description'} BackupInvitationOpenedType._all_fields_ = [('description', BackupInvitationOpenedType.description.validator)] BackupStatus._disabled_validator = bv.Void() @@ -76349,11 +76347,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): BinderAddPageDetails.event_uuid.validator = bv.String() BinderAddPageDetails.doc_title.validator = bv.String() BinderAddPageDetails.binder_item_name.validator = bv.String() -BinderAddPageDetails._all_field_names_ = set([ +BinderAddPageDetails._all_field_names_ = { 'event_uuid', 'doc_title', 'binder_item_name', -]) +} BinderAddPageDetails._all_fields_ = [ ('event_uuid', BinderAddPageDetails.event_uuid.validator), ('doc_title', BinderAddPageDetails.doc_title.validator), @@ -76361,17 +76359,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] BinderAddPageType.description.validator = bv.String() -BinderAddPageType._all_field_names_ = set(['description']) +BinderAddPageType._all_field_names_ = {'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([ +BinderAddSectionDetails._all_field_names_ = { 'event_uuid', 'doc_title', 'binder_item_name', -]) +} BinderAddSectionDetails._all_fields_ = [ ('event_uuid', BinderAddSectionDetails.event_uuid.validator), ('doc_title', BinderAddSectionDetails.doc_title.validator), @@ -76379,17 +76377,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] BinderAddSectionType.description.validator = bv.String() -BinderAddSectionType._all_field_names_ = set(['description']) +BinderAddSectionType._all_field_names_ = {'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([ +BinderRemovePageDetails._all_field_names_ = { 'event_uuid', 'doc_title', 'binder_item_name', -]) +} BinderRemovePageDetails._all_fields_ = [ ('event_uuid', BinderRemovePageDetails.event_uuid.validator), ('doc_title', BinderRemovePageDetails.doc_title.validator), @@ -76397,17 +76395,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] BinderRemovePageType.description.validator = bv.String() -BinderRemovePageType._all_field_names_ = set(['description']) +BinderRemovePageType._all_field_names_ = {'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([ +BinderRemoveSectionDetails._all_field_names_ = { 'event_uuid', 'doc_title', 'binder_item_name', -]) +} BinderRemoveSectionDetails._all_fields_ = [ ('event_uuid', BinderRemoveSectionDetails.event_uuid.validator), ('doc_title', BinderRemoveSectionDetails.doc_title.validator), @@ -76415,19 +76413,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] BinderRemoveSectionType.description.validator = bv.String() -BinderRemoveSectionType._all_field_names_ = set(['description']) +BinderRemoveSectionType._all_field_names_ = {'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([ +BinderRenamePageDetails._all_field_names_ = { '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), @@ -76436,19 +76434,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] BinderRenamePageType.description.validator = bv.String() -BinderRenamePageType._all_field_names_ = set(['description']) +BinderRenamePageType._all_field_names_ = {'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([ +BinderRenameSectionDetails._all_field_names_ = { '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), @@ -76457,17 +76455,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] BinderRenameSectionType.description.validator = bv.String() -BinderRenameSectionType._all_field_names_ = set(['description']) +BinderRenameSectionType._all_field_names_ = {'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([ +BinderReorderPageDetails._all_field_names_ = { 'event_uuid', 'doc_title', 'binder_item_name', -]) +} BinderReorderPageDetails._all_fields_ = [ ('event_uuid', BinderReorderPageDetails.event_uuid.validator), ('doc_title', BinderReorderPageDetails.doc_title.validator), @@ -76475,17 +76473,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] BinderReorderPageType.description.validator = bv.String() -BinderReorderPageType._all_field_names_ = set(['description']) +BinderReorderPageType._all_field_names_ = {'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([ +BinderReorderSectionDetails._all_field_names_ = { 'event_uuid', 'doc_title', 'binder_item_name', -]) +} BinderReorderSectionDetails._all_fields_ = [ ('event_uuid', BinderReorderSectionDetails.event_uuid.validator), ('doc_title', BinderReorderSectionDetails.doc_title.validator), @@ -76493,7 +76491,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] BinderReorderSectionType.description.validator = bv.String() -BinderReorderSectionType._all_field_names_ = set(['description']) +BinderReorderSectionType._all_field_names_ = {'description'} BinderReorderSectionType._all_fields_ = [('description', BinderReorderSectionType.description.validator)] CameraUploadsPolicy._disabled_validator = bv.Void() @@ -76511,17 +76509,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CameraUploadsPolicyChangedDetails.new_value.validator = CameraUploadsPolicy_validator CameraUploadsPolicyChangedDetails.previous_value.validator = CameraUploadsPolicy_validator -CameraUploadsPolicyChangedDetails._all_field_names_ = set([ +CameraUploadsPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} CameraUploadsPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} CameraUploadsPolicyChangedType._all_fields_ = [('description', CameraUploadsPolicyChangedType.description.validator)] CaptureTranscriptPolicy._default_validator = bv.Void() @@ -76542,17 +76540,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): CaptureTranscriptPolicyChangedDetails.new_value.validator = CaptureTranscriptPolicy_validator CaptureTranscriptPolicyChangedDetails.previous_value.validator = CaptureTranscriptPolicy_validator -CaptureTranscriptPolicyChangedDetails._all_field_names_ = set([ +CaptureTranscriptPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} CaptureTranscriptPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} CaptureTranscriptPolicyChangedType._all_fields_ = [('description', CaptureTranscriptPolicyChangedType.description.validator)] Certificate.subject.validator = bv.String() @@ -76562,7 +76560,7 @@ 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([ +Certificate._all_field_names_ = { 'subject', 'issuer', 'issue_date', @@ -76570,7 +76568,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'serial_number', 'sha1_fingerprint', 'common_name', -]) +} Certificate._all_fields_ = [ ('subject', Certificate.subject.validator), ('issuer', Certificate.issuer.validator), @@ -76597,11 +76595,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ChangedEnterpriseAdminRoleDetails.previous_value.validator = FedAdminRole_validator ChangedEnterpriseAdminRoleDetails.new_value.validator = FedAdminRole_validator ChangedEnterpriseAdminRoleDetails.team_name.validator = bv.String() -ChangedEnterpriseAdminRoleDetails._all_field_names_ = set([ +ChangedEnterpriseAdminRoleDetails._all_field_names_ = { 'previous_value', 'new_value', 'team_name', -]) +} ChangedEnterpriseAdminRoleDetails._all_fields_ = [ ('previous_value', ChangedEnterpriseAdminRoleDetails.previous_value.validator), ('new_value', ChangedEnterpriseAdminRoleDetails.new_value.validator), @@ -76609,19 +76607,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ChangedEnterpriseAdminRoleType.description.validator = bv.String() -ChangedEnterpriseAdminRoleType._all_field_names_ = set(['description']) +ChangedEnterpriseAdminRoleType._all_field_names_ = {'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.new_value.validator = TrustedTeamsRequestState_validator -ChangedEnterpriseConnectedTeamStatusDetails._all_field_names_ = set([ +ChangedEnterpriseConnectedTeamStatusDetails._all_field_names_ = { 'action', 'additional_info', 'previous_value', 'new_value', -]) +} ChangedEnterpriseConnectedTeamStatusDetails._all_fields_ = [ ('action', ChangedEnterpriseConnectedTeamStatusDetails.action.validator), ('additional_info', ChangedEnterpriseConnectedTeamStatusDetails.additional_info.validator), @@ -76630,17 +76628,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ChangedEnterpriseConnectedTeamStatusType.description.validator = bv.String() -ChangedEnterpriseConnectedTeamStatusType._all_field_names_ = set(['description']) +ChangedEnterpriseConnectedTeamStatusType._all_field_names_ = {'description'} ChangedEnterpriseConnectedTeamStatusType._all_fields_ = [('description', ChangedEnterpriseConnectedTeamStatusType.description.validator)] ClassificationChangePolicyDetails.previous_value.validator = ClassificationPolicyEnumWrapper_validator ClassificationChangePolicyDetails.new_value.validator = ClassificationPolicyEnumWrapper_validator ClassificationChangePolicyDetails.classification_type.validator = ClassificationType_validator -ClassificationChangePolicyDetails._all_field_names_ = set([ +ClassificationChangePolicyDetails._all_field_names_ = { 'previous_value', 'new_value', 'classification_type', -]) +} ClassificationChangePolicyDetails._all_fields_ = [ ('previous_value', ClassificationChangePolicyDetails.previous_value.validator), ('new_value', ClassificationChangePolicyDetails.new_value.validator), @@ -76648,22 +76646,22 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ClassificationChangePolicyType.description.validator = bv.String() -ClassificationChangePolicyType._all_field_names_ = set(['description']) +ClassificationChangePolicyType._all_field_names_ = {'description'} ClassificationChangePolicyType._all_fields_ = [('description', ClassificationChangePolicyType.description.validator)] -ClassificationCreateReportDetails._all_field_names_ = set([]) +ClassificationCreateReportDetails._all_field_names_ = set() ClassificationCreateReportDetails._all_fields_ = [] ClassificationCreateReportFailDetails.failure_reason.validator = team.TeamReportFailureReason_validator -ClassificationCreateReportFailDetails._all_field_names_ = set(['failure_reason']) +ClassificationCreateReportFailDetails._all_field_names_ = {'failure_reason'} ClassificationCreateReportFailDetails._all_fields_ = [('failure_reason', ClassificationCreateReportFailDetails.failure_reason.validator)] ClassificationCreateReportFailType.description.validator = bv.String() -ClassificationCreateReportFailType._all_field_names_ = set(['description']) +ClassificationCreateReportFailType._all_field_names_ = {'description'} ClassificationCreateReportFailType._all_fields_ = [('description', ClassificationCreateReportFailType.description.validator)] ClassificationCreateReportType.description.validator = bv.String() -ClassificationCreateReportType._all_field_names_ = set(['description']) +ClassificationCreateReportType._all_field_names_ = {'description'} ClassificationCreateReportType._all_fields_ = [('description', ClassificationCreateReportType.description.validator)] ClassificationPolicyEnumWrapper._disabled_validator = bv.Void() @@ -76699,11 +76697,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ClassificationType.other = ClassificationType('other') CollectionShareDetails.album_name.validator = bv.String() -CollectionShareDetails._all_field_names_ = set(['album_name']) +CollectionShareDetails._all_field_names_ = {'album_name'} CollectionShareDetails._all_fields_ = [('album_name', CollectionShareDetails.album_name.validator)] CollectionShareType.description.validator = bv.String() -CollectionShareType._all_field_names_ = set(['description']) +CollectionShareType._all_field_names_ = {'description'} CollectionShareType._all_fields_ = [('description', CollectionShareType.description.validator)] ComputerBackupPolicy._default_validator = bv.Void() @@ -76724,36 +76722,36 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ComputerBackupPolicyChangedDetails.new_value.validator = ComputerBackupPolicy_validator ComputerBackupPolicyChangedDetails.previous_value.validator = ComputerBackupPolicy_validator -ComputerBackupPolicyChangedDetails._all_field_names_ = set([ +ComputerBackupPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} ComputerBackupPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} ComputerBackupPolicyChangedType._all_fields_ = [('description', ComputerBackupPolicyChangedType.description.validator)] ConnectedTeamName.team.validator = bv.String() -ConnectedTeamName._all_field_names_ = set(['team']) +ConnectedTeamName._all_field_names_ = {'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([ +ContentAdministrationPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} ContentAdministrationPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} ContentAdministrationPolicyChangedType._all_fields_ = [('description', ContentAdministrationPolicyChangedType.description.validator)] ContentPermanentDeletePolicy._disabled_validator = bv.Void() @@ -76790,63 +76788,63 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ContextLogInfo.team = ContextLogInfo('team') ContextLogInfo.other = ContextLogInfo('other') -CreateFolderDetails._all_field_names_ = set([]) +CreateFolderDetails._all_field_names_ = set() CreateFolderDetails._all_fields_ = [] CreateFolderType.description.validator = bv.String() -CreateFolderType._all_field_names_ = set(['description']) +CreateFolderType._all_field_names_ = {'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([ +CreateTeamInviteLinkDetails._all_field_names_ = { 'link_url', 'expiry_date', -]) +} CreateTeamInviteLinkDetails._all_fields_ = [ ('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_field_names_ = {'description'} CreateTeamInviteLinkType._all_fields_ = [('description', CreateTeamInviteLinkType.description.validator)] DataPlacementRestrictionChangePolicyDetails.previous_value.validator = PlacementRestriction_validator DataPlacementRestrictionChangePolicyDetails.new_value.validator = PlacementRestriction_validator -DataPlacementRestrictionChangePolicyDetails._all_field_names_ = set([ +DataPlacementRestrictionChangePolicyDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} DataPlacementRestrictionChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} DataPlacementRestrictionChangePolicyType._all_fields_ = [('description', DataPlacementRestrictionChangePolicyType.description.validator)] DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator = PlacementRestriction_validator -DataPlacementRestrictionSatisfyPolicyDetails._all_field_names_ = set(['placement_restriction']) +DataPlacementRestrictionSatisfyPolicyDetails._all_field_names_ = {'placement_restriction'} DataPlacementRestrictionSatisfyPolicyDetails._all_fields_ = [('placement_restriction', DataPlacementRestrictionSatisfyPolicyDetails.placement_restriction.validator)] DataPlacementRestrictionSatisfyPolicyType.description.validator = bv.String() -DataPlacementRestrictionSatisfyPolicyType._all_field_names_ = set(['description']) +DataPlacementRestrictionSatisfyPolicyType._all_field_names_ = {'description'} DataPlacementRestrictionSatisfyPolicyType._all_fields_ = [('description', DataPlacementRestrictionSatisfyPolicyType.description.validator)] -DataResidencyMigrationRequestSuccessfulDetails._all_field_names_ = set([]) +DataResidencyMigrationRequestSuccessfulDetails._all_field_names_ = set() DataResidencyMigrationRequestSuccessfulDetails._all_fields_ = [] DataResidencyMigrationRequestSuccessfulType.description.validator = bv.String() -DataResidencyMigrationRequestSuccessfulType._all_field_names_ = set(['description']) +DataResidencyMigrationRequestSuccessfulType._all_field_names_ = {'description'} DataResidencyMigrationRequestSuccessfulType._all_fields_ = [('description', DataResidencyMigrationRequestSuccessfulType.description.validator)] -DataResidencyMigrationRequestUnsuccessfulDetails._all_field_names_ = set([]) +DataResidencyMigrationRequestUnsuccessfulDetails._all_field_names_ = set() DataResidencyMigrationRequestUnsuccessfulDetails._all_fields_ = [] DataResidencyMigrationRequestUnsuccessfulType.description.validator = bv.String() -DataResidencyMigrationRequestUnsuccessfulType._all_field_names_ = set(['description']) +DataResidencyMigrationRequestUnsuccessfulType._all_field_names_ = {'description'} DataResidencyMigrationRequestUnsuccessfulType._all_fields_ = [('description', DataResidencyMigrationRequestUnsuccessfulType.description.validator)] DefaultLinkExpirationDaysPolicy._day_1_validator = bv.Void() @@ -76881,21 +76879,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DefaultLinkExpirationDaysPolicy.other = DefaultLinkExpirationDaysPolicy('other') DeleteTeamInviteLinkDetails.link_url.validator = bv.String() -DeleteTeamInviteLinkDetails._all_field_names_ = set(['link_url']) +DeleteTeamInviteLinkDetails._all_field_names_ = {'link_url'} DeleteTeamInviteLinkDetails._all_fields_ = [('link_url', DeleteTeamInviteLinkDetails.link_url.validator)] DeleteTeamInviteLinkType.description.validator = bv.String() -DeleteTeamInviteLinkType._all_field_names_ = set(['description']) +DeleteTeamInviteLinkType._all_field_names_ = {'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([ +DeviceSessionLogInfo._field_names_ = { 'ip_address', 'created', 'updated', -]) +} DeviceSessionLogInfo._all_field_names_ = DeviceSessionLogInfo._field_names_ DeviceSessionLogInfo._fields_ = [ ('ip_address', DeviceSessionLogInfo.ip_address.validator), @@ -76924,14 +76922,14 @@ 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([ +DesktopDeviceSessionLogInfo._field_names_ = { '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), @@ -76944,7 +76942,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_ = {'session_id'} SessionLogInfo._all_field_names_ = SessionLogInfo._field_names_ SessionLogInfo._fields_ = [('session_id', SessionLogInfo.session_id.validator)] SessionLogInfo._all_fields_ = SessionLogInfo._fields_ @@ -76961,76 +76959,76 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): } SessionLogInfo._is_catch_all_ = True -DesktopSessionLogInfo._field_names_ = set([]) +DesktopSessionLogInfo._field_names_ = set() DesktopSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union(DesktopSessionLogInfo._field_names_) DesktopSessionLogInfo._fields_ = [] DesktopSessionLogInfo._all_fields_ = SessionLogInfo._all_fields_ + DesktopSessionLogInfo._fields_ -DeviceApprovalsAddExceptionDetails._all_field_names_ = set([]) +DeviceApprovalsAddExceptionDetails._all_field_names_ = set() DeviceApprovalsAddExceptionDetails._all_fields_ = [] DeviceApprovalsAddExceptionType.description.validator = bv.String() -DeviceApprovalsAddExceptionType._all_field_names_ = set(['description']) +DeviceApprovalsAddExceptionType._all_field_names_ = {'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([ +DeviceApprovalsChangeDesktopPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} DeviceApprovalsChangeDesktopPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +DeviceApprovalsChangeMobilePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} DeviceApprovalsChangeMobilePolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +DeviceApprovalsChangeOverageActionDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} DeviceApprovalsChangeOverageActionDetails._all_fields_ = [ ('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_field_names_ = {'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([ +DeviceApprovalsChangeUnlinkActionDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} DeviceApprovalsChangeUnlinkActionDetails._all_fields_ = [ ('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_field_names_ = {'description'} DeviceApprovalsChangeUnlinkActionType._all_fields_ = [('description', DeviceApprovalsChangeUnlinkActionType.description.validator)] DeviceApprovalsPolicy._limited_validator = bv.Void() @@ -77046,45 +77044,45 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeviceApprovalsPolicy.unlimited = DeviceApprovalsPolicy('unlimited') DeviceApprovalsPolicy.other = DeviceApprovalsPolicy('other') -DeviceApprovalsRemoveExceptionDetails._all_field_names_ = set([]) +DeviceApprovalsRemoveExceptionDetails._all_field_names_ = set() DeviceApprovalsRemoveExceptionDetails._all_fields_ = [] DeviceApprovalsRemoveExceptionType.description.validator = bv.String() -DeviceApprovalsRemoveExceptionType._all_field_names_ = set(['description']) +DeviceApprovalsRemoveExceptionType._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} DeviceChangeIpMobileType._all_fields_ = [('description', DeviceChangeIpMobileType.description.validator)] DeviceChangeIpWebDetails.user_agent.validator = bv.String() -DeviceChangeIpWebDetails._all_field_names_ = set(['user_agent']) +DeviceChangeIpWebDetails._all_field_names_ = {'user_agent'} DeviceChangeIpWebDetails._all_fields_ = [('user_agent', DeviceChangeIpWebDetails.user_agent.validator)] DeviceChangeIpWebType.description.validator = bv.String() -DeviceChangeIpWebType._all_field_names_ = set(['description']) +DeviceChangeIpWebType._all_field_names_ = {'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([ +DeviceDeleteOnUnlinkFailDetails._all_field_names_ = { 'session_info', 'display_name', 'num_failures', -]) +} DeviceDeleteOnUnlinkFailDetails._all_fields_ = [ ('session_info', DeviceDeleteOnUnlinkFailDetails.session_info.validator), ('display_name', DeviceDeleteOnUnlinkFailDetails.display_name.validator), @@ -77092,69 +77090,69 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] DeviceDeleteOnUnlinkFailType.description.validator = bv.String() -DeviceDeleteOnUnlinkFailType._all_field_names_ = set(['description']) +DeviceDeleteOnUnlinkFailType._all_field_names_ = {'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([ +DeviceDeleteOnUnlinkSuccessDetails._all_field_names_ = { 'session_info', 'display_name', -]) +} DeviceDeleteOnUnlinkSuccessDetails._all_fields_ = [ ('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_field_names_ = {'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([ +DeviceLinkFailDetails._all_field_names_ = { 'ip_address', 'device_type', -]) +} DeviceLinkFailDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} DeviceLinkSuccessType._all_fields_ = [('description', DeviceLinkSuccessType.description.validator)] -DeviceManagementDisabledDetails._all_field_names_ = set([]) +DeviceManagementDisabledDetails._all_field_names_ = set() DeviceManagementDisabledDetails._all_fields_ = [] DeviceManagementDisabledType.description.validator = bv.String() -DeviceManagementDisabledType._all_field_names_ = set(['description']) +DeviceManagementDisabledType._all_field_names_ = {'description'} DeviceManagementDisabledType._all_fields_ = [('description', DeviceManagementDisabledType.description.validator)] -DeviceManagementEnabledDetails._all_field_names_ = set([]) +DeviceManagementEnabledDetails._all_field_names_ = set() DeviceManagementEnabledDetails._all_fields_ = [] DeviceManagementEnabledType.description.validator = bv.String() -DeviceManagementEnabledType._all_field_names_ = set(['description']) +DeviceManagementEnabledType._all_field_names_ = {'description'} DeviceManagementEnabledType._all_fields_ = [('description', DeviceManagementEnabledType.description.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([ +DeviceSyncBackupStatusChangedDetails._all_field_names_ = { '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), @@ -77162,7 +77160,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] DeviceSyncBackupStatusChangedType.description.validator = bv.String() -DeviceSyncBackupStatusChangedType._all_field_names_ = set(['description']) +DeviceSyncBackupStatusChangedType._all_field_names_ = {'description'} DeviceSyncBackupStatusChangedType._all_fields_ = [('description', DeviceSyncBackupStatusChangedType.description.validator)] DeviceType._desktop_validator = bv.Void() @@ -77181,11 +77179,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +DeviceUnlinkDetails._all_field_names_ = { 'session_info', 'display_name', 'delete_data', -]) +} DeviceUnlinkDetails._all_fields_ = [ ('session_info', DeviceUnlinkDetails.session_info.validator), ('display_name', DeviceUnlinkDetails.display_name.validator), @@ -77206,28 +77204,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DeviceUnlinkPolicy.other = DeviceUnlinkPolicy('other') DeviceUnlinkType.description.validator = bv.String() -DeviceUnlinkType._all_field_names_ = set(['description']) +DeviceUnlinkType._all_field_names_ = {'description'} DeviceUnlinkType._all_fields_ = [('description', DeviceUnlinkType.description.validator)] -DirectoryRestrictionsAddMembersDetails._all_field_names_ = set([]) +DirectoryRestrictionsAddMembersDetails._all_field_names_ = set() DirectoryRestrictionsAddMembersDetails._all_fields_ = [] DirectoryRestrictionsAddMembersType.description.validator = bv.String() -DirectoryRestrictionsAddMembersType._all_field_names_ = set(['description']) +DirectoryRestrictionsAddMembersType._all_field_names_ = {'description'} DirectoryRestrictionsAddMembersType._all_fields_ = [('description', DirectoryRestrictionsAddMembersType.description.validator)] -DirectoryRestrictionsRemoveMembersDetails._all_field_names_ = set([]) +DirectoryRestrictionsRemoveMembersDetails._all_field_names_ = set() DirectoryRestrictionsRemoveMembersDetails._all_fields_ = [] DirectoryRestrictionsRemoveMembersType.description.validator = bv.String() -DirectoryRestrictionsRemoveMembersType._all_field_names_ = set(['description']) +DirectoryRestrictionsRemoveMembersType._all_field_names_ = {'description'} DirectoryRestrictionsRemoveMembersType._all_fields_ = [('description', DirectoryRestrictionsRemoveMembersType.description.validator)] -DisabledDomainInvitesDetails._all_field_names_ = set([]) +DisabledDomainInvitesDetails._all_field_names_ = set() DisabledDomainInvitesDetails._all_fields_ = [] DisabledDomainInvitesType.description.validator = bv.String() -DisabledDomainInvitesType._all_field_names_ = set(['description']) +DisabledDomainInvitesType._all_field_names_ = {'description'} DisabledDomainInvitesType._all_fields_ = [('description', DisabledDomainInvitesType.description.validator)] DispositionActionType._automatic_delete_validator = bv.Void() @@ -77243,92 +77241,92 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DispositionActionType.automatic_permanently_delete = DispositionActionType('automatic_permanently_delete') DispositionActionType.other = DispositionActionType('other') -DomainInvitesApproveRequestToJoinTeamDetails._all_field_names_ = set([]) +DomainInvitesApproveRequestToJoinTeamDetails._all_field_names_ = set() DomainInvitesApproveRequestToJoinTeamDetails._all_fields_ = [] DomainInvitesApproveRequestToJoinTeamType.description.validator = bv.String() -DomainInvitesApproveRequestToJoinTeamType._all_field_names_ = set(['description']) +DomainInvitesApproveRequestToJoinTeamType._all_field_names_ = {'description'} DomainInvitesApproveRequestToJoinTeamType._all_fields_ = [('description', DomainInvitesApproveRequestToJoinTeamType.description.validator)] -DomainInvitesDeclineRequestToJoinTeamDetails._all_field_names_ = set([]) +DomainInvitesDeclineRequestToJoinTeamDetails._all_field_names_ = set() DomainInvitesDeclineRequestToJoinTeamDetails._all_fields_ = [] DomainInvitesDeclineRequestToJoinTeamType.description.validator = bv.String() -DomainInvitesDeclineRequestToJoinTeamType._all_field_names_ = set(['description']) +DomainInvitesDeclineRequestToJoinTeamType._all_field_names_ = {'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([ +DomainInvitesEmailExistingUsersDetails._all_field_names_ = { 'domain_name', 'num_recipients', -]) +} DomainInvitesEmailExistingUsersDetails._all_fields_ = [ ('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_field_names_ = {'description'} DomainInvitesEmailExistingUsersType._all_fields_ = [('description', DomainInvitesEmailExistingUsersType.description.validator)] -DomainInvitesRequestToJoinTeamDetails._all_field_names_ = set([]) +DomainInvitesRequestToJoinTeamDetails._all_field_names_ = set() DomainInvitesRequestToJoinTeamDetails._all_fields_ = [] DomainInvitesRequestToJoinTeamType.description.validator = bv.String() -DomainInvitesRequestToJoinTeamType._all_field_names_ = set(['description']) +DomainInvitesRequestToJoinTeamType._all_field_names_ = {'description'} DomainInvitesRequestToJoinTeamType._all_fields_ = [('description', DomainInvitesRequestToJoinTeamType.description.validator)] -DomainInvitesSetInviteNewUserPrefToNoDetails._all_field_names_ = set([]) +DomainInvitesSetInviteNewUserPrefToNoDetails._all_field_names_ = set() DomainInvitesSetInviteNewUserPrefToNoDetails._all_fields_ = [] DomainInvitesSetInviteNewUserPrefToNoType.description.validator = bv.String() -DomainInvitesSetInviteNewUserPrefToNoType._all_field_names_ = set(['description']) +DomainInvitesSetInviteNewUserPrefToNoType._all_field_names_ = {'description'} DomainInvitesSetInviteNewUserPrefToNoType._all_fields_ = [('description', DomainInvitesSetInviteNewUserPrefToNoType.description.validator)] -DomainInvitesSetInviteNewUserPrefToYesDetails._all_field_names_ = set([]) +DomainInvitesSetInviteNewUserPrefToYesDetails._all_field_names_ = set() DomainInvitesSetInviteNewUserPrefToYesDetails._all_fields_ = [] DomainInvitesSetInviteNewUserPrefToYesType.description.validator = bv.String() -DomainInvitesSetInviteNewUserPrefToYesType._all_field_names_ = set(['description']) +DomainInvitesSetInviteNewUserPrefToYesType._all_field_names_ = {'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([ +DomainVerificationAddDomainFailDetails._all_field_names_ = { 'domain_name', 'verification_method', -]) +} DomainVerificationAddDomainFailDetails._all_fields_ = [ ('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_field_names_ = {'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([ +DomainVerificationAddDomainSuccessDetails._all_field_names_ = { 'domain_names', 'verification_method', -]) +} DomainVerificationAddDomainSuccessDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'domain_names'} DomainVerificationRemoveDomainDetails._all_fields_ = [('domain_names', DomainVerificationRemoveDomainDetails.domain_names.validator)] DomainVerificationRemoveDomainType.description.validator = bv.String() -DomainVerificationRemoveDomainType._all_field_names_ = set(['description']) +DomainVerificationRemoveDomainType._all_field_names_ = {'description'} DomainVerificationRemoveDomainType._all_fields_ = [('description', DomainVerificationRemoveDomainType.description.validator)] DownloadPolicyType._allow_validator = bv.Void() @@ -77345,26 +77343,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DownloadPolicyType.other = DownloadPolicyType('other') DropboxPasswordsExportedDetails.platform.validator = bv.String() -DropboxPasswordsExportedDetails._all_field_names_ = set(['platform']) +DropboxPasswordsExportedDetails._all_field_names_ = {'platform'} DropboxPasswordsExportedDetails._all_fields_ = [('platform', DropboxPasswordsExportedDetails.platform.validator)] DropboxPasswordsExportedType.description.validator = bv.String() -DropboxPasswordsExportedType._all_field_names_ = set(['description']) +DropboxPasswordsExportedType._all_field_names_ = {'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([ +DropboxPasswordsNewDeviceEnrolledDetails._all_field_names_ = { 'is_first_device', 'platform', -]) +} DropboxPasswordsNewDeviceEnrolledDetails._all_fields_ = [ ('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_field_names_ = {'description'} DropboxPasswordsNewDeviceEnrolledType._all_fields_ = [('description', DropboxPasswordsNewDeviceEnrolledType.description.validator)] DropboxPasswordsPolicy._default_validator = bv.Void() @@ -77385,25 +77383,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): DropboxPasswordsPolicyChangedDetails.new_value.validator = DropboxPasswordsPolicy_validator DropboxPasswordsPolicyChangedDetails.previous_value.validator = DropboxPasswordsPolicy_validator -DropboxPasswordsPolicyChangedDetails._all_field_names_ = set([ +DropboxPasswordsPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} DropboxPasswordsPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} DropboxPasswordsPolicyChangedType._all_fields_ = [('description', DropboxPasswordsPolicyChangedType.description.validator)] DurationLogInfo.unit.validator = TimeUnit_validator DurationLogInfo.amount.validator = bv.UInt64() -DurationLogInfo._all_field_names_ = set([ +DurationLogInfo._all_field_names_ = { 'unit', 'amount', -]) +} DurationLogInfo._all_fields_ = [ ('unit', DurationLogInfo.unit.validator), ('amount', DurationLogInfo.amount.validator), @@ -77424,17 +77422,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): EmailIngestPolicyChangedDetails.new_value.validator = EmailIngestPolicy_validator EmailIngestPolicyChangedDetails.previous_value.validator = EmailIngestPolicy_validator -EmailIngestPolicyChangedDetails._all_field_names_ = set([ +EmailIngestPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} EmailIngestPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} EmailIngestPolicyChangedType._all_fields_ = [('description', EmailIngestPolicyChangedType.description.validator)] EmailIngestReceiveFileDetails.inbox_name.validator = bv.String() @@ -77442,13 +77440,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +EmailIngestReceiveFileDetails._all_field_names_ = { 'inbox_name', 'attachment_names', 'subject', 'from_name', 'from_email', -]) +} EmailIngestReceiveFileDetails._all_fields_ = [ ('inbox_name', EmailIngestReceiveFileDetails.inbox_name.validator), ('attachment_names', EmailIngestReceiveFileDetails.attachment_names.validator), @@ -77458,87 +77456,87 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] EmailIngestReceiveFileType.description.validator = bv.String() -EmailIngestReceiveFileType._all_field_names_ = set(['description']) +EmailIngestReceiveFileType._all_field_names_ = {'description'} EmailIngestReceiveFileType._all_fields_ = [('description', EmailIngestReceiveFileType.description.validator)] -EmmAddExceptionDetails._all_field_names_ = set([]) +EmmAddExceptionDetails._all_field_names_ = set() EmmAddExceptionDetails._all_fields_ = [] EmmAddExceptionType.description.validator = bv.String() -EmmAddExceptionType._all_field_names_ = set(['description']) +EmmAddExceptionType._all_field_names_ = {'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([ +EmmChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} EmmChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} EmmChangePolicyType._all_fields_ = [('description', EmmChangePolicyType.description.validator)] -EmmCreateExceptionsReportDetails._all_field_names_ = set([]) +EmmCreateExceptionsReportDetails._all_field_names_ = set() EmmCreateExceptionsReportDetails._all_fields_ = [] EmmCreateExceptionsReportType.description.validator = bv.String() -EmmCreateExceptionsReportType._all_field_names_ = set(['description']) +EmmCreateExceptionsReportType._all_field_names_ = {'description'} EmmCreateExceptionsReportType._all_fields_ = [('description', EmmCreateExceptionsReportType.description.validator)] -EmmCreateUsageReportDetails._all_field_names_ = set([]) +EmmCreateUsageReportDetails._all_field_names_ = set() EmmCreateUsageReportDetails._all_fields_ = [] EmmCreateUsageReportType.description.validator = bv.String() -EmmCreateUsageReportType._all_field_names_ = set(['description']) +EmmCreateUsageReportType._all_field_names_ = {'description'} EmmCreateUsageReportType._all_fields_ = [('description', EmmCreateUsageReportType.description.validator)] EmmErrorDetails.error_details.validator = FailureDetailsLogInfo_validator -EmmErrorDetails._all_field_names_ = set(['error_details']) +EmmErrorDetails._all_field_names_ = {'error_details'} EmmErrorDetails._all_fields_ = [('error_details', EmmErrorDetails.error_details.validator)] EmmErrorType.description.validator = bv.String() -EmmErrorType._all_field_names_ = set(['description']) +EmmErrorType._all_field_names_ = {'description'} EmmErrorType._all_fields_ = [('description', EmmErrorType.description.validator)] -EmmRefreshAuthTokenDetails._all_field_names_ = set([]) +EmmRefreshAuthTokenDetails._all_field_names_ = set() EmmRefreshAuthTokenDetails._all_fields_ = [] EmmRefreshAuthTokenType.description.validator = bv.String() -EmmRefreshAuthTokenType._all_field_names_ = set(['description']) +EmmRefreshAuthTokenType._all_field_names_ = {'description'} EmmRefreshAuthTokenType._all_fields_ = [('description', EmmRefreshAuthTokenType.description.validator)] -EmmRemoveExceptionDetails._all_field_names_ = set([]) +EmmRemoveExceptionDetails._all_field_names_ = set() EmmRemoveExceptionDetails._all_fields_ = [] EmmRemoveExceptionType.description.validator = bv.String() -EmmRemoveExceptionType._all_field_names_ = set(['description']) +EmmRemoveExceptionType._all_field_names_ = {'description'} EmmRemoveExceptionType._all_fields_ = [('description', EmmRemoveExceptionType.description.validator)] -EnabledDomainInvitesDetails._all_field_names_ = set([]) +EnabledDomainInvitesDetails._all_field_names_ = set() EnabledDomainInvitesDetails._all_fields_ = [] EnabledDomainInvitesType.description.validator = bv.String() -EnabledDomainInvitesType._all_field_names_ = set(['description']) +EnabledDomainInvitesType._all_field_names_ = {'description'} EnabledDomainInvitesType._all_fields_ = [('description', EnabledDomainInvitesType.description.validator)] EndedEnterpriseAdminSessionDeprecatedDetails.federation_extra_details.validator = FedExtraDetails_validator -EndedEnterpriseAdminSessionDeprecatedDetails._all_field_names_ = set(['federation_extra_details']) +EndedEnterpriseAdminSessionDeprecatedDetails._all_field_names_ = {'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_field_names_ = {'description'} EndedEnterpriseAdminSessionDeprecatedType._all_fields_ = [('description', EndedEnterpriseAdminSessionDeprecatedType.description.validator)] -EndedEnterpriseAdminSessionDetails._all_field_names_ = set([]) +EndedEnterpriseAdminSessionDetails._all_field_names_ = set() EndedEnterpriseAdminSessionDetails._all_fields_ = [] EndedEnterpriseAdminSessionType.description.validator = bv.String() -EndedEnterpriseAdminSessionType._all_field_names_ = set(['description']) +EndedEnterpriseAdminSessionType._all_field_names_ = {'description'} EndedEnterpriseAdminSessionType._all_fields_ = [('description', EndedEnterpriseAdminSessionType.description.validator)] EnforceLinkPasswordPolicy._optional_validator = bv.Void() @@ -77558,12 +77556,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +EnterpriseSettingsLockingDetails._all_field_names_ = { '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), @@ -77572,7 +77570,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] EnterpriseSettingsLockingType.description.validator = bv.String() -EnterpriseSettingsLockingType._all_field_names_ = set(['description']) +EnterpriseSettingsLockingType._all_field_names_ = {'description'} EnterpriseSettingsLockingType._all_fields_ = [('description', EnterpriseSettingsLockingType.description.validator)] EventCategory._admin_alerting_validator = bv.Void() @@ -81195,34 +81193,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_field_names_ = set() ExportMembersReportDetails._all_fields_ = [] ExportMembersReportFailDetails.failure_reason.validator = team.TeamReportFailureReason_validator -ExportMembersReportFailDetails._all_field_names_ = set(['failure_reason']) +ExportMembersReportFailDetails._all_field_names_ = {'failure_reason'} ExportMembersReportFailDetails._all_fields_ = [('failure_reason', ExportMembersReportFailDetails.failure_reason.validator)] ExportMembersReportFailType.description.validator = bv.String() -ExportMembersReportFailType._all_field_names_ = set(['description']) +ExportMembersReportFailType._all_field_names_ = {'description'} ExportMembersReportFailType._all_fields_ = [('description', ExportMembersReportFailType.description.validator)] ExportMembersReportType.description.validator = bv.String() -ExportMembersReportType._all_field_names_ = set(['description']) +ExportMembersReportType._all_field_names_ = {'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([ +ExtendedVersionHistoryChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} ExtendedVersionHistoryChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} ExtendedVersionHistoryChangePolicyType._all_fields_ = [('description', ExtendedVersionHistoryChangePolicyType.description.validator)] ExtendedVersionHistoryPolicy._explicitly_limited_validator = bv.Void() @@ -81260,11 +81258,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ExternalDriveBackupEligibilityStatusCheckedDetails._all_field_names_ = { '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), @@ -81272,7 +81270,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ExternalDriveBackupEligibilityStatusCheckedType.description.validator = bv.String() -ExternalDriveBackupEligibilityStatusCheckedType._all_field_names_ = set(['description']) +ExternalDriveBackupEligibilityStatusCheckedType._all_field_names_ = {'description'} ExternalDriveBackupEligibilityStatusCheckedType._all_fields_ = [('description', ExternalDriveBackupEligibilityStatusCheckedType.description.validator)] ExternalDriveBackupPolicy._default_validator = bv.Void() @@ -81293,17 +81291,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ExternalDriveBackupPolicyChangedDetails.new_value.validator = ExternalDriveBackupPolicy_validator ExternalDriveBackupPolicyChangedDetails.previous_value.validator = ExternalDriveBackupPolicy_validator -ExternalDriveBackupPolicyChangedDetails._all_field_names_ = set([ +ExternalDriveBackupPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} ExternalDriveBackupPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} ExternalDriveBackupPolicyChangedType._all_fields_ = [('description', ExternalDriveBackupPolicyChangedType.description.validator)] ExternalDriveBackupStatus._broken_validator = bv.Void() @@ -81334,11 +81332,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +ExternalDriveBackupStatusChangedDetails._all_field_names_ = { '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), @@ -81346,30 +81344,30 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] ExternalDriveBackupStatusChangedType.description.validator = bv.String() -ExternalDriveBackupStatusChangedType._all_field_names_ = set(['description']) +ExternalDriveBackupStatusChangedType._all_field_names_ = {'description'} ExternalDriveBackupStatusChangedType._all_fields_ = [('description', ExternalDriveBackupStatusChangedType.description.validator)] -ExternalSharingCreateReportDetails._all_field_names_ = set([]) +ExternalSharingCreateReportDetails._all_field_names_ = set() ExternalSharingCreateReportDetails._all_fields_ = [] ExternalSharingCreateReportType.description.validator = bv.String() -ExternalSharingCreateReportType._all_field_names_ = set(['description']) +ExternalSharingCreateReportType._all_field_names_ = {'description'} ExternalSharingCreateReportType._all_fields_ = [('description', ExternalSharingCreateReportType.description.validator)] ExternalSharingReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -ExternalSharingReportFailedDetails._all_field_names_ = set(['failure_reason']) +ExternalSharingReportFailedDetails._all_field_names_ = {'failure_reason'} ExternalSharingReportFailedDetails._all_fields_ = [('failure_reason', ExternalSharingReportFailedDetails.failure_reason.validator)] ExternalSharingReportFailedType.description.validator = bv.String() -ExternalSharingReportFailedType._all_field_names_ = set(['description']) +ExternalSharingReportFailedType._all_field_names_ = {'description'} ExternalSharingReportFailedType._all_fields_ = [('description', ExternalSharingReportFailedType.description.validator)] ExternalUserLogInfo.user_identifier.validator = bv.String() ExternalUserLogInfo.identifier_type.validator = IdentifierType_validator -ExternalUserLogInfo._all_field_names_ = set([ +ExternalUserLogInfo._all_field_names_ = { 'user_identifier', 'identifier_type', -]) +} ExternalUserLogInfo._all_fields_ = [ ('user_identifier', ExternalUserLogInfo.user_identifier.validator), ('identifier_type', ExternalUserLogInfo.identifier_type.validator), @@ -81377,10 +81375,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FailureDetailsLogInfo.user_friendly_message.validator = bv.Nullable(bv.String()) FailureDetailsLogInfo.technical_error_message.validator = bv.Nullable(bv.String()) -FailureDetailsLogInfo._all_field_names_ = set([ +FailureDetailsLogInfo._all_field_names_ = { '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), @@ -81449,40 +81447,40 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FederationStatusChangeAdditionalInfo.other = FederationStatusChangeAdditionalInfo('other') FileAddCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileAddCommentDetails._all_field_names_ = set(['comment_text']) +FileAddCommentDetails._all_field_names_ = {'comment_text'} FileAddCommentDetails._all_fields_ = [('comment_text', FileAddCommentDetails.comment_text.validator)] FileAddCommentType.description.validator = bv.String() -FileAddCommentType._all_field_names_ = set(['description']) +FileAddCommentType._all_field_names_ = {'description'} FileAddCommentType._all_fields_ = [('description', FileAddCommentType.description.validator)] -FileAddDetails._all_field_names_ = set([]) +FileAddDetails._all_field_names_ = set() FileAddDetails._all_fields_ = [] -FileAddFromAutomationDetails._all_field_names_ = set([]) +FileAddFromAutomationDetails._all_field_names_ = set() FileAddFromAutomationDetails._all_fields_ = [] FileAddFromAutomationType.description.validator = bv.String() -FileAddFromAutomationType._all_field_names_ = set(['description']) +FileAddFromAutomationType._all_field_names_ = {'description'} FileAddFromAutomationType._all_fields_ = [('description', FileAddFromAutomationType.description.validator)] FileAddType.description.validator = bv.String() -FileAddType._all_field_names_ = set(['description']) +FileAddType._all_field_names_ = {'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([ +FileChangeCommentSubscriptionDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} FileChangeCommentSubscriptionDetails._all_fields_ = [ ('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_field_names_ = {'description'} FileChangeCommentSubscriptionType._all_fields_ = [('description', FileChangeCommentSubscriptionType.description.validator)] FileCommentNotificationPolicy._disabled_validator = bv.Void() @@ -81500,17 +81498,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileCommentsChangePolicyDetails.new_value.validator = FileCommentsPolicy_validator FileCommentsChangePolicyDetails.previous_value.validator = bv.Nullable(FileCommentsPolicy_validator) -FileCommentsChangePolicyDetails._all_field_names_ = set([ +FileCommentsChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} FileCommentsChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} FileCommentsChangePolicyType._all_fields_ = [('description', FileCommentsChangePolicyType.description.validator)] FileCommentsPolicy._disabled_validator = bv.Void() @@ -81527,112 +81525,112 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileCommentsPolicy.other = FileCommentsPolicy('other') FileCopyDetails.relocate_action_details.validator = bv.List(RelocateAssetReferencesLogInfo_validator) -FileCopyDetails._all_field_names_ = set(['relocate_action_details']) +FileCopyDetails._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'comment_text'} FileDeleteCommentDetails._all_fields_ = [('comment_text', FileDeleteCommentDetails.comment_text.validator)] FileDeleteCommentType.description.validator = bv.String() -FileDeleteCommentType._all_field_names_ = set(['description']) +FileDeleteCommentType._all_field_names_ = {'description'} FileDeleteCommentType._all_fields_ = [('description', FileDeleteCommentType.description.validator)] -FileDeleteDetails._all_field_names_ = set([]) +FileDeleteDetails._all_field_names_ = set() FileDeleteDetails._all_fields_ = [] FileDeleteType.description.validator = bv.String() -FileDeleteType._all_field_names_ = set(['description']) +FileDeleteType._all_field_names_ = {'description'} FileDeleteType._all_fields_ = [('description', FileDeleteType.description.validator)] -FileDownloadDetails._all_field_names_ = set([]) +FileDownloadDetails._all_field_names_ = set() FileDownloadDetails._all_fields_ = [] FileDownloadType.description.validator = bv.String() -FileDownloadType._all_field_names_ = set(['description']) +FileDownloadType._all_field_names_ = {'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([ +FileEditCommentDetails._all_field_names_ = { 'comment_text', 'previous_comment_text', -]) +} FileEditCommentDetails._all_fields_ = [ ('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_field_names_ = {'description'} FileEditCommentType._all_fields_ = [('description', FileEditCommentType.description.validator)] -FileEditDetails._all_field_names_ = set([]) +FileEditDetails._all_field_names_ = set() FileEditDetails._all_fields_ = [] FileEditType.description.validator = bv.String() -FileEditType._all_field_names_ = set(['description']) +FileEditType._all_field_names_ = {'description'} FileEditType._all_fields_ = [('description', FileEditType.description.validator)] -FileGetCopyReferenceDetails._all_field_names_ = set([]) +FileGetCopyReferenceDetails._all_field_names_ = set() FileGetCopyReferenceDetails._all_fields_ = [] FileGetCopyReferenceType.description.validator = bv.String() -FileGetCopyReferenceType._all_field_names_ = set(['description']) +FileGetCopyReferenceType._all_field_names_ = {'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_field_names_ = {'comment_text'} FileLikeCommentDetails._all_fields_ = [('comment_text', FileLikeCommentDetails.comment_text.validator)] FileLikeCommentType.description.validator = bv.String() -FileLikeCommentType._all_field_names_ = set(['description']) +FileLikeCommentType._all_field_names_ = {'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([ +FileLockingLockStatusChangedDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} FileLockingLockStatusChangedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +FileLockingPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} FileLockingPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +FileOrFolderLogInfo._all_field_names_ = { 'path', 'display_name', 'file_id', 'file_size', -]) +} FileOrFolderLogInfo._all_fields_ = [ ('path', FileOrFolderLogInfo.path.validator), ('display_name', FileOrFolderLogInfo.display_name.validator), @@ -81640,62 +81638,62 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ('file_size', FileOrFolderLogInfo.file_size.validator), ] -FileLogInfo._all_field_names_ = FileOrFolderLogInfo._all_field_names_.union(set([])) +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_field_names_ = {'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_field_names_ = {'description'} FileMoveType._all_fields_ = [('description', FileMoveType.description.validator)] -FilePermanentlyDeleteDetails._all_field_names_ = set([]) +FilePermanentlyDeleteDetails._all_field_names_ = set() FilePermanentlyDeleteDetails._all_fields_ = [] FilePermanentlyDeleteType.description.validator = bv.String() -FilePermanentlyDeleteType._all_field_names_ = set(['description']) +FilePermanentlyDeleteType._all_field_names_ = {'description'} FilePermanentlyDeleteType._all_fields_ = [('description', FilePermanentlyDeleteType.description.validator)] -FilePreviewDetails._all_field_names_ = set([]) +FilePreviewDetails._all_field_names_ = set() FilePreviewDetails._all_fields_ = [] FilePreviewType.description.validator = bv.String() -FilePreviewType._all_field_names_ = set(['description']) +FilePreviewType._all_field_names_ = {'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([ +FileProviderMigrationPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} FileProviderMigrationPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} FileRenameType._all_fields_ = [('description', FileRenameType.description.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([ +FileRequestChangeDetails._all_field_names_ = { 'file_request_id', 'previous_details', 'new_details', -]) +} FileRequestChangeDetails._all_fields_ = [ ('file_request_id', FileRequestChangeDetails.file_request_id.validator), ('previous_details', FileRequestChangeDetails.previous_details.validator), @@ -81703,45 +81701,45 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] FileRequestChangeType.description.validator = bv.String() -FileRequestChangeType._all_field_names_ = set(['description']) +FileRequestChangeType._all_field_names_ = {'description'} FileRequestChangeType._all_fields_ = [('description', FileRequestChangeType.description.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([ +FileRequestCloseDetails._all_field_names_ = { 'file_request_id', 'previous_details', -]) +} FileRequestCloseDetails._all_fields_ = [ ('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_field_names_ = {'description'} FileRequestCloseType._all_fields_ = [('description', FileRequestCloseType.description.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([ +FileRequestCreateDetails._all_field_names_ = { 'file_request_id', 'request_details', -]) +} FileRequestCreateDetails._all_fields_ = [ ('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_field_names_ = {'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([ +FileRequestDeadline._all_field_names_ = { 'deadline', 'allow_late_uploads', -]) +} FileRequestDeadline._all_fields_ = [ ('deadline', FileRequestDeadline.deadline.validator), ('allow_late_uploads', FileRequestDeadline.allow_late_uploads.validator), @@ -81749,25 +81747,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileRequestDeleteDetails.file_request_id.validator = bv.Nullable(file_requests.FileRequestId_validator) FileRequestDeleteDetails.previous_details.validator = bv.Nullable(FileRequestDetails_validator) -FileRequestDeleteDetails._all_field_names_ = set([ +FileRequestDeleteDetails._all_field_names_ = { 'file_request_id', 'previous_details', -]) +} FileRequestDeleteDetails._all_fields_ = [ ('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_field_names_ = {'description'} FileRequestDeleteType._all_fields_ = [('description', FileRequestDeleteType.description.validator)] FileRequestDetails.asset_index.validator = bv.UInt64() FileRequestDetails.deadline.validator = bv.Nullable(FileRequestDeadline_validator) -FileRequestDetails._all_field_names_ = set([ +FileRequestDetails._all_field_names_ = { 'asset_index', 'deadline', -]) +} FileRequestDetails._all_fields_ = [ ('asset_index', FileRequestDetails.asset_index.validator), ('deadline', FileRequestDetails.deadline.validator), @@ -81778,13 +81776,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileRequestReceiveFileDetails.submitted_file_names.validator = bv.List(bv.String()) FileRequestReceiveFileDetails.submitter_name.validator = bv.Nullable(common.DisplayNameLegacy_validator) FileRequestReceiveFileDetails.submitter_email.validator = bv.Nullable(EmailAddress_validator) -FileRequestReceiveFileDetails._all_field_names_ = set([ +FileRequestReceiveFileDetails._all_field_names_ = { '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), @@ -81794,36 +81792,36 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] FileRequestReceiveFileType.description.validator = bv.String() -FileRequestReceiveFileType._all_field_names_ = set(['description']) +FileRequestReceiveFileType._all_field_names_ = {'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([ +FileRequestsChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} FileRequestsChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} FileRequestsChangePolicyType._all_fields_ = [('description', FileRequestsChangePolicyType.description.validator)] -FileRequestsEmailsEnabledDetails._all_field_names_ = set([]) +FileRequestsEmailsEnabledDetails._all_field_names_ = set() FileRequestsEmailsEnabledDetails._all_fields_ = [] FileRequestsEmailsEnabledType.description.validator = bv.String() -FileRequestsEmailsEnabledType._all_field_names_ = set(['description']) +FileRequestsEmailsEnabledType._all_field_names_ = {'description'} FileRequestsEmailsEnabledType._all_fields_ = [('description', FileRequestsEmailsEnabledType.description.validator)] -FileRequestsEmailsRestrictedToTeamOnlyDetails._all_field_names_ = set([]) +FileRequestsEmailsRestrictedToTeamOnlyDetails._all_field_names_ = set() FileRequestsEmailsRestrictedToTeamOnlyDetails._all_fields_ = [] FileRequestsEmailsRestrictedToTeamOnlyType.description.validator = bv.String() -FileRequestsEmailsRestrictedToTeamOnlyType._all_field_names_ = set(['description']) +FileRequestsEmailsRestrictedToTeamOnlyType._all_field_names_ = {'description'} FileRequestsEmailsRestrictedToTeamOnlyType._all_fields_ = [('description', FileRequestsEmailsRestrictedToTeamOnlyType.description.validator)] FileRequestsPolicy._disabled_validator = bv.Void() @@ -81840,48 +81838,48 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileRequestsPolicy.other = FileRequestsPolicy('other') FileResolveCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -FileResolveCommentDetails._all_field_names_ = set(['comment_text']) +FileResolveCommentDetails._all_field_names_ = {'comment_text'} FileResolveCommentDetails._all_fields_ = [('comment_text', FileResolveCommentDetails.comment_text.validator)] FileResolveCommentType.description.validator = bv.String() -FileResolveCommentType._all_field_names_ = set(['description']) +FileResolveCommentType._all_field_names_ = {'description'} FileResolveCommentType._all_fields_ = [('description', FileResolveCommentType.description.validator)] -FileRestoreDetails._all_field_names_ = set([]) +FileRestoreDetails._all_field_names_ = set() FileRestoreDetails._all_fields_ = [] FileRestoreType.description.validator = bv.String() -FileRestoreType._all_field_names_ = set(['description']) +FileRestoreType._all_field_names_ = {'description'} FileRestoreType._all_fields_ = [('description', FileRestoreType.description.validator)] -FileRevertDetails._all_field_names_ = set([]) +FileRevertDetails._all_field_names_ = set() FileRevertDetails._all_fields_ = [] FileRevertType.description.validator = bv.String() -FileRevertType._all_field_names_ = set(['description']) +FileRevertType._all_field_names_ = {'description'} FileRevertType._all_fields_ = [('description', FileRevertType.description.validator)] -FileRollbackChangesDetails._all_field_names_ = set([]) +FileRollbackChangesDetails._all_field_names_ = set() FileRollbackChangesDetails._all_fields_ = [] FileRollbackChangesType.description.validator = bv.String() -FileRollbackChangesType._all_field_names_ = set(['description']) +FileRollbackChangesType._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} FileTransfersFileAddType._all_fields_ = [('description', FileTransfersFileAddType.description.validator)] FileTransfersPolicy._disabled_validator = bv.Void() @@ -81899,65 +81897,65 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FileTransfersPolicyChangedDetails.new_value.validator = FileTransfersPolicy_validator FileTransfersPolicyChangedDetails.previous_value.validator = FileTransfersPolicy_validator -FileTransfersPolicyChangedDetails._all_field_names_ = set([ +FileTransfersPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} FileTransfersPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'comment_text'} FileUnlikeCommentDetails._all_fields_ = [('comment_text', FileUnlikeCommentDetails.comment_text.validator)] FileUnlikeCommentType.description.validator = bv.String() -FileUnlikeCommentType._all_field_names_ = set(['description']) +FileUnlikeCommentType._all_field_names_ = {'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_field_names_ = {'comment_text'} FileUnresolveCommentDetails._all_fields_ = [('comment_text', FileUnresolveCommentDetails.comment_text.validator)] FileUnresolveCommentType.description.validator = bv.String() -FileUnresolveCommentType._all_field_names_ = set(['description']) +FileUnresolveCommentType._all_field_names_ = {'description'} FileUnresolveCommentType._all_fields_ = [('description', FileUnresolveCommentType.description.validator)] FolderLinkRestrictionPolicy._disabled_validator = bv.Void() @@ -81975,71 +81973,71 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FolderLinkRestrictionPolicyChangedDetails.new_value.validator = FolderLinkRestrictionPolicy_validator FolderLinkRestrictionPolicyChangedDetails.previous_value.validator = FolderLinkRestrictionPolicy_validator -FolderLinkRestrictionPolicyChangedDetails._all_field_names_ = set([ +FolderLinkRestrictionPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} FolderLinkRestrictionPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = FileOrFolderLogInfo._all_field_names_.union({'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_field_names_ = {'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_field_names_ = {'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([ +FolderOverviewItemPinnedDetails._all_field_names_ = { '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), ] FolderOverviewItemPinnedType.description.validator = bv.String() -FolderOverviewItemPinnedType._all_field_names_ = set(['description']) +FolderOverviewItemPinnedType._all_field_names_ = {'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([ +FolderOverviewItemUnpinnedDetails._all_field_names_ = { '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), ] FolderOverviewItemUnpinnedType.description.validator = bv.String() -FolderOverviewItemUnpinnedType._all_field_names_ = set(['description']) +FolderOverviewItemUnpinnedType._all_field_names_ = {'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([ +GeoLocationLogInfo._all_field_names_ = { 'city', 'region', 'country', 'ip_address', -]) +} GeoLocationLogInfo._all_fields_ = [ ('city', GeoLocationLogInfo.city.validator), ('region', GeoLocationLogInfo.region.validator), @@ -82052,13 +82050,13 @@ 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([ +GetTeamEventsArg._all_field_names_ = { 'limit', 'account_id', 'time', 'category', 'event_type', -]) +} GetTeamEventsArg._all_fields_ = [ ('limit', GetTeamEventsArg.limit.validator), ('account_id', GetTeamEventsArg.account_id.validator), @@ -82068,7 +82066,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GetTeamEventsContinueArg.cursor.validator = bv.String() -GetTeamEventsContinueArg._all_field_names_ = set(['cursor']) +GetTeamEventsContinueArg._all_field_names_ = {'cursor'} GetTeamEventsContinueArg._all_fields_ = [('cursor', GetTeamEventsContinueArg.cursor.validator)] GetTeamEventsContinueError._bad_cursor_validator = bv.Void() @@ -82102,11 +82100,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetTeamEventsResult.events.validator = bv.List(TeamEvent_validator) GetTeamEventsResult.cursor.validator = bv.String() GetTeamEventsResult.has_more.validator = bv.Boolean() -GetTeamEventsResult._all_field_names_ = set([ +GetTeamEventsResult._all_field_names_ = { 'events', 'cursor', 'has_more', -]) +} GetTeamEventsResult._all_fields_ = [ ('events', GetTeamEventsResult.events.validator), ('cursor', GetTeamEventsResult.cursor.validator), @@ -82115,17 +82113,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GoogleSsoChangePolicyDetails.new_value.validator = GoogleSsoPolicy_validator GoogleSsoChangePolicyDetails.previous_value.validator = bv.Nullable(GoogleSsoPolicy_validator) -GoogleSsoChangePolicyDetails._all_field_names_ = set([ +GoogleSsoChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} GoogleSsoChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} GoogleSsoChangePolicyType._all_fields_ = [('description', GoogleSsoChangePolicyType.description.validator)] GoogleSsoPolicy._disabled_validator = bv.Void() @@ -82146,13 +82144,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GovernancePolicyAddFolderFailedDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', 'folder', 'reason', -]) +} GovernancePolicyAddFolderFailedDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyAddFolderFailedDetails.governance_policy_id.validator), ('name', GovernancePolicyAddFolderFailedDetails.name.validator), @@ -82162,19 +82160,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyAddFolderFailedType.description.validator = bv.String() -GovernancePolicyAddFolderFailedType._all_field_names_ = set(['description']) +GovernancePolicyAddFolderFailedType._all_field_names_ = {'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([ +GovernancePolicyAddFoldersDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', 'folders', -]) +} GovernancePolicyAddFoldersDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyAddFoldersDetails.governance_policy_id.validator), ('name', GovernancePolicyAddFoldersDetails.name.validator), @@ -82183,19 +82181,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyAddFoldersType.description.validator = bv.String() -GovernancePolicyAddFoldersType._all_field_names_ = set(['description']) +GovernancePolicyAddFoldersType._all_field_names_ = {'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([ +GovernancePolicyContentDisposedDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', 'disposition_type', -]) +} GovernancePolicyContentDisposedDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyContentDisposedDetails.governance_policy_id.validator), ('name', GovernancePolicyContentDisposedDetails.name.validator), @@ -82204,7 +82202,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyContentDisposedType.description.validator = bv.String() -GovernancePolicyContentDisposedType._all_field_names_ = set(['description']) +GovernancePolicyContentDisposedType._all_field_names_ = {'description'} GovernancePolicyContentDisposedType._all_fields_ = [('description', GovernancePolicyContentDisposedType.description.validator)] GovernancePolicyCreateDetails.governance_policy_id.validator = bv.String() @@ -82212,13 +82210,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GovernancePolicyCreateDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', 'duration', 'folders', -]) +} GovernancePolicyCreateDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyCreateDetails.governance_policy_id.validator), ('name', GovernancePolicyCreateDetails.name.validator), @@ -82228,17 +82226,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyCreateType.description.validator = bv.String() -GovernancePolicyCreateType._all_field_names_ = set(['description']) +GovernancePolicyCreateType._all_field_names_ = {'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([ +GovernancePolicyDeleteDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', -]) +} GovernancePolicyDeleteDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyDeleteDetails.governance_policy_id.validator), ('name', GovernancePolicyDeleteDetails.name.validator), @@ -82246,7 +82244,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyDeleteType.description.validator = bv.String() -GovernancePolicyDeleteType._all_field_names_ = set(['description']) +GovernancePolicyDeleteType._all_field_names_ = {'description'} GovernancePolicyDeleteType._all_fields_ = [('description', GovernancePolicyDeleteType.description.validator)] GovernancePolicyEditDetailsDetails.governance_policy_id.validator = bv.String() @@ -82255,14 +82253,14 @@ 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([ +GovernancePolicyEditDetailsDetails._all_field_names_ = { '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), @@ -82273,7 +82271,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyEditDetailsType.description.validator = bv.String() -GovernancePolicyEditDetailsType._all_field_names_ = set(['description']) +GovernancePolicyEditDetailsType._all_field_names_ = {'description'} GovernancePolicyEditDetailsType._all_fields_ = [('description', GovernancePolicyEditDetailsType.description.validator)] GovernancePolicyEditDurationDetails.governance_policy_id.validator = bv.String() @@ -82281,13 +82279,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GovernancePolicyEditDurationDetails._all_field_names_ = { '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), @@ -82297,19 +82295,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyEditDurationType.description.validator = bv.String() -GovernancePolicyEditDurationType._all_field_names_ = set(['description']) +GovernancePolicyEditDurationType._all_field_names_ = {'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([ +GovernancePolicyExportCreatedDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', 'export_name', -]) +} GovernancePolicyExportCreatedDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyExportCreatedDetails.governance_policy_id.validator), ('name', GovernancePolicyExportCreatedDetails.name.validator), @@ -82318,19 +82316,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyExportCreatedType.description.validator = bv.String() -GovernancePolicyExportCreatedType._all_field_names_ = set(['description']) +GovernancePolicyExportCreatedType._all_field_names_ = {'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([ +GovernancePolicyExportRemovedDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', 'export_name', -]) +} GovernancePolicyExportRemovedDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyExportRemovedDetails.governance_policy_id.validator), ('name', GovernancePolicyExportRemovedDetails.name.validator), @@ -82339,7 +82337,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyExportRemovedType.description.validator = bv.String() -GovernancePolicyExportRemovedType._all_field_names_ = set(['description']) +GovernancePolicyExportRemovedType._all_field_names_ = {'description'} GovernancePolicyExportRemovedType._all_fields_ = [('description', GovernancePolicyExportRemovedType.description.validator)] GovernancePolicyRemoveFoldersDetails.governance_policy_id.validator = bv.String() @@ -82347,13 +82345,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GovernancePolicyRemoveFoldersDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', 'folders', 'reason', -]) +} GovernancePolicyRemoveFoldersDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyRemoveFoldersDetails.governance_policy_id.validator), ('name', GovernancePolicyRemoveFoldersDetails.name.validator), @@ -82363,17 +82361,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyRemoveFoldersType.description.validator = bv.String() -GovernancePolicyRemoveFoldersType._all_field_names_ = set(['description']) +GovernancePolicyRemoveFoldersType._all_field_names_ = {'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([ +GovernancePolicyReportCreatedDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', -]) +} GovernancePolicyReportCreatedDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyReportCreatedDetails.governance_policy_id.validator), ('name', GovernancePolicyReportCreatedDetails.name.validator), @@ -82381,7 +82379,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyReportCreatedType.description.validator = bv.String() -GovernancePolicyReportCreatedType._all_field_names_ = set(['description']) +GovernancePolicyReportCreatedType._all_field_names_ = {'description'} GovernancePolicyReportCreatedType._all_fields_ = [('description', GovernancePolicyReportCreatedType.description.validator)] GovernancePolicyZipPartDownloadedDetails.governance_policy_id.validator = bv.String() @@ -82389,13 +82387,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +GovernancePolicyZipPartDownloadedDetails._all_field_names_ = { 'governance_policy_id', 'name', 'policy_type', 'export_name', 'part', -]) +} GovernancePolicyZipPartDownloadedDetails._all_fields_ = [ ('governance_policy_id', GovernancePolicyZipPartDownloadedDetails.governance_policy_id.validator), ('name', GovernancePolicyZipPartDownloadedDetails.name.validator), @@ -82405,91 +82403,91 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GovernancePolicyZipPartDownloadedType.description.validator = bv.String() -GovernancePolicyZipPartDownloadedType._all_field_names_ = set(['description']) +GovernancePolicyZipPartDownloadedType._all_field_names_ = {'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_field_names_ = {'new_value'} GroupAddExternalIdDetails._all_fields_ = [('new_value', GroupAddExternalIdDetails.new_value.validator)] GroupAddExternalIdType.description.validator = bv.String() -GroupAddExternalIdType._all_field_names_ = set(['description']) +GroupAddExternalIdType._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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([ +GroupChangeExternalIdDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} GroupChangeExternalIdDetails._all_fields_ = [ ('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_field_names_ = {'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([ +GroupChangeManagementTypeDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} GroupChangeManagementTypeDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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([ +GroupCreateDetails._all_field_names_ = { 'is_company_managed', 'join_policy', -]) +} GroupCreateDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} GroupDeleteType._all_fields_ = [('description', GroupDeleteType.description.validator)] -GroupDescriptionUpdatedDetails._all_field_names_ = set([]) +GroupDescriptionUpdatedDetails._all_field_names_ = set() GroupDescriptionUpdatedDetails._all_fields_ = [] GroupDescriptionUpdatedType.description.validator = bv.String() -GroupDescriptionUpdatedType._all_field_names_ = set(['description']) +GroupDescriptionUpdatedType._all_field_names_ = {'description'} GroupDescriptionUpdatedType._all_fields_ = [('description', GroupDescriptionUpdatedType.description.validator)] GroupJoinPolicy._open_validator = bv.Void() @@ -82507,83 +82505,83 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GroupJoinPolicyUpdatedDetails.is_company_managed.validator = bv.Nullable(bv.Boolean()) GroupJoinPolicyUpdatedDetails.join_policy.validator = bv.Nullable(GroupJoinPolicy_validator) -GroupJoinPolicyUpdatedDetails._all_field_names_ = set([ +GroupJoinPolicyUpdatedDetails._all_field_names_ = { 'is_company_managed', 'join_policy', -]) +} GroupJoinPolicyUpdatedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +GroupLogInfo._all_field_names_ = { '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), ] -GroupMovedDetails._all_field_names_ = set([]) +GroupMovedDetails._all_field_names_ = set() GroupMovedDetails._all_fields_ = [] GroupMovedType.description.validator = bv.String() -GroupMovedType._all_field_names_ = set(['description']) +GroupMovedType._all_field_names_ = {'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_field_names_ = {'previous_value'} GroupRemoveExternalIdDetails._all_fields_ = [('previous_value', GroupRemoveExternalIdDetails.previous_value.validator)] GroupRemoveExternalIdType.description.validator = bv.String() -GroupRemoveExternalIdType._all_field_names_ = set(['description']) +GroupRemoveExternalIdType._all_field_names_ = {'description'} GroupRemoveExternalIdType._all_fields_ = [('description', GroupRemoveExternalIdType.description.validator)] -GroupRemoveMemberDetails._all_field_names_ = set([]) +GroupRemoveMemberDetails._all_field_names_ = set() GroupRemoveMemberDetails._all_fields_ = [] GroupRemoveMemberType.description.validator = bv.String() -GroupRemoveMemberType._all_field_names_ = set(['description']) +GroupRemoveMemberType._all_field_names_ = {'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([ +GroupRenameDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} GroupRenameDetails._all_fields_ = [ ('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_field_names_ = {'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([ +GroupUserManagementChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} GroupUserManagementChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} GroupUserManagementChangePolicyType._all_fields_ = [('description', GroupUserManagementChangePolicyType.description.validator)] GuestAdminChangeStatusDetails.is_guest.validator = bv.Boolean() @@ -82592,14 +82590,14 @@ 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([ +GuestAdminChangeStatusDetails._all_field_names_ = { '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), @@ -82610,37 +82608,37 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] GuestAdminChangeStatusType.description.validator = bv.String() -GuestAdminChangeStatusType._all_field_names_ = set(['description']) +GuestAdminChangeStatusType._all_field_names_ = {'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([ +GuestAdminSignedInViaTrustedTeamsDetails._all_field_names_ = { 'team_name', 'trusted_team_name', -]) +} GuestAdminSignedInViaTrustedTeamsDetails._all_fields_ = [ ('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_field_names_ = {'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([ +GuestAdminSignedOutViaTrustedTeamsDetails._all_field_names_ = { 'team_name', 'trusted_team_name', -]) +} GuestAdminSignedOutViaTrustedTeamsDetails._all_fields_ = [ ('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_field_names_ = {'description'} GuestAdminSignedOutViaTrustedTeamsType._all_fields_ = [('description', GuestAdminSignedOutViaTrustedTeamsType.description.validator)] IdentifierType._email_validator = bv.Void() @@ -82657,19 +82655,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): IdentifierType.other = IdentifierType('other') IntegrationConnectedDetails.integration_name.validator = bv.String() -IntegrationConnectedDetails._all_field_names_ = set(['integration_name']) +IntegrationConnectedDetails._all_field_names_ = {'integration_name'} IntegrationConnectedDetails._all_fields_ = [('integration_name', IntegrationConnectedDetails.integration_name.validator)] IntegrationConnectedType.description.validator = bv.String() -IntegrationConnectedType._all_field_names_ = set(['description']) +IntegrationConnectedType._all_field_names_ = {'description'} IntegrationConnectedType._all_fields_ = [('description', IntegrationConnectedType.description.validator)] IntegrationDisconnectedDetails.integration_name.validator = bv.String() -IntegrationDisconnectedDetails._all_field_names_ = set(['integration_name']) +IntegrationDisconnectedDetails._all_field_names_ = {'integration_name'} IntegrationDisconnectedDetails._all_fields_ = [('integration_name', IntegrationDisconnectedDetails.integration_name.validator)] IntegrationDisconnectedType.description.validator = bv.String() -IntegrationDisconnectedType._all_field_names_ = set(['description']) +IntegrationDisconnectedType._all_field_names_ = {'description'} IntegrationDisconnectedType._all_fields_ = [('description', IntegrationDisconnectedType.description.validator)] IntegrationPolicy._disabled_validator = bv.Void() @@ -82688,11 +82686,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): IntegrationPolicyChangedDetails.integration_name.validator = bv.String() IntegrationPolicyChangedDetails.new_value.validator = IntegrationPolicy_validator IntegrationPolicyChangedDetails.previous_value.validator = IntegrationPolicy_validator -IntegrationPolicyChangedDetails._all_field_names_ = set([ +IntegrationPolicyChangedDetails._all_field_names_ = { 'integration_name', 'new_value', 'previous_value', -]) +} IntegrationPolicyChangedDetails._all_fields_ = [ ('integration_name', IntegrationPolicyChangedDetails.integration_name.validator), ('new_value', IntegrationPolicyChangedDetails.new_value.validator), @@ -82700,7 +82698,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] IntegrationPolicyChangedType.description.validator = bv.String() -IntegrationPolicyChangedType._all_field_names_ = set(['description']) +IntegrationPolicyChangedType._all_field_names_ = {'description'} IntegrationPolicyChangedType._all_fields_ = [('description', IntegrationPolicyChangedType.description.validator)] InviteAcceptanceEmailPolicy._disabled_validator = bv.Void() @@ -82718,17 +82716,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): InviteAcceptanceEmailPolicyChangedDetails.new_value.validator = InviteAcceptanceEmailPolicy_validator InviteAcceptanceEmailPolicyChangedDetails.previous_value.validator = InviteAcceptanceEmailPolicy_validator -InviteAcceptanceEmailPolicyChangedDetails._all_field_names_ = set([ +InviteAcceptanceEmailPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} InviteAcceptanceEmailPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} InviteAcceptanceEmailPolicyChangedType._all_fields_ = [('description', InviteAcceptanceEmailPolicyChangedType.description.validator)] InviteMethod._auto_approve_validator = bv.Void() @@ -82759,7 +82757,7 @@ 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([ +JoinTeamDetails._all_field_names_ = { 'linked_apps', 'linked_devices', 'linked_shared_folders', @@ -82769,7 +82767,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): '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), @@ -82807,7 +82805,7 @@ 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([ +LegacyDeviceSessionLogInfo._field_names_ = { 'session_info', 'display_name', 'is_emm_managed', @@ -82817,7 +82815,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): '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), @@ -82836,12 +82834,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +LegalHoldsActivateAHoldDetails._all_field_names_ = { 'legal_hold_id', 'name', 'start_date', 'end_date', -]) +} LegalHoldsActivateAHoldDetails._all_fields_ = [ ('legal_hold_id', LegalHoldsActivateAHoldDetails.legal_hold_id.validator), ('name', LegalHoldsActivateAHoldDetails.name.validator), @@ -82850,34 +82848,34 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LegalHoldsActivateAHoldType.description.validator = bv.String() -LegalHoldsActivateAHoldType._all_field_names_ = set(['description']) +LegalHoldsActivateAHoldType._all_field_names_ = {'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([ +LegalHoldsAddMembersDetails._all_field_names_ = { 'legal_hold_id', 'name', -]) +} LegalHoldsAddMembersDetails._all_fields_ = [ ('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_field_names_ = {'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([ +LegalHoldsChangeHoldDetailsDetails._all_field_names_ = { 'legal_hold_id', 'name', 'previous_value', 'new_value', -]) +} LegalHoldsChangeHoldDetailsDetails._all_fields_ = [ ('legal_hold_id', LegalHoldsChangeHoldDetailsDetails.legal_hold_id.validator), ('name', LegalHoldsChangeHoldDetailsDetails.name.validator), @@ -82886,17 +82884,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LegalHoldsChangeHoldDetailsType.description.validator = bv.String() -LegalHoldsChangeHoldDetailsType._all_field_names_ = set(['description']) +LegalHoldsChangeHoldDetailsType._all_field_names_ = {'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([ +LegalHoldsChangeHoldNameDetails._all_field_names_ = { 'legal_hold_id', 'previous_value', 'new_value', -]) +} LegalHoldsChangeHoldNameDetails._all_fields_ = [ ('legal_hold_id', LegalHoldsChangeHoldNameDetails.legal_hold_id.validator), ('previous_value', LegalHoldsChangeHoldNameDetails.previous_value.validator), @@ -82904,17 +82902,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LegalHoldsChangeHoldNameType.description.validator = bv.String() -LegalHoldsChangeHoldNameType._all_field_names_ = set(['description']) +LegalHoldsChangeHoldNameType._all_field_names_ = {'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([ +LegalHoldsExportAHoldDetails._all_field_names_ = { 'legal_hold_id', 'name', 'export_name', -]) +} LegalHoldsExportAHoldDetails._all_fields_ = [ ('legal_hold_id', LegalHoldsExportAHoldDetails.legal_hold_id.validator), ('name', LegalHoldsExportAHoldDetails.name.validator), @@ -82922,17 +82920,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LegalHoldsExportAHoldType.description.validator = bv.String() -LegalHoldsExportAHoldType._all_field_names_ = set(['description']) +LegalHoldsExportAHoldType._all_field_names_ = {'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([ +LegalHoldsExportCancelledDetails._all_field_names_ = { 'legal_hold_id', 'name', 'export_name', -]) +} LegalHoldsExportCancelledDetails._all_fields_ = [ ('legal_hold_id', LegalHoldsExportCancelledDetails.legal_hold_id.validator), ('name', LegalHoldsExportCancelledDetails.name.validator), @@ -82940,7 +82938,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LegalHoldsExportCancelledType.description.validator = bv.String() -LegalHoldsExportCancelledType._all_field_names_ = set(['description']) +LegalHoldsExportCancelledType._all_field_names_ = {'description'} LegalHoldsExportCancelledType._all_fields_ = [('description', LegalHoldsExportCancelledType.description.validator)] LegalHoldsExportDownloadedDetails.legal_hold_id.validator = bv.String() @@ -82948,13 +82946,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +LegalHoldsExportDownloadedDetails._all_field_names_ = { 'legal_hold_id', 'name', 'export_name', 'part', 'file_name', -]) +} LegalHoldsExportDownloadedDetails._all_fields_ = [ ('legal_hold_id', LegalHoldsExportDownloadedDetails.legal_hold_id.validator), ('name', LegalHoldsExportDownloadedDetails.name.validator), @@ -82964,17 +82962,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LegalHoldsExportDownloadedType.description.validator = bv.String() -LegalHoldsExportDownloadedType._all_field_names_ = set(['description']) +LegalHoldsExportDownloadedType._all_field_names_ = {'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([ +LegalHoldsExportRemovedDetails._all_field_names_ = { 'legal_hold_id', 'name', 'export_name', -]) +} LegalHoldsExportRemovedDetails._all_fields_ = [ ('legal_hold_id', LegalHoldsExportRemovedDetails.legal_hold_id.validator), ('name', LegalHoldsExportRemovedDetails.name.validator), @@ -82982,52 +82980,52 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LegalHoldsExportRemovedType.description.validator = bv.String() -LegalHoldsExportRemovedType._all_field_names_ = set(['description']) +LegalHoldsExportRemovedType._all_field_names_ = {'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([ +LegalHoldsReleaseAHoldDetails._all_field_names_ = { 'legal_hold_id', 'name', -]) +} LegalHoldsReleaseAHoldDetails._all_fields_ = [ ('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_field_names_ = {'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([ +LegalHoldsRemoveMembersDetails._all_field_names_ = { 'legal_hold_id', 'name', -]) +} LegalHoldsRemoveMembersDetails._all_fields_ = [ ('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_field_names_ = {'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([ +LegalHoldsReportAHoldDetails._all_field_names_ = { 'legal_hold_id', 'name', -]) +} LegalHoldsReportAHoldDetails._all_fields_ = [ ('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_field_names_ = {'description'} LegalHoldsReportAHoldType._all_fields_ = [('description', LegalHoldsReportAHoldType.description.validator)] LinkedDeviceLogInfo._desktop_device_session_validator = DesktopDeviceSessionLogInfo_validator @@ -83061,11 +83059,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +LoginFailDetails._all_field_names_ = { 'is_emm_managed', 'login_method', 'error_details', -]) +} LoginFailDetails._all_fields_ = [ ('is_emm_managed', LoginFailDetails.is_emm_managed.validator), ('login_method', LoginFailDetails.login_method.validator), @@ -83073,7 +83071,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] LoginFailType.description.validator = bv.String() -LoginFailType._all_field_names_ = set(['description']) +LoginFailType._all_field_names_ = {'description'} LoginFailType._all_fields_ = [('description', LoginFailType.description.validator)] LoginMethod._apple_oauth_validator = bv.Void() @@ -83112,131 +83110,131 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): LoginSuccessDetails.is_emm_managed.validator = bv.Nullable(bv.Boolean()) LoginSuccessDetails.login_method.validator = LoginMethod_validator -LoginSuccessDetails._all_field_names_ = set([ +LoginSuccessDetails._all_field_names_ = { 'is_emm_managed', 'login_method', -]) +} LoginSuccessDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'login_id'} LogoutDetails._all_fields_ = [('login_id', LogoutDetails.login_id.validator)] LogoutType.description.validator = bv.String() -LogoutType._all_field_names_ = set(['description']) +LogoutType._all_field_names_ = {'description'} LogoutType._all_fields_ = [('description', LogoutType.description.validator)] MemberAddExternalIdDetails.new_value.validator = team_common.MemberExternalId_validator -MemberAddExternalIdDetails._all_field_names_ = set(['new_value']) +MemberAddExternalIdDetails._all_field_names_ = {'new_value'} MemberAddExternalIdDetails._all_fields_ = [('new_value', MemberAddExternalIdDetails.new_value.validator)] MemberAddExternalIdType.description.validator = bv.String() -MemberAddExternalIdType._all_field_names_ = set(['description']) +MemberAddExternalIdType._all_field_names_ = {'description'} MemberAddExternalIdType._all_fields_ = [('description', MemberAddExternalIdType.description.validator)] MemberAddNameDetails.new_value.validator = UserNameLogInfo_validator -MemberAddNameDetails._all_field_names_ = set(['new_value']) +MemberAddNameDetails._all_field_names_ = {'new_value'} MemberAddNameDetails._all_fields_ = [('new_value', MemberAddNameDetails.new_value.validator)] MemberAddNameType.description.validator = bv.String() -MemberAddNameType._all_field_names_ = set(['description']) +MemberAddNameType._all_field_names_ = {'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([ +MemberChangeAdminRoleDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} MemberChangeAdminRoleDetails._all_fields_ = [ ('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_field_names_ = {'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([ +MemberChangeEmailDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} MemberChangeEmailDetails._all_fields_ = [ ('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_field_names_ = {'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([ +MemberChangeExternalIdDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} MemberChangeExternalIdDetails._all_fields_ = [ ('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_field_names_ = {'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([ +MemberChangeMembershipTypeDetails._all_field_names_ = { 'prev_value', 'new_value', -]) +} MemberChangeMembershipTypeDetails._all_fields_ = [ ('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_field_names_ = {'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([ +MemberChangeNameDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} MemberChangeNameDetails._all_fields_ = [ ('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_field_names_ = {'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([ +MemberChangeResellerRoleDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} MemberChangeResellerRoleDetails._all_fields_ = [ ('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_field_names_ = {'description'} MemberChangeResellerRoleType._all_fields_ = [('description', MemberChangeResellerRoleType.description.validator)] MemberChangeStatusDetails.previous_value.validator = bv.Nullable(MemberStatus_validator) @@ -83244,13 +83242,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +MemberChangeStatusDetails._all_field_names_ = { 'previous_value', 'new_value', 'action', 'new_team', 'previous_team', -]) +} MemberChangeStatusDetails._all_fields_ = [ ('previous_value', MemberChangeStatusDetails.previous_value.validator), ('new_value', MemberChangeStatusDetails.new_value.validator), @@ -83260,28 +83258,28 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] MemberChangeStatusType.description.validator = bv.String() -MemberChangeStatusType._all_field_names_ = set(['description']) +MemberChangeStatusType._all_field_names_ = {'description'} MemberChangeStatusType._all_fields_ = [('description', MemberChangeStatusType.description.validator)] -MemberDeleteManualContactsDetails._all_field_names_ = set([]) +MemberDeleteManualContactsDetails._all_field_names_ = set() MemberDeleteManualContactsDetails._all_fields_ = [] MemberDeleteManualContactsType.description.validator = bv.String() -MemberDeleteManualContactsType._all_field_names_ = set(['description']) +MemberDeleteManualContactsType._all_field_names_ = {'description'} MemberDeleteManualContactsType._all_fields_ = [('description', MemberDeleteManualContactsType.description.validator)] -MemberDeleteProfilePhotoDetails._all_field_names_ = set([]) +MemberDeleteProfilePhotoDetails._all_field_names_ = set() MemberDeleteProfilePhotoDetails._all_fields_ = [] MemberDeleteProfilePhotoType.description.validator = bv.String() -MemberDeleteProfilePhotoType._all_field_names_ = set(['description']) +MemberDeleteProfilePhotoType._all_field_names_ = {'description'} MemberDeleteProfilePhotoType._all_fields_ = [('description', MemberDeleteProfilePhotoType.description.validator)] -MemberPermanentlyDeleteAccountContentsDetails._all_field_names_ = set([]) +MemberPermanentlyDeleteAccountContentsDetails._all_field_names_ = set() MemberPermanentlyDeleteAccountContentsDetails._all_fields_ = [] MemberPermanentlyDeleteAccountContentsType.description.validator = bv.String() -MemberPermanentlyDeleteAccountContentsType._all_field_names_ = set(['description']) +MemberPermanentlyDeleteAccountContentsType._all_field_names_ = {'description'} MemberPermanentlyDeleteAccountContentsType._all_fields_ = [('description', MemberPermanentlyDeleteAccountContentsType.description.validator)] MemberRemoveActionType._delete_validator = bv.Void() @@ -83304,26 +83302,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberRemoveActionType.other = MemberRemoveActionType('other') MemberRemoveExternalIdDetails.previous_value.validator = team_common.MemberExternalId_validator -MemberRemoveExternalIdDetails._all_field_names_ = set(['previous_value']) +MemberRemoveExternalIdDetails._all_field_names_ = {'previous_value'} MemberRemoveExternalIdDetails._all_fields_ = [('previous_value', MemberRemoveExternalIdDetails.previous_value.validator)] MemberRemoveExternalIdType.description.validator = bv.String() -MemberRemoveExternalIdType._all_field_names_ = set(['description']) +MemberRemoveExternalIdType._all_field_names_ = {'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([ +MemberRequestsChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} MemberRequestsChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} MemberRequestsChangePolicyType._all_fields_ = [('description', MemberRequestsChangePolicyType.description.validator)] MemberRequestsPolicy._auto_accept_validator = bv.Void() @@ -83360,113 +83358,113 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberSendInvitePolicyChangedDetails.new_value.validator = MemberSendInvitePolicy_validator MemberSendInvitePolicyChangedDetails.previous_value.validator = MemberSendInvitePolicy_validator -MemberSendInvitePolicyChangedDetails._all_field_names_ = set([ +MemberSendInvitePolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} MemberSendInvitePolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} MemberSendInvitePolicyChangedType._all_fields_ = [('description', MemberSendInvitePolicyChangedType.description.validator)] -MemberSetProfilePhotoDetails._all_field_names_ = set([]) +MemberSetProfilePhotoDetails._all_field_names_ = set() MemberSetProfilePhotoDetails._all_fields_ = [] MemberSetProfilePhotoType.description.validator = bv.String() -MemberSetProfilePhotoType._all_field_names_ = set(['description']) +MemberSetProfilePhotoType._all_field_names_ = {'description'} MemberSetProfilePhotoType._all_fields_ = [('description', MemberSetProfilePhotoType.description.validator)] MemberSpaceLimitsAddCustomQuotaDetails.new_value.validator = bv.UInt64() -MemberSpaceLimitsAddCustomQuotaDetails._all_field_names_ = set(['new_value']) +MemberSpaceLimitsAddCustomQuotaDetails._all_field_names_ = {'new_value'} MemberSpaceLimitsAddCustomQuotaDetails._all_fields_ = [('new_value', MemberSpaceLimitsAddCustomQuotaDetails.new_value.validator)] MemberSpaceLimitsAddCustomQuotaType.description.validator = bv.String() -MemberSpaceLimitsAddCustomQuotaType._all_field_names_ = set(['description']) +MemberSpaceLimitsAddCustomQuotaType._all_field_names_ = {'description'} MemberSpaceLimitsAddCustomQuotaType._all_fields_ = [('description', MemberSpaceLimitsAddCustomQuotaType.description.validator)] -MemberSpaceLimitsAddExceptionDetails._all_field_names_ = set([]) +MemberSpaceLimitsAddExceptionDetails._all_field_names_ = set() MemberSpaceLimitsAddExceptionDetails._all_fields_ = [] MemberSpaceLimitsAddExceptionType.description.validator = bv.String() -MemberSpaceLimitsAddExceptionType._all_field_names_ = set(['description']) +MemberSpaceLimitsAddExceptionType._all_field_names_ = {'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([ +MemberSpaceLimitsChangeCapsTypePolicyDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} MemberSpaceLimitsChangeCapsTypePolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +MemberSpaceLimitsChangeCustomQuotaDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} MemberSpaceLimitsChangeCustomQuotaDetails._all_fields_ = [ ('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_field_names_ = {'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([ +MemberSpaceLimitsChangePolicyDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} MemberSpaceLimitsChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +MemberSpaceLimitsChangeStatusDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} MemberSpaceLimitsChangeStatusDetails._all_fields_ = [ ('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_field_names_ = {'description'} MemberSpaceLimitsChangeStatusType._all_fields_ = [('description', MemberSpaceLimitsChangeStatusType.description.validator)] -MemberSpaceLimitsRemoveCustomQuotaDetails._all_field_names_ = set([]) +MemberSpaceLimitsRemoveCustomQuotaDetails._all_field_names_ = set() MemberSpaceLimitsRemoveCustomQuotaDetails._all_fields_ = [] MemberSpaceLimitsRemoveCustomQuotaType.description.validator = bv.String() -MemberSpaceLimitsRemoveCustomQuotaType._all_field_names_ = set(['description']) +MemberSpaceLimitsRemoveCustomQuotaType._all_field_names_ = {'description'} MemberSpaceLimitsRemoveCustomQuotaType._all_fields_ = [('description', MemberSpaceLimitsRemoveCustomQuotaType.description.validator)] -MemberSpaceLimitsRemoveExceptionDetails._all_field_names_ = set([]) +MemberSpaceLimitsRemoveExceptionDetails._all_field_names_ = set() MemberSpaceLimitsRemoveExceptionDetails._all_fields_ = [] MemberSpaceLimitsRemoveExceptionType.description.validator = bv.String() -MemberSpaceLimitsRemoveExceptionType._all_field_names_ = set(['description']) +MemberSpaceLimitsRemoveExceptionType._all_field_names_ = {'description'} MemberSpaceLimitsRemoveExceptionType._all_fields_ = [('description', MemberSpaceLimitsRemoveExceptionType.description.validator)] MemberStatus._active_validator = bv.Void() @@ -83495,26 +83493,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberStatus.other = MemberStatus('other') MemberSuggestDetails.suggested_members.validator = bv.List(EmailAddress_validator) -MemberSuggestDetails._all_field_names_ = set(['suggested_members']) +MemberSuggestDetails._all_field_names_ = {'suggested_members'} MemberSuggestDetails._all_fields_ = [('suggested_members', MemberSuggestDetails.suggested_members.validator)] MemberSuggestType.description.validator = bv.String() -MemberSuggestType._all_field_names_ = set(['description']) +MemberSuggestType._all_field_names_ = {'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([ +MemberSuggestionsChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} MemberSuggestionsChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} MemberSuggestionsChangePolicyType._all_fields_ = [('description', MemberSuggestionsChangePolicyType.description.validator)] MemberSuggestionsPolicy._disabled_validator = bv.Void() @@ -83530,19 +83528,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MemberSuggestionsPolicy.enabled = MemberSuggestionsPolicy('enabled') MemberSuggestionsPolicy.other = MemberSuggestionsPolicy('other') -MemberTransferAccountContentsDetails._all_field_names_ = set([]) +MemberTransferAccountContentsDetails._all_field_names_ = set() MemberTransferAccountContentsDetails._all_fields_ = [] MemberTransferAccountContentsType.description.validator = bv.String() -MemberTransferAccountContentsType._all_field_names_ = set(['description']) +MemberTransferAccountContentsType._all_field_names_ = {'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([ +MemberTransferredInternalFields._all_field_names_ = { '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), @@ -83550,17 +83548,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MicrosoftOfficeAddinChangePolicyDetails.new_value.validator = MicrosoftOfficeAddinPolicy_validator MicrosoftOfficeAddinChangePolicyDetails.previous_value.validator = bv.Nullable(MicrosoftOfficeAddinPolicy_validator) -MicrosoftOfficeAddinChangePolicyDetails._all_field_names_ = set([ +MicrosoftOfficeAddinChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} MicrosoftOfficeAddinChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} MicrosoftOfficeAddinChangePolicyType._all_fields_ = [('description', MicrosoftOfficeAddinChangePolicyType.description.validator)] MicrosoftOfficeAddinPolicy._disabled_validator = bv.Void() @@ -83577,7 +83575,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): MicrosoftOfficeAddinPolicy.other = MicrosoftOfficeAddinPolicy('other') MissingDetails.source_event_fields.validator = bv.Nullable(bv.String()) -MissingDetails._all_field_names_ = set(['source_event_fields']) +MissingDetails._all_field_names_ = {'source_event_fields'} MissingDetails._all_fields_ = [('source_event_fields', MissingDetails.source_event_fields.validator)] MobileDeviceSessionLogInfo.session_info.validator = bv.Nullable(MobileSessionLogInfo_validator) @@ -83586,14 +83584,14 @@ 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([ +MobileDeviceSessionLogInfo._field_names_ = { '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), @@ -83605,7 +83603,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] MobileDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + MobileDeviceSessionLogInfo._fields_ -MobileSessionLogInfo._field_names_ = set([]) +MobileSessionLogInfo._field_names_ = set() MobileSessionLogInfo._all_field_names_ = SessionLogInfo._all_field_names_.union(MobileSessionLogInfo._field_names_) MobileSessionLogInfo._fields_ = [] MobileSessionLogInfo._all_fields_ = SessionLogInfo._all_fields_ + MobileSessionLogInfo._fields_ @@ -83613,11 +83611,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +NamespaceRelativePathLogInfo._all_field_names_ = { 'ns_id', 'relative_path', 'is_shared_namespace', -]) +} NamespaceRelativePathLogInfo._all_fields_ = [ ('ns_id', NamespaceRelativePathLogInfo.ns_id.validator), ('relative_path', NamespaceRelativePathLogInfo.relative_path.validator), @@ -83626,17 +83624,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): NetworkControlChangePolicyDetails.new_value.validator = NetworkControlPolicy_validator NetworkControlChangePolicyDetails.previous_value.validator = bv.Nullable(NetworkControlPolicy_validator) -NetworkControlChangePolicyDetails._all_field_names_ = set([ +NetworkControlChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} NetworkControlChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} NetworkControlChangePolicyType._all_fields_ = [('description', NetworkControlChangePolicyType.description.validator)] NetworkControlPolicy._disabled_validator = bv.Void() @@ -83654,81 +83652,81 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): NoExpirationLinkGenCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator NoExpirationLinkGenCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -NoExpirationLinkGenCreateReportDetails._all_field_names_ = set([ +NoExpirationLinkGenCreateReportDetails._all_field_names_ = { 'start_date', 'end_date', -]) +} NoExpirationLinkGenCreateReportDetails._all_fields_ = [ ('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_field_names_ = {'description'} NoExpirationLinkGenCreateReportType._all_fields_ = [('description', NoExpirationLinkGenCreateReportType.description.validator)] NoExpirationLinkGenReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -NoExpirationLinkGenReportFailedDetails._all_field_names_ = set(['failure_reason']) +NoExpirationLinkGenReportFailedDetails._all_field_names_ = {'failure_reason'} NoExpirationLinkGenReportFailedDetails._all_fields_ = [('failure_reason', NoExpirationLinkGenReportFailedDetails.failure_reason.validator)] NoExpirationLinkGenReportFailedType.description.validator = bv.String() -NoExpirationLinkGenReportFailedType._all_field_names_ = set(['description']) +NoExpirationLinkGenReportFailedType._all_field_names_ = {'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([ +NoPasswordLinkGenCreateReportDetails._all_field_names_ = { 'start_date', 'end_date', -]) +} NoPasswordLinkGenCreateReportDetails._all_fields_ = [ ('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_field_names_ = {'description'} NoPasswordLinkGenCreateReportType._all_fields_ = [('description', NoPasswordLinkGenCreateReportType.description.validator)] NoPasswordLinkGenReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -NoPasswordLinkGenReportFailedDetails._all_field_names_ = set(['failure_reason']) +NoPasswordLinkGenReportFailedDetails._all_field_names_ = {'failure_reason'} NoPasswordLinkGenReportFailedDetails._all_fields_ = [('failure_reason', NoPasswordLinkGenReportFailedDetails.failure_reason.validator)] NoPasswordLinkGenReportFailedType.description.validator = bv.String() -NoPasswordLinkGenReportFailedType._all_field_names_ = set(['description']) +NoPasswordLinkGenReportFailedType._all_field_names_ = {'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([ +NoPasswordLinkViewCreateReportDetails._all_field_names_ = { 'start_date', 'end_date', -]) +} NoPasswordLinkViewCreateReportDetails._all_fields_ = [ ('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_field_names_ = {'description'} NoPasswordLinkViewCreateReportType._all_fields_ = [('description', NoPasswordLinkViewCreateReportType.description.validator)] NoPasswordLinkViewReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -NoPasswordLinkViewReportFailedDetails._all_field_names_ = set(['failure_reason']) +NoPasswordLinkViewReportFailedDetails._all_field_names_ = {'failure_reason'} NoPasswordLinkViewReportFailedDetails._all_fields_ = [('failure_reason', NoPasswordLinkViewReportFailedDetails.failure_reason.validator)] NoPasswordLinkViewReportFailedType.description.validator = bv.String() -NoPasswordLinkViewReportFailedType._all_field_names_ = set(['description']) +NoPasswordLinkViewReportFailedType._all_field_names_ = {'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([ +UserLogInfo._field_names_ = { 'account_id', 'display_name', 'email', -]) +} UserLogInfo._all_field_names_ = UserLogInfo._field_names_ UserLogInfo._fields_ = [ ('account_id', UserLogInfo.account_id.validator), @@ -83749,102 +83747,102 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): } UserLogInfo._is_catch_all_ = True -NonTeamMemberLogInfo._field_names_ = set([]) +NonTeamMemberLogInfo._field_names_ = set() 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_field_names_ = {'team'} NonTrustedTeamDetails._all_fields_ = [('team', NonTrustedTeamDetails.team.validator)] -NoteAclInviteOnlyDetails._all_field_names_ = set([]) +NoteAclInviteOnlyDetails._all_field_names_ = set() NoteAclInviteOnlyDetails._all_fields_ = [] NoteAclInviteOnlyType.description.validator = bv.String() -NoteAclInviteOnlyType._all_field_names_ = set(['description']) +NoteAclInviteOnlyType._all_field_names_ = {'description'} NoteAclInviteOnlyType._all_fields_ = [('description', NoteAclInviteOnlyType.description.validator)] -NoteAclLinkDetails._all_field_names_ = set([]) +NoteAclLinkDetails._all_field_names_ = set() NoteAclLinkDetails._all_fields_ = [] NoteAclLinkType.description.validator = bv.String() -NoteAclLinkType._all_field_names_ = set(['description']) +NoteAclLinkType._all_field_names_ = {'description'} NoteAclLinkType._all_fields_ = [('description', NoteAclLinkType.description.validator)] -NoteAclTeamLinkDetails._all_field_names_ = set([]) +NoteAclTeamLinkDetails._all_field_names_ = set() NoteAclTeamLinkDetails._all_fields_ = [] NoteAclTeamLinkType.description.validator = bv.String() -NoteAclTeamLinkType._all_field_names_ = set(['description']) +NoteAclTeamLinkType._all_field_names_ = {'description'} NoteAclTeamLinkType._all_fields_ = [('description', NoteAclTeamLinkType.description.validator)] -NoteShareReceiveDetails._all_field_names_ = set([]) +NoteShareReceiveDetails._all_field_names_ = set() NoteShareReceiveDetails._all_fields_ = [] NoteShareReceiveType.description.validator = bv.String() -NoteShareReceiveType._all_field_names_ = set(['description']) +NoteShareReceiveType._all_field_names_ = {'description'} NoteShareReceiveType._all_fields_ = [('description', NoteShareReceiveType.description.validator)] -NoteSharedDetails._all_field_names_ = set([]) +NoteSharedDetails._all_field_names_ = set() NoteSharedDetails._all_fields_ = [] NoteSharedType.description.validator = bv.String() -NoteSharedType._all_field_names_ = set(['description']) +NoteSharedType._all_field_names_ = {'description'} NoteSharedType._all_fields_ = [('description', NoteSharedType.description.validator)] ObjectLabelAddedDetails.label_type.validator = LabelType_validator -ObjectLabelAddedDetails._all_field_names_ = set(['label_type']) +ObjectLabelAddedDetails._all_field_names_ = {'label_type'} ObjectLabelAddedDetails._all_fields_ = [('label_type', ObjectLabelAddedDetails.label_type.validator)] ObjectLabelAddedType.description.validator = bv.String() -ObjectLabelAddedType._all_field_names_ = set(['description']) +ObjectLabelAddedType._all_field_names_ = {'description'} ObjectLabelAddedType._all_fields_ = [('description', ObjectLabelAddedType.description.validator)] ObjectLabelRemovedDetails.label_type.validator = LabelType_validator -ObjectLabelRemovedDetails._all_field_names_ = set(['label_type']) +ObjectLabelRemovedDetails._all_field_names_ = {'label_type'} ObjectLabelRemovedDetails._all_fields_ = [('label_type', ObjectLabelRemovedDetails.label_type.validator)] ObjectLabelRemovedType.description.validator = bv.String() -ObjectLabelRemovedType._all_field_names_ = set(['description']) +ObjectLabelRemovedType._all_field_names_ = {'description'} ObjectLabelRemovedType._all_fields_ = [('description', ObjectLabelRemovedType.description.validator)] ObjectLabelUpdatedValueDetails.label_type.validator = LabelType_validator -ObjectLabelUpdatedValueDetails._all_field_names_ = set(['label_type']) +ObjectLabelUpdatedValueDetails._all_field_names_ = {'label_type'} ObjectLabelUpdatedValueDetails._all_fields_ = [('label_type', ObjectLabelUpdatedValueDetails.label_type.validator)] ObjectLabelUpdatedValueType.description.validator = bv.String() -ObjectLabelUpdatedValueType._all_field_names_ = set(['description']) +ObjectLabelUpdatedValueType._all_field_names_ = {'description'} ObjectLabelUpdatedValueType._all_fields_ = [('description', ObjectLabelUpdatedValueType.description.validator)] -OpenNoteSharedDetails._all_field_names_ = set([]) +OpenNoteSharedDetails._all_field_names_ = set() OpenNoteSharedDetails._all_fields_ = [] OpenNoteSharedType.description.validator = bv.String() -OpenNoteSharedType._all_field_names_ = set(['description']) +OpenNoteSharedType._all_field_names_ = {'description'} OpenNoteSharedType._all_fields_ = [('description', OpenNoteSharedType.description.validator)] OrganizationDetails.organization.validator = bv.String() -OrganizationDetails._all_field_names_ = set(['organization']) +OrganizationDetails._all_field_names_ = {'organization'} OrganizationDetails._all_fields_ = [('organization', OrganizationDetails.organization.validator)] OrganizationName.organization.validator = bv.String() -OrganizationName._all_field_names_ = set(['organization']) +OrganizationName._all_field_names_ = {'organization'} OrganizationName._all_fields_ = [('organization', OrganizationName.organization.validator)] -OrganizeFolderWithTidyDetails._all_field_names_ = set([]) +OrganizeFolderWithTidyDetails._all_field_names_ = set() OrganizeFolderWithTidyDetails._all_fields_ = [] OrganizeFolderWithTidyType.description.validator = bv.String() -OrganizeFolderWithTidyType._all_field_names_ = set(['description']) +OrganizeFolderWithTidyType._all_field_names_ = {'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([ +OriginLogInfo._all_field_names_ = { 'geo_location', 'access_method', -]) +} OriginLogInfo._all_fields_ = [ ('geo_location', OriginLogInfo.geo_location.validator), ('access_method', OriginLogInfo.access_method.validator), @@ -83852,25 +83850,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): OutdatedLinkViewCreateReportDetails.start_date.validator = common.DropboxTimestamp_validator OutdatedLinkViewCreateReportDetails.end_date.validator = common.DropboxTimestamp_validator -OutdatedLinkViewCreateReportDetails._all_field_names_ = set([ +OutdatedLinkViewCreateReportDetails._all_field_names_ = { 'start_date', 'end_date', -]) +} OutdatedLinkViewCreateReportDetails._all_fields_ = [ ('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_field_names_ = {'description'} OutdatedLinkViewCreateReportType._all_fields_ = [('description', OutdatedLinkViewCreateReportType.description.validator)] OutdatedLinkViewReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -OutdatedLinkViewReportFailedDetails._all_field_names_ = set(['failure_reason']) +OutdatedLinkViewReportFailedDetails._all_field_names_ = {'failure_reason'} OutdatedLinkViewReportFailedDetails._all_fields_ = [('failure_reason', OutdatedLinkViewReportFailedDetails.failure_reason.validator)] OutdatedLinkViewReportFailedType.description.validator = bv.String() -OutdatedLinkViewReportFailedType._all_field_names_ = set(['description']) +OutdatedLinkViewReportFailedType._all_field_names_ = {'description'} OutdatedLinkViewReportFailedType._all_fields_ = [('description', OutdatedLinkViewReportFailedType.description.validator)] PaperAccessType._commenter_validator = bv.Void() @@ -83889,82 +83887,82 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperAccessType.viewer = PaperAccessType('viewer') PaperAccessType.other = PaperAccessType('other') -PaperAdminExportStartDetails._all_field_names_ = set([]) +PaperAdminExportStartDetails._all_field_names_ = set() PaperAdminExportStartDetails._all_fields_ = [] PaperAdminExportStartType.description.validator = bv.String() -PaperAdminExportStartType._all_field_names_ = set(['description']) +PaperAdminExportStartType._all_field_names_ = {'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([ +PaperChangeDeploymentPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} PaperChangeDeploymentPolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} PaperChangeDeploymentPolicyType._all_fields_ = [('description', PaperChangeDeploymentPolicyType.description.validator)] PaperChangeMemberLinkPolicyDetails.new_value.validator = PaperMemberPolicy_validator -PaperChangeMemberLinkPolicyDetails._all_field_names_ = set(['new_value']) +PaperChangeMemberLinkPolicyDetails._all_field_names_ = {'new_value'} PaperChangeMemberLinkPolicyDetails._all_fields_ = [('new_value', PaperChangeMemberLinkPolicyDetails.new_value.validator)] PaperChangeMemberLinkPolicyType.description.validator = bv.String() -PaperChangeMemberLinkPolicyType._all_field_names_ = set(['description']) +PaperChangeMemberLinkPolicyType._all_field_names_ = {'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([ +PaperChangeMemberPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} PaperChangeMemberPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +PaperChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} PaperChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} PaperChangePolicyType._all_fields_ = [('description', PaperChangePolicyType.description.validator)] PaperContentAddMemberDetails.event_uuid.validator = bv.String() -PaperContentAddMemberDetails._all_field_names_ = set(['event_uuid']) +PaperContentAddMemberDetails._all_field_names_ = {'event_uuid'} PaperContentAddMemberDetails._all_fields_ = [('event_uuid', PaperContentAddMemberDetails.event_uuid.validator)] PaperContentAddMemberType.description.validator = bv.String() -PaperContentAddMemberType._all_field_names_ = set(['description']) +PaperContentAddMemberType._all_field_names_ = {'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([ +PaperContentAddToFolderDetails._all_field_names_ = { '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), @@ -83972,41 +83970,41 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] PaperContentAddToFolderType.description.validator = bv.String() -PaperContentAddToFolderType._all_field_names_ = set(['description']) +PaperContentAddToFolderType._all_field_names_ = {'description'} PaperContentAddToFolderType._all_fields_ = [('description', PaperContentAddToFolderType.description.validator)] PaperContentArchiveDetails.event_uuid.validator = bv.String() -PaperContentArchiveDetails._all_field_names_ = set(['event_uuid']) +PaperContentArchiveDetails._all_field_names_ = {'event_uuid'} PaperContentArchiveDetails._all_fields_ = [('event_uuid', PaperContentArchiveDetails.event_uuid.validator)] PaperContentArchiveType.description.validator = bv.String() -PaperContentArchiveType._all_field_names_ = set(['description']) +PaperContentArchiveType._all_field_names_ = {'description'} PaperContentArchiveType._all_fields_ = [('description', PaperContentArchiveType.description.validator)] PaperContentCreateDetails.event_uuid.validator = bv.String() -PaperContentCreateDetails._all_field_names_ = set(['event_uuid']) +PaperContentCreateDetails._all_field_names_ = {'event_uuid'} PaperContentCreateDetails._all_fields_ = [('event_uuid', PaperContentCreateDetails.event_uuid.validator)] PaperContentCreateType.description.validator = bv.String() -PaperContentCreateType._all_field_names_ = set(['description']) +PaperContentCreateType._all_field_names_ = {'description'} PaperContentCreateType._all_fields_ = [('description', PaperContentCreateType.description.validator)] PaperContentPermanentlyDeleteDetails.event_uuid.validator = bv.String() -PaperContentPermanentlyDeleteDetails._all_field_names_ = set(['event_uuid']) +PaperContentPermanentlyDeleteDetails._all_field_names_ = {'event_uuid'} PaperContentPermanentlyDeleteDetails._all_fields_ = [('event_uuid', PaperContentPermanentlyDeleteDetails.event_uuid.validator)] PaperContentPermanentlyDeleteType.description.validator = bv.String() -PaperContentPermanentlyDeleteType._all_field_names_ = set(['description']) +PaperContentPermanentlyDeleteType._all_field_names_ = {'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([ +PaperContentRemoveFromFolderDetails._all_field_names_ = { '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), @@ -84014,31 +84012,31 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] PaperContentRemoveFromFolderType.description.validator = bv.String() -PaperContentRemoveFromFolderType._all_field_names_ = set(['description']) +PaperContentRemoveFromFolderType._all_field_names_ = {'description'} PaperContentRemoveFromFolderType._all_fields_ = [('description', PaperContentRemoveFromFolderType.description.validator)] PaperContentRemoveMemberDetails.event_uuid.validator = bv.String() -PaperContentRemoveMemberDetails._all_field_names_ = set(['event_uuid']) +PaperContentRemoveMemberDetails._all_field_names_ = {'event_uuid'} PaperContentRemoveMemberDetails._all_fields_ = [('event_uuid', PaperContentRemoveMemberDetails.event_uuid.validator)] PaperContentRemoveMemberType.description.validator = bv.String() -PaperContentRemoveMemberType._all_field_names_ = set(['description']) +PaperContentRemoveMemberType._all_field_names_ = {'description'} PaperContentRemoveMemberType._all_fields_ = [('description', PaperContentRemoveMemberType.description.validator)] PaperContentRenameDetails.event_uuid.validator = bv.String() -PaperContentRenameDetails._all_field_names_ = set(['event_uuid']) +PaperContentRenameDetails._all_field_names_ = {'event_uuid'} PaperContentRenameDetails._all_fields_ = [('event_uuid', PaperContentRenameDetails.event_uuid.validator)] PaperContentRenameType.description.validator = bv.String() -PaperContentRenameType._all_field_names_ = set(['description']) +PaperContentRenameType._all_field_names_ = {'description'} PaperContentRenameType._all_fields_ = [('description', PaperContentRenameType.description.validator)] PaperContentRestoreDetails.event_uuid.validator = bv.String() -PaperContentRestoreDetails._all_field_names_ = set(['event_uuid']) +PaperContentRestoreDetails._all_field_names_ = {'event_uuid'} PaperContentRestoreDetails._all_fields_ = [('event_uuid', PaperContentRestoreDetails.event_uuid.validator)] PaperContentRestoreType.description.validator = bv.String() -PaperContentRestoreType._all_field_names_ = set(['description']) +PaperContentRestoreType._all_field_names_ = {'description'} PaperContentRestoreType._all_fields_ = [('description', PaperContentRestoreType.description.validator)] PaperDefaultFolderPolicy._everyone_in_team_validator = bv.Void() @@ -84056,17 +84054,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDefaultFolderPolicyChangedDetails.new_value.validator = PaperDefaultFolderPolicy_validator PaperDefaultFolderPolicyChangedDetails.previous_value.validator = PaperDefaultFolderPolicy_validator -PaperDefaultFolderPolicyChangedDetails._all_field_names_ = set([ +PaperDefaultFolderPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} PaperDefaultFolderPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} PaperDefaultFolderPolicyChangedType._all_fields_ = [('description', PaperDefaultFolderPolicyChangedType.description.validator)] PaperDesktopPolicy._disabled_validator = bv.Void() @@ -84084,57 +84082,57 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDesktopPolicyChangedDetails.new_value.validator = PaperDesktopPolicy_validator PaperDesktopPolicyChangedDetails.previous_value.validator = PaperDesktopPolicy_validator -PaperDesktopPolicyChangedDetails._all_field_names_ = set([ +PaperDesktopPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} PaperDesktopPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +PaperDocAddCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} PaperDocAddCommentDetails._all_fields_ = [ ('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_field_names_ = {'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([ +PaperDocChangeMemberRoleDetails._all_field_names_ = { 'event_uuid', 'access_type', -]) +} PaperDocChangeMemberRoleDetails._all_fields_ = [ ('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_field_names_ = {'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([ +PaperDocChangeSharingPolicyDetails._all_field_names_ = { '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), @@ -84142,17 +84140,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] PaperDocChangeSharingPolicyType.description.validator = bv.String() -PaperDocChangeSharingPolicyType._all_field_names_ = set(['description']) +PaperDocChangeSharingPolicyType._all_field_names_ = {'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([ +PaperDocChangeSubscriptionDetails._all_field_names_ = { '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), @@ -84160,94 +84158,94 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] PaperDocChangeSubscriptionType.description.validator = bv.String() -PaperDocChangeSubscriptionType._all_field_names_ = set(['description']) +PaperDocChangeSubscriptionType._all_field_names_ = {'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([ +PaperDocDeleteCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} PaperDocDeleteCommentDetails._all_fields_ = [ ('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_field_names_ = {'description'} PaperDocDeleteCommentType._all_fields_ = [('description', PaperDocDeleteCommentType.description.validator)] PaperDocDeletedDetails.event_uuid.validator = bv.String() -PaperDocDeletedDetails._all_field_names_ = set(['event_uuid']) +PaperDocDeletedDetails._all_field_names_ = {'event_uuid'} PaperDocDeletedDetails._all_fields_ = [('event_uuid', PaperDocDeletedDetails.event_uuid.validator)] PaperDocDeletedType.description.validator = bv.String() -PaperDocDeletedType._all_field_names_ = set(['description']) +PaperDocDeletedType._all_field_names_ = {'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([ +PaperDocDownloadDetails._all_field_names_ = { 'event_uuid', 'export_file_format', -]) +} PaperDocDownloadDetails._all_fields_ = [ ('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_field_names_ = {'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([ +PaperDocEditCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} PaperDocEditCommentDetails._all_fields_ = [ ('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_field_names_ = {'description'} PaperDocEditCommentType._all_fields_ = [('description', PaperDocEditCommentType.description.validator)] PaperDocEditDetails.event_uuid.validator = bv.String() -PaperDocEditDetails._all_field_names_ = set(['event_uuid']) +PaperDocEditDetails._all_field_names_ = {'event_uuid'} PaperDocEditDetails._all_fields_ = [('event_uuid', PaperDocEditDetails.event_uuid.validator)] PaperDocEditType.description.validator = bv.String() -PaperDocEditType._all_field_names_ = set(['description']) +PaperDocEditType._all_field_names_ = {'description'} PaperDocEditType._all_fields_ = [('description', PaperDocEditType.description.validator)] PaperDocFollowedDetails.event_uuid.validator = bv.String() -PaperDocFollowedDetails._all_field_names_ = set(['event_uuid']) +PaperDocFollowedDetails._all_field_names_ = {'event_uuid'} PaperDocFollowedDetails._all_fields_ = [('event_uuid', PaperDocFollowedDetails.event_uuid.validator)] PaperDocFollowedType.description.validator = bv.String() -PaperDocFollowedType._all_field_names_ = set(['description']) +PaperDocFollowedType._all_field_names_ = {'description'} PaperDocFollowedType._all_fields_ = [('description', PaperDocFollowedType.description.validator)] PaperDocMentionDetails.event_uuid.validator = bv.String() -PaperDocMentionDetails._all_field_names_ = set(['event_uuid']) +PaperDocMentionDetails._all_field_names_ = {'event_uuid'} PaperDocMentionDetails._all_fields_ = [('event_uuid', PaperDocMentionDetails.event_uuid.validator)] PaperDocMentionType.description.validator = bv.String() -PaperDocMentionType._all_field_names_ = set(['description']) +PaperDocMentionType._all_field_names_ = {'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.new_owner_user_id.validator = users_common.AccountId_validator -PaperDocOwnershipChangedDetails._all_field_names_ = set([ +PaperDocOwnershipChangedDetails._all_field_names_ = { '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), @@ -84255,101 +84253,101 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] PaperDocOwnershipChangedType.description.validator = bv.String() -PaperDocOwnershipChangedType._all_field_names_ = set(['description']) +PaperDocOwnershipChangedType._all_field_names_ = {'description'} PaperDocOwnershipChangedType._all_fields_ = [('description', PaperDocOwnershipChangedType.description.validator)] PaperDocRequestAccessDetails.event_uuid.validator = bv.String() -PaperDocRequestAccessDetails._all_field_names_ = set(['event_uuid']) +PaperDocRequestAccessDetails._all_field_names_ = {'event_uuid'} PaperDocRequestAccessDetails._all_fields_ = [('event_uuid', PaperDocRequestAccessDetails.event_uuid.validator)] PaperDocRequestAccessType.description.validator = bv.String() -PaperDocRequestAccessType._all_field_names_ = set(['description']) +PaperDocRequestAccessType._all_field_names_ = {'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([ +PaperDocResolveCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} PaperDocResolveCommentDetails._all_fields_ = [ ('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_field_names_ = {'description'} PaperDocResolveCommentType._all_fields_ = [('description', PaperDocResolveCommentType.description.validator)] PaperDocRevertDetails.event_uuid.validator = bv.String() -PaperDocRevertDetails._all_field_names_ = set(['event_uuid']) +PaperDocRevertDetails._all_field_names_ = {'event_uuid'} PaperDocRevertDetails._all_fields_ = [('event_uuid', PaperDocRevertDetails.event_uuid.validator)] PaperDocRevertType.description.validator = bv.String() -PaperDocRevertType._all_field_names_ = set(['description']) +PaperDocRevertType._all_field_names_ = {'description'} PaperDocRevertType._all_fields_ = [('description', PaperDocRevertType.description.validator)] PaperDocSlackShareDetails.event_uuid.validator = bv.String() -PaperDocSlackShareDetails._all_field_names_ = set(['event_uuid']) +PaperDocSlackShareDetails._all_field_names_ = {'event_uuid'} PaperDocSlackShareDetails._all_fields_ = [('event_uuid', PaperDocSlackShareDetails.event_uuid.validator)] PaperDocSlackShareType.description.validator = bv.String() -PaperDocSlackShareType._all_field_names_ = set(['description']) +PaperDocSlackShareType._all_field_names_ = {'description'} PaperDocSlackShareType._all_fields_ = [('description', PaperDocSlackShareType.description.validator)] PaperDocTeamInviteDetails.event_uuid.validator = bv.String() -PaperDocTeamInviteDetails._all_field_names_ = set(['event_uuid']) +PaperDocTeamInviteDetails._all_field_names_ = {'event_uuid'} PaperDocTeamInviteDetails._all_fields_ = [('event_uuid', PaperDocTeamInviteDetails.event_uuid.validator)] PaperDocTeamInviteType.description.validator = bv.String() -PaperDocTeamInviteType._all_field_names_ = set(['description']) +PaperDocTeamInviteType._all_field_names_ = {'description'} PaperDocTeamInviteType._all_fields_ = [('description', PaperDocTeamInviteType.description.validator)] PaperDocTrashedDetails.event_uuid.validator = bv.String() -PaperDocTrashedDetails._all_field_names_ = set(['event_uuid']) +PaperDocTrashedDetails._all_field_names_ = {'event_uuid'} PaperDocTrashedDetails._all_fields_ = [('event_uuid', PaperDocTrashedDetails.event_uuid.validator)] PaperDocTrashedType.description.validator = bv.String() -PaperDocTrashedType._all_field_names_ = set(['description']) +PaperDocTrashedType._all_field_names_ = {'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([ +PaperDocUnresolveCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} PaperDocUnresolveCommentDetails._all_fields_ = [ ('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_field_names_ = {'description'} PaperDocUnresolveCommentType._all_fields_ = [('description', PaperDocUnresolveCommentType.description.validator)] PaperDocUntrashedDetails.event_uuid.validator = bv.String() -PaperDocUntrashedDetails._all_field_names_ = set(['event_uuid']) +PaperDocUntrashedDetails._all_field_names_ = {'event_uuid'} PaperDocUntrashedDetails._all_fields_ = [('event_uuid', PaperDocUntrashedDetails.event_uuid.validator)] PaperDocUntrashedType.description.validator = bv.String() -PaperDocUntrashedType._all_field_names_ = set(['description']) +PaperDocUntrashedType._all_field_names_ = {'description'} PaperDocUntrashedType._all_fields_ = [('description', PaperDocUntrashedType.description.validator)] PaperDocViewDetails.event_uuid.validator = bv.String() -PaperDocViewDetails._all_field_names_ = set(['event_uuid']) +PaperDocViewDetails._all_field_names_ = {'event_uuid'} PaperDocViewDetails._all_fields_ = [('event_uuid', PaperDocViewDetails.event_uuid.validator)] PaperDocViewType.description.validator = bv.String() -PaperDocViewType._all_field_names_ = set(['description']) +PaperDocViewType._all_field_names_ = {'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([ +PaperDocumentLogInfo._all_field_names_ = { 'doc_id', 'doc_title', -]) +} PaperDocumentLogInfo._all_fields_ = [ ('doc_id', PaperDocumentLogInfo.doc_id.validator), ('doc_title', PaperDocumentLogInfo.doc_title.validator), @@ -84374,52 +84372,52 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PaperDownloadFormat.pdf = PaperDownloadFormat('pdf') PaperDownloadFormat.other = PaperDownloadFormat('other') -PaperEnabledUsersGroupAdditionDetails._all_field_names_ = set([]) +PaperEnabledUsersGroupAdditionDetails._all_field_names_ = set() PaperEnabledUsersGroupAdditionDetails._all_fields_ = [] PaperEnabledUsersGroupAdditionType.description.validator = bv.String() -PaperEnabledUsersGroupAdditionType._all_field_names_ = set(['description']) +PaperEnabledUsersGroupAdditionType._all_field_names_ = {'description'} PaperEnabledUsersGroupAdditionType._all_fields_ = [('description', PaperEnabledUsersGroupAdditionType.description.validator)] -PaperEnabledUsersGroupRemovalDetails._all_field_names_ = set([]) +PaperEnabledUsersGroupRemovalDetails._all_field_names_ = set() PaperEnabledUsersGroupRemovalDetails._all_fields_ = [] PaperEnabledUsersGroupRemovalType.description.validator = bv.String() -PaperEnabledUsersGroupRemovalType._all_field_names_ = set(['description']) +PaperEnabledUsersGroupRemovalType._all_field_names_ = {'description'} PaperEnabledUsersGroupRemovalType._all_fields_ = [('description', PaperEnabledUsersGroupRemovalType.description.validator)] PaperExternalViewAllowDetails.event_uuid.validator = bv.String() -PaperExternalViewAllowDetails._all_field_names_ = set(['event_uuid']) +PaperExternalViewAllowDetails._all_field_names_ = {'event_uuid'} PaperExternalViewAllowDetails._all_fields_ = [('event_uuid', PaperExternalViewAllowDetails.event_uuid.validator)] PaperExternalViewAllowType.description.validator = bv.String() -PaperExternalViewAllowType._all_field_names_ = set(['description']) +PaperExternalViewAllowType._all_field_names_ = {'description'} PaperExternalViewAllowType._all_fields_ = [('description', PaperExternalViewAllowType.description.validator)] PaperExternalViewDefaultTeamDetails.event_uuid.validator = bv.String() -PaperExternalViewDefaultTeamDetails._all_field_names_ = set(['event_uuid']) +PaperExternalViewDefaultTeamDetails._all_field_names_ = {'event_uuid'} PaperExternalViewDefaultTeamDetails._all_fields_ = [('event_uuid', PaperExternalViewDefaultTeamDetails.event_uuid.validator)] PaperExternalViewDefaultTeamType.description.validator = bv.String() -PaperExternalViewDefaultTeamType._all_field_names_ = set(['description']) +PaperExternalViewDefaultTeamType._all_field_names_ = {'description'} PaperExternalViewDefaultTeamType._all_fields_ = [('description', PaperExternalViewDefaultTeamType.description.validator)] PaperExternalViewForbidDetails.event_uuid.validator = bv.String() -PaperExternalViewForbidDetails._all_field_names_ = set(['event_uuid']) +PaperExternalViewForbidDetails._all_field_names_ = {'event_uuid'} PaperExternalViewForbidDetails._all_fields_ = [('event_uuid', PaperExternalViewForbidDetails.event_uuid.validator)] PaperExternalViewForbidType.description.validator = bv.String() -PaperExternalViewForbidType._all_field_names_ = set(['description']) +PaperExternalViewForbidType._all_field_names_ = {'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([ +PaperFolderChangeSubscriptionDetails._all_field_names_ = { '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), @@ -84427,42 +84425,42 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] PaperFolderChangeSubscriptionType.description.validator = bv.String() -PaperFolderChangeSubscriptionType._all_field_names_ = set(['description']) +PaperFolderChangeSubscriptionType._all_field_names_ = {'description'} PaperFolderChangeSubscriptionType._all_fields_ = [('description', PaperFolderChangeSubscriptionType.description.validator)] PaperFolderDeletedDetails.event_uuid.validator = bv.String() -PaperFolderDeletedDetails._all_field_names_ = set(['event_uuid']) +PaperFolderDeletedDetails._all_field_names_ = {'event_uuid'} PaperFolderDeletedDetails._all_fields_ = [('event_uuid', PaperFolderDeletedDetails.event_uuid.validator)] PaperFolderDeletedType.description.validator = bv.String() -PaperFolderDeletedType._all_field_names_ = set(['description']) +PaperFolderDeletedType._all_field_names_ = {'description'} PaperFolderDeletedType._all_fields_ = [('description', PaperFolderDeletedType.description.validator)] PaperFolderFollowedDetails.event_uuid.validator = bv.String() -PaperFolderFollowedDetails._all_field_names_ = set(['event_uuid']) +PaperFolderFollowedDetails._all_field_names_ = {'event_uuid'} PaperFolderFollowedDetails._all_fields_ = [('event_uuid', PaperFolderFollowedDetails.event_uuid.validator)] PaperFolderFollowedType.description.validator = bv.String() -PaperFolderFollowedType._all_field_names_ = set(['description']) +PaperFolderFollowedType._all_field_names_ = {'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([ +PaperFolderLogInfo._all_field_names_ = { 'folder_id', 'folder_name', -]) +} PaperFolderLogInfo._all_fields_ = [ ('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_field_names_ = {'event_uuid'} PaperFolderTeamInviteDetails._all_fields_ = [('event_uuid', PaperFolderTeamInviteDetails.event_uuid.validator)] PaperFolderTeamInviteType.description.validator = bv.String() -PaperFolderTeamInviteType._all_field_names_ = set(['description']) +PaperFolderTeamInviteType._all_field_names_ = {'description'} PaperFolderTeamInviteType._all_fields_ = [('description', PaperFolderTeamInviteType.description.validator)] PaperMemberPolicy._anyone_with_link_validator = bv.Void() @@ -84484,11 +84482,11 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +PaperPublishedLinkChangePermissionDetails._all_field_names_ = { '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), @@ -84496,31 +84494,31 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] PaperPublishedLinkChangePermissionType.description.validator = bv.String() -PaperPublishedLinkChangePermissionType._all_field_names_ = set(['description']) +PaperPublishedLinkChangePermissionType._all_field_names_ = {'description'} PaperPublishedLinkChangePermissionType._all_fields_ = [('description', PaperPublishedLinkChangePermissionType.description.validator)] PaperPublishedLinkCreateDetails.event_uuid.validator = bv.String() -PaperPublishedLinkCreateDetails._all_field_names_ = set(['event_uuid']) +PaperPublishedLinkCreateDetails._all_field_names_ = {'event_uuid'} PaperPublishedLinkCreateDetails._all_fields_ = [('event_uuid', PaperPublishedLinkCreateDetails.event_uuid.validator)] PaperPublishedLinkCreateType.description.validator = bv.String() -PaperPublishedLinkCreateType._all_field_names_ = set(['description']) +PaperPublishedLinkCreateType._all_field_names_ = {'description'} PaperPublishedLinkCreateType._all_fields_ = [('description', PaperPublishedLinkCreateType.description.validator)] PaperPublishedLinkDisabledDetails.event_uuid.validator = bv.String() -PaperPublishedLinkDisabledDetails._all_field_names_ = set(['event_uuid']) +PaperPublishedLinkDisabledDetails._all_field_names_ = {'event_uuid'} PaperPublishedLinkDisabledDetails._all_fields_ = [('event_uuid', PaperPublishedLinkDisabledDetails.event_uuid.validator)] PaperPublishedLinkDisabledType.description.validator = bv.String() -PaperPublishedLinkDisabledType._all_field_names_ = set(['description']) +PaperPublishedLinkDisabledType._all_field_names_ = {'description'} PaperPublishedLinkDisabledType._all_fields_ = [('description', PaperPublishedLinkDisabledType.description.validator)] PaperPublishedLinkViewDetails.event_uuid.validator = bv.String() -PaperPublishedLinkViewDetails._all_field_names_ = set(['event_uuid']) +PaperPublishedLinkViewDetails._all_field_names_ = {'event_uuid'} PaperPublishedLinkViewDetails._all_fields_ = [('event_uuid', PaperPublishedLinkViewDetails.event_uuid.validator)] PaperPublishedLinkViewType.description.validator = bv.String() -PaperPublishedLinkViewType._all_field_names_ = set(['description']) +PaperPublishedLinkViewType._all_field_names_ = {'description'} PaperPublishedLinkViewType._all_fields_ = [('description', PaperPublishedLinkViewType.description.validator)] ParticipantLogInfo._group_validator = GroupLogInfo_validator @@ -84550,74 +84548,74 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PassPolicy.enabled = PassPolicy('enabled') PassPolicy.other = PassPolicy('other') -PasswordChangeDetails._all_field_names_ = set([]) +PasswordChangeDetails._all_field_names_ = set() PasswordChangeDetails._all_fields_ = [] PasswordChangeType.description.validator = bv.String() -PasswordChangeType._all_field_names_ = set(['description']) +PasswordChangeType._all_field_names_ = {'description'} PasswordChangeType._all_fields_ = [('description', PasswordChangeType.description.validator)] -PasswordResetAllDetails._all_field_names_ = set([]) +PasswordResetAllDetails._all_field_names_ = set() PasswordResetAllDetails._all_fields_ = [] PasswordResetAllType.description.validator = bv.String() -PasswordResetAllType._all_field_names_ = set(['description']) +PasswordResetAllType._all_field_names_ = {'description'} PasswordResetAllType._all_fields_ = [('description', PasswordResetAllType.description.validator)] -PasswordResetDetails._all_field_names_ = set([]) +PasswordResetDetails._all_field_names_ = set() PasswordResetDetails._all_fields_ = [] PasswordResetType.description.validator = bv.String() -PasswordResetType._all_field_names_ = set(['description']) +PasswordResetType._all_field_names_ = {'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([ +PasswordStrengthRequirementsChangePolicyDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} PasswordStrengthRequirementsChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +PathLogInfo._all_field_names_ = { 'contextual', 'namespace_relative', -]) +} PathLogInfo._all_fields_ = [ ('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_field_names_ = {'secondary_email'} PendingSecondaryEmailAddedDetails._all_fields_ = [('secondary_email', PendingSecondaryEmailAddedDetails.secondary_email.validator)] PendingSecondaryEmailAddedType.description.validator = bv.String() -PendingSecondaryEmailAddedType._all_field_names_ = set(['description']) +PendingSecondaryEmailAddedType._all_field_names_ = {'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([ +PermanentDeleteChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} PermanentDeleteChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} PermanentDeleteChangePolicyType._all_fields_ = [('description', PermanentDeleteChangePolicyType.description.validator)] PlacementRestriction._australia_only_validator = bv.Void() @@ -84660,10 +84658,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PrimaryTeamRequestAcceptedDetails.secondary_team.validator = bv.String() PrimaryTeamRequestAcceptedDetails.sent_by.validator = bv.String() -PrimaryTeamRequestAcceptedDetails._all_field_names_ = set([ +PrimaryTeamRequestAcceptedDetails._all_field_names_ = { 'secondary_team', 'sent_by', -]) +} PrimaryTeamRequestAcceptedDetails._all_fields_ = [ ('secondary_team', PrimaryTeamRequestAcceptedDetails.secondary_team.validator), ('sent_by', PrimaryTeamRequestAcceptedDetails.sent_by.validator), @@ -84671,10 +84669,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PrimaryTeamRequestCanceledDetails.secondary_team.validator = bv.String() PrimaryTeamRequestCanceledDetails.sent_by.validator = bv.String() -PrimaryTeamRequestCanceledDetails._all_field_names_ = set([ +PrimaryTeamRequestCanceledDetails._all_field_names_ = { 'secondary_team', 'sent_by', -]) +} PrimaryTeamRequestCanceledDetails._all_fields_ = [ ('secondary_team', PrimaryTeamRequestCanceledDetails.secondary_team.validator), ('sent_by', PrimaryTeamRequestCanceledDetails.sent_by.validator), @@ -84682,10 +84680,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PrimaryTeamRequestExpiredDetails.secondary_team.validator = bv.String() PrimaryTeamRequestExpiredDetails.sent_by.validator = bv.String() -PrimaryTeamRequestExpiredDetails._all_field_names_ = set([ +PrimaryTeamRequestExpiredDetails._all_field_names_ = { 'secondary_team', 'sent_by', -]) +} PrimaryTeamRequestExpiredDetails._all_fields_ = [ ('secondary_team', PrimaryTeamRequestExpiredDetails.secondary_team.validator), ('sent_by', PrimaryTeamRequestExpiredDetails.sent_by.validator), @@ -84693,10 +84691,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): PrimaryTeamRequestReminderDetails.secondary_team.validator = bv.String() PrimaryTeamRequestReminderDetails.sent_to.validator = bv.String() -PrimaryTeamRequestReminderDetails._all_field_names_ = set([ +PrimaryTeamRequestReminderDetails._all_field_names_ = { 'secondary_team', 'sent_to', -]) +} PrimaryTeamRequestReminderDetails._all_fields_ = [ ('secondary_team', PrimaryTeamRequestReminderDetails.secondary_team.validator), ('sent_to', PrimaryTeamRequestReminderDetails.sent_to.validator), @@ -84727,29 +84725,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): QuickActionType.unlink_session = QuickActionType('unlink_session') QuickActionType.other = QuickActionType('other') -RansomwareAlertCreateReportDetails._all_field_names_ = set([]) +RansomwareAlertCreateReportDetails._all_field_names_ = set() RansomwareAlertCreateReportDetails._all_fields_ = [] RansomwareAlertCreateReportFailedDetails.failure_reason.validator = team.TeamReportFailureReason_validator -RansomwareAlertCreateReportFailedDetails._all_field_names_ = set(['failure_reason']) +RansomwareAlertCreateReportFailedDetails._all_field_names_ = {'failure_reason'} RansomwareAlertCreateReportFailedDetails._all_fields_ = [('failure_reason', RansomwareAlertCreateReportFailedDetails.failure_reason.validator)] RansomwareAlertCreateReportFailedType.description.validator = bv.String() -RansomwareAlertCreateReportFailedType._all_field_names_ = set(['description']) +RansomwareAlertCreateReportFailedType._all_field_names_ = {'description'} RansomwareAlertCreateReportFailedType._all_fields_ = [('description', RansomwareAlertCreateReportFailedType.description.validator)] RansomwareAlertCreateReportType.description.validator = bv.String() -RansomwareAlertCreateReportType._all_field_names_ = set(['description']) +RansomwareAlertCreateReportType._all_field_names_ = {'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([ +RansomwareRestoreProcessCompletedDetails._all_field_names_ = { 'status', 'restored_files_count', 'restored_files_failed_count', -]) +} RansomwareRestoreProcessCompletedDetails._all_fields_ = [ ('status', RansomwareRestoreProcessCompletedDetails.status.validator), ('restored_files_count', RansomwareRestoreProcessCompletedDetails.restored_files_count.validator), @@ -84757,25 +84755,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] RansomwareRestoreProcessCompletedType.description.validator = bv.String() -RansomwareRestoreProcessCompletedType._all_field_names_ = set(['description']) +RansomwareRestoreProcessCompletedType._all_field_names_ = {'description'} RansomwareRestoreProcessCompletedType._all_fields_ = [('description', RansomwareRestoreProcessCompletedType.description.validator)] RansomwareRestoreProcessStartedDetails.extension.validator = bv.String() -RansomwareRestoreProcessStartedDetails._all_field_names_ = set(['extension']) +RansomwareRestoreProcessStartedDetails._all_field_names_ = {'extension'} RansomwareRestoreProcessStartedDetails._all_fields_ = [('extension', RansomwareRestoreProcessStartedDetails.extension.validator)] RansomwareRestoreProcessStartedType.description.validator = bv.String() -RansomwareRestoreProcessStartedType._all_field_names_ = set(['description']) +RansomwareRestoreProcessStartedType._all_field_names_ = {'description'} RansomwareRestoreProcessStartedType._all_fields_ = [('description', RansomwareRestoreProcessStartedType.description.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([ +RecipientsConfiguration._all_field_names_ = { 'recipient_setting_type', 'emails', 'groups', -]) +} RecipientsConfiguration._all_fields_ = [ ('recipient_setting_type', RecipientsConfiguration.recipient_setting_type.validator), ('emails', RecipientsConfiguration.emails.validator), @@ -84784,56 +84782,56 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RelocateAssetReferencesLogInfo.src_asset_index.validator = bv.UInt64() RelocateAssetReferencesLogInfo.dest_asset_index.validator = bv.UInt64() -RelocateAssetReferencesLogInfo._all_field_names_ = set([ +RelocateAssetReferencesLogInfo._all_field_names_ = { '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), ] -ReplayFileDeleteDetails._all_field_names_ = set([]) +ReplayFileDeleteDetails._all_field_names_ = set() ReplayFileDeleteDetails._all_fields_ = [] ReplayFileDeleteType.description.validator = bv.String() -ReplayFileDeleteType._all_field_names_ = set(['description']) +ReplayFileDeleteType._all_field_names_ = {'description'} ReplayFileDeleteType._all_fields_ = [('description', ReplayFileDeleteType.description.validator)] -ReplayFileSharedLinkCreatedDetails._all_field_names_ = set([]) +ReplayFileSharedLinkCreatedDetails._all_field_names_ = set() ReplayFileSharedLinkCreatedDetails._all_fields_ = [] ReplayFileSharedLinkCreatedType.description.validator = bv.String() -ReplayFileSharedLinkCreatedType._all_field_names_ = set(['description']) +ReplayFileSharedLinkCreatedType._all_field_names_ = {'description'} ReplayFileSharedLinkCreatedType._all_fields_ = [('description', ReplayFileSharedLinkCreatedType.description.validator)] -ReplayFileSharedLinkModifiedDetails._all_field_names_ = set([]) +ReplayFileSharedLinkModifiedDetails._all_field_names_ = set() ReplayFileSharedLinkModifiedDetails._all_fields_ = [] ReplayFileSharedLinkModifiedType.description.validator = bv.String() -ReplayFileSharedLinkModifiedType._all_field_names_ = set(['description']) +ReplayFileSharedLinkModifiedType._all_field_names_ = {'description'} ReplayFileSharedLinkModifiedType._all_fields_ = [('description', ReplayFileSharedLinkModifiedType.description.validator)] -ReplayProjectTeamAddDetails._all_field_names_ = set([]) +ReplayProjectTeamAddDetails._all_field_names_ = set() ReplayProjectTeamAddDetails._all_fields_ = [] ReplayProjectTeamAddType.description.validator = bv.String() -ReplayProjectTeamAddType._all_field_names_ = set(['description']) +ReplayProjectTeamAddType._all_field_names_ = {'description'} ReplayProjectTeamAddType._all_fields_ = [('description', ReplayProjectTeamAddType.description.validator)] -ReplayProjectTeamDeleteDetails._all_field_names_ = set([]) +ReplayProjectTeamDeleteDetails._all_field_names_ = set() ReplayProjectTeamDeleteDetails._all_fields_ = [] ReplayProjectTeamDeleteType.description.validator = bv.String() -ReplayProjectTeamDeleteType._all_field_names_ = set(['description']) +ReplayProjectTeamDeleteType._all_field_names_ = {'description'} ReplayProjectTeamDeleteType._all_fields_ = [('description', ReplayProjectTeamDeleteType.description.validator)] ResellerLogInfo.reseller_name.validator = bv.String() ResellerLogInfo.reseller_email.validator = EmailAddress_validator -ResellerLogInfo._all_field_names_ = set([ +ResellerLogInfo._all_field_names_ = { 'reseller_name', 'reseller_email', -]) +} ResellerLogInfo._all_fields_ = [ ('reseller_name', ResellerLogInfo.reseller_name.validator), ('reseller_email', ResellerLogInfo.reseller_email.validator), @@ -84854,17 +84852,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ResellerSupportChangePolicyDetails.new_value.validator = ResellerSupportPolicy_validator ResellerSupportChangePolicyDetails.previous_value.validator = ResellerSupportPolicy_validator -ResellerSupportChangePolicyDetails._all_field_names_ = set([ +ResellerSupportChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} ResellerSupportChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} ResellerSupportChangePolicyType._all_fields_ = [('description', ResellerSupportChangePolicyType.description.validator)] ResellerSupportPolicy._disabled_validator = bv.Void() @@ -84880,26 +84878,26 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ResellerSupportPolicy.enabled = ResellerSupportPolicy('enabled') ResellerSupportPolicy.other = ResellerSupportPolicy('other') -ResellerSupportSessionEndDetails._all_field_names_ = set([]) +ResellerSupportSessionEndDetails._all_field_names_ = set() ResellerSupportSessionEndDetails._all_fields_ = [] ResellerSupportSessionEndType.description.validator = bv.String() -ResellerSupportSessionEndType._all_field_names_ = set(['description']) +ResellerSupportSessionEndType._all_field_names_ = {'description'} ResellerSupportSessionEndType._all_fields_ = [('description', ResellerSupportSessionEndType.description.validator)] -ResellerSupportSessionStartDetails._all_field_names_ = set([]) +ResellerSupportSessionStartDetails._all_field_names_ = set() ResellerSupportSessionStartDetails._all_fields_ = [] ResellerSupportSessionStartType.description.validator = bv.String() -ResellerSupportSessionStartType._all_field_names_ = set(['description']) +ResellerSupportSessionStartType._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} RewindFolderType._all_fields_ = [('description', RewindFolderType.description.validator)] RewindPolicy._admins_only_validator = bv.Void() @@ -84917,33 +84915,33 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): RewindPolicyChangedDetails.new_value.validator = RewindPolicy_validator RewindPolicyChangedDetails.previous_value.validator = RewindPolicy_validator -RewindPolicyChangedDetails._all_field_names_ = set([ +RewindPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} RewindPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} RewindPolicyChangedType._all_fields_ = [('description', RewindPolicyChangedType.description.validator)] SecondaryEmailDeletedDetails.secondary_email.validator = EmailAddress_validator -SecondaryEmailDeletedDetails._all_field_names_ = set(['secondary_email']) +SecondaryEmailDeletedDetails._all_field_names_ = {'secondary_email'} SecondaryEmailDeletedDetails._all_fields_ = [('secondary_email', SecondaryEmailDeletedDetails.secondary_email.validator)] SecondaryEmailDeletedType.description.validator = bv.String() -SecondaryEmailDeletedType._all_field_names_ = set(['description']) +SecondaryEmailDeletedType._all_field_names_ = {'description'} SecondaryEmailDeletedType._all_fields_ = [('description', SecondaryEmailDeletedType.description.validator)] SecondaryEmailVerifiedDetails.secondary_email.validator = EmailAddress_validator -SecondaryEmailVerifiedDetails._all_field_names_ = set(['secondary_email']) +SecondaryEmailVerifiedDetails._all_field_names_ = {'secondary_email'} SecondaryEmailVerifiedDetails._all_fields_ = [('secondary_email', SecondaryEmailVerifiedDetails.secondary_email.validator)] SecondaryEmailVerifiedType.description.validator = bv.String() -SecondaryEmailVerifiedType._all_field_names_ = set(['description']) +SecondaryEmailVerifiedType._all_field_names_ = {'description'} SecondaryEmailVerifiedType._all_fields_ = [('description', SecondaryEmailVerifiedType.description.validator)] SecondaryMailsPolicy._disabled_validator = bv.Void() @@ -84961,25 +84959,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SecondaryMailsPolicyChangedDetails.previous_value.validator = SecondaryMailsPolicy_validator SecondaryMailsPolicyChangedDetails.new_value.validator = SecondaryMailsPolicy_validator -SecondaryMailsPolicyChangedDetails._all_field_names_ = set([ +SecondaryMailsPolicyChangedDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} SecondaryMailsPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SecondaryTeamRequestAcceptedDetails._all_field_names_ = { 'primary_team', 'sent_by', -]) +} SecondaryTeamRequestAcceptedDetails._all_fields_ = [ ('primary_team', SecondaryTeamRequestAcceptedDetails.primary_team.validator), ('sent_by', SecondaryTeamRequestAcceptedDetails.sent_by.validator), @@ -84987,21 +84985,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SecondaryTeamRequestCanceledDetails.sent_to.validator = bv.String() SecondaryTeamRequestCanceledDetails.sent_by.validator = bv.String() -SecondaryTeamRequestCanceledDetails._all_field_names_ = set([ +SecondaryTeamRequestCanceledDetails._all_field_names_ = { 'sent_to', 'sent_by', -]) +} SecondaryTeamRequestCanceledDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'sent_to'} SecondaryTeamRequestReminderDetails._all_fields_ = [('sent_to', SecondaryTeamRequestReminderDetails.sent_to.validator)] SendForSignaturePolicy._disabled_validator = bv.Void() @@ -85019,29 +85017,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SendForSignaturePolicyChangedDetails.new_value.validator = SendForSignaturePolicy_validator SendForSignaturePolicyChangedDetails.previous_value.validator = SendForSignaturePolicy_validator -SendForSignaturePolicyChangedDetails._all_field_names_ = set([ +SendForSignaturePolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SendForSignaturePolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SfAddGroupDetails._all_field_names_ = { '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), @@ -85050,17 +85048,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SfAddGroupType.description.validator = bv.String() -SfAddGroupType._all_field_names_ = set(['description']) +SfAddGroupType._all_field_names_ = {'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([ +SfAllowNonMembersToViewSharedLinksDetails._all_field_names_ = { '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), @@ -85068,19 +85066,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SfAllowNonMembersToViewSharedLinksType.description.validator = bv.String() -SfAllowNonMembersToViewSharedLinksType._all_field_names_ = set(['description']) +SfAllowNonMembersToViewSharedLinksType._all_field_names_ = {'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([ +SfExternalInviteWarnDetails._all_field_names_ = { '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), @@ -85089,19 +85087,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SfExternalInviteWarnType.description.validator = bv.String() -SfExternalInviteWarnType._all_field_names_ = set(['description']) +SfExternalInviteWarnType._all_field_names_ = {'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([ +SfFbInviteChangeRoleDetails._all_field_names_ = { '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), @@ -85110,17 +85108,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SfFbInviteChangeRoleType.description.validator = bv.String() -SfFbInviteChangeRoleType._all_field_names_ = set(['description']) +SfFbInviteChangeRoleType._all_field_names_ = {'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([ +SfFbInviteDetails._all_field_names_ = { '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), @@ -85128,57 +85126,57 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SfFbInviteType.description.validator = bv.String() -SfFbInviteType._all_field_names_ = set(['description']) +SfFbInviteType._all_field_names_ = {'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([ +SfFbUninviteDetails._all_field_names_ = { '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), ] SfFbUninviteType.description.validator = bv.String() -SfFbUninviteType._all_field_names_ = set(['description']) +SfFbUninviteType._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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([ +SfTeamGrantAccessDetails._all_field_names_ = { '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), ] SfTeamGrantAccessType.description.validator = bv.String() -SfTeamGrantAccessType._all_field_names_ = set(['description']) +SfTeamGrantAccessType._all_field_names_ = {'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([ +SfTeamInviteChangeRoleDetails._all_field_names_ = { '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), @@ -85187,17 +85185,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SfTeamInviteChangeRoleType.description.validator = bv.String() -SfTeamInviteChangeRoleType._all_field_names_ = set(['description']) +SfTeamInviteChangeRoleType._all_field_names_ = {'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([ +SfTeamInviteDetails._all_field_names_ = { '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), @@ -85205,15 +85203,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SfTeamInviteType.description.validator = bv.String() -SfTeamInviteType._all_field_names_ = set(['description']) +SfTeamInviteType._all_field_names_ = {'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([ +SfTeamJoinDetails._all_field_names_ = { '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), @@ -85223,12 +85221,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +SfTeamJoinFromOobLinkDetails._all_field_names_ = { '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), @@ -85237,89 +85235,89 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SfTeamJoinFromOobLinkType.description.validator = bv.String() -SfTeamJoinFromOobLinkType._all_field_names_ = set(['description']) +SfTeamJoinFromOobLinkType._all_field_names_ = {'description'} SfTeamJoinFromOobLinkType._all_fields_ = [('description', SfTeamJoinFromOobLinkType.description.validator)] SfTeamJoinType.description.validator = bv.String() -SfTeamJoinType._all_field_names_ = set(['description']) +SfTeamJoinType._all_field_names_ = {'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([ +SfTeamUninviteDetails._all_field_names_ = { '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), ] SfTeamUninviteType.description.validator = bv.String() -SfTeamUninviteType._all_field_names_ = set(['description']) +SfTeamUninviteType._all_field_names_ = {'description'} SfTeamUninviteType._all_fields_ = [('description', SfTeamUninviteType.description.validator)] SharedContentAddInviteesDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedContentAddInviteesDetails.invitees.validator = bv.List(EmailAddress_validator) -SharedContentAddInviteesDetails._all_field_names_ = set([ +SharedContentAddInviteesDetails._all_field_names_ = { 'shared_content_access_level', 'invitees', -]) +} SharedContentAddInviteesDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'new_value'} SharedContentAddLinkExpiryDetails._all_fields_ = [('new_value', SharedContentAddLinkExpiryDetails.new_value.validator)] SharedContentAddLinkExpiryType.description.validator = bv.String() -SharedContentAddLinkExpiryType._all_field_names_ = set(['description']) +SharedContentAddLinkExpiryType._all_field_names_ = {'description'} SharedContentAddLinkExpiryType._all_fields_ = [('description', SharedContentAddLinkExpiryType.description.validator)] -SharedContentAddLinkPasswordDetails._all_field_names_ = set([]) +SharedContentAddLinkPasswordDetails._all_field_names_ = set() SharedContentAddLinkPasswordDetails._all_fields_ = [] SharedContentAddLinkPasswordType.description.validator = bv.String() -SharedContentAddLinkPasswordType._all_field_names_ = set(['description']) +SharedContentAddLinkPasswordType._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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([ +SharedContentChangeDownloadsPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedContentChangeDownloadsPolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} SharedContentChangeDownloadsPolicyType._all_fields_ = [('description', SharedContentChangeDownloadsPolicyType.description.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([ +SharedContentChangeInviteeRoleDetails._all_field_names_ = { '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), @@ -85327,94 +85325,94 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SharedContentChangeInviteeRoleType.description.validator = bv.String() -SharedContentChangeInviteeRoleType._all_field_names_ = set(['description']) +SharedContentChangeInviteeRoleType._all_field_names_ = {'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([ +SharedContentChangeLinkAudienceDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedContentChangeLinkAudienceDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SharedContentChangeLinkExpiryDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedContentChangeLinkExpiryDetails._all_fields_ = [ ('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_field_names_ = {'description'} SharedContentChangeLinkExpiryType._all_fields_ = [('description', SharedContentChangeLinkExpiryType.description.validator)] -SharedContentChangeLinkPasswordDetails._all_field_names_ = set([]) +SharedContentChangeLinkPasswordDetails._all_field_names_ = set() SharedContentChangeLinkPasswordDetails._all_fields_ = [] SharedContentChangeLinkPasswordType.description.validator = bv.String() -SharedContentChangeLinkPasswordType._all_field_names_ = set(['description']) +SharedContentChangeLinkPasswordType._all_field_names_ = {'description'} SharedContentChangeLinkPasswordType._all_fields_ = [('description', SharedContentChangeLinkPasswordType.description.validator)] SharedContentChangeMemberRoleDetails.previous_access_level.validator = bv.Nullable(sharing.AccessLevel_validator) SharedContentChangeMemberRoleDetails.new_access_level.validator = sharing.AccessLevel_validator -SharedContentChangeMemberRoleDetails._all_field_names_ = set([ +SharedContentChangeMemberRoleDetails._all_field_names_ = { '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), ] SharedContentChangeMemberRoleType.description.validator = bv.String() -SharedContentChangeMemberRoleType._all_field_names_ = set(['description']) +SharedContentChangeMemberRoleType._all_field_names_ = {'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([ +SharedContentChangeViewerInfoPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedContentChangeViewerInfoPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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([ +SharedContentCopyDetails._all_field_names_ = { '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), @@ -85423,17 +85421,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SharedContentCopyType.description.validator = bv.String() -SharedContentCopyType._all_field_names_ = set(['description']) +SharedContentCopyType._all_field_names_ = {'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([ +SharedContentDownloadDetails._all_field_names_ = { '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), @@ -85441,93 +85439,93 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SharedContentDownloadType.description.validator = bv.String() -SharedContentDownloadType._all_field_names_ = set(['description']) +SharedContentDownloadType._all_field_names_ = {'description'} SharedContentDownloadType._all_fields_ = [('description', SharedContentDownloadType.description.validator)] -SharedContentRelinquishMembershipDetails._all_field_names_ = set([]) +SharedContentRelinquishMembershipDetails._all_field_names_ = set() SharedContentRelinquishMembershipDetails._all_fields_ = [] SharedContentRelinquishMembershipType.description.validator = bv.String() -SharedContentRelinquishMembershipType._all_field_names_ = set(['description']) +SharedContentRelinquishMembershipType._all_field_names_ = {'description'} SharedContentRelinquishMembershipType._all_fields_ = [('description', SharedContentRelinquishMembershipType.description.validator)] SharedContentRemoveInviteesDetails.invitees.validator = bv.List(EmailAddress_validator) -SharedContentRemoveInviteesDetails._all_field_names_ = set(['invitees']) +SharedContentRemoveInviteesDetails._all_field_names_ = {'invitees'} SharedContentRemoveInviteesDetails._all_fields_ = [('invitees', SharedContentRemoveInviteesDetails.invitees.validator)] SharedContentRemoveInviteesType.description.validator = bv.String() -SharedContentRemoveInviteesType._all_field_names_ = set(['description']) +SharedContentRemoveInviteesType._all_field_names_ = {'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_field_names_ = {'previous_value'} SharedContentRemoveLinkExpiryDetails._all_fields_ = [('previous_value', SharedContentRemoveLinkExpiryDetails.previous_value.validator)] SharedContentRemoveLinkExpiryType.description.validator = bv.String() -SharedContentRemoveLinkExpiryType._all_field_names_ = set(['description']) +SharedContentRemoveLinkExpiryType._all_field_names_ = {'description'} SharedContentRemoveLinkExpiryType._all_fields_ = [('description', SharedContentRemoveLinkExpiryType.description.validator)] -SharedContentRemoveLinkPasswordDetails._all_field_names_ = set([]) +SharedContentRemoveLinkPasswordDetails._all_field_names_ = set() SharedContentRemoveLinkPasswordDetails._all_fields_ = [] SharedContentRemoveLinkPasswordType.description.validator = bv.String() -SharedContentRemoveLinkPasswordType._all_field_names_ = set(['description']) +SharedContentRemoveLinkPasswordType._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} SharedContentRequestAccessType._all_fields_ = [('description', SharedContentRequestAccessType.description.validator)] SharedContentRestoreInviteesDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedContentRestoreInviteesDetails.invitees.validator = bv.List(EmailAddress_validator) -SharedContentRestoreInviteesDetails._all_field_names_ = set([ +SharedContentRestoreInviteesDetails._all_field_names_ = { 'shared_content_access_level', 'invitees', -]) +} SharedContentRestoreInviteesDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} SharedContentRestoreMemberType._all_fields_ = [('description', SharedContentRestoreMemberType.description.validator)] -SharedContentUnshareDetails._all_field_names_ = set([]) +SharedContentUnshareDetails._all_field_names_ = set() SharedContentUnshareDetails._all_fields_ = [] SharedContentUnshareType.description.validator = bv.String() -SharedContentUnshareType._all_field_names_ = set(['description']) +SharedContentUnshareType._all_field_names_ = {'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([ +SharedContentViewDetails._all_field_names_ = { '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), @@ -85535,82 +85533,82 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SharedContentViewType.description.validator = bv.String() -SharedContentViewType._all_field_names_ = set(['description']) +SharedContentViewType._all_field_names_ = {'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([ +SharedFolderChangeLinkPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedFolderChangeLinkPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SharedFolderChangeMembersInheritancePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedFolderChangeMembersInheritancePolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SharedFolderChangeMembersManagementPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedFolderChangeMembersManagementPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SharedFolderChangeMembersPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedFolderChangeMembersPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} SharedFolderCreateType._all_fields_ = [('description', SharedFolderCreateType.description.validator)] -SharedFolderDeclineInvitationDetails._all_field_names_ = set([]) +SharedFolderDeclineInvitationDetails._all_field_names_ = set() SharedFolderDeclineInvitationDetails._all_fields_ = [] SharedFolderDeclineInvitationType.description.validator = bv.String() -SharedFolderDeclineInvitationType._all_field_names_ = set(['description']) +SharedFolderDeclineInvitationType._all_field_names_ = {'description'} SharedFolderDeclineInvitationType._all_fields_ = [('description', SharedFolderDeclineInvitationType.description.validator)] SharedFolderMembersInheritancePolicy._dont_inherit_members_validator = bv.Void() @@ -85626,23 +85624,23 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedFolderMembersInheritancePolicy.inherit_members = SharedFolderMembersInheritancePolicy('inherit_members') SharedFolderMembersInheritancePolicy.other = SharedFolderMembersInheritancePolicy('other') -SharedFolderMountDetails._all_field_names_ = set([]) +SharedFolderMountDetails._all_field_names_ = set() SharedFolderMountDetails._all_fields_ = [] SharedFolderMountType.description.validator = bv.String() -SharedFolderMountType._all_field_names_ = set(['description']) +SharedFolderMountType._all_field_names_ = {'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([ +SharedFolderNestDetails._all_field_names_ = { '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), @@ -85651,29 +85649,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SharedFolderNestType.description.validator = bv.String() -SharedFolderNestType._all_field_names_ = set(['description']) +SharedFolderNestType._all_field_names_ = {'description'} SharedFolderNestType._all_fields_ = [('description', SharedFolderNestType.description.validator)] SharedFolderTransferOwnershipDetails.previous_owner_email.validator = bv.Nullable(EmailAddress_validator) SharedFolderTransferOwnershipDetails.new_owner_email.validator = EmailAddress_validator -SharedFolderTransferOwnershipDetails._all_field_names_ = set([ +SharedFolderTransferOwnershipDetails._all_field_names_ = { '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), ] SharedFolderTransferOwnershipType.description.validator = bv.String() -SharedFolderTransferOwnershipType._all_field_names_ = set(['description']) +SharedFolderTransferOwnershipType._all_field_names_ = {'description'} SharedFolderTransferOwnershipType._all_fields_ = [('description', SharedFolderTransferOwnershipType.description.validator)] -SharedFolderUnmountDetails._all_field_names_ = set([]) +SharedFolderUnmountDetails._all_field_names_ = set() SharedFolderUnmountDetails._all_fields_ = [] SharedFolderUnmountType.description.validator = bv.String() -SharedFolderUnmountType._all_field_names_ = set(['description']) +SharedFolderUnmountType._all_field_names_ = {'description'} SharedFolderUnmountType._all_fields_ = [('description', SharedFolderUnmountType.description.validator)] SharedLinkAccessLevel._none_validator = bv.Void() @@ -85693,91 +85691,91 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkAccessLevel.other = SharedLinkAccessLevel('other') SharedLinkAddExpiryDetails.new_value.validator = common.DropboxTimestamp_validator -SharedLinkAddExpiryDetails._all_field_names_ = set(['new_value']) +SharedLinkAddExpiryDetails._all_field_names_ = {'new_value'} SharedLinkAddExpiryDetails._all_fields_ = [('new_value', SharedLinkAddExpiryDetails.new_value.validator)] SharedLinkAddExpiryType.description.validator = bv.String() -SharedLinkAddExpiryType._all_field_names_ = set(['description']) +SharedLinkAddExpiryType._all_field_names_ = {'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._all_field_names_ = set([ +SharedLinkChangeExpiryDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedLinkChangeExpiryDetails._all_fields_ = [ ('new_value', SharedLinkChangeExpiryDetails.new_value.validator), ('previous_value', SharedLinkChangeExpiryDetails.previous_value.validator), ] SharedLinkChangeExpiryType.description.validator = bv.String() -SharedLinkChangeExpiryType._all_field_names_ = set(['description']) +SharedLinkChangeExpiryType._all_field_names_ = {'description'} SharedLinkChangeExpiryType._all_fields_ = [('description', SharedLinkChangeExpiryType.description.validator)] SharedLinkChangeVisibilityDetails.new_value.validator = SharedLinkVisibility_validator SharedLinkChangeVisibilityDetails.previous_value.validator = bv.Nullable(SharedLinkVisibility_validator) -SharedLinkChangeVisibilityDetails._all_field_names_ = set([ +SharedLinkChangeVisibilityDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharedLinkChangeVisibilityDetails._all_fields_ = [ ('new_value', SharedLinkChangeVisibilityDetails.new_value.validator), ('previous_value', SharedLinkChangeVisibilityDetails.previous_value.validator), ] SharedLinkChangeVisibilityType.description.validator = bv.String() -SharedLinkChangeVisibilityType._all_field_names_ = set(['description']) +SharedLinkChangeVisibilityType._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} SharedLinkCreateType._all_fields_ = [('description', SharedLinkCreateType.description.validator)] SharedLinkDisableDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -SharedLinkDisableDetails._all_field_names_ = set(['shared_link_owner']) +SharedLinkDisableDetails._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'previous_value'} SharedLinkRemoveExpiryDetails._all_fields_ = [('previous_value', SharedLinkRemoveExpiryDetails.previous_value.validator)] SharedLinkRemoveExpiryType.description.validator = bv.String() -SharedLinkRemoveExpiryType._all_field_names_ = set(['description']) +SharedLinkRemoveExpiryType._all_field_names_ = {'description'} SharedLinkRemoveExpiryType._all_fields_ = [('description', SharedLinkRemoveExpiryType.description.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([ +SharedLinkSettingsAddExpirationDetails._all_field_names_ = { '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), @@ -85785,64 +85783,64 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SharedLinkSettingsAddExpirationType.description.validator = bv.String() -SharedLinkSettingsAddExpirationType._all_field_names_ = set(['description']) +SharedLinkSettingsAddExpirationType._all_field_names_ = {'description'} SharedLinkSettingsAddExpirationType._all_fields_ = [('description', SharedLinkSettingsAddExpirationType.description.validator)] SharedLinkSettingsAddPasswordDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsAddPasswordDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsAddPasswordDetails._all_field_names_ = set([ +SharedLinkSettingsAddPasswordDetails._all_field_names_ = { '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), ] SharedLinkSettingsAddPasswordType.description.validator = bv.String() -SharedLinkSettingsAddPasswordType._all_field_names_ = set(['description']) +SharedLinkSettingsAddPasswordType._all_field_names_ = {'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([ +SharedLinkSettingsAllowDownloadDisabledDetails._all_field_names_ = { '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), ] SharedLinkSettingsAllowDownloadDisabledType.description.validator = bv.String() -SharedLinkSettingsAllowDownloadDisabledType._all_field_names_ = set(['description']) +SharedLinkSettingsAllowDownloadDisabledType._all_field_names_ = {'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([ +SharedLinkSettingsAllowDownloadEnabledDetails._all_field_names_ = { '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), ] SharedLinkSettingsAllowDownloadEnabledType.description.validator = bv.String() -SharedLinkSettingsAllowDownloadEnabledType._all_field_names_ = set(['description']) +SharedLinkSettingsAllowDownloadEnabledType._all_field_names_ = {'description'} SharedLinkSettingsAllowDownloadEnabledType._all_fields_ = [('description', SharedLinkSettingsAllowDownloadEnabledType.description.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([ +SharedLinkSettingsChangeAudienceDetails._all_field_names_ = { '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), @@ -85851,19 +85849,19 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SharedLinkSettingsChangeAudienceType.description.validator = bv.String() -SharedLinkSettingsChangeAudienceType._all_field_names_ = set(['description']) +SharedLinkSettingsChangeAudienceType._all_field_names_ = {'description'} SharedLinkSettingsChangeAudienceType._all_fields_ = [('description', SharedLinkSettingsChangeAudienceType.description.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([ +SharedLinkSettingsChangeExpirationDetails._all_field_names_ = { '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), @@ -85872,32 +85870,32 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SharedLinkSettingsChangeExpirationType.description.validator = bv.String() -SharedLinkSettingsChangeExpirationType._all_field_names_ = set(['description']) +SharedLinkSettingsChangeExpirationType._all_field_names_ = {'description'} SharedLinkSettingsChangeExpirationType._all_fields_ = [('description', SharedLinkSettingsChangeExpirationType.description.validator)] SharedLinkSettingsChangePasswordDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsChangePasswordDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsChangePasswordDetails._all_field_names_ = set([ +SharedLinkSettingsChangePasswordDetails._all_field_names_ = { '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), ] SharedLinkSettingsChangePasswordType.description.validator = bv.String() -SharedLinkSettingsChangePasswordType._all_field_names_ = set(['description']) +SharedLinkSettingsChangePasswordType._all_field_names_ = {'description'} SharedLinkSettingsChangePasswordType._all_fields_ = [('description', SharedLinkSettingsChangePasswordType.description.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([ +SharedLinkSettingsRemoveExpirationDetails._all_field_names_ = { '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), @@ -85905,45 +85903,45 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] SharedLinkSettingsRemoveExpirationType.description.validator = bv.String() -SharedLinkSettingsRemoveExpirationType._all_field_names_ = set(['description']) +SharedLinkSettingsRemoveExpirationType._all_field_names_ = {'description'} SharedLinkSettingsRemoveExpirationType._all_fields_ = [('description', SharedLinkSettingsRemoveExpirationType.description.validator)] SharedLinkSettingsRemovePasswordDetails.shared_content_access_level.validator = sharing.AccessLevel_validator SharedLinkSettingsRemovePasswordDetails.shared_content_link.validator = bv.Nullable(bv.String()) -SharedLinkSettingsRemovePasswordDetails._all_field_names_ = set([ +SharedLinkSettingsRemovePasswordDetails._all_field_names_ = { '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), ] SharedLinkSettingsRemovePasswordType.description.validator = bv.String() -SharedLinkSettingsRemovePasswordType._all_field_names_ = set(['description']) +SharedLinkSettingsRemovePasswordType._all_field_names_ = {'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([ +SharedLinkShareDetails._all_field_names_ = { 'shared_link_owner', 'external_users', -]) +} SharedLinkShareDetails._all_fields_ = [ ('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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} SharedLinkViewType._all_fields_ = [('description', SharedLinkViewType.description.validator)] SharedLinkVisibility._no_one_validator = bv.Void() @@ -85965,101 +85963,101 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharedLinkVisibility.team_only = SharedLinkVisibility('team_only') SharedLinkVisibility.other = SharedLinkVisibility('other') -SharedNoteOpenedDetails._all_field_names_ = set([]) +SharedNoteOpenedDetails._all_field_names_ = set() SharedNoteOpenedDetails._all_fields_ = [] SharedNoteOpenedType.description.validator = bv.String() -SharedNoteOpenedType._all_field_names_ = set(['description']) +SharedNoteOpenedType._all_field_names_ = {'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([ +SharingChangeFolderJoinPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharingChangeFolderJoinPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SharingChangeLinkAllowChangeExpirationPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharingChangeLinkAllowChangeExpirationPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SharingChangeLinkDefaultExpirationPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharingChangeLinkDefaultExpirationPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SharingChangeLinkEnforcePasswordPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharingChangeLinkEnforcePasswordPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SharingChangeLinkPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharingChangeLinkPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SharingChangeMemberPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SharingChangeMemberPolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} SharingChangeMemberPolicyType._all_fields_ = [('description', SharingChangeMemberPolicyType.description.validator)] SharingFolderJoinPolicy._from_anyone_validator = bv.Void() @@ -86111,126 +86109,126 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SharingMemberPolicy.other = SharingMemberPolicy('other') ShmodelDisableDownloadsDetails.shared_link_owner.validator = bv.Nullable(UserLogInfo_validator) -ShmodelDisableDownloadsDetails._all_field_names_ = set(['shared_link_owner']) +ShmodelDisableDownloadsDetails._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} ShmodelEnableDownloadsType._all_fields_ = [('description', ShmodelEnableDownloadsType.description.validator)] -ShmodelGroupShareDetails._all_field_names_ = set([]) +ShmodelGroupShareDetails._all_field_names_ = set() ShmodelGroupShareDetails._all_fields_ = [] ShmodelGroupShareType.description.validator = bv.String() -ShmodelGroupShareType._all_field_names_ = set(['description']) +ShmodelGroupShareType._all_field_names_ = {'description'} ShmodelGroupShareType._all_fields_ = [('description', ShmodelGroupShareType.description.validator)] ShowcaseAccessGrantedDetails.event_uuid.validator = bv.String() -ShowcaseAccessGrantedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseAccessGrantedDetails._all_field_names_ = {'event_uuid'} ShowcaseAccessGrantedDetails._all_fields_ = [('event_uuid', ShowcaseAccessGrantedDetails.event_uuid.validator)] ShowcaseAccessGrantedType.description.validator = bv.String() -ShowcaseAccessGrantedType._all_field_names_ = set(['description']) +ShowcaseAccessGrantedType._all_field_names_ = {'description'} ShowcaseAccessGrantedType._all_fields_ = [('description', ShowcaseAccessGrantedType.description.validator)] ShowcaseAddMemberDetails.event_uuid.validator = bv.String() -ShowcaseAddMemberDetails._all_field_names_ = set(['event_uuid']) +ShowcaseAddMemberDetails._all_field_names_ = {'event_uuid'} ShowcaseAddMemberDetails._all_fields_ = [('event_uuid', ShowcaseAddMemberDetails.event_uuid.validator)] ShowcaseAddMemberType.description.validator = bv.String() -ShowcaseAddMemberType._all_field_names_ = set(['description']) +ShowcaseAddMemberType._all_field_names_ = {'description'} ShowcaseAddMemberType._all_fields_ = [('description', ShowcaseAddMemberType.description.validator)] ShowcaseArchivedDetails.event_uuid.validator = bv.String() -ShowcaseArchivedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseArchivedDetails._all_field_names_ = {'event_uuid'} ShowcaseArchivedDetails._all_fields_ = [('event_uuid', ShowcaseArchivedDetails.event_uuid.validator)] ShowcaseArchivedType.description.validator = bv.String() -ShowcaseArchivedType._all_field_names_ = set(['description']) +ShowcaseArchivedType._all_field_names_ = {'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([ +ShowcaseChangeDownloadPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} ShowcaseChangeDownloadPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +ShowcaseChangeEnabledPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} ShowcaseChangeEnabledPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +ShowcaseChangeExternalSharingPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} ShowcaseChangeExternalSharingPolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} ShowcaseChangeExternalSharingPolicyType._all_fields_ = [('description', ShowcaseChangeExternalSharingPolicyType.description.validator)] ShowcaseCreatedDetails.event_uuid.validator = bv.String() -ShowcaseCreatedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseCreatedDetails._all_field_names_ = {'event_uuid'} ShowcaseCreatedDetails._all_fields_ = [('event_uuid', ShowcaseCreatedDetails.event_uuid.validator)] ShowcaseCreatedType.description.validator = bv.String() -ShowcaseCreatedType._all_field_names_ = set(['description']) +ShowcaseCreatedType._all_field_names_ = {'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([ +ShowcaseDeleteCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} ShowcaseDeleteCommentDetails._all_fields_ = [ ('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_field_names_ = {'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([ +ShowcaseDocumentLogInfo._all_field_names_ = { 'showcase_id', 'showcase_title', -]) +} ShowcaseDocumentLogInfo._all_fields_ = [ ('showcase_id', ShowcaseDocumentLogInfo.showcase_id.validator), ('showcase_title', ShowcaseDocumentLogInfo.showcase_title.validator), @@ -86251,25 +86249,25 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ShowcaseEditCommentDetails.event_uuid.validator = bv.String() ShowcaseEditCommentDetails.comment_text.validator = bv.Nullable(bv.String()) -ShowcaseEditCommentDetails._all_field_names_ = set([ +ShowcaseEditCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} ShowcaseEditCommentDetails._all_fields_ = [ ('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_field_names_ = {'description'} ShowcaseEditCommentType._all_fields_ = [('description', ShowcaseEditCommentType.description.validator)] ShowcaseEditedDetails.event_uuid.validator = bv.String() -ShowcaseEditedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseEditedDetails._all_field_names_ = {'event_uuid'} ShowcaseEditedDetails._all_fields_ = [('event_uuid', ShowcaseEditedDetails.event_uuid.validator)] ShowcaseEditedType.description.validator = bv.String() -ShowcaseEditedType._all_field_names_ = set(['description']) +ShowcaseEditedType._all_field_names_ = {'description'} ShowcaseEditedType._all_fields_ = [('description', ShowcaseEditedType.description.validator)] ShowcaseEnabledPolicy._disabled_validator = bv.Void() @@ -86299,226 +86297,226 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ShowcaseExternalSharingPolicy.other = ShowcaseExternalSharingPolicy('other') ShowcaseFileAddedDetails.event_uuid.validator = bv.String() -ShowcaseFileAddedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseFileAddedDetails._all_field_names_ = {'event_uuid'} ShowcaseFileAddedDetails._all_fields_ = [('event_uuid', ShowcaseFileAddedDetails.event_uuid.validator)] ShowcaseFileAddedType.description.validator = bv.String() -ShowcaseFileAddedType._all_field_names_ = set(['description']) +ShowcaseFileAddedType._all_field_names_ = {'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([ +ShowcaseFileDownloadDetails._all_field_names_ = { 'event_uuid', 'download_type', -]) +} ShowcaseFileDownloadDetails._all_fields_ = [ ('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_field_names_ = {'description'} ShowcaseFileDownloadType._all_fields_ = [('description', ShowcaseFileDownloadType.description.validator)] ShowcaseFileRemovedDetails.event_uuid.validator = bv.String() -ShowcaseFileRemovedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseFileRemovedDetails._all_field_names_ = {'event_uuid'} ShowcaseFileRemovedDetails._all_fields_ = [('event_uuid', ShowcaseFileRemovedDetails.event_uuid.validator)] ShowcaseFileRemovedType.description.validator = bv.String() -ShowcaseFileRemovedType._all_field_names_ = set(['description']) +ShowcaseFileRemovedType._all_field_names_ = {'description'} ShowcaseFileRemovedType._all_fields_ = [('description', ShowcaseFileRemovedType.description.validator)] ShowcaseFileViewDetails.event_uuid.validator = bv.String() -ShowcaseFileViewDetails._all_field_names_ = set(['event_uuid']) +ShowcaseFileViewDetails._all_field_names_ = {'event_uuid'} ShowcaseFileViewDetails._all_fields_ = [('event_uuid', ShowcaseFileViewDetails.event_uuid.validator)] ShowcaseFileViewType.description.validator = bv.String() -ShowcaseFileViewType._all_field_names_ = set(['description']) +ShowcaseFileViewType._all_field_names_ = {'description'} ShowcaseFileViewType._all_fields_ = [('description', ShowcaseFileViewType.description.validator)] ShowcasePermanentlyDeletedDetails.event_uuid.validator = bv.String() -ShowcasePermanentlyDeletedDetails._all_field_names_ = set(['event_uuid']) +ShowcasePermanentlyDeletedDetails._all_field_names_ = {'event_uuid'} ShowcasePermanentlyDeletedDetails._all_fields_ = [('event_uuid', ShowcasePermanentlyDeletedDetails.event_uuid.validator)] ShowcasePermanentlyDeletedType.description.validator = bv.String() -ShowcasePermanentlyDeletedType._all_field_names_ = set(['description']) +ShowcasePermanentlyDeletedType._all_field_names_ = {'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([ +ShowcasePostCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} ShowcasePostCommentDetails._all_fields_ = [ ('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_field_names_ = {'description'} ShowcasePostCommentType._all_fields_ = [('description', ShowcasePostCommentType.description.validator)] ShowcaseRemoveMemberDetails.event_uuid.validator = bv.String() -ShowcaseRemoveMemberDetails._all_field_names_ = set(['event_uuid']) +ShowcaseRemoveMemberDetails._all_field_names_ = {'event_uuid'} ShowcaseRemoveMemberDetails._all_fields_ = [('event_uuid', ShowcaseRemoveMemberDetails.event_uuid.validator)] ShowcaseRemoveMemberType.description.validator = bv.String() -ShowcaseRemoveMemberType._all_field_names_ = set(['description']) +ShowcaseRemoveMemberType._all_field_names_ = {'description'} ShowcaseRemoveMemberType._all_fields_ = [('description', ShowcaseRemoveMemberType.description.validator)] ShowcaseRenamedDetails.event_uuid.validator = bv.String() -ShowcaseRenamedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseRenamedDetails._all_field_names_ = {'event_uuid'} ShowcaseRenamedDetails._all_fields_ = [('event_uuid', ShowcaseRenamedDetails.event_uuid.validator)] ShowcaseRenamedType.description.validator = bv.String() -ShowcaseRenamedType._all_field_names_ = set(['description']) +ShowcaseRenamedType._all_field_names_ = {'description'} ShowcaseRenamedType._all_fields_ = [('description', ShowcaseRenamedType.description.validator)] ShowcaseRequestAccessDetails.event_uuid.validator = bv.String() -ShowcaseRequestAccessDetails._all_field_names_ = set(['event_uuid']) +ShowcaseRequestAccessDetails._all_field_names_ = {'event_uuid'} ShowcaseRequestAccessDetails._all_fields_ = [('event_uuid', ShowcaseRequestAccessDetails.event_uuid.validator)] ShowcaseRequestAccessType.description.validator = bv.String() -ShowcaseRequestAccessType._all_field_names_ = set(['description']) +ShowcaseRequestAccessType._all_field_names_ = {'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([ +ShowcaseResolveCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} ShowcaseResolveCommentDetails._all_fields_ = [ ('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_field_names_ = {'description'} ShowcaseResolveCommentType._all_fields_ = [('description', ShowcaseResolveCommentType.description.validator)] ShowcaseRestoredDetails.event_uuid.validator = bv.String() -ShowcaseRestoredDetails._all_field_names_ = set(['event_uuid']) +ShowcaseRestoredDetails._all_field_names_ = {'event_uuid'} ShowcaseRestoredDetails._all_fields_ = [('event_uuid', ShowcaseRestoredDetails.event_uuid.validator)] ShowcaseRestoredType.description.validator = bv.String() -ShowcaseRestoredType._all_field_names_ = set(['description']) +ShowcaseRestoredType._all_field_names_ = {'description'} ShowcaseRestoredType._all_fields_ = [('description', ShowcaseRestoredType.description.validator)] ShowcaseTrashedDeprecatedDetails.event_uuid.validator = bv.String() -ShowcaseTrashedDeprecatedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseTrashedDeprecatedDetails._all_field_names_ = {'event_uuid'} ShowcaseTrashedDeprecatedDetails._all_fields_ = [('event_uuid', ShowcaseTrashedDeprecatedDetails.event_uuid.validator)] ShowcaseTrashedDeprecatedType.description.validator = bv.String() -ShowcaseTrashedDeprecatedType._all_field_names_ = set(['description']) +ShowcaseTrashedDeprecatedType._all_field_names_ = {'description'} ShowcaseTrashedDeprecatedType._all_fields_ = [('description', ShowcaseTrashedDeprecatedType.description.validator)] ShowcaseTrashedDetails.event_uuid.validator = bv.String() -ShowcaseTrashedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseTrashedDetails._all_field_names_ = {'event_uuid'} ShowcaseTrashedDetails._all_fields_ = [('event_uuid', ShowcaseTrashedDetails.event_uuid.validator)] ShowcaseTrashedType.description.validator = bv.String() -ShowcaseTrashedType._all_field_names_ = set(['description']) +ShowcaseTrashedType._all_field_names_ = {'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([ +ShowcaseUnresolveCommentDetails._all_field_names_ = { 'event_uuid', 'comment_text', -]) +} ShowcaseUnresolveCommentDetails._all_fields_ = [ ('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_field_names_ = {'description'} ShowcaseUnresolveCommentType._all_fields_ = [('description', ShowcaseUnresolveCommentType.description.validator)] ShowcaseUntrashedDeprecatedDetails.event_uuid.validator = bv.String() -ShowcaseUntrashedDeprecatedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseUntrashedDeprecatedDetails._all_field_names_ = {'event_uuid'} ShowcaseUntrashedDeprecatedDetails._all_fields_ = [('event_uuid', ShowcaseUntrashedDeprecatedDetails.event_uuid.validator)] ShowcaseUntrashedDeprecatedType.description.validator = bv.String() -ShowcaseUntrashedDeprecatedType._all_field_names_ = set(['description']) +ShowcaseUntrashedDeprecatedType._all_field_names_ = {'description'} ShowcaseUntrashedDeprecatedType._all_fields_ = [('description', ShowcaseUntrashedDeprecatedType.description.validator)] ShowcaseUntrashedDetails.event_uuid.validator = bv.String() -ShowcaseUntrashedDetails._all_field_names_ = set(['event_uuid']) +ShowcaseUntrashedDetails._all_field_names_ = {'event_uuid'} ShowcaseUntrashedDetails._all_fields_ = [('event_uuid', ShowcaseUntrashedDetails.event_uuid.validator)] ShowcaseUntrashedType.description.validator = bv.String() -ShowcaseUntrashedType._all_field_names_ = set(['description']) +ShowcaseUntrashedType._all_field_names_ = {'description'} ShowcaseUntrashedType._all_fields_ = [('description', ShowcaseUntrashedType.description.validator)] ShowcaseViewDetails.event_uuid.validator = bv.String() -ShowcaseViewDetails._all_field_names_ = set(['event_uuid']) +ShowcaseViewDetails._all_field_names_ = {'event_uuid'} ShowcaseViewDetails._all_fields_ = [('event_uuid', ShowcaseViewDetails.event_uuid.validator)] ShowcaseViewType.description.validator = bv.String() -ShowcaseViewType._all_field_names_ = set(['description']) +ShowcaseViewType._all_field_names_ = {'description'} ShowcaseViewType._all_fields_ = [('description', ShowcaseViewType.description.validator)] -SignInAsSessionEndDetails._all_field_names_ = set([]) +SignInAsSessionEndDetails._all_field_names_ = set() SignInAsSessionEndDetails._all_fields_ = [] SignInAsSessionEndType.description.validator = bv.String() -SignInAsSessionEndType._all_field_names_ = set(['description']) +SignInAsSessionEndType._all_field_names_ = {'description'} SignInAsSessionEndType._all_fields_ = [('description', SignInAsSessionEndType.description.validator)] -SignInAsSessionStartDetails._all_field_names_ = set([]) +SignInAsSessionStartDetails._all_field_names_ = set() SignInAsSessionStartDetails._all_fields_ = [] SignInAsSessionStartType.description.validator = bv.String() -SignInAsSessionStartType._all_field_names_ = set(['description']) +SignInAsSessionStartType._all_field_names_ = {'description'} SignInAsSessionStartType._all_fields_ = [('description', SignInAsSessionStartType.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([ +SmartSyncChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SmartSyncChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} SmartSyncChangePolicyType._all_fields_ = [('description', SmartSyncChangePolicyType.description.validator)] -SmartSyncCreateAdminPrivilegeReportDetails._all_field_names_ = set([]) +SmartSyncCreateAdminPrivilegeReportDetails._all_field_names_ = set() SmartSyncCreateAdminPrivilegeReportDetails._all_fields_ = [] SmartSyncCreateAdminPrivilegeReportType.description.validator = bv.String() -SmartSyncCreateAdminPrivilegeReportType._all_field_names_ = set(['description']) +SmartSyncCreateAdminPrivilegeReportType._all_field_names_ = {'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([ +SmartSyncNotOptOutDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} SmartSyncNotOptOutDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SmartSyncOptOutDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} SmartSyncOptOutDetails._all_fields_ = [ ('previous_value', SmartSyncOptOutDetails.previous_value.validator), ('new_value', SmartSyncOptOutDetails.new_value.validator), @@ -86538,22 +86536,22 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SmartSyncOptOutPolicy.other = SmartSyncOptOutPolicy('other') SmartSyncOptOutType.description.validator = bv.String() -SmartSyncOptOutType._all_field_names_ = set(['description']) +SmartSyncOptOutType._all_field_names_ = {'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([ +SmarterSmartSyncPolicyChangedDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} SmarterSmartSyncPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} SmarterSmartSyncPolicyChangedType._all_fields_ = [('description', SmarterSmartSyncPolicyChangedType.description.validator)] SpaceCapsType._hard_validator = bv.Void() @@ -86589,164 +86587,164 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SpaceLimitsStatus.other = SpaceLimitsStatus('other') SsoAddCertDetails.certificate_details.validator = Certificate_validator -SsoAddCertDetails._all_field_names_ = set(['certificate_details']) +SsoAddCertDetails._all_field_names_ = {'certificate_details'} SsoAddCertDetails._all_fields_ = [('certificate_details', SsoAddCertDetails.certificate_details.validator)] SsoAddCertType.description.validator = bv.String() -SsoAddCertType._all_field_names_ = set(['description']) +SsoAddCertType._all_field_names_ = {'description'} SsoAddCertType._all_fields_ = [('description', SsoAddCertType.description.validator)] SsoAddLoginUrlDetails.new_value.validator = bv.String() -SsoAddLoginUrlDetails._all_field_names_ = set(['new_value']) +SsoAddLoginUrlDetails._all_field_names_ = {'new_value'} SsoAddLoginUrlDetails._all_fields_ = [('new_value', SsoAddLoginUrlDetails.new_value.validator)] SsoAddLoginUrlType.description.validator = bv.String() -SsoAddLoginUrlType._all_field_names_ = set(['description']) +SsoAddLoginUrlType._all_field_names_ = {'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_field_names_ = {'new_value'} SsoAddLogoutUrlDetails._all_fields_ = [('new_value', SsoAddLogoutUrlDetails.new_value.validator)] SsoAddLogoutUrlType.description.validator = bv.String() -SsoAddLogoutUrlType._all_field_names_ = set(['description']) +SsoAddLogoutUrlType._all_field_names_ = {'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([ +SsoChangeCertDetails._all_field_names_ = { '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), ] SsoChangeCertType.description.validator = bv.String() -SsoChangeCertType._all_field_names_ = set(['description']) +SsoChangeCertType._all_field_names_ = {'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([ +SsoChangeLoginUrlDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} SsoChangeLoginUrlDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SsoChangeLogoutUrlDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} SsoChangeLogoutUrlDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SsoChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} SsoChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +SsoChangeSamlIdentityModeDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} SsoChangeSamlIdentityModeDetails._all_fields_ = [ ('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_field_names_ = {'description'} SsoChangeSamlIdentityModeType._all_fields_ = [('description', SsoChangeSamlIdentityModeType.description.validator)] SsoErrorDetails.error_details.validator = FailureDetailsLogInfo_validator -SsoErrorDetails._all_field_names_ = set(['error_details']) +SsoErrorDetails._all_field_names_ = {'error_details'} SsoErrorDetails._all_fields_ = [('error_details', SsoErrorDetails.error_details.validator)] SsoErrorType.description.validator = bv.String() -SsoErrorType._all_field_names_ = set(['description']) +SsoErrorType._all_field_names_ = {'description'} SsoErrorType._all_fields_ = [('description', SsoErrorType.description.validator)] -SsoRemoveCertDetails._all_field_names_ = set([]) +SsoRemoveCertDetails._all_field_names_ = set() SsoRemoveCertDetails._all_fields_ = [] SsoRemoveCertType.description.validator = bv.String() -SsoRemoveCertType._all_field_names_ = set(['description']) +SsoRemoveCertType._all_field_names_ = {'description'} SsoRemoveCertType._all_fields_ = [('description', SsoRemoveCertType.description.validator)] SsoRemoveLoginUrlDetails.previous_value.validator = bv.String() -SsoRemoveLoginUrlDetails._all_field_names_ = set(['previous_value']) +SsoRemoveLoginUrlDetails._all_field_names_ = {'previous_value'} SsoRemoveLoginUrlDetails._all_fields_ = [('previous_value', SsoRemoveLoginUrlDetails.previous_value.validator)] SsoRemoveLoginUrlType.description.validator = bv.String() -SsoRemoveLoginUrlType._all_field_names_ = set(['description']) +SsoRemoveLoginUrlType._all_field_names_ = {'description'} SsoRemoveLoginUrlType._all_fields_ = [('description', SsoRemoveLoginUrlType.description.validator)] SsoRemoveLogoutUrlDetails.previous_value.validator = bv.String() -SsoRemoveLogoutUrlDetails._all_field_names_ = set(['previous_value']) +SsoRemoveLogoutUrlDetails._all_field_names_ = {'previous_value'} SsoRemoveLogoutUrlDetails._all_fields_ = [('previous_value', SsoRemoveLogoutUrlDetails.previous_value.validator)] SsoRemoveLogoutUrlType.description.validator = bv.String() -SsoRemoveLogoutUrlType._all_field_names_ = set(['description']) +SsoRemoveLogoutUrlType._all_field_names_ = {'description'} SsoRemoveLogoutUrlType._all_fields_ = [('description', SsoRemoveLogoutUrlType.description.validator)] StartedEnterpriseAdminSessionDetails.federation_extra_details.validator = FedExtraDetails_validator -StartedEnterpriseAdminSessionDetails._all_field_names_ = set(['federation_extra_details']) +StartedEnterpriseAdminSessionDetails._all_field_names_ = {'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_field_names_ = {'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([ +TeamActivityCreateReportDetails._all_field_names_ = { 'start_date', 'end_date', -]) +} TeamActivityCreateReportDetails._all_fields_ = [ ('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_field_names_ = {'failure_reason'} TeamActivityCreateReportFailDetails._all_fields_ = [('failure_reason', TeamActivityCreateReportFailDetails.failure_reason.validator)] TeamActivityCreateReportFailType.description.validator = bv.String() -TeamActivityCreateReportFailType._all_field_names_ = set(['description']) +TeamActivityCreateReportFailType._all_field_names_ = {'description'} TeamActivityCreateReportFailType._all_fields_ = [('description', TeamActivityCreateReportFailType.description.validator)] TeamActivityCreateReportType.description.validator = bv.String() -TeamActivityCreateReportType._all_field_names_ = set(['description']) +TeamActivityCreateReportType._all_field_names_ = {'description'} TeamActivityCreateReportType._all_fields_ = [('description', TeamActivityCreateReportType.description.validator)] TeamBrandingPolicy._disabled_validator = bv.Void() @@ -86764,70 +86762,70 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamBrandingPolicyChangedDetails.new_value.validator = TeamBrandingPolicy_validator TeamBrandingPolicyChangedDetails.previous_value.validator = TeamBrandingPolicy_validator -TeamBrandingPolicyChangedDetails._all_field_names_ = set([ +TeamBrandingPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} TeamBrandingPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamBrandingPolicyChangedType._all_fields_ = [('description', TeamBrandingPolicyChangedType.description.validator)] TeamDetails.team.validator = bv.String() -TeamDetails._all_field_names_ = set(['team']) +TeamDetails._all_field_names_ = {'team'} TeamDetails._all_fields_ = [('team', TeamDetails.team.validator)] -TeamEncryptionKeyCancelKeyDeletionDetails._all_field_names_ = set([]) +TeamEncryptionKeyCancelKeyDeletionDetails._all_field_names_ = set() TeamEncryptionKeyCancelKeyDeletionDetails._all_fields_ = [] TeamEncryptionKeyCancelKeyDeletionType.description.validator = bv.String() -TeamEncryptionKeyCancelKeyDeletionType._all_field_names_ = set(['description']) +TeamEncryptionKeyCancelKeyDeletionType._all_field_names_ = {'description'} TeamEncryptionKeyCancelKeyDeletionType._all_fields_ = [('description', TeamEncryptionKeyCancelKeyDeletionType.description.validator)] -TeamEncryptionKeyCreateKeyDetails._all_field_names_ = set([]) +TeamEncryptionKeyCreateKeyDetails._all_field_names_ = set() TeamEncryptionKeyCreateKeyDetails._all_fields_ = [] TeamEncryptionKeyCreateKeyType.description.validator = bv.String() -TeamEncryptionKeyCreateKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyCreateKeyType._all_field_names_ = {'description'} TeamEncryptionKeyCreateKeyType._all_fields_ = [('description', TeamEncryptionKeyCreateKeyType.description.validator)] -TeamEncryptionKeyDeleteKeyDetails._all_field_names_ = set([]) +TeamEncryptionKeyDeleteKeyDetails._all_field_names_ = set() TeamEncryptionKeyDeleteKeyDetails._all_fields_ = [] TeamEncryptionKeyDeleteKeyType.description.validator = bv.String() -TeamEncryptionKeyDeleteKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyDeleteKeyType._all_field_names_ = {'description'} TeamEncryptionKeyDeleteKeyType._all_fields_ = [('description', TeamEncryptionKeyDeleteKeyType.description.validator)] -TeamEncryptionKeyDisableKeyDetails._all_field_names_ = set([]) +TeamEncryptionKeyDisableKeyDetails._all_field_names_ = set() TeamEncryptionKeyDisableKeyDetails._all_fields_ = [] TeamEncryptionKeyDisableKeyType.description.validator = bv.String() -TeamEncryptionKeyDisableKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyDisableKeyType._all_field_names_ = {'description'} TeamEncryptionKeyDisableKeyType._all_fields_ = [('description', TeamEncryptionKeyDisableKeyType.description.validator)] -TeamEncryptionKeyEnableKeyDetails._all_field_names_ = set([]) +TeamEncryptionKeyEnableKeyDetails._all_field_names_ = set() TeamEncryptionKeyEnableKeyDetails._all_fields_ = [] TeamEncryptionKeyEnableKeyType.description.validator = bv.String() -TeamEncryptionKeyEnableKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyEnableKeyType._all_field_names_ = {'description'} TeamEncryptionKeyEnableKeyType._all_fields_ = [('description', TeamEncryptionKeyEnableKeyType.description.validator)] -TeamEncryptionKeyRotateKeyDetails._all_field_names_ = set([]) +TeamEncryptionKeyRotateKeyDetails._all_field_names_ = set() TeamEncryptionKeyRotateKeyDetails._all_fields_ = [] TeamEncryptionKeyRotateKeyType.description.validator = bv.String() -TeamEncryptionKeyRotateKeyType._all_field_names_ = set(['description']) +TeamEncryptionKeyRotateKeyType._all_field_names_ = {'description'} TeamEncryptionKeyRotateKeyType._all_fields_ = [('description', TeamEncryptionKeyRotateKeyType.description.validator)] -TeamEncryptionKeyScheduleKeyDeletionDetails._all_field_names_ = set([]) +TeamEncryptionKeyScheduleKeyDeletionDetails._all_field_names_ = set() TeamEncryptionKeyScheduleKeyDeletionDetails._all_fields_ = [] TeamEncryptionKeyScheduleKeyDeletionType.description.validator = bv.String() -TeamEncryptionKeyScheduleKeyDeletionType._all_field_names_ = set(['description']) +TeamEncryptionKeyScheduleKeyDeletionType._all_field_names_ = {'description'} TeamEncryptionKeyScheduleKeyDeletionType._all_fields_ = [('description', TeamEncryptionKeyScheduleKeyDeletionType.description.validator)] TeamEvent.timestamp.validator = common.DropboxTimestamp_validator @@ -86840,7 +86838,7 @@ 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([ +TeamEvent._all_field_names_ = { 'timestamp', 'event_category', 'actor', @@ -86851,7 +86849,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'assets', 'event_type', 'details', -]) +} TeamEvent._all_fields_ = [ ('timestamp', TeamEvent.timestamp.validator), ('event_category', TeamEvent.event_category.validator), @@ -86880,99 +86878,99 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamExtensionsPolicyChangedDetails.new_value.validator = TeamExtensionsPolicy_validator TeamExtensionsPolicyChangedDetails.previous_value.validator = TeamExtensionsPolicy_validator -TeamExtensionsPolicyChangedDetails._all_field_names_ = set([ +TeamExtensionsPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} TeamExtensionsPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +TeamFolderChangeStatusDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} TeamFolderChangeStatusDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamFolderChangeStatusType._all_fields_ = [('description', TeamFolderChangeStatusType.description.validator)] -TeamFolderCreateDetails._all_field_names_ = set([]) +TeamFolderCreateDetails._all_field_names_ = set() TeamFolderCreateDetails._all_fields_ = [] TeamFolderCreateType.description.validator = bv.String() -TeamFolderCreateType._all_field_names_ = set(['description']) +TeamFolderCreateType._all_field_names_ = {'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_field_names_ = {'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_field_names_ = {'description'} TeamFolderDowngradeType._all_fields_ = [('description', TeamFolderDowngradeType.description.validator)] -TeamFolderPermanentlyDeleteDetails._all_field_names_ = set([]) +TeamFolderPermanentlyDeleteDetails._all_field_names_ = set() TeamFolderPermanentlyDeleteDetails._all_fields_ = [] TeamFolderPermanentlyDeleteType.description.validator = bv.String() -TeamFolderPermanentlyDeleteType._all_field_names_ = set(['description']) +TeamFolderPermanentlyDeleteType._all_field_names_ = {'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([ +TeamFolderRenameDetails._all_field_names_ = { '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), ] TeamFolderRenameType.description.validator = bv.String() -TeamFolderRenameType._all_field_names_ = set(['description']) +TeamFolderRenameType._all_field_names_ = {'description'} TeamFolderRenameType._all_fields_ = [('description', TeamFolderRenameType.description.validator)] TeamInviteDetails.invite_method.validator = InviteMethod_validator TeamInviteDetails.additional_license_purchase.validator = bv.Nullable(bv.Boolean()) -TeamInviteDetails._all_field_names_ = set([ +TeamInviteDetails._all_field_names_ = { 'invite_method', 'additional_license_purchase', -]) +} TeamInviteDetails._all_fields_ = [ ('invite_method', TeamInviteDetails.invite_method.validator), ('additional_license_purchase', TeamInviteDetails.additional_license_purchase.validator), ] -TeamLinkedAppLogInfo._field_names_ = set([]) +TeamLinkedAppLogInfo._field_names_ = set() 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_field_names_ = {'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([ +TeamMemberLogInfo._field_names_ = { '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), @@ -86998,15 +86996,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMembershipType.other = TeamMembershipType('other') TeamMergeFromDetails.team_name.validator = bv.String() -TeamMergeFromDetails._all_field_names_ = set(['team_name']) +TeamMergeFromDetails._all_field_names_ = {'team_name'} TeamMergeFromDetails._all_fields_ = [('team_name', TeamMergeFromDetails.team_name.validator)] TeamMergeFromType.description.validator = bv.String() -TeamMergeFromType._all_field_names_ = set(['description']) +TeamMergeFromType._all_field_names_ = {'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_field_names_ = {'request_accepted_details'} TeamMergeRequestAcceptedDetails._all_fields_ = [('request_accepted_details', TeamMergeRequestAcceptedDetails.request_accepted_details.validator)] TeamMergeRequestAcceptedExtraDetails._primary_team_validator = PrimaryTeamRequestAcceptedDetails_validator @@ -87022,48 +87020,48 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMergeRequestAcceptedShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestAcceptedShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestAcceptedShownToPrimaryTeamDetails._all_field_names_ = set([ +TeamMergeRequestAcceptedShownToPrimaryTeamDetails._all_field_names_ = { 'secondary_team', 'sent_by', -]) +} TeamMergeRequestAcceptedShownToPrimaryTeamDetails._all_fields_ = [ ('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_field_names_ = {'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([ +TeamMergeRequestAcceptedShownToSecondaryTeamDetails._all_field_names_ = { 'primary_team', 'sent_by', -]) +} TeamMergeRequestAcceptedShownToSecondaryTeamDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamMergeRequestAcceptedShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestAcceptedShownToSecondaryTeamType.description.validator)] TeamMergeRequestAcceptedType.description.validator = bv.String() -TeamMergeRequestAcceptedType._all_field_names_ = set(['description']) +TeamMergeRequestAcceptedType._all_field_names_ = {'description'} TeamMergeRequestAcceptedType._all_fields_ = [('description', TeamMergeRequestAcceptedType.description.validator)] TeamMergeRequestAutoCanceledDetails.details.validator = bv.Nullable(bv.String()) -TeamMergeRequestAutoCanceledDetails._all_field_names_ = set(['details']) +TeamMergeRequestAutoCanceledDetails._all_field_names_ = {'details'} TeamMergeRequestAutoCanceledDetails._all_fields_ = [('details', TeamMergeRequestAutoCanceledDetails.details.validator)] TeamMergeRequestAutoCanceledType.description.validator = bv.String() -TeamMergeRequestAutoCanceledType._all_field_names_ = set(['description']) +TeamMergeRequestAutoCanceledType._all_field_names_ = {'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_field_names_ = {'request_canceled_details'} TeamMergeRequestCanceledDetails._all_fields_ = [('request_canceled_details', TeamMergeRequestCanceledDetails.request_canceled_details.validator)] TeamMergeRequestCanceledExtraDetails._primary_team_validator = PrimaryTeamRequestCanceledDetails_validator @@ -87079,40 +87077,40 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMergeRequestCanceledShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestCanceledShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestCanceledShownToPrimaryTeamDetails._all_field_names_ = set([ +TeamMergeRequestCanceledShownToPrimaryTeamDetails._all_field_names_ = { 'secondary_team', 'sent_by', -]) +} TeamMergeRequestCanceledShownToPrimaryTeamDetails._all_fields_ = [ ('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_field_names_ = {'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([ +TeamMergeRequestCanceledShownToSecondaryTeamDetails._all_field_names_ = { 'sent_to', 'sent_by', -]) +} TeamMergeRequestCanceledShownToSecondaryTeamDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamMergeRequestCanceledShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestCanceledShownToSecondaryTeamType.description.validator)] TeamMergeRequestCanceledType.description.validator = bv.String() -TeamMergeRequestCanceledType._all_field_names_ = set(['description']) +TeamMergeRequestCanceledType._all_field_names_ = {'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_field_names_ = {'request_expired_details'} TeamMergeRequestExpiredDetails._all_fields_ = [('request_expired_details', TeamMergeRequestExpiredDetails.request_expired_details.validator)] TeamMergeRequestExpiredExtraDetails._primary_team_validator = PrimaryTeamRequestExpiredDetails_validator @@ -87128,56 +87126,56 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMergeRequestExpiredShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestExpiredShownToPrimaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestExpiredShownToPrimaryTeamDetails._all_field_names_ = set([ +TeamMergeRequestExpiredShownToPrimaryTeamDetails._all_field_names_ = { 'secondary_team', 'sent_by', -]) +} TeamMergeRequestExpiredShownToPrimaryTeamDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamMergeRequestExpiredShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestExpiredShownToPrimaryTeamType.description.validator)] TeamMergeRequestExpiredShownToSecondaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_field_names_ = set(['sent_to']) +TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_field_names_ = {'sent_to'} TeamMergeRequestExpiredShownToSecondaryTeamDetails._all_fields_ = [('sent_to', TeamMergeRequestExpiredShownToSecondaryTeamDetails.sent_to.validator)] TeamMergeRequestExpiredShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestExpiredShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestExpiredShownToSecondaryTeamType._all_field_names_ = {'description'} TeamMergeRequestExpiredShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestExpiredShownToSecondaryTeamType.description.validator)] TeamMergeRequestExpiredType.description.validator = bv.String() -TeamMergeRequestExpiredType._all_field_names_ = set(['description']) +TeamMergeRequestExpiredType._all_field_names_ = {'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([ +TeamMergeRequestRejectedShownToPrimaryTeamDetails._all_field_names_ = { 'secondary_team', 'sent_by', -]) +} TeamMergeRequestRejectedShownToPrimaryTeamDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamMergeRequestRejectedShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestRejectedShownToPrimaryTeamType.description.validator)] TeamMergeRequestRejectedShownToSecondaryTeamDetails.sent_by.validator = bv.String() -TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_field_names_ = set(['sent_by']) +TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_field_names_ = {'sent_by'} TeamMergeRequestRejectedShownToSecondaryTeamDetails._all_fields_ = [('sent_by', TeamMergeRequestRejectedShownToSecondaryTeamDetails.sent_by.validator)] TeamMergeRequestRejectedShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestRejectedShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestRejectedShownToSecondaryTeamType._all_field_names_ = {'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_field_names_ = {'request_reminder_details'} TeamMergeRequestReminderDetails._all_fields_ = [('request_reminder_details', TeamMergeRequestReminderDetails.request_reminder_details.validator)] TeamMergeRequestReminderExtraDetails._primary_team_validator = PrimaryTeamRequestReminderDetails_validator @@ -87193,151 +87191,151 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMergeRequestReminderShownToPrimaryTeamDetails.secondary_team.validator = bv.String() TeamMergeRequestReminderShownToPrimaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestReminderShownToPrimaryTeamDetails._all_field_names_ = set([ +TeamMergeRequestReminderShownToPrimaryTeamDetails._all_field_names_ = { 'secondary_team', 'sent_to', -]) +} TeamMergeRequestReminderShownToPrimaryTeamDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamMergeRequestReminderShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestReminderShownToPrimaryTeamType.description.validator)] TeamMergeRequestReminderShownToSecondaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestReminderShownToSecondaryTeamDetails._all_field_names_ = set(['sent_to']) +TeamMergeRequestReminderShownToSecondaryTeamDetails._all_field_names_ = {'sent_to'} TeamMergeRequestReminderShownToSecondaryTeamDetails._all_fields_ = [('sent_to', TeamMergeRequestReminderShownToSecondaryTeamDetails.sent_to.validator)] TeamMergeRequestReminderShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestReminderShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestReminderShownToSecondaryTeamType._all_field_names_ = {'description'} TeamMergeRequestReminderShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestReminderShownToSecondaryTeamType.description.validator)] TeamMergeRequestReminderType.description.validator = bv.String() -TeamMergeRequestReminderType._all_field_names_ = set(['description']) +TeamMergeRequestReminderType._all_field_names_ = {'description'} TeamMergeRequestReminderType._all_fields_ = [('description', TeamMergeRequestReminderType.description.validator)] TeamMergeRequestRevokedDetails.team.validator = bv.String() -TeamMergeRequestRevokedDetails._all_field_names_ = set(['team']) +TeamMergeRequestRevokedDetails._all_field_names_ = {'team'} TeamMergeRequestRevokedDetails._all_fields_ = [('team', TeamMergeRequestRevokedDetails.team.validator)] TeamMergeRequestRevokedType.description.validator = bv.String() -TeamMergeRequestRevokedType._all_field_names_ = set(['description']) +TeamMergeRequestRevokedType._all_field_names_ = {'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([ +TeamMergeRequestSentShownToPrimaryTeamDetails._all_field_names_ = { 'secondary_team', 'sent_to', -]) +} TeamMergeRequestSentShownToPrimaryTeamDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamMergeRequestSentShownToPrimaryTeamType._all_fields_ = [('description', TeamMergeRequestSentShownToPrimaryTeamType.description.validator)] TeamMergeRequestSentShownToSecondaryTeamDetails.sent_to.validator = bv.String() -TeamMergeRequestSentShownToSecondaryTeamDetails._all_field_names_ = set(['sent_to']) +TeamMergeRequestSentShownToSecondaryTeamDetails._all_field_names_ = {'sent_to'} TeamMergeRequestSentShownToSecondaryTeamDetails._all_fields_ = [('sent_to', TeamMergeRequestSentShownToSecondaryTeamDetails.sent_to.validator)] TeamMergeRequestSentShownToSecondaryTeamType.description.validator = bv.String() -TeamMergeRequestSentShownToSecondaryTeamType._all_field_names_ = set(['description']) +TeamMergeRequestSentShownToSecondaryTeamType._all_field_names_ = {'description'} TeamMergeRequestSentShownToSecondaryTeamType._all_fields_ = [('description', TeamMergeRequestSentShownToSecondaryTeamType.description.validator)] TeamMergeToDetails.team_name.validator = bv.String() -TeamMergeToDetails._all_field_names_ = set(['team_name']) +TeamMergeToDetails._all_field_names_ = {'team_name'} TeamMergeToDetails._all_fields_ = [('team_name', TeamMergeToDetails.team_name.validator)] TeamMergeToType.description.validator = bv.String() -TeamMergeToType._all_field_names_ = set(['description']) +TeamMergeToType._all_field_names_ = {'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([ +TeamName._all_field_names_ = { '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), ] -TeamProfileAddBackgroundDetails._all_field_names_ = set([]) +TeamProfileAddBackgroundDetails._all_field_names_ = set() TeamProfileAddBackgroundDetails._all_fields_ = [] TeamProfileAddBackgroundType.description.validator = bv.String() -TeamProfileAddBackgroundType._all_field_names_ = set(['description']) +TeamProfileAddBackgroundType._all_field_names_ = {'description'} TeamProfileAddBackgroundType._all_fields_ = [('description', TeamProfileAddBackgroundType.description.validator)] -TeamProfileAddLogoDetails._all_field_names_ = set([]) +TeamProfileAddLogoDetails._all_field_names_ = set() TeamProfileAddLogoDetails._all_fields_ = [] TeamProfileAddLogoType.description.validator = bv.String() -TeamProfileAddLogoType._all_field_names_ = set(['description']) +TeamProfileAddLogoType._all_field_names_ = {'description'} TeamProfileAddLogoType._all_fields_ = [('description', TeamProfileAddLogoType.description.validator)] -TeamProfileChangeBackgroundDetails._all_field_names_ = set([]) +TeamProfileChangeBackgroundDetails._all_field_names_ = set() TeamProfileChangeBackgroundDetails._all_fields_ = [] TeamProfileChangeBackgroundType.description.validator = bv.String() -TeamProfileChangeBackgroundType._all_field_names_ = set(['description']) +TeamProfileChangeBackgroundType._all_field_names_ = {'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([ +TeamProfileChangeDefaultLanguageDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} TeamProfileChangeDefaultLanguageDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamProfileChangeDefaultLanguageType._all_fields_ = [('description', TeamProfileChangeDefaultLanguageType.description.validator)] -TeamProfileChangeLogoDetails._all_field_names_ = set([]) +TeamProfileChangeLogoDetails._all_field_names_ = set() TeamProfileChangeLogoDetails._all_fields_ = [] TeamProfileChangeLogoType.description.validator = bv.String() -TeamProfileChangeLogoType._all_field_names_ = set(['description']) +TeamProfileChangeLogoType._all_field_names_ = {'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([ +TeamProfileChangeNameDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} TeamProfileChangeNameDetails._all_fields_ = [ ('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_field_names_ = {'description'} TeamProfileChangeNameType._all_fields_ = [('description', TeamProfileChangeNameType.description.validator)] -TeamProfileRemoveBackgroundDetails._all_field_names_ = set([]) +TeamProfileRemoveBackgroundDetails._all_field_names_ = set() TeamProfileRemoveBackgroundDetails._all_fields_ = [] TeamProfileRemoveBackgroundType.description.validator = bv.String() -TeamProfileRemoveBackgroundType._all_field_names_ = set(['description']) +TeamProfileRemoveBackgroundType._all_field_names_ = {'description'} TeamProfileRemoveBackgroundType._all_fields_ = [('description', TeamProfileRemoveBackgroundType.description.validator)] -TeamProfileRemoveLogoDetails._all_field_names_ = set([]) +TeamProfileRemoveLogoDetails._all_field_names_ = set() TeamProfileRemoveLogoDetails._all_fields_ = [] TeamProfileRemoveLogoType.description.validator = bv.String() -TeamProfileRemoveLogoType._all_field_names_ = set(['description']) +TeamProfileRemoveLogoType._all_field_names_ = {'description'} TeamProfileRemoveLogoType._all_fields_ = [('description', TeamProfileRemoveLogoType.description.validator)] TeamSelectiveSyncPolicy._disabled_validator = bv.Void() @@ -87355,100 +87353,100 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamSelectiveSyncPolicyChangedDetails.new_value.validator = TeamSelectiveSyncPolicy_validator TeamSelectiveSyncPolicyChangedDetails.previous_value.validator = TeamSelectiveSyncPolicy_validator -TeamSelectiveSyncPolicyChangedDetails._all_field_names_ = set([ +TeamSelectiveSyncPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} TeamSelectiveSyncPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +TeamSelectiveSyncSettingsChangedDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} TeamSelectiveSyncSettingsChangedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +TeamSharingWhitelistSubjectsChangedDetails._all_field_names_ = { '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), ] TeamSharingWhitelistSubjectsChangedType.description.validator = bv.String() -TeamSharingWhitelistSubjectsChangedType._all_field_names_ = set(['description']) +TeamSharingWhitelistSubjectsChangedType._all_field_names_ = {'description'} TeamSharingWhitelistSubjectsChangedType._all_fields_ = [('description', TeamSharingWhitelistSubjectsChangedType.description.validator)] -TfaAddBackupPhoneDetails._all_field_names_ = set([]) +TfaAddBackupPhoneDetails._all_field_names_ = set() TfaAddBackupPhoneDetails._all_fields_ = [] TfaAddBackupPhoneType.description.validator = bv.String() -TfaAddBackupPhoneType._all_field_names_ = set(['description']) +TfaAddBackupPhoneType._all_field_names_ = {'description'} TfaAddBackupPhoneType._all_fields_ = [('description', TfaAddBackupPhoneType.description.validator)] -TfaAddExceptionDetails._all_field_names_ = set([]) +TfaAddExceptionDetails._all_field_names_ = set() TfaAddExceptionDetails._all_fields_ = [] TfaAddExceptionType.description.validator = bv.String() -TfaAddExceptionType._all_field_names_ = set(['description']) +TfaAddExceptionType._all_field_names_ = {'description'} TfaAddExceptionType._all_fields_ = [('description', TfaAddExceptionType.description.validator)] -TfaAddSecurityKeyDetails._all_field_names_ = set([]) +TfaAddSecurityKeyDetails._all_field_names_ = set() TfaAddSecurityKeyDetails._all_fields_ = [] TfaAddSecurityKeyType.description.validator = bv.String() -TfaAddSecurityKeyType._all_field_names_ = set(['description']) +TfaAddSecurityKeyType._all_field_names_ = {'description'} TfaAddSecurityKeyType._all_fields_ = [('description', TfaAddSecurityKeyType.description.validator)] -TfaChangeBackupPhoneDetails._all_field_names_ = set([]) +TfaChangeBackupPhoneDetails._all_field_names_ = set() TfaChangeBackupPhoneDetails._all_fields_ = [] TfaChangeBackupPhoneType.description.validator = bv.String() -TfaChangeBackupPhoneType._all_field_names_ = set(['description']) +TfaChangeBackupPhoneType._all_field_names_ = {'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([ +TfaChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} TfaChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +TfaChangeStatusDetails._all_field_names_ = { 'new_value', 'previous_value', 'used_rescue_code', -]) +} TfaChangeStatusDetails._all_fields_ = [ ('new_value', TfaChangeStatusDetails.new_value.validator), ('previous_value', TfaChangeStatusDetails.previous_value.validator), @@ -87456,7 +87454,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] TfaChangeStatusType.description.validator = bv.String() -TfaChangeStatusType._all_field_names_ = set(['description']) +TfaChangeStatusType._all_field_names_ = {'description'} TfaChangeStatusType._all_fields_ = [('description', TfaChangeStatusType.description.validator)] TfaConfiguration._authenticator_validator = bv.Void() @@ -87478,32 +87476,32 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TfaConfiguration.sms = TfaConfiguration('sms') TfaConfiguration.other = TfaConfiguration('other') -TfaRemoveBackupPhoneDetails._all_field_names_ = set([]) +TfaRemoveBackupPhoneDetails._all_field_names_ = set() TfaRemoveBackupPhoneDetails._all_fields_ = [] TfaRemoveBackupPhoneType.description.validator = bv.String() -TfaRemoveBackupPhoneType._all_field_names_ = set(['description']) +TfaRemoveBackupPhoneType._all_field_names_ = {'description'} TfaRemoveBackupPhoneType._all_fields_ = [('description', TfaRemoveBackupPhoneType.description.validator)] -TfaRemoveExceptionDetails._all_field_names_ = set([]) +TfaRemoveExceptionDetails._all_field_names_ = set() TfaRemoveExceptionDetails._all_fields_ = [] TfaRemoveExceptionType.description.validator = bv.String() -TfaRemoveExceptionType._all_field_names_ = set(['description']) +TfaRemoveExceptionType._all_field_names_ = {'description'} TfaRemoveExceptionType._all_fields_ = [('description', TfaRemoveExceptionType.description.validator)] -TfaRemoveSecurityKeyDetails._all_field_names_ = set([]) +TfaRemoveSecurityKeyDetails._all_field_names_ = set() TfaRemoveSecurityKeyDetails._all_fields_ = [] TfaRemoveSecurityKeyType.description.validator = bv.String() -TfaRemoveSecurityKeyType._all_field_names_ = set(['description']) +TfaRemoveSecurityKeyType._all_field_names_ = {'description'} TfaRemoveSecurityKeyType._all_fields_ = [('description', TfaRemoveSecurityKeyType.description.validator)] -TfaResetDetails._all_field_names_ = set([]) +TfaResetDetails._all_field_names_ = set() TfaResetDetails._all_fields_ = [] TfaResetType.description.validator = bv.String() -TfaResetType._all_field_names_ = set(['description']) +TfaResetType._all_field_names_ = {'description'} TfaResetType._all_fields_ = [('description', TfaResetType.description.validator)] TimeUnit._days_validator = bv.Void() @@ -87539,10 +87537,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TrustedNonTeamMemberLogInfo.trusted_non_team_member_type.validator = TrustedNonTeamMemberType_validator TrustedNonTeamMemberLogInfo.team.validator = bv.Nullable(TeamLogInfo_validator) -TrustedNonTeamMemberLogInfo._field_names_ = set([ +TrustedNonTeamMemberLogInfo._field_names_ = { '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), @@ -87603,17 +87601,17 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TwoAccountChangePolicyDetails.new_value.validator = TwoAccountPolicy_validator TwoAccountChangePolicyDetails.previous_value.validator = bv.Nullable(TwoAccountPolicy_validator) -TwoAccountChangePolicyDetails._all_field_names_ = set([ +TwoAccountChangePolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} TwoAccountChangePolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} TwoAccountChangePolicyType._all_fields_ = [('description', TwoAccountChangePolicyType.description.validator)] TwoAccountPolicy._disabled_validator = bv.Void() @@ -87629,21 +87627,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TwoAccountPolicy.enabled = TwoAccountPolicy('enabled') TwoAccountPolicy.other = TwoAccountPolicy('other') -UndoNamingConventionDetails._all_field_names_ = set([]) +UndoNamingConventionDetails._all_field_names_ = set() UndoNamingConventionDetails._all_fields_ = [] UndoNamingConventionType.description.validator = bv.String() -UndoNamingConventionType._all_field_names_ = set(['description']) +UndoNamingConventionType._all_field_names_ = {'description'} UndoNamingConventionType._all_fields_ = [('description', UndoNamingConventionType.description.validator)] -UndoOrganizeFolderWithTidyDetails._all_field_names_ = set([]) +UndoOrganizeFolderWithTidyDetails._all_field_names_ = set() UndoOrganizeFolderWithTidyDetails._all_fields_ = [] UndoOrganizeFolderWithTidyType.description.validator = bv.String() -UndoOrganizeFolderWithTidyType._all_field_names_ = set(['description']) +UndoOrganizeFolderWithTidyType._all_field_names_ = {'description'} UndoOrganizeFolderWithTidyType._all_fields_ = [('description', UndoOrganizeFolderWithTidyType.description.validator)] -UserLinkedAppLogInfo._field_names_ = set([]) +UserLinkedAppLogInfo._field_names_ = set() UserLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union(UserLinkedAppLogInfo._field_names_) UserLinkedAppLogInfo._fields_ = [] UserLinkedAppLogInfo._all_fields_ = AppLogInfo._all_fields_ + UserLinkedAppLogInfo._fields_ @@ -87651,51 +87649,51 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserNameLogInfo.given_name.validator = bv.String() UserNameLogInfo.surname.validator = bv.String() UserNameLogInfo.locale.validator = bv.Nullable(bv.String()) -UserNameLogInfo._all_field_names_ = set([ +UserNameLogInfo._all_field_names_ = { 'given_name', 'surname', 'locale', -]) +} UserNameLogInfo._all_fields_ = [ ('given_name', UserNameLogInfo.given_name.validator), ('surname', UserNameLogInfo.surname.validator), ('locale', UserNameLogInfo.locale.validator), ] -UserOrTeamLinkedAppLogInfo._field_names_ = set([]) +UserOrTeamLinkedAppLogInfo._field_names_ = set() UserOrTeamLinkedAppLogInfo._all_field_names_ = AppLogInfo._all_field_names_.union(UserOrTeamLinkedAppLogInfo._field_names_) 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_field_names_ = {'values'} UserTagsAddedDetails._all_fields_ = [('values', UserTagsAddedDetails.values.validator)] UserTagsAddedType.description.validator = bv.String() -UserTagsAddedType._all_field_names_ = set(['description']) +UserTagsAddedType._all_field_names_ = {'description'} UserTagsAddedType._all_fields_ = [('description', UserTagsAddedType.description.validator)] UserTagsRemovedDetails.values.validator = bv.List(bv.String()) -UserTagsRemovedDetails._all_field_names_ = set(['values']) +UserTagsRemovedDetails._all_field_names_ = {'values'} UserTagsRemovedDetails._all_fields_ = [('values', UserTagsRemovedDetails.values.validator)] UserTagsRemovedType.description.validator = bv.String() -UserTagsRemovedType._all_field_names_ = set(['description']) +UserTagsRemovedType._all_field_names_ = {'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([ +ViewerInfoPolicyChangedDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} ViewerInfoPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'description'} ViewerInfoPolicyChangedType._all_fields_ = [('description', ViewerInfoPolicyChangedType.description.validator)] WatermarkingPolicy._disabled_validator = bv.Void() @@ -87713,29 +87711,29 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): WatermarkingPolicyChangedDetails.new_value.validator = WatermarkingPolicy_validator WatermarkingPolicyChangedDetails.previous_value.validator = WatermarkingPolicy_validator -WatermarkingPolicyChangedDetails._all_field_names_ = set([ +WatermarkingPolicyChangedDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} WatermarkingPolicyChangedDetails._all_fields_ = [ ('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_field_names_ = {'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([ +WebDeviceSessionLogInfo._field_names_ = { '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), @@ -87745,54 +87743,54 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): ] WebDeviceSessionLogInfo._all_fields_ = DeviceSessionLogInfo._all_fields_ + WebDeviceSessionLogInfo._fields_ -WebSessionLogInfo._field_names_ = set([]) +WebSessionLogInfo._field_names_ = set() 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([ +WebSessionsChangeActiveSessionLimitDetails._all_field_names_ = { 'previous_value', 'new_value', -]) +} WebSessionsChangeActiveSessionLimitDetails._all_fields_ = [ ('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_field_names_ = {'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([ +WebSessionsChangeFixedLengthPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} WebSessionsChangeFixedLengthPolicyDetails._all_fields_ = [ ('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_field_names_ = {'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([ +WebSessionsChangeIdleLengthPolicyDetails._all_field_names_ = { 'new_value', 'previous_value', -]) +} WebSessionsChangeIdleLengthPolicyDetails._all_fields_ = [ ('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_field_names_ = {'description'} WebSessionsChangeIdleLengthPolicyType._all_fields_ = [('description', WebSessionsChangeIdleLengthPolicyType.description.validator)] WebSessionsFixedLengthPolicy._defined_validator = DurationLogInfo_validator diff --git a/dropbox/team_policies.py b/dropbox/team_policies.py index 319c095a..96798e17 100644 --- a/dropbox/team_policies.py +++ b/dropbox/team_policies.py @@ -1,9 +1,7 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa # pylint: skip-file -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -52,7 +50,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) CameraUploadsPolicyState_validator = bv.Union(CameraUploadsPolicyState) @@ -113,7 +111,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ComputerBackupPolicyState_validator = bv.Union(ComputerBackupPolicyState) @@ -171,7 +169,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) EmmState_validator = bv.Union(EmmState) @@ -232,7 +230,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ExternalDriveBackupPolicyState_validator = bv.Union(ExternalDriveBackupPolicyState) @@ -281,7 +279,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FileLockingPolicyState_validator = bv.Union(FileLockingPolicyState) @@ -342,7 +340,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) FileProviderMigrationPolicyState_validator = bv.Union(FileProviderMigrationPolicyState) @@ -381,7 +379,7 @@ def is_admins_only(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GroupCreation_validator = bv.Union(GroupCreation) @@ -428,7 +426,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) OfficeAddInPolicy_validator = bv.Union(OfficeAddInPolicy) @@ -477,7 +475,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDefaultFolderPolicy_validator = bv.Union(PaperDefaultFolderPolicy) @@ -527,7 +525,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDeploymentPolicy_validator = bv.Union(PaperDeploymentPolicy) @@ -576,7 +574,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperDesktopPolicy_validator = bv.Union(PaperDesktopPolicy) @@ -634,7 +632,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PaperEnabledPolicy_validator = bv.Union(PaperEnabledPolicy) @@ -681,7 +679,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordControlMode_validator = bv.Union(PasswordControlMode) @@ -742,7 +740,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) PasswordStrengthPolicy_validator = bv.Union(PasswordStrengthPolicy) @@ -792,7 +790,7 @@ def is_add_member_to_exceptions(self): 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()._process_custom_annotations(annotation_type, field_path, processor) RolloutMethod_validator = bv.Union(RolloutMethod) @@ -844,7 +842,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderBlanketLinkRestrictionPolicy_validator = bv.Union(SharedFolderBlanketLinkRestrictionPolicy) @@ -896,7 +894,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderJoinPolicy_validator = bv.Union(SharedFolderJoinPolicy) @@ -947,7 +945,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedFolderMemberPolicy_validator = bv.Union(SharedFolderMemberPolicy) @@ -1027,7 +1025,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SharedLinkCreatePolicy_validator = bv.Union(SharedLinkCreatePolicy) @@ -1076,7 +1074,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseDownloadPolicy_validator = bv.Union(ShowcaseDownloadPolicy) @@ -1123,7 +1121,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseEnabledPolicy_validator = bv.Union(ShowcaseEnabledPolicy) @@ -1172,7 +1170,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) ShowcaseExternalSharingPolicy_validator = bv.Union(ShowcaseExternalSharingPolicy) @@ -1221,7 +1219,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SmartSyncPolicy_validator = bv.Union(SmartSyncPolicy) @@ -1270,7 +1268,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SmarterSmartSyncPolicyState_validator = bv.Union(SmarterSmartSyncPolicyState) @@ -1331,7 +1329,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) SsoPolicy_validator = bv.Union(SsoPolicy) @@ -1380,7 +1378,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) SuggestMembersPolicy_validator = bv.Union(SuggestMembersPolicy) @@ -1443,7 +1441,7 @@ def __init__(self, suggest_members_policy = bb.Attribute("suggest_members_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()._process_custom_annotations(annotation_type, field_path, processor) TeamMemberPolicies_validator = bv.Struct(TeamMemberPolicies) @@ -1512,7 +1510,7 @@ def __init__(self, shared_folder_link_restriction_policy = bb.Attribute("shared_folder_link_restriction_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()._process_custom_annotations(annotation_type, field_path, processor) TeamSharingPolicies_validator = bv.Struct(TeamSharingPolicies) @@ -1561,7 +1559,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TwoStepVerificationPolicy_validator = bv.Union(TwoStepVerificationPolicy) @@ -1622,7 +1620,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) TwoStepVerificationState_validator = bv.Union(TwoStepVerificationState) @@ -1992,12 +1990,12 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): TeamMemberPolicies.emm_state.validator = EmmState_validator TeamMemberPolicies.office_addin.validator = OfficeAddInPolicy_validator TeamMemberPolicies.suggest_members_policy.validator = SuggestMembersPolicy_validator -TeamMemberPolicies._all_field_names_ = set([ +TeamMemberPolicies._all_field_names_ = { 'sharing', 'emm_state', 'office_addin', 'suggest_members_policy', -]) +} TeamMemberPolicies._all_fields_ = [ ('sharing', TeamMemberPolicies.sharing.validator), ('emm_state', TeamMemberPolicies.emm_state.validator), @@ -2010,13 +2008,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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._all_field_names_ = set([ +TeamSharingPolicies._all_field_names_ = { 'shared_folder_member_policy', 'shared_folder_join_policy', 'shared_link_create_policy', 'group_creation_policy', 'shared_folder_link_restriction_policy', -]) +} TeamSharingPolicies._all_fields_ = [ ('shared_folder_member_policy', TeamSharingPolicies.shared_folder_member_policy.validator), ('shared_folder_join_policy', TeamSharingPolicies.shared_folder_join_policy.validator), diff --git a/dropbox/users.py b/dropbox/users.py index 676d9f33..d2ecabaf 100644 --- a/dropbox/users.py +++ b/dropbox/users.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa @@ -7,7 +6,6 @@ This namespace contains endpoints and data types for user management. """ -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -89,7 +87,7 @@ def __init__(self, disabled = bb.Attribute("disabled") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(Account, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) Account_validator = bv.Struct(Account) @@ -121,7 +119,7 @@ def __init__(self, is_teammate=None, profile_photo_url=None, team_member_id=None): - super(BasicAccount, self).__init__(account_id, + super().__init__(account_id, name, email, email_verified, @@ -141,7 +139,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) BasicAccount_validator = bv.Struct(BasicAccount) @@ -205,7 +203,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) FileLockingValue_validator = bv.Union(FileLockingValue) @@ -260,7 +258,7 @@ def __init__(self, country=None, team=None, team_member_id=None): - super(FullAccount, self).__init__(account_id, + super().__init__(account_id, name, email, email_verified, @@ -316,7 +314,7 @@ def __init__(self, root_info = bb.Attribute("root_info", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FullAccount, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) FullAccount_validator = bv.Struct(FullAccount) @@ -352,7 +350,7 @@ def __init__(self, name = bb.Attribute("name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(Team, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) Team_validator = bv.Struct(Team) @@ -377,7 +375,7 @@ def __init__(self, name=None, sharing_policies=None, office_addin_policy=None): - super(FullTeam, self).__init__(id, + super().__init__(id, name) self._sharing_policies_value = bb.NOT_SET self._office_addin_policy_value = bb.NOT_SET @@ -393,7 +391,7 @@ def __init__(self, office_addin_policy = bb.Attribute("office_addin_policy", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(FullTeam, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) FullTeam_validator = bv.Struct(FullTeam) @@ -418,7 +416,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetAccountArg_validator = bv.Struct(GetAccountArg) @@ -444,7 +442,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetAccountBatchArg_validator = bv.Struct(GetAccountBatchArg) @@ -504,7 +502,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) GetAccountBatchError_validator = bv.Union(GetAccountBatchError) @@ -541,7 +539,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) GetAccountError_validator = bv.Union(GetAccountError) @@ -567,7 +565,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) IndividualSpaceAllocation_validator = bv.Struct(IndividualSpaceAllocation) @@ -634,7 +632,7 @@ def __init__(self, abbreviated_name = bb.Attribute("abbreviated_name") def _process_custom_annotations(self, annotation_type, field_path, processor): - super(Name, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) Name_validator = bv.Struct(Name) @@ -701,7 +699,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) PaperAsFilesValue_validator = bv.Union(PaperAsFilesValue) @@ -794,7 +792,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) SpaceAllocation_validator = bv.Union(SpaceAllocation) @@ -830,7 +828,7 @@ def __init__(self, allocation = bb.Attribute("allocation", user_defined=True) def _process_custom_annotations(self, annotation_type, field_path, processor): - super(SpaceUsage, self)._process_custom_annotations(annotation_type, field_path, processor) + super()._process_custom_annotations(annotation_type, field_path, processor) SpaceUsage_validator = bv.Struct(SpaceUsage) @@ -899,7 +897,7 @@ def __init__(self, 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()._process_custom_annotations(annotation_type, field_path, processor) TeamSpaceAllocation_validator = bv.Struct(TeamSpaceAllocation) @@ -950,7 +948,7 @@ def is_other(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) UserFeature_validator = bv.Union(UserFeature) @@ -1034,7 +1032,7 @@ def get_file_locking(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()._process_custom_annotations(annotation_type, field_path, processor) UserFeatureValue_validator = bv.Union(UserFeatureValue) @@ -1061,7 +1059,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserFeaturesGetValuesBatchArg_validator = bv.Struct(UserFeaturesGetValuesBatchArg) @@ -1099,7 +1097,7 @@ def is_other(self): 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()._process_custom_annotations(annotation_type, field_path, processor) UserFeaturesGetValuesBatchError_validator = bv.Union(UserFeaturesGetValuesBatchError) @@ -1121,7 +1119,7 @@ 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()._process_custom_annotations(annotation_type, field_path, processor) UserFeaturesGetValuesBatchResult_validator = bv.Struct(UserFeaturesGetValuesBatchResult) @@ -1132,14 +1130,14 @@ 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._all_field_names_ = { 'account_id', 'name', 'email', 'email_verified', 'profile_photo_url', 'disabled', -]) +} Account._all_fields_ = [ ('account_id', Account.account_id.validator), ('name', Account.name.validator), @@ -1151,10 +1149,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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([ +BasicAccount._all_field_names_ = Account._all_field_names_.union({ '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), @@ -1177,7 +1175,7 @@ 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([ +FullAccount._all_field_names_ = Account._all_field_names_.union({ 'country', 'locale', 'referral_link', @@ -1186,7 +1184,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 'is_paired', 'account_type', 'root_info', -])) +}) FullAccount._all_fields_ = Account._all_fields_ + [ ('country', FullAccount.country.validator), ('locale', FullAccount.locale.validator), @@ -1200,10 +1198,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Team.id.validator = bv.String() Team.name.validator = bv.String() -Team._all_field_names_ = set([ +Team._all_field_names_ = { 'id', 'name', -]) +} Team._all_fields_ = [ ('id', Team.id.validator), ('name', Team.name.validator), @@ -1211,21 +1209,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): FullTeam.sharing_policies.validator = team_policies.TeamSharingPolicies_validator FullTeam.office_addin_policy.validator = team_policies.OfficeAddInPolicy_validator -FullTeam._all_field_names_ = Team._all_field_names_.union(set([ +FullTeam._all_field_names_ = Team._all_field_names_.union({ 'sharing_policies', 'office_addin_policy', -])) +}) FullTeam._all_fields_ = Team._all_fields_ + [ ('sharing_policies', FullTeam.sharing_policies.validator), ('office_addin_policy', FullTeam.office_addin_policy.validator), ] GetAccountArg.account_id.validator = users_common.AccountId_validator -GetAccountArg._all_field_names_ = set(['account_id']) +GetAccountArg._all_field_names_ = {'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_field_names_ = {'account_ids'} GetAccountBatchArg._all_fields_ = [('account_ids', GetAccountBatchArg.account_ids.validator)] GetAccountBatchError._no_account_validator = users_common.AccountId_validator @@ -1248,7 +1246,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): GetAccountError.other = GetAccountError('other') IndividualSpaceAllocation.allocated.validator = bv.UInt64() -IndividualSpaceAllocation._all_field_names_ = set(['allocated']) +IndividualSpaceAllocation._all_field_names_ = {'allocated'} IndividualSpaceAllocation._all_fields_ = [('allocated', IndividualSpaceAllocation.allocated.validator)] Name.given_name.validator = bv.String() @@ -1256,13 +1254,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): Name.familiar_name.validator = bv.String() Name.display_name.validator = bv.String() Name.abbreviated_name.validator = bv.String() -Name._all_field_names_ = set([ +Name._all_field_names_ = { 'given_name', 'surname', 'familiar_name', 'display_name', 'abbreviated_name', -]) +} Name._all_fields_ = [ ('given_name', Name.given_name.validator), ('surname', Name.surname.validator), @@ -1293,10 +1291,10 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): SpaceUsage.used.validator = bv.UInt64() SpaceUsage.allocation.validator = SpaceAllocation_validator -SpaceUsage._all_field_names_ = set([ +SpaceUsage._all_field_names_ = { 'used', 'allocation', -]) +} SpaceUsage._all_fields_ = [ ('used', SpaceUsage.used.validator), ('allocation', SpaceUsage.allocation.validator), @@ -1307,13 +1305,13 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): 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_used_cached.validator = bv.UInt64() -TeamSpaceAllocation._all_field_names_ = set([ +TeamSpaceAllocation._all_field_names_ = { '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), @@ -1347,7 +1345,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserFeatureValue.other = UserFeatureValue('other') UserFeaturesGetValuesBatchArg.features.validator = bv.List(UserFeature_validator) -UserFeaturesGetValuesBatchArg._all_field_names_ = set(['features']) +UserFeaturesGetValuesBatchArg._all_field_names_ = {'features'} UserFeaturesGetValuesBatchArg._all_fields_ = [('features', UserFeaturesGetValuesBatchArg.features.validator)] UserFeaturesGetValuesBatchError._empty_features_list_validator = bv.Void() @@ -1361,7 +1359,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor): UserFeaturesGetValuesBatchError.other = UserFeaturesGetValuesBatchError('other') UserFeaturesGetValuesBatchResult.values.validator = bv.List(UserFeatureValue_validator) -UserFeaturesGetValuesBatchResult._all_field_names_ = set(['values']) +UserFeaturesGetValuesBatchResult._all_field_names_ = {'values'} UserFeaturesGetValuesBatchResult._all_fields_ = [('values', UserFeaturesGetValuesBatchResult.values.validator)] features_get_values = bb.Route( diff --git a/dropbox/users_common.py b/dropbox/users_common.py index 81e70bac..e23958bb 100644 --- a/dropbox/users_common.py +++ b/dropbox/users_common.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Auto-generated by Stone, do not modify. # @generated # flake8: noqa @@ -7,7 +6,6 @@ This namespace contains common data types used within the users namespace. """ -from __future__ import unicode_literals from stone.backends.python_rsrc import stone_base as bb from stone.backends.python_rsrc import stone_validators as bv @@ -57,7 +55,7 @@ def is_business(self): 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) + super()._process_custom_annotations(annotation_type, field_path, processor) AccountType_validator = bv.Union(AccountType) diff --git a/example/oauth/commandline-oauth-pkce.py b/example/oauth/commandline-oauth-pkce.py index b783e196..714d9ae4 100644 --- a/example/oauth/commandline-oauth-pkce.py +++ b/example/oauth/commandline-oauth-pkce.py @@ -19,7 +19,7 @@ try: oauth_result = auth_flow.finish(auth_code) except Exception as e: - print('Error: %s' % (e,)) + print('Error: {}'.format(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..088b069c 100644 --- a/example/oauth/commandline-oauth-scopes.py +++ b/example/oauth/commandline-oauth-scopes.py @@ -26,7 +26,7 @@ # authorization has files.metadata.read scope only assert oauth_result.scope == 'files.metadata.read' except Exception as e: - print('Error: %s' % (e,)) + print('Error: {}'.format(e)) exit(1) # If an application needs write scopes now we can request the new scope with the auth flow @@ -46,7 +46,7 @@ # authorization has account_info.read scope only assert oauth_result.scope == 'account_info.read' except Exception as e: - print('Error: %s' % (e,)) + print('Error: {}'.format(e)) exit(1) # If an application needs a new scope but wants to keep the existing scopes, @@ -73,7 +73,7 @@ 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: {}'.format(e)) exit(1) with dropbox.Dropbox(oauth2_access_token=oauth_result.access_token, diff --git a/example/oauth/commandline-oauth.py b/example/oauth/commandline-oauth.py index eb9611ab..fb9c9d57 100644 --- a/example/oauth/commandline-oauth.py +++ b/example/oauth/commandline-oauth.py @@ -21,7 +21,7 @@ try: oauth_result = auth_flow.finish(auth_code) except Exception as e: - print('Error: %s' % (e,)) + print('Error: {}'.format(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 d0572490..7b8601df 100644 --- a/example/updown.py +++ b/example/updown.py @@ -3,13 +3,11 @@ This is an example app for API v2. """ -from __future__ import print_function import argparse import contextlib import datetime import os -import six import sys import time import unicodedata @@ -74,7 +72,7 @@ def main(): # First do all the files. for name in files: fullname = os.path.join(dn, name) - if not isinstance(name, six.text_type): + if not isinstance(name, str): name = name.decode('utf-8') nname = unicodedata.normalize('NFC', name) if name.startswith('.'): @@ -130,7 +128,7 @@ def list_folder(dbx, folder, subfolder): Return a dict mapping unicode filenames to FileMetadata|FolderMetadata entries. """ - path = '/%s/%s' % (folder, subfolder.replace(os.path.sep, '/')) + path = '/{}/{}'.format(folder, subfolder.replace(os.path.sep, '/')) while '//' in path: path = path.replace('//', '/') path = path.rstrip('/') @@ -151,7 +149,7 @@ def download(dbx, folder, subfolder, name): Return the bytes of the file, or None if it doesn't exist. """ - path = '/%s/%s/%s' % (folder, subfolder.replace(os.path.sep, '/'), name) + path = '/{}/{}/{}'.format(folder, subfolder.replace(os.path.sep, '/'), name) while '//' in path: path = path.replace('//', '/') with stopwatch('download'): @@ -169,7 +167,7 @@ def upload(dbx, fullname, folder, subfolder, name, overwrite=False): Return the request response, or None in case of error. """ - path = '/%s/%s/%s' % (folder, subfolder.replace(os.path.sep, '/'), name) + path = '/{}/{}/{}'.format(folder, subfolder.replace(os.path.sep, '/'), name) while '//' in path: path = path.replace('//', '/') mode = (dropbox.files.WriteMode.overwrite @@ -242,7 +240,7 @@ def stopwatch(message): yield finally: t1 = time.time() - print('Total elapsed time for %s: %.3f' % (message, t1 - t0)) + print('Total elapsed time for {}: {:.3f}'.format(message, t1 - t0)) if __name__ == '__main__': main() diff --git a/ez_setup.py b/ez_setup.py index 1f668e5b..2f1607f6 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -61,7 +61,7 @@ def _build_egg(egg, archive_filename, to_dir): # returning the result log.warn(egg) if not os.path.exists(egg): - raise IOError('Could not build the egg.') + raise OSError('Could not build the egg.') def get_zip_class(): diff --git a/generate_base_client.py b/generate_base_client.py index dfdff9d5..46f08877 100755 --- a/generate_base_client.py +++ b/generate_base_client.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -from __future__ import absolute_import, division, print_function, unicode_literals import argparse import glob @@ -48,15 +47,15 @@ def main(): if verbose: print('Generating Python types') subprocess.check_output( - (['python', '-m', 'stone.cli', 'python_types', dropbox_pkg_path] + + ['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'])) + ['--', '-r', 'dropbox.dropbox_client.Dropbox.{ns}_{route}', '-p', 'dropbox']) if verbose: print('Generating Python client') o = subprocess.check_output( - (['python', '-m', 'stone.cli', 'python_client', dropbox_pkg_path] + + ['python', '-m', 'stone.cli', 'python_client', dropbox_pkg_path] + specs + ['-a', 'host', '-a', 'style', '-a', 'auth', '-a', 'scope'] + [ '--', @@ -65,12 +64,12 @@ def main(): '-c', 'DropboxBase', '-t', 'dropbox', '-a', 'scope' - ])) + ]) if o: print('Output:', o) o = subprocess.check_output( - (['python', '-m', 'stone.cli', 'python_client', dropbox_pkg_path] + + ['python', '-m', 'stone.cli', 'python_client', dropbox_pkg_path] + specs + ['-a', 'host', '-a', 'style', '-a', 'auth', '-a', 'scope'] + [ '--', @@ -79,7 +78,7 @@ def main(): '-c', 'DropboxTeamBase', '-t', 'dropbox', '-a', 'scope' - ])) + ]) if o: print('Output:', o) diff --git a/requirements.txt b/requirements.txt index b1e87460..eddd90cd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,6 @@ # Dependencies required for installation (keep in sync with setup.py) requests>=2.16.2 urllib3<2 -six >= 1.12.0 stone>=2,<3.3.3 # Other dependencies for development ply diff --git a/setup.py b/setup.py index 5debf1f1..1817e472 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ # Don't import unicode_literals because of a bug in py2 setuptools # where package_data is expected to be str and not unicode. -from __future__ import absolute_import, division, print_function import codecs import os @@ -27,7 +26,6 @@ install_reqs = [ 'requests>=2.16.2', 'urllib3<2', - 'six >= 1.12.0', 'stone>=2,<3.3.3', ] @@ -64,19 +62,18 @@ project_urls={ 'Source': 'https://github.com/dropbox/dropbox-sdk-python', }, + python_requires='>=3.8', # From classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Libraries :: Python Modules', diff --git a/test/integration/test_dropbox.py b/test/integration/test_dropbox.py index 4f1617ff..c3da1c39 100644 --- a/test/integration/test_dropbox.py +++ b/test/integration/test_dropbox.py @@ -1,6 +1,5 @@ #!/usr/bin/env python -from __future__ import absolute_import, division, print_function, unicode_literals import datetime import os @@ -57,12 +56,12 @@ 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 f'{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), + print(f'Set {env_name} environment variable to a valid value.', file=sys.stderr) sys.exit(1) return value @@ -183,7 +182,7 @@ def test_rpc(self, dbx_from_env): def test_upload_download(self, dbx_from_env): # Upload file random_filename = ''.join(RANDOM_FOLDER) - random_path = '/Test/%s/%s' % (TIMESTAMP, random_filename) + random_path = '/Test/{}/{}'.format(TIMESTAMP, random_filename) test_contents = DUMMY_PAYLOAD dbx_from_env.files_upload(test_contents, random_path) @@ -297,17 +296,17 @@ def test_default_oauth2_urls(): 'http://localhost/dummy', 'dummy_session', 'dbx-auth-csrf-token') assert re.match( - r'^https://{}/oauth2/authorize\?'.format(re.escape(session.WEB_HOST)), + fr'^https://{re.escape(session.WEB_HOST)}/oauth2/authorize\?', flow_obj._get_authorize_url('http://localhost/redirect', 'state', 'legacy'), ) assert flow_obj.build_url( '/oauth2/authorize' - ) == 'https://{}/oauth2/authorize'.format(session.API_HOST) + ) == f'https://{session.API_HOST}/oauth2/authorize' assert flow_obj.build_url( '/oauth2/authorize', host=session.WEB_HOST - ) == 'https://{}/oauth2/authorize'.format(session.WEB_HOST) + ) == f'https://{session.WEB_HOST}/oauth2/authorize' def test_bad_auth(dbx_session): # Test malformed token diff --git a/test/unit/test_dropbox_unit.py b/test/unit/test_dropbox_unit.py index c1fd6058..6c437b4f 100644 --- a/test/unit/test_dropbox_unit.py +++ b/test/unit/test_dropbox_unit.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -import mock +from unittest import mock import pickle import pytest @@ -46,22 +46,22 @@ def test_authorization_url(self): assert authorization_url\ .startswith('https://{}/oauth2/authorize?' .format(session.WEB_HOST)) - assert 'client_id={}'.format(APP_KEY) in authorization_url + assert f'client_id={APP_KEY}' in authorization_url assert 'response_type=code' in authorization_url if redirect_uri: - assert 'redirect_uri={}'.format(redirect_uri) \ + assert f'redirect_uri={redirect_uri}' \ in authorization_url else: assert 'redirect_uri' not in authorization_url if state: - assert 'state={}'.format(state) in authorization_url + assert f'state={state}' in authorization_url else: assert 'state' not in authorization_url if token_access_type: - assert 'token_access_type={}'.format(token_access_type) \ + assert f'token_access_type={token_access_type}' \ in authorization_url else: assert 'token_access_type' not in authorization_url @@ -81,7 +81,7 @@ def test_authorization_url(self): if code_challenge: assert 'code_challenge_method=S256' in authorization_url - assert 'code_challenge={}'.format(code_challenge)\ + assert f'code_challenge={code_challenge}'\ in authorization_url else: assert 'code_challenge_method' not in authorization_url @@ -98,7 +98,7 @@ def test_authorization_url_legacy_default(self): 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 f'client_id={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): @@ -113,7 +113,7 @@ def test_authorization_url_online_token_type(self): 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 f'client_id={APP_KEY}' in online_authorization_url assert 'response_type=code' in online_authorization_url assert 'token_access_type=online' in online_authorization_url @@ -124,7 +124,7 @@ def test_authorization_url_offline_token_type(self): 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 f'client_id={APP_KEY}' in offline_authorization_url assert 'response_type=code' in offline_authorization_url assert 'token_access_type=offline' in offline_authorization_url @@ -136,7 +136,7 @@ def test_authorization_url_with_scopes_and_granted(self): 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 f'client_id={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 @@ -150,7 +150,7 @@ def test_authorization_url_with_scopes(self): 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 f'client_id={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 @@ -207,7 +207,7 @@ def test_NoRedirect_whole_flow(self, auth_flow_offline_with_scopes): assert authorization_url.startswith('https://{}/oauth2/authorize?' .format(session.WEB_HOST)) - assert 'client_id={}'.format(APP_KEY) in authorization_url + assert f'client_id={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) @@ -222,7 +222,7 @@ 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) + assert first_call_args[0][0] == f'https://{session.API_HOST}/oauth2/token' call_data = first_call_args[1]['data'] assert call_data['client_id'] == APP_KEY assert call_data['grant_type'] == 'authorization_code'